:root {
  --blue-green-color-wheel_10: hsla(165, 77%, 17%, 0.1);
  --blue-green-color-wheel: hsl(165, 77%, 17%);
  --black-chocolate: hsl(32, 24%, 14%);
  --spanish-gray: hsl(210, 3%, 62%);
  --orange-web: hsl(0, 0%, 78%);

  --davys-gray: hsl(213, 5%, 34%);
  --light-gray: hsl(0, 0%, 80%);
  --msu-green: hsl(165, 77%, 15%);
  --cultured: hsl(30, 22%, 96%);
  --white_15: hsl(0, 0%, 100%, 0.15);
  --white: hsl(0, 0%, 100%);
  --onyx: hsl(210, 10%, 23%);

  --ff-montserrat: "Montserrat", sans-serif;
  --ff-playfair: "Playfair Display", serif;

  --fs-1: 3.6rem;
  --fs-2: 2.4rem;
  --fs-3: 2.2rem;
  --fs-4: 2rem;
  --fs-5: 1.5rem;
  --fs-6: 1.4rem;
  --fs-7: 1.3rem;

  --fw-700: 700;
  --fw-600: 600;
  --fw-500: 500;

  --section-padding: 30px;

  --shadow-1: 0 2px 30px hsla(0, 0%, 0%, 0.1);
  --shadow-2: 2px 4px 8px hsla(215, 20%, 16%, 0.15);

  --radius-2: 2px;
  --radius-10: 10px;
  --radius-50: 50px;

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --transition-3: 1s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

a,
img,
span,
input,
button,
ion-icon {
  display: block;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-montserrat);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--davys-gray);
  font-size: 1.6rem;
  line-height: 1.75;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: hsl(0, 0%, 98%);
}

::-webkit-scrollbar-thumb {
  background-color: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(0, 0%, 70%);
}

.container {
  padding-inline: 15px;
}

.btn {
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  max-width: max-content;
  padding: 8px 20px;
  border-radius: var(--radius-2);
  transition: var(--transition-1);
}

.btn-primary {
  background-color: transparent;
  color: black;
  border: 1px solid rgb(0, 0, 0);
}
.btn-primary:is(:hover, :focus) {
  background-color: rgba(0, 0, 0, 0.053);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid white;
}
.btn-secondary:is(:hover, :focus) {
  background-color: rgba(255, 255, 255, 0.288);
}

.section {
  padding-block: var(--section-padding);
}

.h1,
.h2,
.h3 {
  color: var(--black-chocolate);
  font-family: var(--ff-playfair);
  line-height: 1.1;
}

.h1 {
  font-size: var(--fs-1);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-4);
}

