@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  font-size: 16px;
}

body {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #777;
  background-color: #f5f5f5;
  overflow-x: hidden;
}

button:focus {
  outline: none;
}

.mainHeader {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1032;
  transition: 0.5s all ease;
}

.mainHeader nav .container {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  justify-content: space-between;
  padding: 10px 0;
  transition: 0.5s all ease;
}

.mainHeader nav a.navBrand {
  display: inline-block;
}

.mainHeader nav a.navBrand img {
  width: 120px;
  height: auto;
}

.mainHeader nav ul.navList {
  display: flex;
  gap: 30px;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mainHeader nav ul.navList a {
  text-transform: uppercase;
  font-weight: 500;
  color: #222d39;
  text-decoration: none;
}

.mainHeader nav .loginButton {
  width: 120px;
  height: auto;
  padding: 10px;
  font-weight: 500;
  display: inline-block;
  background-color: transparent;
  text-align: center;
  border: 2px solid #43adb4;
  color: #43adb4;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s all ease;
}

.mainHeader nav .loginButton:hover {
  background-color: #43adb4;
  color: #222d39;
}

.mainHeader nav .navButton {
  display: none;
}

.mainHeader.scrolled {
  background-color: #fff;
}

.mainHeader.scrolled nav .container {
  padding: 5px 0;
}

main .homeSection .row {
  min-height: 100vh;
  padding-top: 90px;
  padding-bottom: 90px;
  align-items: center;
}

main .homeSection .imgSide {
  background: radial-gradient(#43adb4, transparent 70%);
  text-align: center;
}

main .homeSection .imgSide img {
  max-height: calc(100vh - 180px);
}

main .homeSection h1 {
  background-image: linear-gradient(-60deg, #43adb4 0%, #b36dbb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Ubuntu", sans-serif;
  font-weight: 700;
}

main #about {
  background-color: #e3eceb;
}

main #expertise {
  background-color: #d9e1da;
}

main #expertise .productCard {
  box-shadow: 9px 9px 15px rgba(0, 0, 0, 0.06), -9px -9px 15px rgba(255, 255, 255, 0.36);
}

main #expertise .productCard .icon {
  max-width: 50%;
  background-color: rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  margin-bottom: 15px;
  padding: 10%;
}

main #expertise h5 {
  color: #222d39;
}

main #contact {
  background-color: #e3ece4;
}

main #contact label {
  color: #222d39;
}

main #contact iframe {
  width: 100%;
  height: 240px;
  border-radius: 30px;
}

.chatMain {
  overflow-x: hidden;
}

.chatMain .sectionCard {
  overflow-x: hidden;
  display: none;
  transition: 0.5s all ease;
}

.chatMain .sectionCard.active {
  transform: translateX(0);
  display: grid;
  align-items: center;
}

.chatMain .sectionCard.done {
  transform: translateX(-100%);
}

.chatMain .sectionCard .container {
  width: 100svw;
}

.chatMain #sec3 {
  align-content: flex-start;
  padding-top: 0;
  padding-bottom: 0;
}

.chatMain #sec3 #message-form {
  position: relative;
}

.chatMain #sec3 #message-form #message-input {
  display: block;
  overflow: hidden;
  resize: none;
  padding: 21px 67px 21px 22px;
  border: 1px solid #dee2e6;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1.5;
  color: #222d39;
  width: 100%;
  border-radius: 35px;
  transition: 0.3s all ease;
}

.chatMain #sec3 #message-form #message-input:focus {
  outline: none;
  background-color: #dee2e6;
}

.chatMain #sec3 #message-form #message-input:focus ~ .iconBtn {
  background-color: #43adb4;
  color: #222d39;
}

.chatMain #sec3 #message-form .iconBtn {
  height: 60px;
  width: 60px;
  border-radius: 30px;
  padding: 0;
  border: none;
  background-color: transparent;
  color: #777;
  position: absolute;
  right: 4px;
  bottom: 4px;
  transition: 0.3s all ease;
}

