body{
	padding: 0px;
	margin: 0px;
    font-family: 'Petrov Sans';
}
ul{
	padding: 0px;
	margin: 0px;
}
li{
	list-style: none;
}
a{
	text-decoration: none;
	color: unset;
	cursor: pointer;
}
h1, h2, h3, h4, h5{
	margin: 0px;
    font-weight: unset;
}
p{
    margin: 0px;
}
input, button, textarea, select{
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    font-family: 'Petrov Sans';
}
.center{
    width: 90%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
}

/* HEADER */
header{
    width: 100%;
    height: auto;
    float: left;
    background-color: #000000;
    padding: 25px 0;
}
.header__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.header__item{
    width: fit-content;
    height: auto;
}
.header__item-logo{
    width: fit-content;
    height: auto;
    float: left;
}
.header__item-logo img{
    width: 170px;
    height: auto;
    float: left;
}
.header__item ul{
    width: fit-content;
    height: auto;
    float: right;
}
.header__item ul > li{
    width: fit-content;
    height: auto;
    float: left;
    margin: 0 0 0 40px;
}
.header__item ul > li > a{
    width: fit-content;
    height: auto;
    float: left;
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    padding: 0 0 0 45px;
    position: relative;
    transition: .2s;
}
.header__item ul > li > a:hover{
    color: #52AD29;
    transition: .2s;
}
.header__item ul > li > a::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.header__item ul > li:nth-child(1) > a::before{
    background-image: url('../images/icon/phone.svg');
}
.header__item ul > li:nth-child(2) > a::before{
    background-image: url('../images/icon/web.svg');
}
/* HEADER */

/* MAIN */
.main{
    width: 100%;
    height: auto;
    float: left;
    object-fit: cover;
    object-position: center;
}
/* MAIN */

/* ABOUT */
.about{
    width: 100%;
    height: auto;
    float: left;
    padding: 50px 0 0;
    background: #52AD29;
    background: linear-gradient(90deg, rgba(82, 173, 41, 1) 0%, rgba(144, 220, 61, 1) 85%);
}
.about-title{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 50px;
}
.about-poster{
    width: 90%;
    height: auto;
    float: left;
    object-fit: cover;
    object-position: center;
    margin: 0 5% 0;
}
/* ABOUT */

/* PRODUCTS */
.products{
    width: 100%;
    height: auto;
    float: left;
    padding: 50px 0;
    background: #52AD29;
    background: linear-gradient(90deg, rgba(82, 173, 41, 1) 0%, rgba(144, 220, 61, 1) 85%);
}
.products-title{
    width: 100%;
    height: auto;
    float: left;
    color: #ffffff;
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 50px;
    text-transform: uppercase;
}
.products-title span{
    font-weight: 400;
    color: #000000;
    font-size: 30px;
}
.products__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.products__item{
    width: calc(25% - 15px);
    height: auto;
    margin: 40px 0 0 0;
}
.products__box{
    width: 100%;
    height: 300px;
    float: left;
    background-color: #ffffff;
    padding: 25px 20px;
    border: 2px solid #000000;
    box-sizing: border-box;
    border-radius: 20px;
}
.products__box p{
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    font-size: 16px;
    color: #000000;
    font-weight: 700;
}
.products__box img{
    width: 100%;
    height: 210px;
    float: left;
    object-fit: contain;
    object-position: center;
    margin: 15px 0 0 0;
}
.products__item-button{
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    font-size: 16px;
    color: #000000;
    font-weight: 700;
    border-radius: 100px;
    background-color: #ffffff;
    margin: 10px 0 0 0;
    padding: 10px 0;
    border: 2px solid #000000;
    box-sizing: border-box;
    transition: .2s;
}
.products__item-button:hover{
    background-color: #000000;
    color: #ffffff;
    transition: .2s;
}
/* PRODUCTS */

/* ADVANTAGES */
.advantages{
    width: 100%;
    height: auto;
    float: left;
    padding: 0 0 50px;
    background: #52AD29;
    background: linear-gradient(90deg, rgba(82, 173, 41, 1) 0%, rgba(144, 220, 61, 1) 85%);
}
.advantages__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 5%;
    box-sizing: border-box;
}
.advantages__item{
    width: 45%;
    height: auto;
    margin: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}
.advantages__item img{
    width: 100px;
    height: 100px;
}
.advantages__item p{
    width: calc(100% - 120px);
    height: auto;
    color: #000000;
    text-align: left;
    font-size: 22px;
    font-weight: 700;
}
/* ADVANTAGES */

/* CONTACTS */
.contacts{
    width: 100%;
    height: auto;
    float: left;
    padding: 50px 0;
    background-color: #ffffff;
}
.contacts-title{
    width: 100%;
    height: auto;
    float: left;
    color: #52AD29;
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    line-height: 50px;
    letter-spacing: 1px;
}
.contacts__row{
    width: 100%;
    height: auto;
    float: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0 0 0;
    align-content: flex-start;
    align-items: flex-start;
}
.contacts__item{
    width: 46%;
    height: auto;
}
.contacts__item-poster{
    width: 100%;
    height: 400px;
    float: left;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    border: 3px solid #000000;
    box-sizing: border-box;
}
.contacts__item-title{
    width: 95%;
    height: auto;
    float: left;
    background-color: #52AD29;
    border-radius: 20px;
    padding: 14px 30px;
    box-sizing: border-box;
    color: #ffffff;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin: 15px 0 0 0;
}
.contacts__item ul{
    width: 100%;
    height: auto;
    float: left;
    margin: 10px 0 0 0;
}
.contacts__item ul > li{
    width: 100%;
    height: auto;
    float: left;
    margin: 20px 0 0 0;
}
.contacts__item ul > li > a{
    width: fit-content;
    height: auto;
    float: left;
    font-size: 30px;
    font-weight: 700;
    color: #000000;
    padding: 0 0 0 50px;
    box-sizing: border-box;
    position: relative;
    transition: .2s;
}
.contacts__item ul > li > a:hover{
    color: #52AD29;
    transition: .2s;
}
.contacts__item ul > li > a::before{
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0%;
    top: 50%;
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}
.contacts__item ul > li:nth-child(1) > a::before{
    background-image: url("../images/icon/phone.svg");
}
.contacts__item ul > li:nth-child(2) > a::before{
    background-image: url("../images/icon/vk.svg");
}
.contacts__item ul > li:nth-child(3) > a::before{
    background-image: url("../images/icon/tg.svg");
}
.contacts__item ul > li:nth-child(4) > a::before{
    background-image: url("../images/icon/email.svg");
}
/* CONTACTS */