@import url("https://fonts.googleapis.com/css2?family=Italiana&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  outline: none !important;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  transition: 0.2s;
}
a, a:hover {
  text-decoration: none;
}

button {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

.container {
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--spacer);
}

.d-block {
  display: block !important;
}
.d-none {
  display: none !important;
}
.d-flex {
  display: flex !important;
}

.px-60 {
  padding-inline: 60px !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes pulseBtn {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes pulseBtn {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.3);
  }
  70% {
    -moz-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
:root {
  --container: 1500px;
  --header-height: 87px;
  --border-radius: 5px;
  --border-radius-type: 5px;
  --spacer: 1rem;
  --spacer-20: 20px;
  --fs-text: 20px;
  --main-gap: 150px;
  --color-bg: #f0f6f7;
  --color-white: #fff;
  --color-dark: #000;
  --color-border: rgba(128, 145, 159, 25%);
  --font-title: "Italiana", sans-serif;
  --font-text: "Montserrat", sans-serif;
  --transition: 0.2s ease-in-out;
  --color-primary: #213342;
  --wrapper-gradient: linear-gradient(to top, rgba(240, 246, 247, 1) 0%, rgba(240, 246, 247, 0.1) 100%);
}

@media (max-width: 1023px) {
  :root {
    --border-radius-type: 20px;
    --main-gap: 80px;
  }
}
.btn {
  --btn-height: 60px;
  --btn-border-radius: 5px;
  --btn-font-size: 16px;
  --btn-font-weight: 700;
  --btn-padding-inline: 20px;
  --btn-border: transparrent;
  --btn-color-hover: var(--color-white);
  --btn-gap: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--btn-gap);
  height: var(--btn-height);
  border-radius: var(--btn-border-radius);
  font-size: var(--btn-font-size);
  font-weight: var(--btn-font-weight);
  padding-inline: var(--btn-padding-inline);
  color: var(--btn-color);
  background-color: var(--btn-bg);
  border: 1px solid var(--btn-border);
  transition: var(--transition);
  flex-shrink: 0;
  text-wrap: nowrap;
}
.btn:hover {
  background-color: var(--btn-bg-hover);
  color: var(--btn-color-hover);
}
.btn-circle {
  width: var(--btn-height) !important;
  height: var(--btn-height) !important;
  --btn-padding-inline: 0;
  border-radius: 50%;
}
.btn-lg {
  --btn-height: 75px;
  --btn-padding-inline: 30px;
  --btn-font-size: 20px;
  --btn-font-weight: 600;
  --btn-border-radius: var(--border-radius);
}
.btn-primary {
  --btn-bg: var(--color-primary);
  --btn-color: var(--color-white);
  --btn-bg-hover: #2a4257;
}
.btn-secondary {
  --btn-bg: #406383;
  --btn-color: var(--color-white);
  --btn-bg-hover: #477197;
}
.btn-dark {
  --btn-bg: var(--color-dark);
  --btn-color: var(--color-white);
  --btn-bg-hover: #292929;
}
.btn-white {
  --btn-bg: var(--color-white);
  --btn-color: transparrent;
  --btn-bg-hover: #80919f;
  --btn-border: var(--color-border);
}
@media (max-width: 768px) {
  .btn {
    font-size: 16px;
  }
}

.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 30px;
  color: var(--color-white);
  background-color: var(--color-primary);
  z-index: 100;
  transition: var(--transition);
  animation: pulseBtn 2s infinite;
}
.btn-contact:hover {
  background-color: #2a4257;
  animation: none;
}
@media (max-width: 768px) {
  .btn-contact {
    right: 10px;
    bottom: 20px;
  }
}

.btn-scroll {
  display: none;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: fixed;
  right: 30px;
  bottom: 110px;
  color: var(--color-primary);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  opacity: 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .btn-scroll {
    right: 10px;
    bottom: 90px;
  }
}
.btn-scroll:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-scroll.visible {
  display: flex;
  opacity: 1;
  animation: fadeIn 0.5s forwards;
}

