
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}

*, ::before, ::after {
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 500;
  letter-spacing: -1px;
}

h1, .h1 {
  font-size: 64px;
}

h2, .h2 {
  font-size: 48px;
}

h3, .h3 {
  font-size: 34px;
}

h4, .h4 {
  font-size: 24px;
}


.container {
  max-width: 1230px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}

.btn {
  position: relative;
  padding: 5px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 1);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  background: rgba(37, 153, 55, 1);
  border-radius: 70px;
  border: 1px solid rgba(37, 153, 55, 1);
  height: 52px;
  transition: background .3s;
  text-decoration: none;
}
.btn.btn-red {
  background: rgba(255, 56, 44, 1);
  border-color: rgba(255, 56, 44, 1);
}
.btn:hover {
  background: rgb(35 131 50);
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
}
.btn.btn-red:hover {
  background: rgb(219 21 10);
  color: rgba(255, 255, 255, 1);
}

/*  header +  */

.header {
  position: sticky;
  top: 0;
  padding: 18px 0;
  z-index: 111;
  background-color: #fff;
}
.header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.anchor-menu {
  margin: auto;
  padding: 0;
  list-style: none;
  column-gap: 40px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.header .btn {
  margin-left: auto;
}
.header.header-fix {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.logo {
  width: 144px;
}

.logo img {
  width: 100%;
}

.anchor-menu__link {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
  transition: color .3s;
}

.anchor-menu__link:hover {
  color: rgba(0, 0, 0, 0.8);
}

.hamburger {
  position: relative;
  width: 30px;
  height: 16px;
  z-index: 101;
  overflow: hidden;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  display: none;
}
.hamburger-link {
  margin-left: 12px;
}
.hamburger:focus-visible {
  outline: none;
}
.hamburger span {
  position: absolute;
  right: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: background-color 0.3s;
  background-color: rgba(0, 0, 0, 1);
  height: 2px;
}
body.open-menu .hamburger span {
  background-color: rgba(0, 0, 0, 1);
}
.hamburger:hover span {
  background-color: rgba(0, 0, 0, 1);
}
.hamburger span.top {
  width: 22px;
  top: 0;
}
.hamburger span.center {
  width: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.hamburger span.bottom {
  width: 22px;
  bottom: 0;
}
.hamburger.active span {
  /*transform: rotate(45deg);*/
  margin: auto;
}
.hamburger.active span:first-child {
  -webkit-animation: animate-hamburger1 1s linear forwards;
  animation: animate-hamburger1 1s linear forwards;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.hamburger.active span:nth-child(2) {
  -webkit-animation: animate-hamburger2 0.6s linear forwards;
  animation: animate-hamburger2 0.6s linear forwards;
}
.hamburger.active span:last-child {
  -webkit-animation: animate-hamburger3 1s linear forwards;
  animation: animate-hamburger3 1s linear forwards;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
@-webkit-keyframes animate-hamburger1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 0;
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: -40px;
    top: 0;
  }
  75% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -40px;
  }
  100% {
    right: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
  }
}
@keyframes animate-hamburger1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 0;
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: -40px;
    top: 0;
  }
  75% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: -40px;
  }
  100% {
    right: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
    bottom: 0;
  }
}
@-webkit-keyframes animate-hamburger2 {
  0% {
    right: 0;
  }
  100% {
    right: 100%;
  }
}
@keyframes animate-hamburger2 {
  0% {
    right: 0;
  }
  100% {
    right: 100%;
  }
}
@-webkit-keyframes animate-hamburger3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 0;
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: -40px;
    bottom: 0;
  }
  60% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: -40px;
  }
  80% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 0;
    top: 0;
    bottom: 0;
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 0;
    top: 0;
    bottom: 0;
  }
}
@keyframes animate-hamburger3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 0;
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: -40px;
    bottom: 0;
  }
  60% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    bottom: -40px;
  }
  80% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 0;
    top: 0;
    bottom: 0;
  }
  100% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    right: 0;
    top: 0;
    bottom: 0;
  }
}

/*  header -  */




/*  section-banner +  */

