@import url("https://fonts.googleapis.com/css2?family=PT Sans:wght@400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PT Sans", sans-serif;
}

.absolute-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hidden {
  display: none;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-align {
  display: flex;
  align-items: center;
}

.flex {
  display: flex;
}

a {
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

button:hover {
  cursor: pointer;
}

button,
input {
  outline: none;
  border: none;
  border-radius: 4px;
}

body::-webkit-scrollbar,
.scroll::-webkit-scrollbar {
  width: 10px;
  background: #000;
}
body::-webkit-scrollbar-track,
.scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.3);
}
body::-webkit-scrollbar-thumb,
.scroll::-webkit-scrollbar-thumb {
  background-color: #5ab4fb;
}

.section-faq {
  margin-bottom: 40px;
}
.section-faq .label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.section-faq .label h2 {
  color: #5ab4fb;
}
.section-faq .label .ln {
  display: flex;
  align-items: center;
}
.section-faq .label .ln span {
  color: #5ab4fb;
  margin: 0 10px;
}
.section-faq .label .ln::before,
.section-faq .label .ln::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #5ab4fb;
}

.faqsItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.faqsItem .icon-container {
  font-size: 24px;
}

.section-faq .box {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.section-faq .box .form {
  width: 100%;
  padding: 20px 21px;
  box-shadow: 12px 24px 50px 0 rgba(0, 0, 0, 0.06);
}

.section-faq .faq-list .faq .faq-question {
  background-color: #5ab4fb;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  color: #fff;
  border-radius: 25px;
  cursor: pointer;
  margin-top: 20px;
}

.section-faq .faq-list .faq .faq-question a {
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-faq .faq-list .faq .faq-question:hover {
  background-color: #5ab4fb;
}

.section-faq .collapsible {
  padding: 20px;
  border: 1px solid #d6d1d4;
  background-color: white;
  box-shadow: 12px 24px 50px 0 rgba(0, 0, 0, 0.06);
  transition: display 0.5s ease;
  -webkit-transition: display 0.5s ease;
    border-radius: 40px;
  -moz-transition: display 0.5s ease;
  -o-transition: display 0.5s ease;
}

.section-faq .collapsible .hidden {
  display: none;
  -webkit-transition: display 0.5s ease;
  -moz-transition: display 0.5s ease;
  -o-transition: display 0.5s ease;
}

.bubbly-button {
  font-family: "Helvetica", "Arial", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background-color: #ff0081;
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  box-shadow: 0 2px 25px rgba(110, 174, 255, 0.62);
}
.bubbly-button:focus {
  outline: 0;
}
.bubbly-button:active {
  transform: scale(0.9);
  background-color: #cbe4f7;
  box-shadow: 0 2px 25px rgb(203, 228, 247);
}

section.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #5ab4fb;

}
section.contact-container .container {
  position: relative;
  min-width: 1100px;
  min-height: 550px;
  display: flex;
  z-index: 2;
}
section.contact-container .container .contactInfo {
  position: absolute;
  top: 40px;
  width: 350px;
  height: calc(100% - 80px);
  background: #5ab4fb;
  z-index: 1;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}
section.contact-container .container .contactInfo h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}
section.contact-container .container .contactInfo ul.info {
  position: relative;
  margin: 20px 0;
}
section.contact-container .container .contactInfo ul.info li {
  position: relative;
  list-style: none;
  display: flex;
  margin: 20px 0;
  cursor: pointer;
  align-items: flex-start;
}
section.contact-container .container .contactInfo ul.info li span:nth-child(1) {
  width: 30px;
  min-width: 30px;
}
section.contact-container .container .contactInfo ul.info li span:nth-child(1) img {
  max-width: 100%;
  filter: invert(1);
}
section.contact-container .container .contactInfo ul.info li span:nth-child(2) {
  color: #fff;
  margin-left: 10px;
  font-weight: 300;
}
section.contact-container .container .contactInfo ul.sci {
  position: relative;
  display: flex;
}
section.contact-container .container .contactInfo ul.sci li {
  list-style: none;
  margin-right: 15px;
}
section.contact-container .container .contactInfo ul.sci li a {
  text-decoration: none;
}
section.contact-container .container .contactInfo ul.sci li a img {
  filter: invert(1);
}
section.contact-container .container .contactForm {
  position: absolute;
  padding: 70px 50px;
  padding-left: 250px;
  margin-left: 150px;
  width: calc(100% - 150px);
  height: 100%;
  background: #fff;
  box-shadow: 0 50px 50px rgba(0, 0, 0, 0.25);
}
section.contact-container .container .contactForm h2 {
  color: #0f3959;
  font-size: 24px;
  font-weight: 500;
}
section.contact-container .container .contactForm .formBox {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 30px;
}
section.contact-container .container .contactForm .formBox .inputBox {
  position: relative;
  margin-bottom: 35px;
}
section.contact-container .container .contactForm .formBox .inputBox.w50 {
  width: 47%;
}
section.contact-container .container .contactForm .formBox .inputBox.w100 {
  width: 100%;
}
section.contact-container .container .contactForm .formBox .inputBox input,
section.contact-container .container .contactForm .formBox .inputBox textarea {
  width: 100%;
  resize: none;
  padding: 5px 0;
  font-size: 18px;
  font-weight: 300;
  color: #333;
  border: none;
  outline: none;
  border-bottom: 1px solid #777;
}
section.contact-container .container .contactForm .formBox .inputBox textarea {
  height: 120px;
}
section.contact-container .container .contactForm .formBox .inputBox span {
  position: absolute;
  left: 0;
  padding: 5px 0;
  pointer-events: none;
  font-size: 18px;
  font-weight: 300;
  transition: 0.3s;
}
section.contact-container .container .contactForm .formBox .inputBox input:focus ~ span,
section.contact-container .container .contactForm .formBox .inputBox input:valid ~ span,
section.contact-container .container .contactForm .formBox .inputBox textarea:focus ~ span,
section.contact-container .container .contactForm .formBox .inputBox textarea:valid ~ span {
  transform: translateY(-20px);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #5ab4fb;
  font-weight: 500;
}
section.contact-container .container .contactForm .formBox .inputBox input[type=submit] {
  position: relative;
  cursor: pointer;
  background: #5ab4fb;
  color: #fff;
  border-radius: 40px;
  border: none;
  max-width: 150px;
  padding: 12px;
}
section.contact-container .container .contactForm .formBox .inputBox input[type=submit]:hover {
  background: #cfe5f7;
}

