#mobileNav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 75px;
  padding-inline: 20px;
  z-index: 1000;
  background: transparent;
  transition: 0.6s;
}
#mobileNav .flex .logo .logo1 {
  display: none !important;
}
#mobileNav .flex .logo .logo2 {
  display: block !important;
}
#mobileNav .flex .hamburger span {
  background: #1F1F1F;
}

#footerMob {
  margin-top: 0 !important;
}

.cover {
  height: -moz-max-content;
  height: max-content;
  width: 100%;
  position: relative;
}
.cover img {
  width: 100%;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  min-height: 440px;
  max-height: 440px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.cover .content {
  z-index: 100;
  position: relative;
  padding-top: 140px;
  padding-inline: 20px;
}
.cover .content .cover-image {
  min-height: 350px;
  max-height: 350px;
  position: relative;
  top: 0;
  opacity: 1;
  margin-top: 32px;
  border-radius: 18px;
  filter: brightness(94%);
}
.cover .content .text {
  text-align: center;
  position: relative;
}
.cover .content .text h1 {
  color: #1F1F1F;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.1em;
  margin-top: 15px;
}
.cover .content .text .headingp {
  color: #0467aa;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.cover .content .text .button {
  background: white;
  width: 190px;
  height: 55px;
  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;
}

.our-history {
  position: relative;
  padding-top: 75px;
  width: 100%;
  height: auto;
}
.our-history .content {
  padding-inline: 20px;
}
.our-history .content .text .headingp {
  color: #0467aa;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.our-history .content .text .choices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.our-history .content .text .choices .choice {
  font-size: 16px;
  width: -moz-max-content;
  width: max-content;
  padding: 8px 13px;
  background: transparent;
  color: #0467aa;
  border: 1px solid lightgray;
  border-radius: 30px;
  cursor: pointer;
}
.our-history .content .text .choices .choice.active {
  background: #0467aa;
  color: white;
  border-color: #0467aa;
}
.our-history .content .text .dynamic-text {
  margin-top: 30px;
}
.our-history .content .text .dynamic-text h2 {
  color: #1F1F1F;
  font-size: 30px;
  margin-bottom: 15px;
}
.our-history .content .text .dynamic-text p {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.8;
}
.our-history .content img {
  border-radius: 18px;
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(88%);
  margin-top: 25px;
}

.faq-section {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 75px;
}
.faq-section .content {
  padding-inline: 20px;
}
.faq-section .content .text {
  position: relative;
}
.faq-section .content .text.mobile {
  display: block;
}
.faq-section .content .text.desktop {
  display: none;
}
.faq-section .content .text h2 {
  color: #1F1F1F;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 16px;
  margin-top: 8px;
}
.faq-section .content .text p {
  color: #1F1F1F;
  opacity: 0.9;
  font-size: 16px;
}
.faq-section .content .faq {
  max-width: 500px;
  margin: 30px auto;
}
.faq-section .content .faq .faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-section .content .faq .faq-item .faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1F1F1F;
  outline: none;
}
.faq-section .content .faq .faq-item .faq-question .icon {
  transition: transform 0.3s ease;
  opacity: 0.7;
}
.faq-section .content .faq .faq-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}
.faq-section .content .faq .faq-item.active .faq-question {
  color: #2b6ef3;
}
.faq-section .content .faq .faq-item.active .icon {
  transform: rotate(180deg);
}
.faq-section .content .faq .faq-item.active .faq-answer {
  max-height: 300px;
  padding: 15px 20px 20px;
}
.faq-section .content .flex .card {
  background: white;
  border-radius: 18px;
  padding: 30px 20px;
  border: none;
}
.faq-section .content .flex .card i {
  color: #0467aa;
  font-size: 32px;
  margin-bottom: 20px;
}
.faq-section .content .flex .card h2 {
  color: #1F1F1F;
  font-size: 24px;
  margin-bottom: 30px;
}
.faq-section .content .flex .card a {
  color: #1F1F1F;
  font-size: 16px;
  margin-block: 8px;
}
.faq-section .content .flex .card a i {
  font-size: 20px;
  margin-right: 10px;
}
.faq-section .content .flex .card .button {
  margin-top: 15px;
  background: white;
  color: #0467aa;
  border-radius: 30px;
  width: 180px;
  height: 52px;
  border: 1px solid lightgray;
}

