@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
  direction: ltr;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.counter-timer {
  position: absolute;
  padding: 20px;
  left: 10px;
  bottom: 25%;
  background: linear-gradient(90deg, #FB84A7 4.06%, #8687FF 100%);
  border-radius: 6px;
  color: #fff;
  text-align: center;
  z-index: 99;
  font-weight: 500;
}

.counter-timer h3 {
  font-size: 30px;
  margin-top: 10px;
}

header {
  width: 100%;
  min-height: 100vh;
  background-image: url("../images/banner.png");
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}
@media (max-width: 600px) {
  header {
    background-position: top 20%;
  }
}
@media (max-width: 1360px) {
  header {
    background-position: 30%;
  }
}
@media (max-width: 1150px) {
  header {
    background-position: 0%;
  }
}
header .fixed-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0.4rem 0rem;
  max-width: none;
  background-color: #fff;
  z-index: 30;
}
header .fixed-nav #menu-icon ion-icon {
  color: #222222;
}
header .fixed-nav .nav_container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}
.arab {
  padding: 0.25rem 1rem;
  color: #F5F5F5;
  background: linear-gradient(90deg, #FB84A7 4.06%, #8687FF 100%);
  border-radius: 4px;
  margin: 2rem 0;
  border: none;
  margin-left: auto;
  margin-right: 20px;
  cursor:pointer;
}
@media (max-width: 600px) {
  header .fixed-nav {
    padding: 1rem 0.7rem;
  }
}
header .fixed-nav .logo-container img {
  visibility: visible !important;
}

header nav .nav_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  z-index: 30;
}
header nav .nav_container .img_container {
  width: 6rem;
}
header nav .nav_container .img_container img {
  width: 100%;
}
header nav .nav_container .nav_items ul li {
  display: inline-block;
  margin: 0 1rem;
}
@media (max-width: 1570px) {
  header nav .nav_container .nav_items ul li {
    margin: 0 0.5rem;
  }
}
@media (max-width: 1400px) {
  header nav .nav_container .nav_items ul li {
    margin: 0 0.3rem;
  }
}
header nav .nav_container .nav_items ul li a {
  text-decoration: none;
  color: #222222;
  transition: ease 0.5s;
}
header nav .nav_container .nav_items ul li a:hover {
  color: #8687FF;
}
header nav .nav_container .open-menu {
  display: block !important;
}
header nav .nav_container .mobile_nav_items {
  display: none;
  z-index: 300;
  width: 70%;
  height: 100vh;
  max-width: 300px;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #fff;
  padding: 1rem 0.5rem;
}
header nav .nav_container .mobile_nav_items .close {
  text-align: right;
}
header nav .nav_container .mobile_nav_items .close ion-icon {
  font-size: 2rem;
}
header nav .nav_container .mobile_nav_items ul li {
  display: block;
  margin: 1.4rem 1rem;
}
header nav .nav_container .mobile_nav_items ul li a {
  color: #222222;
  text-decoration: none;
}
header nav .nav_container #menu-icon {
  display: none;
  font-size: 2rem;
}
@media (max-width: 1150px) {
  header nav .nav_container .img_container {
    width: 4rem;
  }
  header nav .nav_container #menu-icon {
    display: block !important;
    margin-top: 7px;
  }
  header nav .nav_container .nav_items {
    display: none;
  }
}
@media (max-width: 600px) {
  header nav .nav_container #menu-icon {
    color: #F5F5F5;
    font-size: 2.4rem;
  }
}

