* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 12px;
}
@media (max-width: 1920px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-family: "DM Sans", sans-serif;
  box-sizing: border-box;
  font-size: 2rem;
  font-weight: 400;
  color: #2B2B2B;
}

.container {
  max-width: 124.8rem;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    max-width: 37.5rem;
  }
}

.main-button {
  height: 6rem;
  width: fit-content;
  text-transform: uppercase;
  display: flex;
  text-decoration: none;
}
.main-button .main-button__text {
  display: inline-block;
  padding: 1.9rem 3.5rem 1.8rem 3.1rem;
  height: 100%;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.3rem;
  color: #070C3E;
  background-color: #D7B15C;
}
.main-button .main-button__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 4.8rem;
  background-color: #FFFFFF;
}
.main-button .main-button__img img {
  width: 0.97rem;
}

.main-button:hover {
  text-decoration: none;
}

@media (max-width: 768px) {
  .main-button {
    height: 4.2rem;
  }
  .main-button .main-button__text {
    font-size: 1.4rem;
    line-height: 2rem;
    padding: 1.2rem 2.4rem;
  }
  .main-button .main-button__img {
    width: 3.2rem;
  }
  .main-button .main-button__img img {
    width: 0.7rem;
  }
}
.header {
  width: 100vw;
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(244, 244, 244, 0.4588235294);
}
.header .header__container {
  display: flex;
  align-items: center;
  height: 12.4rem;
  width: 100%;
}
.header .header__logo img {
  width: 26.5rem;
  height: 6rem;
}
.header .header__menu {
  margin-left: 12rem;
}
.header .menu__list {
  display: flex;
  gap: 4.8rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.header a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
  letter-spacing: 0.128rem;
  text-transform: uppercase;
  color: #FFFFFF;
}
.header a.active {
  color: #D7B15C;
}
.header .header__phone {
  margin: 0 0 0 auto;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.1rem;
  letter-spacing: 0.005rem;
  color: #FFFFFF;
}
.header .header__phone img {
  height: 1.6rem;
  margin-right: 1.145rem;
}
.header .header__phone_mobile {
  display: none;
}
.header .burger {
  display: none;
  width: 2.4rem;
  height: 1.9rem;
  position: relative;
}
.header .burger__line {
  display: block;
  width: 2.4rem;
  height: 0.3rem;
  position: absolute;
  transition: all ease 0.5s;
}
.header .burger__line:nth-child(1) {
  top: 0;
  left: 0;
}
.header .burger__line:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header .burger__line:nth-child(3) {
  bottom: 0;
  left: 0;
}
.header .burger_active .burger__line:nth-child(2) {
  display: none;
}
.header .burger_active .burger__line:nth-child(1) {
  transform: rotate(45deg);
  top: 0.8rem;
}
.header .burger_active .burger__line:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 0.8rem;
}

.header-dark {
  background-color: rgba(7, 12, 62, 0.9);
}

