@charset "UTF-8";
* {
  box-sizing: border-box;
}

::after, ::before {
  box-sizing: border-box;
}

@keyframes drawLine1 {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes drawLine2 {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-10%);
    opacity: 0;
  }
}
html {
  margin: 0;
}

body {
  margin: 0;
  color: #fff;
  font-family: "Arsenal";
  font-size: 18px;
  background: #192941;
}

a {
  color: #fff;
  transition: 0.25s;
}
a:hover {
  transition: 0.25s;
  color: #C9961A;
}

h1 {
  font-size: 35px;
  text-transform: uppercase;
}

h2 {
  text-transform: uppercase;
  font-size: 24px;
}

button {
  transition: 0.25s;
  border: 0;
}
button:hover {
  transition: 0.25s;
}

input {
  background: #192941;
  border: 1px solid #33435A;
  border-radius: 3px;
  transition: 0.25s;
  font-family: "Arsenal";
  font-size: 18px;
  color: #fff;
  outline: none !important;
  font-weight: bold;
  height: 50px;
}
input:placeholder-shown {
  border: 1px solid #33435A;
}
input:not(:placeholder-shown) {
  border: 1px solid #fff;
}
input:focus {
  transition: 0.25s;
  border: 1px solid #C9961A;
}
input:focus::-webkit-input-placeholder {
  color: #000;
}
input::placeholder {
  font-family: "Arsenal";
  font-size: 18px !important;
  color: #fff;
  font-weight: normal;
}
input:invalid, input.wpcf7-not-valid {
  border: 1px solid #F30000;
}

textarea {
  border: 1px solid #33435A;
  font-family: "Arsenal";
  height: 50px;
  font-size: 18px;
  outline: none !important;
  overflow: hidden;
  color: #fff;
  font-weight: bold;
}
textarea:focus {
  border: 1px solid #C9961A;
}
textarea::placeholder {
  font-weight: normal;
  font-family: "Arsenal" !important;
  font-weight: bold;
  line-height: 1;
}
textarea:invalid, textarea.wpcf7-not-valid {
  border: 1px solid #F30000;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form .wpcf7-not-valid-tip {
  color: #F30000;
  display: block;
  position: absolute;
  bottom: calc(100% + 2px);
  width: 100%;
  left: 0;
  font-size: 12px;
}

