/*----------------GLOBAL STYLES----------------*/
html, body {
  font-family: "Mulish", sans-serif;
  font-size: 18px;
  line-height: 32px;
  color: #6B6B6B;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

li a {
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

li a:hover {
  color: #DA9A38;
}

.color-black {
  color: #000;
}

@media (max-width: 764px) {
  .container {
    padding: 0 10px;
  }
}

.btn-start {
  width: 192px;
  height: 60px;
  border-radius: 12px;
  color: #000;
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in;
  transition: all 0.4s ease-in;
}

.btn-start:hover {
  background-color: #000;
  color: #fff;
}

.btn-start--margin-right {
  margin-right: 42px;
}

.btn-ytb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.1s ease-in;
  transition: -webkit-transform 0.1s ease-in;
  transition: transform 0.1s ease-in;
  transition: transform 0.1s ease-in, -webkit-transform 0.1s ease-in;
}

.btn-ytb:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.btn-ytb img {
  margin-right: 16px;
}

.btn-readmore {
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #DA9A38 !important;
  text-transform: uppercase;
  text-decoration: underline !important;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.btn-readmore:hover {
  color: #000 !important;
}

.btn-readmore--white {
  color: #fff !important;
}

.btn-readmore--hover-white:hover {
  color: #fff !important;
}

.btn-close {
  width: 41px;
}

@media (max-width: 764px) {
  .btn-start--margin-right {
    margin-right: unset;
  }
  .btn-start--margin-bottom {
    margin-bottom: 45px;
  }
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

:focus,
:active {
  outline: none;
}

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

/* Links */
a {
  font-display: block;
}

a, a:link, a:visited {
  color: inherit;
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

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

ul, ul li {
  list-style: none;
}

/*img {
	vertical-align: top;
}*/
img, svg {
  max-width: 100%;
  height: auto;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button, input[type="submit"] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

.slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.slick-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 15px !important;
  /*----------column gap 42px from clients.scss doesn't work-----------*/
}

.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 button {
  display: block;
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  border-radius: 100%;
  background-color: #E6E6E6;
  text-indent: -9999px;
  margin-top: 42px;
}

.slick-dots li + li {
  margin-left: 16px;
}

.slick-dots li.slick-active button {
  background-color: #DA9A38;
  position: relative;
}

.slick-dots li.slick-active button::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 32px;
  border: 2px solid #DA9A38;
}

/*----------------BLOCKS----------------*/
.nav {
  height: 106px;
  padding: 35px 0 42px;
  background-color: #fff;
}

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

.nav__logo {
  font-family: "Montaga", serif;
  color: #DA9A38;
  font-size: 32px;
  list-style: 39px;
}

.nav__menu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #000;
  font-size: 20px;
  line-height: 25px;
}

.nav__menu-items > * + * {
  margin-left: 42px;
}

.nav__menu-items-text {
  position: relative;
}

.nav__menu-items-text::after {
  position: absolute;
  left: 0;
  width: 0%;
  bottom: -9px;
  content: "";
  display: block;
  height: 2px;
  background-color: #DA9A38;
  -webkit-transition: width 0.5s ease-in;
  transition: width 0.5s ease-in;
}

.nav__menu-items-text:hover::after {
  width: 100%;
}

.nav .active {
  color: #DA9A38;
}

.nav .active::after {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -9px;
  content: "";
  display: block;
  height: 2px;
  background-color: #DA9A38;
}

.nav__icons-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__icons-items > * + * {
  margin-left: 42px;
}

.nav__icons-items li:last-child img {
  padding-bottom: 2px;
}

/*-------------------For Burger-----------------------*/
.nav__menu.show-nav__menu {
  display: block;
}

.nav__icons.show-nav__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__mobile {
  display: none;
}

/*------------------For Burger End----------------------*/
@media (max-width: 1240px) {
  .nav {
    padding: 35px 10px 42px;
  }
}

@media (max-width: 1024px) {
  .nav {
    padding: 35px 0 10px;
    height: auto;
  }
  .nav__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .nav__logo {
    margin-bottom: 20px;
  }
  .nav__menu {
    display: none;
  }
  .nav__menu-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /*------------------important for perfect underline----------------------*/
    text-align: center;
  }
  .nav__menu-items > * + * {
    margin-left: unset;
  }
  .nav__menu-items li {
    margin-bottom: 15px;
  }
  .nav__icons {
    display: none;
    margin-top: 20px;
  }
  .nav__mobile {
    /*--------------------for burger------------------*/
    display: block;
    margin: 20px 0 40px;
  }
}

.nav__mobile-wrapper {
  width: 30px;
  height: 30px;
  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;
}

.nav__mobile {
  position: relative;
  width: 30px;
  height: 5px;
  background-color: #DA9A38;
}

.nav__mobile::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: '';
  width: 30px;
  height: 5px;
  background-color: #DA9A38;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
}

