body {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-optical-sizing: auto;
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


/*------------------------------general-style--------------------------*/

ol, ul{
    margin: 0;
    padding: 0;
    list-style: 0;
}

a{
    text-decoration: none;
}

li{
    list-style: none;
}

h1, h2, h3, h4{
    color: #381D06;
    margin: 0;
    text-transform: uppercase;
}

h1{
    color: #FFFFFF;
    font-size: 41px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 68px;
}

h2{
    font-size: 39px;
    font-weight: 800;
}

h2 span{
    color: #AA580C;
}

h3{
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

h4{
    font-size: 18px;
    font-weight: 700;
}

p{
    color: rgb(88, 81, 76);
    font-size: 12px;
    font-weight: 500;
    line-height: 27px;
    text-transform: uppercase;
    margin: 0;

}

p:not(:last-of-type) {
    margin-bottom: 20px;
}

p:only-child {
    margin-bottom: 0;
}

.btns-stick {
    width: 100%;
    background-color: #fcf4ef;
    padding: 20px 0;
    position: fixed;
    bottom: -94px;
    transition: bottom 0.5s ease-in-out;
    z-index: 777;
    display: none;
}

.btn-call {
    display: flex;
    justify-content: center;
    font-size: 14px;
    color: #FFF;
    background-color: #AA580C;
    text-transform: uppercase;
    width: 300px;
    padding: 18px 20px;
    text-align: center;
    font-weight: 600;
    border-radius: 100px;
    transition: opacity 0.5s ease-in-out;
    margin: 0 auto;
}

.btn-call.show {
    opacity: 1;
}




/*--------------------------header-------------------------*/

.general-head-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container-contacts{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.social-btn{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-phone-faq,
.btn-phone{
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-phone-faq a,
.btn-phone a{
    color: #AA580C;
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
}

.header{
    padding: 15px 0;
}


/*------------------------------head-------------------------------*/

.hero{
    padding: 110px 0;
    background: url('../image/hero-pic.jpeg') no-repeat center top / cover;
}

.description-hero ul li{
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 43px;
}


.description-hero h4{
    color: #FFFFFF;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 34px;
}

/*--------------------firewood------------------------*/

.firewood{
    padding: 80px 0 110px 0;
}

.firewood h2{
    margin-bottom: 22px;
}

.description-hero{
    width: 60%;
    max-width: 100%;
}

.firewood h2,
.firewood p{
    text-align: center;
}

.item-firewood{
    padding: 45px 30px;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.06);
    background: #FFFFFF;
}

.firewood ul{
    padding: 10px 0;
}

.item-firewood h4{
    text-align: center;
}


.firewood li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #381D06;
    font-weight: 600;
    text-transform: uppercase;
    padding: 20px 0;
    border-bottom: 1px dashed rgb(159, 152, 146);
}

.pic-firewood{
    margin-bottom: 30px;
}


.pic-firewood picture,
.pic-firewood img{
    width: 100%;
}

.firewood li span{
    font-weight: 700;
}

li:last-child {
    border-bottom: none;
}

.firewood-container{
    margin-top: 55px;
    display: grid;
    gap: 40px 20px;
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
}


.btn-contacts{
    margin-top: 30px;
}

.submit,
.btn-contacts a{
    text-transform: uppercase;
    background-color: #AA580C;
    color: #FFFFFF;
    font-weight: 600;
    padding: 18px 20px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
}


/*-------------------------FAQ----------------------*/


.general-FAQ-container{
    display: grid;
    gap: 70px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
}


.FAQ{
    padding: 90px 0;
    background-color: #F9F6F3;
}

.tittle-block h2,
.title-FAQ h2{
    margin-bottom: 30px;
}


/*----------------------tab----------------------*/


.faq-content {
    margin: 0 auto;
}

.faq-question {
    padding: 20px 0;
    border-bottom: 1px dotted #ccc;
}

.panel-title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.7px;
    max-width: 100%;
    position: relative;
    margin: 0;
    padding: 0 0 0 54px;
    display: block;
    cursor: pointer;
}

.panel-content {
    font-size: 12px;
    font-weight: 400;
    color: #7D7D7D;
    line-height: 28px;
    text-transform: uppercase;
    padding: 0 14px;
    margin: 0 40px;
    height: 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transition: .4s ease;
}

.panel:checked ~ .panel-content {
    height: auto;
    opacity: 1;
}

.plus {
    position: absolute;
    color: #AA580C;
    font-weight: 300;
    margin-left: 20px;
    margin-top: -8px;
    z-index: 5;
    font-size: 34px;
    line-height: 100%;
    user-select: none;
    transition: .2s ease;
}

.panel:checked ~ .plus {
    transform: rotate(45deg);
}

.panel {
    display: none;
}

.panel-content p{
    margin-top: 15px;
    margin-bottom: 12px;
}

.panel-content p span{
    font-weight: 800;
}

.panel-content p a{
    color: #AA580C;
    font-weight: 800;
}


.panel-title h4{
    color: #AA580C;
    font-weight: 700;
}

.social-btn-аfaq{
    display: flex;
    gap: 15px;
}

/*--------------------------contacts----------------------*/

.contacts{
    padding-top: 110px;
}

.general-contacts-container{
    display: grid;
    gap: 80px;
    align-items: center;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);

}

.contacts-btns-social{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.contacts-btns-social p{
    font-weight: 800;
}

.block-btn-social{
    display: flex;
    gap: 10px;
}

/*---------------------form--------------------*/


.contact-form-container{
    max-width: 100%;
    padding: 55px 35px;
    box-shadow: 0px 0px 48px 0px rgba(0, 0, 0, 0.06);
    background: rgb(255, 255, 255);
}


.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 15px 25px;
    color: #381D06;
    text-transform: uppercase;
    border: 1px solid #B3AAA2;
    border-radius: 100px;
    box-sizing: border-box;
}

input::placeholder {
    font-size: 12px;
    color: #381D06;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
}

.pic-firewood-contacts{
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.pic-firewood-contacts picture,
.pic-firewood-contacts img{
    width: 1103px;
    max-width: 100%;
    height: 330px;
    display: block;
    object-fit: cover;
}


/*----------------------footer------------------------*/


.footer{
    padding: 50px 0;
    display: flex;
    justify-content: center;
    background-color: #190D03;
    text-align: center;
}

.footer p{
    color: #FFFFFF;
    font-weight: 500;
    margin-top: 18px;
}


/*---------------------------media-------------------------*/

@media screen and (max-device-width: 1024px) and (min-device-width: 360px){
    .description-hero {
        width: 100%;
    }

}

@media screen and (max-device-width: 1024px) and (min-device-width: 601px){
    .hero {
        padding: 90px 0;
    }
}


@media screen and (max-device-width: 900px) and (min-device-width: 601px){
    .container-contacts {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media screen and (max-device-width: 900px) and (min-device-width: 360px){

    h1 {
        font-size: 37px;
        font-weight: 800;
        margin-bottom: 20px;
        line-height: 57px;
    }

    h2{
        font-size: 34px;
        font-weight: 800;
    }

    .description-hero h4 {
        font-weight: 600;
        margin-bottom: 30px;
        line-height: 34px;
    }

    .description-hero {
        text-align: center;
    }

    .description-hero ul{
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .general-FAQ-container {
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .contacts{
        padding-top: 80px;
    }

    .FAQ,
    .firewood {
        padding: 80px 0;
    }

    .general-contacts-container {
        gap: 50px;
        grid-template-columns:  1fr;
    }

    .tittle-block,
    .title-FAQ{
        text-align: center;
    }
    .contacts-btns-social {
        justify-content: center;
        margin-top: 25px;
    }

}

@media screen and (max-device-width: 900px) and (min-device-width: 601px){
    .firewood-container {
        margin-top: 45px;
        gap: 40px 20px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-device-width: 768px) and (min-device-width: 360px){
    .btns-stick {
        display: block;
        justify-content: center;
    }

    .footer{
        margin-bottom: 83px;
    }
}

@media screen and (max-device-width: 560px) and (min-device-width: 360px){
    .general-head-container{
        flex-direction: column;
        justify-content: center;
    }


    .container-contacts {
        margin-top: 20px;
    }

    .social-btn {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
}

@media screen and (max-device-width: 600px) and (min-device-width: 360px){
    .firewood-container {
        margin-top: 45px;
        gap: 30px ;
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 35px 25px;
    }

    .btn-phone img{
        width: 20px;
        height: 20px;
    }

    .btn-phone a{
        font-size: 18px;
    }

    .container-contacts {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .social-btn a img{
        width: 30px;
        height: 30px;
    }

    .hero {
        padding: 70px 0;
    }

    @media screen and (max-device-width: 380px) and (min-device-width: 360px){
        h1{
            font-size: 36px;
            line-height: 52px;
        }
    }

}









