* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--body-bg);
  font-family: var(--body-font);
  font-size: var(--font-size);
  color: var(--body-color);
  line-height: 135%;
  font-weight: 400;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
}
li {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
a {
  display: block;
  text-decoration: none;
  color: var(--link-color);
  transition: var(--transition);
}
a.line {
  text-decoration: underline;
  text-underline-position: under;
  text-decoration-style: dotted;
}

/* Heading Titles START */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--titlefont);
  line-height: 130%;
}

.page__header,
.heading__title {
	margin-bottom: 40px;
}
.heading__title.center {
  text-align: center;
}
.heading__title.row {
	justify-content: space-between;
}
.heading__title.row .title {
	width: 100%;
	max-width: 90%;
	padding-right: 20px;
}
.heading__title.row .slick-buttons {
	width: 100%;
	max-width: 80px;
}

/* Heading Titles END */

/* Paragraph START */

p {
	line-height: 140%;
	margin: 0;
}
p:not(:last-child) {
	margin-bottom: 12px;
}

/* Paragraph END */


/* Buttons START */

button,
input.button {
  transition: var(--transition);
  cursor: pointer;
}

.custom__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  height: 45px;
  background: var(--btn-bg-color);
  border: 1px solid var(--btn-bg-color);
  color: var(--btn-txt-color);
  border-radius: 8px;
  transition: var(--transition);
}
.custom__btn:hover {
  background: var(--btn-bg-hover);
  color: var(--btn-txt-hover-color);
}
.custom__btn.white {
  text-transform: uppercase;
  background: #fff;
  border-radius: 50px;
  border-color: #181623;
  height: 52px;
  padding: 0 32px;
}
.custom__btn.white:hover {
  border-color: var(--color-1);
  color: var(--color-1);
}

.readmore {
  display: inline-flex;
  background: #fff;
  align-items: center;
  border-radius: 50px;
  gap: 12px;  
  padding: 4px 4px 4px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-4);
}
.icon-readmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #4F4F4F;
}
.icon-readmore svg {
  width: 16px;
}
.icon-readmore svg path {
  fill: #fff;
}
.readmore:hover .icon-readmore {
  background: var(--color-4);
} 

.show-more {
  margin: 40px auto;
  max-width: 195px;
}

/* Buttons END */


/* Custom Form START */

input, button, textarea, select {
  font-family: var(--body-font);
  outline: none;
  background: none;
  border: none;
  color: var(--body-color);
  width: 100%;
}

input::placeholder {
  opacity: 1 !important;
}

/* Убираем кнопки для всех input[type="number"] */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield; /* Для Firefox */
}

.field__group input,
.field__group select {
  width: 100%;
  height: 45px;
  border: 1px solid var(--border-color);
  background: #fff;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 400;
}
.field__group textarea {
	width: 100%;
	border: 1px solid var(--border-color);
  padding: 0 15px;
}

/* Custom Form END */

/* Slick START */
.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);    
  color: var(--body-color);
  background: none;
  font-size: 55px;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  z-index: 10;
}
.slick-slider:hover .slick-arrow {
  opacity: 1;
}
.slick-next {
  right: -35px;
}
.slick-prev {
  left: -35px;
}
.slick-slider:hover .slick-prev {
  left: -25px;
}
.slick-slider:hover .slick-next {
  right: -25px;
}
.slick-dots {
  display: flex;
  position: absolute;
  bottom: 20px;
  right: 30px;    
}
.slick-dots li {
  background: #fff;
  width: 60px;
  height: 7px;
  border-radius: 10px;
  color: transparent;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.slick-dots li:hover,
.slick-dots .slick-active {
  background: var(--color-2);
}

.slick-dots li button {
  display: none;
}
.slick-dots li:not(:last-child) {
  margin-right: 5px;  
}
/* Slick END */  

/* Icons START */

.fa {
  font-family: icon;
}

/* Icons END */

/* Images START */

img {
  display: block;
  width: 100%;
  height: auto;
}
img.center {
  margin: 0 auto;
}
img.object {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Images END */

/* Burger menu START */

.burger {
  display: none;
}

@media screen and (max-width: 992px) {
.burger {
  display: block !important;  
  width: 35px;
  height: 20px;
  
}
.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;
  
}
.burger span, .burger span::before, .burger span::after {
  display: block;
  width: 35px;
  height: 2px;
  background-color: #000;
  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;
}
.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 menu END */