@import url("https://fonts.googleapis.com/css2?family=Lily+Script+One&family=Poppins:wght@200;300;400&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;1,400;1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  -moz-webkit-scroll-behavior: smooth;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
  position: relative;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.6s;
  padding: 0rem 6rem;
  z-index: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.212);
}

header.sticky {
  height: 3.5rem;
  padding: 0rem 11rem;
  background: linear-gradient(135deg, hsl(192, 100%, 33%), hsl(190, 39%, 23%));
  transition: all 0.6s ease;
  border: 1px solid #0088a9;
}

header .logo {
  height: 110%;
  padding: 0 0;
  transition: all 0.6s ease;
}

header .brand__name {
  position: relative;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.6s;
  left: -12rem;
}

header.sticky .brand__name {
  left: -11rem;
  font-size: 1.3rem;
  transition: all 0.6s ease;
}
header ul {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

header ul li {
  position: relative;
  list-style: none;
}

header ul li a {
  position: relative;
  margin: 0px 15px;
  text-decoration: none;
  color: #fff;
  letter-spacing: 2px;
  font-weight: 500;
  /* transition: all 0.3s; */
}
header .active,
a:hover {
  color: #2794d5;
  transition: none;
}

header ul li .active::after {
  content: "";
  position: absolute;
  background-color: #2794d5;
  height: 3px;
  width: 100%;
  left: 0;
  bottom: -1.6rem;
  transition: 0.3s;
}

header ul li a::after {
  content: "";
  position: absolute;
  background-color: #2794d5;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -1.6rem;
  transition: 0.3s;
}

header ul li a:hover::after {
  width: 100%;
  height: 3px;
}

/*   Sticky Navigation*/

header.sticky ul li a::after {
  content: "";
  position: absolute;
  background-color: #2794d5;
  height: 3px;
  width: 0;
  left: 0;
  bottom: -1.05rem;
  transition: 0.3s;
  opacity: 0;
}

header.sticky ul li a:hover::after {
  width: 100%;
  opacity: 1;
  height: 3px;
}

/*       End of Stick navigation*/
header.sticky .active {
  color: #ccc;
}
header.sticky ul li .active::after {
  content: "";
  position: absolute;
  background-color: #ccc;
  height: 3px;
  width: 100%;
  left: 0;
  bottom: -1.05rem;
  transition: 0.3s;
  opacity: 1;
}

header.sticky .brand__name,
.logo,
header.sticky ul li a {
  color: #fff;
}

header.sticky .logo {
  height: 100%;
  padding: 0;
  transition: all 0.6s;
}

section,
footer {
  padding: 2rem 0rem;
}
.banner {
  position: relative;
  width: 100%;
  height: 38rem;
  margin: 0 auto -2rem;
  background: linear-gradient(
      135deg,
      hsl(192, 100%, 33%),
      hsla(190, 39%, 23%, 0.76)
    ),
    url(/images/banner11.jpg) no-repeat center center / cover;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 90%);
}

.banner__text {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  top: 10rem;
}
.banner__text p {
  text-shadow: 2px 1px 1px rgb(35, 34, 34);
  word-spacing: 0.2rem;
  margin: 0;
  padding: 0;
}

.banner__text h1 {
  font-size: 1.8rem;
  font-weight: 500;
  padding-bottom: 2rem;
  text-shadow: 2px 2px 1px rgb(35, 34, 34);
}

.banner__text ul {
  padding-top: 2.5rem;
}

.banner__text ul li {
  list-style: none;
}
.banner__text ul li a {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #0088a9;
  background-color: #fff;
  letter-spacing: 0.1rem;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0.1rem;
  padding: 0.8rem 3rem;
  padding-right: 2rem;
  margin-top: 0rem;
  cursor: pointer;
  text-decoration: none;
  transition: 0.5s;
  transition-delay: 0.7s;
}

.banner__text ul li span {
  padding-left: 1.5rem;
  padding-right: 0rem;
  font-size: 1.5rem;
}

.banner__text ul li .arrow {
  display: block;
  position: absolute;
  background: #fff;
}

.banner__text ul li a .arrow:nth-child(1) {
  left: 0;
  bottom: 0;
  width: 0.1rem;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s;
  padding: 0;
}
.banner__text ul li a:hover .arrow:nth-child(1) {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
}

.banner__text ul li a .arrow:nth-child(2) {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
  padding: 0;
}

.banner__text ul li a:hover .arrow:nth-child(2) {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s;
}
.banner__text ul li a .arrow:nth-child(3) {
  right: 0;
  bottom: 0;
  width: 0.1rem;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s;
  padding: 0;
  transition-delay: 0.5s;
}
.banner__text ul li a:hover .arrow:nth-child(3) {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.5s;
  transition-delay: 0.5s;
}
.banner__text ul li a:hover {
  color: #fff;
  background-color: #00bcd4;
  animation-direction: left;
  transition: 0.5s;
  border: none;
}

.banner__text ul li a .arrow:nth-child(4) {
  left: 0;
  top: 0;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s;
  padding: 0;
  transition-delay: 0.5s;
}

.banner__text ul li a:hover .arrow:nth-child(4) {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.5s;
  transition-delay: 0.5s;
}

.hosting__services,
.cloud__features,
.about__us,
.our__clients,
.testimonial__section,
.hosting__pricing__plans,
.hosting__Plan__features,
.form__contact__section {
  max-width: 1200px;
  margin: 0 auto;
  color: rgb(86, 83, 83);
}

.hosting__services h1,
.hosting__services h2,
.cloud__features h1,
.cloud__features h2,
.about__us h1,
.about__us h2,
.our__clients h1,
.testimonial__section h1,
.hosting__Plan__features h1,
.free__evaluation h1,
.order__checkout {
  color: #0088a9;
  padding: 1rem 0rem;
  line-height: 0.5rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.hosting__services h1,
.cloud__features h1,
.about__us h1,
.our__clients h1,
.testimonial__section h1,
.hosting__Plan__features h1,
.free__evaluation h1,
.order__checkout {
  text-align: center;
  padding-bottom: 3rem;
  font-size: 18px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.hosting__services h2,
.cloud__features h2,
.about__us h2,
.contact__information__text h2 {
  padding-bottom: 1.2rem;
  font-size: 1.2rem;
}

.hosting__services p,
.cloud__features p,
.about__us p,
.contact__information__text p {
  padding-bottom: 2rem;
}

.hosting__services {
  padding-bottom: 0;
}

.hosting__services__boxes__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 22rem;
  padding: 2rem 0 1rem;
  margin-bottom: -2rem;
}

.services__box {
  width: 30%;
  height: 100%;
  padding: 1.6rem 1rem 0rem;
  background: #fff;
  text-align: center;
  border: 1px solid #0088a9;
  transition: all 0.5s;
}
.services__box:hover {
  width: 30%;
  height: 100%;
  padding: 1.6rem 1rem 0rem;
  text-align: center;
  border: 1px solid #0088a9;
  transition: all 0.5s;
}

.services__box i {
  padding-bottom: 1rem;
  font-size: 3.9rem;
  background: linear-gradient(135deg, hsl(192, 100%, 33%), hsl(190, 39%, 23%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.5s;
}

.services__box h3 {
  padding-bottom: 0.5rem;
  color: #0088a9;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.5s;
}

.services__box p {
  line-height: 1.5;
  padding-bottom: 1rem;
  opacity: 1;
  transition: 0.5s;
  display: inherit;
}

.services__box a {
  text-decoration: none;
  color: #0088a9;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.4s;
}

.services__box a:hover {
  color: #00bcd4;
  transition: all 0.4s;
}

.free__evaluation {
  height: 30rem;
  margin-bottom: 1rem;
  padding-top: 6rem;
  color: rgb(103, 99, 99);
  clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
  background: rgba(255, 253, 253, 0.156);
  background: url(/images/evaluation-bg.png);
  background-size: cover;
}

.free__evaluation h1 {
  padding-bottom: 2rem;
}

.free__evaluation p {
  max-width: 1200px;
  font-size: 1.5rem;
  padding: 0.1rem 0 0.5rem;
  margin: 0 auto;
  text-align: center;
}
.free__evaluation p span {
  color: #0088a9;
  font-size: 1.7rem;
  padding-right: 0.5rem;
}

.free__evaluation ul {
  padding: 2rem 0 0rem;
  text-align: center;
}
.free__evaluation ul li {
  list-style: none;
}
.free__evaluation ul li a {
  position: relative;
  padding: 1rem 2.5rem;
  padding-right: 2rem;
  border-radius: 0.1rem;
  color: #fff;
  background: #00bcd4;
  text-decoration: none;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  font-size: 1.2rem;
  transition: all 5ms;
  transition-delay: 0.9s;
}

.free__evaluation ul li a span {
  padding-left: 0.5rem;
  font-size: 1.9rem;
}

.free__evaluation ul li a:hover {
  color: #0088a9;
  background: #fff;
  transition: all 0.2s;
}

/*   Evaluation button and transitions */

.free__evaluation ul li .arrow {
  display: block;
  position: absolute;
  background: #0088a9;
}

.free__evaluation ul li a .arrow:nth-child(1) {
  left: 0;
  bottom: 0;
  width: 0.1rem;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
  padding: 0;
}
.free__evaluation ul li a:hover .arrow:nth-child(1) {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.4s;
}

.free__evaluation ul li a .arrow:nth-child(2) {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
  padding: 0;
}

.free__evaluation ul li a:hover .arrow:nth-child(2) {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s;
}
.free__evaluation ul li a .arrow:nth-child(3) {
  right: 0;
  bottom: 0;
  width: 0.1rem;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
  padding: 0;
  transition-delay: 0.4s;
}
.free__evaluation ul li a:hover .arrow:nth-child(3) {
  transform: scaleY(1);
  transform-origin: bottom;
  transition: transform 0.4s;
  transition-delay: 0.4s;
}

.free__evaluation ul li a .arrow:nth-child(4) {
  left: 0;
  top: 0;
  width: 100%;
  height: 0.1rem;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s;
  padding: 0;
  transition-delay: 0.4s;
}

.free__evaluation ul li a:hover .arrow:nth-child(4) {
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s;
  transition-delay: 0.4s;
}

/*    End of Evaluation button and transitions */

.bg-modal {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: 40%;
  left: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  display: none;
  transition: all 0.6s;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.bg-modal {
  animation: fade-in 1000ms forwards, fade-in 500ms forwards;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: 26rem;
  height: 32rem;
  border-radius: 0.2rem;
  background-color: white;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  transition: all 0.6s;
}

.modal-content .close {
  position: absolute;
  transform: rotate(45deg);
  left: 91%;
  font-size: 2rem;
  font-weight: 500;
  color: #0088a9;
  cursor: pointer;
  transition: all 0.3s;
}

.modal-content .close:hover {
  color: #00bcd4;
  font-size: 2.1rem;
  transition: all 0.3s;
}

.modal-content h1 {
  color: #0088a9;
  font-size: 1rem;
  text-align: center;
  padding-top: 2.5rem;
}

.services__box #modal {
  display: none;
  width: 0;
  height: 0;
}
.evaluation__form {
  height: 100%;
  width: 100%;
  padding: 2.5rem 1rem 1rem;
}

.evaluation__form fieldset {
  border: none;
}

.evaluation__form fieldset input {
  height: 3rem;
  min-width: 100%;
  max-width: 100%;
  padding: 1rem 1.5rem;
  color: #ccc;
  margin-bottom: 0.8rem;
  font-size: inherit;
  color: black;
  background-color: inherit;
  border-radius: 0rem;
  border: #ccc 1px solid;
}

.evaluation__form fieldset select {
  height: 3rem;
  min-width: 100%;
  max-width: 100%;
  padding: 0.5rem 1.5rem;
  color: #ccc;
  margin-bottom: 0.8rem;
  font-size: inherit;
  color: black;
  background-color: inherit;
  border-radius: 0rem;
  border: #ccc 1px solid;
  white-space: nowrap;
}

.evaluation__form fieldset select,
input:focus {
  outline: none;
}

.evaluation__form__button {
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1rem;
  background-color: #0088a9;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  border: none;
  padding: 1rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  width: 100%;
  transition: all 01s;
  border-radius: 0.1rem;
}

.evaluation__form__button:hover {
  color: #fff;
  background-color: #00bcd4;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  transition: all 01s;
}

.cloud__features {
  padding-top: 0;
  margin-top: -1rem;
}

footer {
  background: linear-gradient(
      135deg,
      hsla(192, 100%, 33%, 0.889),
      hsla(190, 39%, 23%, 0.671)
    ),
    url(/images/Banner5.jpg) no-repeat;
  background-size: cover;
}

.footer__container {
  display: flex;
  height: 20rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 2rem;
  border-bottom: 1px solid #aacfed;
}
.footer__container__contents {
  width: 30%;
}

.footer__container__contents:nth-child(1) {
  padding-right: 2.8rem;
  text-align: left;
}

.footer__container__contents h1 {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding-bottom: 0.5rem;
}

.footer__container__contents ul li {
  color: #fff;
  font-size: 0.9rem;
  list-style: none;
  line-height: 1.8;
}

.footer__container__contents ul li a {
  text-decoration: none;
  color: #fff;
}

.footer__container__contents ul li span {
  display: block;
  color: #00bcd4;
  font-weight: 500;
}

footer p {
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
}

.multi__pages__heading {
  position: relative;
  width: 100%;
  height: 25vh;
  margin: 0 auto;
  background: linear-gradient(
      135deg,
      hsla(192, 100%, 33%, 0.889),
      hsla(190, 39%, 23%, 0.84)
    ),
    url(/images/banner11.jpg);
  background-size: cover;
  background-position: 0rem 46.8rem;
}

.multi_pages__heading__text {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  color: #fff;
  text-align: center;
  top: 3rem;
}

.multi_pages__heading__text h1 {
  font-size: 2rem;
  letter-spacing: 0.1rem;
  padding-bottom: 0.5rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.multi_pages__heading__text ul li {
  list-style-type: none;
}
.multi_pages__heading__text ul li span {
  color: #ccc;
}
.multi_pages__heading__text ul li a {
  list-style: none;
  color: #fff;
  padding-right: 0.5rem;
  text-decoration: none;
}

.about__us__container {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  width: 100%;
}

.about__us .about__us__container .about__contents {
  width: 48%;
}

.about__us__container .about__contents img {
  width: 100%;
  height: 100%;
}
.about__us__background__text {
  width: 100%;
  margin-left: 3rem;
  padding-top: 0;
}

.about__us__background__text h2 {
  line-height: 0;
  padding-top: 0.5rem;
}

.our__clients {
  width: 1200px;
  overflow: hidden;
  padding-bottom: 0;
}
.marquee {
  position: relative;
  width: 100%;
  height: 20vh;
  color: #eee;
  overflow: hidden;
}

.marquee::before,
.marquee::after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 1;
}

.marquee:before {
  left: 0;
  background: linear-gradient(to right, #fff 20%, transparent);
}
.marquee:after {
  right: 0;
  background: linear-gradient(to left, #fff 20%, transparent);
}
/* .marquee-content:hover {
	animation-play-state: paused;
} */
.marquee-content {
  list-style: none;
  height: 100%;
  display: flex;
  animation: scrolling 10s linear infinite;
}

@keyframes scrolling {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  flex-shrink: 0;
  /* font-size: 5rem; */
  white-space: nowrap;
}

.marquee-content li img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  flex-shrink: 0;
  font-size: 5rem;
  white-space: nowrap;
}

.testimonies__container {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  padding: 2rem 2rem;
  border-radius: 0.1rem;
}

.testimonial span {
  color: #0088a9;
  position: absolute;
  font-family: "Lily Script One";
  /* font-size: 2rem; */
}

.testimonial {
  text-align: justify;
  padding-bottom: 1rem;
}

.user {
  display: flex;
  align-items: center;
  justify-content: center;
}

.user .user__image {
  border-radius: 50%;
  height: 5rem;
  -moz-webkit-object-fit: cover;
}

.user .user__details {
  margin-left: 1rem;
}
.user .role {
  font-weight: normal;
  margin: 0.01rem 0;
}
.user .username {
  margin: 0;
  width: 100%;
  color: #0088a9;
}
.user__details .fa {
  color: goldenrod;
}
@keyframes grow {
  0% {
    transform: scaleX(0);
  }
}
.progress__bar {
  background-color: #0088a9;
  height: 0.1rem;
  margin-bottom: 1rem;
  animation: grow 10s linear infinite;
  transform-origin: left;
}

.hosting__plans {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 35rem;
}

.services__section {
  height: 38rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 23.5rem;
  background: linear-gradient(
      135deg,
      hsl(192, 100%, 33%),
      40%,
      hsla(190, 39%, 23%, 0.829)
    ),
    url(/images/price.jpg) no-repeat center center/cover;
}
.services__section__text {
  max-width: 1200px;
  margin: 0 auto;
  color: rgb(240, 240, 240);
  text-shadow: 1px 1px 1px #000;
  font-weight: 500;
  word-spacing: 0.3rem;
}

.services__section__text h2 {
  padding-bottom: 1rem;
  font-size: 1.6rem;
}
.services__section__container {
  margin: 0 auto;
  width: 60%;
  color: rgb(86, 83, 83);
  text-align: center;
  text-indent: 1rem;
}
.services__section__container h1 {
  padding: 1rem;
  color: #0088a9;
}
.hosting__pricing__plans {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 5rem;
}

.hosting__pricing__plans__box {
  position: relative;
  padding: 2rem 2rem 3rem;
  background: #fafbfd;
  width: 32%;
  text-align: center;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  border-radius: 0.1rem;
}

.hosting__pricing__plans__box h1 {
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  padding: 1rem 0 2rem;
  color: #0088a9;
}

.price {
  background: linear-gradient(
    155deg,
    hsl(192, 100%, 33%),
    hsla(190, 39%, 23%, 0.673)
  );
  padding: 0.9rem 0.9rem 1.8rem;
  margin-bottom: 2rem;
  color: #fff;
}

.price h1 {
  color: #fff;
  font-size: 2rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  padding-bottom: 0;
}

.price p {
  color: #ccc;
  font-size: 0.8rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
}

.hosting__pricing__plans__box ul {
  border-top: #ccc 1px solid;
  padding: 2rem 0rem 3rem;
}
.hosting__pricing__plans__box ul li {
  list-style-type: none;
  text-align: left;
  line-height: 2.5rem;
}

.hosting__pricing__plans__box ul li i {
  color: #0088a9;
  padding-right: 1rem;
}

.hosting__pricing__plans__box button {
  position: absolute;
  top: 33rem;
  left: 5rem;
  font-weight: 400;
  font-size: 1.1rem;
  color: #fff;
  letter-spacing: 0.1rem;
  background-color: #0088a9;
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
  border-radius: 0.1rem;
  border: none;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
  cursor: pointer;
  width: 50%;
  transition: all 01s;
}

.hosting__pricing__plans__box button:hover {
  color: #fff;
  background-color: #00bcd4;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.25);
  border-radius: 0.1rem;
  transition: 01s;
}
.hosting__Plan__features {
  min-height: 35rem;
  padding: 2rem 0;
}

.hosting__Plan__features h1 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
}

.container section {
  position: relative;
  width: 100%;
  transition: all 1s;
}

.container section details {
  position: relative;
  background-color: #fff;
  margin-bottom: 0.1rem;
  border-radius: 0.2rem;
  padding: 0.3rem 0 0.1rem;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  max-height: 10rem;
  overflow: hidden;
}

.container section details:hover {
  background-color: #eee;
  cursor: pointer;
  transition: all 0.6s ease;
}

.container section details[open] summary {
  transition: open 0.6s;
}
.container section details summary {
  padding: 1rem;
  color: #0088a9;
  font-size: 1rem;
  list-style-type: none;
  outline: none;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  transition: all 0.6s ease;
}
.container section details summary:hover {
  color: #00bcd4;
}

.container section details p {
  padding: 1rem;
  margin: 0.5rem;
  background-color: rgba(238, 235, 235, 0.416);
  transition: all 0.6s ease-in-out;
}

.container section p::before {
  content: "";
  position: absolute;
  width: 0.2rem;
  height: 90%;
  background-color: #00bcd4;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: all 0.6s ease-in-out;
}

.container section details summary::after {
  content: "+";
  position: absolute;
  top: 0.6rem;
  right: 3rem;
  font-size: 2rem;
  transition: all 0.6s ease-in-out;
}

.container section details[open] summary::after {
  content: "-";
  position: absolute;
  top: 0.6rem;
  color: #00bcd4;
  right: 3rem;
  font-size: 2rem;
  transition: all 0.6s ease-in-out;
}

.container section details i {
  padding: 0rem 1rem;
  font-size: 1rem;
}

.map__section {
  width: 100%;
  height: 55vh;
  margin: 0 auto;
  padding: 0.1rem 0.2rem;
}

.map__section iframe {
  width: 100%;
  height: 100%;
}

.form__contact__section {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 4rem;
}
.contact__form {
  width: 55%;
}
.contact__information__container {
  width: 40%;
  /* margin-left: 1rem; */
}
.contact__form fieldset {
  border: none;
}

.contact__form fieldset input {
  height: 3rem;
  min-width: 100%;
  max-width: 100%;
  padding: 1rem 1.5rem;
  color: #ccc;
  margin-bottom: 0.8rem;
  font-size: inherit;
  color: black;
  background-color: inherit;
  border-radius: 0rem;
  border: #ccc 1px solid;
}

.contact__form fieldset textarea {
  min-width: 100%;
  max-width: 100%;
  max-height: 10.5rem;
  padding: 1rem 1.5rem;
  font-size: inherit;
  color: black;
  background-color: inherit;
  border-radius: 0rem;
  border: #ccc 1px solid;
}
.contact__form fieldset textarea,
input:focus {
  outline: none;
}
.form__button {
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1rem;
  background-color: #0088a9;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  border: none;
  padding: 1rem 2rem;
  margin-top: 1rem;
  cursor: pointer;
  width: 40%;
  transition: all 01s;
}

.form__button:hover {
  color: #fff;
  background-color: #00bcd4;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  transition: all 01s;
}

.contact__information__text h1 {
  color: #0088a9;
  font-size: 18px;
  padding: 0rem 0rem 1rem;
  line-height: 0.5rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}

.contact__information__text {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
}

.contact__information__details ul {
  padding-top: 1rem;
}
.contact__information__details ul li {
  display: flex;
  font-weight: 500;
  font-size: 0.9rem;
  list-style: none;
  padding-bottom: 0.9rem;
  color: #0088a9;
}

.contact__information__details ul li a {
  text-decoration: none;
  color: #0088a9;
}

.contact__information__details ul li i {
  font-size: 1rem;
}

.contact__information__details ul li .fas {
  font-size: 1.4rem;
  flex-basis: 2.5rem;
}

.transition-fade {
  opacity: 1;
  transition: 350ms;
  transform: translateX(0);
  transform-origin: left;
}

html.is-animating .transition-fade {
  opacity: 0;
  transform: translateX(100%);
}

html.is-leaving .transition-fade {
  opacity: 0;
  transform: translateX(0);
}

.checkout__container {
  margin: 0 auto;
  padding-top: 2rem;
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.checkout__section {
  width: 70%;
}

.checkout__summary {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  flex-basis: 25%;
  background-color: #0088a9;
  padding: 1rem 0.1rem 0.3rem;
  text-align: center;
  border-radius: 00.1rem;
  max-height: 19.5rem;
  margin-top: 3.5rem;
}

.checkout__summary .summary__span {
  color: #ccc;
  display: block;
  font-size: 1.2rem;
}

.checkout__summary .summary__span:nth-child(1) {
  font-weight: 500;
  font-size: 1.3rem;
  color: #fff;
}

.checkout__summary ul {
  padding-top: 1rem;
  text-align: left;
  background-color: rgb(253, 253, 253);
  color: #6a6969;
  border-radius: 0.1rem;
}

.checkout__summary ul li {
  list-style: none;
  border-bottom: 1px solid #ccc;
  padding: 0.5rem;
}

.checkout__summary ul li .checkout__price,
.checkout__total {
  text-align: right;
  padding-left: 8rem;
  letter-spacing: 0.1rem;
}

.checkout__summary .checkout__total {
  font-size: 1.5rem;
  font-weight: 500;
}

.checkout__personal__information span {
  display: block;
  color: #0088a9;
  text-align: center;
  padding: 1rem;
}

.checkout__personal__information form input {
  display: inline-block;
  width: 47%;
  margin-left: 1rem;
  padding: 0.5rem 1.5rem;
  color: #ccc;
  margin-bottom: 0.8rem;
  font-size: inherit;
  color: black;
  background-color: inherit;
  border-radius: 0rem;
  border: #ccc 1px solid;
}

.checkout__personal__information #company,
#address1,
#address2 {
  width: 96%;
}

.checkout__personal__information button {
  margin-left: 1rem;
  width: 22.6%;
}

.checkout__personal__information p {
  font-size: 0.8rem;
  padding-left: 1rem;
  padding-top: 2rem;
}

.terms__and__condition h1 {
  padding-bottom: 1rem;
  text-align: left;
  font-size: 1rem;
}

.terms__and__condition p {
  font-size: 0.9rem;
  padding-bottom: 1.5rem;
}

.terms__and__condition ul {
  margin-top: 0;
  padding-top: 0;
}

.terms__and__condition ul li {
  list-style-type: none;
}

.terms__and__condition ul li a {
  text-decoration: none;
  color: #0088a9;
}

.thank__you__page__body {
    margin: 0;
    padding: 3.1rem 0;
    text-align: center;
}

.thank__you__page__body h1 {
    color: #6a6969;
    padding-bottom: 1rem;
}

.thank__you__page__body a {
    text-decoration: none;
    color: #0088a9;
}

/*-------------------------- Media Queries----------------------*/

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    padding-top: 20px;
    text-align: center;
  }

  .boxes .container {
    display: block;
    text-align: center;
  }
}