.btn-catalog::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M20.925 17.6755V10.4C20.925 6.44045 20.925 4.46015 19.6944 3.2306C18.4638 2.00105 16.4845 2 12.525 2H11.475C7.51545 2 5.53515 2 4.3056 3.2306C3.07605 4.4612 3.075 6.44045 3.075 10.4V20.375' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M20.925 17.7502H5.7C5.0038 17.7502 4.33612 18.0268 3.84384 18.519C3.35156 19.0113 3.075 19.679 3.075 20.3752C3.075 21.0714 3.35156 21.7391 3.84384 22.2313C4.33612 22.7236 5.0038 23.0002 5.7 23.0002H20.925M8.85 10.7435L10.3294 12.3038C11.1169 13.1344 11.5107 13.5502 12 13.5502C12.4893 13.5502 12.883 13.1344 13.6705 12.3038L15.15 10.7425M12 13.4588V6.2002' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M20.925 17.75C20.2288 17.75 19.5611 18.0266 19.0688 18.5188C18.5766 19.0111 18.3 19.6788 18.3 20.375C18.3 21.0712 18.5766 21.7389 19.0688 22.2312C19.5611 22.7234 20.2288 23 20.925 23' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  width: 24px;
  height: 25px;
  display: block;
}

.tabs {
  display: flex;
  gap: 15px;
}
@media (max-width: 768px) {
  .tabs {
    gap: 0;
  }
  .tabs button {
    font-size: 14px;
  }
}
.tabs .active {
  background-color: #80919f;
  color: var(--color-white);
}
.tabs-container {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 500px;
}
.tabs-detalic {
  display: flex;
  align-items: center;
  width: max-content;
  height: 50px;
  border-radius: 15px;
  border: 1px solid rgba(128, 145, 159, 0.25);
  color: #406383;
  font-size: 20px;
  overflow: hidden;
  font-weight: 400;
}
.tabs-detalic-lable {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  padding-inline: 20px;
}
.tabs-detalic-lable::before {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M22 22L2 2V22H22Z' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M6.5 17.5H12.5L6.5 11.5V17.5Z' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M6.5 17.5H12.5L6.5 11.5V17.5Z' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M6.5 17.5H12.5L6.5 11.5V17.5Z' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M6.5 17.5H12.5L6.5 11.5V17.5Z' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M15 22V20.5M12 22V20.5M9 22V20.5M6 22V20.5M2 18H3.5M2 15H3.5M2 12H3.5M2 9H3.5' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  width: 24px;
  height: 25px;
  display: block;
}
.tabs-detalic-size {
  display: flex;
  align-items: center;
  background-color: #ccd4db;
  padding-inline: 20px;
  font-weight: 600;
  height: 100%;
  border-left: 1px solid rgba(128, 145, 159, 0.25);
}
.tabs-actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--spacer-20);
}
@media (max-width: 1280px) {
  .tabs-actions {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
}
.tabs-cover {
  display: flex;
  justify-content: end;
}
@media (max-width: 768px) {
  .tabs-cover {
    justify-content: center;
  }
}
.tabs-cover img {
  width: auto;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  border-radius: var(--border-radius);
}
@media (max-width: 768px) {
  .tabs-cover img {
    max-height: 300px;
  }
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.accordion__item {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
}
.accordion__item-btn {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 600;
  font-size: 20px;
  padding: 25px;
  flex-shrink: 0;
  text-align: left;
  color: #406383;
}
.accordion__item-btn::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M21 13H3M12 4V22' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  width: 24px;
  height: 25px;
  display: flex;
  flex-shrink: 0;
  margin-left: auto;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .accordion__item-btn {
    padding: 15px;
  }
}
.accordion__item-content {
  padding: 0 25px 25px;
}

.accordion__item-content {
  display: none;
}

.accordion__item-content.active {
  display: block;
  animation: fadeIn 0.5s forwards;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  animation: fadeIn 0.5s forwards;
}
.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-white);
  padding: 30px 20px 20px;
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 500px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.modal-open {
  overflow: hidden;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form-title {
  text-align: left;
  font-size: 30px;
  font-weight: 600;
  padding-bottom: 20px;
  font-family: var(--font-text);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form-label {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 17px;
  font-weight: 700;
}
.form-input {
  width: 100%;
  height: 60px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding-inline: 15px;
  font-size: 16px;
  font-weight: 500;
  transition: var(--transition);
  color: #406383;
}
.form-input:focus {
  background-color: rgba(128, 145, 159, 0.1);
}
.form-input::placeholder {
  color: #406383;
}
.form .i-required {
  display: block;
  width: 10px;
}
.form .i-required::after {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='14' height='15' viewBox='0 0 14 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3crect y='0.5' width='14' height='14' rx='7' fill='%23F2F2F2'/%3e%3cpath d='M7 3.5V11.5M9.82837 4.67188L4.17151 10.3287M9.82837 10.3281L4.17151 4.67127M11 7.5L3 7.5' stroke='%2380919F' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  width: 14px;
  height: 15px;
  display: block;
}

.send_status {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
}

.dropdown {
  position: relative;
  width: max-content;
}
.dropdown-btn {
  width: max-content;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 87px;
  font-weight: 600;
  color: rgb(64, 99, 131);
}
.dropdown-btn span {
  background: no-repeat 0 100%;
  background-image: linear-gradient(var(--color-primary), var(--color-primary));
  background-size: 0% 1px;
  transition: var(--transition);
}
@media (max-width: 490px) {
  .dropdown-btn span {
    display: none;
  }
}
.dropdown-btn::after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23406383' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  width: 21px;
  height: 21px;
}
.dropdown-btn:hover span {
  background-size: 100% 1px;
}
.dropdown-btn.active::after {
  transform: rotate(180deg);
}
.dropdown-btn:hover, .dropdown-btn.active {
  background-color: rgba(33, 51, 66, 0.031372549);
}
.dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 87px;
  right: 0;
  width: 130px;
  background-color: #fff;
  padding: 10px;
  transform: translateY(-10px);
  transition: 0.2s;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}
