:root {
  --black: #111010;
  --green: #2B7141;
  --yellow: #FFFFB7;
  --brown: #4F2515;
  --light-green: #C0EDCE;
}
@font-face {
   font-family: 'Palatino Linotype';
   src: url(../assets/fonts/palab.ttf) format(truetype);
}
html {
  scroll-behavior: smooth;
}
* {
   box-sizing: border-box;
}

body {
   max-width: 1440px;
   margin: auto;
   font-family: 'Roboto', sans-serif;
   font-size: 22px;
   font-weight: 400;
    overflow-x: hidden;
}
/*Предзагрузчик*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #75ce91a7;
  z-index: 1001;
}
.preloader-image {
  position: relative;
  text-align: center;
/*  width: 64px;
  height: 64px;;*/
}

.loaded_hiding .preloader {
  transition: 0.3s opacity;
  opacity: 0;
}

.loaded .preloader {
  display: none;
}


/*Видео*/
.video-fon {
  position: relative;
  height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(134deg, rgba(81, 30, 19, 0.88) 20%, rgba(77, 36, 36, 0.00) 100%), url(../assets/images/photos/7_10.jpg), lightgray 0px -66.835px / 99.991% 133.491% no-repeat;
    background-size: cover;
    background-position: 50% 100%;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   display: flex;
   padding: 48px 0px 100px 0px;
   flex-direction: column;
   justify-content: start;
   gap: 20%;
}
/*.hidden {
  visibility: hidden;
}*/
.head {
  width: 100%;
   position: sticky;
   top: 0px;
   display: flex;
   justify-content: flex-end;
   gap: 3%;
   z-index: 10;
}
.fixed {
  max-width: 1440px;
  position: fixed;
  top: 0px;
  z-index: 10;
}
.menu {
  width: 80%;
   display: flex;
   flex-direction: column;
   justify-items: flex-end;
}

.logo {
   width: 166px;
   height: 110px;
   animation: slide-in-left 0.5s 1s cubic-bezier(.25,.46,.45,.94) both;
   /*margin: 0 42px 0 76px;
   background-image: url(../assets/logo.svg);
   background-repeat: no-repeat;*/
}
@keyframes slide-in-left {
  0% {
    transform:translateX(-500px);
    opacity:0
  }
  100% {
    transform:translateX(0);
    opacity:1
  }
}

ul {
   margin: 0;
   padding: 0px;
   padding-top: 4px;
   list-style: none;
}

