* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
:root {
	--container-width: 1320px;
	--gray-color: #524E4E;
	--yellow-color: #FFDB57;
    --orange-color:#F7941D;
	--transition: 1.25s cubic-bezier(.2, .5, 0, 1);
}
section {
    padding: 50px 10px;
}
.container {
    max-width: var(--container-width);
    margin: 0 auto;
}
@font-face {
	font-family: Yanone-Regular;
	src: url(../fonts/yanonekaffeesatz-regular.woff2);
}
@font-face {
	font-family: Yanone-Bold;
	src: url(../fonts/yanonekaffeesatz-bold.woff2);
}
body {
	font-family: Yanone-Regular;
	background-color: light-dark(var(--light-color), var(--dark-color));
    width: 100%;
    min-height: 100vh
}
#header {
    width: 100%;
    background: var(--gray-color);
    box-shadow: 0 4px 7px -4px grey;
	position: relative;
}
#header__big .buttons, .text__block-body .buttons {
    display: grid;
    gap: 20px;
    grid-template-columns: auto;
    align-content: center;
    padding: 0;
}
.header_text3 a::before, .footer__phone a::before {
    content: url(/img/phone.svg);
    vertical-align: middle;
    transform: scale(0.75);
}
.footer__phone {
    margin-top: 10px;
}
.footer__phone a {
    color:#fff;
    text-decoration: none;
}
@keyframes showFromLeft {
    from {left:-100%;}
    to {left:0;}
}
.header__logo img {
    position: relative;
    animation: showFromLeft 1s;
    z-index: 1;
    animation-timing-function: ease-out;
}
.btn {
    display: grid;
    position: relative;
    cursor: pointer;
    align-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    border-radius: 15px 0px;
    padding: 7px 14px 4px 61px;
    height: 42px;
    box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.25)
}
.btn:hover{
	opacity: 0.9;
	transition: all 300ms ease-in-out;
}
.btn-call::before {
	content: url(../img/phone1.svg);
	position: absolute;
}
.btn-whatsapp::before {
	content: url(../img/wapp1.svg);
	position: absolute;
}
.btn-call {
    background: linear-gradient(180deg, #F2D9B2 0%, #F07116 47.5%, #F1200D 100%);;
}
.btn-whatsapp {
	background: linear-gradient(180deg, #D0FFB7 0%, #1C8F14 50.17%, #659C5C 97.67%);
}
#features {
	background-image: url(../img/lent.jpg);
	background-repeat: repeat-x;
	height: 353px;
	box-shadow: 0 4px 7px -4px grey;
}
.features {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,1fr);
    align-items: center;
    justify-items: center;
    height: 100%;
}
.features__item {
    display: grid;
    justify-items: center;
    gap: 2px
}
.features__item-title {
    font-size: 30px;
    color: #333;
    font-weight: bold;
}
.features__item-text {
    font-size: 20px;
}
#slider {
    text-align: center;
}
.slider__header, .tehnika__header {
    font-weight: normal;
    font-size: 32px;
    border-bottom: 2px solid var(--yellow-color);
    margin-bottom: 30px;
    display: inline-block;
}
.slider__item img {
    border: 1px solid #CCCCCC;
    border-radius: 30px 0px;
    max-width: 600px;
}
.buttons {
    display: grid;
    justify-content: center;
    grid-template-columns: max-content max-content;
    padding-top: 40px;
    gap: 30px;
}
#tehnika {
    background: #FBF6E5;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25), 0px -4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
}
.tehnika {
    text-align: center;
}
.tehnika__body {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}
.tehnika__item {
    display: grid;
    gap: 10px;
}
.tehnika__item-title {
    font-size: 28px;
    color: #666666;
}
.tehnika__item-title span {
    font-weight: bold;
}
.tehnika__item-text{
    font-size: 18px;
    color: #795F01;
}
.tehnika__item-img img {
    width: 150px;
}
#text__block {
    background-color: #F6F4F4;
}
.text__block-body {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: center;
    gap: 50px;
    padding: 0 30px;
}
.text__block-text {
    font-size: 20px;
}
.text__block-text p {
    margin-bottom: 15px;
}
.header_buttons .header_buttons{
    height: 100%;
}
#footer {
    text-align: center;
    color: #fff;
}
.footer__line {
    background-image: url(../img/lent-bottom1.jpg);
    background-repeat: repeat-x;
    height: 16px;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
    position: relative;
}
.footer__body {
    background-color: #666;
    padding: 20px 0;
    font-size: 20px;
}
.footer__body-img {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3,max-content);
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}
.footer__body-img .copy{
    font-size: 30px;
    padding-top: 10px;
}
/* Слайдер */
.owl-nav {
    display: flex;
    color: #fff;
    justify-content: center;
}
#slider .owl-nav .owl-prev, #slider .owl-nav .owl-next {
    width: 45px;
    border-radius: 50%;
    background: rgb(240 231 202 / 40%);
    font-size: 40px;
    top: 40%;
    position: absolute;
}
.owl-dots {
    margin-top: 8px;
}
.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #EAE3D7;
    display: block;
    transition: opacity .2s ease;
    border-radius: 30px;
}
.owl-dots .owl-dot.active span {
    background: #f0ab35;
}
#slider .owl-nav .owl-prev {
    left: -15px;
}
#slider .owl-nav .owl-next {
    right: -15px;
}