.wpcf7-not-valid {
  margin-top: 20px;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container, *[class*=__container] {
  width: 1240px;
  max-width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.row {
  display: flex;
}

.ai-c {
  align-items: center;
}

.bg-white {
  background: #fff;
  color: #192941;
}
.bg-white a {
  color: #192941;
}

.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.title {
  font-weight: bold;
  font-size: 35px;
  text-transform: uppercase;
  margin: 0;
}

.md-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

.lg-title {
  font-size: 60px;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 107%;
}

.md-text {
  font-size: 24px;
}

.lg-text {
  font-size: 60px;
}

.phone a {
  font-weight: bold;
}
.phone a:hover {
  text-decoration: underline;
}
.phone a::before {
  content: "";
  display: inline-block;
  width: 18px;
  margin-right: 5px;
  height: 18px;
  background: url("../img/phone-icon.svg");
}

.place::before {
  content: "";
  background: url("../img/place-icon.svg");
  width: 12px;
  height: 14px;
  display: inline-block;
}

.md-visible, .sm-visible, .xs-visible {
  display: none;
}

.header {
  padding: 30px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: rgba(0, 0, 0, 0); /* transparent initially */
  transition: background 0.3s ease;
}
.header:not(.home-header) {
  background: #192941;
}
.header.home-header {
  position: fixed;
}
.header a {
  text-decoration: none;
}
.header .row {
  justify-content: space-between;
}
.header .main-menu {
  display: flex;
  gap: 30px;
}
.header .main-menu a:hover {
  font-weight: bold;
}
.header .catalog-link {
  color: #C9961A;
  text-decoration: underline;
  font-weight: bold;
}

.has-popup > a, .menu-item-has-children > a {
  position: relative;
}
.has-popup > a::after, .menu-item-has-children > a::after {
  content: "";
  width: 4px;
  height: 8px;
  background: url("../img/menu-arrow.svg");
  background-size: 100% 100%;
  position: absolute;
  right: -10px;
  top: 8px;
  transition: 0.25s;
}
.has-popup > a.hovered, .menu-item-has-children > a.hovered {
  font-weight: bold;
  color: #C9961A;
}
.has-popup > a:hover::after, .has-popup > a.hovered::after, .menu-item-has-children > a:hover::after, .menu-item-has-children > a.hovered::after {
  transform: rotate(90deg);
  transition: 0.25s;
  background: url("../img/menu-arrow-gold.svg");
  background-size: 100% 100%;
}

.footer {
  background: #192941;
  padding-top: 80px;
  padding-bottom: 100px;
}
.footer .container {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  justify-content: space-between;
}
.footer__menus {
  display: flex;
  justify-content: space-between;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__menu a {
  text-decoration: none;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer__contacts a {
  text-decoration: none;
}
.footer .place::before {
  background-size: 100% 100%;
  width: 20px;
  height: 24px;
}
.footer .call-us-btn {
  clip-path: url(#golden-btn-mask);
}

.call-us-btn, .golden-btn {
  background: linear-gradient(90deg, #FCCB00 0%, #FFFAD2 25%, #F9F0C0 30%, #ECD893 39%, #D7B14C 51%, #C9961A 60%, #E9CD75 81%, #F2DC8E 87%, #FFFAD2 100%) no-repeat, #C9961A;
  background-size: 100% 100%, 100% 100%;
  background-position: left top, left top;
  transition: background-size 2s ease;
  display: inline-block;
  padding: 14px 52px;
  background: linear-gradient(90deg, #FCCB00 0%, #FFFAD2 25%, #F9F0C0 30%, #ECD893 39%, #D7B14C 51%, #C9961A 60%, #E9CD75 81%, #F2DC8E 87%, #FFFAD2 100%) no-repeat, #C9961A;
  background-size: 100% 100%, 100% 100%;
  background-position: left top, left top;
  transition: background-size 2s ease;
  border-radius: 10px;
  text-decoration: none;
  color: #192941;
  font-weight: bold;
  cursor: pointer;
}
.call-us-btn:hover, .golden-btn:hover {
  background-size: 0% 100%, 100% 100%;
  transition: background-size 2s ease;
}
.call-us-btn:hover, .golden-btn:hover {
  background-size: 0% 100%, 100% 100%;
  transition: background-size 2s ease;
}
.call-us-btn:hover, .golden-btn:hover {
  color: #fff;
  background: #C9961A;
}

.call-us {
  padding: 103px 0;
}
.call-us .row {
  gap: 30px;
}
.call-us__desc {
  flex: 1;
  background: #192941;
  color: #fff;
  clip-path: url("#block-bg-mask");
  display: flex;
  gap: 37px;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 100px 60px;
}
.call-us__desc h2 {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}
.call-us__photo {
  flex: 0 0 585px;
  clip-path: url("#block-bg-mask");
}
.call-us__photo img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.socials .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #596476;
  padding-bottom: 100px;
}
.socials.no-bg .socials-inner {
  background: none;
}
.socials.no-bg .container {
  border-bottom: 0;
  padding-bottom: 20px;
}
.socials-inner {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 72px;
  background: url("../img/bg-logo.svg") no-repeat;
  background-size: 100% auto;
  background-position: center;
}
.socials.white {
  background: #fff;
  color: #192941;
}
.socials.white .container {
  border-bottom: 0;
  padding-bottom: 80px;
}
.socials.white .socials-inner {
  background: #fff;
  padding-top: 0;
}
.socials.white .socials__links a {
  background: #192941;
}
.socials.white .socials__links a svg path {
  fill: #fff;
}
.socials.white .socials__links a:hover svg path {
  fill: #C9961A;
}
.socials__text {
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  flex: 0 0 480px;
  line-height: 107%;
}
.socials__links {
  display: flex;
}
.socials__links a {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s, z-index 0.3s, background 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
}
.socials__links a:not(:first-child) {
  margin-left: -18px;
}
.socials__links a svg path {
  transition: 0.3s;
}
.socials__links a:hover {
  z-index: 10;
}
.socials__links a:hover svg path {
  fill: #C9961A;
  transition: 0.3s;
}

.select2 {
  background: transparent !important;
  color: #fff;
}
.select2-container--default .select2-selection {
  background: none;
  border: 1px solid #33435A;
  border-radius: 3px;
}
.select2-container--default .select2-selection--single {
  height: 50px;
}
.select2-container--default .select2-selection--multiple {
  padding: 15px;
  padding-left: 40px;
}
.select2-container--default .select2-selection .select2-selection__rendered {
  padding-right: 5px;
  color: #fff;
  max-width: 100%;
}
.select2-container--default .select2-selection .select2-selection__choice {
  background: none;
  border: none;
  font-weight: bold;
  pointer-events: none;
  margin: 0;
  padding: 0;
}
.select2-container--default .select2-selection .select2-selection__choice:not(:first-child) .select2-selection__choice__display {
  padding: 0;
}
.select2-container--default .select2-selection .select2-selection__choice:not(:first-child) .select2-selection__choice__display::before {
  content: ", ";
}
.select2-container--default .select2-selection .select2-selection__choice__remove {
  display: none;
}
.select2-container--default .select2-selection .select2-selection__choice__display {
  padding: 0;
}
.select2-container--default .select2-results > .select2-results__options {
  max-height: none !important;
}
.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: 1px solid #33435A;
}
.select2-container--default.select2-container--open .select2-selection::after {
  transform: translateY(-50%) rotate(180deg);
  transition: 0.25s;
}
.select2-container--default .select2-results__option {
  padding: 10px;
}
.select2-container--default .select2-results__option--selected {
  background: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #192941;
}
.select2-container--default .select2-selection--multiple {
  cursor: pointer;
  display: flex;
}
.select2-container--default .select2-selection--multiple::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  background: url("../img/cb-not-filled.svg");
  background-size: 100% 100%;
}
.select2-container--default .select2-selection--multiple::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  background: url("../img/select-arrow.svg");
  background-size: 100% 100%;
  transition: 0.25s;
}
.select2-results {
  background: #0F1D32;
}
.select2-dropdown {
  border: 0;
}
.select2 textarea {
  margin: 0 !important;
  line-height: 1;
  font-weight: bold;
  pointer-events: none;
}
.select2 textarea::placeholder {
  color: #fff;
}

.select2-container--open .select2-selection {
  border: 1px solid transparent !important;
  box-shadow: 0px 1px 4px 0px rgba(254, 230, 120, 0.11);
}

.select2-results__options {
  box-shadow: 0px 1px 4px 0px rgba(254, 230, 120, 0.11);
  clip-path: inset(0px -10px -10px -10px);
  border-radius: 3px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-results__options[aria-multiselectable=true] .select2-results__option {
  padding: 10px;
  padding-left: 15px;
  padding-right: 7px;
  position: relative;
}
.select2-results__options[aria-multiselectable=true] .select2-results__option::after {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 7px;
  background: url("../img/cb-empty.svg");
}
.select2-results__options[aria-multiselectable=true] .select2-results__option--selected {
  font-weight: bold;
}
.select2-results__options[aria-multiselectable=true] .select2-results__option--selected::after {
  background: url("../img/cb-filled.svg");
  background-size: 100% 100%;
}
.select2-results__options[aria-multiselectable=true] .select2-results__option:not(:last-child)::before {
  content: "";
  display: block;
  position: absolute;
  left: 15px;
  right: 7px;
  bottom: 0;
  height: 1px;
  background: #1F314B;
}

.modal {
  display: none;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal__block, .modal__overlay {
  will-change: transform;
}
.modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal[aria-hidden=false] .modal__block {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal__block {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal__block {
  background: #0F1D32;
  width: 1285px;
  min-height: 657px;
  max-height: calc(100% - 30px);
  max-width: calc(100% - 30px);
  border-radius: 10px;
  padding: 52px;
}
.modal__close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: url("../img/close-icon.svg");
  cursor: pointer;
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(44, 37, 37, 0.9);
}

.form-modal__block {
  display: flex;
  gap: 120px;
  padding-left: 144px;
}
.form-modal__block.sent .form-modal__image img {
  transform: translateX(-100%);
}
.form-modal__block.sent .form-modal__inner.form {
  display: none;
}
.form-modal__block.sent .form-modal__inner.success {
  display: flex;
}
.form-modal__image {
  display: flex;
  overflow: hidden;
  flex: 0 0 585px;
}
.form-modal__image img {
  max-height: 100%;
  min-width: 100%;
  transition: 0.4s;
}
.form-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-modal__form input, .form-modal__form textarea {
  display: block;
  padding: 15px;
  background: none;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  font-family: "Arsenal";
}
.form-modal__form input::placeholder, .form-modal__form textarea::placeholder {
  color: #fff;
  font-family: "Arsenal";
}
.form-modal__form button {
  width: 100%;
  margin-top: 37px;
}
.form-modal__form textarea {
  resize: none;
  height: 50px;
}
.form-modal__inner {
  min-height: 380px;
}
.form-modal__inner.success {
  text-align: center;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.form-modal__inner.success span {
  display: block;
}
.form-modal__inner.success a {
  font-weight: bold;
  color: #C9961A;
  text-decoration: none;
  border-bottom: 1px solid #C9961A;
  display: inline-block;
  padding-bottom: 7px;
}

.submenu-window {
  background: #192941;
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  border-radius: 5px;
  z-index: 999;
}
.submenu-window.hovered {
  display: block;
}
.submenu-window__block {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px;
  padding-bottom: 22px;
  padding-left: 24px;
}
.submenu-window__item:not(:last-child) {
  margin-bottom: 20px;
}
.submenu-window__item a {
  text-decoration: none;
}
.submenu-window__item a:hover {
  font-weight: bold;
}
.submenu-window__items {
  flex: 1;
}
.submenu-window__image {
  flex: 0 0 50%;
  display: flex;
  align-items: stretch;
}
.submenu-window__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.submenu-window__catalog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 36px 45px;
  grid-auto-rows: 145px;
  gap: 30px;
}
.submenu-window__catalog li {
  padding: 1px;
  clip-path: url("#block-bg-mask");
  border-radius: 5px;
}
.submenu-window__catalog li::before, .submenu-window__catalog li::after {
  content: "";
  position: absolute;
  border-radius: 5px;
  width: 0;
  height: 1px;
  z-index: -1;
  background: #C9961A;
  transition: none;
  clip-path: url("#block-bg-mask");
}
.submenu-window__catalog li::before {
  top: 0;
  left: 0;
  animation-delay: 0s;
}
.submenu-window__catalog li::after {
  bottom: 0;
  right: 0;
  animation-delay: 0s;
}
.submenu-window__catalog li:hover::before {
  animation: drawLine1 0.25s forwards;
}
.submenu-window__catalog li:hover::after {
  animation: drawLine2 0.25s forwards;
}
.submenu-window li {
  position: relative;
}
.submenu-window__link {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  clip-path: url("#block-bg-mask");
  text-decoration: none;
}
.submenu-window__link img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.submenu-window__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 18, 45, 0.6) 0%, rgba(51, 67, 90, 0.15) 100%);
  z-index: 2;
}
.submenu-window__link span {
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  font-weight: bold;
}

.mobile-menu {
  position: fixed;
  top: 0;
  background: #192941;
  z-index: 999;
  left: 20px;
  right: 20px;
  padding: 36px 0;
  padding-left: 20px;
  padding-right: 28px;
  overflow-y: auto;
  display: none;
  max-height: 100vh;
}
.mobile-menu a {
  text-decoration: none;
}
.mobile-menu__list > li:not(:last-child) {
  margin-bottom: 30px;
}
.mobile-menu__list > li li {
  margin-bottom: 15px;
}
.mobile-menu__list > li ul {
  padding-top: 18px;
  padding-left: 23px;
  display: none;
}
.mobile-menu__list img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}
.mobile-menu__catalog ul {
  padding-left: 0 !important;
}
.mobile-menu__catalog li {
  height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: url("#block-bg-mask");
}
.mobile-menu__catalog li img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mobile-menu__catalog li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 18, 45, 0.6) 0%, rgba(51, 67, 90, 0.15) 100%);
  z-index: 2;
}
.mobile-menu__catalog li span {
  position: relative;
  z-index: 3;
  text-transform: uppercase;
  font-weight: bold;
}
.mobile-menu__close {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 30px;
  right: 15px;
  background: url("../img/close-icon.svg");
  cursor: pointer;
}
.mobile-menu .phone {
  margin-top: 25px;
}