.our-services {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 95px;
}
.our-services .content {
  padding-inline: 20px;
}
.our-services .content .text {
  position: relative;
}
.our-services .content .text.mobile {
  text-align: center;
  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: 180px;
  height: 55px;
  background: #0467aa;
  color: white;
  border-radius: 30px;
  margin-top: 40px;
}

.our-team {
  position: relative;
  padding-top: 75px;
  width: 100%;
  height: auto;
}
.our-team .content {
  padding-inline: 20px;
}
.our-team .content .text .headingp {
  color: #0467aa;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.our-team .content .text .team-card {
  margin-top: 25px;
  width: 100%;
  height: auto;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 405px;
  transition: 0.6s;
}
.our-team .content .text .team-card video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 405px;
  filter: brightness(70%);
  border-radius: 18px;
}
.our-team .content .text .team-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;
}
.our-team .content .text .team-card .overlay h2 {
  color: white;
  font-size: 30px;
  font-weight: 400;
}
.our-team .content .text .team-card .overlay p {
  color: white;
  opacity: 0.9;
  font-size: 16px;
}
.our-team .content .text .team-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;
}
.our-team .content .text .team-card .overlay .arrow i {
  font-size: 22px;
  color: #0467aa;
}
.our-team .content .text .team-card .overlay .arrow:hover {
  background: #0467aa;
}
.our-team .content .text .team-card .overlay .arrow:hover i {
  color: white;
}
.our-team .content .text .points-card {
  margin-top: 25px;
  width: 100%;
  height: auto;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  height: auto;
  transition: 0.6s;
  background: white;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.our-team .content .text .points-card .point {
  border-bottom: 1px solid lightgray;
  padding-bottom: 20px;
}
.our-team .content .text .points-card .point:last-child {
  border: none;
}
.our-team .content .text .points-card .point .headingp {
  color: #0467aa;
  font-size: 12px;
  text-transform: uppercase;
}
.our-team .content .text .points-card .point h2 {
  color: #1F1F1F;
  font-size: 30px;
  margin-bottom: 18px;
}
.our-team .content .text .points-card .point p {
  color: #1F1F1F;
  font-size: 16px;
  opacity: 0.8;
}
.our-team .content .persons {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 35px;
}
.our-team .content .persons .person {
  background: none;
  border: none;
}
.our-team .content .persons .person img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 18px;
}
.our-team .content .persons .person .card-text {
  color: #1F1F1F;
  font-size: 16px;
  margin-top: 18px;
}
.our-team .content iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  margin-top: 45px;
}

.reviews {
  position: relative;
  padding-top: 65px;
  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);
}

.contact {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 65px;
  padding-bottom: 170px;
}
.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;
}

