* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {  
  background: var(--body-bg);
  font-family: var(--body-font);
  color: var(--body-color);
  line-height: var(--line-height);
  font-weight: var(--font-weight);
  letter-spacing: 2px;
  overflow-x: hidden;
}
input, button, textarea, select {
  font-family: var(--body-font);
  outline: none;
  background: none;
  border: none;
}

::placeholder {
  opacity: 1;
}
button {
  cursor: pointer;
  color: var(--body-color);
}
img {
  display: block;
  width: 100%;
  height: auto;
}
img.center {
  margin: 0 auto;
}
img.object {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
ul {
  padding: 0;
  margin: 0;
}
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a {
  display: block;
  text-decoration: none;
  color: var(--linkcolor);
  transition: var(--transition);
}
a.line {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-style: dotted;
}
a:hover {
  color: var(--hovercolor);
}
.fa {
  font-family: icon;
}
.space {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.center-center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%,-50%);
}
.webkit__clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.burger,
.nav__burger {
  display: none;
}

/* Modal START */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7); /* Затемнение фона на 70% */
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
.modal-window__content {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: auto;
  background-color: #272727;
  padding: 20px 30px;
  color: #fff;
  border-radius: 12px;
}
.modal-window__content h3 {
  color: #fff;
}
.modal-window__content input {
  height: 40px;
}
.modal-window__content input,
.modal-window__content textarea {
  width: 100%;
  border-radius: 6px;
  padding: 0 20px;
  color: #272727;
  font-size: 16px;
  margin-bottom: 15px;
}
.modal-window__content textarea {
  padding: 20px;
}
.modal-window__content .custom__btn {
  margin-left: auto;
}
.modal-window__content h3 {
  margin-bottom: 25px;
}
.modal-window__close {
  position: absolute;
  top: 0;
  right: -80px;
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.modal-window__close:hover,
.close-btn:hover {
  transform: rotate(90deg);
}
.modal-window__close:before,
.modal-window__close:after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 4em;
  width: 2px; 
  background-color: #fff;
}
.modal-window__close:before {
  transform: rotate(45deg);
}
.modal-window__close:after {
  transform: rotate(-45deg);
}

.modal.fade-in {
  opacity: 1;
  visibility: visible;
}
.modal.fade-out-down {
  opacity: 0;
  visibility: hidden;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

/* Modal END */

/* Form styles START */

.check {
  position: relative;
  width: 100%;
  max-width: 67%;
}
.check span {
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  z-index: 5;
  cursor: pointer;
}
.check svg #Vector {
  display: none;
}
.check.active svg #Vector {
  display: block;
}
.check label {
  display: block;
  padding-left: 30px;
  color: #fff;
  font-size: 14px;
  line-height: 17px;
  font-weight: 300;
}
.check .checkbox {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 0;
  height: 0;
  opacity: 0;
}
.check.black label {
  color: #2c2c2c;
}
.check.black svg rect {
  stroke: #2c2c2c;
}
.check.black.active svg #Vector {
  stroke: #2c2c2c !important;
}

/* END */

/* Mobile menu START */

@media screen and (max-width: 1199px) {
.burger {
  position: absolute;
  display: block !important;  
  width: 43px;
  height: 43px;
  border-radius: 6px;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  background-color: none;
  z-index: 999;  
}
.burger span {
  position: relative;
  margin-top: 9px;
  margin-bottom: 9px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 59.8%;
  margin-left: -15px;
  margin-top: -1.5px;
}
.burger span, .burger span::before, .burger span::after {
  display: block;
  width: 22px;
  height: 3px;
  background-color: #2a2a2a;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.burger span::before, .burger span::after {
  position: absolute;
  content: "";
}
.burger span::before {
  top: -9px;
}
.burger span::after {
  top: 9px;
}
.burger.clicked span {
  background-color: transparent !important;
}
.burger.clicked span::before {
  -webkit-transform: translateY(9px) rotate(45deg);
  -moz-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  -o-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}
.burger.clicked span::after {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -moz-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  -o-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}
.burger.clicked span:before, .burger.clicked span:after {
  background-color: #fff;
}
.burger:hover {
  cursor: pointer;
}

/*  NAV
========================================== */
.nav__burger {
  background: var(--color-2);
  position: fixed;
  z-index: 94;
  top: 56px;
  right: 0;
  height: 100%;
  max-width: 100%;
  width: 100%;
  padding: 70px 25px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.nav__burger.show {
  display: block;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #272727f0;
  opacity: 0;
  visibility: hidden;
}
.overlay.show {
  opacity: 1;
  z-index: 92;
  visibility: visible;
}

} /* END responsive */

/* Burger menu END */

/* Mobile menu START */

.mobnav.navigation ul {
  display: block;
}
.mobnav.navigation ul > li {
  position: relative;
  margin-right: 0 !important;
}
.mobnav.navigation ul > li .arrow {
  position: absolute;
  top: 5px;
  right: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 5px; 
  cursor: pointer;
  transform: none;
}
.mobnav.navigation ul > li .arrow:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%,-50%);
  content: "";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #fda05d;
  transition: all 0.2s ease-in-out;
}
.mobnav.navigation ul > li > a {
  display: inline-block;
  font-size: 20px;
  color: #fff;
  padding: 5px 20px 5px 0;
}
.mobnav.navigation ul > li > a.active {
  color: #fda05d;
  text-decoration: underline;
  text-underline-position: under;
}
.mobnav.navigation ul > li > ul,
.mobnav.navigation ul > li > ul > li > ul {
  display: none;
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
  background: none;
  width: 100%;
  top: inherit;
  left: inherit;
  border: none;
  box-shadow: none;
  transform-origin: inherit;
  padding-left: 15px;
}
.mobnav.navigation ul > li > ul > li:hover  ul {
  display: none !important;
}
.mobnav.navigation ul > li > ul > li .arrow {
  display: none;
}
.mobnav.navigation ul > li > ul > li:after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background-color: #fda05d;
}
.mobnav.navigation ul > li > ul:before {
  content: none;
}
.mobnav.navigation ul > li > ul > li {
  border: none !important;
  padding-left: 15px;
}
.mobnav.navigation ul > li > ul > li > a {
  font-size: 14px;
}
.mobnav.navigation ul > li.dropshow ul {
  display: block !important;
}
/* Mobile menu END */

/* Copy mail START */
.copymail {
    cursor: pointer;
}
.copymail svg path {
    transition: var(--transition);
}
.copymail:hover svg path {
    fill: #707070;    
}
.alert__message {
    background: #fff;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
}
#alertMessage.show {
            opacity: 1;
        }
.overlay-alert {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: rgba(0, 0, 0, 0.64);
 display: none;
 justify-content: center;
 align-items: center;
 z-index: 9999;           
        }

/* Copy mail END */  

/* Up button */

#button-up {
  display: inline-block;
  background: var(--linkcolor);
  width: 50px;
  height: 50px;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color .3s, 
  opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border: 1px solid #fff;
  cursor: pointer;
}
#button-up svg path {
  fill: #fff;
}
#button-up.show {
  opacity: 1;
  visibility: visible;
}

  /* END Up button */

/* Slick START */
.slick__buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.slick__buttons button {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid #d5d5d5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
}

/* Slick END */  