.sectionCard {
  flex: 0 0 100%;
  width: 100%;
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.roundBtn {
  width: 200px;
  height: 200px;
  border-radius: 100px;
  border: none;
  background-color: #43adb4;
  color: #222d39;
  transition: 0.3s all ease;
}

.roundBtn:hover {
  background-color: #16a085;
}

.roundBtn i {
  display: block;
  font-size: 1.5rem;
}

.roundBtn.secondary {
  background-color: #777;
  color: #fff;
}

.roundBtn.secondary:hover {
  background-color: #555;
}

.mainBtn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #43adb4;
  color: #222d39;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  border: none;
  min-width: 100px;
  transition: 0.3s all ease;
}

.mainBtn:hover {
  background-color: #16a085;
}

.mainBtn.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.mainBtn.secondary {
  background-color: #8edae0;
  color: #2b767b;
}

.mainBtn.secondary:hover {
  background-color: #43adb4;
  color: #fff;
}

.mainBtn.outline {
  background-color: transparent;
  border: 1px solid #43adb4;
  color: #43adb4;
}

.mainBtn.outline:hover {
  background-color: #222d39;
  border-color: #222d39;
  color: #fff;
}

.mainBtn.small {
  padding: 5px 10px;
  min-width: 80px;
}

.sectionPad {
  padding-top: 100px;
  padding-bottom: 100px;
  scroll-margin-top: 85px;
}

.productCard {
  padding: 10px;
  box-shadow: 9px 9px 15px rgba(0, 0, 0, 0.06), -9px -9px 15px #fff;
  border-radius: 30px;
  transition: 0.3s all ease;
}

.productCard .imgProduct {
  aspect-ratio: 2/1;
  width: 100%;
  border-radius: 20px 20px 10px 10px;
  margin-bottom: 15px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.productCard .text-content {
  padding: 0 10px;
}

.productCard h5 {
  color: #222d39;
}

.productCard p {
  margin-bottom: 0;
}

.productCard:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.06), -5px -5px 10px #fff;
}

.mainHead {
  font-family: "Ubuntu", sans-serif;
  background-image: linear-gradient(-60deg, #43adb4 0%, #b36dbb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  position: relative;
}

.mainHead::after {
  content: "";
  width: 60px;
  display: inline-block;
  height: 10px;
  background-color: #222d39;
  border-radius: 10px;
}

.mainHead h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.para {
  line-height: 2;
}

.link {
  position: relative;
  color: #777;
  text-decoration: none;
}

.link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: 0.3s width ease-in-out;
  background-color: #777;
}

.link:hover {
  color: #777;
  text-decoration: none;
}

.link:hover::after {
  width: 100%;
  right: 0;
  left: auto;
}

.addressCard {
  padding: 30px 20px 10px;
  box-shadow: 9px 9px 15px rgba(0, 0, 0, 0.06), -9px -9px 15px rgba(255, 255, 255, 0.36);
  border-radius: 30px;
  position: relative;
}

.addressCard ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.addressCard .icon {
  /*color: transparent;
  -webkit-text-stroke: 2px $acnt;*/
  color: #43adb4;
  font-size: 1.875rem;
  position: absolute;
  right: 10px;
  top: 10px;
  opacity: 0.3;
}

.addressCard h5 {
  font-weight: 500;
  color: #222d39;
}

footer {
  background-color: #f1f6f2;
  padding-top: 60px;
  border-top: 1px solid #e1e9e3;
}

footer .logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
}

footer .footerList {
  display: flex;
  justify-content: center;
  list-style-type: none;
  gap: 30px;
  padding-left: 0;
}

footer .copy {
  padding: 10px;
  text-align: center;
  background-color: #fff;
}

.quickResponses {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;
}

.quickResponses button {
  flex: 1 0 auto;
}

.chat-container {
  padding: 20px;
  background-color: #fff;
  border-radius: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

#chat-window {
  margin-bottom: 10px;
  padding: 20px 3px;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}

#chat-window::-webkit-scrollbar {
  width: 3px;
}

#chat-window::-webkit-scrollbar-track {
  background: #f1f1f1;
}

#chat-window::-webkit-scrollbar-thumb {
  background: #888;
}

#chat-window::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.user-message {
  text-align: right;
  background-color: #43adb4;
  padding: 5px 10px;
  border-radius: 17px 17px 5px 17px;
  color: #fff;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-left: auto;
  margin-bottom: 10px;
}

.bot-message {
  text-align: left;
  background-color: #b36dbb;
  padding: 5px 10px;
  border-radius: 17px 17px 17px 5px;
  color: #fff;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin-bottom: 10px;
}

