.popup {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  padding: 20px;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.popup.active {
  opacity: 1;
  pointer-events: visible;
}
.popup .popup-content {
  background: #fff;
  padding: 20px;
  width: 100%;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  animation: popupIn 0.3s ease-out;
  text-align: left;
}
.popup .popup-content h4 {
  margin-bottom: 15px;
  font-size: 24px;
  color: #1F1F1F;
}
.popup .popup-content p {
  font-size: 16px;
  opacity: 0.9;
}
.popup .popup-content img {
  width: 60px;
  height: auto;
  margin-bottom: 25px;
}
.popup .popup-content .close-popup {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 26px;
  cursor: pointer;
  outline: none;
}
.popup .popup-content .button {
  display: block;
  background: #0467aa;
  color: #fff;
  padding: 15px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 30px;
  text-align: center;
}

@keyframes popupIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.cover {
  height: 100vh;
  min-height: 768px;
  max-height: 840px;
  width: 100%;
  position: relative;
}
.cover video {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  min-height: 768px;
  max-height: 840px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(50%);
}
.cover .content {
  z-index: 100;
  position: relative;
  padding-top: 140px;
  padding-inline: 20px;
}
.cover .content .text {
  text-align: left;
  position: relative;
}
.cover .content .text h1 {
  color: white;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1em;
  margin-top: 15px;
}
.cover .content .text p {
  color: white;
  font-size: 16px;
  margin-bottom: 0;
  margin-top: 22px;
  opacity: 0.9;
}
.cover .content .text .button {
  background: white;
  width: 230px;
  height: 59px;
  border-radius: 30px;
  color: #1F1F1F;
  margin-top: 30px;
  text-decoration: none;
}
.cover .content .text .button.secondary {
  background: rgba(112, 112, 112, 0.6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.514);
}
.cover .content .text .button:hover {
  background: #0467aa;
  color: white;
}

.dental-intro {
  position: relative;
  padding-top: 20px;
  width: 100%;
  height: auto;
  padding-inline: 20px;
}
.dental-intro .content {
  background: white;
  border-radius: 18px;
  padding: 18px;
  padding-block: 45px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.dental-intro .content .akutt {
  margin-bottom: 55px;
}
.dental-intro .content .akutt img {
  width: 55px;
  height: auto;
}
.dental-intro .content .akutt h4 {
  font-size: 22px;
  margin-top: 25px;
  font-weight: 400;
}
.dental-intro .content .akutt p {
  font-size: 16px;
  opacity: 0.8;
}
.dental-intro .content .akutt .button {
  background: #0467aa;
  color: white;
  width: 280px;
  margin-top: 10px;
  border-radius: 30px;
  height: 45px;
}
.dental-intro .content .text {
  text-align: left;
}
.dental-intro .content .text h2 {
  color: #1F1F1F;
  font-size: 30px;
  font-weight: 400;
}
.dental-intro .content .text p {
  color: #1F1F1F;
  opacity: 0.9;
  font-size: 16px;
}
.dental-intro .content .text .faces {
  display: flex;
  flex-direction: row;
  margin-block: 15px;
  gap: 3px;
}
.dental-intro .content .text .faces .face {
  border-radius: 100px;
  width: 32px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.dental-intro .content .text .intro-services {
  display: flex;
  flex-direction: row;
  gap: 9px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.dental-intro .content .text .intro-services .intro-service {
  border: 1px solid #0467aa;
  color: #0467aa;
  font-size: 16px;
  border-radius: 30px;
  padding: 5px 10px;
  text-decoration: none;
  transition: 0.6s;
}
.dental-intro .content .text .intro-services .intro-service:hover {
  background: #0467aa;
  color: white;
}
.dental-intro .service-card {
  margin-top: 25px;
  width: 100%;
  height: auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 370px;
  cursor: pointer;
  transition: 0.6s;
}
.dental-intro .service-card img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  filter: brightness(70%);
  border-radius: 18px;
}
.dental-intro .service-card .overlay {
  text-align: left;
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
}
.dental-intro .service-card .overlay h2 {
  color: white;
  font-size: 30px;
  font-weight: 400;
}
.dental-intro .service-card .overlay p {
  color: white;
  opacity: 0.9;
  font-size: 16px;
}
.dental-intro .service-card .overlay .arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgb(246, 246, 246);
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.dental-intro .service-card .overlay .arrow i {
  font-size: 22px;
  color: #0467aa;
}
.dental-intro .service-card .overlay .arrow:hover {
  background: #0467aa;
}
.dental-intro .service-card .overlay .arrow:hover i {
  color: white;
}
.dental-intro .service-card:hover {
  transform: scale(1.01);
}

.reviews {
  position: relative;
  padding-top: 60px;
  width: 100%;
  height: auto;
  padding-inline: 20px;
}
.reviews .content {
  background: white;
  border-radius: 18px;
  padding: 20px;
  padding-block: 65px;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
.reviews .content .text {
  text-align: center;
}
.reviews .content .text .headingp {
  color: #0467aa;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.reviews .content .text h2 {
  color: #1F1F1F;
  font-size: 30px;
  font-weight: 500;
}
.reviews .content .text p {
  color: #1F1F1F;
  opacity: 0.9;
  font-size: 16px;
}
.reviews .content .cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.reviews .content .cards .card {
  padding: 20px;
  padding-block: 50px;
  background: #f6f7ff;
  border-radius: 18px;
  width: 100%;
  height: auto;
  border: none;
  text-align: left;
}
.reviews .content .cards .card h2 {
  color: #1F1F1F;
  font-size: 26px;
  font-weight: 400;
}
.reviews .content .cards .card p {
  color: #1F1F1F;
  opacity: 0.9;
  font-size: 16px;
  margin-top: 6px;
}
.reviews .content .cards .card .review-user {
  display: flex;
  background: white;
  border-radius: 50px;
  padding: 15px;
  margin-top: 15px;
  align-items: center;
  gap: 30px;
  position: relative;
}
.reviews .content .cards .card .review-user img {
  width: 55px;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews .content .cards .card .review-user .review-user-name {
  color: #1F1F1F;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 7px;
}
.reviews .content .cards .card .review-user .stars i {
  color: rgb(233, 198, 0);
}

.about-us {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 85px;
}
.about-us video, .about-us img {
  width: calc(100% - 20px);
  margin-inline: auto;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
  margin-top: 50px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.about-us video.secondary, .about-us img.secondary {
  display: none;
}
.about-us video.third, .about-us img.third {
  display: none;
}
.about-us .content {
  padding-inline: 20px;
}
.about-us .content .text {
  position: relative;
}
.about-us .content .text .headingp {
  color: #0467aa;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.about-us .content .text h2 {
  color: #1F1F1F;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 8px;
}
.about-us .content .text p {
  color: #1F1F1F;
  opacity: 0.9;
  font-size: 16px;
}
.about-us .content .cards {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 65px;
}
.about-us .content .cards .card {
  background: none;
  border: none;
}
.about-us .content .cards .card i {
  color: #0467aa;
  font-size: 38px;
}
.about-us .content .cards .card .title {
  font-size: 16px;
  color: #0467aa;
  font-weight: 500;
  margin-top: 12px;
}
.about-us .content .cards .card .card-text {
  opacity: 0.9;
  color: #1F1F1F;
  font-size: 16px;
}
.about-us .content .button {
  width: 180px;
  height: 55px;
  background: #0467aa;
  color: white;
  border-radius: 30px;
  margin-top: 40px;
}

.contact {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 80px;
}
.contact .content {
  padding-inline: 20px;
}
.contact .content form {
  background: #0467aa;
  border-radius: 18px;
  width: 100%;
  height: 600px;
  padding: 22px;
  padding-block: 55px;
  padding-bottom: 0;
  text-align: center;
  position: relative;
}
.contact .content form img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  opacity: 0.05;
}
.contact .content form h2 {
  color: white;
  font-size: 30px;
  margin-bottom: 16px;
}
.contact .content form p {
  font-size: 16px;
  color: white;
  opacity: 0.9;
}
.contact .content form .form-content {
  background: white;
  border-radius: 18px;
  padding: 17px;
  padding-block: 28px;
  text-align: left;
  transform: translateY(35px);
}
.contact .content form .form-content p {
  color: #1F1F1F;
  margin-bottom: 22px;
}
.contact .content form .form-content p a {
  color: #1F1F1F;
  text-decoration: underline;
}
.contact .content form .form-content input {
  margin-bottom: 15px;
  width: 100%;
  height: 56px;
  border: 1px solid lightgray;
  border-radius: 6px;
  padding: 15px;
  color: #0467aa;
}
.contact .content form .form-content input:active, .contact .content form .form-content input:focus {
  border: 1px solid #0467aa;
}
.contact .content form .form-content .flex {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.contact .content form .form-content button {
  background: #0467aa;
  height: 56px;
  width: 75px;
  border: none;
  outline: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s;
}
.contact .content form .form-content button:hover {
  background: white;
}
.contact .content form .form-content button:hover i {
  color: #0467aa;
}
.contact .content form .form-content button i {
  color: white;
  font-size: 19px;
}

.our-services {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 275px;
}
.our-services .content {
  padding-inline: 20px;
}
.our-services .content .text {
  position: relative;
}
.our-services .content .text.mobile {
  display: block;
}
.our-services .content .text.desktop {
  display: none;
}
.our-services .content .text .headingp {
  color: #0467aa;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.our-services .content .text h2 {
  color: #1F1F1F;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 8px;
}
.our-services .content .text p {
  color: #1F1F1F;
  opacity: 0.9;
  font-size: 16px;
}
.our-services .content .cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 45px;
}
.our-services .content .cards .card {
  background: white;
  border-radius: 18px;
  padding: 30px 20px;
  border: none;
}
.our-services .content .cards .card img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 60px;
  height: auto;
}
.our-services .content .cards .card i {
  font-size: 42px;
  margin-bottom: 6px;
  color: #0467aa;
}
.our-services .content .cards .card .title {
  font-size: 30px;
  color: #1F1F1F;
  font-weight: 500;
  margin-top: 18px;
}
.our-services .content .cards .card .card-text {
  opacity: 0.9;
  color: #1F1F1F;
  font-size: 16px;
}
.our-services .content .cards .card .button {
  width: 120px;
  height: 47px;
  background: transparent;
  color: #0467aa;
  border: 1px solid lightgray;
  border-radius: 30px;
  margin-top: 25px;
  text-decoration: none;
}
.our-services .content .cards .card .button:hover {
  border-color: #0467aa;
  color: white;
  background: #0467aa;
}
.our-services .content .button {
  width: 230px;
  height: 55px;
  background: #0467aa;
  color: white;
  border-radius: 30px;
  margin-top: 40px;
}

.team {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 85px;
}
.team .content {
  padding-inline: 20px;
}
.team .content .button {
  background: #0467aa;
  color: white;
  border-radius: 26px;
  width: 190px;
  height: 55px;
  text-decoration: none;
  transition: 0.6s;
}
.team .content .button.mob {
  display: flex;
  margin-top: 35px;
}
.team .content .button.des {
  display: none;
}
.team .content .button:hover {
  background: white;
  color: #0467aa;
  border: 1px solid lightgray;
}
.team .content .text {
  position: relative;
}
.team .content .text .headingp {
  color: #0467aa;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.team .content .text h2 {
  color: #1F1F1F;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 8px;
}
.team .content .text p {
  color: #1F1F1F;
  opacity: 0.9;
  font-size: 16px;
}
.team .content .persons {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 65px;
}
.team .content .persons .person {
  background: none;
  border: none;
}
.team .content .persons .person img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.team .content .persons .person .card-text {
  color: #1F1F1F;
  font-size: 16px;
  margin-top: 18px;
}
.team .content .persons .person .card-text-under {
  font-size: 15px;
  overflow: 0.72;
}

@media only screen and (min-device-width: 1140px) {
  .popup {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    padding: 50px;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
  }
  .popup.active {
    opacity: 1;
    pointer-events: visible;
  }
  .popup .popup-content {
    background: #fff;
    padding: 70px 50px;
    width: 100%;
    text-align: center;
    position: fixed;
    bottom: 20px;
    left: 50px;
    animation: popupIn 0.3s ease-out;
    text-align: left;
    max-width: -moz-max-content;
    max-width: max-content;
    border-radius: 6px;
  }
  .popup .popup-content h4 {
    margin-bottom: 15px;
    font-size: 28px;
    color: #1F1F1F;
  }
  .popup .popup-content p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 450px;
  }
  .popup .popup-content img {
    width: 60px;
    height: auto;
    margin-bottom: 25px;
  }
  .popup .popup-content .close-popup {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 26px;
    cursor: pointer;
  }
  .popup .popup-content .button {
    display: block;
    background: #0467aa;
    color: #fff;
    padding: 15px;
    border-radius: 30px;
    text-decoration: none;
    margin-top: 30px;
    text-align: center;
    max-width: 400px;
  }
  @keyframes popupIn {
    from {
      transform: scale(0.8);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }
  .cover {
    height: 670px;
    min-height: 670px;
    max-height: 670px;
    width: 100%;
    position: relative;
  }
  .cover video {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 670px;
    min-height: 670px;
    max-height: 670px;
    -o-object-fit: cover;
       object-fit: cover;
    filter: brightness(50%);
  }
  .cover .content {
    z-index: 100;
    position: relative;
    padding-top: 200px;
    padding-inline: 50px;
    max-width: 1560px;
    margin-inline: auto;
  }
  .cover .content .text {
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
  }
  .cover .content .text h1 {
    color: white;
    font-size: 62px;
    font-weight: 500;
    line-height: 1.1em;
    margin-top: 15px;
    width: 700px;
  }
  .cover .content .text p {
    color: white;
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    margin-top: 0;
    max-width: 500px;
  }
  .cover .content .text .cover-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .cover .content .text .button {
    background: white;
    width: 240px;
    height: 62px;
    border-radius: 30px;
    color: #1F1F1F;
    margin-top: 0;
    text-decoration: none;
  }
  .cover .content .text .button.secondary {
    background: rgba(112, 112, 112, 0.6);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.514);
  }
  .cover .content .text .button:hover {
    background: #0467aa;
    color: white;
  }
  .dental-intro {
    position: relative;
    padding-top: 20px;
    width: 100%;
    height: auto;
    padding-inline: 50px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1560px;
    margin-inline: auto;
  }
  .dental-intro .content {
    background: white;
    border-radius: 18px;
    padding: 30px;
    padding-block: 45px;
    display: flex;
    flex-direction: row;
    gap: 45px;
    max-width: 1560px;
    margin-inline: auto;
    max-height: 590px;
  }
  .dental-intro .content .akutt {
    margin-bottom: 55px;
  }
  .dental-intro .content .akutt img {
    width: 55px;
    height: auto;
  }
  .dental-intro .content .akutt h4 {
    font-size: 22px;
    margin-top: 25px;
    font-weight: 400;
  }
  .dental-intro .content .akutt p {
    font-size: 16px;
    opacity: 0.8;
  }
  .dental-intro .content .akutt .button {
    background: #0467aa;
    color: white;
    width: 280px;
    margin-top: 10px;
    border-radius: 30px;
    height: 45px;
  }
  .dental-intro .content .text {
    text-align: left;
  }
  .dental-intro .content .text h2 {
    color: #1F1F1F;
    font-size: 30px;
    font-weight: 400;
  }
  .dental-intro .content .text p {
    color: #1F1F1F;
    opacity: 0.9;
    font-size: 16px;
  }
  .dental-intro .content .text .faces {
    display: flex;
    flex-direction: row;
    margin-block: 15px;
    gap: 3px;
  }
  .dental-intro .content .text .faces .face {
    border-radius: 100px;
    width: 32px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .dental-intro .content .text .intro-services {
    display: flex;
    flex-direction: row;
    gap: 9px;
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .dental-intro .content .text .intro-services .intro-service {
    border: 1px solid #0467aa;
    color: #0467aa;
    font-size: 16px;
    border-radius: 30px;
    padding: 5px 10px;
    text-decoration: none;
  }
  .dental-intro .service-card {
    margin-top: 0;
    width: 100%;
    padding: 0;
    position: relative;
    height: 680px;
    cursor: pointer;
    transition: 0.6s;
    border-radius: 18px;
    transform: translateY(-90px);
  }
  .dental-intro .service-card img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(70%);
    border-radius: 18px;
  }
  .dental-intro .service-card .overlay {
    text-align: left;
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    padding: 30px;
  }
  .dental-intro .service-card .overlay h2 {
    color: white;
    font-size: 30px;
    font-weight: 400;
  }
  .dental-intro .service-card .overlay p {
    color: white;
    opacity: 0.9;
    font-size: 16px;
  }
  .dental-intro .service-card .overlay .arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgb(246, 246, 246);
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
  }
  .dental-intro .service-card .overlay .arrow i {
    font-size: 22px;
    color: #0467aa;
  }
  .dental-intro .service-card .overlay .arrow:hover {
    background: #0467aa;
  }
  .dental-intro .service-card .overlay .arrow:hover i {
    color: white;
  }
  .dental-intro .service-card:hover {
    transform: scale(1.01) translateY(-90px);
  }
  .reviews {
    position: relative;
    padding-top: 0;
    width: 100%;
    height: auto;
    padding-inline: 50px;
    max-width: 1560px;
    margin-inline: auto;
    padding-top: 0;
  }
  .reviews .content {
    background: white;
    border-radius: 18px;
    padding: 30px;
    padding-block: 45px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 45px;
    max-width: 1560px;
    margin-inline: auto;
  }
  .reviews .content .text {
    text-align: center;
  }
  .reviews .content .text .headingp {
    color: #0467aa;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .reviews .content .text h2 {
    color: #1F1F1F;
    font-size: 44px;
    font-weight: 500;
  }
  .reviews .content .text p {
    color: #1F1F1F;
    opacity: 0.9;
    font-size: 16px;
  }
  .reviews .content .cards {
    display: flex;
    flex-direction: row;
    gap: 25px;
    margin-top: 50px;
  }
  .reviews .content .cards .card {
    padding: 20px;
    padding-block: 50px;
    background: #f0f2ff;
    border-radius: 18px;
    width: 33%;
    height: auto;
    border: none;
    text-align: left;
    display: flex;
    flex-direction: column;
  }
  .reviews .content .cards .card h2 {
    color: #1F1F1F;
    font-size: 26px;
    font-weight: 400;
  }
  .reviews .content .cards .card p {
    color: #1F1F1F;
    opacity: 0.9;
    font-size: 16px;
    margin-top: 6px;
  }
  .reviews .content .cards .card .review-user {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 10px;
    margin-top: 15px;
    align-items: center;
    gap: 30px;
    position: relative;
    width: -moz-max-content;
    width: max-content;
    padding-right: 60px;
  }
  .reviews .content .cards .card .review-user.left {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    margin-top: auto;
    transform: translateY(90px) translateX(20px);
  }
  .reviews .content .cards .card .review-user.middle {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: -60px;
    right: 10px;
  }
  .reviews .content .cards .card .review-user img {
    width: 55px;
    height: 55px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .reviews .content .cards .card .review-user .review-user-name {
    color: #1F1F1F;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 7px;
  }
  .reviews .content .cards .card .review-user .stars i {
    color: rgb(233, 198, 0);
  }
  .about-us {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 105px;
    max-width: 1560px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    padding-inline: 50px;
    gap: 100px;
  }
  .about-us video, .about-us img {
    width: calc(50% - 100px);
    height: 790px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 18px;
    margin-top: 0;
    position: unset;
    left: 0;
    transform: translateX(0);
  }
  .about-us video.secondary, .about-us img.secondary {
    display: block;
    height: 530px;
    position: absolute;
    top: 935px;
    right: 50px;
    width: calc(50% - 150px);
    left: unset;
  }
  .about-us video.third, .about-us img.third {
    display: block;
    height: 425px;
    position: absolute;
    top: 1505px;
    right: 50px;
    width: calc(50% - 150px);
    left: unset;
  }
  .about-us .content {
    padding-inline: 0;
    min-width: 50%;
  }
  .about-us .content .text {
    position: relative;
  }
  .about-us .content .text .headingp {
    color: #0467aa;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .about-us .content .text h2 {
    color: #1F1F1F;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 8px;
  }
  .about-us .content .text p {
    color: #1F1F1F;
    opacity: 0.9;
    font-size: 16px;
    max-width: 800px;
  }
  .about-us .content .cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 65px;
  }
  .about-us .content .cards .card {
    background: none;
    border: none;
  }
  .about-us .content .cards .card i {
    color: #0467aa;
    font-size: 38px;
  }
  .about-us .content .cards .card .title {
    font-size: 16px;
    color: #0467aa;
    font-weight: 500;
    margin-top: 12px;
  }
  .about-us .content .cards .card .card-text {
    opacity: 0.9;
    color: #1F1F1F;
    font-size: 16px;
    max-width: 600px;
  }
  .about-us .content .button {
    width: 180px;
    height: 55px;
    background: #0467aa;
    color: white;
    border-radius: 30px;
    margin-top: 40px;
    text-decoration: none;
  }
  .about-us .content .button:hover {
    background: white;
    color: #0467aa;
    border: 1px solid lightgrey;
  }
  .contact {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 125px;
  }
  .contact .content {
    max-width: 1560px;
    margin-inline: auto;
    padding-inline: 50px;
  }
  .contact .content form {
    background: #0467aa;
    border-radius: 18px;
    width: 100%;
    height: 390px;
    padding: 34px;
    padding-block: 75px;
    padding-bottom: 0;
    text-align: center;
    position: relative;
  }
  .contact .content form img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    opacity: 0.05;
  }
  .contact .content form h2 {
    color: white;
    font-size: 44px;
    margin-bottom: 24px;
    max-width: 600px;
    margin-inline: auto;
  }
  .contact .content form p {
    font-size: 16px;
    color: white;
    opacity: 0.9;
    max-width: 600px;
    margin-inline: auto;
  }
  .contact .content form .form-content {
    background: white;
    border-radius: 18px;
    padding: 34px;
    padding-block: 28px;
    text-align: left;
    transform: translateY(45px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 88%;
    margin-inline: auto;
  }
  .contact .content form .form-content p {
    color: #1F1F1F;
    margin: 0;
    margin-bottom: 35px;
  }
  .contact .content form .form-content p a {
    color: #1F1F1F;
    text-decoration: underline;
  }
  .contact .content form .form-content .inputs-flex {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .contact .content form .form-content input {
    margin-bottom: 0;
    width: 33%;
    height: 56px;
    border: 1px solid lightgray;
    border-radius: 6px;
    padding: 15px;
    color: #0467aa;
  }
  .contact .content form .form-content input:active, .contact .content form .form-content input:focus {
    border: 1px solid #0467aa;
  }
  .contact .content form .form-content .flex {
    display: flex;
    flex-direction: row;
    gap: 10px;
    width: 33%;
  }
  .contact .content form .form-content .flex input {
    width: 100%;
  }
  .contact .content form .form-content button {
    background: #0467aa;
    height: 56px;
    width: 75px;
    border: none;
    outline: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.6s;
  }
  .contact .content form .form-content button:hover {
    background: white;
  }
  .contact .content form .form-content button:hover i {
    color: #0467aa;
  }
  .contact .content form .form-content button i {
    color: white;
    font-size: 19px;
  }
  .our-services {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 0;
    margin-top: 255px;
  }
  .our-services .content {
    padding-inline: 50px;
    max-width: 1560px;
    margin-inline: auto;
  }
  .our-services .content .text {
    position: relative;
  }
  .our-services .content .text.mobile {
    display: none;
  }
  .our-services .content .text.desktop {
    display: flex;
    justify-content: space-between;
  }
  .our-services .content .text.desktop .headingp {
    margin-bottom: auto;
    width: 22%;
  }
  .our-services .content .text.desktop h2 {
    margin: 0;
  }
  .our-services .content .text .headingp {
    color: #0467aa;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .our-services .content .text h2 {
    color: #1F1F1F;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 8px;
    max-width: 540px;
  }
  .our-services .content .text p {
    color: #1F1F1F;
    opacity: 0.9;
    font-size: 16px;
  }
  .our-services .content .cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 65px;
  }
  .our-services .content .cards .card {
    background: white;
    border-radius: 18px;
    padding: 40px 30px;
    border: none;
    width: calc(34% - 30px);
    min-width: calc(34% - 30px);
    max-width: calc(34% - 30px);
    cursor: pointer;
  }
  .our-services .content .cards .card:hover .button {
    border-color: #0467aa;
    color: white;
    background: #0467aa;
  }
  .our-services .content .cards .card i {
    color: #0467aa;
    font-size: 38px;
  }
  .our-services .content .cards .card .title {
    font-size: 30px;
    color: #1F1F1F;
    font-weight: 500;
    margin-top: 18px;
  }
  .our-services .content .cards .card .card-text {
    opacity: 0.9;
    color: #1F1F1F;
    font-size: 16px;
    margin-bottom: 35px;
  }
  .our-services .content .cards .card .button {
    width: 120px;
    height: 47px;
    background: transparent;
    color: #0467aa;
    border: 1px solid lightgray;
    border-radius: 30px;
    margin-top: 25px;
    text-decoration: none;
    margin-top: auto;
  }
  .our-services .content .cards .card .button:hover {
    border-color: #0467aa;
    color: white;
    background: #0467aa;
  }
  .our-services .content .button {
    width: 180px;
    height: 55px;
    background: #0467aa;
    color: white;
    border-radius: 30px;
    margin-top: 40px;
    text-decoration: none;
  }
  .our-services .content .button:hover {
    background: white;
    color: #0467aa;
    border: 1px solid lightgrey;
  }
  .our-services .content .button.mobile {
    display: none;
  }
  .our-services .content .button.desktop {
    margin-top: auto;
  }
  .team {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 115px;
    padding-bottom: 45px;
  }
  .team .content {
    padding-inline: 50px;
    max-width: 1560px;
    margin-inline: auto;
    display: flex;
    gap: 100px;
  }
  .team .content .button {
    background: #0467aa;
    color: white;
    border-radius: 26px;
    width: 190px;
    height: 55px;
  }
  .team .content .button.mob {
    display: none;
    margin-top: 35px;
  }
  .team .content .button.des {
    display: flex;
    margin-top: 15px;
  }
  .team .content .text {
    position: relative;
    min-width: 400px;
  }
  .team .content .text .headingp {
    color: #0467aa;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .team .content .text h2 {
    color: #1F1F1F;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 8px;
  }
  .team .content .text p {
    color: #1F1F1F;
    opacity: 0.9;
    font-size: 16px;
  }
  .team .content .persons {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 0;
    flex-wrap: wrap;
  }
  .team .content .persons .person {
    background: none;
    border: none;
    width: calc(50% - 40px);
  }
  .team .content .persons .person img {
    width: 100%;
    height: 420px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 18px;
  }
  .team .content .persons .person .card-text {
    color: #1F1F1F;
    font-size: 16px;
    margin-top: 18px;
  }
}/*# sourceMappingURL=base.css.map */