.section-banner {
  position: relative;
  z-index: 1;
}
.section-banner .container {
  height: calc(100vh - 88px);
  display: flex;
  align-items: center;
}
.banner-slider .uk-slideshow-items {
  min-width: initial !important;
  max-width: none !important;
  width: 100%;
  height: 100%;
}
.banner-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-inf {
  max-width: 590px;
  width: 100%;
}
.banner-inf .title {
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1px;
  text-align: left;

}
.banner-inf .subtitle {
  color: #fff;
  margin-bottom: 44px;
  line-height: 1.6;
  font-size: 20px;
  font-weight: 700;
}

/*  section-banner -  */



/*  section-partners +  */

.wrap-title {
  text-align: center;
  max-width: 997px;
  margin: 0 auto 60px;
}
.wrap-title .h2 {
  margin-bottom: 0;
}
.wrap-title .subtitle {
  margin-bottom: 0;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
  color: rgba(126, 126, 126, 1);
  text-align: center;
}
.section-partners {
  position: relative;
  padding: 78px 0 47px;
  background: rgba(250, 250, 250, 1);
}
.section-partners .subtitle {
  font-size: 24px;
}
.partners {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 80px;
}
.partner {
  height: 40px;
  margin: 0 auto 57px;
}
.partner img {
  width: auto;
  height: 100%;
}

/*  section-partners -  */

/*  section-manager +  */
.manager-img {
  width: 100%;
  max-width: 1086px;
  margin: auto;
  border-radius: 24px;
  overflow: hidden;
}

.manager-img img {
  width: 100%;
  height: auto;
}

.section-manager {
  position: relative;
  padding: 72px 0 80px;
}
/*  section-manager -  */


/*  section-booking +  */

.section-booking {
  position: relative;
  padding: 54px 0 82px;
  background: rgba(250, 250, 250, 1);
}

.booking {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-top: 60px;
}
.booking__text {
  width: 34%;
  margin: 0 ;
  list-style: none;
  padding: 0;
}
.booking-img {
  margin: -60px auto 24px;
  width: 30%;
}

.booking__desc {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}
.booking__desc::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(37, 153, 55, 1);
  border-radius: 50%;
}

/*  section-booking -  */


/*  section-sales +  */

.section-sales {
  position: relative;
  padding: 100px 0;
}
.quality-wrap {
  max-width: 1024px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 48px;
}
.quality {
  margin-bottom: 48px;
  width: calc(50% - 24px);
  text-align: center;
}
.quality__img {
  background: rgba(231, 246, 233, 1);
  border-radius: 8px;
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.quality__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: rgba(0, 0, 0, 1);
  border-bottom: 12px;
  margin-bottom: 12px;
}
.quality__desc {
  color: rgba(0, 0, 0, 0.6);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

/*  section-sales -  */


/*  section-quality +  */
.section-quality {
  position: relative;
  padding: 72px 0 80px;
  background: rgba(250, 250, 250, 1);
}
.quality-step-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 44px;
}
.quality-step {
  background-color: #fff;
  padding: 0 32px;
  column-gap: 32px;
  border-radius: 16px;
  width: calc((100% - 88px)/3);
  display: flex;
  align-items: center;
}
.quality-step__num {
  font-size: 96px;
  font-weight: 600;
  line-height: 116px;
  text-align: left;
  color: rgba(144, 208, 154, 1);
}
.quality-step__text {
  color: rgba(0, 0, 0, 0.6);
  font-size: 21px;
  font-weight: 500;
  line-height: 25px;
  text-align: left;
}
/*  section-quality -  */


/*  section-contacts +  */

.section-contacts {
  position: relative;
  padding: 84px 0 74px;
}
.contacts {
  position: relative;
  padding-right: 20px;
  width: 50%;
}

.contacts .h2 {
  margin-bottom: 32px;
}
.contact {
  margin-bottom: 32px;
  padding-right: 20px;
  display: inline-block;
}
.contact-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
  color: rgba(138, 138, 138, 1);
}
.contacts-text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: rgba(0, 0, 0, 1);
  text-decoration: none;
  transition: color .3s;
}
a.contacts-text:hover {
  text-decoration: none;
}
.map {
  position: absolute;
  width: 50vw;
  height: 100%;
  right: 0;
  top: 0;
}
.map iframe {
  width: 100%;
  height: 100%;
}