@media (max-width: 1000px) {
  header .hero_section hr {
    margin-top: 5rem;
  }
}
@media (max-width: 900px) {
  header .hero_section hr {
    margin-top: 7rem;
  }
}
@media (max-width: 800px) {
  header .hero_section hr {
    margin-top: 12rem;
  }
}
header .hero_section .hero_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media (max-width: 800px) {
  header .hero_section .hero_container {
    flex-direction: column;
    padding: 5rem 0;
  }
}
header .hero_section .hero_container .text_content {
  color: #F5F5F5;
  max-width: 550px;
}
@media (max-width: 1100px) {
  header .hero_section .hero_container .text_content {
    max-width: 500px;
  }
}
header .hero_section .hero_container .text_content h1 {
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 146%;
}
header .hero_section .hero_container .text_content p {
  font-weight: 300;
  font-size: 18px;
  line-height: 152.5%;
  margin: 1rem 0;
}
header .hero_section .hero_container .text_content .social_btn a img {
  width: 10rem;
}
header .hero_section .hero_container .text_content .counter_section {
  width: 100%;
  position: absolute;
  top: 80%;
  left: 0;
}
@media (max-width: 1000px) {
  header .hero_section .hero_container .text_content .counter_section {
    top: 100%;
  }
}
@media (max-width: 900px) {
  header .hero_section .hero_container .text_content .counter_section {
    top: 110%;
  }
}
@media (max-width: 800px) {
  header .hero_section .hero_container .text_content .counter_section {
    top: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 500px) {
  header .hero_section .hero_container .text_content .counter_section {
    justify-content: space-between;
  }
}
header .hero_section .hero_container .text_content .counter_section .counter_info {
  display: inline-block;
  margin-right: 1rem;
  margin: 0 0.6rem;
}
header .hero_section .hero_container .text_content .counter_section .counter_info .count {
  font-weight: 300;
  font-size: 48px;
  background: linear-gradient(86.29deg, #FB83A7 14.39%, #8887FD 79.87%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 450px) {
  header .hero_section .hero_container .text_content .counter_section .counter_info .count {
    font-size: 38px;
  }
}
@media (max-width: 380px) {
  header .hero_section .hero_container .text_content .counter_section .counter_info .count {
    font-size: 30px;
  }
}
header .hero_section .hero_container .img_container {
  width: 100%;
  max-width: 700px;
}
header .hero_section .hero_container .img_container img {
  width: 100%;
}

header .about_us_section .about_container {
  margin-top: 3rem;
  padding: 10rem 0 20rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  header .about_us_section .about_container {
    padding: 6rem 0 10rem 0;
  }
}
@media (max-width: 800px) {
  header .about_us_section .about_container {
    flex-direction: column;
  }
  header .about_us_section .about_container .img_container {
    width: 100% !important;
  }
  header .about_us_section .about_container .text_content {
    width: 100% !important;
    margin-top: 3rem;
  }
}
header .about_us_section .about_container .img_container {
  width: 50%;
}
header .about_us_section .about_container .img_container img {
  width: 100%;
}
header .about_us_section .about_container .text_content {
  width: 45%;
  color: #F5F5F5;
}
header .about_us_section .about_container .text_content .text {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, #FB84A7 4.06%, #8687FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
header .about_us_section .about_container .text_content .title {
  font-weight: 600;
  font-size: 36px;
  line-height: 145%;
}
header .about_us_section .about_container .text_content .title span {
  font-weight: 300;
}
header .about_us_section .about_container .text_content p {
  font-weight: 300;
  font-size: 18px;
  line-height: 180%;
  margin: 1rem 0;
  color: rgba(245, 245, 245, 0.9);
}

.feature_section {
  overflow-x: hidden;
}
.feature_section hr {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
  padding: 0 1rem;
  border: 1px solid #D5D2D2;
}
.feature_section .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5rem 1rem;
}
@media (max-width: 800px) {
  .feature_section .container {
    flex-direction: column;
    padding: 1rem;
  }
  .feature_section .container .text_container {
    width: 100% !important;
  }
  .feature_section .container .img-container {
    width: 100% !important;
  }
}
.feature_section .container .text_container {
  width: 50%;
}
.feature_section .container .text_container .heading h1 {
  font-size: clamp(2rem, 3vw, 36px);
}
.feature_section .container .text_container .item {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.feature_section .container .text_container .item .img_container {
  width: 5rem;
  margin-right: 2rem;
}
.feature_section .container .text_container .item .img_container img {
  width: 100%;
}
.feature_section .container .text_container .item .text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.feature_section .container .text_container .item .text p {
  line-height: 166%;
}
.feature_section .container .img_container {
  width: 45%;
}
.feature_section .container .img_container img {
  width: 100%;
}

.screenshot_section {
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}
.screenshot_section .img-container {
  position: absolute;
  left: 0;
  top: 40%;
  z-index: -1;
}
.screenshot_section .img-container img {
  width: 50%;
  max-width: 1000px;
}
.screenshot_section .container {
  padding: 4rem 1rem 0 0;
}
@media (max-width: 600px) {
  .screenshot_section .container {
    padding: 2rem 1rem 0 0;
  }
}
.screenshot_section .container .heading_section {
  text-align: center;
}
.screenshot_section .container .heading_section h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}
.screenshot_section .container .heading_section h1 span {
  font-weight: 300;
}
.screenshot_section .container .img_container {
  margin: 3rem auto;
  width: 100%;
  max-width: 1100px;
}
.screenshot_section .container .img_container img {
  width: 100%;
}
.screenshot_section .swiper_container .swiper {
  width: 80%;
  padding-top: 50px;
  padding-bottom: 30px;
  margin: 0 auto;
}
.screenshot_section .swiper_container .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 400px;
}
.screenshot_section .swiper_container .swiper-slide img {
  width: 100%;
}

.features_section {
  width: 100%;
  min-height: 50vh;
  background-image: url("../images/banner-2.png");
  background-size: cover;
  background-position: top;
  overflow-x: hidden;
}
@media (max-width: 600px) {
  .features_section {
    background-position: bottom !important;
    margin-top: -50px;
  }
}
.features_section .container {
  padding: 15rem 1rem 10rem 1rem;
}
@media (max-width: 600px) {
  .features_section .container {
    padding: 15rem 1rem 10rem 1rem;
  }
}
.features_section .heading {
  text-align: center;
  font-weight: 600;
  font-size: 1.4rem;
  color: #F5F5F5;
}
.features_section .features_container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 3rem 0;
}
@media (max-width: 800px) {
  .features_section .features_container {
    flex-direction: column;
  }
  .features_section .features_container .items {
    width: 100% !important;
  }
  .features_section .features_container .items:nth-child(2) .img-container {
    max-width: 500px;
  }
}
.features_section .features_container .item {
  display: flex;
  margin: 1.5rem 0;
}
.features_section .features_container .item .img_container img {
  width: 1rem;
}
.features_section .features_container .item .text {
  margin-left: 1rem;
  color: #F5F5F5;
}
.features_section .features_container .item .text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.features_section .features_container .item .text p {
  line-height: 166%;
  color: rgba(245, 245, 245, 0.8);
}
.features_section .features_container .items {
  width: 31.6666666667%;
}
.features_section .features_container .items .img-container {
  width: 100%;
  max-width: 700px;
}
.features_section .features_container .items .img-container img {
  width: 100%;
}
.features_section .features_container .items:nth-child(2) {
  display: grid;
  place-items: center;
}
.features_section .features_container .items:nth-child(3), .features_section .features_container .items:nth-child(1) {
  display: flex;
  flex-direction: column;
}
.features_section .features_container .items:nth-child(3) {
  justify-content: space-between;
}