@media (max-width: 768px) {
  .header .header__container {
    background-color: #070C3E;
    height: 8rem;
    position: relative;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 0 1.6rem;
  }
  .header .burger {
    display: block;
  }
  .header .header__menu {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: absolute;
    top: calc(-100vh + 8rem);
    z-index: -1;
    margin-left: 0;
    height: calc(100vh - 8rem);
    padding: 2.4rem 1.6rem 4rem;
    width: 100%;
    transition: all ease 0.3s;
    background-color: #070C3E;
    left: 0rem;
  }
  .header .header__phone {
    display: none;
  }
  .header .header__phone_mobile {
    margin: 0;
    display: block;
  }
  .header .header__logo img {
    height: 4.5rem;
    width: auto;
  }
  .header .header__menu_active {
    top: 8rem;
  }
  .header .menu__list {
    flex-direction: column;
    gap: 1rem;
  }
  .header .menu__list li {
    padding: 1.5rem 0rem;
  }
  .header .menu__list li::after {
    content: "";
    display: block;
    position: relative;
    bottom: -1.6rem;
    width: 100%;
    height: 0.1rem;
    background-color: #eaeaea;
  }
}
.hero {
  position: relative;
  background-color: #070C3E;
}
.hero .hero__content-wrap {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
  padding: 0rem 2rem;
}
.hero .hero__main-button {
  margin-top: 4.8rem;
}
.hero .hero__description {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  color: #FFFFFF;
  max-width: 78.8rem;
  margin-top: 2.4rem;
  letter-spacing: 0em;
}
.hero .hero__title {
  font-family: "Marcellus", sans-serif;
  font-size: 8.4rem;
  font-weight: 400;
  line-height: 10.1rem;
  letter-spacing: 0em;
  color: #FFFFFF;
}
.hero .hero__title span {
  color: #D7B15C;
}
.hero .hero__background_video {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.hero-img {
  padding: 29rem 0rem 14.5rem;
  position: relative;
}
.hero-img .hero__background {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.hero-img .hero__container {
  max-width: 122.4rem;
}
.hero-img .wrapper {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}
.hero-img .title {
  font-family: "Marcellus", sans-serif;
  font-size: 6.4rem;
  font-weight: 400;
  line-height: 8.3rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
  max-width: 75rem;
}
.hero-img .title span {
  color: #D7B15C;
}
.hero-img .subtitle {
  padding-top: 2.5rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
  max-width: 35rem;
}
.hero-img .hero__main-button {
  margin-top: 2.8rem;
}

.hero-practice {
  padding: 26.5rem 0 17.9rem;
}
.hero-practice .text {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.9rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #D7B15C;
  margin-bottom: 2.4rem;
  text-transform: uppercase;
}
.hero-practice .title {
  min-width: 66.5rem;
  margin-bottom: 0rem;
}
.hero-practice .subtitle {
  padding-top: 1.4rem;
  max-width: 41.9rem;
}
.hero-practice .wrapper {
  gap: 11rem;
}

.hero-team .subtitle {
  max-width: 49rem;
  margin-right: -3.2rem;
}

.hero-services {
  padding: 35rem 0 22.7rem;
}
.hero-services .title {
  font-family: "Marcellus", sans-serif;
  font-size: 9.2rem;
  font-weight: 400;
  line-height: 11rem;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
  margin: 0 auto;
}

.hero-contact {
  padding: 25.1rem 0rem 9.7rem;
}
.hero-contact .container {
  max-width: 120rem;
}
.hero-contact .wrapper {
  display: flex;
  justify-content: space-between;
}
.hero-contact .form-container {
  width: 50.6rem;
}
.hero-contact .title-wrap {
  max-width: 53.7rem;
}
.hero-contact .title-wrap h1 {
  font-family: "Marcellus", sans-serif;
  font-size: 9.2rem;
  font-weight: 400;
  line-height: 11rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
}
.hero-contact .title-wrap h1 span {
  color: #D7B15C;
}
.hero-contact .title-wrap .subtitle {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.9rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #D7B15C;
  margin-bottom: 0.4rem;
}
.hero-contact form > p {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.6rem;
  row-gap: 4.284rem;
  justify-content: end;
  margin-bottom: 0;
}
.hero-contact form > p span.wpcf7-not-valid-tip {
  font-size: 1.4rem;
  width: 100%;
}
.hero-contact form div.wpcf7-response-output {
  margin: 2rem 0rem 1rem;
  color: white;
  border: none;
  font-size: 1.6rem;
  padding: 0;
  text-align: end;
}
.hero-contact form br {
  display: none;
}
.hero-contact form .btn-wrap {
  margin-top: 6.1rem;
  display: flex;
  justify-content: end;
}
.hero-contact form .btn-wrap > p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.hero-contact form .btn-wrap > p > span {
  display: none;
}
.hero-contact form .btn-wrap > p img {
  width: 2.01rem;
  height: 1.632rem;
  margin-left: 1rem;
}
.hero-contact form input, .hero-contact form textarea {
  width: 100%;
  padding: 1.6rem;
  height: 5.916rem;
  background-color: rgba(189, 189, 189, 0.4);
  border: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  color: #FFFFFF;
}
.hero-contact form input:-webkit-autofill,
.hero-contact form input:-webkit-autofill:hover,
.hero-contact form input:-webkit-autofill:focus,
.hero-contact form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px rgba(189, 189, 189, 0.4) inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
}
.hero-contact form input:focus, .hero-contact form textarea:focus {
  outline: none;
}
.hero-contact form input::placeholder, .hero-contact form textarea::placeholder {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  color: #FFFFFF;
  text-transform: uppercase;
}
.hero-contact form textarea {
  resize: none;
  height: 12.34rem;
}
.hero-contact form span {
  width: 100%;
}
.hero-contact form span:nth-of-type(1), .hero-contact form span:nth-of-type(2) {
  width: calc(50% - 1.8rem);
}
.hero-contact form .submit-btn {
  height: auto;
  padding: 0;
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0em;
  color: #D7B15C;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-right: 0.5rem;
}
.hero-contact form .submit-btn:focus {
  outline: none;
}
.hero-contact .form-container form.invalid .wpcf7-response-output {
  color: #dc3232;
}

.hero-testimonial {
  padding: 24.4rem 0rem 15.7rem;
}
.hero-testimonial .container {
  max-width: 124.8rem;
}
.hero-testimonial .text {
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.9rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #D7B15C;
  margin-bottom: 1.6rem;
  text-transform: uppercase;
}
.hero-testimonial .wrapper {
  justify-content: space-between;
}
.hero-testimonial .wrapper h1 {
  font-family: "Marcellus", sans-serif;
  font-size: 9.2rem;
  font-weight: 400;
  line-height: 11rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
}
.hero-testimonial .wrapper h1 span {
  color: #D7B15C;
}
.hero-testimonial .subtitle {
  max-width: 49rem;
}

.hero-error-page {
  padding: 22.3rem 0rem 8.5rem;
}
.hero-error-page .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-error-page h1 {
  font-family: "Marcellus", sans-serif;
  font-size: 30rem;
  font-weight: 400;
  line-height: 33.6rem;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}
.hero-error-page h1 span {
  color: #D7B15C;
}
.hero-error-page h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 8.8rem;
  font-weight: 400;
  line-height: 11.4rem;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 2.5rem;
}
.hero-error-page h2 span {
  color: #D7B15C;
}
.hero-error-page p {
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 5.3rem;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 6.28rem;
  text-transform: capitalize;
}

.hero-video {
  background-color: transparent;
  padding: 33.7rem 0rem 12.4rem;
}