.simplebar-scrollbar::before {
  background-color: #C9961A;
  width: 2px;
}

.owl-carousel .owl-nav button {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff !important;
  border-radius: 50%;
  z-index: 2;
  color: #0F1D32;
}
.owl-carousel .owl-nav button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/slider-arrow.svg") no-repeat center center;
  top: 0;
  left: 0;
  transition: 0.25s;
}
.owl-carousel .owl-nav button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/slider-arrow-hover.svg") no-repeat center center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.25s;
}
.owl-carousel .owl-nav button:hover {
  background-color: #C9961A !important;
}
.owl-carousel .owl-nav button:hover::before {
  opacity: 0;
  transition: 0.25s;
}
.owl-carousel .owl-nav button:hover::after {
  opacity: 1;
  transition: 0.25s;
}

.owl-prev {
  left: 10px;
}

.owl-next {
  right: 10px;
}
.owl-next::before, .owl-next::after {
  transform: rotate(180deg);
}

.home__main {
  overflow: hidden;
  position: relative;
  height: 100vh;
}
.home__video {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__video::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  transform: rotate(180deg);
  background: linear-gradient(2.72deg, #192941 10.12%, rgba(25, 41, 65, 0) 95.49%);
}
.home__video::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  background: linear-gradient(2.72deg, #192941 7.12%, rgba(25, 41, 65, 0) 70.49%);
}
.home__info {
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  padding: 0 20px;
}
.home__info h1 {
  font-size: 70px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 107%;
  margin-bottom: 23px;
  margin-top: 0;
}
.home__info h1 > p {
  margin: 0;
}
.home__info > p {
  font-size: 24px;
  font-weight: bold;
  color: #C9961A;
  line-height: 137%;
  margin: 0;
  margin-bottom: 23px;
}
.home__info .links {
  display: flex;
  justify-content: center;
}
.home__info .links a, .home__info .links span {
  font-weight: bold;
  text-transform: uppercase;
  display: block;
  padding: 14px 20px;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1;
  cursor: pointer;
}
.home__info .links a:first-child, .home__info .links span:first-child {
  background: #fff;
  color: #192941;
  padding: 14px 28px;
}
.home__info .links a:first-child:hover, .home__info .links span:first-child:hover {
  color: #C9961A;
}
.home__info .links a:last-child, .home__info .links span:last-child {
  border-radius: 2px;
  position: relative;
  color: white;
  background: transparent;
  border: 1px solid white;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.home__info .links a:last-child::after, .home__info .links span:last-child::after {
  content: "";
  position: absolute;
  bottom: 9px;
  right: -1px;
  width: 13px;
  height: 1px;
  background: white;
  transform: rotate(-45deg);
  transition: 0.25s;
  transform-origin: bottom right;
}
.home__info .links a:last-child:hover, .home__info .links span:last-child:hover {
  color: #C9961A;
  border-color: #C9961A;
  transition: 0.25s;
}
.home__info .links a:last-child:hover::after, .home__info .links span:last-child:hover::after {
  background: #C9961A;
  transition: 0.25s;
}
.home__info .links a:last-child.aos-animated-done, .home__info .links span:last-child.aos-animated-done {
  transition: 0.25s !important;
}
.home__props {
  padding-top: 100px;
}
.home__props--top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
.home__props-arrows {
  display: flex;
  gap: 20px;
}
.home__props-arrows span {
  width: 30px;
  cursor: pointer;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  color: #0F1D32;
  display: block;
  transition: 1.25s;
  position: relative;
}
.home__props-arrows span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/slider-arrow.svg") no-repeat center center;
  top: 0;
  left: 0;
}
.home__props-arrows span:hover {
  background: linear-gradient(90deg, #FCCB00 0%, #FFFAD2 25%, #F9F0C0 30%, #ECD893 39%, #D7B14C 51%, #C9961A 60%, #E9CD75 81%, #F2DC8E 87%, #FFFAD2 100%) no-repeat, #C9961A;
  background-size: 100% 100%, 100% 100%;
  background-position: left top, left top;
  transition: background-size 2s ease;
}
.home__props-arrows span:hover:hover {
  background-size: 0% 100%, 100% 100%;
  transition: background-size 2s ease;
}
.home__props-arrows .next::before {
  transform: rotate(180deg);
}
.home__slider {
  padding-bottom: 100px;
}
.home__slider .owl-stage {
  display: flex;
  align-items: stretch;
}
.home__team {
  background: #fff;
  color: #192941;
  padding-top: 90px;
  padding-bottom: 78px;
}
.home__team--top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}
.home__team-text {
  flex: 0 0 420px;
  font-size: 24px;
}
.home__team-photo img {
  display: block;
  width: 100%;
}
.home__numbers {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 140px;
}
.home__number {
  display: flex;
  justify-content: center;
  position: relative;
}
.home__number:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -75px;
  width: 1px;
  height: 100%; /* adjust line height */
  background: #9F9F9F;
}
.home__number:nth-child(1) {
  justify-content: flex-start;
}
.home__number-inner span:first-child {
  font-size: 108px;
  font-weight: bold;
  display: block;
}
.home__number-inner span:first-child.plus::after {
  content: "+";
}
.home__number-inner span:last-child {
  font-size: 24px;
}