/*responsive*/
@media (max-width: 1200px) {
  section.contact-container .container {
    width: 90%;
    min-width: auto;
    margin: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }
  section.contact-container .container .contactInfo {
    top: 0;
    height: 550px;
    position: relative;
    box-shadow: none;
  }
  section.contact-container .container .contactForm {
    position: relative;
    width: calc(100% - 350px);
    padding-left: 0px;
    margin-left: 0;
    padding: 40px;
    height: 550px;
    box-shadow: none;
  }
}
@media (max-width: 991px) {
  section.contact-container .container {
    display: flex;
    flex-direction: column-reverse;
  }
  section.contact-container .container .contactForm {
    width: 100%;
    height: auto;
  }
  section.contact-container .container .contactInfo {
    width: 100%;
    height: auto;
    flex-direction: row;
  }
  section.contact-container .container .contactInfo ul.sci {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 600px) {
  section.contact-container .container .contactForm {
    padding: 25px;
  }
  section.contact-container .container .contactInfo {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  section.contact-container .container .contactInfo ul.sci {
    margin-top: 40px;
  }
  section.contact-container .container .contactForm .formBox .inputBox.w50 {
    width: 100%;
  }
}
body.dark {
  background-color: #0f0f0f;
  color: #f1f1f1;
}
body.dark a {
  color: #f1f1f1;
}
body.dark .search-container {
  background-color: #272727;
  box-shadow: 10px 10px 10px #171717, -10px -10px 10px #000000;
}
body.dark .search-container input {
  background-color: #121212;
  color: #fff;
}
body.dark .section-faq .collapsible {
  background-color: #121212;
}
body.dark footer {
  background-color: #000;
}
body.dark .contactForm {
  background-color: #0f0f0f !important;
}
body.dark .contactForm h2 {
  color: #f1f1f1 !important;
}
body.dark .contactForm input,
body.dark .contactForm textarea {
  background-color: #272727 !important;
  color: #fff !important;
}

body {
  width: 100%;
  background-color: #ecf0f3;
}

.preloader-container {
  position: fixed;
  z-index: 99;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader-container .preloader .play-button {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 35px;
  border-color: transparent transparent transparent #5ab4fb;
  animation: text-pulse 1s ease infinite;
  margin: 0 auto;
}
.preloader-container .preloader .bars-container {
  display: flex;
  gap: 10px;
  height: 80px;
  align-items: center;
}
.preloader-container .preloader .bars-container .bar {
  width: 15px;
  height: 60px;
  background: #5ab4fb;
  border-radius: 10px;
  animation: music-waves 1s ease infinite;
}
.preloader-container .preloader .bars-container .bar:nth-child(1) {
  animation-delay: -0.1s;
}
.preloader-container .preloader .bars-container .bar:nth-child(2) {
  animation-delay: -0.2s;
}
.preloader-container .preloader .bars-container .bar:nth-child(3) {
  animation-delay: -0.3s;
}
.preloader-container .preloader .bars-container .bar:nth-child(4) {
  animation-delay: -0.4s;
}
.preloader-container .preloader .bars-container .bar:nth-child(5) {
  animation-delay: -0.5s;
}
.preloader-container .preloader .bars-container .bar:nth-child(6) {
  animation-delay: -0.6s;
}
.preloader-container .preloader .bars-container .bar:nth-child(7) {
  animation-delay: -0.7s;
}
.preloader-container .preloader .bars-container .bar:nth-child(8) {
  animation-delay: -0.8s;
}
.preloader-container .preloader .bars-container .bar:nth-child(9) {
  animation-delay: -0.9s;
}
.preloader-container .preloader .text {
  font-size: 40px;
}

.loaded .preloader-container {
  opacity: 0;
  visibility: hidden;
}

@keyframes music-waves {
  0%, 100% {
    height: 20px;
  }
  50% {
    height: 70px;
  }
}
@keyframes text-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}
@media (min-width: 769px) {
  body .content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  body header {
    height: 60px;
  }
  body header .logo {
    max-width: 100px;
  }
  body header .logo img {
    max-width: 100%;
    max-height: 100%;
  }
  body header nav ul {
    gap: 40px;
    list-style: none;
  }
  body header nav ul a.active, body header nav ul a:hover {
    color: #5ab4fb;
    font-weight: bold;
  }
  body header nav ul a.active:after, body header nav ul a:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #5ab4fb;
  }
  body header .mode {
    width: 100px;
    height: 34px;
    background: #fff;
    justify-content: space-between;
    border-radius: 34px;
    border: 2px solid #000;
    box-sizing: content-box;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  body header .mode input {
    visibility: hidden;
  }
  body header .mode.dark .dark {
    right: 0;
  }
  body header .mode > div {
    width: 100%;
    height: 34px;
    border-radius: 34px;
    position: absolute;
  }
  body header .mode > div.dark {
    background: #000;
    color: #fff;
    right: -66px;
    transition: right 0.2s ease;
  }
  body header .mode > div.dark .icon {
    width: 34px;
    height: 34px;
    border-radius: 34px;
  }
  body header .mode > div.light {
    background: #fff;
  }
  body main h1.title,
  body main p.sub-title {
    text-align: center;
  }
  body main .search-container {
    background-color: #ecf0f3;
    padding: 2rem;
    border-radius: 24px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 10px 10px 10px #d1d9e6, -10px -10px 10px #f9f9f9;
  }
  body main .search-container form {
    height: 60px;
    gap: 20px;
    margin-bottom: 40px;
  }
  body main .search-container form input {
    border: 4px solid #cbe4f7;
    border-radius: 35px;
    width: 100%;
    padding: 0 10px;
  }
  body main .search-container form input:hover, body main .search-container form input:focus {
    border: 4px solid #5ab4fb !important;
  }
  body main .search-container form button {
    border-radius: 35px;
    height: 100%;
    background: #5ab4fb;
    color: #fff;
    width: 200px;
    font-weight: bold;
    font-size: 20px;
    border: 3px solid #fff;
  }
  body main .search-container p {
    font-size: 16px;
    color: #646464;
  }
  body main form body {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  body main form body #data {
    width: 100% !important;
  }
  body main section.guide {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  body main section.guide .step-card {
    max-width: 300px;
    text-align: center;
    position: relative;
  }
  body main section.guide .step-card .title {
    gap: 10px;
    font-size: 24px;
    margin: 14px 0;
    opacity: 0.9;
  }
  body main section.guide .step-card .title .count {
    width: 34px;
    height: 34px;
    border-radius: 34px;
    background: #cbe4f7;
    color: #5ab4fb;
  }
  body main section.guide .step-card p {
    text-align: center;
    opacity: 0.8;
  }
  body main section.guide .step-card .next-arrow {
    position: absolute;
    top: 20%;
    right: -20%;
  }
  body main .simple-page-container .sub-title {
    max-width: 600px;
    margin: 0 auto;
  }
  body main .simple-page-container section {
    margin: 40px 0;
  }
  body main .simple-page-container section h2 {
    margin-bottom: 20px;
  }
  body main .simple-page-container section p,
  body main .simple-page-container section ul,
  body main .simple-page-container section address {
    padding-left: 0px;
  }
  body footer {
    width: 100%;
    height: 100px;
    background: #f7f7f7;
  }
  body footer .content-container {
    width: 100%;
    height: 100%;
  }
  body footer ul {
    list-style: none;
    height: -moz-fit-content;
    height: fit-content;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  body {
    background-color: #ecf0f3;
    width: 100%;
  }
  body .content-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
  }
  body header {
    margin-bottom: 140px;
    width: 100%;
  }
  body header .content-container {
    height: 60px;
  }
  body header .logo {
    max-width: 140px;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
  }
  body header .logo img {
    max-width: 100%;
    max-height: 100%;
  }
  body header nav {
    width: 100%;
    margin-right: 20px;
  }
  body header nav ul {
    width: 100%;
    gap: 20px;
    list-style: none;
    justify-content: space-between;
  }
  body header nav ul a.active, body header nav ul a:hover {
    color: #5ab4fb;
    font-weight: bold;
  }
  body header nav ul a.active:after, body header nav ul a:hover:after {
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background: #5ab4fb;
  }
  body header .mode {
    width: 34px;
    min-width: 34px;
    height: 34px;
    background: #fff;
    justify-content: space-between;
    border-radius: 34px;
    border: 2px solid #000;
    box-sizing: content-box;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  body header .mode .label {
    display: none;
  }
  body header .mode input {
    visibility: hidden;
  }
  body header .mode.dark .dark {
    right: 0;
  }
  body header .mode > div {
    width: 100%;
    height: 34px;
    border-radius: 34px;
    position: absolute;
  }
  body header .mode > div .icon {
    width: 34px;
    height: 34px;
    border-radius: 34px;
  }
  body header .mode > div.dark {
    background: #000;
    color: #fff;
    right: -66px;
    transition: right 0.2s ease;
  }
  body header .mode > div.light {
    background: #fff;
  }
  body main h1.title,
  body main p.sub-title {
    text-align: center;
  }
  body main .search-container {
    background-color: #ecf0f3;
    background: #f7f7f7;
    padding: 10px;
    border-radius: 24px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 10px 10px 10px #d1d9e6, -10px -10px 10px #f9f9f9;
  }
  body main .search-container form {
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }
  body main .search-container form input {
    border: 4px solid #cbe4f7;
    border-radius: 35px;
    width: 100%;
    height: 60px;
    padding: 0 10px;
  }
  body main .search-container form input:hover, body main .search-container form input:focus {
    border: 4px solid #5ab4fb !important;
  }
  body main .search-container form button {
    border-radius: 35px;
    height: 60px;
    width: 100%;
    background: #5ab4fb;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    border: 3px solid #fff;
  }
  body main .search-container p {
    font-size: 16px;
    color: #646464;
  }
  body main section.guide {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  body main section.guide .step-card {
    max-width: 300px;
    text-align: center;
    position: relative;
    margin-bottom: 40px;
  }
  body main section.guide .step-card .title {
    gap: 10px;
    font-size: 24px;
    margin: 14px 0;
    opacity: 0.9;
  }
  body main section.guide .step-card .title .count {
    width: 34px;
    height: 34px;
    border-radius: 34px;
    background: #cbe4f7;
    color: #5ab4fb;
  }
  body main section.guide .step-card p {
    text-align: center;
    opacity: 0.8;
  }
  body main section.guide .step-card .next-arrow {
    position: absolute;
    top: 20%;
    right: -20%;
    transform: rotate(90deg);
  }
  body main .simple-page-container .sub-title {
    max-width: 600px;
    margin: 0 auto;
  }
  body main .simple-page-container section {
    margin: 40px 0;
  }
  body main .simple-page-container section h2 {
    margin-bottom: 20px;
  }
  body main .simple-page-container section p,
  body main .simple-page-container section ul,
  body main .simple-page-container section address {
    
  }
  body footer {
    width: 100%;
    height: 100px;
    background: #f7f7f7;
    text-align: center;
  }
  body footer .content-container {
    width: 100%;
    height: 100%;
  }
  body footer ul {
    list-style: none;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
}/*# sourceMappingURL=index.css.map */