@media only screen and (min-device-width: 1140px) {
  #desNav {
    display: block;
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    background: transparent;
    z-index: 10000;
    transition: 0.6s;
  }
  #desNav .nav-content .logo img.logo1 {
    display: none;
  }
  #desNav .nav-content .logo img.logo2 {
    display: block;
  }
  #desNav .nav-content .menu {
    background: transparent;
  }
  #desNav .nav-content .menu a {
    color: #1F1F1F;
  }
  #desNav .nav-content .cta .button {
    background: #0467aa;
    color: white;
  }
  .cover {
    height: -moz-max-content;
    height: max-content;
    min-height: -moz-max-content;
    min-height: max-content;
    max-height: -moz-max-content;
    max-height: max-content;
    width: 100%;
    position: relative;
  }
  .cover video, .cover img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 290px;
    min-height: 290px;
    max-height: 290px;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.19;
  }
  .cover .content {
    z-index: 100;
    position: relative;
    padding-top: 150px;
    padding-inline: 50px;
    max-width: 1560px;
    margin-inline: auto;
  }
  .cover .content .cover-image {
    min-height: 400px;
    max-height: 400px;
    position: relative;
    top: 0;
    opacity: 1;
    margin-top: 45px;
    border-radius: 18px;
    filter: brightness(94%);
    max-width: 850px;
  }
  .cover .content .text {
    text-align: center;
    position: relative;
    max-width: 700px;
    margin-inline: auto;
  }
  .cover .content .text h1 {
    color: #1F1F1F;
    font-size: 70px;
    font-weight: 500;
    line-height: 1.1em;
    margin-top: 15px;
  }
  .cover .content .text .headingp {
    color: #0467aa;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .cover .content .text .cover-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .cover .content .text .button {
    background: white;
    width: 190px;
    height: 55px;
    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;
  }
  .our-history {
    position: relative;
    padding-top: 115px;
    width: 100%;
    height: auto;
  }
  .our-history .content {
    padding-inline: 50px;
    max-width: 1560px;
    margin-inline: auto;
    display: flex;
    flex-direction: row;
    gap: 100px;
  }
  .our-history .content .text {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .our-history .content .text .headingp {
    color: #0467aa;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0;
  }
  .our-history .content .text .choices {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .our-history .content .text .choices .choice {
    font-size: 16px;
    width: -moz-max-content;
    width: max-content;
    padding: 8px 13px;
    background: transparent;
    color: #0467aa;
    border: 1px solid lightgray;
    border-radius: 30px;
    cursor: pointer;
  }
  .our-history .content .text .choices .choice.active {
    background: #0467aa;
    color: white;
    border-color: #0467aa;
  }
  .our-history .content .text .dynamic-text {
    margin-top: 30px;
    min-height: 240px;
    transform: translateY(60px);
  }
  .our-history .content .text .dynamic-text h2 {
    color: #1F1F1F;
    font-size: 44px;
    margin-bottom: 15px;
  }
  .our-history .content .text .dynamic-text p {
    color: #1F1F1F;
    font-size: 16px;
    opacity: 0.8;
  }
  .our-history .content img {
    border-radius: 18px;
    width: 50%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    filter: brightness(88%);
    margin-top: 0;
  }
  .our-services {
    position: relative;
    width: 100%;
    height: 100%;
    padding-top: 0;
    margin-top: 95px;
  }
  .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: block;
  }
  .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: 0;
    max-width: 850px;
  }
  .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: auto;
    text-decoration: none;
  }
  .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: 30px;
  }
  .faq-section {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 75px;
  }
  .faq-section .content {
    padding-inline: 50px;
    max-width: 1560px;
    margin-inline: auto;
  }
  .faq-section .content .text {
    position: relative;
    max-width: 800px;
  }
  .faq-section .content .text h2 {
    color: #1F1F1F;
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 16px;
    margin-top: 8px;
  }
  .faq-section .content .text p {
    color: #1F1F1F;
    opacity: 0.9;
    font-size: 16px;
  }
  .faq-section .content .faq {
    min-width: 890px;
    max-width: 890px;
    margin: 0;
  }
  .faq-section .content .faq .faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .faq-section .content .faq .faq-item:last-child {
    margin-bottom: 0;
  }
  .faq-section .content .faq .faq-item .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 28px 30px;
    font-size: 16px;
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1F1F1F;
    outline: none;
  }
  .faq-section .content .faq .faq-item .faq-question .icon {
    transition: transform 0.3s ease;
    opacity: 0.7;
  }
  .faq-section .content .faq .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 30px;
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    max-width: 650px;
  }
  .faq-section .content .faq .faq-item.active .faq-question {
    color: #2b6ef3;
  }
  .faq-section .content .faq .faq-item.active .icon {
    transform: rotate(180deg);
  }
  .faq-section .content .faq .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px 20px;
    padding-inline: 30px;
  }
  .faq-section .content .flex {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-top: 55px;
  }
  .faq-section .content .flex .card {
    background: white;
    border-radius: 18px;
    padding: 40px 30px;
    border: none;
    width: 100%;
  }
  .faq-section .content .flex .card i {
    color: #0467aa;
    font-size: 32px;
    margin-bottom: 20px;
  }
  .faq-section .content .flex .card h2 {
    color: #1F1F1F;
    font-size: 24px;
    margin-bottom: 30px;
  }
  .faq-section .content .flex .card a {
    color: #1F1F1F;
    font-size: 16px;
    margin-block: 8px;
  }
  .faq-section .content .flex .card a i {
    font-size: 20px;
    margin-right: 10px;
  }
  .faq-section .content .flex .card .button {
    margin-top: 15px;
    background: white;
    color: #0467aa;
    border-radius: 30px;
    width: 180px;
    height: 52px;
    border: 1px solid lightgray;
  }
  .our-team {
    position: relative;
    padding-top: 105px;
    width: 100%;
    height: auto;
  }
  .our-team .content {
    padding-inline: 50px;
    max-width: 1560px;
    margin-inline: auto;
  }
  .our-team .content iframe {
    margin-top: 65px;
    height: 520px;
  }
  .our-team .content .text {
    display: flex;
    gap: 25px;
    height: 100%;
    position: relative;
    align-items: stretch;
  }
  .our-team .content .text .headingp {
    color: #0467aa;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .our-team .content .text .team-card {
    margin-top: 0;
    width: 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: 0.6s;
    height: 738px;
  }
  .our-team .content .text .team-card video {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(70%);
    border-radius: 18px;
  }
  .our-team .content .text .team-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;
  }
  .our-team .content .text .team-card .overlay h2 {
    color: white;
    font-size: 44px;
    max-width: 600px;
    font-weight: 400;
  }
  .our-team .content .text .team-card .overlay p {
    max-width: 600px;
    color: white;
    opacity: 0.9;
    font-size: 16px;
  }
  .our-team .content .text .team-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;
  }
  .our-team .content .text .team-card .overlay .arrow i {
    font-size: 22px;
    color: #0467aa;
  }
  .our-team .content .text .team-card .overlay .arrow:hover {
    background: #0467aa;
  }
  .our-team .content .text .team-card .overlay .arrow:hover i {
    color: white;
  }
  .our-team .content .text .points-card {
    margin-top: 0;
    width: 70%;
    height: auto;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    height: auto;
    transition: 0.6s;
    background: white;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .our-team .content .text .points-card .point {
    border-bottom: 1px solid lightgray;
    padding-bottom: 20px;
  }
  .our-team .content .text .points-card .point:last-child {
    border: none;
  }
  .our-team .content .text .points-card .point .headingp {
    color: #0467aa;
    font-size: 12px;
    text-transform: uppercase;
  }
  .our-team .content .text .points-card .point h2 {
    color: #1F1F1F;
    font-size: 30px;
    margin-bottom: 18px;
  }
  .our-team .content .text .points-card .point p {
    color: #1F1F1F;
    font-size: 16px;
    opacity: 0.8;
  }
  .our-team .content .persons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 35px;
  }
  .our-team .content .persons .person {
    background: none;
    border: none;
    width: 33%;
  }
  .our-team .content .persons .person img {
    width: 100%;
    height: 380px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 18px;
  }
  .our-team .content .persons .person .card-text {
    color: #1F1F1F;
    font-size: 16px;
    margin-top: 18px;
  }
  .reviews {
    position: relative;
    padding-top: 85px;
    width: 100%;
    height: auto;
    padding-inline: 50px;
  }
  .reviews .content {
    background: white;
    border-radius: 18px;
    padding: 30px;
    padding-block: 65px;
    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);
  }
  .contact {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 125px;
    overflow: hidden;
  }
  .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;
  }
}/*# sourceMappingURL=about.css.map */