.dropdown-content.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 600;
  color: rgb(64, 99, 131);
  height: 30px;
  padding-inline: 10px;
}

body {
  background-color: var(--color-bg);
  font-family: var(--font-text);
  color: #406383;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  line-height: 1.1;
}

h1 {
  font-size: clamp(40px, 5.3333333333vw, 80px);
}

h2 {
  font-size: clamp(35px, 3.3333333333vw, 50px);
}

main {
  display: flex;
  flex-direction: column;
  gap: var(--main-gap);
  margin-top: var(--header-height);
}

.header {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100vw;
  z-index: 100;
}
.header__options {
  display: flex;
  align-items: center;
  justify-self: end;
}
.header__inner {
  display: grid;
  grid-template-columns: 180px 1fr 300px;
  align-items: center;
  height: var(--header-height);
  background-color: var(--color-white);
  padding-inline: 20px 0;
  border-radius: var(--border-radius);
}
@media (max-width: 920px) {
  .header__inner {
    grid-template-columns: 1fr 278px;
  }
}
.header__inner-menu {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-self: center;
}
@media (max-width: 920px) {
  .header__inner-menu {
    display: none;
  }
}
.header__inner-menu a {
  font-size: 18px;
  font-weight: 500;
}
.header__inner-menu a span {
  background: no-repeat 0 100%;
  background-image: linear-gradient(var(--color-primary), var(--color-primary));
  background-size: 0% 1px;
  transition: var(--transition);
}
.header__inner-menu a:hover span {
  background-size: 100% 1px;
}
.header__contact {
  color: var(--color-white);
  font-weight: 600;
  height: 87px;
  padding-inline: 25px;
  background-color: var(--color-primary);
  transition: var(--transition);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}
.header__contact:hover {
  background-color: #2a4257;
}