.nav__mobile::after {
  position: absolute;
  left: 0;
  top: 10px;
  content: '';
  width: 30px;
  height: 5px;
  background-color: #DA9A38;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
}

.nav__mobile.nav__mobile-active {
  background-color: transparent;
}

.nav__mobile.nav__mobile-active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
}

.nav__mobile.nav__mobile-active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
}

.icon-nav, .icon-nav-2, .icon-nav-3 {
  cursor: pointer;
  fill: #000;
  stroke: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.icon-nav:hover, .icon-nav-2:hover, .icon-nav-3:hover {
  fill: #DA9A38;
  stroke: transparent;
}

.icon-nav-2 {
  fill: transparent;
  stroke: #000;
}

.icon-nav-3 {
  fill: transparent;
  stroke: #000;
}

.icon-nav-3:hover {
  fill: transparent;
  stroke: #DA9A38;
}

.header {
  height: 607px;
  background-image: url("../../img/header.webp");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 126px 10px;
}

.header__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.header__items-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 90.36px;
  color: #fff;
  max-width: 672px;
  margin-bottom: 16px;
}

.header h2 {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  max-width: 500px;
  margin-bottom: 42px;
}

@media (max-width: 764px) {
  .header {
    height: auto;
    background-image: url("../../img/header-mobile.jpg");
  }
  .header__items-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 50px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .header h1 {
    font-size: 46px;
    line-height: 58px;
  }
}

.modal-about.visible {
  display: block;
}

.modal-about {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 500px;
  height: 100vh;
  padding: 30px;
  background-color: #fff;
  display: none;
}

.modal-about__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal-about__wrapper p:nth-child(2) {
  font-size: 24px;
  color: #000;
  margin: 50px 0 20px;
}

.modal-about__wrapper p:nth-child(3) {
  font-size: 16px;
  line-height: 28px;
}

.modal-about__wrapper p:nth-child(4) {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 50px;
}

.modal-about__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 30px;
  margin-right: 20px;
}

@media (max-width: 764px) {
  .modal-about {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}

.modal-ytb.visible {
  display: block;
}

.modal-ytb {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  -webkit-animation: modalopen 0.5s ease-in-out;
          animation: modalopen 0.5s ease-in-out;
  display: none;
}

@-webkit-keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-ytb__close {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 30px;
  margin-bottom: 10px;
}

.modal-ytb__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 900px;
  height: 542px;
  padding: 10px;
  overflow: hidden;
}

.modal-ytb__wrapper iframe {
  width: 880px;
  height: 522px;
}

@media (min-width: 764px) and (max-width: 1180px) {
  .modal-ytb__wrapper {
    width: 700px;
    height: 600px;
  }
  .modal-ytb__wrapper iframe {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 764px) {
  .modal-ytb__wrapper {
    width: 350px;
    height: 400px;
  }
  .modal-ytb__wrapper iframe {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 280px) {
  .modal-ytb__wrapper {
    width: 250px;
    height: 300px;
  }
  .modal-ytb__wrapper iframe {
    width: 100%;
    height: 100%;
  }
}

.advantages {
  padding: 142px 40px;
  text-align: center;
}

.advantages__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.advantages__intro p:nth-child(1) {
  font-size: 42px;
  line-height: 53px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 24px;
}

.advantages__intro p:nth-child(2) {
  max-width: 600px;
  margin-bottom: 72px;
}

.advantages__wrapper {
  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;
  -webkit-column-gap: 72px;
          column-gap: 72px;
}

.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 325px;
}

.advantages__item p:nth-child(2) {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  margin: 24px 0 16px;
}

.advantages__item-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #F9F9F9;
  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;
}

@media (min-width: 764px) and (max-width: 1024px) {
  .advantages {
    padding: 70px 30px;
  }
}

@media (max-width: 764px) {
  .advantages {
    padding: 20px 10px;
  }
  .advantages__intro p:nth-child(2) {
    margin-bottom: 12px;
  }
  .advantages__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
  }
}

.needs {
  padding: 87px 0;
  background-color: #F9F9F9;
}

.needs__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.needs__intro p:nth-child(1) {
  font-size: 42px;
  line-height: 53px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 24px;
}