.contacts-head {
  width: 100%;
   height: 72px;
   padding-left: 9%;
   display: flex;
   align-items: center;
   justify-content: space-between;
  /* column-gap: 6%;*/
   font-size: 16px;
   color: #FFFFB7;
   background-color: #2B7141;
   clip-path: polygon(0% 0%, 100.1% 0%, 100% 100%, 7% 100%);
   animation:slide-in-right 0.5s 1s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes slide-in-right {
  0% {
    transform:translateX(500px);
    opacity:0
  }
  100% {
    transform:translateX(0);
    opacity:1
  }
}

.phones-head li:first-child,
.adress-head li:first-child,
.times-head li:first-child {
   padding-bottom: 10px;
}

.phones-head li:first-child::before,
.phones-head li:last-child::before,
.adress-head::before,
.times-head::before {
   content: '';
   width: 24px;
   height: 24px;
   position: absolute;
   left: 0;
}

.phones-head li:first-child::before {
   background: url(../assets/icons/phone.svg);
   bottom: 10px;
}

.phones-head li:last-child::before {
   background: url(../assets/icons/phone-mobi.svg);
   bottom: 2px;
}

.adress-head::before {
   background: url(../assets/icons/place.svg);
   bottom: 10px;
}

.times-head::before {
   background: url(../assets/icons/clock.svg);

}

.phones-head li,
.adress-head,
.times-head {
   position: relative;
   padding-left: 35px;
}
.phones-head a:hover,
.adress-head a:hover {
  /*font-weight: 500;*/
  color: var(--brown);
}

.phones-head a,
.adress-head a {
  text-decoration: none;
  color: var(--yellow);
}
.times-head li:last-child {
   text-align: right;
}

.table {
  width: 140px;
   height: 35px;
   /*padding: 8px 16px;*/
   margin-right: 60px;
   color: var(--yellow, #FFFFB7);
   font-size: 16px;
   text-align: center;
   border-radius: 20px;
   border: 3px solid var(--yellow, #FFFFB7);
   background: var(--brown, #4F2515);
}
.services .table {
	margin-right:0;
}

.table:hover,
.send:hover {
  cursor: pointer;
  font-weight: 600;
  /*color: #4F2515;*/
  background:#2B7141;
  /*border: 3px solid var(--brown);*/
}
.adapt {
  display: none;
}
/*Выпадающая форма*/
.zakaz {
  position: absolute;
  top: 72px;
  width: 28%;
  max-height: 0px;
  overflow: hidden;
  background-color: var(--green);
  transform: translateX(-14%);
  transition: max-height 0.7s ease;
  z-index: 30;
}
.zakaz-inner {
  padding: 24px 16px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.zakaz.visible {
  max-height: 355px;
}
.zakaz-close {
  width: 100%;
  display: flex;
  justify-content: end;
  color: var(--brown);
}
.zakaz-close i {
  font-size: 2rem;
}
.zakaz-close:hover {
  cursor: pointer;
  color: var(--yellow);
}
/*.zakaz-body {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}*/
.zakaz-a {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.zakaz-a li {
  position: relative;
  padding-left: 35px;
}
.zakaz-a > li a{
  text-decoration: none;
  font-size: 28px;
  font-weight: 600;
  color: #4F2515;
}
.zakaz-a > li a:hover {
  color: #FFFFB7;
}
.zakaz-a li:first-child::before,
.zakaz-a li:last-child::before {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
}
.zakaz-a li:first-child::before {
  background: url(../assets/icons/phone.svg);
  background-repeat: no-repeat;
  bottom: 3px;
}

.zakaz-a li:last-child::before {
  background: url(../assets/icons/phone-mobi.svg);
  bottom: 3px;
}

.send {
  width: 160px;
   height: 44px;
   color: var(--yellow, #FFFFB7);
   font-size: 18px;
   text-align: center;
   border-radius: 20px;
   border: 3px solid var(--yellow, #FFFFB7);
   background: var(--brown, #4F2515);
}
nav {
   margin-left: 110px;
   background-color: #FFFFB7;
   clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 3.5% 100%);
   animation:slide-in-right-nav 0.5s 1s cubic-bezier(.25,.46,.45,.94) both;
}
@keyframes slide-in-right-nav {
  0% {
    transform:translateX(500px);
    opacity:0
  }
  100% {
    transform:translateX(0);
    opacity:1
  }
}

.nav {
   display: flex;
   align-items: center;
   justify-content: space-evenly;
   /*width: 1044px;*/
   height: 32px;
   padding: 0;
   text-align: center;
}
.nav > li a {
  text-decoration: none;
  font-size: 20px;
  color: var(--black, #111010);
}
.nav > li a:hover {
  font-weight: 500;
  color: var(--green);
  border-bottom: var(--green) solid 4px;
  transition: 0.3s;
}
.name {
   display: flex;
   justify-content: flex-start;
   padding-left: 10%;
   align-items: center;
}

h1 {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   margin: 0;
   padding-bottom: 24px;
   color: var(--yellow, #FFFFB7);
   font-family: 'Palatino Linotype';
   font-size: 80px;
   font-weight: 500;
   /*animation: showname 5s 4s 1 normal none*/
   animation: tracking-in-expand-fwd 1s 1s 1 cubic-bezier(.215,.61,.355,1.000) both;
}
h1 span:last-child {
  padding-top: 24px;
  text-transform: uppercase;
}

@keyframes tracking-in-expand-fwd {
  0% {
    letter-spacing:-.5em;
    transform:translateZ(-700px);
    opacity:0
  }
  40% {
    opacity:.5
  }
  100% {
    transform:translateZ(0);
  opacity:1
  }
}
/*@keyframes showname {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}*/

/*Слайдер*/
/*.slider-container {
  display: grid;
  place-items: center;
}

.slider {
   width: 25rem;
   height: 25rem;
   display: flex;
  gap: 0.2rem;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
    background: url(../assets/fon_slider.svg), -188.469px -168.482px / 158.87% 171.647% no-repeat;
  border-radius: 50%;
}
.img-part {
  flex-grow: 1;
  width: 100%;
  background-image: url(../assets/images/slide-1.jpg);
  background-repeat: no-repeat;
  background-position-x: 88%;
  /*background-position-y: 54%;
  background-attachment: fixed;
  position: relative;*/
/*}

.img-part:nth-child(even) {
  background-position-x: 90rem;
  animation: bgAnimEven 6s 6s forwards infinite;
}

@keyframes bgAnimEven {
  0% {
    background-position-x: 90rem;
  }
  5%,
  95% {
    background-position-x: 88%;
  }
  100% {
    background-position-x: 90rem;
  }
}

.img-part:nth-child(odd) {
  background-position-x: -30rem;
  animation: bgAnimOdd 6s 6s forwards infinite;
}

@keyframes bgAnimOdd {
  0% {
    background-position-x: -30rem;
  }
  5%,
  95% {
    background-position-x: 88%;
  }
  100% {
    background-position-x: -30rem;
  }
}
.img-part-1 {
  background-position-y: 0;
}
.img-part-2 {
  background-position-y: 50%;
}
.img-part-3 {
  background-position-y: 100%;
}*/

/*Карточки*/
.section {
   display: flex;
   height: 880px;
   justify-content: space-around;
}

.services {
  width: 100%;
  height: 100%;
  position: relative;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}
.ball {
    display: flex;
    width: 291px;
    height: 291px;
  }
.services:hover {
    cursor: pointer;

    .ball {
        border-radius: 50%;
        box-shadow: 0 0px 35px 14px rgba(255, 255, 183, 1)
    }
}
.front,
.back {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  /*gap: 50px;*/
  backface-visibility: hidden;
  overflow: hidden;
  transition: transform .6s linear;
}
.front{
  transform: perspective(600px) rotateY(0deg);
}
.front-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.back{
  transform: perspective(600px) rotateY(180deg);
  background-color: #f1f1f1;
}
.back-text {
  text-align: center;
}
h2 {
   font-size: 48px;
   font-weight: 600;
   letter-spacing: 7.2px;
   margin: 0;
}

p {
   margin: 0;
   line-height: 30px;
}

.services h2 {
   color: var(--brown, #4F2515);
   text-align: center;
}

.services-name,
.services-text  {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
}

.services-name {
  padding: 0 10px;
   gap: 24px;
}

.kiy {
   width: 100%;
   height: 1%;
   background: url(../assets/kiy.svg) no-repeat;
}
.front .kiy {
  background-position: center;
  background-size: 80%;
  height: 10px;
}
.services-text {
   gap: 22px;
}
.picture img{
  height: 180px;
}

/*Переворачивающиеся карточки*/
.back {
  background: var(--light-green, #C0EDCE);
}
.yellow {
  background: #f6efcd;
}
.services-name .green {
  color: var(--green);
}
.services-price {
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.services-price div {
  display: flex;
  justify-content: space-between;
}

td {
    padding: 10px 0;
}
/*.services-discription {
  width: 75%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 8px;
}
.services-discription p {
  line-height: 30px;
}*/
.services:hover {
  cursor: pointer;
}
/*.services:hover > .front{
  transform: perspective(600px) rotateY(-180deg);
}
.services:hover > .back{
  transform: perspective(600px) rotateY(0deg);
}*/

/*Календарь*/
.caption {
   display: flex;
   padding: 48px 0px;
   justify-content: center;
   align-items: center;
   gap: 112px;
   align-self: stretch;
   background: var(--brown, #4F2515);
}

.caption h2 {
   color: var(--yellow, #FFFFB7);
}
.caption-button {
   width: 96px;
   height: 96px;
   background: url(../assets/ball.svg) no-repeat;
   border: none;
   border-radius: 50%;
}
.caption-button:hover {
   cursor: pointer;
   animation:scale-up-center .4s 1 cubic-bezier(.39,.575,.565,1.000) both;
}
.caption-button i {
   color: #4F2515;
}

@keyframes scale-up-center {
  0% {
    transform:scale(1)
  }
  100% {
    transform:scale(1.2)
  }
}

.contaner {
   display: flex;
   padding: 72px 120px;
   justify-content: space-around;
   align-items: center;
   /*gap: 80px;*/
   background: var(--yellow, #FFFFB7);
   background: url(../assets/fon_slider.svg);
}

.left {
  width: 35%;

}
.calendar {
 /* position: relative;*/
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--black, #111010);
  border-radius: 24px;
  border: 6px solid var(--brown);
  background-color: #fff;
  box-shadow: -1px -1px 20px 1px #FFFFB7;
}

.calendar .month {
  width: 100%;
 /* height: 150px;*/
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 24px 0px;
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--yellow, #FFFFB7);
  border-radius: 16px 16px 0px 0px;
  background: var(--brown);
}
.calendar .month .prev,
.calendar .month .next {
  cursor: pointer;
}
.calendar .month .prev:hover,
.calendar .month .next:hover {
  color: var(--green);
}
.calendar .weekdays {
  width: 100%;
  /*height: 100px;*/
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
}
.weekdays div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.weekdays .off {
  color: var(--green, #2B7141);
}
.calendar .days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 48px;
  justify-items: center;
  align-items: center;
  color: var(--black, #111010);
  font-family: 'Roboto';
  font-size: 24px;
  font-weight: 500;
}
.calendar .days .day {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
}
.calendar .days .day:not(.prev-date, .next-date):hover {
  color: var(--black);
  font-weight: 600;
  background-color: #BEE9CB;
}
.calendar .days .prev-date,
.calendar .days .next-date {
  color: #b3b3b3;
}
.calendar .days .active {
  position: relative;
  font-size: 2rem;
  color: #fff;
  background-color: var(--green);
  box-shadow: 0 0 10px 2px var(--green);
}
.calendar .days .today {
  font-weight: 600;
  font-size: 2rem;
  background-color: #BEE9CB;
}
.calendar .days .event {
  position: relative;
  border: #2B7141 solid 6px;
  border-radius: 12px;
}

.calendar .days .active.event {
  border: #ffffff solid 4px;
}

.right {
   max-width: 60%;
   min-height: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   gap: 20px;
}

.today-date {
   color: var(--yellow);
   font-size: 30px;
   font-weight: 600;
}

h3 {
   color: var(--yellow);
   font-size: 28px;
   font-weight: 600;
   margin: 0;
}
.events, .no-event {
  display: flex;
  flex-direction: column;
  color: #ffffff;
  gap: 20px;
}
.right > .kiy {
   width: 600px;
   height: 13px;
   background-size: 600px 13px;
}

.right > .kiy:nth-child(2) {
   transform: rotate(180deg);
}

.tur {
    padding-top: 60px;
    text-decoration: none;
    color: var(--yellow);
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    background: none;
    border: none;
}
.tur:hover {
  cursor: pointer;
  border-bottom: 4px var(--yellow) solid;
  transition: 0.3s;
}
.galery {
   display: grid;
   grid-template-rows: repeat(3, 1fr);
   grid-template-columns: repeat(4, 1fr);
   padding: 60px;
   padding-bottom: 20px;
   gap: 24px;
}

.photo1 {
   grid-column: 1/3;
   height: 240px;
}
.photo2 {
  grid-column: 3/5;
  grid-row: 1/3;
}
.photo3 {
  grid-column: 1;
  grid-row: 2/4;
}

.galery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

a {
	display: block;
	width: 100%;
	height: 100%;
}
.galery-container {
  text-align: center;
}
.photo-mfb {
    display: flex;
    justify-content: center;
}
.photo {
  padding-top: 10px;
  max-width: fit-content;
  text-decoration: none;
  margin-bottom: 60px;
  color: var(--green);
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  background: none;
  border: none;
}
.photo:hover {
  cursor: pointer;
  border-bottom: 4px var(--green) solid;
  transition: 0.3s;
}
.club {
   display: flex;
   flex-direction: row-reverse;
   gap: 20px;
   padding: 0px 60px;
   justify-content: space-between;
   align-items: center;
   background: #FFFFF2;
}

.club-photo {
   width: 460px;
   height: 460px;
   filter: drop-shadow(-8px -8px 15px rgba(79, 37, 21, 0.50)) drop-shadow(10px 10px 15px rgba(79, 37, 21, 0.50));
}

.club-text {
   display: flex;
   width: 780px;
   padding: 60px 0px;
   flex-direction: column;
   justify-content: center;
   align-items: center;
   gap: 12px;
}

.club-text > h2 {
   color: var(--green, #2B7141);

}

.club-text > p {
   text-align: left;
   padding: 0px 2px;
}

footer {
   display: flex;
   flex-direction: column;
   background-color: #2B7141;
   font-size: 16px;
   color: var(--yellow, #FFFFB7);
}

.footer {
   display: flex;
   padding: 52px 172px 0;
   justify-content: space-between;
}

h4 {
   margin: 0;
   font-weight: 500;
   text-transform: uppercase;
}

.contacts {
   display: inline-flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 16px;
}
.contacts a {
  text-decoration: none;
  font-family: 'Roboto';
  font-size: 16px;
  color: var(--yellow);
}
.contacts p {
   padding-left: 40px;
   position: relative;
   line-height: normal;
}

.contacts p::before {
   content: '';
   width: 24px;
   height: 24px;
   position: absolute;
   left: 0;
   background: url(../assets/icons/place2.svg);
}

.phones,
.times {
   padding: 0;
}

.times {
    position: relative;
    padding-left: 40px;
    padding-bottom: 16px;
}

.phones li,
.times li {
   padding-left: 40px;
   padding-bottom: 16px;
   position: relative;
}

.phones li:first-child::before {
   content: '';
   width: 24px;
   height: 24px;
   position: absolute;
   left: 0;
   background: url(../assets/icons/phone2.svg)
}

.phones li:nth-child(2)::before {
   content: '';
   width: 24px;
   height: 24px;
   position: absolute;
   left: 0;
   background: url(../assets/icons/phone-mobi2.svg);
}

.phones li:last-child::before {
   content: '';
   width: 24px;
   height: 24px;
   position: absolute;
   left: 0;
   background: url(../assets/icons/mail.svg)
}

.times::before {
   content: '';
   width: 24px;
   height: 24px;
   position: absolute;
   left: 0;
   background: url(../assets/icons/clock2.svg)
}

.contacts .table {
   margin: 0;
   margin-left: 40px;
}

.phones > li a:hover,
.contacts > p a:hover {
  font-weight: 500;
  color: var(--brown);
}
.messenger-fon {
   width: 62%;
   height: 80px;
   align-self: flex-end;
   background-color: #4F2515;
   clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.messenger {
   display: inline-flex;
   width: 100%;
   justify-content: space-between;
   align-items: center;
   padding: 24px 106px;
}

.icons {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 32px;
}

.icons div {
   width: 32px;
   height: 32px;
}

.icons .tg {
   background: url(../assets/icons/uil-telegram.svg);
}

.icons .viber {
   background: url(../assets/icons/basil-viber-solid.svg)
}

.icons .facebook {
   background: url(../assets/icons/ri-facebook-circle-fill.svg);
}

@media (max-width: 1300px) {
  .back p,
  .services-price {
    font-size: 20px;
  }
}

@media (max-width: 1200px) {
  header {
    padding-top: 0;
    padding-bottom: 80px;
    justify-content: flex-start;
    gap: 80px;
  }
  .times-head {
    display: none;
  }
  .logo {
    padding-left: 20px;
  }
  h1 {
    font-size: 60px;
  }

  .slider {
    width: 18rem;
    height: 18rem;
    gap: 0;
    background-image: url(../assets/images/slider-1.jpg);
    background-position-x: 55%;
  }
  .img-part {
    display: none;
    visibility: hidden;
  }
  .picture img {
    height: 120px;
  }

  .section {
    height: 600px;
    justify-content: space-around;
}
  h2 {
    font-size: 32px;
  }
  .services-name p,
  .services-text {
    font-size: 16px;
  }
  .ball {
    display: flex;
    width: 291px;
    height: 291px;
  }
  .kiy {
    background-position: center;
    background-size: 80%;
  }
  .back p,
  .services-price {
    font-size: 16px;
    line-height: 1.4em;
  }
  .services-price {
    gap: 20px;
  }
  .caption {
    padding: 40px;
    justify-content: space-evenly;
    gap: 0px;
  }
  .contaner {
    padding: 40px;

  }
  .calendar .month {
    font-size: 28px;
    padding: 20px 0;

  }
  .calendar .weekdays {
    padding: 10px 10px;
    font-size: 20px;
  }
  .calendar .days {
    grid-auto-rows: 40px;
    font-size: 20px;
  }
  .today-date,
  h3 {
    font-size: 22px;
  }
  .no-event span,
  .event-type,
  .event-firm {
    font-size: 16px;
  }
  .right > .kiy {
    background-size: 80%;
    background-position: left;
  }
  .right > .kiy:nth-child(2) {
    background-position: right;
  }
  .galery,
  .club {
    padding: 40px;
  }
  .galery {
    padding-bottom: 20px;
  }
  .photo {
    margin-bottom: 40px;
  }
  .club-text {
    padding: 0;
    width: 100%;
  }
  .club-text p {
    font-size: 16px;
    line-height: 1.4em;
  }
  .club-photo {
    width: 380px;
    height: 380px;
    filter: drop-shadow(-4px -4px 7px rgba(79, 37, 21, 0.50)) drop-shadow(5px 5px 7px rgba(79, 37, 21, 0.50));
  }
  .club-photo img {
    width: 100%;
    height: 100%;
  }
  .footer {
    padding: 40px 40px 20px;
  }
}

@media (max-width: 960px) {
  .video-fon {
  height: 30rem;
  background-repeat: no-repeat;
  background: linear-gradient(134deg, rgba(81, 30, 19, 0.88) 20%, rgba(77, 36, 36, 0.00) 100%), url(../assets/images/main_photo.jpg), lightgray 0px -66.835px / 99.991% 133.491% no-repeat;
  background-size: cover;
  }
  header {
    gap: 0;
  }
  .video,
  .control {
    display: none;
  }
  .logo > a img{
    height: 72px;
  }
  .phones-head,
  .adress-head,
  .contacts-head .table {
    display: none;
  }
  .burger {
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
    right: -85%;
  }
  .burger span {
    width: 40px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--yellow);
    transition: all 0.5s;
  }
  .burger span:nth-of-type(2) {
    top: calc(50% - 15px);
  }
  .burger span:nth-of-type(3) {
    top: calc(50% + 15px);
  }
  nav {
    width: 100%;
    height: 100%;
    margin: 0;
    clip-path: none;
    background-color: #2B7141;
  }
  .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100vw;
    height: 50vh;
    position: absolute;
    left: 0;
    top: 72px;
    z-index: 20;
    background-color: #2B7141;
    transform: translateX(100%);
	  transition: transform 0.1s;
  }
  .nav-menu.adaptive {
    transform: translateX(0);
  }
    .nav {
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;

  }
  .burger.adaptive span:nth-of-type(1) {
    display: none;
  }
  .burger.adaptive span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(45deg);
  }
  .burger.adaptive span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, 0%) rotate(-45deg);
  }
  .nav > li a {
    font-size: 22px;
    color: var(--yellow);
    text-transform: uppercase;
  }
  .nav > li a:hover {
    font-size: 22px;
    color: var(--brown);
  }
  .adapt {
    display: block;
  }

  .name {
    flex-direction: column;
    padding: 0 40px;
  }
  h1 {
    padding: 0;
    align-self: flex-start;
    font-size: 48px;
  }
  h1 span:last-child {
    padding: 16px;
  }
  .slider {
    width: 15rem;
    height: 15rem;
    position: absolute;
    left: -270px;
    top: -50px;
    background-size: cover;
  }
  .slider-container {
    position: relative;
    align-self: flex-end;
  }

  h2 {
    text-align: center;
  }
  .contaner {
    flex-direction: column;
    gap: 20px;
  }
  .left {
    width: 50%;
  }
  .club {
    flex-direction: column;
    gap: 20px;
  }
  .club-photo {
    width: 300px;
    height: 300px;
  }
  .footer {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  iframe {
    width: 300px;
    height: 200px;
  }
  .messenger-fon {
    width: 100%;
  }
}
@media (min-width: 460px) and (max-width: 960px) {
  .section {
    flex-direction: column;
  }
  .section {
    height: 1000px;
  }
  .front,
  .back {
    flex-direction: row;
    justify-content: space-between;
    padding: 40px 60px;
    column-gap: 188px;
  }
  .back {
    column-gap: 10%;
  }
  .front-text,
  .back-text {
    gap: 30px;
  }
  .back-text {
    width: 40%;
    text-align: center;
  }
}
