@font-face {
  font-family: "montserrat";
  src: url("../fonts/Montserrat-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "montserrat-bold";
  src: url("../fonts/Montserrat-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "poppins-bold";
  src: url("../fonts/Poppins-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "montserrat-medium";
  src: url("../fonts/Montserrat-Medium.ttf");
  font-display: swap;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



.lis {
  color:#171717;
}




.email-bt {
    background: #38a3fd;
    border-radius: 50%;
    box-shadow: 0 8px 10px rgba(249, 92, 24, 0.3);
    cursor: pointer;
    border: 2px solid transparent;
    display: block;
    height: 55px;
    width: 55px;
    text-align: center;
    position: fixed;
    left: 8%;
    bottom: 6%;
    z-index: 999;
    transition: .3s ease-in-out;
    -webkit-animation: email-an linear 1s infinite;
    animation: email-an linear 1s infinite;
}


.email-bt .text-call {
    height: 75px;
    width: 75px;
    border-radius: 50%;
    position: relative;
}

.email-bt .text-call:after {
  content: "\f095";
    display: block;
    font-family: fontawesome;
    color: #fff;
    font-size: 31px;
    line-height: 52px;
    height: 48px;
    width: 48px;
}


@keyframes email-an {
    0% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    40% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
    }

    80% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
    }

    100% {
        box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
    }
}




.whatsapp-button {
    position: fixed;
    right: 13px;
    bottom: 90px;
    transform: translate(-50%, -50%);
    background: #25D366; /*цвет кнопки*/
    border-radius: 50%;
    width: 55px; /*ширина кнопки*/
    height: 55px; /*высота кнопки*/
    color: #fff;
    text-align: center;
    line-height: 53px; /*центровка иконки в кнопке*/
    font-size: 35px; /*размер иконки*/
    z-index: 9999;
}
.whatsapp-button a {
    color: #fff;
}
.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366; /*цвет анимированных волн от кнопки*/
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden;
}

.whatsapp-button:after{
    animation-delay: .5s;
}

@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}



@media (max-width : 800px) {
.whatsapp-button {
    bottom: 5px; /*отступ кнопки снизу от экрана*/
    left: 330px; /*отступ кнопки слева от экрана(right - справа)*/
  }
}


html {
  scroll-behavior: smooth;
}

title h1 span {
  font-family: 'Jost', sans-serif;
  font-family: 'Nunito', sans-serif;
  font-style: bold;
}

body {
  overflow-x: hidden;
  font-family: "montserrat";
  font-size: 16px;
  background-color: #000;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 12px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  body {
    font-size: 13px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  body {
    font-size: 14px;
  }
}

ul {
  list-style: none;
}

.container {
  width: calc(100% - 494px);
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1680px) {
  .container {
    width: calc(100% - 200px);
  }
}

.section-full {
  width: 100%;
  height: auto;
  padding-top: 165px;
  padding-bottom: 165px;
}
@media only screen and (max-width: 1024px) {
  .section-full {
    height: auto;
  }
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}
.section-title h2 {
  font-family: 'Jost', sans-serif;
  font-family: 'Nunito', sans-serif;
  font-size: 48px;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFF;
}
@media only screen and (max-width: 1024px) {
  .section-title h2 {
    font-size: 24px;
  }
}

.section-text {
  max-width: 881px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}