.needs__intro p:nth-child(2) {
  max-width: 600px;
  margin-bottom: 72px;
}

.needs__wrapper {
  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;
  -webkit-column-gap: 42px;
          column-gap: 42px;
}

.needs__item {
  max-width: 372px;
}

.needs__item p:nth-child(1) {
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 8px;
}

.needs__item p:nth-child(2) {
  margin-bottom: 24px;
}

@media (min-width: 764px) and (max-width: 1024px) {
  .needs {
    padding: 40px 30px;
  }
}

@media (max-width: 764px) {
  .needs {
    padding: 20px 10px;
  }
  .needs__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
  }
  .needs__item {
    text-align: center;
  }
}

.about {
  padding: 142px 50px;
}

.about__wrapper {
  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;
  -webkit-column-gap: 103px;
          column-gap: 103px;
}

.about__img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.about__desc {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 513px;
}

.about__desc img {
  margin-top: 25px;
}

.about__desc p:nth-child(2) {
  font-size: 42px;
  line-height: 53px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 24px 0;
}

.about__desc p:nth-child(3) {
  margin-bottom: 25px;
}

.about__desc p:nth-child(4) {
  margin-bottom: 32px;
}

@media (max-width: 764px) {
  .about {
    padding: 20px 10px;
  }
  .about__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.menu {
  padding-top: 100px;
  background-color: #F9F9F9;
}

.menu__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.menu__intro p:nth-child(1) {
  font-size: 42px;
  line-height: 53px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 24px;
}

.menu__intro p:nth-child(2) {
  max-width: 600px;
  margin-bottom: 72px;
}

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

.menu__item {
  max-width: 360px;
  padding: 42px 24px 24px;
}

.menu__item p:nth-child(1) {
  font-size: 42px;
  line-height: 53px;
  font-weight: 700;
  margin-bottom: 8px;
}

.menu__item h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.menu__item p:nth-child(3) {
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 50px;
}

.menu__item--back-1 {
  background-color: #DA9A38;
  color: #fff;
}

.menu__item--back-2 {
  background-color: #fff;
}

.menu__item--back-3 {
  background-color: #292929;
  color: #fff;
}

@media (max-width: 764px) {
  .menu {
    padding: 50px 10px;
  }
}

.clients {
  padding: 142px 0;
}

.clients__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.clients__intro p:nth-child(1) {
  font-size: 42px;
  line-height: 53px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 24px;
}

.clients__intro p:nth-child(2) {
  max-width: 600px;
  margin-bottom: 72px;
}

.clients__wrapper {
  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;
  -webkit-column-gap: 42px;
          column-gap: 42px;
}

.clients__item {
  padding: 42px 24px;
  background-color: #F9F9F9;
  max-width: 372px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.clients__item-name {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  text-transform: capitalize;
  margin: 24px 0 8px;
}

.clients__item-position {
  color: #DA9A38;
  font-size: 18px;
  line-height: 32px;
  font-weight: 400;
  text-transform: capitalize;
  margin-bottom: 32px;
}

.clients__item-text {
  text-transform: capitalize;
  margin-bottom: 42px;
}

@media (max-width: 764px) {
  .clients {
    padding: 40px 10px;
  }
}

.gallery {
  padding-bottom: 142px;
}

.gallery__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.gallery__intro p:nth-child(1) {
  font-size: 42px;
  line-height: 53px;
  font-weight: 700;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 24px;
}

.gallery__intro p:nth-child(2) {
  max-width: 600px;
  margin-bottom: 72px;
}

.gallery__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  gap: 42px;
}

.gallery__wrapper-desktop {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
}

.gallery__wrapper-desktop img {
  margin: 30px 15px 0 15px;
}

@media (max-width: 1204px) {
  .gallery {
    padding-bottom: 40px;
  }
  .gallery__wrapper-desktop {
    display: none;
  }
}

.footer {
  background-color: #F9F9F9;
}

.footer__row {
  padding: 72px 0 59px;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 76px;
          column-gap: 76px;
  grid: 'area-1 area-2 area-3 area-4 area-5';
}

.footer__row .grid1 {
  grid-area: area-1;
}

.footer__row .grid2 {
  grid-area: area-2;
}

.footer__row .grid3 {
  grid-area: area-3;
}

.footer__row .grid4 {
  grid-area: area-4;
}

.footer__row .grid5 {
  grid-area: area-5;
}

.footer__desc li {
  max-width: 308px;
}

.footer__desc-logo {
  color: #DA9A38;
  font-family: "Montaga", serif;
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 32px;
}

.footer__desc-logo a {
  color: #DA9A38;
}

.footer__desc-logo img {
  width: 31px;
  margin-right: 12px;
  vertical-align: text-bottom;
}

.footer__title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  color: #000;
  margin-bottom: 32px;
}