.prop-list__item {
  background: #0F1D32;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  clip-path: url(#block-bg-mask);
}
.prop-list__photos {
  height: 210px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.prop-list__photos img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.prop-list__photos .owl-item {
  position: relative;
}
.prop-list__photos .owl-item::after {
  content: "";
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.prop-list__photos .owl-dots {
  position: absolute;
  bottom: 8px;
  left: 20px;
  z-index: 2;
}
.prop-list__photos .owl-dots .owl-dot span {
  background: #fff;
  opacity: 1;
  width: 10px;
  height: 10px;
  margin: 5px;
  display: block;
  border-radius: 50%;
}
.prop-list__photos .owl-dots .owl-dot.active span {
  background: #C9961A;
}
.prop-list__photos .owl-carousel .owl-nav button {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  color: #0F1D32;
}
.prop-list__photos .owl-carousel .owl-nav button::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/slider-arrow.svg") no-repeat center center;
  top: 0;
  left: 0;
  transition: 0.25s;
}
.prop-list__photos .owl-carousel .owl-nav button::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/slider-arrow-hover.svg") no-repeat center center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.25s;
}
.prop-list__photos .owl-carousel .owl-nav button:hover {
  background-color: #C9961A;
}
.prop-list__photos .owl-carousel .owl-nav button:hover::before {
  opacity: 0;
  transition: 0.25s;
}
.prop-list__photos .owl-carousel .owl-nav button:hover::after {
  opacity: 1;
  transition: 0.25s;
}
.prop-list__photos .owl-prev {
  left: 10px;
}
.prop-list__photos .owl-next {
  right: 10px;
}
.prop-list__photos .owl-next::before, .prop-list__photos .owl-next::after {
  transform: rotate(180deg);
}
.prop-list__photos .owl-carousel, .prop-list__photos .owl-stage-outer, .prop-list__photos .owl-stage, .prop-list__photos .owl-item {
  height: 100%;
}
.prop-list__label {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  text-transform: lowercase;
  display: inline-block;
  padding: 5px 15px;
  padding-top: 2px;
  border-radius: 3px;
  line-height: 1;
  z-index: 10;
}
.prop-list__label.free {
  background: linear-gradient(90deg, #FCCB00 0%, #FFFAD2 25%, #F9F0C0 30%, #ECD893 39%, #D7B14C 51%, #C9961A 60%, #E9CD75 81%, #F2DC8E 87%, #FFFAD2 100%);
  color: #0F1D32;
}
.prop-list__label.booked {
  background: #fff;
  color: #0F1D32;
}
.prop-list__label.free-soon {
  background: #192941;
  color: #fff;
}
.prop-list__pet-label {
  background: #0F1D32 url(../img/paw.svg) no-repeat center center;
  background-size: 15px 15px;
  width: 25px;
  height: 25px;
  display: block;
  border-radius: 3px;
  z-index: 10;
}
.prop-list__labels {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}
.prop-list__labels .prop-list__label {
  position: static;
}
.prop-list__info {
  background: #0F1D32;
  padding: 18px 28px 28px 14px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prop-list__title {
  margin: 0;
  margin-bottom: 10px;
}
.prop-list__title a {
  text-decoration: none;
  font-weight: bold;
}
.prop-list__addr {
  margin-bottom: 10px;
  display: block;
}
.prop-list__fields {
  display: flex;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  line-height: 1;
  margin-bottom: 10px;
  font-size: 14px;
}
.prop-list__fields span {
  display: flex;
}
.prop-list__fields span::before {
  content: "";
  display: block;
  height: 15px;
  margin-right: 10px;
}
.prop-list__fields span:nth-child(1)::before {
  background: url("../img/prop-field-icon1.svg");
  background-size: 100% 100%;
  width: 13px;
}
.prop-list__fields span:nth-child(2)::before {
  background: url("../img/prop-field-icon2.svg");
  background-size: 100% 100%;
  width: 15px;
}
.prop-list__fields span:nth-child(3)::before {
  background: url("../img/prop-field-icon3.svg");
  background-size: 100% 100%;
  width: 15px;
}
.prop-list__fields span:nth-child(4)::before {
  background: url("../img/prop-field-icon4.svg");
  background-size: 100% 100%;
  width: 15px;
}
.prop-list__price {
  font-weight: bold;
  margin-top: auto;
}

.breadcrumbs {
  margin-bottom: 40px;
  margin-top: 110px;
}
.breadcrumbs > :not(:first-child)::before {
  content: "•";
  margin: 0 5px;
}
.breadcrumbs a {
  color: #535557;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #C9961A;
}

.about--top {
  margin-bottom: 40px;
}
.about--top .row {
  gap: 83px;
}
.about__title {
  flex: 0;
}
.about__desc {
  font-size: 24px;
}
.about__desc p {
  margin: 30px 0;
}
.about__desc p:first-child {
  margin-top: 0;
}
.about__desc p:last-child {
  margin-bottom: 0;
}
.about__photo {
  height: 900px;
  max-width: 100%;
  width: 1400px;
  margin: 0 auto;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about .reviews {
  padding-bottom: 80px;
}

.team {
  padding-top: 55px;
  padding-bottom: 96px;
}
.team__title.title {
  margin-bottom: 47px;
  width: 711px;
  max-width: 100%;
}
.team__list {
  gap: 30px;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.team__item {
  min-width: 0;
}
.team__name {
  margin: 15px 0;
  text-transform: uppercase;
  font-size: 24px;
}
.team__photo img {
  width: 100%;
}

.reviews {
  padding-top: 90px;
  padding-bottom: 28px;
}
.reviews--top {
  margin-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews--top span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews--top a {
  color: #C9961A;
  text-decoration: underline;
}
.reviews--top a:hover {
  text-decoration: none;
}
.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.reviews .owl-carousel {
  padding: 0 40px;
}
.reviews .owl-carousel .owl-nav .owl-prev {
  left: 0;
}
.reviews .owl-carousel .owl-nav .owl-next {
  right: 0;
}
.reviews__item {
  margin: 1px;
  position: relative;
}
.reviews__item-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.reviews__item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: #fff;
  clip-path: url("#block-bg-mask");
  z-index: 1;
}
.reviews__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #192941;
  clip-path: url("#block-bg-mask");
  z-index: 2;
}
.reviews__item-inner {
  position: relative;
  z-index: 2;
  padding: 20px 15px 20px 14px;
  display: flex;
  flex-direction: column;
}
.reviews__item .top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}
.reviews__item .top span {
  font-weight: bold;
}
.reviews__item .top img {
  width: 30px;
  flex: 0 0 30px;
}
.reviews__item .text {
  max-height: 88px; /* 4 рядки по 22px */
  overflow: hidden;
  transition: max-height 0.4s ease;
  line-height: 22px;
}
.reviews__item .text.expanded {
  max-height: 264px;
}
.reviews__item .more-btn {
  cursor: pointer;
}
.reviews__item .more-btn.hidden {
  opacity: 0;
  pointer-events: none;
}
.reviews__item .line {
  display: block;
  height: 1px;
  background: #3D4A5E;
  margin: 10px 0;
}
.reviews__item .bottom {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.reviews__item .rating {
  display: flex;
  gap: 1px;
  align-items: center;
}
.reviews__item .rating span {
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/star-icon.svg");
}

.catalog--top {
  display: flex;
  align-items: flex-end;
  gap: 30px;
}
.catalog--top h1 {
  line-height: 1;
}
.catalog--top_links {
  display: flex;
  gap: 20px;
  margin-bottom: 3px;
}
.catalog--top_links a {
  line-height: 1;
  text-decoration: none;
  border-bottom: 2px solid #fff;
}
.catalog--top_links a:hover {
  border-bottom: 2px solid #C9961A;
}
.catalog .socials {
  padding-top: 75px;
}
.catalog__menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  margin-top: 60px;
  gap: 30px;
  padding-bottom: 100px;
}
.catalog__item {
  min-width: 0;
  height: 300px;
  position: relative;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  clip-path: url("#block-bg-mask");
}
.catalog__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 18, 45, 0.6) 0%, rgba(51, 67, 90, 0.15) 100%);
  z-index: 2;
}
.catalog__item:hover {
  color: #fff;
}
.catalog__item:hover img {
  transition: 0.5s;
}
.catalog__item img {
  transition: 0.5s;
  display: block;
  width: 100%;
  min-height: 100%;
}
.catalog__item-name {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-size: 35px;
  font-weight: 700;
  z-index: 20;
}

