@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Kanit", sans-serif;
}

html {
  position: relative;
  overflow-x: hidden;
}

body {
  scroll-behavior: smooth;
}

header {
  position: absolute;
  top: 3rem;
  left: 0;
  width: 100%;
  height: 5rem;
  background: #151515;
  z-index: 50;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header img {
  height: 2.5rem;
}
header nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
header nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  position: relative;
  font-size: 1.2em;
  transition: 0.2s ease;
}
header nav a.active {
  color: #fff;
}
header nav a.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: #78FF00;
}
header nav a:hover {
  color: #fff;
}
header .profile {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .profile svg {
  color: #fff;
  height: 2.5rem;
  width: 2.5rem;
}
header .ham {
  display: none;
  justify-content: center;
  align-items: flex-end;
  flex-flow: column wrap;
  height: 2.5rem;
  width: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 11;
}
header .ham div {
  height: 0.25rem;
  width: 100%;
  background: #fff;
  margin: 0.2rem 0;
  border-radius: 1rem;
  transition: 0.5s ease-in-out;
}
header .ham div:nth-child(2) {
  width: 75%;
}
header .ham div:nth-child(3) {
  width: 50%;
}
header .ham .ham-active:nth-child(1) {
  transform: translate(0, 10px) rotate(45deg);
  background: #fff;
}
header .ham .ham-active:nth-child(2) {
  opacity: 0;
}
header .ham .ham-active:nth-child(3) {
  width: 100%;
  transform: translate(0, -10px) rotate(-45deg);
  background: #fff;
}

.top-notification {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 5%;
  background: #0e0e0e;
  height: 3rem;
}
.top-notification .app-links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
.top-notification .app-links span {
  font-size: 0.9em;
  color: #78FF00;
}
.top-notification .app-links a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-notification .app-links a:hover img {
  transform: scale(1.05);
}
.top-notification .app-links a img {
  height: 25px;
  width: 25px;
  transition: transform 0.2s ease;
}
.top-notification .contacts {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}
.top-notification .contacts a {
  font-size: 0.9em;
  color: #78FF00;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}
.top-notification .contacts a svg {
  height: 1.25em;
  width: 1.25em;
}

.offcanvas {
  display: none;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  transition: 0.5s ease-in-out;
  z-index: 40;
  background: #151515;
}
.offcanvas a {
  display: block;
  width: 80%;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1.2em;
  text-decoration: none;
  border-bottom: 0.2rem solid #fff;
}
.offcanvas a:last-child {
  border-bottom: none;
}
.offcanvas .offcanvas-active {
  text-decoration: underline;
}

@media only screen and (max-width: 700px) {
  header nav, header .profile {
    display: none;
  }
  header .ham {
    display: flex;
  }
  .top-notification .app-links span {
    font-size: 0.75em;
  }
  .top-notification .app-links a img {
    height: 20px;
    width: 20px;
    transition: transform 0.2s ease;
  }
  .top-notification .contacts a span {
    display: none;
  }
  .offcanvas {
    display: flex;
  }
}
.btn {
  background: url("../../img/btn-bg.png");
  background-size: cover;
  background-position: center;
  border: none;
  filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
  min-width: 16rem;
}
.btn a {
  display: block;
  padding: 0.5em 1em;
  color: #000000;
  text-decoration: none;
  font-size: 1.9em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.btn a svg {
  height: 1em;
  width: 1em;
}
.btn:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 1500px) {
  .btn a {
    font-size: 1.6em;
  }
}
@media only screen and (max-width: 850px) {
  .btn {
    min-width: 13rem;
  }
  .btn a {
    font-size: 1.5em;
  }
}
@media only screen and (max-width: 700px) {
  .btn {
    min-width: 11rem;
  }
  .btn a {
    font-size: 1.25em;
  }
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 5rem 10%;
  background: #0A0807;
}
footer .part {
  width: 33%;
}
footer .part.left .logo {
  height: 3.5rem;
}
footer .part.left p {
  font-size: 0.9em;
  color: #fff;
  margin: 1rem 0 2.5rem;
}
footer .part.left p a {
  color: #78FF00;
  text-decoration: none;
}
footer .part.left .links {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1rem;
}
footer .part.left .links a {
  text-decoration: none;
  color: #fff;
}
footer .part.left .links a img {
  height: 30px;
  width: 30px;
}
footer .part.left .links a:hover {
  transform: scale(1.05);
}
footer .part.right {
  width: initial;
}
footer .part.right h4 {
  font-size: 2.2em;
  color: #fff;
  position: relative;
}
footer .part.right h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 3px;
  width: 80%;
  background: #78FF00;
}
footer .part.right nav {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-flow: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
footer .part.right nav a {
  font-size: 1.35em;
  color: #fff;
  text-decoration: none;
}
footer .part.right nav a:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 700px) {
  footer {
    flex-flow: column;
    row-gap: 2rem;
    padding: 2rem 10%;
  }
  footer .part {
    width: 100%;
  }
  footer .part.left {
    order: 2;
  }
  footer .part.left .logo {
    height: 3rem;
  }
  footer .part.left p {
    font-size: 0.7em;
    margin: 1rem 0 1.5rem;
  }
  footer .part.left .links a img {
    width: 25px;
    height: 25px;
  }
  footer .part.right {
    width: 100%;
  }
  footer .part.right h4 {
    text-align: center;
  }
  footer .part.right h4::after {
    width: 15%;
    left: 30%;
  }
  footer .part.right nav {
    flex-flow: row;
    justify-content: center;
    width: 100%;
  }
  footer .part.right nav a {
    font-size: 0.8em;
  }
}
header {
  top: 3rem;
  background: transparent;
}
header nav a {
  color: #fff;
  position: relative;
}
header nav a::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #78FF00;
  transition: 0.2s ease;
}
header nav a:hover::after {
  width: 100%;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup.closed {
  animation: 0.7s closed ease forwards;
}
@keyframes closed {
  0% {
    transform: scale(1);
  }
  80% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}
.popup .popup__content {
  background: rgb(61, 61, 61);
  background: linear-gradient(209deg, rgb(61, 61, 61) 0%, rgb(22, 22, 22) 100%);
  min-height: 600px;
  min-width: 1000px;
  max-width: 90%;
  max-height: 90%;
  position: relative;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 5rem;
}
.popup .popup__content .close__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  background: none;
  border: none;
  cursor: pointer;
}
.popup .popup__content .close__btn svg {
  height: 3rem;
  width: 3rem;
  color: #fff;
}
.popup .popup__content .icon {
  height: 10rem;
  width: 10rem;
  background: rgb(120, 255, 0);
  background: linear-gradient(209deg, rgb(120, 255, 0) 0%, rgb(92, 196, 0) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(120, 255, 0, 0.25);
  margin-bottom: 2rem;
}
.popup .popup__content .icon svg {
  height: 5rem;
  width: 5rem;
  color: #fff;
}
.popup .popup__content h2 {
  font-size: 2.5em;
  color: #fff;
  text-align: center;
  line-height: 1.2em;
  margin-bottom: 0.5rem;
}
.popup .popup__content p {
  font-size: 1em;
  color: #fff;
}
.popup .popup__content .banner {
  max-height: 85vh;
  max-width: 85vw;
}

.news {
  background: #78FF00;
}
.news p {
  padding: 0.5em;
  color: #0A0807;
  text-align: center;
  font-size: 0.8em;
}

.headings.type1 h4 {
  font-size: 2.5em;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  margin-bottom: 1.25rem;
}
.headings.type1 h2 {
  font-size: 8em;
  font-weight: 900;
  color: #fff;
  text-align: center;
  line-height: 0.9em;
}
.headings.type1 h2 .green {
  color: #78FF00;
}
.headings.type2 h3 {
  font-size: 3em;
  color: #78FF00;
  line-height: 0.8em;
  font-weight: 900;
}
.headings.type2 h2 {
  font-size: 8em;
  color: #fff;
  line-height: 0.8em;
  font-weight: 900;
}
.headings p {
  max-width: 80%;
  color: #fff;
  text-align: center;
  margin: 1rem auto 3rem;
  font-size: 1.2em;
}

.title {
  width: 100vw;
  height: 95vh;
  position: relative;
}
.title .bg {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.title .bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.title .bg #bg-video {
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.title .text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  z-index: 2;
  padding-top: 5rem;
}
.title .text h1 {
  font-size: 12em;
  line-height: 0.7em;
  font-weight: 900;
  text-align: center;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.35);
  word-spacing: -5px;
}
.title .text h1 .white {
  color: #fff;
}
.title .text h1 .green {
  color: #78FF00;
}
.title .text p {
  max-width: 50%;
  color: #fff;
  text-align: center;
  margin: 1.5rem 0 2rem;
}