.radioCard {
  display: grid;
}

.radioCard input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
  z-index: -2;
  opacity: 0;
  visibility: hidden;
}

.radioCard input[type=radio]:checked + label {
  border-color: #43adb4;
  color: #43adb4;
}

.radioCard input[type=radio]:checked + label h4 span {
  color: #43adb4;
}

.radioCard label {
  padding: 10px 10px 50px 10px;
  box-shadow: 9px 9px 15px rgba(0, 0, 0, 0.06), -9px -9px 15px #fff;
  border-radius: 20px;
  transition: 0.3s all ease;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
}

.radioCard label:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.06), -5px -5px 10px #fff;
}

.radioCard label h4 {
  font-size: 1.2rem;
  font-weight: 400;
}

.radioCard label h4 span {
  display: block;
  font-weight: 700;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.5rem;
  color: #222d39;
}

.radioCard label .icon {
  width: 40px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  border-radius: 20px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: grid;
  place-content: center;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
}

.radioCard.unlocked label .icon::before {
  content: "\f3c1";
}

.radioCard.locked {
  opacity: 0.7;
  pointer-events: none;
  cursor: not-allowed;
}

.radioCard.locked label {
  cursor: not-allowed;
}

.radioCard.locked label .icon::before {
  content: "\f023";
}