@media (max-width: 768px) {
  .hero .hero__container {
    padding: 0rem 1.6rem;
  }
  .hero .hero__title {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .hero .hero__description {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-top: 1.4rem;
  }
  .hero .hero__content-wrap {
    padding: 0rem 0rem;
  }
  .hero-video {
    padding: 18rem 0rem 4.8rem;
  }
  .hero-img {
    padding: 18rem 0rem 4.8rem;
  }
  .hero-img .hero__container {
    max-width: 37.5rem;
  }
  .hero-img .title {
    font-size: 3.2rem;
    line-height: 4rem;
    min-width: auto;
  }
  .hero-img .wrapper {
    flex-direction: column;
    gap: 1.4rem;
  }
  .hero-img .subtitle {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .hero-practice .container {
    padding: 0rem 1.6rem;
  }
  .hero-practice .text {
    font-size: 2.4rem;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  .hero-services .container {
    padding: 0rem 1.6rem;
  }
  .hero-testimonial .container {
    padding: 0rem 1.6rem;
  }
  .hero-testimonial .text {
    font-size: 2.4rem;
    line-height: 3rem;
    margin-bottom: 1rem;
  }
  .hero-testimonial .wrapper h1 {
    font-size: 4.8rem;
    line-height: 5rem;
  }
  .hero-contact .container {
    max-width: 37.5rem;
    padding: 0rem 1.6rem;
  }
  .hero-contact .wrapper {
    align-items: flex-start;
  }
  .hero-contact .title-wrap h1 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .hero-contact .title-wrap .subtitle {
    font-size: 2.4rem;
    line-height: 3rem;
    padding-top: 0rem;
  }
  .hero-contact .form-container {
    width: 100%;
  }
  .hero-contact form > p {
    row-gap: 2rem;
  }
  .hero-contact form > p input {
    height: 5rem;
  }
  .hero-contact form > p span:nth-of-type(1), .hero-contact form > p span:nth-of-type(2) {
    width: 100%;
  }
  .hero-contact form .btn-wrap {
    margin-top: 2rem;
  }
  .hero-error-page .container {
    padding: 0rem 1.6rem;
  }
  .hero-error-page h1 {
    font-size: 8.8rem;
    line-height: 12rem;
  }
  .hero-error-page h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .hero-error-page p {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 2rem;
  }
  .hero-team .subtitle {
    margin-right: 0rem;
  }
}
.specialization {
  padding: 9.6rem 0rem;
}
.specialization .specialization__container {
  max-width: 123.6rem;
}
.specialization ul {
  list-style-type: none;
  display: flex;
  gap: 1.6rem;
  margin: 0;
}
.specialization li {
  width: 40.1rem;
  padding: 11.8rem 5.2rem 7.3rem;
  background-color: #F4F4F4;
}
.specialization .specialization__title {
  position: relative;
  font-family: "Marcellus";
  font-size: 4rem;
  font-weight: 400;
  line-height: 5rem;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 4.8rem;
}
.specialization .specialization__descr {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  letter-spacing: 0em;
  text-align: left;
}

@media (max-width: 768px) {
  .specialization {
    padding: 4.8rem 0rem;
  }
  .specialization .specialization__container {
    max-width: 37.5rem;
    padding: 0 1.6rem;
  }
  .specialization .specialization__wrapper {
    flex-direction: column;
  }
  .specialization .specialization__item {
    width: auto;
    padding-top: 6rem;
  }
  .specialization .specialization__descr {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .specialization .specialization__title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
  }
  .specialization li:hover .specialization__title::after {
    bottom: -1rem;
  }
}
.services-descr {
  padding: 9.6rem 0rem;
  background-color: #F4F4F4;
}
.services-descr .services-descr__container {
  max-width: 111.4rem;
}
.services-descr .services-descr__wrap {
  display: flex;
  align-items: center;
  gap: 7rem;
}
.services-descr .services-descr__img-wrap {
  position: relative;
  width: 55rem;
  height: 55rem;
}
.services-descr .services-descr__img-wrap img {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
}
.services-descr .services-descr__content {
  padding: 1.8rem 0rem 2.9rem 0rem;
  min-height: 55rem;
  max-width: 49.4rem;
}
.services-descr .services-descr__title {
  font-family: Marcellus;
  font-size: 4.4rem;
  font-weight: 400;
  line-height: 5.5rem;
  letter-spacing: 0em;
  margin-bottom: 4.17rem;
  color: #2B2B2B;
}
.services-descr .services-descr__title span {
  color: #D7B15C;
}
.services-descr .services-descr__text {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  letter-spacing: 0em;
  text-align: left;
  color: #2B2B2B;
  margin-bottom: 7.35rem;
}
.services-descr .services-descr__main-button .main-button__img {
  background-color: #070C3E;
}
.services-descr .services-descr__experience {
  position: absolute;
  bottom: 2.86rem;
  left: -7.15rem;
  height: 9.43rem;
  width: 29rem;
  background-color: #F4F4F4;
  padding: 0.76rem 2.3rem 0.76rem 2.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}
.services-descr .services-descr__experience-years {
  font-size: 6.4rem;
  font-weight: 400;
  line-height: 8.3rem;
  letter-spacing: 0em;
  color: #D7B15C;
}
.services-descr .services-descr__experience-text {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  color: #2B2B2B;
}

@media (max-width: 768px) {
  .services-descr {
    padding: 4.8rem 0rem;
  }
  .services-descr .services-descr__container {
    max-width: 37.5rem;
    padding: 0 1.6rem;
  }
  .services-descr .services-descr__wrap {
    flex-direction: column;
    width: 34.3rem;
    gap: 3.6rem;
  }
  .services-descr .services-descr__img-wrap {
    width: 34.3rem;
    height: 34.3rem;
  }
  .services-descr .services-descr__experience {
    left: 2rem;
    bottom: 2rem;
    height: 6rem;
    width: 18rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
  }
  .services-descr .services-descr__experience-years {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .services-descr .services-descr__experience-text {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  .services-descr .services-descr__content {
    padding: 0;
  }
  .services-descr .services-descr__title {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 2.4rem;
  }
  .services-descr .services-descr__text {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .services-descr .services-descr__content {
    min-height: auto;
  }
}
.achievements {
  padding: 12.8rem 0rem;
  background-color: #070C3E;
}
.achievements .achievements__container {
  max-width: 79.8rem;
}
.achievements ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.6rem;
  list-style-type: none;
  margin: 0;
}
.achievements li {
  position: relative;
  width: 12.5rem;
}
.achievements li img {
  width: 100%;
}
.achievements .top {
  font-family: "Marcellus", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 6rem;
  letter-spacing: 0em;
  text-align: center;
  color: #D7B15C;
  margin-bottom: 0.59rem;
}
.achievements .bottom {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .achievements {
    padding: 4.8rem 0rem;
  }
  .achievements .achievements__container {
    max-width: 37.5rem;
    padding: 0 1.6rem;
  }
  .achievements ul {
    flex-direction: column;
    align-items: center;
  }
  .achievements li + li:after {
    top: -2.3rem;
    left: 0rem;
    width: 100%;
    height: 0.1rem;
  }
}
.clients {
  padding: 9.6rem 0rem;
}
.clients .subtitle {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.9rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 0.4rem;
  color: #D7B15C;
}
.clients h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 7.4rem;
  letter-spacing: 0em;
  text-align: center;
  color: #D7B15C;
  margin-bottom: 2.4rem;
}
.clients h2 span {
  color: #2B2B2B;
}
.clients .carousel-wrap {
  position: relative;
  width: 118.7rem;
  margin: 0 auto;
}
.clients .carousel-list {
  padding: 0rem 19.6rem;
  list-style-type: none;
  margin: 0;
}
.clients .carousel-item {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}
.clients .carousel-item .name {
  font-family: "Palace Script MT";
  font-size: 6.4rem;
  font-style: italic;
  font-weight: 400;
  line-height: 9.5rem;
  letter-spacing: 0em;
  text-align: center;
  color: #2B2B2B;
}
.clients .carousel-item p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  letter-spacing: 0em;
  text-align: center;
  color: #2E569E;
  margin-bottom: 0;
}
.clients .slick-track {
  display: flex;
  height: 100%;
}
.clients .slick-list {
  overflow: hidden;
  height: 100%;
}
.clients .arrow {
  position: absolute;
  top: 0;
  cursor: pointer;
}
.clients .arrow img {
  height: 2.94rem;
}
.clients .carousel__prev-arrow {
  left: 0;
}
.clients .carousel__next-arrow {
  right: 0;
}
.clients .carousel__dots {
  display: flex;
  justify-content: center;
  margin-top: 4.8rem;
}
.clients .slick-dots {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 1.2rem;
}
.clients .slick-dots li {
  cursor: pointer;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #BDBDBD;
  border-radius: 50%;
}
.clients .slick-dots button {
  background: transparent;
  font-size: 0px;
  border: none;
}
.clients .slick-dots .slick-active {
  width: 1rem;
  height: 1rem;
  background-color: #D7B15C;
}

@media (max-width: 768px) {
  .clients {
    padding: 4.8rem 0rem;
  }
  .clients h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .clients .subtitle {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .clients .carousel-wrap {
    width: 34.3rem;
  }
  .clients .carousel-list {
    padding: 0rem 2.6rem;
  }
  .clients .carousel-item img {
    width: 18rem;
  }
  .clients .carousel-item p {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  .clients .carousel__dots {
    margin-top: 2.4rem;
  }
  .clients .carousel-item .name {
    font-size: 4.8rem;
    line-height: 4.8rem;
  }
}
.consultation-section {
  padding: 7.4rem 0rem;
  background-color: rgba(0, 0, 0, 0.7);
}
.consultation-section .consultation-section__container {
  max-width: 119rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 9.6rem;
}
.consultation-section .consultation-section__video-wrap {
  min-width: 50.6rem;
  height: 42.4rem;
  position: relative;
}
.consultation-section .consultation-section__video-wrap video {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.consultation-section .content {
  max-width: 59.3rem;
}
.consultation-section .subtitle {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.9rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #D7B15C;
  margin-bottom: 0.4rem;
}
.consultation-section h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 7.4rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
  margin-bottom: 2.4rem;
}
.consultation-section h2 span {
  color: #D7B15C;
}
.consultation-section p {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 3.3rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
  margin-bottom: 3.9rem;
  max-width: 52.4rem;
}
.consultation-section a:hover {
  text-decoration: none;
}
.consultation-section a span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0em;
  color: #D7B15C;
  text-transform: uppercase;
  margin-right: 1rem;
}
.consultation-section a img {
  width: 1.6rem;
}

@media (max-width: 768px) {
  .consultation-section {
    padding: 4.8rem 0rem;
  }
  .consultation-section .consultation-section__container {
    flex-direction: column;
    gap: 3.6rem;
    padding: 0rem 1.6rem;
  }
  .consultation-section .consultation-section__video-wrap {
    min-width: 34.3rem;
    height: 29rem;
  }
  .consultation-section h2 {
    font-size: 3.2rem;
    line-height: 4rem;
    max-width: 34rem;
  }
  .consultation-section .subtitle {
    font-size: 2rem;
    line-height: 2.6rem;
  }
  .consultation-section p {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .consultation-section a span {
    font-size: 1.4rem;
  }
}
.employees {
  padding: 12.8rem 0rem 16.8rem 0rem;
  background-color: #FFFFFF;
}
.employees .employees__container {
  max-width: 119.2rem;
}
.employees h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 6.9rem;
  letter-spacing: 0em;
  text-align: center;
  color: #2B2B2B;
  margin-bottom: 7.2rem;
}
.employees h2 span {
  color: #D7B15C;
}
.employees p {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 3.3rem;
  letter-spacing: 0em;
  text-align: left;
  color: #2B2B2B;
  margin-bottom: 7.2rem;
}
.employees ul {
  list-style-type: none;
  display: flex;
  gap: 7.2rem;
  flex-wrap: wrap;
}
.employees ul li {
  cursor: pointer;
  width: 56rem;
  height: 46.4rem;
  position: relative;
}
.employees ul li img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.employees ul li .employee__name {
  height: 6.9rem;
  width: 100%;
  background-color: rgba(7, 12, 62, 0.9);
  font-family: "Marcellus", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.8rem;
  letter-spacing: -0.02em;
  text-align: center;
  color: #F4F4F4;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  bottom: 0;
}
.employees .employees__about {
  transition: opacity ease 0.3s;
  opacity: 0;
  padding: 4.5rem 7.6rem;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #070C3E;
  z-index: -1;
}
.employees .employees__about .title {
  font-family: "Marcellus", sans-serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 4.8rem;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 4.4rem;
  color: #E6E6E6;
}
.employees .employees__about .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.employees .employees__about .content p {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 2.6rem;
  color: #E6E6E6;
}
.employees .employees__about .content a.more {
  font-family: "Inter", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.6rem;
  letter-spacing: 0em;
  text-align: center;
  color: #E6E6E6;
  margin-bottom: 2.4rem;
  text-decoration: none;
}
.employees .employees__about .content img {
  width: 7.6rem;
  height: 7.6rem;
}
.employees .employees__about_active {
  opacity: 1;
  z-index: 0;
}

@media (min-width: 768px) {
  .employees ul li:hover .employees__about {
    opacity: 1;
    z-index: 0;
  }
}
@media (max-width: 768px) {
  .employees {
    padding: 4.8rem 0rem;
  }
  .employees .employees__container {
    max-width: 37.5rem;
    padding: 0rem 1.6rem;
  }
  .employees h2 {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 2.4rem;
    text-align: left;
  }
  .employees p {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 3.2rem;
  }
  .employees ul {
    gap: 3.2rem;
  }
  .employees ul li {
    width: 100%;
    height: 32rem;
  }
  .employees ul li .employee__name {
    font-size: 1.6rem;
    line-height: 2rem;
    height: 5rem;
  }
  .employees .employees__about {
    padding: 2.4rem;
  }
  .employees .employees__about .title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
    line-height: 3rem;
  }
  .employees .employees__about .content p {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 1.6rem;
  }
  .employees .employees__about .content a.more {
    font-size: 1.6rem;
    line-height: 2.2rem;
    margin-bottom: 1rem;
  }
  .employees .employees__about .content img {
    width: 4rem;
    height: 4rem;
  }
}
.process {
  padding: 9.6rem 0rem;
  background-color: #070C3E;
}
.process .process__container {
  max-width: 79.8rem;
}
.process h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 6.9rem;
  letter-spacing: 0em;
  text-align: center;
  color: #F4F4F4;
  margin-bottom: 6.4rem;
}
.process h2 span {
  color: #D7B15C;
}
.process ul {
  display: flex;
  gap: 4.6rem;
  list-style-type: none;
  margin: 0;
}
.process li {
  position: relative;
  width: 16.5rem;
}
.process li + li:after {
  content: "";
  top: 0;
  left: -2.3rem;
  position: absolute;
  width: 0.1rem;
  height: 100%;
  background-color: #FFFFFF;
}
.process .top {
  font-family: "Marcellus", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 6rem;
  letter-spacing: 0em;
  text-align: center;
  color: #D7B15C;
  margin-bottom: 0.59rem;
}
.process .bottom {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .process {
    padding: 4.8rem 0rem;
  }
  .process .process__container {
    max-width: 37.5rem;
    padding: 0 1.6rem;
  }
  .process h2 {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 2.4rem;
  }
  .process ul {
    flex-direction: column;
    align-items: center;
  }
  .process li + li:after {
    top: -2.3rem;
    left: 0rem;
    width: 100%;
    height: 0.1rem;
  }
}
.form-section {
  background-color: #FFFFFF;
  padding: 12.8rem 0rem 0rem 0rem;
  height: 46.1rem;
}
.form-section .form-section__container {
  height: 33.3rem;
  position: relative;
}
.form-section .form__wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  padding: 4.8rem 6.4rem;
  justify-content: space-between;
  align-items: center;
  background-color: #F4F4F4;
}
.form-section .content {
  max-width: 41.9rem;
}
.form-section h3 {
  font-family: "Marcellus", sans-serif;
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 6rem;
  letter-spacing: 0em;
  text-align: left;
  color: #2B2B2B;
  margin-bottom: 2.4rem;
}
.form-section h3 span {
  color: #D7B15C;
}
.form-section .content p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: left;
  color: #828282;
}
.form-section .form-container {
  width: 63.7rem;
}
.form-section form > p {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4.53rem;
  row-gap: 4.284rem;
  justify-content: end;
  margin-bottom: 0;
}
.form-section form > p span.wpcf7-not-valid-tip {
  font-size: 1.4rem;
  width: 100%;
}
.form-section form div.wpcf7-response-output {
  margin: 2rem 0rem 1rem;
  color: #090B1F;
  border: none;
  font-size: 1.6rem;
  padding: 0;
  text-align: end;
}
.form-section form br {
  display: none;
}
.form-section form input, .form-section form textarea {
  width: 100%;
  padding: 1.632rem 2.015rem;
  height: 5.916rem;
  background-color: #DEDEDE;
  border: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  color: #2B2B2B;
}
.form-section form input:-webkit-autofill,
.form-section form input:-webkit-autofill:hover,
.form-section form input:-webkit-autofill:focus,
.form-section form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #DEDEDE inset !important;
  -webkit-text-fill-color: #2B2B2B !important;
}
.form-section form input:focus, .form-section form textarea:focus {
  outline: none;
}
.form-section form input::placeholder, .form-section form textarea::placeholder {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  color: #2B2B2B;
  text-transform: uppercase;
}
.form-section form textarea {
  resize: none;
  height: 12.34rem;
}
.form-section form .btn-wrap {
  margin-top: 6.1rem;
  display: flex;
  justify-content: end;
}
.form-section form .btn-wrap > p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.form-section form .btn-wrap > p > span {
  display: none;
}
.form-section form .btn-wrap > p img {
  width: 2.01rem;
  height: 1.632rem;
  margin-left: 1rem;
}
.form-section form span {
  width: 100%;
}
.form-section form span:nth-of-type(1), .form-section form span:nth-of-type(2) {
  width: calc(50% - 2.28rem);
}
.form-section form .submit-btn {
  height: auto;
  padding: 0;
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0em;
  color: #2E569E;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-right: 0.5rem;
}
.form-section form .submit-btn:focus {
  outline: none;
}
.form-section .form-container form.invalid .wpcf7-response-output {
  color: #dc3232;
}