.process {
  padding: 5rem 10%;
  background: #0A0807;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  position: relative;
}
.process .process-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  position: relative;
}
.process .process-buttons::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 100%;
  background: #fff;
  z-index: 1;
}
.process .process-buttons button {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  z-index: 3;
  font-size: 3rem;
  transition: background 0.2s ease, transform 0.2s ease;
  color: #000;
  cursor: pointer;
  position: relative;
}
.process .process-buttons button:hover, .process .process-buttons button.active {
  background: #78FF00;
  transform: scale(1.1);
}
.process .process-buttons .transition {
  position: absolute;
  left: 0;
  z-index: -1;
  background: #78FF00;
  width: 70px;
  height: 6px;
  z-index: 2;
  transition: 0.5s ease;
}
.process .buttons {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
  padding: 5rem 0 0;
  width: 100%;
  transform: translateY(50%);
}
.process .buttons button {
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.process .buttons button svg {
  height: 2rem;
  width: 2rem;
}
.process .content {
  width: 100vw;
  overflow-x: scroll;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.process .content::-webkit-scrollbar {
  display: none;
}
.process .content .item {
  display: inline-block;
  width: 100vw;
  white-space: normal; /* Use 'normal' to allow text to wrap */
  -webkit-white-space: normal; /* For older webkit browsers */
  padding: 5rem 10%;
}
.process .content .item h3 {
  font-size: 5em;
  color: #fff;
  line-height: 0.8em;
}
.process .content .item p {
  margin: 1.5rem 0 3rem;
  font-size: 1em;
  text-align: start;
  color: #fff;
  width: 79.5vw;
  white-space: normal; /* Use 'normal' to allow text to wrap */
}
.process .content .item p a {
  color: #78FF00;
}

.advantages {
  background: #0F0D0D;
  padding: 5rem 10%;
}
.advantages .advantages-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5rem;
  width: 100%;
  justify-items: center;
}
.advantages .advantages-content .item {
  width: 85%;
  background: #121212;
  padding: 2rem 1.5rem;
  transition: background 0.25s ease;
  position: relative;
}
.advantages .advantages-content .item::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: rotate(-45deg) translate(20%, 55%);
  width: 40px;
  height: 20px;
  background: #0F0D0D;
}
.advantages .advantages-content .item:hover {
  background: #78FF00;
}
.advantages .advantages-content .item:hover .icon {
  background: rgba(255, 255, 255, 0.5);
}
.advantages .advantages-content .item:hover h4, .advantages .advantages-content .item:hover p {
  color: #000;
}
.advantages .advantages-content .item .icon {
  height: 7rem;
  width: 7rem;
  background: #78FF00;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.25s ease;
}
.advantages .advantages-content .item .icon img {
  width: 60%;
}
.advantages .advantages-content .item h4, .advantages .advantages-content .item p {
  color: #fff;
  transition: color 0.25s ease;
}
.advantages .advantages-content .item h4 {
  font-size: 2.2em;
  line-height: 1em;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.advantages .advantages-content .item p {
  font-size: 0.85em;
}
.advantages .btn {
  margin: 2rem auto 0;
  display: block;
}

.podcast {
  padding: 5rem 10%;
  background: #0A0807;
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  align-items: center;
}
.podcast .item img {
  width: 80%;
}
.podcast .item h2 {
  font-size: 6em;
  text-align: start;
}
.podcast .item p {
  font-size: 1.25em;
  color: #fff;
  line-height: 1.5em;
  margin: 1.5rem 0 3rem;
  font-weight: 300;
}
.podcast .item p a {
  color: #fff;
  font-weight: 500;
}

.gallery {
  background: #0A0807;
  padding: 5rem 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.gallery .video {
  width: 70vw;
  height: 39.375vw;
  margin: 0 auto 2rem;
}

.services {
  padding: 5rem 10%;
  background: #0F0D0D;
}
.services .services-content {
  display: grid;
  grid-template-columns: 50% 50%;
  margin-top: 4rem;
}
.services .services-content .item.image img {
  width: 80%;
}
.services .services-content .item.text {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
}
.services .services-content .item.text p {
  font-size: 1.1em;
  color: #fff;
  font-weight: 400;
}
.services .services-content .item.text .list a {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-size: 1.4em;
  color: #fff;
  text-decoration: none;
  transition: 0.2s ease;
}
.services .services-content .item.text .list a:hover {
  transform: scale(1.05);
}
.services .services-content .item.text .list a img {
  height: 2.5rem;
  width: 2.5rem;
}

.pricing {
  background: #0A0807;
  padding: 5rem 10%;
}
.pricing .category {
  margin: 3rem 0;
}
.pricing .category h3 {
  font-size: 3em;
  color: #fff;
}
.pricing .category p {
  color: #fff;
}
.pricing .category .cards {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
.pricing .category .cards .item {
  background: rgb(24, 24, 24);
  background: linear-gradient(0deg, rgb(24, 24, 24) 0%, rgb(69, 69, 69) 100%);
  width: 20vw;
  height: 18vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  border-radius: 3px;
}
.pricing .category .cards .item.middle {
  background: rgb(50, 106, 0);
  background: linear-gradient(0deg, rgb(50, 106, 0) 0%, rgb(120, 255, 0) 100%);
  transform: scale(1.05);
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}
.pricing .category .cards .item.middle h5 {
  color: #fff;
}
.pricing .category .cards .item.middle h4 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.pricing .category .cards .item.middle h5 {
  text-shadow: 1.5px 1.5px 4px rgba(0, 0, 0, 0.5);
}
.pricing .category .cards .item.middle span {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  color: #fff;
}
.pricing .category .cards .item.middle.middle-1 {
  box-shadow: -7px 0px 8px rgba(0, 0, 0, 0.3);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.pricing .category .cards .item.middle.middle-2 {
  box-shadow: 7px 0px 8px rgba(0, 0, 0, 0.3);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pricing .category .cards .item h5 {
  font-size: 1.5em;
  color: #78FF00;
}
.pricing .category .cards .item h4 {
  color: #fff;
  font-size: 2.75em;
  line-height: 1.1em;
  margin-bottom: 0.5rem;
}
.pricing .category .cards .item span {
  font-size: 0.8em;
  width: 80%;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
.pricing .btn {
  margin: 2rem auto 0;
  display: block;
}

.reviews {
  padding: 5rem 10%;
  background: #0F0D0D;
}
.reviews .reviews-content {
  margin: 4rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}
.reviews .reviews-content .item {
  width: 90%;
  background: #0A0807;
  padding: 5%;
  text-decoration: none;
  transition: 0.25s ease;
  border-radius: 5px;
}
.reviews .reviews-content .item:hover {
  background: rgba(120, 255, 0, 0.75);
  transform: scale(1.05);
}
.reviews .reviews-content .item .image-parent {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  width: 60px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  margin-bottom: 0.5rem;
}
.reviews .reviews-content .item .image-parent img {
  height: 60px;
  width: 60px;
}
.reviews .reviews-content .item .stars {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.reviews .reviews-content .item .stars svg {
  height: 22px;
  width: 22px;
  color: #fee600;
  fill: #fee600;
}
.reviews .reviews-content .item h4 {
  font-size: 1.5em;
  color: #fff;
  font-weight: 500;
}
.reviews .reviews-content .item p {
  font-size: 0.8em;
  color: #fff;
}
.reviews .btn {
  display: block;
  margin: 3rem auto 0;
}

.maps {
  background: #0A0807;
  padding: 5rem 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.maps .content {
  display: grid;
  grid-template-columns: 47.5% 47.5%;
  align-items: center;
  gap: 5%;
  margin-top: 2rem;
}
.maps .content .map {
  height: 100%;
}
.maps .content .map img, .maps .content .map .iframe-parent {
  width: 100%;
  border: 4px solid #78FF00;
}
.maps .content .map .iframe-parent {
  height: 100%;
}

.virtual-visit {
  background: #0A0807;
  padding: 5rem 10%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.virtual-visit .content {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-flow: column;
  width: 70vw;
}
.virtual-visit .content .iframe-parent {
  width: 70vw;
  height: 35vw;
  margin-top: 2rem;
  border: 4px solid #78FF00;
}

.faq {
  padding: 5rem 10%;
  background: #0F0D0D;
}
.faq h2 {
  font-size: 6em;
  color: #fff;
}
.faq .questions details {
  padding: 2rem 0;
  border-bottom: 3px solid #fff;
}
.faq .questions details summary {
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease;
}
.faq .questions details summary:hover {
  color: #78FF00;
}
.faq .questions details p {
  font-size: 1em;
  color: #fff;
}
.faq .questions details p a {
  color: #78FF00;
  text-decoration: none;
}
.faq .questions details p a:hover {
  text-decoration: underline;
}
.faq .questions details[open] summary {
  color: #78FF00;
}

.sponsors {
  padding: 5rem 10%;
  background: #0A0807;
}
.sponsors .sponsors-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 3rem;
}
.sponsors .sponsors-content img {
  height: 5rem;
}

@media only screen and (max-width: 1300px) {
  .popup .popup__content {
    min-width: 750px;
    min-height: 450px;
  }
  .popup .popup__content .icon {
    height: 7rem;
    width: 7rem;
    box-shadow: 0 0 0 5px rgba(120, 255, 0, 0.25);
    margin-bottom: 1rem;
  }
  .popup .popup__content .icon svg {
    height: 3.25rem;
    width: 3.25rem;
  }
  .popup .popup__content h2 {
    font-size: 2em;
  }
  .popup .popup__content p {
    font-size: 1em;
  }
  .headings.type1 h4 {
    font-size: 2em;
  }
  .headings.type1 h2 {
    font-size: 6em;
  }
  .headings.type2 h3 {
    font-size: 2em;
  }
  .headings.type2 h2 {
    font-size: 6em;
  }
  .headings p {
    font-size: 1em;
  }
  .title .text h1 {
    font-size: 10em;
  }
  .title .text p {
    font-size: 0.9em;
  }
  .process {
    padding: 5rem 5%;
  }
  .process .process-buttons button {
    height: 80px;
    width: 80px;
    font-size: 2.25rem;
  }
  .process .process-buttons .transition {
    width: 56px;
  }
  .process .content .item h3 {
    font-size: 3.5em;
  }
  .process .content .item p {
    margin: 1rem 0 2.5rem;
    font-size: 0.85em;
    width: 80%;
  }
  .advantages {
    padding: 5rem 5%;
  }
  .advantages .advantages-content .item {
    width: 90%;
  }
  .advantages .advantages-content .item .icon {
    height: 5.5rem;
    width: 5.5rem;
  }
  .advantages .advantages-content .item h4 {
    font-size: 1.8em;
  }
  .advantages .advantages-content .item p {
    font-size: 0.9em;
    margin-top: 0.5rem;
  }
  .podcast .item h2 {
    font-size: 4.5em;
  }
  .podcast .item p {
    font-size: 1.1em;
    margin: 0.5rem 0 2rem;
  }
  .services {
    padding: 5rem 5%;
  }
  .services .services-content .item.text p {
    font-size: 0.9em;
  }
  .services .services-content .item.text .list {
    display: grid;
    grid-template-columns: 50% 50%;
    row-gap: 1rem;
    margin-top: 2rem;
  }
  .services .services-content .item.text .list a {
    font-size: 1em;
    margin: 0;
  }
  .services .services-content .item.text .list a img {
    height: 2rem;
    width: 2rem;
  }
  .gallery {
    padding: 5rem 5%;
  }
  .pricing {
    padding: 5rem 5%;
  }
  .pricing .category p {
    font-size: 0.9em;
  }
  .pricing .category .cards {
    margin-top: 2rem;
  }
  .pricing .category .cards .item {
    width: 25vw;
  }
  .pricing .category .cards .item h5 {
    font-size: 1.1em;
  }
  .pricing .category .cards .item h4 {
    font-size: 1.7em;
  }
  .pricing .category .cards .item span {
    font-size: 0.7em;
  }
  .reviews {
    padding: 5rem 5%;
  }
  .reviews .reviews-content .item {
    padding: 20px;
  }
  .reviews .reviews-content .item .image-parent {
    height: 5.5rem;
    width: 5.5rem;
  }
  .reviews .reviews-content .item h4 {
    font-size: 1.7em;
  }
  .reviews .reviews-content .item p {
    font-size: 0.8em;
  }
  .faq {
    padding: 5rem 5%;
  }
  .faq h2 {
    font-size: 3.5em;
  }
  .faq .questions details summary {
    font-size: 1.6em;
  }
  .faq .questions details p {
    font-size: 0.9em;
  }
  .sponsors .sponsors-content img {
    height: 3.5rem;
  }
}
@media only screen and (max-width: 850px) {
  .popup .popup__content {
    min-width: 650px;
  }
  .headings.type1 h4 {
    font-size: 1.7em;
    margin-bottom: 1rem;
  }
  .headings.type1 h2 {
    font-size: 4.5em;
  }
  .headings.type2 h3 {
    font-size: 1.75em;
  }
  .headings.type2 h2 {
    font-size: 4.5em;
  }
  .headings p {
    font-size: 0.9em;
  }
  .title .text h1 {
    font-size: 8em;
    line-height: 0.8em;
  }
  .title .text p {
    max-width: 80%;
  }
  .process .process-buttons button {
    height: 4rem;
    width: 4rem;
    font-size: 2rem;
  }
  .process .buttons button svg {
    height: 1.5rem;
    width: 1.5rem;
  }
  .process .content .item h3 {
    font-size: 3em;
  }
  .process .content .item p {
    font-size: 0.9em;
  }
  .advantages .advantages-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .podcast .item h2 {
    font-size: 3.5em;
  }
  .podcast .item p {
    font-size: 0.9em;
  }
  .pricing .category .cards .item {
    height: 12.5rem;
  }
  .pricing .category .cards .item h5 {
    font-size: 1em;
  }
  .pricing .category .cards .item h4 {
    font-size: 1.5em;
    margin: 0 0 0.25rem;
  }
  .pricing .category .cards .item span {
    font-size: 0.65em;
  }
  .reviews .reviews-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .maps .content {
    grid-template-columns: 1fr;
  }
  .maps .content .map .iframe-parent {
    height: 45vw;
  }
  .virtual-visit .content {
    width: 80vw;
  }
  .virtual-visit .content .iframe-parent {
    width: 80vw;
    height: 45vw;
  }
  .faq h2 {
    font-size: 2.75em;
  }
  .sponsors .sponsors-content img {
    height: 2.5rem;
  }
}
@media only screen and (max-width: 700px) {
  .popup .popup__content {
    min-width: 90%;
    padding: 25px;
  }
  .popup .popup__content .close__btn svg {
    height: 2rem;
    width: 2rem;
  }
  .popup .popup__content .icon {
    height: 4.5rem;
    width: 4.5rem;
  }
  .popup .popup__content .icon svg {
    height: 2rem;
    width: 2rem;
  }
  .popup .popup__content h2 {
    font-size: 1.25em;
    text-align: center;
  }
  .popup .popup__content p {
    font-size: 0.65em;
    text-align: center;
  }
  .headings.type1 h4 {
    font-size: 1em;
  }
  .headings.type1 h2 {
    font-size: 2.5em;
  }
  .headings.type2 h3 {
    font-size: 1em;
  }
  .headings.type2 h2 {
    font-size: 2.5em;
  }
  .headings p {
    font-size: 0.7em;
    max-width: 90%;
  }
  .news p {
    font-size: 0.65em;
  }
  .title {
    height: 70vh;
  }
  .title .text h1 {
    font-size: 4em;
  }
  .title .text p {
    font-size: 0.65em;
  }
  .process .process-buttons::after {
    height: 4px;
  }
  .process .process-buttons button {
    height: 50px;
    width: 50px;
    font-size: 1.5rem;
  }
  .process .process-buttons .transition {
    width: 35px;
  }
  .process .buttons {
    padding: 2rem 0 0;
  }
  .process .content .item {
    padding: 2rem 10%;
  }
  .process .content .item h3 {
    font-size: 1.8em;
  }
  .process .content .item p {
    font-size: 0.7em;
    width: 100%;
  }
  .advantages .advantages-content {
    margin-top: 2rem;
  }
  .advantages .advantages-content .item {
    width: 100%;
  }
  .advantages .advantages-content .item .icon {
    height: 3rem;
    width: 3rem;
  }
  .advantages .advantages-content .item h4 {
    font-size: 1.4em;
    margin-top: 1rem;
  }
  .advantages .advantages-content .item p {
    font-size: 0.8em;
  }
  .podcast {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .podcast .item img {
    width: 100%;
  }
  .podcast .item:first-child {
    order: 2;
  }
  .podcast .item p {
    font-size: 0.75em;
    margin: 0.5rem 0 1rem;
  }
  .services .services-content {
    grid-template-columns: 1fr;
    margin-top: 1rem;
  }
  .services .services-content .item.image {
    order: 2;
    margin-top: 3rem;
  }
  .services .services-content .item.image img {
    width: 80%;
    display: block;
    margin: 0 auto;
  }
  .services .services-content .item.text p {
    font-size: 0.7em;
  }
  .services .services-content .item.text .list a {
    font-size: 0.9em;
  }
  .services .services-content .item.text .list a img {
    height: 1.8rem;
    width: 1.8rem;
  }
  .pricing .category {
    margin: 2rem 0;
  }
  .pricing .category h3 {
    font-size: 1.5em;
  }
  .pricing .category p {
    font-size: 0.75em;
  }
  .pricing .category .cards {
    flex-flow: column;
    row-gap: 1rem;
    margin-top: 1rem;
  }
  .pricing .category .cards .item {
    width: 100%;
    height: initial;
    padding: 2rem;
  }
  .pricing .category .cards .item.middle {
    transform: none;
  }
  .pricing .category .cards .item h4 {
    font-size: 1.4em;
  }
  .reviews .reviews-content .item .image-parent {
    height: 5rem;
    width: 5rem;
  }
  .reviews .reviews-content .item h4 {
    font-size: 1.4em;
  }
  .maps .content .map .iframe-parent {
    height: 100vw;
  }
  .virtual-visit .content .iframe-parent {
    height: 100vw;
  }
  .faq h2 {
    font-size: 1.7em;
  }
  .faq .questions details {
    padding: 1rem 0;
  }
  .faq .questions details summary {
    font-size: 1.2em;
  }
  .faq .questions details p {
    font-size: 0.7em;
  }
  .sponsors .sponsors-content {
    flex-flow: column;
  }
}/*# sourceMappingURL=style.css.map */