* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {  
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--body-font);
  font-size: var(--font-size);
  line-height: 130%;
  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: transparent;
  border-color: var(--color-1);
  color: var(--body-color);
}


/* Buttons END */

.webkit__clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 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 */