.searchInput {
  position: relative;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.searchInput::after {
  content: "\f002";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: grid;
  place-content: center;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  position: absolute;
  color: #43adb4;
  height: 100%;
  right: 20px;
  top: 0;
}

.searchInput input {
  padding: 15px 30px;
  border: none;
  background-color: transparent;
  border-radius: 30px;
  box-shadow: 9px 9px 15px rgba(0, 0, 0, 0.06), -9px -9px 15px #fff;
  transition: 0.3s all ease;
}

.searchInput input:focus {
  outline: none;
  box-shadow: 9px 9px 15px rgba(0, 0, 0, 0.06), -9px -9px 15px #fff, inset 9px 9px 15px rgba(0, 0, 0, 0.06), inset -9px -9px 15px #fff;
}

.iti.iti--allow-dropdown {
  width: 100%;
}

.modal-open {
  padding-right: 0px !important;
}

.modal-open footer,
.modal-open header.mainHeader {
  display: none;
}

.no-header ~ header.mainHeader,
.no-footer footer {
  display: none;
}

.whatsappBtn {
  background: linear-gradient(#34b77d, #5bbd7c);
  display: inline-grid;
  place-content: center;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  width: 60px;
  height: 60px;
  padding: 10px;
  text-decoration: none;
  font-size: 30px;
  color: #fff;
  border-radius: 30px 30px 30px 10px;
  transition: 0.5s all ease;
}

.whatsappBtn i {
  color: #fff;
}

.whatsappBtn:hover {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  bottom: 21px;
  text-decoration: none;
  color: #fff;
  border-radius: 30px;
}

.whatsappBtn:active {
  box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
  bottom: 19px;
}

a.backBtn {
  position: fixed;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  background: #fff;
  color: #222d39;
  display: grid;
  place-content: center;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 40px -8px, rgba(0, 0, 0, 0.3) 0px 8px 24px -12px;
  transition: 0.4s;
}

a.backbtn:hover {
  background: #43adb4;
  color: #fff;
}

@media (max-width: 991px) {
  .mainHeader {
    background-color: #fff;
  }
  .mainHeader nav .container {
    padding: 10px 0;
  }
  .mainHeader nav .navButton {
    display: block;
    flex: 0 0 45px;
    border: none;
    width: 45px;
    height: 45px;
    background-color: #b36dbb;
    border-radius: 30px;
  }
  .mainHeader nav .navButton.active i::before {
    content: "\f00d";
  }
  .mainHeader nav ul.navList {
    position: fixed;
    flex-direction: column;
    background-color: #eee;
    min-width: 300px;
    right: 0;
    top: 85px;
    height: calc(100vh + 85px);
    padding: 30px;
    transform: translateX(100%);
    transition: 0.5s all ease;
  }
  .mainHeader nav ul.navList.active {
    transform: translateX(0);
  }
  .mainHeader nav .loginButton {
    margin-left: auto;
  }
  .mainHeader.scrolled nav .container {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  :root {
    font-size: 14px;
  }
  main #expertise .productCard .icon {
    max-width: 80px;
    padding: 10px;
  }
  .chatMain {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .mainHeader {
    padding-left: 15px;
    padding-right: 15px;
  }
  footer .footerList {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    margin-bottom: 40px;
  }
  .quickResponses {
    display: none;
  }
  #sec3 .container {
    padding: 0;
  }
  #subjectWrapper,
  #courseWrapper {
    flex-wrap: nowrap;
    overflow-y: visible;
    overflow-x: auto;
    padding-top: 20px;
    padding-bottom: 20px;
    /* Track */
    /* Handle */
    /* Handle on hover */
  }
  #subjectWrapper::-webkit-scrollbar,
  #courseWrapper::-webkit-scrollbar {
    width: 3px;
    height: 3px;
  }
  #subjectWrapper::-webkit-scrollbar-track,
  #courseWrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  #subjectWrapper::-webkit-scrollbar-thumb,
  #courseWrapper::-webkit-scrollbar-thumb {
    background: #888;
  }
  #subjectWrapper::-webkit-scrollbar-thumb:hover,
  #courseWrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  #subjectWrapper .col-lg-2,
  #courseWrapper .col-lg-2 {
    flex: 0 0 40%;
  }
}
.sectionDiv {
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0) rotate(15deg);
  transition: 0.5s all ease;
}
.sectionDiv.active {
  position: unset;
  visibility: visible;
  opacity: 1;
  transform: scale(1) rotate(0deg);
}
.sectionDiv .cardTitle {
  margin-bottom: 20px;
}
.sectionDiv .cardTitle h4 {
  margin-bottom: 0;
  color: #222d39;
}
.sectionDiv .row {
  padding-top: 86px;
  padding-bottom: 86px;
  min-height: 100vh;
  align-items: center;
  align-content: center;
}
.sectionDiv .row .cardBtn {
  width: 100%;
  height: 200px;
  padding: 10px 10px 10px 10px;
  box-shadow: 9px 9px 15px rgba(0, 0, 0, 0.06), -9px -9px 15px #fff;
  border-radius: 20px;
  transition: 0.3s all ease;
  cursor: pointer;
  position: relative;
  border: 1px solid transparent;
}
.sectionDiv .row .cardBtn .icon {
  margin-bottom: 20px;
}
.sectionDiv .row .cardBtn .icon i {
  font-size: 60px;
  color: transparent;
  -webkit-text-stroke: 2px #43adb4;
}
.sectionDiv .row .cardBtn:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.06), -5px -5px 10px #fff;
}
.sectionDiv .packageDiv {
  padding: 10px 10px 10px 10px;
  box-shadow: 9px 9px 15px rgba(0, 0, 0, 0.06), -9px -9px 15px #fff;
  border-radius: 20px;
  display: block;
  transition: 0.5s all ease;
}
.sectionDiv .packageDiv:hover {
  box-shadow: -9px -9px 15px rgba(0, 0, 0, 0.06), 9px 9px 15px #fff;
}
.sectionDiv .packageDiv .packageName {
  color: #16a085;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.875rem;
}
.sectionDiv .packageDiv .amount {
  font-size: 24px;
  font-weight: 600;
  color: #222d39;
}

#selectedValues {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
}

.visuallyHidden {
  position: relative;
  width: 600px;
  height: 700px;
}
.visuallyHidden .wrapper {
  transform: scale(0.5) translate(-50%, -50%);
  left: 0%;
  top: 0%;
  position: absolute;
}

#toImg {
  width: 1200px;
  height: 1400px;
  background-color: #fff;
  display: grid;
}
#toImg .mainImg {
  width: 1200px;
  height: 1200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
#toImg .bottomSection {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ddd;
  height: 200px;
}
#toImg .bottomSection .logo {
  width: 420px;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
  padding: 5px;
}
#toImg .bottomSection .textContent {
  padding: 10px 30px;
  text-align: right;
}
#toImg .bottomSection .textContent h4 {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #222d39;
}
#toImg .bottomSection .textContent h4 span {
  font-weight: 400;
  color: #2b767b;
}
#toImg .bottomSection .textContent p {
  margin-bottom: 0;
  font-size: 20px;
  text-transform: lowercase;
  letter-spacing: 2px;
}/*# sourceMappingURL=main.css.map */