.services {
  padding-top: 90px;
}
.services .title {
  line-height: 1;
}
.services--top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
}
.services__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.services__item {
  transition: 0.25s;
  position: relative;
  padding: 5px;
}
.services__item:hover {
  transition: 0.25s;
  filter: drop-shadow(1px 5px 2px rgba(0, 0, 0, 0.2));
}
.services__item-mask {
  text-decoration: none;
  position: relative;
  padding: 30px 25px;
  display: block;
  position: relative;
}
.services__item-mask-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.services__item-mask::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: #192941;
  clip-path: url("#block-bg-mask");
  z-index: 1;
}
.services__item-mask::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  clip-path: url("#block-bg-mask");
  z-index: 2;
}
.services__icon {
  margin-bottom: 20px;
}
.services__title {
  margin-bottom: 20px;
}
.services__link {
  font-weight: bold;
  color: #C9961A !important;
  display: inline-block;
  padding-bottom: 2px;
  border-bottom: 1px solid #C9961A;
}

.reset-filters-btn {
  font-size: 14px;
  color: #6B6C6F;
  text-decoration: underline;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  cursor: pointer;
}

.filters {
  background: #0F1D32;
  border-radius: 15px;
  padding: 55px 41px;
}
.filters input {
  border: 1px solid #33435A;
  background: #0F1D32;
  border-radius: 3px;
  padding: 15px 11px;
}
.filters select {
  display: none;
}
.filters--top {
  display: flex;
  gap: 40px;
  margin-bottom: 45px;
}
.filters--top.buy-sell {
  border-bottom: 1px solid #1F314B;
}
.filters--top.buy-sell div {
  display: inline-block;
  border-bottom: 1px solid transparent;
  transition: 0.25s;
  cursor: pointer;
  padding-bottom: 20px;
  position: relative;
}
.filters--top.buy-sell div input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.filters--top.buy-sell div.selected {
  font-weight: bold;
  color: #C9961A;
  border-bottom: 1px solid #C9961A;
}
.filters--top.buy-sell div:hover {
  transition: 0.25s;
  color: #C9961A;
  border-bottom: 1px solid #C9961A;
}
.filters--top h1 {
  color: #C9961A;
  padding-bottom: 7px;
  border-bottom: 1px solid #C9961A;
}
.filters--top a {
  text-decoration: none;
}
.filters--rows {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}
.filters__item {
  min-height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.filters__item.district .select2-container--default .select2-selection::before {
  width: 12.5px;
  height: 12.5px;
  background: url("../img/district-icon.svg");
  background-size: 100% 100%;
}
.filters__item.rooms .select2-container--default .select2-selection::before {
  width: 12.5px;
  height: 12.5px;
  background: url("../img/rooms-icon.svg");
  background-size: 100% 100%;
}
.filters__item.price .label::before {
  background: url("../img/price-icon.svg");
}
.filters__item.square .label::before {
  background: url("../img/square-icon.svg");
}
.filters__item.floor .label::before {
  background: url("../img/floor-icon.svg");
}
.filters__item .label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.filters__item .label::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.filters__item input {
  color: #fff;
  font-size: 14px;
}
.filters__item input::placeholder {
  color: #fff;
  font-size: 14px;
}
.filters__item .row {
  gap: 20px;
  align-items: stretch;
}
.filters__item .row input {
  min-width: 0;
}
.filters__item .row select {
  flex: 0 0 70px;
}
.filters__item .row .select2 {
  flex: 0 0 70px;
}
.filters__item .row .select2-selection {
  display: flex;
  align-items: center;
}
.filters__item .range-divider {
  flex: 0 0 12px;
  margin-left: -9px;
  margin-right: -9px;
  position: relative;
  display: flex;
  align-items: center;
}
.filters__item .range-divider::after {
  content: "";
  height: 1px;
  width: 12px;
  background: #33435A;
  display: block;
}
.filters--bottom {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
}
.filters--hidden {
  padding-top: 30px;
  display: none;
}
.filters--additional {
  padding-top: 30px;
}
.filters__section {
  padding-top: 30px;
  padding-bottom: 36px;
  border-top: 1px solid #1F314B;
}
.filters__section:last-child {
  padding-bottom: 0;
}
.filters .label2 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  display: block;
}
.filters__cbboxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(15px, 3vw, 60px);
  width: 550px;
  max-width: 100%;
  margin-bottom: -15px;
}
.filters__cbboxes.lg {
  width: 820px;
  grid-template-columns: repeat(4, 1fr);
}
.filters__cbboxes.five-in-row {
  width: 820px;
  grid-template-columns: repeat(5, 1fr);
}
.filters__cbboxes.four-in-row {
  width: 700px;
  grid-template-columns: repeat(4, 1fr);
}
.filters__checkbox {
  padding-left: 25px;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
}
.filters__checkbox input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.filters__checkbox::before {
  content: "";
  left: 0;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/cb-empty.svg");
}
.filters__checkbox::after {
  content: "";
  left: 0;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/cb-not-filled.svg");
  opacity: 0;
  transition: 0.25s;
}
.filters__checkbox:hover::after, .filters__checkbox.checked::after {
  opacity: 1;
  transition: 0.25s;
}
.filters__checkbox:hover::before, .filters__checkbox.checked::before {
  opacity: 0;
  transition: 0.25s;
}

.toggle-filter-btn {
  flex: 0 0 70px;
  border: 1px solid #33435A;
  background: #0F1D32;
  border-radius: 3px;
  padding: 15px 11px;
  position: relative;
  cursor: pointer;
  transition: 0.25s;
}
.toggle-filter-btn:hover {
  background: #C9961A;
  transition: 0.25s;
}
.toggle-filter-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/filters-icon.svg") no-repeat center center;
}

.select2-container--default .select2-selection--single.select2-selection {
  position: relative;
  display: flex;
  align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50);
  right: 15px;
  background: url("../img/select-arrow.svg") no-repeat;
  transition: 0.25s;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--open .select2-selection__arrow {
  transform: translateY(-50%) rotate(180deg) !important;
  transition: 0.25s;
}

.filter-go-btn {
  background: #fff;
  color: #192941;
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  padding: 15px 65px;
  line-height: 137%;
  border-radius: 3px;
  cursor: pointer;
  border: 0;
  font-family: "Arsenal";
  font-size: 18px;
}
.filter-go-btn:hover {
  color: #fff;
  background: #C9961A;
}

.search-results {
  padding-bottom: 90px;
}
.search-results--top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
  margin-bottom: 53px;
}
.search-results .title {
  line-height: 1;
}
.search-results__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.search-results .prop-list__item {
  align-self: left;
}

.pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  position: relative;
}
.pagination > * {
  margin-left: auto;
}
.pagination > a {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
}
.pagination .show-next {
  color: #FEE678;
  text-decoration: underline;
  font-weight: bold;
}
.pagination__links {
  display: flex;
  gap: 12px;
}
.pagination__links span {
  color: #C9961A;
  text-decoration: underline;
}