@media (max-width: 768px) {
  .form-section {
    padding: 0;
    height: auto;
  }
  .form-section .form-section__container {
    height: auto;
  }
  .form-section .form__wrapper {
    padding: 4.8rem 1.6rem;
    flex-direction: column;
    position: relative;
  }
  .form-section h3 {
    font-size: 2.8rem;
    line-height: 3.6rem;
  }
  .form-section .form-container {
    width: 100%;
  }
  .form-section form > p {
    row-gap: 2rem;
  }
  .form-section form > p input {
    height: 5rem;
  }
  .form-section form > p span:nth-of-type(1), .form-section form > p span:nth-of-type(2) {
    width: 100%;
  }
  .form-section form .btn-wrap {
    margin-top: 2rem;
  }
}
.areas .areas__container {
  max-width: 120rem;
}
.areas .list-wrap {
  padding: 13.6rem 0rem 6rem 0rem;
  background-color: #FFFFFF;
}
.areas .areas__list {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
}
.areas .areas__list li {
  cursor: pointer;
  width: 23.4rem;
  height: 22.1rem;
  background-color: #F4F4F4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.areas .areas__list li > div {
  text-align: center;
  font-family: "Marcellus", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3rem;
  letter-spacing: 0em;
  color: #2B2B2B;
}
.areas .areas__list li img {
  height: 4.5rem;
}
.areas .areas__list li .dark {
  display: block;
}
.areas .areas__list li .light {
  display: none;
}
.areas .areas__list li:nth-child(2) img {
  height: 6rem;
}
.areas .areas__list .item_active {
  position: relative;
  background-color: #070C3E;
}
.areas .areas__list .item_active > div {
  color: #FFFFFF;
}
.areas .areas__list .item_active::after {
  content: "";
  position: absolute;
  background-image: url("../image/icons/Polygon.webp");
  background-size: cover;
  background-position: center;
  width: 3.1rem;
  height: 1.7rem;
  bottom: -1.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.areas .areas__list .item_active .dark {
  display: none;
}
.areas .areas__list .item_active .light {
  display: block;
}
.areas .areas__content {
  padding: 8.6rem 0rem 16.2rem;
  background-color: #F4F4F4;
}
.areas .areas__content ul {
  list-style-type: none;
}
.areas .areas__content li {
  display: none;
}
.areas .areas__content h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 7.4rem;
  letter-spacing: 0em;
  text-align: center;
  color: #2B2B2B;
  margin-bottom: 7.3rem;
}
.areas .areas__content li.active {
  display: block;
}
.areas .content__wrapper {
  display: flex;
  justify-content: space-between;
}
.areas .img__wrap {
  height: 50.1rem;
  width: 50.6rem;
}
.areas .img__wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.areas .content-box {
  width: 60.7rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.areas .content-box p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: left;
  color: #828282;
  margin-bottom: 0;
}
.areas .content-box ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.areas .content-box ul li {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.areas .content-box ul li span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: left;
  color: #2B2B2B;
}
.areas .content-box ul img {
  width: 2.5rem;
  height: 2.5rem;
}

