@charset "UTF-8";

/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

textarea {
  resize: none;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

/*--------------------*/
:root {
  --index: calc(1vw + 1vh);
}

html,
body {
  height: 100%;
}

body {
  font-family: "Open Sans",    sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 137.5%;
  background: #ececec;
  /* 22/16 */
  color: #1d1d1d;
}

body._lock {
  overflow: hidden;
}

.main-wrapper {
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

[class*=__container] {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 14px;
}

.header {
  padding: 32px 0;
  background: #f2f2f2;
}

.header__logo {
  font-size: 40px;
  font-weight: 700;
  -webkit-text-stroke: 2px rgb(35, 35, 35);
  color: transparent;
  text-transform: uppercase;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

@media (max-width: 1140px) {
  .header__container {
    gap: calc(22px + 20 * (100vw - 322px) / 810);
  }
}

@media (max-width: 767.98px) {
  .header__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
  }
}

.header__button {
  color: rgb(0, 0, 0);
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 27px;
  padding: 7px 42px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 100px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (any-hover: hover) {
  .header__button:hover {
    background: #121212;
    color: #fff;
  }
}

.header-menu-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 38px;
}

@media (max-width: 1140px) {
  .header-menu-nav__list {
    gap: calc(22px + 20 * (100vw - 322px) / 810);
  }
}

.header-menu-nav__link {
  color: rgb(20, 20, 20);
  font-family: 'Open sans', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 138.888889%;
  padding: 10px;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

@media (any-hover: hover) {
  .header-menu-nav__link:hover {
    border-color: #121212;
  }
}

.hero {
  position: relative;
  padding-top: 65px;
  padding-bottom: 65px;
}

@media (min-width:900px){
  .hero {
    height: calc(100vh - 96px);
  }
  .hero__title {
    font-size: 54px !important;
  }
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 66.67%;
  background-color: #96b0ff;
  z-index: -1;
}

@media (max-width:768px){
  .hero:before {
    width: 100%;
  }
}

.hero__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row-reverse;
  gap: 65px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  height: 100%;
}

@media (max-width: 767.98px) {
  .hero__container {
    padding-top: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.hero__info {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.hero__subtitle {
  margin-bottom: 65px;
}

.hero__decor {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
}

.hero__decor img {
  max-height: 330px;
  object-fit: cover;
}

.button {
  font-family: inherit;
  border-radius: 100px;
  background: rgb(67, 89, 228);
  padding: 8px 32px;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  /* 25/18 */
  color: rgb(255, 244, 244);
  text-transform: uppercase;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}

@media (any-hover: hover) {
  .button:hover {
    border-color: rgb(6, 6, 6);
    background: transparent;
    color: rgb(0, 0, 0);
  }
}

.title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3;
  /* 33/24 */
  text-transform: uppercase;
  margin-bottom: 25px;
}

@media (max-width: 1140px) {
  .title {
    font-size: calc(18px + 6 * (100vw - 322px) / 810);
  }
}

.info {
  padding-top: 44px;
}

.info__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 37px;
}

.info__title {
  margin-bottom: 0;
}

.info__columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  margin-bottom: 30px;
  gap: 22px;
}

.info__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.info__column img {
  border-radius: 22px;
  aspect-ratio: 260/196;
  width: 100%;
  height: auto;
}

.info__bottom {
  max-width: 324px;
  margin-left: auto;
}

.info__text {
  padding-top: 65px;
  padding-bottom: 65px;
  max-width: 600px;
  margin: 0 auto;
}

.title__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding-bottom: 22px;
}

@media (max-width: 1140px) {
  .info__text {
    padding-top: calc(70px + 30 * (100vw - 322px) / 810);
  }
}

@media (max-width: 1140px) {
  .info__text {
    padding-bottom: calc(70px + 80 * (100vw - 322px) / 810);
  }
}

.details {
  padding-top: 150px;
  padding-bottom: 150px;
}

@media (max-width: 1140px) {
  .details {
    padding-top: calc(70px + 80 * (100vw - 322px) / 810);
  }
}

@media (max-width: 1140px) {
  .details {
    padding-bottom: calc(70px + 80 * (100vw - 322px) / 810);
  }
}

.details{
  position: relative;
}

.details:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 66.67%;
  background-color: #96b0ff;
  z-index: -1;
}

@media (max-width:768px){
  .details:before {
    width: 100%;
  }
}


.details__item:not(:last-child) {
  margin-bottom: 100px;
}

@media (max-width: 1140px) {
  .details__item:not(:last-child) {
    margin-bottom: calc(30px + 70 * (100vw - 322px) / 810);
  }
}

@media (min-width: 767.98px) {
  .details__subtitle {
    max-width: 419px;
  }
}

.info__title {
  font-size: 46px;
  text-align: center;
}

.get-in-touch {
  padding-top: 65px;
  padding-bottom: 150px;
  background-color: #fff;
}

@media (max-width: 1140px) {
  .get-in-touch {
    padding-bottom: calc(70px + 80 * (100vw - 322px) / 810);
  }
}

.get-in-touch__decor {
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 1140px) {
  .get-in-touch__decor {
    margin-bottom: calc(30px + 20 * (100vw - 322px) / 810);
  }
}

.get-in-touch__text-block {
  max-width: 419px;
  margin-bottom: 50px;
}

@media (max-width: 1140px) {
  .get-in-touch__text-block {
    margin-bottom: calc(30px + 20 * (100vw - 322px) / 810);
  }
}

.get-in-touch-form {
  max-width: 495px;
}

.get-in-touch-form__input {
  padding: 10px 10px 10px 50px;
  font-weight: 700;
  display: block;
  width: 100%;
  border: 1px solid rgb(44, 44, 44);
  margin-bottom: 10px;
}

.get-in-touch-form__button {
  margin-top: 22px;
  display: block;
  padding: 10px 100px;
  border-radius: 0;
}

.footer {
  padding: 30px 0;
  text-align: center;
  background: rgb(24, 24, 24);
  color: rgb(255, 255, 255);
}

.footer-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}

.footer-menu__link {
  color: rgb(255, 255, 255);
}

@media (any-hover: hover) {
  .footer-menu__link:hover {
    text-decoration: underline;
  }
}

.info {
  padding-bottom: 65px;
  background-color: #fff;
}

.reversed {
  display: flex;
  flex-direction: column;
}

.upd-flex {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

@media (min-width:768px){
  .upd-flex img {
    max-width: 40%;
    object-fit: cover;
    max-height: 280px;
  }
}

.upd-flex p {
  max-width: 400px;
}

.gallery {
  padding-top: 65px;
}

.gallery__title h2 {
  font-weight: bold;
  font-size: 24px;
}


.gallery__photos {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.gallery__photos img {
  width: 100%;
  aspect-ratio: 360/247;
  max-width: 365px;
  height: auto;
  object-fit: cover;
}

@media (max-width:600px) {
  .upd-flex {
    flex-direction: column;
    gap: 30px;
  }
}

.thxw {

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.thx h1 {
  font-size: 34px;
  text-align: center;
  color: #121212;
  font-weight: 700;
  line-height: 120%;
}

.thx a {
  font-size: 22px;
  padding: 8px 16px;
  border: 2px solid #121212;
  text-align: center;
  display: inline-block;
  margin: 22px auto;
  max-width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #121212;
  border-radius: 16px;
}

.description,
.info {
  padding-top: 80px;
}

.description__text span {
  font-weight: 700;
}

.description__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.get-in-touch__container {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: center;
}

@media (max-width:768px){
  .get-in-touch__container {
    grid-template-columns: 1fr;
  }
}