.single-prop--top {
  display: flex;
  gap: 30px;
  height: 650px;
  overflow: hidden;
  margin-bottom: 33px;
  position: relative;
}
.single-prop__lg-slider {
  flex: 0 0 calc(100% - 250px);
  height: 650px;
  width: calc(100% - 250px);
  clip-path: url("#block-bg-mask");
}
.single-prop__lg-slider .slick-list, .single-prop__lg-slider .slick-track, .single-prop__lg-slider .slick-slide {
  height: 100%;
}
.single-prop__lg-slider .slick-slide {
  height: 100% !important;
}
.single-prop__lg-slider .slick-slide .rounded-mask {
  width: auto !important;
  height: 100%;
  clip-path: url("#block-bg-mask");
}
.single-prop__lg-slider .slick-slide div:not(.rounded-mask) {
  height: 100%;
  display: flex;
  justify-content: center;
}
.single-prop__lg-slider .slick-slide img {
  width: auto !important;
  height: 100% !important;
  min-width: 100%;
}
.single-prop__sm-slider {
  flex: 0 0 220px;
  padding-bottom: 40px;
}
.single-prop__sm-slider .slick-list {
  max-height: 100%;
  margin: 0;
}
.single-prop__sm-slider.slick-vertical .slick-slide {
  margin-bottom: 30px;
  height: 184px;
  border-radius: 10px;
  overflow: hidden;
}
.single-prop__sm-slider.slick-vertical .slick-slide > div {
  height: 100%;
}
.single-prop__sm-slider.slick-vertical .slick-slide img {
  height: 100%;
  object-fit: cover;
}
.single-prop__sm-slider.slick-vertical .slick-slide:last-child {
  margin-bottom: 0;
}
.single-prop__sm-slider:not(.slick-vertical) .slick-slide {
  margin-right: 30px;
}
.single-prop__sm-slider:not(.slick-vertical) .slick-slide:last-child {
  margin-right: 0;
}
.single-prop__sm-slider .slick-prev {
  display: none !important;
}
.single-prop__sm-slider .slick-next {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: #fff;
  width: 30px;
  height: 30px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  top: auto;
  border: 0;
  font-size: 0;
}
.single-prop__sm-slider .slick-next::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 100%;
  background: url("../img/slider-arrow.svg") no-repeat 8px 5px;
  transform: rotate(-90deg);
}
.single-prop__main > .row {
  gap: 40px;
  align-items: flex-start;
}
.single-prop__ask {
  flex: 0 0 452px;
}
.single-prop__title.md-title {
  text-transform: none;
  margin-bottom: 20px;
}
.single-prop__addr {
  margin-bottom: 20px;
}
.single-prop__price {
  color: #FEE678;
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1;
}
.single-prop__info {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  line-height: 1;
}
.single-prop__info span {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}
.single-prop__info span::before {
  content: "";
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 10px;
}
.single-prop__info span sup {
  position: relative;
  top: -2px;
}
.single-prop__info span.rooms::before {
  background: url("../img/single-prop-icon1.svg") no-repeat;
  background-size: 100% 100%;
}
.single-prop__info span.square::before {
  background: url("../img/single-prop-icon2.svg") no-repeat;
  background-size: 100% 100%;
}
.single-prop__info span.floor::before {
  background: url("../img/single-prop-icon3.svg") no-repeat;
  background-size: 100% 100%;
}
.single-prop__info span.type::before {
  background: url("../img/single-prop-icon4.svg") no-repeat;
  background-size: 100% 100%;
}
.single-prop__desc {
  margin-bottom: 35px;
}
.single-prop__desc p {
  margin: 20px 0;
}
.single-prop__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  column-gap: 30px;
  row-gap: 16px;
  margin-bottom: 50px;
}
.single-prop__features span {
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 14px;
}
.single-prop__features span::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  display: inline-block;
  margin-right: 10px;
  background: url("../img/single-prop-cb.svg");
}
.single-prop__ask {
  position: relative;
}
.single-prop__ask-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.single-prop__ask::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: #fff;
  clip-path: url("#block-bg-mask");
  z-index: 1;
}
.single-prop__ask::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #192941;
  clip-path: url("#block-bg-mask");
  z-index: 2;
}
.single-prop__ask-inner {
  padding: 36px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  line-height: 1;
}
.single-prop__ask-inner img {
  max-width: 125px;
}
.single-prop__ask .row {
  gap: 15px;
}
.single-prop__ask .md-title {
  margin-bottom: 15px;
  display: block;
}
.single-prop__video {
  margin-bottom: 40px;
}
.single-prop__video iframe, .single-prop__video video {
  width: 100% !important;
}