@media (max-width: 768px) {
  .areas .list-wrap {
    padding: 4.8rem 1.6rem 2.4rem;
  }
  .areas .areas__list {
    flex-wrap: wrap;
    gap: 1.6rem;
  }
  .areas .areas__list li {
    width: calc(50% - 0.8rem);
    height: 16rem;
    gap: 1.6rem;
  }
  .areas .areas__list li > div {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .areas .areas__list li img {
    height: 3.2rem;
  }
  .areas .areas__list .item_active::after {
    width: 2.1rem;
    height: 1.15rem;
    bottom: -1rem;
  }
  .areas .areas__content {
    padding: 2.4rem 1.6rem 4.8rem;
  }
  .areas .areas__content h2 {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 3.2rem;
  }
  .areas .areas__content .content__wrapper {
    flex-direction: column;
    gap: 1.6rem;
  }
  .areas .areas__content .content__wrapper .img__wrap {
    height: 34.3rem;
    width: 34.3rem;
  }
  .areas .areas__content .content-box {
    width: 100%;
    gap: 1.6rem;
  }
  .areas .areas__content .content-box p {
    line-height: 2.2rem;
  }
  .areas .areas__content .content-box ul {
    gap: 1rem;
  }
  .areas .areas__content .content-box ul li {
    gap: 1.6rem;
  }
  .areas .areas__content .content-box ul li img {
    width: 2rem;
    height: 2rem;
  }
  .areas .areas__content .content-box ul li span {
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
.services-section {
  padding: 12.8rem 0rem;
  background-color: #FFFFFF;
}
.services-section .services-section__container {
  max-width: 120rem;
}
.services-section .services__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12.8rem;
}
.services-section .services__list li {
  display: flex;
  justify-content: space-between;
}
.services-section .services__list li:nth-child(even) {
  flex-direction: row-reverse;
}
.services-section .img__wrap {
  width: 50.7rem;
  height: 50.7rem;
}
.services-section .img__wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.services-section .content-wrapper {
  width: 60.6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.services-section .content-wrapper p {
  margin-bottom: 0;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 3.3rem;
  letter-spacing: 0em;
  text-align: left;
  color: #828282;
  position: relative;
}
.services-section .content-wrapper p:nth-of-type(1):after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 4.8rem;
  width: 42.5rem;
  height: 0.1rem;
  background-color: #BDBDBD;
}
.services-section .img-box {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background-color: #D7B15C;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-section .img-box img {
  width: 4.6rem;
  height: 2.7rem;
}
.services-section .content-title {
  font-family: "Marcellus", sans-serif;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 4.5rem;
  letter-spacing: 0em;
  text-align: left;
  color: #2B2B2B;
}
.services-section .content-sub-title {
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  letter-spacing: 0em;
  text-align: left;
  color: #2B2B2B;
}

@media (max-width: 768px) {
  .services-section {
    padding: 4.8rem 0rem;
  }
  .services-section .services-section__container {
    max-width: 37.5rem;
    padding: 0rem 1.6rem;
  }
  .services-section .services__list {
    gap: 3.2rem;
  }
  .services-section .services__list li {
    flex-direction: column;
  }
  .services-section .content-wrapper {
    margin-top: 1.6rem;
    width: auto;
    gap: 1rem;
  }
  .services-section .content-wrapper p {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .services-section .content-wrapper p:nth-of-type(1):after {
    display: none;
  }
  .services-section .img__wrap {
    width: 34.3rem;
    height: 34.3rem;
  }
  .services-section .img-box {
    width: 4rem;
    height: 4rem;
  }
  .services-section .img-box img {
    width: 3rem;
    height: 1.76rem;
  }
  .services-section .content-title {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
  .services-section .content-sub-title {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .services-section .services__list li:nth-child(even) {
    flex-direction: column;
  }
}
.contact-section {
  padding: 12.8rem 0rem;
}
.contact-section .container {
  max-width: 120rem;
}
.contact-section .contact-section__wrapper {
  display: flex;
  justify-content: space-between;
}
.contact-section .img-wrap {
  width: 59.3rem;
  height: 49.5rem;
  background-color: #2E569E;
  position: relative;
  padding: 2.4rem;
  display: flex;
  align-items: end;
}
.contact-section .img-wrap > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.contact-section .img-wrap a {
  position: relative;
  z-index: 10;
}
.contact-section .contacts-wrap {
  width: 47.8rem;
}
.contact-section .contacts-wrap .subtitle {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 400;
  line-height: 3.9rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #D7B15C;
  margin-bottom: 0.4rem;
}
.contact-section .contacts-wrap h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 7.4rem;
  letter-spacing: 0em;
  text-align: left;
  color: #D7B15C;
  margin-bottom: 4.8rem;
}
.contact-section .contacts-wrap h2 span {
  color: #2B2B2B;
}
.contact-section .contacts {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.contact-section .contacts a {
  text-decoration: none;
  height: 9.4rem;
  background-color: #F4F4F4;
  position: relative;
  padding-left: 7.3rem;
  padding-right: 3.5rem;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 3.3rem;
  letter-spacing: 0em;
  text-align: left;
  color: #2B2B2B;
  transition: color 0.3s ease;
}
.contact-section .contacts a:hover {
  color: #D7B15C;
}
.contact-section .contacts a:hover span {
  background-color: #090B1F;
}
.contact-section .contacts span {
  width: 7rem;
  height: 7rem;
  transition: background-color 0.3s ease;
  background-color: #828282;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: -2.8rem;
  top: 50%;
  transform: translateY(-50%);
}
.contact-section .contacts .phone img, .contact-section .contacts .address img {
  height: 4rem;
}
.contact-section .contacts .email img {
  height: 2.9rem;
}
.contact-section .main-button__text {
  font-weight: 700;
  color: #090B1F;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 4.8rem 0rem;
  }
  .contact-section .container {
    max-width: 37.5rem;
    padding: 0rem 1.6rem;
  }
  .contact-section .contact-section__wrapper {
    flex-direction: column;
    gap: 2.4rem;
  }
  .contact-section .img-wrap {
    width: 34.3rem;
    height: 28.6rem;
  }
  .contact-section .contacts-wrap {
    width: 100%;
  }
  .contact-section .contacts-wrap h2 {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 2.4rem;
  }
  .contact-section .contacts-wrap .subtitle {
    font-size: 2.4rem;
    line-height: 3rem;
  }
  .contact-section .contacts {
    gap: 1.4rem;
  }
  .contact-section .contacts a {
    font-size: 1.6rem;
    line-height: 2rem;
    height: 6.4rem;
  }
  .contact-section .contacts span {
    height: 4rem;
    width: 4rem;
    left: 1.2rem;
  }
  .contact-section .contacts .phone img, .contact-section .contacts .address img {
    height: 2rem;
  }
  .contact-section .contacts .email img {
    height: 1.6rem;
  }
}
.details {
  padding: 13.1rem 0rem;
  background-color: #F4F4F4;
}
.details h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 7.4rem;
  letter-spacing: 0em;
  text-align: center;
  color: #070C3E;
  margin-bottom: -5px;
}
.details .subtitle {
  font-family: "Marcellus", sans-serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 3.4rem;
  letter-spacing: 0em;
  text-align: center;
  color: #070C3E;
  margin-bottom: 3.6rem;
}
.details .wrapper {
  display: flex;
  justify-content: space-between;
}
.details .description {
  max-width: 76.8rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.details .main-descr {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 3.3rem;
  letter-spacing: 0em;
  text-align: left;
  color: #2B2B2B;
}
.details .text {
  display: flex;
  gap: 2.8rem;
}
.details .text p {
  max-width: calc(50% - 1.4rem);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: left;
  color: #2B2B2B;
  margin-bottom: 0;
}
.details .main-content {
  margin-top: 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.details .img-wrap {
  width: 39.65rem;
  height: 49.5rem;
  margin-bottom: 3.6rem;
}
.details .img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
.details .signature {
  margin-bottom: 0.9rem;
  font-family: "Creattion Demo";
  font-size: 7.2rem;
  font-weight: 400;
  line-height: 8.5rem;
  letter-spacing: 0em;
  text-align: center;
  color: #D7B15C;
}
.details .name {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2.3rem;
  letter-spacing: 0.1em;
  text-align: left;
  color: #D7B15C;
}
.details .back_btn {
  text-decoration: none;
  display: flex;
  gap: 1.6rem;
  align-items: center;
  margin-bottom: 5rem;
}
.details .back_btn img {
  transform: rotate(180deg);
  height: 1.8rem;
}
.details .back_btn .text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 2.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #070C3E;
}

.details-profile {
  padding-top: 18.2rem;
}

@media (max-width: 768px) {
  .details {
    padding: 4.8rem 0rem;
  }
  .details .container {
    padding: 0rem 1.6rem;
  }
  .details h2 {
    font-size: 3.2rem;
    line-height: 4rem;
  }
  .details .subtitle {
    font-size: 2rem;
    line-height: 3rem;
    margin-bottom: 2.4rem;
  }
  .details .wrapper {
    flex-direction: column;
  }
  .details .main-descr {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .details .description {
    gap: 1.6rem;
  }
  .details .text {
    flex-direction: column;
  }
  .details .text p {
    max-width: 100%;
    line-height: 2.2rem;
  }
  .details .img-wrap {
    width: 34.3rem;
    height: 42.7rem;
    margin-bottom: 2.4rem;
  }
  .details .main-content {
    margin-top: 2.4rem;
  }
  .details .signature {
    font-size: 4.8rem;
    line-height: 5.6rem;
    margin-bottom: 0rem;
  }
  .details .name {
    font-size: 1.6rem;
    line-height: 2.2rem;
  }
  .details-profile {
    padding-top: 8.8rem;
  }
}
.experts {
  padding: 12.8rem 0rem 10.2rem;
}
.experts .container {
  max-width: 120rem;
}
.experts h2 {
  font-family: "Marcellus", sans-serif;
  font-size: 5.6rem;
  font-weight: 400;
  line-height: 6.9rem;
  letter-spacing: 0em;
  text-align: center;
  color: #2B2B2B;
  margin-bottom: 7.2rem;
}
.experts h2 span {
  color: #D7B15C;
}
.experts ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 7.2rem;
}
.experts li {
  position: relative;
  width: 35.3rem;
  height: 40.3rem;
  overflow: hidden;
}
.experts li > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.experts .description {
  cursor: pointer;
  padding: 3.2rem 2.8rem 5.8rem;
  position: absolute;
  bottom: -9.2rem;
  left: 0;
  width: 100%;
  height: 19.1rem;
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
  background-color: #F4F4F4;
  transition: all ease 0.5s;
}
.experts .description:hover {
  background-color: #090B1F;
  bottom: -0.1rem;
  padding-top: 5.3rem;
  gap: 2rem;
}
.experts .description:hover .name {
  color: #FFFFFF;
}
.experts .name {
  font-family: "Marcellus", sans-serif;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 3rem;
  letter-spacing: 0em;
  text-align: center;
  color: #2B2B2B;
}
.experts .socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  position: relative;
}
.experts .socials a {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 0.1rem solid #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.experts .socials a img {
  height: 1.25rem;
}
.experts .socials::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  transform: translateY(-50%);
  background-color: #BDBDBD;
  width: 7.5rem;
  height: 0.1rem;
}
.experts .socials::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 50%;
  transform: translateY(-50%);
  background-color: #BDBDBD;
  width: 7.5rem;
  height: 0.1rem;
}

@media (max-width: 768px) {
  .experts {
    padding: 4.8rem 0rem;
  }
  .experts .container {
    padding: 0rem 1.6rem;
  }
  .experts h2 {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 2.4rem;
  }
  .experts ul {
    row-gap: 2.4rem;
  }
  .experts li {
    width: 34.3rem;
    height: 39.14rem;
  }
}
.testimonial-section {
  padding: 5.5rem 0rem 12rem;
}
.testimonial-section .container {
  max-width: 104rem;
}
.testimonial-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11rem;
}
.testimonial-section ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
}
.testimonial-section ul li img {
  height: 2.8rem;
  width: 4.1rem;
}
.testimonial-section ul li p {
  padding-top: 4rem;
  font-size: 2rem;
  font-weight: 400;
  line-height: 2.9rem;
  letter-spacing: 0em;
  text-align: center;
  margin-bottom: 0rem;
}
.testimonial-section ul li div {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.9rem;
  letter-spacing: 0em;
  text-align: center;
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 5rem 0rem;
  }
  .testimonial-section .container {
    max-width: 37.5rem;
    padding: 0 1.6rem;
  }
  .testimonial-section ul {
    gap: 5rem;
  }
  .testimonial-section ul li {
    gap: 2rem;
  }
  .testimonial-section ul li p {
    font-size: 1.6rem;
    line-height: 2.2rem;
    padding-top: 0rem;
  }
  .testimonial-section ul li div {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}