.sponsor_section {
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 600px) {
  .sponsor_section {
    margin-top: -120px;
  }

  .sponsor_section#sponsor{
    margin-top: -99px;
    margin-bottom: 30px;
  }
}
.sponsor_section .sponsor_container {
  display: flex;
  align-items: flex-start;
  padding: 3rem 0;
}
@media (max-width: 860px) {
  .sponsor_section .sponsor_container {
    flex-direction: column;
  }
  .sponsor_section .sponsor_container .right_container {
    padding: 0 1rem;
    width: 100%;
    margin-left: 0 !important;
    margin: 2rem 0;
  }
}
@media (max-width: 600px) {
  .sponsor_section .sponsor_container .charges_container {
    flex-direction: column;
  }
  .sponsor_section .sponsor_container .charges_container .charge_item {
    width: 100%;
  }
  .sponsor_section .sponsor_container .charges_container .charge_item .card {
    max-width: 100% !important;
    margin: 2rem 0;
  }
}
.sponsor_section .sponsor_container .left_container .img_container {
  width: 100%;
  max-width: 600px;
  margin-left: -10px;
}
.sponsor_section .sponsor_container .left_container .img_container img {
  width: 100%;
}
.sponsor_section .sponsor_container .right_container {
  margin-left: 3rem;
}
.sponsor_section .sponsor_container .right_container .text_content .text {
  font-weight: 600;
  font-size: 1.1rem;
  background: linear-gradient(90deg, #FB84A7 4.06%, #8687FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.sponsor_section .sponsor_container .right_container .text_content .title {
  margin: 1rem 0;
  font-weight: 600;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
}
.sponsor_section .sponsor_container .right_container .text_content .content {
  font-weight: 300;
}
.sponsor_section .sponsor_container .right_container .charges_container {
  display: flex;
  margin: 2rem 0;
  width: 100%;
}
@media (max-width: 600px) {
  .sponsor_section .sponsor_container .right_container .charges_container {
    margin: 2rem 0 0 0;
  }
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item:nth-child(2) .card {
  background-color: #F8F6FF;
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item:nth-child(2) .card .charges_card .charges_item {
  background-color: #E8E3FB;
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item {
  margin-right: 1rem;
  width: 100%;
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item .head {
  display: flex;
  margin-bottom: 1rem;
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item .head img {
  width: 1rem;
  margin-right: 10px;
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item .card {
  width: 100%;
  max-width: 350px;
  background-color: #FFF5F5;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 49% 97%, 0 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 49% 97%, 0 100%);
  padding: 1rem;
  padding-bottom: 2rem;
  border-radius: 6px;
}
@media (max-width: 1100px) and (min-width: 900px) {
  .sponsor_section .sponsor_container .right_container .charges_container .charge_item .card {
    max-width: 300px;
  }
}
@media (max-width: 900px) and (min-width: 860px) {
  .sponsor_section .sponsor_container .right_container .charges_container .charge_item .card {
    max-width: 280px;
  }
}
@media (max-width: 750px) and (min-width: 645px) {
  .sponsor_section .sponsor_container .right_container .charges_container .charge_item .card {
    max-width: 300px;
    width: 100%;
  }
}
@media (max-width: 645px) and (min-width: 550px) {
  .sponsor_section .sponsor_container .right_container .charges_container .charge_item .card {
    max-width: 280px;
    width: 100%;
  }
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item .card .charges_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px 0;
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item .card .charges_card {
  display: flex;
  justify-content: center;
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item .card .charges_card .charges_item {
  background-color: #FBE3E3;
  width: 65px;
  height: 55px;
  border-radius: 6px;
  margin-right: 10px;
  display: grid;
  place-items: center;
}

.sponsor_section .sponsor_container .right_container .charges_container .charge_item .card .charges_card .charges_item.audio-video {
  width: 85px;
  text-align: center;
}

.sponsor_section .sponsor_container .right_container .charges_container .charge_item .card .charges_card .charges_item h4 {
  font-weight: 300;
  font-size: 0.8rem;
}
.sponsor_section .sponsor_container .right_container .charges_container .charge_item .card .charges_card .charges_item h4 span {
  font-weight: 500;
}
.sponsor_section .sponsor_container .right_container .sign_in_container {
  text-align: center;
  margin-top: -10px;
}
.sponsor_section .sponsor_container .right_container .sign_in_container .input_group {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor_section .sponsor_container .right_container .sign_in_container .input_group label {
  margin-left: 15px;
  font-weight: 300;
}
.sponsor_section .sponsor_container .right_container .sign_in_container .input_group label a {
  color: #222222;
}
.sponsor_section .sponsor_container .right_container .sign_in_container .error_message {
  display: none;
}
.sponsor_section .sponsor_container .right_container .sign_in_container #btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  color: #F5F5F5;
  background: linear-gradient(90deg, #FB84A7 4.06%, #8687FF 100%);
  border-radius: 4px;
  margin: 2rem 0;
}

.how_to_section {
  width: 100%;
  min-height: 30vh;
  background-image: url("../images/banner-3.png");
  background-size: cover;
  background-position: top;
  position: relative;
  padding: 6rem 0;
  overflow-x: hidden;
  padding-bottom: 13rem;
}
@media (max-width: 600px) {
  .how_to_section {
    margin-top: -30px;
    padding: 6rem 0 8rem 0;
  }
}
.how_to_section #headerPopup {
  width: 75%;
  margin: 0 auto;
}
.how_to_section #headerPopup iframe {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 1330px) {
  .how_to_section .img-container {
    max-width: 500px !important;
  }
  .how_to_section .img_container {
    max-width: 700px !important;
  }
}
@media (max-width: 1030px) {
  .how_to_section .img-container {
    max-width: 400px !important;
  }
  .how_to_section .img_container {
    max-width: 500px !important;
  }
}
@media (max-width: 1030px) {
  .how_to_section .img-container {
    max-width: 400px !important;
  }
  .how_to_section .img_container {
    margin: 0rem 0;
    max-width: 700px !important;
  }
}
@media (max-width: 600px) {
  .how_to_section .heading {
    margin: 8rem 0 0 0;
  }
}
@media (max-width: 460px) {
  .how_to_section .heading {
    margin: 12rem 0 0 0;
    padding-bottom: 0.8rem !important;
  }
}
.how_to_section .img-container {
  width: 100%;
  max-width: 600px;
  position: absolute;
  top: -20px;
  right: -120px;
}
.how_to_section .img-container img {
  width: 100%;
}
.how_to_section .img_container {
  width: 100%;
  max-width: 900px;
}
.how_to_section .img_container img {
  width: 100%;
}
.how_to_section .heading {
  color: #F5F5F5;
  padding: 4rem 0;
}
.how_to_section .heading h1 {
  font-weight: 500;
  font-size: 2rem;
}
.how_to_section .heading p {
  color: rgba(245, 245, 245, 0.9);
  margin: 1rem 0;
  font-weight: 300;
}
.how_to_section .video_popup_section #fade {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.how_to_section .video_popup_section #light {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 600px;
  z-index: 1002;
  overflow: visible;
}
button.close {
    position: absolute;
    color: #fff;
    opacity: 1;
    font-weight: 100;
    font-size: 41px;
    right: 14px;
    z-index: 99999;
}
button.close:hover{
  color: #fff;
}
#setgetitsmsiframe button{
bottom: 12vh !important;
    right: 24px !important;
}

.modal {
    display: none;
    vertical-align: middle;
    position: relative;
    z-index: 2;
    max-width: 300px!important;
    box-sizing: border-box;
    width: 90%;
    background: #000!important;
    padding: 0!important;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -o-border-radius: 8px;
    -ms-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 10px #000;
    -moz-box-shadow: 0 0 10px #000;
    -o-box-shadow: 0 0 10px #000;
    -ms-box-shadow: 0 0 10px #000;
    box-shadow: 0 0 10px #000;
    text-align: left;
    z-index: 99999999 !important;
    top: 48px!important;
}

.modal-body {
    padding: 0 !important;
}
.modal-content {
    background-color: #fff0 !important;
}
@media ((min-width: 576px)) {
.modal-dialog {
    max-width: fit-content !important;
    margin: 1.75rem auto;
}
}

@media (max-width: 700px) {
  .how_to_section .video_popup_section #light {
    left: 0;
    margin-left: 0;
  }
}
.how_to_section .video_popup_section #light video {
  width: 100%;
  max-height: 90vh;
}
.how_to_section .video_popup_section #boxclose {
  float: right;
  cursor: pointer;
  color: #fff;
  border-radius: 3px;
  background: #222222;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  position: absolute;
  right: 2px;
  top: 2px;
  z-index: 1002;
  opacity: 0.9;
}
.how_to_section .video_popup_section .boxclose:before {
  content: "×";
}
.how_to_section .video_popup_section #fade:hover ~ #boxclose {
  display: none;
}
.how_to_section .video_popup_section .test:hover ~ .test2 {
  display: none;
}

.contact_section {
  padding-bottom: 5rem;
  overflow-x: hidden;
}
@media (max-width: 600px) {
  .contact_section {
    margin-top: -70px;
  }
}
.contact_section .container .heading {
  text-align: center;
}
.contact_section .container .heading h1 {
  font-weight: 600;
  background: linear-gradient(180deg, #FB84A7 4.06%, #8687FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.contact_section .container .heading p {
  margin: 1rem 0;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.contact_section .container .form_container {
  width: 100%;
  max-width: 900px;
  background: #F4EEFA;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 750px) {
  .contact_section .container .form_container {
    flex-direction: column;
  }
  .contact_section .container .form_container form {
    width: 100% !important;
  }
  .contact_section .container .form_container .right_container {
    width: 100% !important;
  }
}
.contact_section .container .form_container form {
  width: 50%;
}
.contact_section .container .form_container form input[type=text] {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 0.4rem 1rem;
}
.contact_section .container .form_container form input[type=password] {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 0.4rem 1rem;
}
.contact_section .container .form_container form textarea {
  width: 100%;
  height: 200px;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 1rem;
}
.contact_section .container .form_container form .input {
  margin: 1rem 0;
}
@media (max-width: 430px) {
  .contact_section .container .form_container form .flex {
    flex-direction: column;
    margin: 0 0.5rem;
  }
  .contact_section .container .form_container form .flex div {
    margin: 0.5rem 0;
  }
}
.contact_section .container .form_container form .input_group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.contact_section .container .form_container form .input_group input:nth-child(2) {
  margin-left: 0.5rem;
}
.contact_section .container .form_container form .input_group input:nth-child(1) {
  margin-right: 0.5rem;
}
.contact_section .container .form_container form .input_group span {
  font-weight: 400;
  color: rgba(34, 34, 34, 0.7);
  font-size: 0.9rem;
}
.contact_section .container .form_container form .input_group label {
  font-weight: 300;
  font-size: 0.9rem;
}
@media (max-width: 850px) {
  .contact_section .container .form_container form .input_group span, .contact_section .container .form_container form .input_group label {
    font-size: 0.8rem;
  }
}
.contact_section .container .form_container form #btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  color: #F5F5F5;
  background: linear-gradient(90deg, #FB84A7 4.06%, #8687FF 100%);
  border-radius: 4px;
  cursor: pointer;
  border:none;
}
.contact_section .container .form_container form .input:last-child {
  display: flex;
  justify-content: right;
}
.contact_section .container .form_container .right_container {
  width: 50%;
  padding: 1rem 2rem;
}
.contact_section .container .form_container .right_container .img_container img {
  width: 100%;
}
.contact_section .container .form_container .right_container .mail {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_section .container .form_container .right_container .mail img {
  width: 2rem;
  margin-right: 1rem;
}

footer {
  color: #F5F5F5;
  padding: 2rem 0;
  background: rgb(42, 44, 151);
  background: linear-gradient(80deg, rgb(42, 44, 151) 10%, rgb(78, 21, 114) 100%);
}
footer .links {
  color: #F5F5F5;
  text-decoration: none;
  display: inline-block;
  margin-right: 2rem;
}
footer .links a {
  color: #F5F5F5;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
  margin-right: 1rem;
}
footer .links a:nth-child(2) {
  margin-left: 1rem;
}
footer .text {
  font-size: 0.9rem;
  font-weight: 400;
}
footer .text a {
  color: #F5F5F5;
  font-size: 0.9rem;
  font-weight: 400;
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 890px) {
  footer .container {
    flex-direction: column;
  }
  footer .container .links {
    margin: 0 auto;
  }
  footer .container .text {
    margin-top: 1rem;
    text-align: center;
  }
}

.appointment_section {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: none;
  justify-content: center;
  align-items: center;
}
@media (max-width: 650px) {
  .appointment_section {
    top: 45%;
  }
}
@media (max-width: 550px) {
  .appointment_section {
    top: 65%;
  }
}
.appointment_section .container {
  width: 100%;
}
@media (max-width: 600px) {
  .appointment_section .container {
    padding: 0 1rem;
  }
}
.appointment_section .container .form_container {
  width: 100%;
  max-width: 600px;
  background: #F4EEFA;
  padding: 1rem 2rem;
  border-radius: 10px;
  margin: 0 auto;
}
.appointment_section .container .form_container .close-btn {
  text-align: right;
}
.appointment_section .container .form_container .close-btn ion-icon {
  font-size: 1.5rem;
  cursor: pointer;
}
.appointment_section .container .form_container form input[type=text] {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 0.4rem 1rem;
}
.appointment_section .container .form_container form textarea {
  width: 100%;
  height: 200px;
  border: none;
  outline: none;
  border-radius: 5px;
  padding: 1rem;
}
.appointment_section .container .form_container form .input {
  margin: 1rem 0;
}
.appointment_section .container .form_container form .input_group {
  display: flex;
  justify-content: space-between;
}
.appointment_section .container .form_container form .input_group input:nth-child(2) {
  margin-left: 0.5rem;
}
.appointment_section .container .form_container form .input_group input:nth-child(1) {
  margin-right: 0.5rem;
}
.appointment_section .container .form_container form .input_group span {
  font-weight: 400;
  color: rgba(34, 34, 34, 0.7);
  font-size: 0.9rem;
}
.appointment_section .container .form_container form .input_group label {
  font-weight: 300;
  font-size: 0.9rem;
}
.appointment_section .container .form_container form #accent-btn {
  display: inline-block;
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  color: #F5F5F5;
  background: linear-gradient(90deg, #FB84A7 4.06%, #8687FF 100%);
  border-radius: 4px;
}
.appointment_section .container .form_container form .input:last-child {
  display: flex;
  justify-content: right;
}

.terms .heading {
  width: 100%;
  height: 30vh;
  background-image: url("../images/banner-3.png");
  background-size: cover;
  background-position: center;
  display: grid;
  place-items: center;
}
.terms .heading h1 {
  text-align: center;
  color: #F5F5F5;
  font-weight: 500;
}
.terms .content {
  padding: 1rem 0;
  line-height: 1.2;
}/*# sourceMappingURL=style.css.map */