.popup-form-btn {
  background: linear-gradient(90deg, #FCCB00 0%, #FFFAD2 25%, #F9F0C0 30%, #ECD893 39%, #D7B14C 51%, #C9961A 60%, #E9CD75 81%, #F2DC8E 87%, #FFFAD2 100%) no-repeat, #C9961A;
  background-size: 100% 100%, 100% 100%;
  background-position: left top, left top;
  transition: background-size 2s ease;
  display: inline-block;
  padding: 14px 52px;
  background: linear-gradient(90deg, #FCCB00 0%, #FFFAD2 25%, #F9F0C0 30%, #ECD893 39%, #D7B14C 51%, #C9961A 60%, #E9CD75 81%, #F2DC8E 87%, #FFFAD2 100%) no-repeat, #C9961A;
  background-size: 100% 100%, 100% 100%;
  background-position: left top, left top;
  transition: background-size 2s ease;
  border-radius: 10px;
  text-decoration: none;
  color: #192941;
  font-weight: bold;
}
.popup-form-btn:hover {
  background-size: 0% 100%, 100% 100%;
  transition: background-size 2s ease;
}
.popup-form-btn:hover {
  background-size: 0% 100%, 100% 100%;
  transition: background-size 2s ease;
}
.popup-form-btn:hover {
  color: #fff;
  background: #C9961A;
}

.service--offset {
  height: 36px;
}
.service--offset-lg {
  height: 100px;
}
.service--top {
  padding-bottom: 78px;
  align-items: center;
  gap: 70px;
}
.service--top:not(.no-f) {
  display: flex;
}
.service--top.no-f h1 {
  margin-bottom: 43px;
}
.service--top.layout-1 h1 {
  margin-bottom: 50px;
}
.service--top.layout-1 .service__img {
  flex: 0 0 580px;
}
.service--top.layout-2 {
  flex-direction: row-reverse;
}
.service--top.layout-3, .service--top.layout-4, .service--top.layout-5 {
  flex-direction: column;
}
.service--top.layout-3 > *, .service--top.layout-4 > *, .service--top.layout-5 > * {
  flex: 0 0 100%;
}
.service--top.layout-3 h1, .service--top.layout-4 h1, .service--top.layout-5 h1 {
  flex: 0 0 490px;
}
.service--top.layout-3 .service__content, .service--top.layout-4 .service__content, .service--top.layout-5 .service__content {
  flex: 0 0 100%;
  display: flex;
  gap: 50px;
}
.service--top.layout-3 .service__img, .service--top.layout-4 .service__img, .service--top.layout-5 .service__img {
  width: 100%;
}
.service--top.layout-3 .service__img img, .service--top.layout-4 .service__img img, .service--top.layout-5 .service__img img {
  width: 100%;
}
.service--top.layout-4 .service__img {
  display: flex;
  gap: 32px;
}
.service--top.layout-4 img {
  height: 220px;
  flex: 1 1 100%;
}
.service--top.layout-6 {
  display: block;
}
.service--top.layout-7 {
  align-items: stretch;
  gap: 101px;
}
.service--top.layout-7 .service__img {
  flex: 0 0 580px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}
.service--top.layout-7 .service__img img {
  width: 100%;
  height: 195px;
  object-fit: cover;
}
.service--top.layout-7 h1 {
  margin-bottom: 25px;
}
.service--top.layout-7 p {
  margin-bottom: 40px;
}
.service--top.layout-7 .md-title {
  margin-bottom: 43px;
}
.service--top.layout-8 {
  display: block;
  padding-bottom: 0;
}
.service--top.layout-8 .service__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 90px;
}
.service--top.layout-8 .service__content .img {
  grid-column: span 2;
  margin-top: 42px;
}
.service--top.layout-8 .md-title {
  margin-bottom: 15px;
}
.service--top.layout-8 h1 {
  margin-bottom: 30px;
}
.service__desc ul {
  list-style: none;
  padding-left: 25px;
}
.service__desc ul li {
  position: relative;
}
.service__desc ul li::before {
  content: "•";
  font-size: 18px;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: 2px;
  left: -15px;
}
.service__desc h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 24px;
  text-transform: none;
}
.service__desc p:first-child {
  margin-top: 0;
}
.service__desc p:last-child {
  margin-bottom: 0;
}
.service img {
  border-radius: 5px;
  max-width: 100%;
}
.service__menu {
  border-top: 1px solid #3E3E3E;
  margin-bottom: 78px;
}
.service__menu li a {
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  display: block;
  padding: 30px 0;
  border-bottom: 1px solid #3E3E3E;
  position: relative;
}
.service__menu li a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  right: 0;
  background: url("../img/service-menu-arrow.svg") no-repeat center center;
}
.service__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  grid-auto-rows: 135px;
}
.service__grid.rows-h {
  grid-auto-rows: 220px;
}
.service__grid.rows-h .service__grid-item-inner:not(.span-2) {
  justify-content: flex-start;
  padding-top: 20px;
}
.service__grid-item {
  position: relative;
}
.service__grid-item-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.service__grid-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: #fff;
  clip-path: url("#block-bg-mask");
  z-index: 1;
}
.service__grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #192941;
  clip-path: url("#block-bg-mask");
  z-index: 2;
}
.service__grid-item-inner {
  padding: 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 43px;
}
.service__grid-item.img, .service__grid-item.span-2 {
  padding: 0;
  border: 0;
  clip-path: none;
}
.service__grid-item.img::after, .service__grid-item.img::before, .service__grid-item.span-2::after, .service__grid-item.span-2::before {
  content: none;
}
.service__grid img {
  width: 100%;
  height: 100%;
}
.service__grid .span-2 {
  grid-column: span 2;
  padding: 0;
  border: 0;
}
.service__grid span:first-child {
  text-transform: uppercase;
  font-weight: bold;
  display: block;
  margin-bottom: 17px;
}
.service__subtitle {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #C9961A;
  line-height: 1;
  margin-bottom: 34px;
}
.service__approach {
  display: flex;
  gap: 30px;
}
.service__approach-item {
  flex: 1;
  position: relative;
}
.service__approach-item-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.service__approach-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: #fff;
  clip-path: url("#block-bg-mask");
  z-index: 1;
}
.service__approach-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #192941;
  clip-path: url("#block-bg-mask");
  z-index: 2;
}
.service__approach-item-inner {
  padding: 30px;
  padding-left: 20px;
}
.service__approach-number.title {
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.service__approach-title.md-title {
  margin-bottom: 20px;
}
.service__approach p {
  margin-bottom: 10px;
}
.service__approach p:first-child {
  margin-top: 0;
}
.service__approach p:last-child {
  margin-bottom: 0;
}
.service__approach ul li {
  position: relative;
  padding-left: 15px;
}
.service__approach ul li::before {
  content: "•";
  font-size: 32px;
  color: #fff;
  line-height: 1;
  position: absolute;
  top: -6px;
  left: 0;
}
.service__numbered-list {
  counter-reset: my-counter;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.service__numbered-list li {
  counter-increment: my-counter;
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
}
.service__numbered-list li:last-child {
  margin-bottom: 0;
}
.service__numbered-list li::before {
  content: counter(my-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -15px;
  font-weight: bold;
  color: rgb(38, 59, 91);
  font-size: 60px;
  text-align: right;
  transform: scaleY(0.7);
}
.service__numbered-list li span {
  display: block;
}
.service__numbered-list li span:first-child {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 5px;
}
.service__support {
  margin-bottom: 163px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px 30px;
  grid-auto-rows: 150px;
}
.service__support .md-title {
  display: block;
  margin-bottom: 14px;
}
.service__support-item {
  position: relative;
}
.service__support-item-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.service__support-item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: #fff;
  clip-path: url("#block-bg-mask");
  z-index: 1;
}
.service__support-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #192941;
  clip-path: url("#block-bg-mask");
  z-index: 2;
}
.service__support-item.image::before, .service__support-item.image::after, .service__support-item.empty::before, .service__support-item.empty::after, .service__support-item.grid-title::before, .service__support-item.grid-title::after {
  content: none !important;
}
.service__support-item:not(.image, .empty, .grid-title) {
  padding-left: 20px;
  padding-right: 35px;
  border-radius: 10px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
.service__support-item:not(.image, .empty, .grid-title) .md-title {
  line-height: 1;
}
.service__support-item-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service__support-item.image {
  grid-row: span 2;
}
.checkmark-style li::before {
  content: "✔";
  color: #464646;
  margin-right: 5px;
  font-size: 20px;
}

.advantages {
  margin-bottom: 80px;
  display: flex;
}
.advantages__content {
  background: #fff;
  color: #192941;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 70px;
  padding-right: 70px;
}
.advantages__content h2 {
  margin-bottom: 20px;
  margin-top: -10px;
}
.advantages__content p {
  margin: 0;
  margin-bottom: 50px;
}
.advantages__items {
  gap: 35px 50px;
  display: flex;
  flex-wrap: wrap;
}
.advantages__item {
  flex: 1 1 calc(50% - 35px);
}
.advantages__item h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: 18px;
}
.advantages__photo {
  position: relative;
  left: -15px;
  flex: 0 1 580px;
  height: 550px;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  clip-path: url("#block-bg-mask");
}
.advantages__photo img {
  height: 100%;
}

.why-we {
  padding-top: 65px;
  padding-bottom: 80px;
}
.why-we .row {
  gap: 33px;
  align-items: center;
}
.why-we__content {
  flex: 1;
}
.why-we__items {
  margin-top: 30px;
}
.why-we__item {
  display: flex;
  padding: 19px 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgb(62, 62, 62);
}
.why-we__item:first-child {
  border-top: 1px solid rgb(62, 62, 62);
}
.why-we h3 {
  text-transform: uppercase;
  margin: 0;
}
.why-we__image {
  flex: 0 0 475px;
  display: block;
  clip-path: url("#block-bg-mask");
}
.why-we__image img {
  width: 100%;
  object-fit: cover;
}

.why-we2 {
  padding: 90px 0;
}
.why-we2--top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
.why-we2--top h2 {
  flex: 0 0 380px;
}
.why-we2__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 30px;
  grid-auto-rows: 204px;
}
.why-we2__item {
  position: relative;
}
.why-we2__item-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.why-we2__item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: #192941;
  clip-path: url("#block-bg-mask");
  z-index: 1;
}
.why-we2__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  clip-path: url("#block-bg-mask");
  z-index: 2;
}
.why-we2__item-inner {
  padding: 30px;
  padding-top: 42px;
  padding-right: 50px;
}
.why-we2__item-inner .md-title {
  margin-bottom: 10px;
}