.wrapper {
  height: 90vh;
  background-image: url("/assets/img/wrapper.png");
  background-size: cover;
  background-position: 20%;
  position: relative;
}
@media (max-width: 768px) {
  .wrapper {
    height: 100vh;
  }
}
.wrapper::before {
  content: "";
  width: 100%;
  height: 200px;
  left: 0;
  bottom: -2px;
  position: absolute;
  background: var(--wrapper-gradient);
}
.wrapper__inner {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .wrapper__inner {
    top: 20%;
  }
}
.wrapper__inner-text {
  font-size: 16px;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.wrapper__inner-brochure {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-top: 40px;
  background-color: var(--color-white);
  width: 100%;
  max-width: 680px;
  height: 90px;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}
@media (max-width: 1023px) {
  .wrapper__inner-brochure {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .wrapper__inner-brochure {
    grid-template-columns: 1fr;
    height: 140px;
  }
}
.wrapper__inner-brochure-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  gap: 10px;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  background-color: var(--color-primary);
  transition: var(--transition);
}
.wrapper__inner-brochure-btn svg {
  color: #80919f;
}
.wrapper__inner-brochure-btn:hover {
  background-color: #2a4257;
}
.wrapper__inner-brochure-text {
  font-size: 12px;
  padding-inline: 20px;
}
.wrapper__inner-detalic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: auto;
  background-color: var(--color-white);
  border-radius: 0 var(--border-radius) var(--border-radius) var(--border-radius);
  overflow: hidden;
  align-items: center;
}
@media (max-width: 1280px) {
  .wrapper__inner-detalic {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1023px) {
  .wrapper__inner-detalic {
    border-radius: 0 0 var(--border-radius) var(--border-radius);
  }
}
@media (max-width: 768px) {
  .wrapper__inner-detalic {
    grid-template-columns: 1fr;
  }
}
.wrapper__inner-detalic-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-areas: "i-icon i-label" "i-icon i-title";
  align-items: center;
  grid-gap: 1px 10px;
  padding: 15px 30px;
  height: auto;
}
@media (max-width: 1280px) {
  .wrapper__inner-detalic-item {
    padding: 15px;
  }
}
.wrapper__inner-detalic-item .item-icon {
  grid-area: i-icon;
}
.wrapper__inner-detalic-item .item-label {
  grid-area: i-label;
  font-size: 14px;
  font-weight: 500;
  color: #80919f;
  text-transform: uppercase;
}
.wrapper__inner-detalic-item .item-title {
  grid-area: i-title;
  font-size: 20px;
  font-weight: 600;
}

.inform__items {
  display: grid;
  grid-template-columns: repeat(4, minmax(100px, 200px));
  grid-gap: 15px;
  justify-content: center;
}
@media (max-width: 768px) {
  .inform__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
.inform__items span {
  display: flex;
  justify-content: center;
  padding: 10px 30px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  font-size: 14px;
  font-weight: 500;
}
.inform h2 {
  text-align: center;
  margin-inline: auto;
  max-width: 850px;
  width: 100%;
  margin-top: 30px;
}
.inform__action {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
.inform__text {
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
  font-size: var(--fs-text);
  margin-block: 40px;
  text-align: center;
}

.typebox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--spacer-20);
  overflow: hidden;
  height: 100%;
}
@media (max-width: 1023px) {
  .typebox {
    grid-template-columns: 1fr;
  }
}
.typebox__right {
  grid-template-areas: "col-r-1 col-r-2";
}
@media (max-width: 1023px) {
  .typebox__right {
    grid-template-areas: "col-r-2" "col-r-1";
    grid-gap: 0;
  }
}
.typebox__right__col-1 {
  grid-area: col-r-1;
  padding: 100px 50px;
}
.typebox__right__col-1 p {
  margin-top: 30px;
  font-size: var(--fs-text);
}
@media (max-width: 1023px) {
  .typebox__right__col-1 {
    padding: 30px 30px;
  }
}
.typebox__right__col-2 {
  grid-area: col-r-2;
  position: relative;
}
@media (max-width: 1023px) {
  .typebox__right__col-2 {
    width: 100%;
    height: 300px;
  }
}
.typebox__right__col-2 img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-type);
  object-fit: cover;
}
@media (max-width: 1023px) {
  .typebox__right__col-2 img {
    border-radius: var(--border-radius-type) var(--border-radius-type) 0 0;
  }
}
.typebox__left {
  grid-template-areas: "col-l-1 col-l-2";
}
@media (max-width: 1023px) {
  .typebox__left {
    grid-gap: 0;
    grid-template-areas: "col-l-1" "col-l-2";
  }
}
.typebox__left__col-1 {
  grid-area: col-l-1;
  position: relative;
}
@media (max-width: 1023px) {
  .typebox__left__col-1 {
    width: 100%;
    height: 300px;
  }
}
.typebox__left__col-1 img {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-type);
  object-fit: cover;
}
@media (max-width: 1023px) {
  .typebox__left__col-1 img {
    border-radius: var(--border-radius-type) var(--border-radius-type) 0 0;
  }
}
.typebox__left__col-2 {
  grid-area: col-l-2;
  padding: 100px 50px;
}
@media (max-width: 1023px) {
  .typebox__left__col-2 {
    padding: 30px 30px;
  }
}
.typebox__left__col-2 p {
  margin-top: 30px;
  font-size: var(--fs-text);
}