.footer__subtitle {
  margin-bottom: 16px;
}

.footer__subtitle:last-child {
  margin-bottom: unset;
}

.footer__bottom {
  background-color: #fff;
  padding: 32px 0;
}

.footer__bottom-wrapper {
  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;
  font-size: 18px;
  line-height: 24px;
  color: #000;
}

.footer__bottom-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__bottom-links .active {
  color: #DA9A38;
}

.footer__bottom-links > * + * {
  margin-left: 42px;
}

.footer__bottom span {
  color: #DA9A38;
}

.footer__bottom-copyright {
  text-align: center;
}

@media (max-width: 1220px) {
  .footer {
    padding: 0 10px;
  }
  .footer__bottom {
    padding: 32px 10px;
  }
}

@media (max-width: 1024px) {
  .footer__row {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    -webkit-column-gap: 40px;
            column-gap: 40px;
    padding: 72px 24px 59px;
    display: -ms-grid;
    display: grid;
    grid: 'area-1 area-1' 'area-2 area-3' 'area-4 area-5';
  }
  .footer__row ul {
    margin-bottom: 54px;
  }
  .footer__row ul:first-child {
    margin-bottom: 45px;
  }
  .footer__desc li {
    max-width: 80%;
  }
}

@media (max-width: 764px) {
  .footer__bottom-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__bottom-links {
    max-width: 300px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__bottom-links li {
    margin-left: 46px;
    margin-bottom: 26px;
  }
  .footer__bottom-links li:first-child {
    margin-left: unset;
  }
  .footer__bottom-links li:nth-child(4) {
    margin-left: 20px;
  }
  .footer__bottom-copyright {
    margin-top: 18px;
  }
}

@media (max-width: 280px) {
  .footer__row {
    grid: 'area-1 area-1' 'area-2 area-2' 'area-3 area-3' 'area-4 area-4' 'area-5 area-5';
  }
  .footer__desc li {
    max-width: 100%;
  }
  .footer__links {
    max-width: 100%;
  }
  .footer__links > * + * {
    margin-left: unset;
  }
  .footer__links li {
    margin-left: unset;
    margin-bottom: 26px;
  }
  .footer__links li:first-child {
    margin-left: unset;
  }
  .footer__links li:nth-child(4) {
    margin-left: unset;
  }
  .footer__bottom-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.modal-start {
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  display: none;
  color: #fff;
  -webkit-animation: modalopen 0.5s ease-in-out;
          animation: modalopen 0.5s ease-in-out;
}

.modal-start__wrapper {
  background-image: url("../../img/modal-back.jpg");
  background-size: cover;
  background-position: 20% 80%;
  background-repeat: no-repeat;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  padding: 50px;
}

.modal-start__header {
  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;
  height: 88px;
  padding: 28px 32px;
}

.modal-start__header p {
  font-size: 32px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal-start__main {
  padding: 100px 0 0 28px;
  margin-bottom: 50px;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-start.visible {
  display: block;
}

@media (max-width: 764px) {
  .modal-start__wrapper {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
  }
}

.user-choice__item {
  letter-spacing: 1px;
}

.user-choice__item:nth-child(2) {
  margin-bottom: 100px;
}

.user-choice .custom-check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fff;
  margin-right: 5px;
  vertical-align: middle;
}

.user-choice .custom-check::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}

.user-choice .real-check:checked + .custom-check::before {
  display: block;
}

.user-choice .real-check {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.user-choice .real-check:focus + .custom-check {
  border: 2px dotted #fff;
}

.search-form {
  display: inline-block;
}

.search-form input {
  display: none;
  border-bottom: 0.5px solid grey;
  width: 100px;
}

.search-form--active {
  -webkit-box-shadow: 0px 10px 0 -7px #DA9A38;
          box-shadow: 0px 10px 0 -7px #DA9A38;
}

input.visible {
  display: block;
}

.progress {
  display: none;
  width: 100%;
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #DA9A38;
  background-image: -webkit-gradient(linear, left top, right top, from(black), to(black));
  background-image: linear-gradient(to right, black, black);
  background-repeat: no-repeat;
  background-size: 0 100%;
  -webkit-transition: background-size .4s ease-in-out;
  transition: background-size .4s ease-in-out;
}

@media (max-width: 764px) {
  .progress {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */