@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&family=Roboto:wght@300;400&display=swap");
* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(to right top, #ebf5fb, #e7f8f9, #e9faf4, #f1faec, #fef9e7);
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21.7em;
  width: 100%;
  height: 60px;
  padding: 42px 0;
  z-index: 999;
}
nav .logo img {
  width: 55%;
  position: relative;
  top: -10px;
}
nav .logo p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 30px;
  position: absolute;
  top: 20px;
}
nav .logo i {
  display: none;
}
nav .navlinks {
  display: flex;
}
nav .navlinks ul {
  display: flex;
  margin-left: -80px;
}
nav .navlinks ul li {
  padding: 0 15px;
}
nav .navlinks ul li .active {
  border-bottom: 3px solid black;
}
nav .navlinks ul li a {
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  position: relative;
}
nav .navlinks ul li a:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  left: 0;
  bottom: -10%;
  background-color: black;
  transition: all 0.4s ease;
}
nav .navlinks ul li a:hover::after {
  width: 100%;
}
nav button {
  background-color: #24e3eb;
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  border: 1px solid #24e3eb;
  font-size: 14px;
  padding: 13px 19px;
  line-height: 1.29;
  border-radius: 8px;
}
nav button:hover {
  background-color: #3092fa;
  cursor: pointer;
}

nav.sticky {
  position: fixed;
  background-color: white;
  animation: navbar 0.3s linear alternate;
}
@keyframes navbar {
  from {
    margin-top: -100px;
  }
  to {
    margin-top: 0px;
  }
}

.banner {
  width: 100%;
  height: calc(100vh - 84.4px);
  display: flex;
  justify-content: center;
}
.banner > div {
  width: 100%;
  padding: 100px 100px;
}
.banner > div img {
  width: 22%;
}
.banner > div h1 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
  font-size: 80px;
  line-height: 1.15em;
  margin: 25px 0;
  word-wrap: break-word;
  width: 110%;
}
.banner > div p {
  font-size: 18px;
  line-height: 1.556em;
  margin: 27px 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 82%;
}
.banner > div .circle {
  width: 80%;
  height: 100%;
  background-color: #fef5e7;
  border-radius: 60%;
  position: relative;
  left: 0%;
}
.banner > div .circle .img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.banner > div .circle .img img {
  width: 100%;
}
.banner > div .circle .img2 img {
  width: 35%;
  z-index: 999;
  position: absolute;
  left: 5%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
}
.banner > div .circle .img3 img {
  position: absolute;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 5px;
  bottom: 21%;
  width: 30%;
}
.banner > div .circle .img4 img {
  position: absolute;
  border-radius: 5px;
  bottom: 0%;
  width: 10%;
  left: 12%;
  animation: img4 1.6s infinite alternate;
}
@keyframes img4 {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(10px);
  }
}
.banner > div .circle .img5 img {
  position: absolute;
  border-radius: 5px;
  width: 8%;
  right: 4%;
  top: 18%;
  animation: spin 5s infinite linear;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.banner > div .circle .img6 img {
  position: absolute;
  right: 12%;
  top: 36%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.section_3 {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  gap: 3em;
}
.section_3 > div {
  width: 620px;
  padding: 30px 0px 30px 30px;
}
.section_3 > div h1 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
  font-size: 45px;
  line-height: 1.25em;
  margin: 25px 0;
  word-wrap: break-word;
  width: 100%;
}
.section_3 > div p {
  font-size: 14px;
  line-height: 1.556em;
  margin: 27px 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 82%;
  color: #171717;
}
.section_3 > div img {
  width: 100%;
}
.section_3 > div .profile {
  padding-top: 80px;
}
.section_3 > div .profile img {
  width: 12%;
  float: left;
  margin-right: 20px;
}
.section_3 > div .profile p {
  margin-top: 0px;
  color: black;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  width: 95%;
}
.section_3 > div .profile span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #6d6b6b;
  margin-left: 0.2em;
  font-size: 16px;
}

.section_4 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10em;
  flex-wrap: wrap;
  padding: 10px 0;
}
.section_4 > div {
  width: 500px;
  padding: 20px 0;
}
.section_4 > div .accordian {
  border-radius: 5px;
  padding: 20px 28px;
  margin-top: 30px;
  background-color: white;
  border-radius: 10px;
}
.section_4 > div .accordian:hover {
  cursor: pointer;
}
.section_4 > div .accordian .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section_4 > div .accordian .header h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
  font-size: 19px;
  line-height: 1.421em;
  font-weight: 400;
}
.section_4 > div .accordian .header i {
  font-size: 20px;
  padding: 5px 5px;
  color: white;
  background-color: #24e3eb;
  border-radius: 50%;
}
.section_4 > div .accordian .content {
  display: none;
}
.section_4 > div .accordian .content p {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: rgb(126, 124, 124);
  padding-top: 30px;
}
.section_4 > div .header.active i:before {
  content: "\ec8d";
}
.section_4 > div .header.active ~ .content {
  display: block;
  animation: accordian 0.3s linear alternate;
}
@keyframes accordian {
  from {
    margin-top: -30px;
  }
  to {
    margin-top: 0px;
  }
}
.section_4 > div img {
  margin-top: 150px;
  width: 80%;
}
.section_4 > div h1 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
  font-size: 45px;
  line-height: 1.25em;
  margin: 25px 0;
  word-wrap: break-word;
  width: 100%;
}
.section_4 > div h6 {
  margin-top: 4em;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #595656;
}
.section_4 > div h6 button {
  color: #24e3eb;
  border-style: hidden;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border-bottom: 1px solid #24e3eb;
  margin-left: 5px;
  cursor: pointer;
}

.section_5 {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}
.section_5 > div {
  width: 550px;
  padding: 20px;
}
.section_5 > div img {
  position: relative;
  right: 0em;
  width: 50%;
}
.section_5 > div h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
  font-size: 40px;
  line-height: 1.227em;
}
.section_5 > div p {
  font-size: 14px;
  line-height: 1.556em;
  margin: 27px 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #0b0b0b;
}
.section_5 > div button {
  color: #24e3eb;
  border-style: hidden;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  border-bottom: 1px solid #24e3eb;
  cursor: pointer;
  margin: 30px 0;
}
.section_5 > div ul li {
  font-size: 18px;
  line-height: 1.556em;
  margin: 27px 0 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #343131;
}
.section_5 > div ul li i {
  font-size: 20px;
  padding: 5px 5px;
  color: white;
  background-color: #33e5aa;
  border-radius: 50%;
  margin-right: 10px;
}

.section_6 {
  padding: 80px 0;
}
.section_6 button {
  margin: 0 auto;
  padding: 5px 27px;
  background-color: #33e5aa;
  color: white;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  border-style: hidden;
  border-radius: 5px;
}
.section_6 h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
  font-size: 44px;
  line-height: 1.227em;
  width: 45%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}
.section_6 p {
  font-size: 14px;
  line-height: 1.556em;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #111111;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  margin-top: 40px;
}
.section_6 .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  padding: 60px 0;
}
.section_6 .container > div {
  width: 300px;
}
.section_6 .container > div img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s ease;
}
.section_6 .container > div img:hover {
  box-shadow: 0 10px 20px rgba(100, 100, 111, 0.2);
  cursor: pointer;
}
.section_6 .container > div h3 {
  font-size: 23px;
  font-family: "Poppins", sans-serif;
  margin-top: 25px;
  font-weight: 500;
}
.section_6 .container > div p {
  width: 100%;
  text-align: left;
  margin-top: 10px;
  font-weight: 400;
  font-size: 13px;
}

.section_7 {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3em;
}
.section_7 > div {
  width: 600px;
}
.section_7 > div .img {
  width: 370px;
  height: 370px;
  background-color: rgb(252, 241, 236);
  border-radius: 50%;
  left: 10%;
  transform: translate(0%, 0%);
  display: flex;
}
.section_7 > div h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 44px;
}
.section_7 > div p {
  font-size: 14px;
  line-height: 1.556em;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #0a0a0a;
  margin: 30px 0;
}
.section_7 > div h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #000;
  font-size: 18px;
}
.section_7 > div h6 a {
  color: #3092fa;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
}

.testinomial {
  padding: 40px 0 0px 0;
}
.testinomial button {
  margin: 0 auto;
  padding: 5px 27px;
  background-color: #33e5aa;
  color: white;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  border-style: hidden;
  border-radius: 5px;
}
.testinomial h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #000;
  font-size: 42px;
  line-height: 1.227em;
  width: 40%;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}
.testinomial .swiper {
  width: 85%;
  margin: 50px auto;
}
.testinomial .swiper .swiper-pagination span {
  padding: 8px;
}
.testinomial .swiper .swiper-slide {
  background: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  margin-bottom: 50px;
  transition: all 0.4s;
}
.testinomial .swiper .swiper-slide i {
  font-size: 25px;
  color: #fcb900;
}
.testinomial .swiper .swiper-slide p {
  margin: 20px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 17px;
}
.testinomial .swiper .swiper-slide img {
  width: 20%;
  -o-object-fit: contain;
     object-fit: contain;
  float: left;
}
.testinomial .swiper .swiper-slide .user_content {
  float: left;
  margin-left: 25px;
  margin-top: 10px;
}
.testinomial .swiper .swiper-slide .user_content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  word-spacing: 2px;
}
.testinomial .swiper .swiper-slide .user_content h6 {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #7a7a7a;
}
.testinomial .swiper .swiper-slide:hover {
  box-shadow: 0 10px 10px rgba(100, 100, 111, 0.2);
  cursor: pointer;
}

.footer {
  padding: 60px 0 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgb(200, 197, 197);
}
.footer .card:nth-child(1) {
  width: 800px;
  padding-left: 100px;
  margin-top: -60px;
}
.footer > div {
  width: 450px;
  padding-bottom: 30px;
}
.footer > div h2 {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  width: 80%;
  margin-top: 10px;
}
.footer > div button {
  background-color: transparent;
  color: #24e3eb;
  border-style: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-top: 30px;
  border-bottom: 1px solid #24e3eb;
  cursor: pointer;
  position: relative;
}
.footer > div button::after {
  content: "";
  position: absolute;
  height: 1.5px;
  width: 0%;
  left: 0;
  bottom: -10%;
  background-color: #24e3eb;
  transition: all 0.4s ease;
}
.footer > div button:hover::after {
  width: 100%;
}
.footer > div h3 {
  font-size: 14px;
  color: #33e5aa;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.footer > div ul {
  margin-top: 10px;
}
.footer > div li {
  padding: 2px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 400;
  cursor: pointer;
}
.footer > div li a {
  position: relative;
  color: black;
}
.footer > div li a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0%;
  left: 0;
  bottom: -10%;
  background-color: #24e3eb;
  transition: all 0.4s ease;
}
.footer > div li a:hover {
  color: #24e3eb;
  font-weight: bolder;
}
.footer > div li a:hover::after {
  width: 100%;
}

.copyright {
  padding: 13px 0;
  border-top: 1px solid rgb(190, 188, 188);
  display: flex;
  align-items: center;
  justify-content: center;
}
.copyright > div {
  width: 450px;
}
.copyright > div img {
  width: 20%;
}
.copyright > div p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  text-align: center;
}
.copyright > div i {
  float: right;
  padding: 5px 10px;
  font-size: 28px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.copyright > div i:hover {
  transform: scale(1.2);
}
.copyright > div .pinterest {
  color: crimson;
}
.copyright > div .twitter {
  color: #24e3eb;
}
.copyright > div .facebook {
  color: #3b5998;
}

#progress {
  position: fixed;
  right: 30px;
  bottom: 20px;
  height: 50px;
  width: 50px;
  background-color: #24e3eb;
  display: grid;
  place-items: center;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(100, 100, 111, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
#progress #top {
  display: block;
  background-color: white;
  color: #000;
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  display: grid;
  place-items: center;
  font-size: 30px;
  border-radius: 100%;
}
#progress:hover {
  background-color: #33e5aa;
}