/*  section-contacts -  */

/* footer + */
.footer {
  position: relative;
  background: rgba(0, 0, 0, 1);
  padding: 50px 0 40px;
}
.footer .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.copyright {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-right: auto;
  margin-bottom: 10px;
}
.footer__link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin-left: 125px;
  text-decoration: none;
  transition: color .3s;
  margin-bottom: 10px;
}
.footer__link:hover {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
}

/* footer - */

.uk-input {
  border-radius: 10px;
  height: 52px;
}
/* uk-modal + */
.uk-modal-body {
  border-radius: 12px;
}
.uk-modal-close {
  background-color: transparent;
  border: 0;
  font-size: 24px;
  position: absolute;
  top: 5px;
  right: 5px;
  padding: 0;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  transition: color .3s;
}
.uk-modal-close:hover {
  color: rgba(0, 0, 0, 0.8);
}
/* uk-modal - */


@media screen and (max-width: 992px){

  .quality-step__text {
    font-size: 16px;
    line-height: 1.4;
  }
  .quality-step-list {
    column-gap: 20px;
  }
  .quality-step {
    width: calc((100% - 40px) / 3);
    padding: 0 20px;
    column-gap: 15px;
  }
  .footer__link {
    margin-left: 16px;
  }

}

@media screen and (max-width: 768px){
  .hamburger {
    display: inline-block;
  }
  .header {
    padding: 10px 0;
  }
  .logo {
    margin-right: auto;
  }
  .btn {
    padding: 5px 15px;
    height: 32px;
    font-size: 14px;
    margin-right: 15px;
  }
  .anchor-menu {
    display: none;
    position: fixed;
    left: 0;
    top: 53px;
    width: 100%;
    padding: 20px 15px;
    background: #fff;
  }

  body.open-menu .anchor-menu {

  }

  h1, .h1 {
    font-size: 44px;
    line-height: 1;
  }
  h2, .h2 {
    font-size: 34px;
    line-height: 1;
  }

  .section-partners, .section-quality, .section-manager, .section-booking, .section-sales {
    padding: 40px 0;
  }
  .partners {
    column-gap: 30px;
  }
  .partner {
    height: 40px;
    margin: 0 auto 20px;
  }

  .footer {
    padding: 20px 0 10px;
  }

  .wrap-title {
    margin-bottom: 30px;
  }
  .booking {
    padding: 0;
  }
  .booking-img {
    margin-top: 0;
    max-width: 340px;
    width: 100%;
    order: -1;
  }
  .booking__text {
    width: 100%;
  }

  .quality-wrap {
    column-gap: 20px;
  }
  .quality {
    width: calc(50% - 10px);
  }

  .quality-step {
    width: 100%;
    margin-bottom: 20px;
  }

  .quality-step__num {
    font-size: 56px;
    line-height: 80px;
  }

  .section-contacts {
    padding: 0;
  }
  .map {
    position: relative;
    width: 100%;
    height: 250px;
    right: 0;
    top: 0;
  }
  .contacts {
    padding: 40px 0;
    width: 100%;
  }

  .uk-input {
    border-radius: 10px;
    height: 40px;
  }
}

@media  screen and (max-width: 480px){
  .logo {
    width: 125px;
  }

  h1, .h1 {
    font-size: 32px;
  }
  h2, .h2 {
    font-size: 28px;
  }
  .wrap-title .subtitle {
    font-size: 16px;
  }
  .banner-inf .subtitle {
    font-size: 14px;
  }
  .partner {
    width: 100%;
    text-align: center;
  }
  .quality {
    width: 100%;
    margin-bottom: 20px;
  }

  .contacts-text {
    font-size: 18px;
  }
  .contact-name {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .contacts .h2 {
    margin-bottom: 20px;
  }
  .contact {
    margin-bottom: 20px;
  }

}