.bigcover img {
  width: 100%;
  height: 70vh;
  border-radius: var(--border-radius-type);
  object-fit: cover;
}
@media (max-width: 768px) {
  .bigcover img {
    height: 40vh;
  }
}

.video iframe {
  width: 100%;
  height: 700px;
}
@media (max-width: 768px) {
  .video iframe {
    height: 400px;
  }
}
.video__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  font-size: var(--fs-text);
  max-width: 730px;
  overflow: hidden;
}
.video__inner {
  margin-top: 30px;
  width: 100%;
  height: 700px;
  overflow: hidden;
  border-radius: var(--border-radius);
}
@media (max-width: 768px) {
  .video__inner {
    height: 400px;
  }
}

.parametrs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: var(--spacer-20);
}
@media (max-width: 1280px) {
  .parametrs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .parametrs {
    grid-template-columns: repeat(2, 1fr);
  }
}
.parametrs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
}
@media (max-width: 768px) {
  .parametrs__item {
    height: 180px;
  }
}
.parametrs__item-num {
  font-size: clamp(30px, 2.6666666667vw, 40px);
  font-weight: 700;
}
.parametrs__item-text {
  font-size: 16px;
  color: #80919f;
}

.gallery__line-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: var(--spacer-20);
}
.gallery__line-2 {
  margin-top: var(--spacer-20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--spacer-20);
}
.gallery img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.times__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--spacer-20);
}
@media (max-width: 1023px) {
  .times__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
.times__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 330px;
  border-radius: var(--border-radius);
  background-color: var(--color-white);
}
@media (max-width: 1023px) {
  .times__item {
    height: 250px;
  }
}
.times__item-icon {
  color: #80919f;
}
.times__item-num {
  font-size: clamp(20px, 2.6666666667vw, 40px);
  font-weight: 700;
}
.times__item-text {
  font-size: 16px;
  color: #80919f;
  font-weight: 400;
}

.map {
  margin-top: var(--spacer-20);
}
.map__inner {
  display: block;
}
.map__inner-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: var(--spacer-20);
  margin-top: var(--spacer-20);
}
@media (max-width: 1280px) {
  .amenities {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .amenities {
    grid-template-columns: repeat(2, 1fr);
  }
}
.amenities__item {
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
  height: 200px;
  text-align: center;
}
.amenities__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 1px solid #213342;
  color: var(--color-primary);
}
.amenities__item-text {
  font-size: 18px;
  font-weight: 600;
}

.textbox {
  border-radius: var(--border-radius);
  text-align: center;
  background-color: var(--color-white);
  padding: 100px 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .textbox {
    padding: 50px 30px;
  }
}
.textbox__text {
  width: 100%;
  max-width: 930px;
  margin-inline: auto;
  font-size: var(--fs-text);
}
.textbox__action {
  display: flex;
  justify-content: center;
}

.plans__inner {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "tab-text tab-img";
  grid-gap: var(--spacer-20);
  background-color: rgba(128, 145, 159, 0.1);
  border-radius: var(--border-radius);
  padding: 40px;
}
@media (max-width: 768px) {
  .plans__inner {
    grid-template-columns: 1fr;
    grid-template-areas: " tab-img" "tab-text";
    padding: 30px;
  }
}
.plans__inner-col-1 {
  grid-area: tab-text;
}
.plans__inner-col-2 {
  grid-area: tab-img;
}

.limited {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  margin-top: 30px;
  width: 100%;
  padding-inline: 40px;
  background-color: var(--color-white);
  border-radius: var(--border-radius);
  height: 90px;
}
@media (max-width: 1280px) {
  .limited {
    grid-template-columns: 1fr;
    grid-gap: 30px;
    height: 100%;
    padding-block: 40px;
  }
}
@media (max-width: 768px) {
  .limited {
    padding: 30px;
  }
}
.limited-text {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .limited-text {
    text-align: center;
  }
}
.limited-line {
  width: 100%;
  border-radius: var(--border-radius);
  height: 16px;
  position: relative;
  background-color: #dfe3e7;
}
.limited-line span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #718699;
  border-radius: var(--border-radius);
}
.limited-line-text {
  padding: 2px 12px;
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  border: 1px solid #e6e6e6;
  font-size: 24px;
  width: max-content;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -17px;
}