footer {
  padding: 9.6rem 0rem;
  background-color: #070C3E;
}
footer .footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.8rem;
}
footer .footer-content {
  max-width: 31.6rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
footer .footer-content img {
  width: 31.6rem;
}
footer .footer-content p {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
}
footer .footer-content .contact {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
footer .footer-content .contact span, footer .footer-content .contact a {
  font-family: "Inter", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
}
footer .footer-content .contact a {
  text-decoration: none;
}
footer .footer-nav-wrap {
  width: 75rem;
}
footer .footer-nav-wrap nav {
  display: flex;
  justify-content: end;
  margin-bottom: 4.8rem;
}
footer .footer-nav-wrap .menu__list {
  display: flex;
  gap: 3.6rem;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .footer-nav-wrap a {
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.6rem;
  letter-spacing: 0em;
  text-transform: uppercase;
  color: #D7B15C;
}
footer .form-wrap {
  padding-top: 6.4rem;
  border-top: 1px solid #BDBDBD;
}
footer .form-wrap h3 {
  font-family: "Marcellus", sans-serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 4rem;
  letter-spacing: 0em;
  margin-bottom: 3.2rem;
  color: #FFFFFF;
}
footer .form-wrap h3 span {
  color: #D7B15C;
}
footer .form-wrap form > p {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4.8rem;
  row-gap: 3.2rem;
  margin-bottom: 0;
}
footer .form-wrap form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
}
footer .form-wrap form div.wpcf7-response-output {
  margin: 2rem 0rem 1rem;
  color: white;
  border: none;
  font-size: 1.6rem;
  padding: 0;
}
footer .form-wrap form br {
  display: none;
}
footer .form-wrap form input, footer .form-wrap form textarea {
  width: 100%;
  height: 5.8rem;
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  color: #F4F4F4;
  border-bottom: 0.1rem solid rgba(187, 187, 187, 0.36);
}
footer .form-wrap form input:-webkit-autofill,
footer .form-wrap form input:-webkit-autofill:hover,
footer .form-wrap form input:-webkit-autofill:focus,
footer .form-wrap form input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px #070C3E inset !important;
  -webkit-text-fill-color: #FFFFFF !important;
}
footer .form-wrap form textarea {
  resize: none;
  height: 12rem;
  padding: 1.6rem 0rem;
}
footer .form-wrap form .btn-wrap {
  margin-top: 3.2rem;
  width: fit-content;
}
footer .form-wrap form .btn-wrap > p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
footer .form-wrap form .btn-wrap > p > span {
  display: none;
}
footer .form-wrap form .btn-wrap > p img {
  width: 2.01rem;
  height: 1.632rem;
  margin-left: 1rem;
}
footer .form-wrap form .submit-btn {
  height: auto;
  position: relative;
  background-color: transparent;
  border: none;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2.4rem;
  letter-spacing: 0em;
  color: #D7B15C;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  gap: 1rem;
  align-items: center;
}
footer .form-wrap form .submit-btn:focus {
  outline: none;
}
footer .form-wrap form input:focus, footer .form-wrap form textarea:focus {
  outline: none;
}
footer .form-wrap form input::placeholder, footer .form-wrap form textarea::placeholder {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  color: #F4F4F4;
  text-transform: uppercase;
}
footer .form-wrap form span {
  width: 100%;
}
footer .form-wrap form span:nth-of-type(1), footer .form-wrap form span:nth-of-type(2) {
  width: calc(50% - 2.4rem);
}
footer .form-wrap form.invalid .wpcf7-response-output {
  color: #dc3232;
}
footer .link-icon {
  background-color: #F4F4F4;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin-bottom: 2.4rem;
}
footer .footer-bottom {
  padding: 2.4rem 0rem 4.1rem 0rem;
  border-top: 1px solid #BDBDBD;
}
footer .footer-bottom p {
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 2.1rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
}
footer .footer-bottom-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4.8rem;
}
footer .footer-bottom-nav span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
}
footer .footer-bottom-nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 3.6rem;
}
footer .footer-bottom-nav a {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
  text-decoration: none;
}