.open-animate {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  background-color: #171717;
}
.open-animate .first {
  width: 100%;
  height: 100%;
  background-color: #cea235;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.open-animate .second {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

header {
  width: 100%;
  padding-right: 313px;
  padding-left: 313px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 30px;
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #000;
}
@media only screen and (max-width: 430px) {
  header {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (max-width: 767px) {
  header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 431px) and (max-width: 1024px) {
  header {
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  header {
    padding-right: 100px;
    padding-left: 100px;
  }
}
header .logo img {
  width: 40px;
}
@media only screen and (max-width: 767px) {
  header .logo img {
    width: 30px;
  }
}
@media only screen and (max-width: 767px) {
  header nav {
    display: none;
  }
}
header nav ul {
  display: flex;
  gap: 53px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  header nav ul {
    gap: 25px;
  }
}
header nav ul a {
  color: #FFF;
  padding: 20px 10px;
  border-radius: 10px;
  font-family: "montserrat-medium";
  font-size: 16px;
  text-decoration: none;
}
header nav ul .active-lnk {
  color: #cea235;
  border: 1px solid #cea235;
}
header .m-menu {
  display: none;
}
@media only screen and (max-width: 767px) {
  header .m-menu {
    display: block;
  }
}

.m-menu-wrapper {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
.m-menu-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
.m-menu-wrapper a {
  color: #000;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #cea235;
  font-size: 35px;
  font-family: 'Jost', sans-serif;
  font-family: 'Nunito', sans-serif;
  text-decoration: none;
  letter-spacing: 3px;
}
.m-menu-wrapper .logo {
  position: absolute;
  top: 30px;
  left: 30px;
}
.m-menu-wrapper .logo img {
  width: 40px;
  height: auto;
}
.m-menu-wrapper .close {
  position: absolute;
  right: 30px;
  top: 30px;
}

.section-main {
  position: relative;
  height: 100vh;
  overflow-y: hidden;
}
@media only screen and (max-width: 1024px) {
  .section-main {
    height: auto;
    padding-bottom: 35px;
  }
}
.section-main .section-img {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  padding-top: 100px;
}
.section-main .section-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-main .content {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 626px);
  margin-right: auto;
  margin-left: auto;
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .section-main .content {
    width: 100%;
    gap: 35px;
    flex-direction: column;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .section-main .content {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section-main .content {
    padding-right: 100px;
    padding-left: 100px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .section-main .content {
    width: calc(100% - 200px);
  }
}
.section-main .content .desc {
  max-width: 600px;
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .desc {
    max-width: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .section-main .content .desc {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .section-main .content .desc {
    padding-top: 150px;
  }
}
.section-main .content .desc .title h2 {
  font-size: 64px;
  font-family: 'Jost', sans-serif;
  font-family: 'Nunito', sans-serif;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .desc .title h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .section-main .content .desc .title h2 {
    font-size: 44px;
  }
}
.section-main .content .desc .title h2 span {
  color: #cea235;
  text-shadow: 0px 0px 20px #cea235;
}
.section-main .content .desc .text {
  margin-top: 10px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .desc .text {
    margin-bottom: 25px;
  }
}
.section-main .content .desc .text p {
  font-size: 18px;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .desc .text p {
    font-size: 12px;
  }
}
.section-main .content .desc .lnk-area {
  display: flex;
  gap: 20px;
}
.section-main .content .desc .lnk-area a {
  padding: 15px 44px;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .desc .lnk-area a {
    font-size: 12px;
    padding: 5px 10px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .section-main .content .desc .lnk-area a {
    padding: 15px 24px;
  }
}
.section-main .content .desc .lnk-area .portfolio-lnk {
  color: #FFF;
  border: 1px solid #FFF;
}
.section-main .content .desc .lnk-area .portfolio-lnk:hover {
  box-shadow: 0 -3.3em 0 0 rgb(224, 224, 224) inset;
  -webkit-box-shadow: 0 -3.3em 0 0 rgb(224, 224, 224) inset;
  -moz-box-shadow: 0 -3.3em 0 0 rgb(224, 224, 224) inset;
  color: #000;
}
.section-main .content .desc .lnk-area .offer-lnk {
  color: #cea235;
  border: 1px solid #cea235;
}
.section-main .content .desc .lnk-area .offer-lnk:hover {
  box-shadow: 0 -3.3em 0 0 #cea235 inset;
  -webkit-box-shadow: 0 -3.3em 0 0 #cea235 inset;
  -moz-box-shadow: 0 -3.3em 0 0 #cea235 inset;
  color: #000;
}
.section-main .content .info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 95px;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .info {
    align-items: flex-start;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .section-main .content .info {
    padding-bottom: 70px;
  }
}
.section-main .content .info .title {
  max-width: 455px;
}
.section-main .content .info .title h1 {
  text-align: right;
  font-size: 90px;
  line-height: 90px;
  font-family: 'Jost', sans-serif;
  font-family: 'Nunito', sans-serif;
  color: #000;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-color: #FFF;
  -webkit-text-stroke-width: 1px;
  padding-bottom: 30px;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .info .title h1 {
    font-size: 45px;
    line-height: 45px;
    text-align: left;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .section-main .content .info .title h1 {
    font-size: 70px;
    line-height: 70px;
  }
}
.section-main .content .info .info-item {
  display: flex;
  gap: 45px;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .info .info-item {
    gap: 15px;
  }
}
.section-main .content .info .info-item .item {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .info .info-item .item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1024px) {
  .section-main .content .info .info-item .item .icon img {
    width: 45px;
    height: auto;
  }
}
.section-main .content .info .info-item .item .text .number {
  font-size: 24px;
  font-family: "montserrat-bold";
}
@media only screen and (max-width: 1024px) {
  .section-main .content .info .info-item .item .text .number {
    font-size: 12px;
    text-align: center;
  }
}
.section-main .content .swipe-down {
  display: inline-flex;
  gap: 25px;
  align-items: center;
  margin-bottom: 5%;
}
@media only screen and (max-width: 1024px) {
  .section-main .content .swipe-down {
    display: none;
  }
}
.section-main .content .swipe-down .icon {
  padding: 16px;
  border-radius: 50%;
  border: 1px solid #FFF;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  .section-main .content .swipe-down .icon {
    padding: 10px;
  }
}
.section-main .content .swipe-down .icon img {
  animation: swipe-animation 2s ease-in-out infinite;
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .section-main .content .swipe-down .icon img {
    width: 26px;
    height: 26px;
  }
}
.section-main .content .swipe-down .txt {
  font-size: 18px;
  font-family: "montserrat-bold";
}
.section-main .content #mobile-swipe-down {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 1025px) {
  .section-main .content #mobile-swipe-down {
    display: none;
  }
}
.section-main .content #mobile-swipe-down .icon {
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #FFF;
  position: relative;
}
.section-main .content #mobile-swipe-down .icon img {
  animation: swipe-animation 2s ease-in-out infinite;
  width: 16px;
  height: 16px;
}
.section-main .content #mobile-swipe-down .txt {
  font-size: 12px;
  font-family: "montserrat-bold";
}

@keyframes swipe-animation {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}
.about {
  background-color: #171717;
  overflow-x: hidden;
}
@media only screen and (max-width: 767px) {
  .about {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.about .content {
  display: inline-flex;
  align-items: center;
  gap: 61px;
}
@media only screen and (max-width: 1024px) {
  .about .content {
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .about .content {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about .img-content {
    width: 70%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .about .img-content {
    width: 45%;
  }
}
@media only screen and (max-width: 1440px) {
  .about .img-content img {
    width: 100%;
    height: auto;
  }
}
.about .txt-content {
  max-width: 584px;
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .about .txt-content {
    width: 45%;
  }
}
.about .txt-content h2 {
  font-size: 48px;
  font-family: 'Jost', sans-serif;
  font-family: 'Nunito', sans-serif;
  color: #FFF;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .about .txt-content h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .about .txt-content h2 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .about .txt-content h2 {
    font-size: 35px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .about .txt-content h2 {
    font-size: 40px;
  }
}
.about .txt-content h2::before {

  color: #000;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFF;
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .about .txt-content .txt {
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
  }
}
@media only screen and (max-width: 1024px) {
  .about .list-wrapper {
    display: flex;
    justify-content: center;
  }
}
.about .list-wrapper .list {
  display: inline-flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  margin-top: 15px;
}
.about .list-wrapper .list .list-item {
  display: flex;
  gap: 10px;
}
.about .list-wrapper .list .list-line {
  position: absolute;
  width: 1px;
  height: calc(100% - 16px);
  background-color: #cea235;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
}
.about .brands-area {
  display: flex;
  align-items: center;
  gap: 13px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .about .brands-area {
    flex-direction: column;
  }
}
.about .brands-area .text {
  min-width: 124px;
  max-width: 124px;
  text-align: right;
}
.about .brands-area .text span {
  color: #cea235;
}
@media only screen and (max-width: 1024px) {
  .about .brands-area .text {
    text-align: center;
    font-size: 15px;
    margin-top: 30px;
  }
}
.about .brands-area .slick-slider {
  position: unset;
}
.about .brands-area .brands-slider {
  width: 100%;
  padding-top: 55px;
  padding-bottom: 43px;
  overflow: hidden;
}
.about .brands-area .brands-slider a {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .about .brands-area .brands-slider {
    padding-top: 15px;
    padding-bottom: 25px;
  }
}
.about .brands-area .slick-dots {
  bottom: 0;
  left: 0;
}
.about .brands-area .slick-dots li {
  width: 9px;
  height: 9px;
}
.about .brands-area .slick-dots li button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #FFF;
}
.about .brands-area .slick-dots li button::before {
  display: none;
}
.about .brands-area .slick-active button {
  background-color: #cea235;
  border: 1px solid #cea235 !important;
}
.about .brands-area .slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 1024px) {
  .about .brands-area .slick-slide a {
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 767px) {
  .services {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1440px) {
  .services {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1440px) {
  .services {
    height: auto;
  }
}
.services .item-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 83px;
  row-gap: 87px;
}
@media only screen and (max-width: 767px) {
  .services .item-list {
    justify-content: center;
  }
}
.services #first-item {
  color: #cea235;
}
.services .item {
  text-align: center;
  width: 100%;
  max-width: 357px;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .services .item {
    width: 45%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .services .item {
    width: 30%;
  }
}
.services .item .title {
  font-family: "montserrat-bold";
  margin-top: 15px;
  margin-bottom: 15px;
}

.portfolio {
  background-color: #171717;
  padding-top: 115px;
  padding-bottom: 115px;
}
@media only screen and (max-width: 1024px) {
  .portfolio {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.portfolio .item-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 60px;
}
.portfolio .item-wrapper .item {
  width: 30%;
  height: auto;
}
.portfolio .item-wrapper .item a {
  width: 100%;
  display: block;
}
.portfolio .item-wrapper .item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio .load-btn {
  padding: 15px 97px;
  font-size: 15px;
  font-family: "montserrat-bold";
  border: 1px solid #FFF;
  outline: none;
  background-color: transparent;
  color: #FFF;
  cursor: pointer;
  margin-top: 80px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1024px) {
  .portfolio .load-btn {
    padding: 15px 40px;
    font-size: 12px;
  }
}

.customer {
  padding-top: 85px;
  margin-bottom: 80px;
  overflow-x: hidden;
}
.customer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 47px;
}
@media only screen and (max-width: 1024px) {
  .customer .container {
    flex-direction: column;
  }
}
.customer .section-title {
  text-align: initial;
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .customer .section-title {
    text-align: center;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .customer .section-title {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .customer .section-title h2 {
    line-height: 48px;
  }
}
@media only screen and (max-width: 1024px) {
  .customer .text {
    text-align: center;
  }
}
.customer .left {
  max-width: 567px;
}
.customer .right {
  max-width: 526px;
}
@media only screen and (max-width: 1024px) {
  .customer .right {
    width: 100%;
  }
}
.customer .right .item {
  text-align: center;
}
.customer .right .item-img {
  position: relative;
  display: inline-block;
}
.customer .right .item-img .customer-img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.customer .right .item-name {
  font-family: "montserrat-bold";
  margin-top: 14px;
  margin-bottom: 8px;
}
.customer .customer-slider .slick-dots li {
  width: 9px;
  height: 9px;
}
.customer .customer-slider .slick-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #FFF;
}
.customer .customer-slider .slick-dots button::before {
  width: 9px;
  height: 9px;
  content: "";
}
.customer .customer-slider .slick-active button {
  background-color: #FFF;
}

.contact {
  width: calc(100% - 600px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 105px;
  padding-top: 100px;
  padding-bottom: 87px;
  padding-right: 100px;
  background-color: #cea235;
  position: relative;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  .contact {
    width: calc(100% - 30px);
    padding-right: 0;
    margin-top: 55px;
    padding-top: 50px;
  }
}
@media only screen and (min-width: 500px) and (max-width: 767px) {
  .contact {
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .contact {
    width: calc(100% - 55px);
  }
}
@media only screen and (min-width: 1441px) and (max-width: 1680px) {
  .contact {
    width: calc(100% - 200px);
  }
}
.contact .contact-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.contact .contact-bg img {
  width: 100%;
}
.contact .item {
  color: #000;
  max-width: 567px;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .contact .item {
    padding-bottom: 50px;
  }
}
.contact .item-title {
  font-size: 48px;
  font-family: "montserrat-bold";
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .contact .item-title {
    font-size: 24px;
  }
}
.contact .item-text {
  margin-top: 15px;
  margin-bottom: 30px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .contact .item-text {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.contact .item-btn {
  display: flex;
  justify-content: center;
  gap: 46px;
}
@media only screen and (max-width: 1024px) {
  .contact .item-btn {
    gap: 15px;
  }
}
.contact .item-btn a {
  display: block;
  padding: 15px 44px;
  border: 1px solid #000;
  text-decoration: none;
  color: #000;
  font-family: "montserrat-bold";
  transition: all 0.5s ease;
}
@media only screen and (max-width: 1024px) {
  .contact .item-btn a {
    padding: 7px 0;
    display: flex;
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .contact .item-btn a {
    width: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .contact .item-btn a {
    width: 30%;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1440px) {
  .contact .item-btn a {
    padding: 15px 22px;
  }
}
.contact .item-btn a:hover {
  box-shadow: 0 -3.3em 0 0 rgb(0, 0, 0) inset;
  -webkit-box-shadow: 0 -3.3em 0 0 rgb(0, 0, 0) inset;
  -moz-box-shadow: 0 -3.3em 0 0 rgb(0, 0, 0) inset;
  color: #cea235;
}

footer {
  width: 100%;
  padding-bottom: 23px;
  margin-top: 85px;
}
footer .footer-line {
  width: 100%;
  max-width: 100%;
  height: 1px;
  background-color: #FFF;
  margin-bottom: 40px;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    gap: 15px;
  }
}
footer .footer-mid .footer-nav ul {
  display: flex;
  gap: 53px;
}
@media only screen and (max-width: 1024px) {
  footer .footer-mid .footer-nav ul {
    gap: 15px;
  }
}
footer .footer-mid .footer-nav a {
  text-decoration: none;
  color: #FFF;
  transition: all 0.5s ease;
}
footer .footer-mid .footer-nav a:hover {
  color: #cea235;
}
footer .social .title {
  margin-bottom: 12px;
  font-family: "montserrat-bold";
}
@media only screen and (max-width: 1024px) {
  footer .social .title {
    text-align: center;
  }
}
footer .social ul {
  display: flex;
  gap: 7px;
}
footer .social a {
  width: 25px;
  height: 25px;
  display: block;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  transition: all 0.5s ease;
}
footer .social a:hover {
  background-color: #cea235;
}
footer .copyright {
  text-align: center;
  margin-top: 30px;
}
@media only screen and (max-width: 1024px) {
  footer .logo img {
    width: 40px;
  }
}/*# sourceMappingURL=style.css.map */