.project__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--spacer-20);
  margin-top: 50px;
}
@media (max-width: 1280px) {
  .project__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .project__inner {
    grid-template-columns: 1fr;
  }
}
.project__inner-item {
  display: block;
  overflow: hidden;
  position: relative;
  height: 350px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}
.project__inner-item:hover {
  transform: translateY(-3px);
}
.project__inner-item img {
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  width: 100%;
  height: 100%;
  max-height: 240px;
  object-fit: cover;
}
.project__inner-item-info {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: var(--border-radius);
  padding: var(--spacer-20);
}
.project__inner-item-info .item-title {
  font-size: 28px;
  font-weight: 600;
}
.project__inner-item-info .item-detalic {
  margin-top: 10px;
  display: flex;
  gap: 10px;
}
.project__inner-item-info .item-detalic-loc {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  border-radius: var(--border-radius);
  padding-inline: 15px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid var(--color-border);
}
.project__inner-item-info .item-detalic-loc::before {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9 11C9 11.7956 9.31607 12.5587 9.87868 13.1213C10.4413 13.6839 11.2044 14 12 14C12.7956 14 13.5587 13.6839 14.1213 13.1213C14.6839 12.5587 15 11.7956 15 11C15 10.2044 14.6839 9.44129 14.1213 8.87868C13.5587 8.31607 12.7956 8 12 8C11.2044 8 10.4413 8.31607 9.87868 8.87868C9.31607 9.44129 9 10.2044 9 11Z' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3cpath d='M17.657 16.6567L13.414 20.8997C13.039 21.2743 12.5306 21.4848 12.0005 21.4848C11.4704 21.4848 10.962 21.2743 10.587 20.8997L6.343 16.6567C5.22422 15.5379 4.46234 14.1124 4.15369 12.5606C3.84504 11.0087 4.00349 9.40022 4.60901 7.93844C5.21452 6.47665 6.2399 5.22725 7.55548 4.34821C8.87107 3.46918 10.4178 3 12 3C13.5822 3 15.1289 3.46918 16.4445 4.34821C17.7601 5.22725 18.7855 6.47665 19.391 7.93844C19.9965 9.40022 20.155 11.0087 19.8463 12.5606C19.5377 14.1124 18.7758 15.5379 17.657 16.6567Z' stroke='%2380919F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e ");
  width: 24px;
  height: 24px;
  display: block;
}
.project__inner-item-info .item-detalic-date {
  display: flex;
  align-items: center;
  background-color: #e8eaee;
  height: 40px;
  border-radius: var(--border-radius);
  padding-inline: 15px;
  font-size: 14px;
  font-weight: 600;
}

.faq__inner {
  margin-top: 50px;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}

.contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--spacer-20);
  padding: 40px;
  background-color: rgba(128, 145, 159, 0.1);
  border-radius: var(--border-radius);
  overflow: hidden;
}
@media (max-width: 768px) {
  .contacts {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}
.contacts__col-1 p {
  margin-top: 30px;
  font-size: var(--fs-text);
}
.contacts__col-2 .form-inner {
  margin-inline: auto;
  width: 100%;
  max-width: 480px;
  background-color: var(--color-white);
  padding: 30px;
  border-radius: var(--border-radius);
}
@media (max-width: 768px) {
  .contacts__col-2 .form-inner {
    max-width: 100%;
  }
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer__inner .btn {
    width: 100%;
  }
}
.footer__inner-col-2 {
  justify-self: end;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 768px) {
  .footer__inner-col-2 {
    justify-self: center;
  }
}
.footer__title {
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  font-family: var(--font-title);
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1;
}
.footer__label {
  margin-block: 25px 50px;
  font-size: 20px;
  font-weight: 700;
}
.footer__copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacer-20);
  margin-top: 30px;
  padding-block: 30px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__copy {
    flex-direction: column;
  }
}