.footer-min {
  padding: 27.5rem 0rem 9.6rem;
}
.footer-min .footer-content {
  min-width: 50%;
}
.footer-min .social-wrap {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 3.6rem;
}
.footer-min .social-wrap span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.6rem;
  letter-spacing: 0em;
  text-align: left;
  color: #FFFFFF;
}
.footer-min .social-wrap .link-icon {
  margin-bottom: 0;
}
.footer-min .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 4.8rem 0rem 0rem 0rem;
}
.footer-min .footer-bottom p {
  max-width: 82.9rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .footer-min {
    padding: 4.8rem 0rem;
  }
  .footer-min .footer-bottom {
    padding-top: 2.4rem;
  }
  footer {
    padding: 4.8rem 0rem;
  }
  footer .container {
    padding: 0rem 1.6rem;
  }
  footer .footer-top {
    flex-direction: column;
  }
  footer .footer-content {
    align-items: center;
    max-width: 100%;
    gap: 2.4rem;
  }
  footer .footer-content img {
    width: 24rem;
  }
  footer .footer-content .contact {
    gap: 1rem;
  }
  footer .footer-content .contact span, footer .footer-content .contact a {
    font-size: 1.4rem;
  }
  footer .footer-content .contact span br, footer .footer-content .contact a br {
    display: none;
  }
  footer .footer-nav-wrap {
    width: auto;
    margin-top: 2.4rem;
  }
  footer .footer-nav-wrap .menu__list {
    flex-direction: column;
    gap: 1.6rem;
  }
  footer .footer-nav-wrap nav {
    justify-content: start;
    margin-bottom: 2.4rem;
  }
  footer .footer-nav-wrap a {
    font-size: 1.6rem;
  }
  footer .footer-nav-wrap .social-wrap {
    flex-direction: column-reverse;
    gap: 1.6rem;
  }
  footer .footer-top {
    margin-bottom: 2.4rem;
  }
  footer .footer-bottom {
    flex-direction: column-reverse;
    padding-bottom: 0rem;
  }
  footer .footer-bottom p {
    font-size: 1.2rem;
    margin-bottom: 0rem;
  }
  footer .footer-bottom-nav {
    margin-bottom: 2.4rem;
    flex-direction: column-reverse;
  }
  footer .footer-bottom-nav span {
    margin-top: 2.4rem;
  }
  footer .footer-bottom-nav ul {
    flex-direction: column;
    gap: 1.6rem;
    align-items: flex-start;
  }
  footer .footer-content p {
    font-size: 1.4rem;
    line-height: 2rem;
  }
  footer .form-wrap {
    padding-top: 2.4rem;
  }
  footer .form-wrap h3 {
    font-size: 2.8rem;
    line-height: 3.6rem;
    margin-bottom: 2.4rem;
  }
  footer .form-wrap form > p {
    row-gap: 2rem;
  }
  footer .form-wrap form > p input {
    height: 5rem;
  }
  footer .form-wrap form > p span:nth-of-type(1), footer .form-wrap form > p span:nth-of-type(2) {
    width: 100%;
  }
  footer .form-wrap form .btn-wrap {
    margin-top: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
