@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;
}

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

button {
  cursor: pointer;
  background-color: transparent;
}

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

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

ul li {
  list-style: none;
}

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

a {
  color: #251607;
}

html {
  width: 100%;
  max-width: 100%;
  font-size: 30px;
  font-family: "Bellfort Bold", Arial, sans-serif;
  font-weight: 400;
  color: #251607;
}

:root {
  overflow: auto;
}
:root.lock {
  overflow: hidden;
  scrollbar-gutter: stable;
}

body {
  background: url("../img/bg.png") center/cover repeat-y;
}

.body__wrapper {
  overflow: hidden;
}

.element-animation-top {
  -webkit-transform: translate(0, -15px);
          transform: translate(0, -15px);
  opacity: 0;
}
.element-animation-top.element-show {
  -webkit-transition: all 1.5s ease 0s;
  transition: all 1.5s ease 0s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.element-animation-bottom {
  -webkit-transform: translate(0, 15px);
          transform: translate(0, 15px);
  opacity: 0;
}
.element-animation-bottom.element-show {
  -webkit-transition: all 1.5s ease 0s;
  transition: all 1.5s ease 0s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.element-animation-left {
  -webkit-transform: translate(-15px, 0);
          transform: translate(-15px, 0);
  opacity: 0;
}
.element-animation-left.element-show {
  -webkit-transition: all 1.5s ease 0s;
  transition: all 1.5s ease 0s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.element-animation-right {
  -webkit-transform: translate(15px, 0);
          transform: translate(15px, 0);
  opacity: 0;
}
.element-animation-right.element-show {
  -webkit-transition: all 1.5s ease 0s;
  transition: all 1.5s ease 0s;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  opacity: 1;
}

.container {
  width: 1720px;
  margin: 0 auto;
}
@media (width <= 1920px) {
  .container {
    width: 790px;
  }
}
@media (width <= 990px) {
  .container {
    padding: 0 17px;
    width: 100%;
  }
}

.sliders {
  padding: 0 0 150px 0;
}
@media (width <= 1920px) {
  .sliders {
    padding: 0 0 100px 0;
  }
}
@media (width <= 990px) {
  .sliders {
    padding: 0 0 70px 0;
  }
}

.slider1 {
  margin-bottom: 10px;
}

.slider__item {
  font-size: 1em;
  width: 394px;
  height: 405px;
  border: 3px solid #251607;
  margin: 0 10px 0 0;
}
@media (width <= 1920px) {
  .slider__item {
    width: 264px;
    height: 271px;
    margin: 0 7px 0 0;
  }
}
@media (width <= 990px) {
  .slider__item {
    width: 189px;
    height: 194px;
    margin: 0 5px 0 0;
  }
}

.slider__link {
  display: block;
  width: 100%;
  height: 100%;
}

.slider__controls {
  display: none;
}
@media (width <= 1920px) {
  .slider__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.slider__btn {
  display: inline-block;
  border-radius: 0.625em;
  width: 3.5em;
  height: 3.5em;
  padding: 1em;
  margin: 0 1.375em;
  margin: 0 1.9375em;
  cursor: pointer;
}
.slider__btn img {
  width: 100%;
  height: 100%;
}
.slider__btn-forward img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Слайдер */
/* Ограничивающая оболочка */
.slick-list {
  overflow: hidden;
  padding: 0;
}

/* Лента слайдов */
.slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* Стрелка */
.slick-arrow {
  font-size: 0;
  display: inline-block;
  display: none;
  border-radius: 0.625em;
  width: 56px;
  height: 56px;
  padding: 16px;
  margin: 0 24px 0 0;
  cursor: pointer;
}
.slick-arrow img {
  width: 100%;
  height: 100%;
}
/* Стрелка не активная */
.slick-arrow.slick-disabled {
  opacity: 0.2;
  cursor: default;
}

/* Стрелка влево */
.slick-arrow.slick-prev img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* Стрелка вправо */
button.slick-prev.slick-arrow,
button.slick-next.slick-arrow {
  display: none;
}

/* Точки (булиты) */
.slick-dots__box {
  display: inline-block;
}

.slick-dots {
  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;
}

.slick-dots li {
  list-style: none;
  margin: 0 11.5px;
}

/* Активная точка */
.slick-dots li.slick-active button {
  width: 18px;
  height: 18px;
  background-color: #E69AA4;
}

/* Элемент точки */
.slick-dots li button {
  font-size: 0;
  width: 14px;
  height: 14px;
  background-color: #D6CFC7;
  border-radius: 50%;
}

/*
контроллеры
кнопки, checkboxes, radiobuttons
*/
/*
$btn-color-bg: #0000;
$btn-color-txt-brdr: #122bd0;
$btn-color-text-hover: #fff;

.btn {
	background-color: $btn-color-bg;
	color: $btn-color-txt-brdr;
	padding: 8px 40px;
	margin: 0 25px;
	font-size: 20px;
	font-weight: 700;
	line-height: 36px;
	border-radius: 8px;
	border: 2px solid $btn-color-txt-brdr;
	transition: all 0.2s ease-out;
	cursor: pointer;
	&:hover{
		color: $btn-color-text-hover;
		background-color: $btn-color-txt-brdr;
		border: 2px solid $btn-color-txt-brdr;
	}
	&:active{
		background-color: $btn-color-bg;
		color: $btn-color-txt-brdr;
		border: 2px solid $btn-color-txt-brdr;
	}
}
*/
.ibg {
  position: relative;
}
.ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

/*
$Title-color-subtitle: #967675;
$Title-color-title: #23242C;

.Title {
	&__subtitle {
		font-weight: 300;
		font-size: 16px;
		line-height: 1.5;
		color: $Title-color-subtitle;
	}
	&__title {
		font-family: 'PlayfairDisplay';
		font-weight: 700;
		font-size: 102px;
		line-height: 1.0784;
		color: $Title-color-title;
	}
	&__btn {}
}
*/
/*
$form-txt-color: #000;
$form-txt-placeholder-color: #DCCBC6;
$form-bdrd-color: rgba(150, 118, 117, 0.5);
$form-txt-placeholder-color-hover: #CFADAC;
.form {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin: 0 -17.5px;
	@media (max-width: $md){
		flex-direction: column;
		align-items: center;
		margin: 0;
	}
	&__edit {
		flex: 1 0 50%;
		font-weight: 300;
		font-size: 28px;
		line-height: 1.5;
		padding: 9.5px 12.5px;
		margin: 0 17.5px;
		color: $form-txt-color;
		background-color: #0000;
		border-bottom: 1px solid $form-bdrd-color;
		&::placeholder {
			color: $form-txt-placeholder-color;
		}
		&:hover, &:active, &:focus {
			border-bottom: 1px solid $form-txt-color;
		}
		&:hover.form__edit::placeholder {
			color: $form-txt-placeholder-color-hover;
		}
	}
	&__btn {
		flex: 0 0 auto;
		margin: 0 17.5px;
	}
}
*/
.header {
  height: 85px;
  margin-top: 56px;
  padding-top: 56px;
}
@media (width <= 990px) {
  .header {
    background-color: #251607;
    margin: 0;
    padding: 0;
    height: 66px;
  }
}

.header__nav-mobile .container {
  display: none;
}
@media (width <= 990px) {
  .header__nav-mobile .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;
    height: 66px;
  }
}

.header__logo {
  position: relative;
  z-index: 3;
}

.header__burger {
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 3;
}

.header__burger svg path {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header__burger:hover svg path {
  stroke-width: 3;
}

.header__burger-dark svg path {
  stroke: #251607;
}

.nav__ul {
  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;
}

.nav__li {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 400;
  margin: 0 65px;
}
@media (width <= 990px) {
  .nav__li {
    margin: 0 30px;
  }
}
@media (width <= 1920px) {
  .nav__li {
    font-size: 20px;
  }
}

.nav__li a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav__li:hover a {
  color: #e69aa4;
}

.soc__item a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (width <= 990px) {
  .soc__item a {
    background-color: #e69aa4;
  }
}

.soc__item:hover a {
  background-color: #e69aa4;
}
@media (width <= 990px) {
  .soc__item:hover a {
    background-color: #251607;
  }
}

.soc__list {
  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: 0 8px;
}

.soc__box {
  width: 59px;
  height: 59px;
  display: block;
  background-color: #251607;
  position: relative;
}

.soc__img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 42px;
  height: 42px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (width <= 990px) {
  .nav__li,
  .nav__ul {
    display: block;
    text-align: center;
  }
  .nav__ul {
    padding: 140px 0;
  }
  .header__soc {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 140px;
  }
  .nav__li {
    font-size: 40px;
    margin: 0 0 70px 0;
  }
  #menu {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    top: -100vh;
    opacity: 0;
    z-index: 1;
    background-color: rgba(255, 240, 225, 0.97);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    overflow: auto;
  }
  #menu.active {
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 1;
  }
}
.bg {
  position: absolute;
}

.main {
  padding: 54px 0 0 0;
}

.top {
  padding: 0 0 128px 0;
}
@media (width <= 1920px) {
  .top {
    padding: 0 0 30px 0;
  }
}
@media (width <= 990px) {
  .top {
    padding: 0 0 46px 0;
  }
}

.top__subtitle {
  margin-bottom: 30px;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase;
}
@media (width <= 1920px) {
  .top__subtitle {
    font-size: 20px;
    font-weight: 400;
  }
}

.top__img img {
  width: 100%;
  margin-bottom: 30px;
}

.top__picture img {
  width: 100%;
  margin: 0 auto 30px auto;
  border: 3px solid #251607;
  display: block;
}
@media (width <= 990px) {
  .top__picture img {
    width: 100%;
  }
}

.top__txt {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
  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;
}
@media (width <= 990px) {
  .top__txt {
    font-size: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top__txt-hide {
  font-family: "HakusyuKaisyo_kk", sans-serif;
}
@media (width <= 990px) {
  .top__txt-hide {
    display: none;
  }
}

.grid-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 70px auto;
  grid-template-columns: auto auto;
  -ms-grid-rows: auto 30px auto 30px auto;
  grid-template-rows: auto auto auto;
  gap: 30px 70px;
      grid-template-areas: "img-big titles" "img-big img-wide" "txt txt-jp";
}
@media (width <= 1920px) {
  .grid-box {
    -ms-grid-columns: 50% 30px 50%;
    grid-template-columns: 50% 50%;
    -ms-grid-rows: auto 30px auto 30px auto 30px auto;
    grid-template-rows: auto auto auto auto;
    gap: 30px;
        grid-template-areas: "titles titles" "img-wide img-wide" "img-big txt" "img-big txt-jp";
  }
}
@media (width <= 990px) {
  .grid-box {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-rows: auto 0 auto 0 auto 0 auto;
    grid-template-rows: auto auto auto auto;
    gap: 0;
        grid-template-areas: "titles" "img-wide" "img-big" "txt" "txt-jp";
  }
}

.meet-haru__img-big {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  width: 704px;
  height: 827px;
  grid-area: img-big;
}
@media (width <= 1920px) {
  .meet-haru__img-big {
    width: 100%;
    height: auto;
  }
}
@media (width <= 990px) {
  .meet-haru__img-big {
    margin-bottom: 30px;
  }
}

.meet-haru__img-big img {
  border: 3px solid #251607;
}

.meet-haru__titles {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: titles;
}

.meet-haru__title {
  font-size: 289px;
  font-weight: 400;
  letter-spacing: -12px;
  text-align: right;
  text-transform: uppercase;
  margin-bottom: 60px;
}
@media (width <= 1920px) {
  .meet-haru__title {
    font-size: 140px;
    letter-spacing: -6px;
    text-align: center;
  }
}
@media (width <= 990px) {
  .meet-haru__title {
    font-size: 64px;
    margin-bottom: 30px;
    letter-spacing: 0;
    font-size: clamp(64px, 8.3vw, 140px);
  }
}

.meet-haru__subtitle {
  font-size: 30px;
  text-align: right;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media (width <= 1920px) {
  .meet-haru__subtitle {
    text-align: center;
  }
}
@media (width <= 990px) {
  .meet-haru__subtitle {
    font-size: 16px;
    font-size: clamp(16px, 4.4vw, 30px);
  }
}

.meet-haru__img-wide {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: img-wide;
  -ms-grid-row-align: end;
      align-self: end;
}
@media (width <= 990px) {
  .meet-haru__img-wide {
    margin-bottom: 50px;
  }
}

.meet-haru__img-wide img {
  border: 3px solid #251607;
}
@media (width <= 1920px) {
  .meet-haru__img-wide img {
    width: 100%;
  }
}

.meet-haru__txt {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: txt;
  font-size: 30px;
  text-align: left;
}
@media (width <= 1920px) {
  .meet-haru__txt {
    text-align: right;
  }
}
@media (width <= 990px) {
  .meet-haru__txt {
    text-align: center;
  }
}
@media (width <= 990px) {
  .meet-haru__txt {
    font-size: 16px;
    margin-bottom: 30px;
    font-size: clamp(16px, 4.4vw, 30px);
  }
}

.meet-haru__txt-jp {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  grid-area: txt-jp;
  font-size: 107px;
  font-family: "HakusyuKaisyo_kk", sans-serif;
  font-weight: 400;
  letter-spacing: -15px;
  text-transform: uppercase;
  text-align: right;
}

@media (width <= 1920px){
  .meet-haru__img-big {
    -ms-grid-row: 5;
    -ms-grid-row-span: 3;
    -ms-grid-column: 1;
  }
  .meet-haru__titles {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .meet-haru__img-wide {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .meet-haru__txt {
    -ms-grid-row: 5;
    -ms-grid-column: 3;
  }
  .meet-haru__txt-jp {
    -ms-grid-row: 7;
    -ms-grid-column: 3;
  }
}

@media (width <= 990px){
  .meet-haru__img-big {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .meet-haru__titles {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .meet-haru__img-wide {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .meet-haru__txt {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .meet-haru__txt-jp {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
}
@media (width <= 1920px) {
  .meet-haru__txt-jp {
    font-size: 35px;
    letter-spacing: 0px;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
}
@media (width <= 990px) {
  .meet-haru__txt-jp {
    text-align: center;
  }
}
@media (width <= 990px) {
  .meet-haru__txt-jp {
    font-size: 20px;
    font-size: clamp(20px, 5.6vw, 35px);
  }
}

.our-plans__title {
  font-size: 30px;
  font-style: normal;
  text-transform: uppercase;
  margin-bottom: 30px;
  text-align: center;
}
@media (width <= 990px) {
  .our-plans__title {
    font-size: clamp(16px, 4.4vw, 30px);
    line-height: 34px;
  }
}

.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: 437px 30px 437px;
  grid-template-rows: 437px 437px;
  gap: 30px;
      grid-template-areas: "img1 img2 img3" "img1 img4 img5";
  margin-bottom: 30px;
}
@media (width <= 1920px) {
  .grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: (300px)[5];
    grid-template-rows: repeat(5, 300px);
        grid-template-areas: "img5" "img2" "img3" "img4" "img1";
  }
}
@media (width <= 990px) {
  .grid {
    gap: 46px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 300px 46px 300px 46px 300px 46px 300px 46px 300px;
    grid-template-rows: repeat(5, 300px);
        grid-template-areas: "img5" "img2" "img3" "img4" "img1";
  }
}

.grid__element {
  position: relative;
  overflow: hidden;
}

.grid__element-1 {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: img1;
}

.grid__element-2 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: img2;
}

.grid__element-3 {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
  grid-area: img3;
}

.grid__element-4 {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: img4;
}

.grid__element-5 {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
  grid-area: img5;
}

@media (width <= 1920px){
  .grid__element-1 {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .grid__element-2 {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
  }
  .grid__element-3 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid__element-4 {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
  }
  .grid__element-5 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

@media (width <= 990px){
  .grid__element-1 {
    -ms-grid-row: 9;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .grid__element-2 {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .grid__element-3 {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .grid__element-4 {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  .grid__element-5 {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}

.grid__link {
  display: block;
  width: 100%;
  height: 100%;
}

.grid__img img {
  width: 100%;
  border: 3px solid #251607;
}

.grid__title-subtitle {
  position: absolute;
  width: 100%;
  bottom: 90px;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  z-index: 2;
  text-align: left;
  padding: 0 0 30px 30px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media (width <= 1920px) {
  .grid__title-subtitle {
    text-align: center;
  }
}
@media (width <= 990px) {
  .grid__title-subtitle {
    text-align: center;
  }
}

.grid__title {
  color: #fff0e1;
  font-size: 40px;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0 0 10px 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.grid__element-1 .grid__title-subtitle {
  text-align: center;
}

.grid__subtitle {
  color: #aeaeae;
  font-size: 16px;
  line-height: 1.25;
  position: relative;
  top: 20px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.our-plans__txtblock {
  font-size: 35px;
  text-transform: uppercase;
  font-family: "HakusyuKaisyo_kk", sans-serif;
  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;
}
@media (width <= 990px) {
  .our-plans__txtblock {
    display: none;
  }
}

.grid__element:hover .grid__title-subtitle {
  bottom: 0;
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.grid__element:hover .grid__title {
  font-size: 70px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media (width <= 990px) {
  .grid__element:hover .grid__title {
    font-size: clamp(50px, 13.88vw, 70px);
  }
}

.grid__element:hover .grid__subtitle {
  top: 0;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.darkbg:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(0, 0, 0)), color-stop(50%, rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(255, 255, 255, 0) 50%);
}

.team .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 50px 227px;
  grid-template-columns: auto 227px;
  -ms-grid-rows: auto 90px auto;
  grid-template-rows: auto auto;
  gap: 90px 50px;
      grid-template-areas: "title subtitle" "images subtitle";
}
@media (width <= 1920px) {
  .team .container {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -ms-grid-rows: auto 33px auto 33px auto;
    grid-template-rows: auto auto auto;
        grid-template-areas: "title" "subtitle" "images";
    gap: 33px 0;
  }
}
@media (width <= 990px) {
  .team .container {
    gap: 30px 0;
  }
}

.team__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
  color: #251607;
  font-size: 289px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -12px;
}

.footer__body > .team__title {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}
@media (width <= 1920px) {
  .team__title {
    margin-bottom: 11px;
    font-size: 140px;
    letter-spacing: 0;
    text-align: center;
  }
}
@media (width <= 990px) {
  .team__title {
    font-size: 64px;
    margin-bottom: 10px;
  }
}

.team__subtitle {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: subtitle;
  font-family: "HakusyuKaisyo_kk", sans-serif;
  color: #251607;
  font-size: 205px;
  line-height: normal;
  letter-spacing: -29px;
}

.footer__body > .team__subtitle {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
}
@media (width <= 1920px) {
  .team__subtitle {
    font-size: 35px;
    letter-spacing: 0;
    text-align: center;
  }
}
@media (width <= 990px) {
  .team__subtitle {
    font-size: 20px;
  }
}

.team__imagesbox {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: images;
}
@media (width <= 1920px) {
  .team__imagesbox {
    display: none;
  }
}

.team__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 100px;
}

.team__images-1 {
  margin-bottom: 9px;
}

.team__link,
.slider__link {
  display: block;
  width: 100%;
  height: 100%;
}

.team__imgbox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 62%;
          flex: 0 0 62%;
  position: relative;
  height: 364px;
  background: #251607;
  margin: 0 -100px;
}

.team__imgbox-1,
.team__imgbox-1 img {
  clip-path: polygon(0 0, 100% 0, 84.5% 100%, 0% 100%);
}

.team__imgbox-2,
.team__imgbox-2 img {
  clip-path: polygon(15.7% 0, 100% 0, 100% 100%, 0% 100%);
}

.team__imgbox-3,
.team__imgbox-4 {
  height: 312px;
}

.team__imgbox-3,
.team__imgbox-3 img {
  clip-path: polygon(0 0, 100% 0, 84.5% 100%, 0% 100%);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 52.2%;
          flex: 0 0 52.2%;
}

.team__imgbox-4,
.team__imgbox-4 img {
  clip-path: polygon(11.5% 0, 100% 0, 100% 100%, 0% 100%);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70.3%;
          flex: 0 0 70.3%;
}

.team__img {
  position: absolute;
  top: 3px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 6px);
  -o-object-fit: cover;
     object-fit: cover;
}

.team__txtbox-title {
  position: absolute;
  bottom: 30px;
  width: 100%;
  color: #fff0e1;
  font-size: 30px;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.team__imgbox:hover .team__txtbox-title,
.team-slider__imgbox:hover .team__txtbox-title {
  font-size: 50px;
  bottom: 50px;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}
@media (width <= 1920px) {
  .team__imgbox:hover .team__txtbox-title,
  .team-slider__imgbox:hover .team__txtbox-title {
    font-size: 35px;
  }
}

.team__slider {
  display: none;
}
@media (width <= 1920px) {
  .team__slider {
    display: block;
    margin: 0 0 30px 0;
  }
}

.slider3 .slider__item {
  font-size: 1em;
  background: #251607;
}

.team-slider__imgbox {
  position: relative;
  width: 400px;
  height: 364px;
  background: #251607;
}

.team-slider__imgbox-1 {
  margin: 0 -54px 0 9px;
}

.team-slider__imgbox-2 {
  margin: 0 0px 0 0px;
}

.team-slider__imgbox-3 {
  margin: 0 -54px 0 9px;
}

.team-slider__imgbox-4 {
  margin: 0 0px 0 0px;
}

.team-slider__imgbox-1,
.team-slider__imgbox-1 img {
  clip-path: polygon(0 0, 100% 0, 84.5% 100%, 0% 100%);
}

.team-slider__imgbox-2,
.team-slider__imgbox-2 img {
  clip-path: polygon(15.7% 0, 100% 0, 100% 100%, 0% 100%);
}

.team-slider__imgbox-1 .team__link .team__txtbox-title,
.team-slider__imgbox-3 .team__link .team__txtbox-title {
  -webkit-transform: translate(-20px, 0);
          transform: translate(-20px, 0);
}

.team-slider__imgbox-3,
.team-slider__imgbox-3 img {
  clip-path: polygon(0 0, 100% 0, 84.5% 100%, 0% 100%);
}

.team-slider__imgbox-4,
.team-slider__imgbox-4 img {
  clip-path: polygon(15.7% 0, 100% 0, 100% 100%, 0% 100%);
}

.team-slider__img {
  position: absolute;
  top: 3px;
  left: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 6px);
  -o-object-fit: cover;
     object-fit: cover;
}

.spaces {
  padding: 0 0 150px 0;
}
@media (width <= 1920px) {
  .spaces {
    padding: 0 0 100px 0;
  }
}
@media (width <= 990px) {
  .spaces {
    padding: 0 0 50px 0;
  }
}

/*
$sm: 576px;				//576
$md: 768px;				//768
$lg: 992px;				//992
$xl: 1200px;			//1200
$xxl: 1400px;			//1400
*/
.footer {
  padding: 20px 0 65px 0;
}
@media (width <= 1920px) {
  .footer {
    background-color: #251607;
  }
}

.footer__body {
  display: -ms-grid;
  display: grid;
  gap: 36px;
  -ms-grid-rows: auto 36px auto 36px auto;
  grid-template-rows: repeat(3, auto);
  -ms-grid-columns: 1fr 36px 1fr;
  grid-template-columns: repeat(2, 1fr);
      grid-template-areas: "subtitle img" "nav img" "title title";
}
@media (width <= 1920px) {
  .footer__body {
    gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 20px auto 20px auto 20px auto;
    grid-template-rows: repeat(4, auto);
        grid-template-areas: "nav" "subtitle" "img" "title";
  }
  .footer__body > .team__title {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .footer__body > .team__subtitle {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
}

.footer__subtitle {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: subtitle;
  font-size: 107px;
  font-family: "HakusyuKaisyo_kk", sans-serif;
  line-height: normal;
  letter-spacing: -15px;
  margin-bottom: 34px;
}

.footer__body > .footer__subtitle {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
}
@media (width <= 1920px) {
  .footer__subtitle {
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0;
    margin-bottom: 0;
  }
}

.footer__title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
  font-size: 358px;
  margin-top: -146px;
  line-height: normal;
  letter-spacing: -16px;
  text-align: center;
  text-transform: uppercase;
}

.footer__body > .footer__title {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
}
@media (width <= 1920px) {
  .footer__title {
    font-size: 128px;
    line-height: 137px;
    letter-spacing: 0;
    color: #e69aa4;
    margin-top: -24px;
  }
}
@media (width <= 990px) {
  .footer__title {
    font-size: 90px;
  }
}

.footer__nav {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: nav;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width <= 1920px) {
  .footer__list {
    display: block;
  }
}

.footer__item {
  font-size: 40px;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
}
@media (width <= 1920px) {
  .footer__item {
    text-align: center;
    font-size: 30px;
    margin-bottom: 39px;
  }
}

.footer__item a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (width <= 1920px) {
  .footer__item a {
    color: #fff;
  }
}

.footer__item:hover a {
  color: #e69aa4;
}

.footer__soc.soc__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.soc__item-footer a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (width <= 1920px) {
  .soc__item-footer a {
    background-color: #e69aa4;
  }
}

.soc__item-footer:hover a {
  background-color: #e69aa4;
}
@media (width <= 1920px) {
  .soc__item-footer:hover a {
    background-color: #251607;
  }
}

.footer__img {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 3;
  grid-area: img;
  border: 3px solid #251607;
}

@media (width <= 1920px){
  .team__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .team__subtitle {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .team__imagesbox {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  .footer__subtitle {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .footer__body > .footer__subtitle {
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  .footer__title {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer__body > .footer__title {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .footer__nav {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .footer__img {
    -ms-grid-row: 5;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
}
@media (width <= 1920px) {
  .footer__img {
    padding-top: 28.8%;
  }
}
@media (width <= 460px) {
  .footer__img {
    height: 0;
    padding-top: 41.7%;
  }
}

/*
		@media (max-width: $xxl) {
			padding: 92px 92px 92px 92px;
		}
		@media (max-width: $xl) {
			padding: 92px 92px 92px 92px;
		}
		@media (max-width: $lg) {
			padding: 92px 92px 92px 92px;
		}
		@media (max-width: $md){
			padding: 92px 92px 92px 92px;
		}
		@media (max-width: $sm) {
			padding: 92px 92px 92px 92px;
		}
		@media (max-width: $nav-break-point-width) {
			padding: 92px 92px 92px 92px;
		}
*/