.vacancy--top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 75px;
  gap: 50px;
}
.vacancy--top p {
  flex: 0 0 468px;
  margin: 0;
  font-size: 24px;
}
.vacancy__items {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  grid-auto-columns: 204px;
  margin-bottom: 75px;
}
.vacancy__item {
  min-height: 205px;
  position: relative;
}
.vacancy__item-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.vacancy__item::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: #fff;
  clip-path: url("#block-bg-mask");
  z-index: 1;
}
.vacancy__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #192941;
  clip-path: url("#block-bg-mask");
  z-index: 2;
}
.vacancy__item-inner {
  padding: 30px;
}
.vacancy__item .md-title {
  margin-top: 20px;
  line-height: 107%;
}
.vacancy__item img {
  width: 45px;
  height: 45px;
}
.vacancy__block {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
.vacancy__block-text {
  position: relative;
}
.vacancy__block-text-inner {
  position: relative;
  z-index: 3;
  height: 100%;
}
.vacancy__block-text::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: #fff;
  clip-path: url("#block-bg-mask");
  z-index: 1;
}
.vacancy__block-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #192941;
  clip-path: url("#block-bg-mask");
  z-index: 2;
}
.vacancy__block-text-inner {
  gap: 37px;
  padding-left: 54px;
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vacancy__block-text .lg-title {
  line-height: 107%;
}
.vacancy__block-text p {
  margin: 0;
}
.vacancy__block-text ul li {
  position: relative;
  padding-left: 35px;
  font-weight: bold;
}
.vacancy__block-text ul li::before {
  content: "•";
  position: absolute;
  left: 10px;
  font-size: 30px;
  top: -3px;
  margin: 0 7px;
}
.vacancy__block-image {
  width: 476px;
  flex: 0 0 476px;
  max-width: 100%;
  clip-path: url("#block-bg-mask");
}
.vacancy__block-image img {
  width: 100%;
  display: block;
}

.contact__content {
  margin-top: 40px;
  display: flex;
  gap: 30px;
}
.contact__content > * {
  min-width: 0;
}
.contact__row {
  height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
  background: #21324C;
  border-radius: 10px;
  font-size: 24px;
  clip-path: url("#block-bg-mask");
}
.contact__row:last-child {
  margin-bottom: 0;
}
.contact__row a {
  font-size: 24px;
  text-decoration: none;
}
.contact__row img {
  height: 24px;
}
.contact__rows {
  flex: 0 0 50%;
}
.contact__block {
  flex: 0 1 50%;
  padding-left: 56px;
  padding-right: 60px;
  clip-path: url("#block-bg-mask");
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  align-items: flex-start;
  background: #21324C;
  border-radius: 10px;
}
.contact__block p {
  margin: 0;
}

.oops-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.oops-page .oops {
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 110px;
}

.not-found-404 {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.not-found-404 .header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
}

.four-o-four {
  text-align: center;
}
.four-o-four svg {
  max-width: calc(100% - 100px);
}

.sale--top {
  display: flex;
  gap: 40px;
  margin-bottom: 25px;
}
.sale--top h1 {
  color: #C9961A;
  padding-bottom: 7px;
  border-bottom: 1px solid #C9961A;
}
.sale--top a {
  text-decoration: none;
}

.blog--top {
  padding-bottom: 40px;
}
.blog__list {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  grid-auto-rows: 1fr;
  margin-bottom: 40px;
}
.blog__item {
  background: #0F1D32;
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 100% 92%, 93% 100%, 30% 100%, 0 100%, 0% 30%);
}
.blog__item .md-text {
  text-transform: none;
  margin: 0;
  transition: 0.25s ease-in;
}
.blog__item a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog__item a:hover {
  color: #fff;
}
.blog__item a:hover .blog__bottom span:first-child {
  color: #C9961A;
  transition: 0.25s ease-in;
}
.blog__item a:hover img {
  transform: scale(1.1);
  transition: 0.4s ease-in;
}
.blog__item:first-child {
  grid-column: span 2;
}
.blog__item:first-child a {
  display: flex;
  flex-direction: row;
  gap: 33px;
  align-items: center;
  padding-right: 38px;
}
.blog__item:first-child .blog__image {
  flex: 0 0 380px;
  height: 100%;
  max-height: 375px;
}
.blog__item:first-child .blog__image img {
  object-position: top;
}
.blog__item:first-child .blog__info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-top: 18px;
  padding-bottom: 30px;
}
.blog__item:not(:first-child) .blog__info {
  padding: 18px 21px 30px;
}
.blog__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.blog__image {
  overflow: hidden;
  border-radius: 10px;
  height: 200px;
}
.blog__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: 0.4s ease-in;
}
.blog__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.blog__bottom span {
  line-height: 1;
}
.blog__bottom span:first-child {
  transition: 0.25s ease-in;
  color: #FEE678;
  font-weight: bold;
  text-decoration: underline;
}
.blog__date {
  line-height: 1;
}

.single-post--top {
  padding-right: 365px;
}
.single-post__grid {
  display: flex;
  gap: 30px;
  padding-bottom: 95px;
}
.single-post__right {
  flex: 0 0 335px;
}
.single-post__left {
  flex: 1;
}
.single-post__title {
  text-transform: none;
  margin-bottom: 38px;
}
.single-post__author-img {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  border-radius: 50%;
  overflow: hidden;
}
.single-post__author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post__author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.single-post__author-info span {
  line-height: 1;
}
.single-post__author-info span:first-child {
  font-size: 18px;
  font-weight: bold;
}
.single-post__author {
  display: flex;
  gap: 15px;
  align-items: center;
}
.single-post__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}
.single-post__date {
  padding-top: 7px;
  line-height: 1;
}
.single-post__content {
  clip-path: polygon(0 0, 100% 0, 100% 30%, 100% 92%, 93% 100%, 30% 100%, 0 100%, 0% 30%);
  padding: 28px;
  padding-bottom: 60px;
  padding-top: 17px;
  border-radius: 10px;
  background: #0F1D32;
  font-size: 20px;
  line-height: 26px;
}
.single-post__content h2, .single-post__content h3, .single-post__content p {
  margin: 22px 0;
  text-transform: none;
  font-size: 20px;
}
.single-post__content *:first-child {
  margin-top: 0;
}
.single-post__content *:last-child {
  margin-bottom: 0;
}
.single-post__sidebar {
  clip-path: polygon(0 0, 100% 0, 100% 30%, 100% 92%, 93% 100%, 30% 100%, 0 100%, 0% 30%);
  background: #0F1D32;
  padding: 25px;
  padding-bottom: 62px;
  padding-left: 20px;
  border-radius: 10px;
}
.single-post__sidebar-header {
  margin-bottom: 18px;
  text-transform: none;
  line-height: 1;
}
.single-post__sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.single-post__sidebar-item {
  background: #192941;
  padding: 5px;
  padding-right: 25px;
  border-radius: 10px;
  clip-path: polygon(0 0, 100% 0, 100% 30%, 100% 92%, 93% 100%, 30% 100%, 0 100%, 0% 30%);
  display: flex;
  align-items: center;
  gap: 15px;
}
.single-post__sidebar-image {
  height: 90px;
  width: 90px;
  flex: 0 0 90px;
  border-radius: 10px;
  overflow: hidden;
}
.single-post__sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post__sidebar-title {
  font-size: 16px;
  text-transform: none;
}
.single-post__sidebar-title a {
  text-decoration: none;
}