#progress.active {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  .banner {
    height: 100vh;
    flex-wrap: wrap;
    gap: 4em;
    padding-bottom: 930px;
  }
  .banner > div {
    padding: 15px 56px;
  }
  .banner > div h1 {
    width: 100%;
    font-size: 60px;
  }
  .banner > div img {
    margin-top: 40px;
  }
  .banner > div .circle {
    width: 56%;
    height: 60%;
    left: 23%;
    position: absolute;
    border-radius: 100%;
  }
  nav {
    gap: 0em;
    padding: 34px 0;
    background: white;
    position: fixed;
  }
  nav .navlinks {
    display: inline-table;
    position: fixed;
    background-color: white;
    width: 50%;
    right: 0;
    margin-top: 638px;
    height: 100vh;
    margin-right: -400px;
    transition: all 0.8s ease;
    z-index: 9;
  }
  nav .navlinks ul {
    margin-left: 0px;
    display: grid;
    justify-content: flex-start;
    align-items: center;
    padding: 125px 0 0 40px;
  }
  nav .navlinks ul li {
    padding: 10px 15px;
  }
  nav .navlinks ul li a {
    font-family: Poppins, sans-serif;
    font-size: 21px;
    line-height: 1.53em;
    font-weight: 500;
    color: black;
  }
  nav .logo {
    transition: all 0.4s ease;
  }
  nav .logo #menu.active::before {
    content: "\ec8d";
    z-index: 999;
    color: black;
    position: fixed;
    right: 27px;
  }
  nav .logo img {
    position: absolute;
    width: 15%;
    left: 7%;
    top: 10.3%;
  }
  nav .logo i {
    font-size: 46px;
    position: absolute;
    right: 20px;
    display: block;
    top: 15%;
    z-index: 99;
  }
  nav .navlinks.active {
    margin-right: 0px;
  }
  nav button {
    display: none;
  }
  @keyframes navbar {
    from {
      margin-top: 0px;
    }
  }
}
@media (max-width: 459px) {
  nav .logo img {
    width: 172px !important;
    margin-top: 4px !important;
  }
  .banner {
    padding-top: 80px;
  }
  .banner > div {
    padding: 15px 32px;
  }
  .banner > div img {
    width: 33%;
  }
  .banner > div h1 {
    font-size: 27px;
    width: 100%;
  }
  .banner > div P {
    font-size: 15px;
    font-weight: 400;
    width: 100%;
  }
  .banner > div .circle {
    width: 81%;
    height: 46%;
    left: 50%;
    right: 50%;
    transform: translate(-50%);
  }
  .banner > div .circle img {
    margin-left: -80px;
  }
  .banner > div .circle .img6 img {
    top: 45%;
    width: 27%;
  }
  .section_3 > div {
    padding: 0px 0px 0px 30px;
  }
  .section_3 > div h1 {
    font-size: 22px;
    width: 97%;
  }
  .section_3 > div p {
    width: 92%;
    font-size: 15px;
  }
  .section_3 > div img {
    width: 90%;
  }
  .section_3 > div .profile span {
    font-size: 12px;
  }
  .section_3 > div .profile p {
    font-size: 14px;
    width: 94%;
  }
  .section_4 {
    gap: 2em;
  }
  .section_4 > div {
    padding: 20px 28px;
  }
  .section_4 > div h1 {
    font-size: 22px;
  }
  .section_4 > div h6 {
    margin-top: 3em;
  }
  .section_4 > div img {
    width: 90%;
    display: flex;
    margin: 0 auto;
  }
  .section_4 > div .accordian .header h3 {
    font-size: 16px;
  }
  .section_4 > div .accordian .content p {
    font-size: 14px;
  }
  .section_5 > div {
    padding: 20px 36px;
  }
  .section_5 > div ul li {
    font-size: 14px;
  }
  .section_5 > div img {
    display: flex;
    margin: 0 auto;
  }
  .section_5 > div h2 {
    font-size: 22px;
  }
  .section_5 > div P {
    font-size: 15px;
  }
  .section_5 > div button {
    margin: 17px 0;
  }
  .section_6 h2 {
    width: 88%;
    font-size: 22px;
  }
  .section_6 p {
    width: 89%;
    font-size: 15px;
  }
  .section_6 .container {
    flex-wrap: wrap;
    gap: 3em;
    padding: 60px 30px;
  }
  .section_6 .container > div {
    width: 354px;
  }
  .section_6 .container > div h3 {
    font-size: 20px;
  }
  .section_6 .container > div p {
    font-size: 12.5px;
  }
  .section_7 {
    flex-wrap: wrap;
  }
  .section_7 > div {
    padding: 2px 34px;
  }
  .section_7 > div h2 {
    font-size: 22px;
  }
  .section_7 > div p {
    font-size: 14px;
    margin: 10px 0;
  }
  .section_7 > div .img {
    padding: 0 50px;
    width: 280px;
    height: 280px;
    display: flex;
    margin: 0 auto;
  }
  .section_7 > div .img .img_bottom {
    margin-left: -64px;
  }
  .section_7 > div .img .img_2 {
    width: 43%;
    top: 67%;
    left: 30%;
  }
  .section_7 > div .img .img_1 {
    top: -14%;
    left: 15%;
  }
  .section_7 > div .img .img_3 {
    left: 0;
    width: 37%;
  }
  .section_7 > div h6 {
    font-size: 12px;
  }
  .section_7 > div input {
    width: 100%;
    margin-top: 23px;
    margin-bottom: 10px;
  }
  .section_7 > div button {
    width: 100%;
  }
  .testinomial h2 {
    font-size: 22px;
    width: 85%;
  }
  .footer {
    border: none;
    flex-wrap: wrap;
    margin-top: 145px;
  }
  .footer .card:nth-child(1) {
    padding-left: 40px;
    margin-top: -260px;
  }
  .footer > div {
    padding: 20px 40px;
  }
  .footer > div h2 {
    width: 100%;
  }
  .copyright {
    flex-wrap: wrap;
  }
  .copyright .content:nth-child(3) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .copyright > div img {
    display: flex;
    margin: 0 auto;
  }
  .copyright > div p {
    margin: 10px 0;
  }
}
@media (min-width: 460px) and (max-width: 574px) {
  nav .logo i {
    right: 29px;
  }
  nav .logo img {
    top: 23.3%;
  }
  .banner {
    padding-top: 80px;
  }
  .banner > div {
    padding: 15px 32px;
  }
  .banner > div img {
    width: 27%;
  }
  .banner > div h1 {
    font-size: 31px;
    width: 100%;
  }
  .banner > div P {
    font-size: 16px;
    font-weight: 400;
    width: 100%;
  }
  .banner > div .circle {
    width: 85%;
    height: 65%;
    left: 50%;
    right: 50%;
    transform: translate(-50%);
  }
  .banner > div .circle .img6 img {
    top: 45%;
    width: 27%;
  }
  .banner > div .circle .img4 img {
    bottom: 4%;
    width: 10%;
    left: 15%;
  }
  .section_3 > div {
    padding: 0px 0px 0px 30px;
  }
  .section_3 > div h1 {
    font-size: 24px;
  }
  .section_3 > div p {
    width: 94%;
    font-size: 16px;
  }
  .section_3 > div img {
    width: 90%;
  }
  .section_3 > div .profile span {
    font-size: 14px;
  }
  .section_3 > div .profile p {
    font-size: 16px;
  }
  .section_4 {
    gap: 2em;
  }
  .section_4 > div {
    padding: 20px -1px;
  }
  .section_4 > div h1 {
    font-size: 22px;
  }
  .section_4 > div h6 {
    margin-top: 3em;
  }
  .section_4 > div .accordian .header h3 {
    font-size: 16px;
  }
  .section_4 > div .accordian .content p {
    font-size: 14px;
  }
  .section_5 > div {
    padding: 20px 36px;
  }
  .section_5 > div img {
    display: flex;
    margin: 0 auto;
  }
  .section_5 > div h2 {
    font-size: 22px;
  }
  .section_5 > div P {
    font-size: 15px;
  }
  .section_5 > div button {
    margin: 17px 0;
  }
  .section_6 h2 {
    width: 88%;
    font-size: 22px;
  }
  .section_6 p {
    width: 89%;
    font-size: 15px;
  }
  .section_6 .container {
    flex-wrap: wrap;
    gap: 3em;
  }
  .section_6 .container > div {
    width: 400px;
  }
  .section_6 .container > div h3 {
    font-size: 20px;
  }
  .section_6 .container > div p {
    font-size: 12.5px;
  }
  .section_7 {
    padding: 0%;
    flex-wrap: wrap;
  }
  .section_7 > div {
    padding: 2px 34px;
  }
  .section_7 > div h2 {
    font-size: 22px;
  }
  .section_7 > div p {
    font-size: 15px;
    margin: 10px 0;
  }
  .section_7 > div .img {
    padding: 0 50px;
    width: 320px;
    height: 320px;
    display: flex;
    margin: 0 auto;
  }
  .section_7 > div .img .img_2 {
    width: 45%;
    top: 65%;
    left: 47%;
  }
  .section_7 > div .img .img_1 {
    top: -13%;
    left: 15%;
    width: 62%;
  }
  .section_7 > div .img .img_3 {
    left: 0;
    width: 45%;
  }
  .section_7 > div input {
    width: 100%;
    margin-top: 23px;
    margin-bottom: 10px;
  }
  .section_7 > div button {
    width: 100%;
  }
  .testinomial h2 {
    font-size: 22px;
    width: 85%;
  }
  .footer {
    flex-wrap: wrap;
    margin-top: 145px;
  }
  .footer .card:nth-child(1) {
    padding-left: 40px;
    margin-top: -260px;
  }
  .footer > div {
    padding: 20px 10px;
  }
  .footer > div h2 {
    width: 100%;
  }
  .copyright {
    flex-wrap: wrap;
  }
  .copyright .content:nth-child(3) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .copyright > div img {
    display: flex;
    margin: 0 auto;
  }
  .copyright > div p {
    margin: 10px 0;
  }
}
@media (min-width: 575px) and (max-width: 767px) {
  nav .logo i {
    right: 32px;
  }
  .banner {
    padding-top: 80px;
  }
  .banner > div {
    padding: 15px 32px;
  }
  .banner > div img {
    width: 27%;
  }
  .banner > div h1 {
    font-size: 30px;
    width: 100%;
  }
  .banner > div P {
    font-size: 16px;
    font-weight: 400;
    width: 100%;
  }
  .banner > div .circle {
    width: 85%;
    height: 65%;
    left: 50%;
    right: 50%;
    transform: translate(-50%);
  }
  .banner > div .circle .img6 img {
    top: 45%;
    width: 27%;
  }
  .banner > div .circle .img4 img {
    bottom: 4%;
    width: 10%;
    left: 15%;
  }
  .section_3 {
    gap: 0;
  }
  .section_3 div {
    padding: 30px 0 -1px 0;
  }
  .section_3 div h1 {
    margin: 0;
    font-size: 30px;
  }
  .section_3 div img {
    width: 90%;
  }
  .section_4 {
    gap: 2em;
  }
  .section_4 > div {
    width: 100%;
    padding: 0 40px;
  }
  .section_4 > div h1 {
    font-size: 30px;
  }
  .section_4 > div h6 {
    margin-top: 2em;
  }
  .section_5 > div {
    width: 647px;
    padding: 20px 30px;
  }
  .section_5 > div h2 {
    font-size: 30px;
  }
  .section_5 > div img {
    width: 40%;
    display: flex;
    margin: 0 auto;
  }
  .section_5 > div button {
    margin: 17px 0;
  }
  .section_6 h2 {
    width: 88%;
    font-size: 30px;
  }
  .section_6 p {
    width: 89%;
    font-size: 15px;
  }
  .section_6 .container {
    flex-wrap: wrap;
    gap: 3em;
  }
  .section_6 .container > div {
    width: 354px;
  }
  .section_6 .container > div h3 {
    font-size: 20px;
  }
  .section_6 .container > div p {
    font-size: 12.5px;
  }
  .section_7 {
    padding: 0%;
    flex-wrap: wrap;
  }
  .section_7 > div {
    padding: 2px 34px;
  }
  .section_7 > div h2 {
    font-size: 22px;
  }
  .section_7 > div p {
    font-size: 15px;
    margin: 10px 0;
  }
  .section_7 > div .img {
    padding: 0 50px;
    width: 320px;
    height: 320px;
    display: flex;
    margin: 0 auto;
  }
  .section_7 > div .img .img_2 {
    width: 45%;
    top: 65%;
    left: 47%;
  }
  .section_7 > div .img .img_1 {
    top: -13%;
    left: 15%;
    width: 62%;
  }
  .section_7 > div .img .img_3 {
    left: 0;
    width: 45%;
  }
  .section_7 > div input {
    width: 100%;
    margin-top: 23px;
    margin-bottom: 10px;
  }
  .section_7 > div button {
    width: 100%;
  }
  .testinomial h2 {
    font-size: 30px;
    width: 100%;
  }
  .footer {
    flex-wrap: wrap;
    margin-top: 145px;
  }
  .footer .card:nth-child(1) {
    padding-left: 40px;
    margin-top: -260px;
  }
  .footer > div {
    padding: 20px 10px;
    width: 209px;
  }
  .footer > div h2 {
    width: 90%;
  }
  .copyright div img {
    width: 45%;
    margin-left: 10%;
  }
  .copyright div p {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  nav {
    gap: 6em;
  }
  nav button {
    padding: 11px 13px;
  }
  .banner {
    flex-wrap: wrap;
    margin-bottom: 350px;
  }
  .banner > div {
    padding: 36px 57px;
  }
  .banner > div img {
    width: 20%;
  }
  .banner > div h1 {
    width: 100%;
    font-size: 50px;
  }
  .banner > div p {
    width: 100%;
    font-size: 20px;
    font-weight: 400;
  }
  .banner > div .circle {
    width: 41%;
    height: 53%;
    background-color: #fef5e7;
    border-radius: 100%;
    position: absolute;
    left: 50%;
    right: 50%;
    transform: translate(-50%);
  }
  .section_3 {
    gap: 0em;
  }
  .section_3 > div {
    width: 781px;
    padding: 0 30px;
  }
  .section_3 > div img {
    width: 65%;
    display: flex;
    margin: 0 auto;
  }
  .section_3 > div h1 {
    margin: 0;
    font-size: 35px;
  }
  .section_3 > div .profile {
    padding-top: 47px;
  }
  .section_3 > div .profile p {
    font-size: 16px;
    width: 80%;
  }
  .section_3 > div .profile img {
    width: 9%;
  }
  .section_3 > div .profile span {
    font-size: 14px;
  }
  .section_4 {
    gap: 0;
  }
  .section_4 > div {
    width: 740px;
  }
  .section_4 > div h1 {
    font-size: 35px;
  }
  .section_4 > div h6 {
    margin-top: 2em;
  }
  .section_4 > div img {
    width: 65%;
    display: flex;
    margin: 0 auto;
  }
  .section_5 > div {
    width: 770px;
    padding: 20px 30px;
  }
  .section_5 > div img {
    width: 30%;
    display: flex;
    margin: 0 auto;
  }
  .section_5 > div button {
    margin: 17px 0;
  }
  .section_5 > div h2 {
    font-size: 35px;
  }
  .section_6 {
    padding: 40px 0;
  }
  .section_6 h2 {
    width: 88%;
    font-size: 35px;
  }
  .section_6 p {
    width: 89%;
    font-size: 18px;
  }
  .section_6 .container {
    flex-wrap: wrap;
    gap: 3em;
  }
  .section_6 .container > div {
    width: 354px;
  }
  .section_6 .container > div h3 {
    font-size: 23px;
  }
  .section_6 .container > div p {
    font-size: 14.5px;
  }
  .section_7 {
    padding: 0%;
  }
  .section_7 > div {
    padding: 2px 34px;
  }
  .section_7 > div h2 {
    font-size: 22px;
  }
  .section_7 > div p {
    font-size: 15px;
    margin: 10px 0;
  }
  .section_7 > div .img {
    padding: 0 50px;
    width: 320px;
    height: 320px;
    display: flex;
    margin: 0 auto;
  }
  .section_7 > div .img .img_2 {
    width: 45%;
    top: 65%;
    left: 47%;
  }
  .section_7 > div .img .img_1 {
    top: -13%;
    left: 15%;
    width: 62%;
  }
  .section_7 > div .img .img_3 {
    left: 0;
    width: 45%;
  }
  .section_7 > div input {
    width: 100%;
    margin-top: 23px;
    margin-bottom: 10px;
  }
  .section_7 > div button {
    width: 100%;
  }
  .testinomial h2 {
    font-size: 35px;
    width: 85%;
  }
  .footer {
    flex-wrap: wrap;
    margin-top: 100px;
  }
  .footer .card:nth-child(1) {
    padding-left: 10px;
  }
  .footer > div {
    padding: 20px 55px;
  }
  .copyright div img {
    width: 35%;
    margin-left: 10%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  nav {
    gap: 10em;
  }
  nav button {
    padding: 10px 10px;
  }
  nav .navlinks ul li a {
    font-size: 20.5px;
  }
  .banner {
    height: auto;
  }
  .banner > div {
    width: 100%;
    padding: 63px 65px;
  }
  .banner > div img {
    width: 24%;
  }
  .banner > div h1 {
    width: 100%;
    font-size: 48px;
  }
  .banner > div p {
    width: 100%;
  }
  .banner > div .circle {
    height: 400px;
    width: 400px;
    border-radius: 50%;
    display: flex;
    margin: 0 auto;
  }
  .section_3 {
    flex-wrap: nowrap;
  }
  .section_3 > div h1 {
    font-size: 41px;
  }
  .section_3 > div .profile p {
    width: 90%;
  }
  .section_4 {
    flex-wrap: nowrap;
    gap: 2em;
  }
  .section_4 > div {
    padding: 20px 30px;
  }
  .section_4 > div img {
    width: 90%;
  }
  .section_4 > div h1 {
    font-size: 40px;
  }
  .section_4 > div h6 {
    margin-top: 3em;
  }
  .section_5 {
    padding: 80px 40px;
    flex-wrap: nowrap;
  }
  .section_6 h2 {
    width: 100%;
    font-size: 40px;
  }
  .section_6 p {
    width: 70%;
  }
  .section_6 button {
    padding: 10px 40px;
    font-size: 18px;
  }
  .section_6 .container {
    padding: 60px 65px;
  }
  .section_7 > div {
    font-size: 40px;
  }
  .section_7 > div .img {
    width: 360px;
    height: 360px;
    margin: auto;
  }
  .section_7 > div .img .img_1 {
    width: 51%;
    left: 19%;
  }
  .section_7 > div .img .img_2 {
    width: 45%;
  }
  .section_7 > div .img .img_3 {
    width: 45%;
  }
  .testinomial h2 {
    width: 100%;
    font-size: 40px;
  }
  .testinomial p {
    width: 70%;
  }
  .testinomial button {
    padding: 10px 40px;
    font-size: 18px;
  }
  .testinomial .swiper {
    width: 89%;
  }
  .testinomial .swiper P {
    width: 100%;
  }
  .copyright > div img {
    width: 20%;
    margin-left: 20%;
  }
  .copyright > div i {
    margin-right: 31px;
  }
  #progress {
    margin-bottom: 50px;
  }
}/*# sourceMappingURL=style.css.map */