@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 20px;
  width: 100vw;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
@media (min-width: 321px) and (max-width: 767px) {
  html {
    font-size: 6.25vw;
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  html {
    font-size: 1.5625vw;
  }
}

body {
  position: relative;
  padding: 0;
  overflow-x: clip;
  background-color: #fff;
}

input {
  outline: none;
  box-shadow: none;
}
input:focus, input:hover {
  outline: none;
}

body {
  font-weight: 400;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}

img {
  vertical-align: middle;
}

a {
  text-decoration: none;
}

b {
  font-weight: 700;
}

button {
  outline: none;
  box-shadow: none;
  border: none;
}

fieldset {
  border: transparent;
}

.section__header {
  position: relative;
}
.section__title {
  line-height: normal;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .section__title {
    font-size: 1.2rem;
  }
}
.section__desc {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .section__desc {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .section__desc {
    font-size: 0.7rem;
  }
}

.page__title {
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page__title {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page__title {
    font-size: 1.2rem;
  }
}
.page__desc {
  margin: 0 auto;
  line-height: normal;
}
@media (max-width: 767px) {
  .page__desc {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .page__desc {
    font-size: 0.7rem;
  }
}

.wrap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .wrap {
    padding: 0 1.6rem;
  }
}
@media (min-width: 1025px) {
  .wrap {
    padding: 0 2rem;
  }
}

html.with-fancybox {
  overflow: hidden;
}

.no-scroll {
  overflow: hidden;
}

.overlay {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  content: "";
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.overlay--show {
  visibility: visible;
  opacity: 1;
}

body:has(.page-start) header,
body:has(.page-start) footer,
body:has(.page-start) .cta,
body:has(.page-start) .topnav {
  display: none;
}

.slick-disabled {
  opacity: 0.2;
  cursor: default;
}

.btn {
  display: inline-flex;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  transition: 0.3s all;
  font-family: inherit;
}
.btn--primary {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.bottomnav ul {
  display: flex;
  flex-direction: column;
  list-style-type: none;
}
@media (max-width: 767px) {
  .bottomnav ul {
    gap: 0.5rem 0;
  }
}
@media (min-width: 768px) {
  .bottomnav ul {
    gap: 0.8rem 0;
  }
}
.bottomnav li {
  display: inline-flex;
}
.bottomnav a {
  color: #fff;
  transition: 0.3s color;
  line-height: normal;
}
@media (max-width: 767px) {
  .bottomnav a {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .bottomnav a {
    font-size: 0.6rem;
  }
}
.bottomnav a:hover, .bottomnav a:focus {
  color: #757d92;
}

.copyright {
  max-width: 50.1rem;
  margin: 0 auto;
  color: #757d92;
  line-height: normal;
}
@media (max-width: 767px) {
  .copyright {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .copyright {
    text-align: center;
    font-size: 0.6rem;
  }
}

.form {
  display: contents;
}
.form__title {
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 767px) {
  .form__title {
    margin: 0 auto;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .form__title {
    font-size: 1.2rem;
  }
}
.form__container {
  display: grid;
}
@media (max-width: 767px) {
  .form__container {
    gap: 0.3rem 0;
  }
}
@media (min-width: 768px) {
  .form__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}
.form input[type=text],
.form input[type=tel],
.form input[type=email] {
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid transparent;
  outline: none;
  box-shadow: none;
  color: #000;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .form input[type=text],
  .form input[type=tel],
  .form input[type=email] {
    padding: 0.6rem 0.65rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .form input[type=text],
  .form input[type=tel],
  .form input[type=email] {
    padding: 0.75rem 1.3rem;
    font-size: 0.7rem;
  }
}
.form input[type=text]::placeholder,
.form input[type=tel]::placeholder,
.form input[type=email]::placeholder {
  color: #909090;
}
@media (max-width: 767px) {
  .form input[type=email] {
    margin-top: 0.3rem;
  }
}
@media (min-width: 768px) {
  .form input[type=email] {
    margin-top: 0.8rem;
  }
}
.form select {
  position: relative;
  width: 100%;
  background-color: #f7f7f7;
  outline: none;
  box-shadow: none;
  border: transparent;
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
  appearance: none;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .form select {
    padding: 0.6rem 0.65rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .form select {
    padding: 0.75rem 1.3rem;
    font-size: 0.7rem;
  }
}
.form input[type=checkbox] {
  display: none;
}
.form textarea {
  width: 100%;
  background-color: #f7f7f7;
  border: 1px solid transparent;
  outline: none;
  box-shadow: none;
  color: #000;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  resize: none;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .form textarea {
    margin-top: 0.3rem;
    max-height: 6.65rem;
    padding: 0.6rem 0.65rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .form textarea {
    margin-top: 0.8rem;
    max-height: 7.2rem;
    padding: 0.75rem 1.3rem;
    font-size: 0.7rem;
  }
}
.form textarea::placeholder {
  color: #909090;
}
.form__text {
  text-transform: uppercase;
  color: #000;
  font-weight: 400;
}
@media (max-width: 767px) {
  .form__text {
    padding: 0.85rem 0;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .form__text {
    padding: 0.75rem 1.3rem;
    font-size: 0.7rem;
  }
}
.form__text a {
  color: #000;
}
.form .btn {
  width: 100%;
  line-height: normal;
  background: #2e3548;
  color: #fff;
  text-transform: uppercase;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .form .btn {
    margin-top: 0.6rem;
    padding: 0.5rem 1.5rem;
    justify-content: center;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .form .btn {
    margin-top: 1rem;
    padding: 0.75rem 1.3rem;
    font-size: 0.7rem;
  }
}
.form__item {
  position: relative;
}
.form__item:has(select):before {
  position: absolute;
  z-index: 1;
  top: calc(50% - 0.25rem);
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  content: "";
  background: url("../img/select.svg") no-repeat center transparent;
  pointer-events: none;
}
.form__item:has(input[type=checkbox]) label {
  display: flex;
  align-items: center;
  color: #000;
  font-weight: 400;
  cursor: pointer;
}
@media (max-width: 767px) {
  .form__item:has(input[type=checkbox]) label {
    gap: 0 0.3rem;
    padding: 0.15rem 0;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .form__item:has(input[type=checkbox]) label {
    gap: 0 0.5rem;
    padding: 0.4rem 1.3rem;
    font-size: 0.7rem;
  }
}
.form__item:has(input[type=checkbox]) label::before {
  flex-shrink: 0;
  border-radius: 5px;
  background: #f7f7f7;
  content: "";
}
@media (max-width: 767px) {
  .form__item:has(input[type=checkbox]) label::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}
@media (min-width: 768px) {
  .form__item:has(input[type=checkbox]) label::before {
    width: 1rem;
    height: 1rem;
  }
}
.form__item a {
  color: #000;
  text-decoration: underline;
}
.form__item:has(input[type=checkbox]:checked) label::before {
  background: #2e3548;
}
.form__message {
  display: flex;
  flex-direction: column;
  border: 1px solid #2e3548;
  line-height: normal;
  text-transform: uppercase;
  display: none;
}
@media (max-width: 767px) {
  .form__message {
    padding: 1.3rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .form__message {
    padding: 1.45rem 1.6rem;
    font-size: 0.7rem;
  }
}
.form__message.show {
  display: block;
}
.form__message-title {
  font-weight: 600;
}
@media (max-width: 767px) {
  .form__message-desc {
    margin-top: 0.4rem;
  }
}
@media (min-width: 768px) {
  .form__message-desc {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .form__message-desc p:not(:last-child) {
    margin-bottom: 0.4rem;
  }
}
@media (min-width: 768px) {
  .form__message-desc p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.form .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) textarea,
.form .wpcf7-form-control-wrap:has(.wpcf7-not-valid-tip) input {
  border-color: #ff4646;
}
.form .wpcf7-not-valid-tip {
  color: #ff4646;
}
@media (max-width: 767px) {
  .form .wpcf7-not-valid-tip {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .form .wpcf7-not-valid-tip {
    position: absolute;
    left: 0;
    bottom: -0.7rem;
    font-size: 0.6rem;
  }
}

.wpcf7 .screen-reader-response,
.wpcf7-response-output {
  display: none;
}

.wpcf7-form.sent .form {
  display: none;
}

.logo {
  display: inline-flex;
}
@media (max-width: 767px) {
  .logo {
    width: 3.75rem;
  }
}
@media (min-width: 768px) {
  .logo {
    width: 5.4rem;
  }
}
.logo img {
  width: 100%;
  height: auto;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .pagination {
    margin-top: 1.5rem;
    gap: 0 0.8rem;
  }
}
@media (min-width: 768px) {
  .pagination {
    margin-top: 3.25rem;
    gap: 0 1.25rem;
  }
}

.page-numbers {
  color: rgba(0, 0, 0, 0.4);
  font-weight: 300;
  line-height: normal;
  transition: 0.3s color;
}
@media (max-width: 767px) {
  .page-numbers {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page-numbers {
    font-size: 0.9rem;
  }
}
.page-numbers:hover, .page-numbers:focus {
  color: #000;
}
.page-numbers.current {
  color: #000;
}
.page-numbers.prev, .page-numbers.next {
  display: inline-flex;
  background: url("../img/arrow.svg") no-repeat bottom left/100% transparent;
  opacity: 0.4;
  transition: 0.3s opacity;
}
@media (max-width: 767px) {
  .page-numbers.prev, .page-numbers.next {
    width: 0.3rem;
    height: 0.35rem;
  }
}
@media (min-width: 768px) {
  .page-numbers.prev, .page-numbers.next {
    width: 0.45rem;
    height: 0.6rem;
  }
}
.page-numbers.prev:hover, .page-numbers.prev:focus, .page-numbers.next:hover, .page-numbers.next:focus {
  opacity: 1;
}
.page-numbers.prev {
  transform: rotate(180deg);
}

.popup {
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 0;
  max-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: 0.01s max-width 0.6s, 0.01s max-height 0.6s, opacity 0.3s;
}
.popup--open {
  max-width: 100rem;
  max-height: 100rem;
  opacity: 1;
  transition: max-width 0.01s, max-height 0.01s, opacity 0.3s;
}
@media (max-width: 767px) {
  .popup--img .popup__box {
    height: 20rem;
  }
}
@media (min-width: 768px) {
  .popup--img .popup__box {
    width: 34.5rem;
    height: 23rem;
  }
}
.popup--img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.popup--img .popup__close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  z-index: 1;
  display: block;
  background: transparent;
}
.popup--img .popup__close svg {
  width: 2rem;
  height: 2rem;
}
.popup__box {
  position: relative;
  width: 100%;
  background-color: #fff;
}
@media (max-width: 767px) {
  .popup__box {
    height: 100vh;
    padding: 1rem 1.4rem;
    overflow: auto;
  }
}
@media (min-width: 768px) {
  .popup__box {
    max-width: 42.5rem;
    padding: 3.5rem 5rem 3.6rem;
  }
}
.popup__header {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .popup__header {
    margin-bottom: 0.9rem;
  }
}
@media (min-width: 768px) {
  .popup__header {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .popup__close {
    position: absolute;
    right: 0;
    width: 1.15rem;
    height: 1.15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    outline: none;
    background-color: transparent;
    cursor: pointer;
    opacity: 1;
    transition: 0.3s opacity;
  }
  .popup__close svg {
    width: 2rem;
    height: 2rem;
  }
}
@media (min-width: 768px) {
  .popup__close {
    display: none;
  }
}

@media (max-width: 767px) {
  .topnav {
    position: absolute;
    z-index: 9;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 10rem;
    min-height: 90vh;
    padding: 0.9rem 1.2rem 1.7rem;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    transform: translateX(100%);
    transition: 0.3s transform;
  }
  .topnav--open {
    transform: translateX(0);
  }
}
@media (min-width: 768px) {
  .topnav {
    position: sticky;
    z-index: 3;
    top: 0;
    padding: 0.7rem 0;
    background-color: #f0f0f0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
  }
}
.topnav__box {
  display: flex;
  list-style-type: none;
}
@media (max-width: 767px) {
  .topnav__box {
    margin: 1rem 0;
    flex-direction: column;
    gap: 0.5rem 0;
  }
}
@media (min-width: 768px) {
  .topnav__box {
    width: max-content;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 4.4rem;
  }
}
@media (max-width: 767px) {
  .topnav__close {
    display: block;
    transform: translateX(0.5rem);
    margin-left: auto;
    background-color: transparent;
  }
  .topnav__close svg {
    width: 0.95rem;
    height: 0.95rem;
  }
}
@media (min-width: 768px) {
  .topnav__close {
    display: none;
  }
}
@media (max-width: 767px) {
  .topnav__open {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 0.9rem;
    background-color: transparent;
    color: #000;
  }
  .topnav__open::before, .topnav__open::after {
    width: 100%;
    height: 1px;
    display: inline-flex;
    background-color: #000;
    content: "";
  }
  .topnav__open--primary::before, .topnav__open--primary::after {
    background-color: #fff;
  }
}
@media (min-width: 768px) {
  .topnav__open {
    display: none;
  }
}
.topnav li {
  display: contents;
}
.topnav a {
  color: #000;
  transition: 0.5s color;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .topnav a {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .topnav a {
    font-size: 0.7rem;
  }
}
.topnav a:hover, .topnav a:focus {
  color: #2e3548;
}
@media (max-width: 767px) {
  .topnav--primary__open::before, .topnav--primary__open::after {
    background-color: #fff;
  }
}
@media (min-width: 768px) {
  .topnav--primary {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 18px 0 20px 0 rgba(0, 0, 0, 0);
  }
  .topnav--primary a {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .topnav__social {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0 0.4rem;
  }
}
@media (min-width: 768px) {
  .topnav__social {
    display: none;
  }
}
@media (max-width: 767px) {
  .topnav__contact-open {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    justify-content: center;
    color: #000;
  }
}
@media (min-width: 768px) {
  .topnav__contact-open {
    display: none;
  }
}

@media (min-width: 768px) {
  .social {
    width: 5.9rem;
    display: flex;
    gap: 0 0.3rem;
  }
}
.social__link {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .social__link--linkedin {
    display: none;
  }
}
@media (min-width: 768px) {
  .social__link {
    width: 1.7rem;
    height: 1.7rem;
    background-color: #f0f0f0;
  }
}
.social__link svg {
  fill: #000;
}
@media (min-width: 768px) {
  .social__link--primary {
    background-color: rgba(255, 255, 255, 0.1);
  }
}
.social__link--primary svg {
  fill: #fff;
  opacity: 0.5;
  transition: 0.3s all;
}
.social__link--primary:hover svg, .social__link--primary:focus svg {
  opacity: 1;
}

.about {
  background-color: #2e3548;
  color: #fff;
}
@media (max-width: 767px) {
  .about {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .about {
    padding: 6.55rem 0;
  }
}
@media (max-width: 767px) {
  .about .section__title br {
    display: contents;
  }
}
@media (max-width: 767px) {
  .about .wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
  }
}
@media (min-width: 768px) {
  .about .wrap {
    display: grid;
    grid-template-columns: 17rem 1fr;
    gap: 0 2.2rem;
  }
}
@media (max-width: 767px) {
  .about .section__desc {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .about .section__desc {
    margin-bottom: 2rem;
  }
}
.about .section__desc p:not(:last-child) {
  margin-bottom: 0.7rem;
}
.about .btn {
  background-color: #fff;
  color: #000;
  border: 1px solid #fff;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .about .btn {
    padding: 0.5rem 1.65rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .about .btn {
    padding: 1rem 1.95rem;
    font-size: 0.7rem;
  }
}
.about .btn:hover, .about .btn:focus {
  background-color: #2e3548;
  color: #fff;
}

@media (max-width: 767px) {
  .amenities {
    padding: 0 0 2.5rem;
  }
}
@media (min-width: 768px) {
  .amenities {
    padding: 0 0 10rem;
  }
}
@media (max-width: 767px) {
  .amenities__box {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
  }
}
@media (min-width: 768px) {
  .amenities__box {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
  }
}
.amenities__item {
  color: #fff;
  background-color: #2e3548;
  line-height: normal;
}
@media (max-width: 767px) {
  .amenities__item {
    padding: 0.75rem 1rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .amenities__item {
    padding: 2rem 1.5rem;
    font-size: 0.7rem;
  }
}
.amenities__item strong {
  font-weight: 600;
}

@media (max-width: 767px) {
  .cta {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .cta {
    padding: 6.3rem 0 6.5rem;
  }
}
.cta .section__title {
  text-align: center;
}
.cta .btn {
  display: block;
  line-height: normal;
  color: #000;
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .cta .btn {
    margin: 0.7rem auto 0;
    padding: 0.5rem 1.8rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .cta .btn {
    margin: 1.9rem auto 0;
    padding: 1.05rem 4.1rem;
    font-size: 0.7rem;
  }
}
.cta .btn:hover, .cta .btn:focus {
  color: #fff;
  background-color: #2e3548;
}
.cta--dark {
  background-color: #d9d9d9;
}
.cta--dark .btn {
  background-color: #fff;
}
.cta--light .btn {
  background-color: #d9d9d9;
}

@media (max-width: 767px) {
  .contact {
    margin-top: 1.75rem;
  }
}
@media (min-width: 768px) {
  .contact {
    margin-top: 6.5rem;
  }
}
.contact .wrap {
  display: flex;
}
@media (max-width: 767px) {
  .contact .wrap {
    flex-direction: column;
    gap: 1.6rem 0;
  }
}
@media (min-width: 768px) {
  .contact .wrap {
    justify-content: space-between;
  }
}
.contact .gm-style.place-card-large {
  display: none;
}
@media (max-width: 767px) {
  .contact .section__title {
    margin-bottom: 0.65rem;
  }
}
@media (min-width: 768px) {
  .contact .section__title {
    margin-bottom: 1.75rem;
  }
}
.contact .section__subtitle {
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .contact .section__subtitle {
    margin-bottom: 0.3rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .contact .section__subtitle {
    margin-bottom: 1.35rem;
    font-size: 0.9rem;
  }
}
.contact__box {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .contact__box {
    gap: 1rem 0;
  }
}
@media (min-width: 768px) {
  .contact__box {
    gap: 2rem 0;
  }
}
.contact__item {
  max-width: 16rem;
  line-height: normal;
}
@media (max-width: 767px) {
  .contact__item {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .contact__item {
    font-size: 0.7rem;
  }
}
.contact__item a {
  color: #000;
  transition: color 0.3s;
}
.contact__item a:hover, .contact__item a:focus {
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .contact__map {
    width: 100%;
    height: 7.85rem;
  }
}
@media (min-width: 768px) {
  .contact__map {
    width: 40.4rem;
    height: 17.45rem;
  }
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 767px) {
  .featured {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .featured {
    padding: 7rem 0 5.4rem;
  }
}
@media (max-width: 767px) {
  .featured .wrap {
    display: flex;
    flex-direction: column;
    gap: 1.2rem 0;
  }
}
@media (min-width: 768px) {
  .featured .wrap {
    display: grid;
    grid-template-columns: 17rem 1fr;
    gap: 0 2.2rem;
  }
}
@media (max-width: 767px) {
  .featured .section__title br {
    display: contents;
  }
}
@media (min-width: 768px) {
  .featured__box {
    position: relative;
    width: 42.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0 0.4rem;
  }
}
@media (min-width: 768px) {
  .featured__slider {
    overflow: hidden;
  }
}
.featured__slider .slick-track {
  display: flex;
}
@media (max-width: 767px) {
  .featured__slider .slick-track {
    gap: 0 0.7rem;
  }
}
@media (min-width: 768px) {
  .featured__slider .slick-track {
    gap: 0 1.7rem;
  }
}
.featured__nav-link {
  cursor: pointer;
  background-color: transparent;
}
@media (max-width: 767px) {
  .featured__nav-link {
    position: absolute;
    top: 0;
    right: 1.6rem;
    width: 0.35rem;
  }
  .featured__nav-link:first-child {
    right: 2.2rem;
  }
}
.featured__nav-link.slick-disabled {
  opacity: 0;
}
.featured__nav-link svg {
  height: auto;
}
@media (max-width: 767px) {
  .featured__nav-link svg {
    width: 0.3rem;
  }
}
@media (min-width: 768px) {
  .featured__nav-link svg {
    width: 0.5rem;
  }
}
.featured__img {
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  transition: 0.4s box-shadow;
}
@media (max-width: 767px) {
  .featured__img {
    height: 17.8rem;
  }
}
@media (min-width: 768px) {
  .featured__img {
    width: 12.25rem;
    height: 18.9rem;
  }
}
.featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s transform;
}
.featured__img:hover {
  box-shadow: 0 8px 9px rgba(0, 0, 0, 0.2);
}
.featured__img:hover img {
  transform: scale(1.1);
}
.featured__title {
  display: block;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  transition: 0.3s color;
}
@media (max-width: 767px) {
  .featured__title {
    margin-top: 1rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .featured__title {
    margin-top: 2rem;
    font-size: 0.9rem;
  }
}
.featured__title svg {
  transform: rotate(0);
  transition: 0.5s transform;
}
@media (max-width: 767px) {
  .featured__title svg {
    width: 0.4rem;
  }
}
@media (min-width: 768px) {
  .featured__title svg {
    width: 0.7rem;
  }
}
.featured__title:hover, .featured__title:focus {
  color: #757d92;
}
.featured__title:hover svg, .featured__title:focus svg {
  transform: rotate(45deg);
}

.fc-text {
  background-color: #d9d9d9;
}
@media (max-width: 767px) {
  .fc-text {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .fc-text {
    padding: 5rem 0;
  }
}
@media (max-width: 767px) {
  .fc-text .wrap {
    display: flex;
    flex-direction: column;
    gap: 0.9rem 0;
  }
}
@media (min-width: 768px) {
  .fc-text .wrap {
    display: grid;
    grid-template-columns: 19.25rem 1fr;
  }
}
.fc-text__desc {
  line-height: normal;
}
@media (max-width: 767px) {
  .fc-text__desc {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .fc-text__desc {
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .fc-text-image {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .fc-text-image {
    padding: 5rem 0;
  }
}
@media (max-width: 767px) {
  .fc-text-image .wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .fc-text-image .wrap {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3.3rem;
  }
}
.fc-text-image__content {
  line-height: normal;
}
@media (max-width: 767px) {
  .fc-text-image__content {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .fc-text-image__content {
    font-size: 0.7rem;
  }
}
.fc-text-image__content b {
  font-weight: 600;
}
@media (max-width: 767px) {
  .fc-text-image__content p:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .fc-text-image__content p:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.fc-text-image__img {
  overflow: hidden;
}
@media (max-width: 767px) {
  .fc-text-image__img {
    max-height: 8.25rem;
  }
}
@media (min-width: 768px) {
  .fc-text-image__img {
    max-height: 24.1rem;
  }
}
.fc-text-image__img--left {
  order: -1;
}
.fc-text-image__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (any-hover: hover) {
  .fc-text-image__img img {
    transition: 0.3s transform;
    transform: scale(1);
  }
}
@media (any-hover: hover) {
  .fc-text-image__img:hover img {
    transform: scale(1.1);
  }
}
.fc-text-image--primary {
  background-color: #2e3548;
  color: #fff;
}
.fc-image-wide {
  overflow: hidden;
}
@media (max-width: 767px) {
  .fc-image-wide {
    height: 8.25rem;
  }
}
@media (min-width: 768px) {
  .fc-image-wide {
    height: 20.3rem;
  }
}
.fc-image-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .fc-two-images {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .fc-two-images {
    padding: 6.5rem 0;
  }
}
.fc-two-images .wrap {
  display: grid;
}
@media (max-width: 767px) {
  .fc-two-images .wrap {
    gap: 1rem 0;
  }
}
@media (min-width: 768px) {
  .fc-two-images .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3.2rem;
  }
}
.fc-two-images__item {
  width: 100%;
  overflow: hidden;
}
@media (max-width: 767px) {
  .fc-two-images__item {
    height: 8.25rem;
  }
}
@media (min-width: 768px) {
  .fc-two-images__item {
    height: 17.7rem;
  }
}
.fc-two-images__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (any-hover: hover) {
  .fc-two-images__item img {
    transition: 0.3s transform;
    transform: scale(1);
  }
}
@media (any-hover: hover) {
  .fc-two-images__item:hover img {
    transform: scale(1.1);
  }
}
.fc-two-images + .fc-text-image {
  padding-top: 0;
}
@media (max-width: 767px) {
  .fc-two-column-text {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  .fc-two-column-text {
    margin-top: 6.5rem;
    display: grid;
    grid-template-columns: calc(50vw - 11rem) 1fr;
  }
}
@media (max-width: 767px) {
  .fc-two-column-text__left {
    padding: 2.5rem 1.6rem;
  }
}
@media (min-width: 768px) {
  .fc-two-column-text__left {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-right: 3.25rem;
    padding-left: calc(50vw - 30rem);
    color: #fff;
    background-color: #2e3548;
  }
}
.fc-two-column-text__right {
  background-color: #d9d9d9;
}
@media (max-width: 767px) {
  .fc-two-column-text__right {
    padding: 2.5rem 1.6rem;
  }
}
@media (min-width: 768px) {
  .fc-two-column-text__right {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-right: calc(50vw - 30rem);
    padding-left: 3.25rem;
  }
}
.fc-two-column-text p {
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .fc-two-column-text p {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .fc-two-column-text p {
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .fc-two-column-text p:not(:last-child) {
    margin-bottom: 0.4rem;
  }
}
@media (min-width: 768px) {
  .fc-two-column-text p:not(:last-child) {
    margin-bottom: 0.7rem;
  }
}

.footer {
  background-color: #2e3548;
  color: #fff;
}
@media (max-width: 767px) {
  .footer {
    padding: 1.75rem 0;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 3.8rem 0 1.2rem;
  }
}
@media (max-width: 767px) {
  .footer__container {
    margin-bottom: 2.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem 1rem;
  }
}
@media (min-width: 768px) {
  .footer__container {
    margin-bottom: 3.7rem;
    display: grid;
    grid-template-columns: 1fr 8.25rem 12.5rem;
    gap: 0 5rem;
  }
}
.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: normal;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__logo {
    width: 100%;
    gap: 0.75rem 0;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .footer__logo {
    gap: 0.9rem 0;
    font-size: 0.6rem;
  }
}
.footer__title {
  color: #fff;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .footer__title {
    margin-bottom: 0.6rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .footer__title {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }
}
.footer__contact {
  color: #fff;
  line-height: normal;
}
@media (max-width: 767px) {
  .footer__contact {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .footer__contact {
    font-size: 0.6rem;
  }
}
@media (max-width: 767px) {
  .footer__contact:last-child {
    margin-top: 0.85rem;
  }
}
@media (max-width: 767px) {
  .footer__contact:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .footer__contact:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.footer__contact a {
  color: #fff;
  transition: 0.3s color;
}
.footer__contact a:hover, .footer__contact a:focus {
  color: #757d92;
}
.footer__btn {
  display: block;
  background-color: transparent;
  line-height: normal;
  color: #fff;
  transition: 0.3s color;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 767px) {
  .footer__btn {
    margin-top: 0.5rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .footer__btn {
    margin-top: 0.8rem;
    font-size: 0.6rem;
  }
}
.footer__btn:hover, .footer__btn:focus {
  color: #757d92;
}
.footer__link {
  display: inline-flex;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer__link:not(:last-child) {
    margin-right: 1rem;
  }
}
@media (min-width: 768px) {
  .footer__link:not(:last-child) {
    margin-right: 2.75rem;
  }
}

.header {
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .header {
    padding: 0.85rem 0 1.15rem;
  }
}
@media (min-width: 768px) {
  .header {
    padding: 1.6rem 0;
  }
}
.header .wrap {
  display: flex;
  align-items: center;
}
.header .logo {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .header__contact-open {
    display: none;
  }
}
@media (min-width: 768px) {
  .header__contact-open {
    padding: 0.475rem 1rem;
    font-size: 0.6rem;
    font-weight: 500;
    line-height: normal;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
  }
  .header__contact-open:hover, .header__contact-open:focus {
    background-color: #2e3548;
  }
  .header__contact-open--secondary {
    background-color: #f0f0f0;
  }
  .header__contact-open--secondary:hover, .header__contact-open--secondary:focus {
    color: #fff;
  }
}

.partners__heading {
  position: relative;
  z-index: 1;
  background-color: #d9d9d9;
  box-shadow: 18px 0 20px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .partners__heading {
    width: 5.75rem;
    padding: 0.45rem 0.85rem 0.45rem 1.6rem;
    transform: translateX(-1.6rem);
  }
}
@media (min-width: 768px) {
  .partners__heading {
    width: 14.7rem;
    padding: 1.7rem 0;
  }
}
.partners__slider {
  position: relative;
  background-color: #d9d9d9;
}
.partners__wrapper {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}
.partners__container {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .partners__container {
    padding-left: 0.9rem;
    gap: 0 0.9rem;
  }
}
@media (min-width: 768px) {
  .partners__container {
    padding-left: 2.6rem;
    gap: 0 2.6rem;
  }
}
.partners__box {
  position: absolute;
  top: 0;
  width: calc(50vw + 16rem);
  height: 100%;
  left: calc(50vw - 16rem);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.partners__box:hover .partners__wrapper {
  animation-play-state: paused;
}
.partners__item {
  display: inline-flex;
  transform: translateY(0);
  transition: transform 0.3s;
}
.partners__item img {
  width: auto;
}
@media (max-width: 767px) {
  .partners__item img {
    max-height: 1rem;
  }
}
@media (min-width: 768px) {
  .partners__item img {
    max-height: 2rem;
  }
}
.partners__item[href]:hover {
  transform: translateY(-5px);
}

.primary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 767px) {
  .primary {
    min-height: calc(100vh + 5rem);
    margin: -9rem 0 0;
  }
}
@media (min-width: 768px) {
  .primary {
    min-height: calc(100vh + 2rem);
    margin: -9rem 0 0;
  }
}
.primary__title {
  margin: 0 auto;
  color: #fff;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 767px) {
  .primary__title {
    max-width: 8.35rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .primary__title {
    max-width: 30rem;
    font-size: 1.7rem;
  }
}
.primary__btn {
  background-color: #fff;
  color: #000;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .primary__btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.5rem;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .primary__btn {
    padding: 1rem 1.7rem;
    font-size: 0.7rem;
  }
}
.primary__btn:hover, .primary__btn:focus {
  background-color: #2e3548;
  color: #fff;
}
.primary__btn-box {
  margin-top: 1.4rem;
  display: flex;
}
@media (max-width: 767px) {
  .primary__btn-box {
    flex-direction: column;
    gap: 0.9rem 0;
  }
}
@media (min-width: 768px) {
  .primary__btn-box {
    align-items: center;
    justify-content: center;
    gap: 0 0.7rem;
  }
}
.primary__desc {
  text-align: center;
  line-height: normal;
  color: #fff;
}
@media (max-width: 767px) {
  .primary__desc {
    margin: 1rem auto 0;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .primary__desc {
    max-width: 32rem;
    margin: 1.75rem auto 0;
    font-size: 0.7rem;
  }
}

.related {
  background-color: #d9d9d9;
}
@media (max-width: 767px) {
  .related {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .related {
    padding: 5rem 0;
  }
}
@media (max-width: 767px) {
  .related .wrap {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .related .wrap {
    display: grid;
    grid-template-columns: 18rem 1fr;
    gap: 0 2.2rem;
  }
}
@media (max-width: 767px) {
  .related__header {
    display: contents;
  }
}
@media (min-width: 768px) {
  .related__header {
    display: flex;
    flex-direction: column;
    gap: 1.9rem;
  }
}
.related .btn {
  max-width: max-content;
  text-transform: uppercase;
  color: #000;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .related .btn {
    margin-top: 1rem;
    order: 1;
    display: flex;
    align-items: center;
    gap: 0 0.2rem;
    font-size: 0.4rem;
    text-decoration: underline;
    background-color: transparent;
  }
  .related .btn:after {
    width: 0.3rem;
    height: 0.3rem;
    background: url("../img/read-more.svg") no-repeat top center/cover;
    content: "";
  }
}
@media (min-width: 768px) {
  .related .btn {
    padding: 1rem 3.1rem;
    background-color: #fff;
    font-size: 0.7rem;
  }
}
.related .btn:hover, .related .btn:focus {
  background-color: #2e3548;
  color: #fff;
}
@media (max-width: 767px) {
  .related__container {
    display: contents;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .related__container {
    width: calc(100vw - 22.2rem);
  }
}
@media (min-width: 768px) {
  .related__container {
    width: 57.8rem;
  }
}
@media (min-width: 768px) {
  .related .slick-list {
    overflow: hidden;
  }
}
.related .slick-track {
  display: flex;
}
@media (max-width: 767px) {
  .related .slick-track {
    gap: 0 0.8rem;
  }
}
@media (min-width: 768px) {
  .related .slick-track {
    gap: 0 3.25rem;
  }
}
@media (max-width: 767px) {
  .related__box {
    width: 100%;
    margin-top: 0.8rem;
  }
}
.related__nav {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .related__nav {
    margin-left: auto;
    gap: 0 0.2rem;
    align-self: flex-end;
  }
}
@media (min-width: 768px) {
  .related__nav {
    position: absolute;
    top: -3rem;
    gap: 0.4rem;
  }
}
@media (min-width: 768px) and (max-width: 1299px) {
  .related__nav {
    right: 2rem;
  }
}
@media (min-width: 1300px) {
  .related__nav {
    right: -0.5rem;
  }
}
.related__nav-link {
  cursor: pointer;
  background-color: transparent;
}
.related__nav-link.slick-hidden {
  opacity: 0;
}
.related__nav-link svg {
  height: auto;
}
@media (max-width: 767px) {
  .related__nav-link svg {
    width: 0.3rem;
  }
}
@media (min-width: 768px) {
  .related__nav-link svg {
    width: 0.5rem;
  }
}
.related__item {
  position: relative;
}
.related__img {
  width: 100%;
  display: block;
  overflow: hidden;
}
@media (max-width: 767px) {
  .related__img {
    height: 8.8rem;
    width: 8.8rem;
  }
}
@media (min-width: 768px) {
  .related__img {
    height: 16.1rem;
    width: 16.1rem;
  }
}
.related__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s transform;
}
.related__img:hover img {
  transform: scale(1.1);
}
.related__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
}
@media (max-width: 767px) {
  .related__title {
    max-width: 8.8rem;
    padding: 0 0.35rem 0.7rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .related__title {
    max-width: 16.1rem;
    padding: 0 0.9rem 0.9rem;
    font-size: 0.7rem;
  }
}

@media (max-width: 767px) {
  .services {
    position: relative;
    padding: 2.5rem 0 1.8rem;
  }
}
@media (min-width: 768px) {
  .services {
    padding: 6.75rem 0 6.2rem;
  }
}
@media (max-width: 767px) {
  .services__container {
    display: flex;
    flex-direction: column;
    gap: 0.85rem 0;
  }
}
@media (min-width: 768px) {
  .services__container {
    display: grid;
    grid-template-columns: 17rem 1fr;
    gap: 0 2.2rem;
  }
}
@media (min-width: 768px) {
  .services .section__desc {
    max-width: 35.1rem;
  }
}
@media (max-width: 767px) {
  .services__box {
    margin-top: 1.2rem;
  }
  .services__box .wrap {
    position: inherit;
  }
}
@media (min-width: 768px) {
  .services__box {
    position: relative;
    margin-top: 3.35rem;
  }
}
.services__slider .slick-track {
  display: flex;
  gap: 0 1.7rem;
}
.services__nav {
  position: absolute;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .services__nav {
    top: 2.5rem;
    right: 1.6rem;
    gap: 0.25rem;
  }
}
@media (min-width: 768px) {
  .services__nav {
    top: -4rem;
    right: 2rem;
    gap: 0.4rem;
  }
}
.services__nav-link {
  cursor: pointer;
  background-color: transparent;
}
.services__nav-link svg {
  height: auto;
}
@media (max-width: 767px) {
  .services__nav-link svg {
    width: 0.3rem;
  }
}
@media (min-width: 768px) {
  .services__nav-link svg {
    width: 0.5rem;
  }
}
.services__img {
  width: 100%;
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .services__img {
    height: 14.25rem;
  }
}
@media (min-width: 768px) {
  .services__img {
    height: 20.25rem;
  }
}
.services__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services__title {
  display: block;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  text-align: center;
  color: #000;
  transition: 0.3s color;
}
@media (max-width: 767px) {
  .services__title {
    margin-top: 0.9rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .services__title {
    margin-top: 1.35rem;
    font-size: 0.9rem;
  }
}

.error-page {
  min-height: 13.7rem;
}
.error-page__box {
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 767px) {
  .error-page__box {
    max-width: 80%;
    padding: 2rem 0;
  }
}
@media (min-width: 768px) {
  .error-page__box {
    max-width: 26.5rem;
    padding: 7rem 0 4rem;
  }
}
.error-page__num {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #2e3548;
}
@media (max-width: 767px) {
  .error-page__desc {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .error-page__desc {
    font-size: 0.7rem;
  }
}
.error-page .btn {
  width: max-content;
  margin: 1rem auto 0;
  display: block;
  background-color: #2e3548;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 500;
  border: 1px solid #2e3548;
  transition: 0.3s all;
}
@media (max-width: 767px) {
  .error-page .btn {
    padding: 0.475rem 3rem;
  }
}
@media (min-width: 768px) {
  .error-page .btn {
    padding: 0.475rem 1rem;
  }
}
.error-page .btn:hover, .error-page .btn:focus {
  background-color: #fff;
  color: #2e3548;
}

.about-us-primary {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: url("../img/about-bg.jpg") no-repeat top center/cover;
}
@media (max-width: 767px) {
  .about-us-primary {
    min-height: 22.35rem;
    padding-bottom: 2.7rem;
  }
}
@media (min-width: 768px) {
  .about-us-primary {
    min-height: 20.3rem;
    padding-bottom: 3.35rem;
  }
}
.about-us-primary__box {
  max-width: 20.5rem;
  color: #fff;
}
@media (max-width: 767px) {
  .about-us-primary .section__desc {
    margin-top: 0.75rem;
  }
}
@media (min-width: 768px) {
  .about-us-primary .section__desc {
    margin-top: 1.05rem;
  }
}
@media (max-width: 767px) {
  .about-us-philosophy {
    margin-top: 2.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-philosophy {
    margin-top: 3.4rem;
  }
}
.about-us-philosophy__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: url("../img/about-bg-bottom.jpg") no-repeat top center/cover;
}
@media (max-width: 767px) {
  .about-us-philosophy__container {
    min-height: 8.35rem;
    padding: 2.75rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-philosophy__container {
    min-height: 17.8rem;
    padding: 2.55rem;
  }
}
.about-us-philosophy__box {
  color: #fff;
}
@media (min-width: 768px) {
  .about-us-philosophy__box {
    max-width: 25rem;
  }
}
.about-us-philosophy__box h2 {
  line-height: normal;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about-us-philosophy__box h2 {
    margin-bottom: 1rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-philosophy__box h2 {
    margin-bottom: 1.45rem;
    font-size: 1.2rem;
  }
}
.about-us-philosophy__box p {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .about-us-philosophy__box p {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .about-us-philosophy__box p {
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .about-us-details {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .about-us-details {
    padding: 6.5rem 0;
  }
}
.about-us-details .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-us-details .wrap {
    flex-direction: column;
    gap: 1rem 0;
  }
}
@media (min-width: 768px) {
  .about-us-details__text {
    max-width: 28rem;
  }
}
.about-us-details__text h2 {
  line-height: normal;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about-us-details__text h2 {
    margin-bottom: 1rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-details__text h2 {
    margin-bottom: 1.3rem;
    font-size: 1.2rem;
  }
}
.about-us-details__text p {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .about-us-details__text p {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .about-us-details__text p {
    font-size: 0.7rem;
  }
}
.about-us-details__text p:not(:last-child) {
  margin-bottom: 0.7rem;
}
.about-us-details__img {
  order: -1;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .about-us-details__img {
    width: 100%;
    height: 8rem;
  }
}
@media (min-width: 768px) {
  .about-us-details__img {
    width: 28.2rem;
    height: 17.8rem;
  }
}
.about-us-details__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-us-vision {
  background-color: #d9d9d9;
}
@media (max-width: 767px) {
  .about-us-vision {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .about-us-vision {
    padding: 6.5rem 0;
  }
}
.about-us-vision .wrap {
  display: flex;
}
@media (max-width: 767px) {
  .about-us-vision .wrap {
    flex-direction: column;
    gap: 1rem 0;
  }
}
@media (min-width: 768px) {
  .about-us-vision .wrap {
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .about-us-vision__text {
    max-width: 28rem;
  }
}
.about-us-vision__text h2 {
  line-height: normal;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about-us-vision__text h2 {
    margin-bottom: 1rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-vision__text h2 {
    margin-bottom: 1.3rem;
    font-size: 1.2rem;
  }
}
.about-us-vision__text p {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .about-us-vision__text p {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .about-us-vision__text p {
    font-size: 0.7rem;
  }
}
.about-us-vision__text p:not(:last-child) {
  margin-bottom: 0.7rem;
}
@media (max-width: 767px) {
  .about-us-vision__text ul,
  .about-us-vision__text ol {
    padding-left: 0.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-vision__text ul,
  .about-us-vision__text ol {
    padding-left: 1rem;
  }
}
.about-us-vision__text li {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .about-us-vision__text li {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .about-us-vision__text li {
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .about-us-vision__text li:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-vision__text li:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.about-us-vision__img {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .about-us-vision__img {
    width: 100%;
    height: 8rem;
    order: -1;
  }
}
@media (min-width: 768px) {
  .about-us-vision__img {
    width: 28.2rem;
    height: 17.8rem;
  }
}
.about-us-vision__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .about-us-two-blocks {
    margin-top: 2.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-two-blocks {
    margin-top: 6.5rem;
  }
}
@media (max-width: 767px) {
  .about-us-two-blocks .wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .about-us-two-blocks .wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3.4rem;
  }
}
@media (max-width: 767px) {
  .about-us-two-blocks__item {
    padding: 2.75rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-two-blocks__item {
    padding: 2.4rem 2.6rem;
  }
}
.about-us-two-blocks__item:first-child {
  background-color: #2e3548;
  color: #fff;
}
.about-us-two-blocks__item:last-child {
  background-color: #d9d9d9;
}
.about-us-two-blocks__item h2 {
  line-height: normal;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .about-us-two-blocks__item h2 {
    margin-bottom: 1rem;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .about-us-two-blocks__item h2 {
    margin-bottom: 1.3rem;
    font-size: 1.2rem;
  }
}
.about-us-two-blocks__item p {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .about-us-two-blocks__item p {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .about-us-two-blocks__item p {
    font-size: 0.7rem;
  }
}
.about-us-two-blocks__item p:not(:last-child) {
  margin-bottom: 0.7rem;
}

.case__primary {
  position: relative;
  background-color: #2e3548;
  color: #fff;
}
@media (max-width: 767px) {
  .case__primary {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  .case__primary {
    height: 25rem;
  }
}
.case__primary .wrap {
  display: flex;
}
.case__primary .section__title {
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .case__primary .section__title {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .case__primary .section__title {
    font-size: 1.2rem;
  }
}
@media (max-width: 767px) {
  .case__primary-box {
    padding: 1rem 0;
  }
}
@media (min-width: 768px) {
  .case__primary-box {
    width: 19rem;
    padding: 5rem 0;
  }
}
.case__primary-desc {
  line-height: normal;
}
@media (max-width: 767px) {
  .case__primary-desc {
    margin-top: 0.3rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .case__primary-desc {
    margin-top: 0.9rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .case__primary-img {
    height: 16rem;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .case__primary-img {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50vw + 10.75rem);
    height: 25rem;
    display: block;
    overflow: hidden;
  }
}
.case__primary-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (any-hover: hover) {
  .case__primary-img img {
    transition: 0.3s transform;
    transform: scale(1);
  }
}
@media (any-hover: hover) {
  .case__primary-img:hover img {
    transform: scale(1.1);
  }
}
@media (max-width: 767px) {
  .case__gallery {
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  .case__gallery {
    padding-bottom: 6.5rem;
  }
}
@media (max-width: 767px) {
  .case__gallery-box {
    margin-top: 1rem;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .case__gallery-box {
    margin-top: 3.25rem;
  }
}
.case__gallery-box .slick-track {
  display: flex;
}
@media (min-width: 768px) {
  .case__gallery-box .slick-track {
    gap: 0 3.25rem;
  }
}
.case__gallery-header {
  display: grid;
  grid-template-columns: 1fr 2rem;
}
.case__gallery-nav {
  align-self: center;
  justify-self: flex-end;
}
.case__gallery-img {
  display: block;
  overflow: hidden;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.case__gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (any-hover: hover) {
  .case__gallery-img img {
    transition: 0.3s transform;
    transform: scale(1);
  }
}
@media (any-hover: hover) {
  .case__gallery-img:hover img {
    transform: scale(1.1);
  }
}
@media (max-width: 767px) {
  .case__facts {
    padding: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .case__facts {
    padding: 6.5rem 0;
  }
}
@media (max-width: 767px) {
  .case__facts .wrap {
    display: flex;
    flex-direction: column-reverse;
    gap: 2.5rem 0;
  }
}
@media (min-width: 768px) {
  .case__facts .wrap {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3.3rem;
  }
}
@media (max-width: 767px) {
  .case__facts .section__title {
    margin-bottom: 0.9rem;
  }
}
@media (min-width: 768px) {
  .case__facts .section__title {
    margin-bottom: 3rem;
  }
}
.case__facts-item {
  display: grid;
  line-height: normal;
}
@media (max-width: 767px) {
  .case__facts-item {
    grid-template-columns: 3.5rem 1fr;
    gap: 0 0.6rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .case__facts-item {
    grid-template-columns: 6.5rem 1fr;
    gap: 0 1.8rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .case__facts-item:not(:last-child) {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .case__facts-item:not(:last-child) {
    margin-bottom: 1rem;
  }
}
.case__facts-label {
  text-align: right;
  font-weight: 600;
}
.case__facts-desc {
  font-weight: 400;
}
.case__facts-img {
  overflow: hidden;
}
@media (max-width: 767px) {
  .case__facts-img {
    height: 7.5rem;
  }
}
@media (min-width: 768px) {
  .case__facts-img {
    height: 22.4rem;
  }
}
.case__facts-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (any-hover: hover) {
  .case__facts-img img {
    transition: 0.3s transform;
    transform: scale(1);
  }
}
@media (any-hover: hover) {
  .case__facts-img:hover img {
    transform: scale(1.1);
  }
}

.home .primary {
  position: relative;
  background: url("../img/primary.jpg") no-repeat top center/cover;
}
.home .primary__video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}
@media (max-width: 767px) {
  .home .primary .wrap {
    margin-bottom: 3.15rem;
  }
}
@media (min-width: 768px) {
  .home .primary .wrap {
    margin-bottom: 6.4rem;
  }
}

@media (max-width: 767px) {
  .news {
    padding: 0 0 2rem;
  }
}
@media (min-width: 768px) {
  .news {
    padding: 4.5rem 0 3.25rem;
  }
}
@media (max-width: 767px) {
  .news .page__title {
    margin-bottom: 0.7rem;
  }
}
@media (min-width: 768px) {
  .news .page__title {
    margin-bottom: 2rem;
  }
}
.news__btn-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .news__btn-box {
    margin-bottom: 1.25rem;
    gap: 0.25rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .news__btn-box {
    margin-bottom: 2.5rem;
    gap: 0 1rem;
    font-size: 0.7rem;
  }
}
.news__btn-box li {
  display: contents;
}
.news__btn-box li:not(:first-child):before {
  width: 1px;
  display: inline-flex;
  content: "";
  background-color: #000;
}
@media (max-width: 767px) {
  .news__btn-box li:not(:first-child):before {
    height: 0.65rem;
  }
}
@media (min-width: 768px) {
  .news__btn-box li:not(:first-child):before {
    height: 1.1rem;
  }
}
.news__btn-box a {
  position: relative;
  color: #000;
}
.news__btn-box a:after {
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 100%;
  max-width: 10rem;
  height: 1px;
  background-color: #000;
  content: "";
  transition: 0.5s all;
}
.news__btn-box a:hover:after, .news__btn-box a:focus:after {
  max-width: 0.5rem;
}
@media (max-width: 767px) {
  .news__box {
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
  }
}
@media (min-width: 768px) {
  .news__box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 3.25rem;
  }
}
.news__img {
  width: 100%;
  display: block;
  overflow: hidden;
}
@media (max-width: 767px) {
  .news__img {
    height: 7rem;
  }
}
@media (min-width: 768px) {
  .news__img {
    height: 15.4rem;
  }
}
.news__text {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .news__text {
    margin-top: 0.3rem;
    gap: 0.2rem;
  }
}
@media (min-width: 768px) {
  .news__text {
    margin-top: 1.1rem;
    gap: 0.7rem;
  }
}
.news__data {
  font-weight: 300;
  line-height: normal;
}
@media (max-width: 767px) {
  .news__data {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .news__data {
    font-size: 0.7rem;
  }
}
.news__title {
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .news__title {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .news__title {
    font-size: 0.9rem;
  }
}
.news__item {
  position: relative;
}
.news__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s transform;
}
.news__item:hover img, .news__item:focus img {
  transform: scale(1.1);
}
@media (min-width: 768px) {
  .news__item:first-of-type {
    grid-column: 1/3;
  }
}
@media (max-width: 767px) {
  .news__item:first-of-type .news__img {
    height: 11.3rem;
  }
}
@media (min-width: 768px) {
  .news__item:first-of-type .news__img {
    height: 17.85rem;
  }
}
.news__item:first-of-type .news__text {
  position: absolute;
  top: 0;
  height: 100%;
  margin-top: 0;
  flex-direction: column-reverse;
  color: #fff;
  pointer-events: none;
}
@media (max-width: 767px) {
  .news__item:first-of-type .news__text {
    padding: 0 1.15rem 0.7rem;
  }
}
@media (min-width: 768px) {
  .news__item:first-of-type .news__text {
    max-width: 25.4rem;
    padding: 0 0 3.25rem 3.25rem;
  }
}

@media (max-width: 767px) {
  .page {
    padding: 0 0 2rem;
  }
}
@media (min-width: 768px) {
  .page {
    padding: 4rem 0 4.6rem;
  }
}
.page .page__title {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page .page__title {
    margin-bottom: 1rem;
  }
}
@media (min-width: 768px) {
  .page .page__title {
    margin-bottom: 3.5rem;
  }
}
.page__content {
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .page__content {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .page__content {
    max-width: 38.25rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .page__content p + p {
    margin-top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page__content p + p {
    margin-top: 1rem;
  }
}
@media (max-width: 767px) {
  .page__content ul,
  .page__content ol {
    margin: 0.5rem 0;
    padding-left: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page__content ul,
  .page__content ol {
    margin: 1rem 0;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .page__content li::marker {
    font-size: 0.3rem;
  }
}
@media (min-width: 768px) {
  .page__content li::marker {
    font-size: 0.5rem;
  }
}
.page__content h2 {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page__content h2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .page__content h2 {
    margin-top: 3.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
}
.page__content h3 {
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page__content h3 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .page__content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
}
.page-news__content {
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .page-news__content {
    padding-bottom: 2.5rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .page-news__content {
    padding: 5rem 0 6rem;
    max-width: 37.5rem;
    font-size: 0.7rem;
  }
}
.page-news__data {
  font-weight: 300;
  line-height: normal;
}
@media (max-width: 767px) {
  .page-news__data {
    margin-top: 0.3rem;
    margin-bottom: 1rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .page-news__data {
    margin-top: 1.3rem;
    margin-bottom: 2.5rem;
    font-size: 0.7rem;
  }
}
.page-news p:has(img) {
  display: contents;
}
@media (max-width: 767px) {
  .page-news p + p {
    margin-top: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page-news p + p {
    margin-top: 0.7rem;
  }
}
.page-news h2,
.page-news h3,
.page-news h4 {
  font-weight: 500;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page-news h2,
  .page-news h3,
  .page-news h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page-news h2,
  .page-news h3,
  .page-news h4 {
    margin-top: 1.7rem;
    margin-bottom: 0.7rem;
  }
}
@media (max-width: 767px) {
  .page-news h2 {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page-news h2 {
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .page-news h3 {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page-news h3 {
    font-size: 0.8rem;
  }
}
@media (max-width: 767px) {
  .page-news h4 {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page-news h4 {
    font-size: 0.7rem;
  }
}
.page-news img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .page-news img:not(.attachment-post-thumbnail) {
    margin-top: 0.9rem;
  }
}
@media (min-width: 768px) {
  .page-news img:not(.attachment-post-thumbnail) {
    margin-top: 2.3rem;
  }
}
@media (max-width: 767px) {
  .page-news__img {
    height: 16rem;
    width: 100vw;
    margin: 0 -1.6rem 2.5rem;
  }
}
@media (min-width: 768px) {
  .page-news__img {
    height: 25rem;
    width: 100%;
    margin-bottom: 3.5rem;
  }
}
.page-news__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .page-partners {
    padding: 5rem 0 0;
  }
}
.page-partners .page__desc {
  margin-top: 0.7rem;
}
.page-partners__box {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .page-partners__box {
    margin-top: 0.9rem;
    gap: 1rem 0;
  }
}
@media (min-width: 768px) {
  .page-partners__box {
    margin-top: 3.6rem;
    gap: 2.5rem;
  }
}
.page-partners__item {
  display: grid;
  background-color: #fbf8f6;
  box-shadow: 0 0.2rem 0.4rem 0 rgba(0, 0, 0, 0.13);
}
@media (max-width: 767px) {
  .page-partners__item {
    padding: 2rem 1.4rem;
    gap: 1.3rem 0;
  }
}
@media (min-width: 768px) {
  .page-partners__item {
    padding: 3rem 5rem 3rem 3rem;
    grid-template-columns: 11rem 1fr;
    gap: 0 4.5rem;
  }
}
.page-partners__img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-partners__title {
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page-partners__title {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page-partners__title {
    font-size: 0.9rem;
  }
}
.page-partners__desc {
  line-height: normal;
}
@media (max-width: 767px) {
  .page-partners__desc {
    margin-top: 0.8rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .page-partners__desc {
    margin-top: 0.7rem;
    font-size: 0.7rem;
  }
}
.page-partners__link {
  display: flex;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  transition: 0.3s color;
}
@media (max-width: 767px) {
  .page-partners__link {
    margin-top: 0.8rem;
    gap: 0 0.1rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .page-partners__link {
    margin-top: 1.1rem;
    gap: 0 0.45rem;
    font-size: 0.6rem;
  }
}
.page-partners__link span {
  position: relative;
  width: max-content;
  display: block;
}
.page-partners__link span:after {
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  content: "";
  transition: 0.5s background;
}
.page-partners__link svg {
  transform: rotate(0);
  transition: 0.5s transform;
}
@media (max-width: 767px) {
  .page-partners__link svg {
    width: 0.2rem;
  }
}
@media (min-width: 768px) {
  .page-partners__link svg {
    width: 0.5rem;
  }
}
.page-partners__link:hover, .page-partners__link:focus {
  color: #757d92;
}
.page-partners__link:hover svg, .page-partners__link:focus svg {
  transform: rotate(45deg);
}
.page-partners__link:hover span::after, .page-partners__link:focus span::after {
  background-color: #757d92;
}

@media (max-width: 767px) {
  .portfolio {
    padding: 0 0 2.5rem;
  }
}
@media (min-width: 768px) {
  .portfolio {
    padding: 0 0 3.3rem;
  }
}
.portfolio .primary {
  background: url("../img/portfolio-bg.jpg") no-repeat top center/cover;
}
@media (max-width: 767px) {
  .portfolio .primary {
    padding: 0 0 2.8rem;
  }
}
@media (min-width: 768px) {
  .portfolio .primary {
    padding: 0 0 9rem;
  }
}
@media (max-width: 767px) {
  .portfolio .primary__desc {
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .portfolio .primary__desc {
    max-width: 39rem;
    font-size: 0.7rem;
  }
}
@media (max-width: 767px) {
  .portfolio .primary__btn-box {
    margin-top: 1.7rem;
  }
}
@media (min-width: 768px) {
  .portfolio .primary__btn-box {
    margin-top: 3rem;
  }
}
.portfolio .primary__btn-box a {
  display: inline-flex;
  text-align: center;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  outline: none;
  cursor: pointer;
  transition: 0.3s all;
  font-family: inherit;
  background-color: #fff;
  color: #000;
}
@media (max-width: 767px) {
  .portfolio .primary__btn-box a {
    padding: 0.5rem 1.5rem;
    font-size: 0.5rem;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .portfolio .primary__btn-box a {
    padding: 1rem 3.5rem;
    font-size: 0.7rem;
  }
}
.portfolio .primary__btn-box a:hover, .portfolio .primary__btn-box a:focus {
  background-color: #2e3548;
  color: #fff;
}
.portfolio__content {
  width: 100%;
  max-width: 28rem;
}
.portfolio__title {
  font-weight: 400;
}
.portfolio__title a {
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  transition: 0.3s color;
}
@media (max-width: 767px) {
  .portfolio__title a {
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .portfolio__title a {
    font-size: 1.2rem;
  }
}
.portfolio__title a:hover, .portfolio__title a:focus {
  color: #757d92;
}
.portfolio__header {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .portfolio__header {
    margin: 2.5rem auto 0.85rem;
  }
}
@media (min-width: 768px) {
  .portfolio__header {
    margin: 5rem auto 1.7rem;
  }
}
.portfolio__img {
  flex-shrink: 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .portfolio__img {
    width: 100%;
    height: 7.5rem;
  }
}
@media (min-width: 768px) {
  .portfolio__img {
    width: 28.25rem;
    height: 22.35rem;
  }
}
.portfolio__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: 0.4s transform;
}
.portfolio__img:hover img {
  transform: scale(1.1);
}
.portfolio__details {
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .portfolio__details {
    margin-top: 0.5rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .portfolio__details {
    margin-top: 2rem;
    font-size: 0.9rem;
  }
}
.portfolio__details b {
  font-weight: 500;
}
.portfolio__details p {
  margin-bottom: 0;
}
.portfolio__desc {
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 767px) {
  .portfolio__desc {
    margin-top: 0.5rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .portfolio__desc {
    margin-top: 2rem;
    font-size: 0.7rem;
  }
}
.portfolio__link {
  display: flex;
  line-height: normal;
  text-transform: uppercase;
  color: #000;
  transition: 0.3s color;
}
@media (max-width: 767px) {
  .portfolio__link {
    margin-top: 0.5rem;
    gap: 0 0.2rem;
    font-size: 0.4rem;
  }
}
@media (min-width: 768px) {
  .portfolio__link {
    margin-top: 2.5rem;
    gap: 0 0.45rem;
    font-size: 0.6rem;
  }
}
.portfolio__link span {
  position: relative;
  width: max-content;
  display: block;
}
.portfolio__link span:after {
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 100%;
  height: 0.05rem;
  background-color: #000;
  content: "";
  transition: 0.5s background;
}
.portfolio__link svg {
  transform: rotate(0);
  transition: 0.5s transform;
}
@media (max-width: 767px) {
  .portfolio__link svg {
    width: 0.3rem;
  }
}
@media (min-width: 768px) {
  .portfolio__link svg {
    width: 0.5rem;
  }
}
.portfolio__link:hover, .portfolio__link:focus {
  color: #757d92;
}
.portfolio__link:hover svg, .portfolio__link:focus svg {
  transform: rotate(45deg);
}
.portfolio__link:hover span::after, .portfolio__link:focus span::after {
  background-color: #757d92;
}
@media (max-width: 767px) {
  .portfolio__item:not(:last-child) {
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 768px) {
  .portfolio__item {
    padding: 3.3rem 0;
  }
}
.portfolio__item .wrap {
  display: flex;
}
@media (max-width: 767px) {
  .portfolio__item .wrap {
    flex-direction: column-reverse;
    gap: 1rem 0;
  }
}
@media (min-width: 768px) {
  .portfolio__item .wrap {
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .portfolio__item:nth-of-type(odd) .portfolio__img {
    order: -1;
  }
}

.page-start {
  display: flex;
  background: url("../img/start-bg.png") no-repeat top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .page-start {
    flex-direction: column;
  }
}
.page-start__navbar {
  position: absolute;
  z-index: 2;
  width: 100vw;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
  line-height: normal;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767px) {
  .page-start__navbar {
    top: 1.65rem;
    padding: 0.35rem 0;
    font-size: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page-start__navbar {
    top: 3.5rem;
    padding: 1rem 0;
    font-size: 0.9rem;
  }
}
@media (max-width: 767px) {
  .page-start__navbar-box {
    max-width: 10.1rem;
    margin: 0 auto;
  }
}
.page-start .btn {
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .page-start .btn {
    width: 100%;
    padding: 0.55rem 1rem;
    justify-content: center;
    font-size: 0.5rem;
    color: #000;
    background-color: #d9d9d9;
  }
}
@media (min-width: 768px) {
  .page-start .btn {
    padding: 1.05rem 1.2rem;
    font-size: 0.7rem;
    transition: 1.2s all;
  }
}
.page-start__box {
  position: relative;
  z-index: 2;
}
.page-start__item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}
@media (max-width: 767px) {
  .page-start__item {
    padding: 0 2.3rem;
    height: 50vh;
  }
}
@media (min-width: 768px) {
  .page-start__item {
    height: 100vh;
    flex-grow: 2;
    transition: all 1.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
  }
}
.page-start__item:first-of-type {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}
@media (max-width: 767px) {
  .page-start__item:first-of-type {
    height: calc(50vh + 3.65rem - 1.825rem);
  }
}
@media (min-width: 768px) {
  .page-start__item:first-of-type {
    padding: 0 5.5rem 0 1rem;
  }
}
@media (max-width: 767px) {
  .page-start__item:first-of-type .page-start__box {
    margin-top: auto;
    margin-bottom: 2.15rem;
  }
}
@media (min-width: 768px) {
  .page-start__item:first-of-type .page-start__box {
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .page-start__item:first-of-type .btn {
    color: #000;
    background-color: #d9d9d9;
  }
  .page-start__item:first-of-type .btn:hover, .page-start__item:first-of-type .btn:focus {
    color: #d9d9d9;
    background-color: #000;
  }
}
.page-start__item:last-of-type {
  color: #000;
}
@media (max-width: 767px) {
  .page-start__item:last-of-type {
    height: calc(50vh - 1.825rem);
  }
}
@media (min-width: 768px) {
  .page-start__item:last-of-type {
    padding: 0 1rem 0 5.5rem;
  }
}
@media (min-width: 768px) {
  .page-start__item:last-of-type .btn {
    color: #fff;
    background-color: #272727;
  }
  .page-start__item:last-of-type .btn:hover, .page-start__item:last-of-type .btn:focus {
    background: #fff;
    color: #272727;
  }
}
@media (max-width: 767px) {
  .page-start__item:last-of-type img {
    width: 11rem;
    height: auto;
    filter: invert(1);
  }
}
.page-start__item:hover {
  flex-grow: 3;
}
.page-start__box {
  max-width: 21.4rem;
}
.page-start__logo {
  display: flex;
}
@media (max-width: 767px) {
  .page-start__logo {
    margin-bottom: 1.7rem;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .page-start__logo {
    margin-bottom: 1.35rem;
    height: 4.25rem;
    align-items: flex-end;
  }
}
@media (max-width: 767px) {
  .page-start__title {
    display: none;
  }
}
@media (min-width: 768px) {
  .page-start__title {
    margin-bottom: 1.65rem;
    font-size: 1.2rem;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .page-start__desc {
    display: none;
  }
}
@media (min-width: 768px) {
  .page-start__desc {
    margin: 1.65rem 0 1.6rem;
    font-size: 0.8rem;
    line-height: normal;
  }
}/*# sourceMappingURL=main.css.map */