.grid-list {
  display: grid;
  gap: 50px;
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-subtitle {
  color: var(--color, var(--blue-green-color-wheel));
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-block-end: 15px;
}

.section-title {
  text-align: center;
}

.section-text {
  font-size: var(--fs-5);
}

.title-wrapper {
  position: relative;
  padding-block: 40px;
  margin-block-end: 50px;
  z-index: 1;
}

.title-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 160px;
  background-image: url("../images/title-shape-white.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

[data-section] > * {
  opacity: 0;
  transform: translateY(50px);
  transition: var(--transition-3);
}

[data-section].active > * {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding-block: 15px;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  box-shadow: var(--shadow-2);
}

.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.logo {
  color: var(--black-chocolate);
  font-size: 20px;
  line-height: 1;
  font-weight: var(--fw-700);
  display: flex;
  align-items: center;
}

.logo-img {
  width: 5rem;
  height: auto;
}

.logo-text {
  padding-left: 0.6rem;
  font-size: 2rem;
  color: #000;
}

.header .btn {
  margin-inline-start: auto;
}

.nav-toggle-btn {
  font-size: 40px;
  color: var(--black-chocolate);
}

.navbar {
  position: fixed;
  top: 0;
  left: -300px;
  max-width: 300px;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
  z-index: 2;
}

.navbar.active {
  transform: translateX(100%);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar .nav-toggle-btn {
  font-size: 35px;
  position: absolute;
  top: 25px;
  right: 20px;
}

.navbar .nav-toggle-btn ion-icon {
  --ionicon-stroke-width: 25px;
}

.navbar-list {
  margin-block-start: 110px;
  border-block-end: 1px solid var(--blue-green-color-wheel_10);
}

.navbar-item {
  border-block-start: 1px solid var(--blue-green-color-wheel_10);
}

.navbar-link {
  color: var(--black-chocolate);
  padding: 13px 20px;
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
}

.navbar-link.active {
  font-weight: bold;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: hsla(0, 0%, 0%, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-1);
  z-index: 1;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

.hero {
  position: relative;
  padding-block: 130px 80px;
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-swiper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.hero-swiper-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-swiper-pagination {
  display: none !important;
}

.hero-subtitle {
  color: white;
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  margin-block: 16px 30px;
  color: var(--white);
}

.hero-text {
  color: var(--white);
  font-weight: 300;
  width: 90vw;
}

.hero .btn {
  margin-block: 20px;
}

.hero :is(.social-wrapper, .social-list) {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero .social-title {
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
}

.service-card {
  padding-inline: 25px;
  text-align: center;
}

.service-card .card-icon {
  position: relative;
  max-width: max-content;
  margin-inline: auto;
  margin-block-end: 40px;
  overflow: hidden;
  z-index: 1;
}

.service-card .h3 {
  --fs-4: 2.4rem;
}

.service-card .card-text {
  font-size: var(--fs-5);
  margin-block: 20px 35px;
}

.service-card .btn {
  margin-inline: auto;
  font-size: 18px;
  padding: 0;
  max-width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
}

.about {
  overflow: hidden;
}

.about-banner {
  position: relative;
  margin-block-end: 50px;
}

.about-banner::before,
.about-banner::after {
  content: "";
  position: absolute;
}

.about-banner::before {
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background-image: url("../images/about-shape-1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: rotate360 8s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}

.about-banner::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.about-banner .btn {
  position: absolute;
  min-width: max-content;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.about-content {
  position: relative;
  padding: 40px;
  z-index: 1;
}

.about-content::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -20px;
  width: 110px;
  height: 110px;
  background-image: url("../images/about-shape-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}

.about :is(.section-subtitle, .section-title) {
  text-align: left;
}

.about .section-title {
  margin-block-end: 20px;
}

.blog .section-title {
  margin-block-end: 20px;
}

.about-h3 {
  font-size: var(--fs-2);
  font-weight: var(--fw-600);
  margin-block: 30px 10px;
}

.course-card .card-banner {
  margin-block-end: 30px;
}

.course-card .card-content {
  position: relative;
  padding: 20px;
  padding-block-end: 15px;
}

.course-card .card-price {
  background-color: black;
  color: var(--white);
  font-weight: var(--fw-700);
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-block-start: -80px;
  margin-block-end: 20px;
  border: 2px solid var(--white);
  border-radius: 50%;
}

.course-card .card-title {
  margin-block: 10px 20px;
}

.footer-top {
  background-color: rgb(24, 24, 24);
  color: var(--white);
}

.footer-top .container {
  display: grid;
  gap: 50px;
}

.footer-list-title {
  color: var(--orange-web);
  font-family: var(--ff-playfair);
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-block-end: 28px;
}

.footer-top .btn-secondary:is(:hover, :focus) {
  background-color: var(--white);
  color: var(--onyx);
}

.footer-link,
.address {
  font-size: var(--fs-6);
  margin-block-start: 12px;
  transition: var(--transition-1);
}

.address-title {
  margin-block: 12px;
}

.footer-link:is(:hover, :focus),
.footer-bottom-link:is(:hover, :focus) {
  color: var(--orange-web);
}

.footer-bottom {
  background-color: black;
  color: var(--white);
  font-size: var(--fs-5);
  text-align: center;
  padding-block: 25px;
}

.copyright {
  margin-block-end: 25px;
}

.copyright-link {
  color: rgb(2, 160, 2);
}
.copyright :is(.copyright-link, ion-icon) {
  display: inline-block;
}

.copyright ion-icon {
  font-size: 18px;
  margin-block-end: -4px;
}

.copyright-link:is(:hover, :focus) {
  text-decoration: underline;
}

.footer-bottom-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 10px;
}

.footer-bottom-item {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-bottom-link {
  transition: var(--transition-1);
}

.back-top-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  background-color: black;
  color: var(--white);
  font-size: 20px;
  padding: 10px;
  border-radius: 50%;
  box-shadow: var(--shadow-1);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
  z-index: 4;
}

.back-top-btn:is(:hover, :focus) {
  background-color: var(--onyx);
}

.back-top-btn.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-10px);
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  max-width: 600px;
  margin: 0 auto;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 8rem;
  display: block;
  object-fit: cover;
}

.insta-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-wrapper:hover img {
  filter: brightness(0.5);
}

.image-wrapper:hover .insta-icon {
  opacity: 1;
}

@media (min-width: 575px) {
  :root {
    --fs-1: 5.6rem;
    --fs-2: 3.6rem;
  }

  .container {
    max-width: 600px;
    width: 100%;
    margin-inline: auto;
  }

  .btn {
    padding: 10px 30px;
  }

  .hero {
    padding-block: 170px 100px;
  }

  .hero-text {
    font-size: var(--fs-4);
  }

  .hero .btn {
    margin-block: 25px 80px;
  }

  .hero .social-title {
    --fs-6: 1.6rem;
  }

  .service-card {
    max-width: 380px;
    margin-inline: auto;
  }

  .service-card .card-icon {
    padding: 20px;
  }

  .service-card .card-icon img {
    width: 100px;
  }

  .service-card .h3 {
    --fs-4: 3.5rem;
  }

  .about-banner::before {
    top: -60px;
    left: -60px;
    width: 155px;
    height: 155px;
  }

  .about-content::after {
    top: -30px;
    right: -50px;
    width: 195px;
    height: 195px;
  }

  .about .section-title {
    --fs-2: 4.4rem;
  }

  .about-h3 {
    --fs-2: 3rem;
  }

  .course .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  .blog-card .h3 {
    --fs-4: 2.4rem;
  }

  .footer-top .container {
    grid-template-columns: repeat(1, 1fr);
    column-gap: 80px;
  }

  .footer-list:first-child {
    grid-column: 1 / 4;
  }
}

@media (min-width: 768px) {
  :root {
    --fs-1: 6.4rem;
    --fs-2: 5.7rem;
    --section-padding: 60px;
  }

  .container {
    max-width: 720px;
  }

  .logo {
    font-size: 35px;
  }

  .hero-title {
    max-width: 15ch;
  }

  .hero-text {
    width: 80%;
  }

  .service .grid-list {
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    padding: 100px 80px;
  }

  .about .section-title {
    --fs-2: 5.7rem;
  }

  .course-card .card-price {
    width: 80px;
    height: 80px;
    font-size: var(--fs-4);
    margin-block-start: -100px;
  }

  .course-card .h3 {
    --fs-4: 2.4rem;
  }

  .course-card .card-content {
    padding: 30px;
    padding-block-end: 25px;
  }

  .blog-card {
    padding: 45px;
  }
}

@media (min-width: 992px) {
  :root {
    --section-padding: 60px;
  }

  .container {
    max-width: 960px;
  }

  .hero-text {
    width: 50vw;
  }

  .btn {
    font-size: unset;
    padding: 13px 40px;
  }

  :is(.service, .course, .blog) .grid-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-toggle-btn,
  .overlay {
    display: none;
  }

  .header {
    padding-block: 20px;
  }

  .navbar,
  .navbar.active,
  .navbar-list,
  .navbar-item {
    all: unset;
  }

  .navbar {
    margin-inline-start: auto;
  }

  .header .btn {
    margin-inline-start: 0;
  }

  .navbar-list {
    display: flex;
  }

  .navbar-link {
    font-size: unset;
    padding-inline: 15px;
    transition: var(--transition-1);
  }

  .navbar-link:is(:hover, :focus) {
    color: var(--orange-web);
  }

  .service .grid-list {
    gap: 0;
  }

  .service .grid-list > li:nth-child(2) {
    border-inline: 1px solid var(--cultured);
  }

  .service-card .h3 {
    --fs-4: 3rem;
  }

  .about .container {
    display: grid;
    grid-template-columns: 0.7fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .about-banner {
    margin-block-end: 0;
  }

  .about-content {
    padding: 40px;
  }

  .about .section-title {
    --fs-2: 4.4rem;
  }

  .about-h3 {
    --fs-2: 2.4rem;
  }

  .footer-top .container {
    grid-template-columns: 0.6fr 0.6fr 0.6fr;
  }

  .footer-list:first-child {
    grid-column: auto;
  }

  .footer-list-title {
    --fs-4: 2.4rem;
  }

  .footer-link,
  .address {
    --fs-6: 1.5rem;
  }

  .footer-top .btn-secondary {
    padding-inline: 30px;
  }

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    margin-block-end: 0;
  }
}

@media (min-width: 1200px) {
  :root {
    --fs-1: 8rem;
    --section-padding: 60px;
  }

  .container {
    max-width: 1200px;
  }

  .hero-text {
    width: 40vw;
    font-size: 1.8rem;
  }

  .header .container {
    gap: 35px;
  }

  .navbar-link {
    padding-inline: 25px;
  }

  .hero {
    padding-block: 200px 100px;
    background-position: 35%;
  }

  .service-card .h3 {
    --fs-4: 3.5rem;
  }

  .service-card .btn {
    opacity: 0;
  }

  .service-card:is(:hover, :focus-within, .active) .btn {
    opacity: 1;
  }

  .about-content {
    padding: 100px 80px;
  }

  .about .section-title {
    --fs-2: 5.7rem;
  }

  .about-h3 {
    --fs-2: 3rem;
  }

  .footer-top .container {
    column-gap: 100px;
  }
}

.gallery {
  display: grid;
  /* grid-template-columns: 1fr; */
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  padding: 5px;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1440px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

.gallery__image {
  filter: grayscale(0.5);
}

.gallery:hover {
  filter: grayscale(0);
}

.gallery__link {
  overflow: hidden;
  height: 400px;
  max-height: 400px;
}

.gallery__link:hover .gallery__image {
  filter: grayscale(0);
}

.gallery__link:hover .gallery__caption {
  opacity: 1;
}

.gallery__thumb {
  position: relative;
  height: 100%;
}

.gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}

.gallery__image:hover {
  transform: scale(1.1);
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 15px 15px;
  width: 100%;
  font-size: 14px;
  color: white;
  opacity: 0;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: 0.3s;
}

@media (max-width: 480px) {
  .gallery__link {
    height: 200px;
    max-height: 200px;
  }
}

.responsive-cell-block {
  min-height: 75px;
}

.review {
  text-align: left;
}

.text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding: 10px;
  line-height: 25px;
}

.responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
}

.responsive-container-block.bg {
  max-width: 1320px;
  justify-content: flex-end;
  position: relative;
  height: auto;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 10px;
  min-height: 460px;
}

.text-blk.title {
  font-size: 46px;
  line-height: 64px;
  font-weight: 900;
  position: absolute;
  left: 12px;
  top: auto;
  bottom: auto;
  right: auto;
  margin-top: 80px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
}

.container-block {
  height: fit-content;
  width: 100%;
  display: block;
}

.swiper-container {
  width: 100%;
  position: absolute;
  overflow: hidden;
}

.swiper-slide {
  box-shadow: rgba(0, 0, 0, 0.05) 0px 4px 20px 7px;
  text-align: center;
  font-size: 1.6rem;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: flex-start;
  margin-top: 0px;
  margin-right: 35px;
  margin-bottom: 20px;
  margin-left: 0px;
  height: 400px;
  border: 1px solid rgb(209, 209, 209);
}

.responsive-container-block.content {
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 80px;
  margin-left: 0px;
  padding: 2rem 3rem 2rem 3rem;
}

.review-star-wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-left: 7.4rem;
}

.review-star {
  width: 10rem !important;
  height: 1.6rem !important;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.icon {
  min-height: auto;
  width: auto;
  display: flex;
  align-items: center;
}

.responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.details {
  min-height: auto;
}

.responsive-container-block.person {
  min-height: auto;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
  margin-top: 15px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 3px;
}

.text-blk.name {
  line-height: 32px;
  font-weight: 900;
  text-align: left;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.text-blk.desig {
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.swiper-container.mySwiper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #282828;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 1024px) {
  .responsive-container-block.bg {
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: 400px;
    align-items: center;
    padding: 0px;
  }

  .text-blk.title {
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: 0px;
    position: absolute;
    left: auto;
    right: auto;
    top: 0px;
  }

  .swiper-container {
    position: absolute;
    right: 0px;
    top: 0px;
  }

  .swiper-slide {
    align-items: flex-start;
  }

  .responsive-container-block.content {
    margin: 0px;
  }

  .swiper-container.mySwiper {
    right: auto;
    top: 0px;
    left: auto;
  }

  .responsive-container-block.bg {
    padding: 0px;
    margin-bottom: 0px;
    min-height: 490px;
  }

  .swiper-slide {
    font-size: 1.7rem;
    height: 430px;
  }
}

@media (max-width: 768px) {
  .swiper-container.mySwiper {
    left: auto;
    top: 0px;
  }

  .review-star-wrapper {
    display: flex;
    justify-content: center;
    margin-left: 0;
  }

  .responsive-container-block.person {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 3px;
  }

  .text-blk.name {
    text-align: center;
  }

  .text-blk.desig {
    text-align: center;
  }

  .responsive-cell-block.wk-desk-6.wk-ipadp-6.wk-tab-12.wk-mobile-12.icon {
    margin: 0px;
  }

  .responsive-container-block.bg {
    padding: 0px;
    margin-bottom: 0px;
    min-height: 370px;
  }

  .swiper-slide {
    font-size: var(--fs-5);
    height: 320px;
  }

  .responsive-container-block.content {
    max-width: 550px;
  }
}

@media (max-width: 500px) {
  .responsive-container-block.content {
    margin: 0px;
  }

  .responsive-container-block.bg {
    padding: 0px;
    margin-bottom: 0px;
    min-height: 520px;
  }

  .swiper-slide {
    font-size: 16px;
    height: 460px;
  }
}

.contact-section {
  background-image: url("../images/contact-bg.webp");
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

.icon-wrapper {
  padding: 1rem;
  border-radius: 100px;
  background-color: rgb(211, 211, 211);
  color: rgb(0, 0, 0);
}

.icon-wrapper:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
}

.section-overlay {
  background-color: rgba(0, 0, 0, 0.763);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 8px;
}

.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-text {
  visibility: hidden;
  width: auto;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 14px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;

  opacity: 0;
  transition: opacity 0.3s;
  font-size: var(--fs-6);
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.left-column,
.right-column {
  flex: 1 1 48%;
  min-width: 300px;
  margin: 10px 0;
  padding-right: 4rem;
  padding-left: 4rem;
}

.contact-title {
  color: white;
  font-size: 3rem;
  line-height: 3.4rem;
}

.contact-detail {
  color: white;
  line-height: 3.6rem;
}

.right-column iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .section-overlay {
    flex-direction: column;
    padding: 20px;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
  }

  .right-column iframe {
    height: 250px;
  }
}

@media (max-width: 420px) {
  .contact-section {
    padding: 60px 10px;
  }

  .section-overlay {
    padding: 0px;
    margin: 0;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
    min-width: 300px;
    margin: 1;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* popup */
/* Popup styling */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1200;
}

.popup {
  background: white;
  padding: 4rem 4rem;
  max-width: 500px;
  width: 90%;
  margin: 10rem auto;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.popup h3 {
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 2.4rem;
  color: #333;
  line-height: 1.2;
}

.popup p {
  font-size: 1.5rem;
  color: #242424;
  margin-bottom: 15px;
  text-align: left;
  line-height: 1.4;
}

.checkbox-label {
  display: flex;
  /* align-items: center; */
  align-items: flex-start;
  gap: 0px;
  margin: 20px 0;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 2px;
  width: 3rem;
  /* flex-shrink: 0; */
}

.popup .btn {
  padding: 10px 16px;
  font-size: 14px;
  margin-top: 10px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup .btn:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
}

.close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
}

.popup-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
