header{

}

.header-content{
    display: flex;
    justify-content: space-between;

    /*padding: 0 160px;*/
    padding: 0 120px 0 0;
    gap: 20px;
    background: rgb(230,230,230);
    background: linear-gradient(180deg, rgba(230,230,230,1) 0%, rgba(230,230,230,1) 34%, rgba(255,255,255,1) 100%);
    /*margin-bottom: 30px;*/
}
.header-content .logo{}
.header-content .logo img{
    height: 400px;
}
.header-content .row1, .header-content .row2, .header-content .row3{
    font-size: 2.8em;
    color: var(--main-green);
    font-style: italic;
    text-shadow: 1px 1px 1px black;
    text-transform: uppercase;
    font-weight: bolder;
    font-family: "Arial Black", sans-serif;
}
.header-content .text-content{
    padding-top: 50px;
}

.header-content .row1{
    text-indent: 50px;
}
.header-content .row2{
    text-indent: 30px;
}
.header-content .row3{
    text-indent: 10px;
}
.header-content .row4{
    font-size: 2em;
    text-transform: uppercase;
    font-weight: bolder;
    font-family: "Arial Black", sans-serif;
}

.header-nav{
    position: relative;
}
.header-nav ul{
    display: flex;
    justify-content: center;

    column-gap: 20px;
    margin: 0;
    list-style: none;
    background-color: var(--main-green);
}
.header-nav ul li:nth-child(1){
    display: none;
    padding: 12px;
}
.header-nav ul .menu-icon{
    height: 24px;
}
.header-nav ul li a{
    display: block;
    padding: 12px;
    text-decoration: none;
    font-weight: bold;
    color: var(--main-black);
}
.header-nav ul li:hover{
    background-color: #09a63a;
}


@media screen and (max-width: 1025px) {
    .header-content {
        padding: 0 80px 0 0;
    }
    .header-content .row1, .header-content .row2, .header-content .row3{
        font-size: 2.6em;
    }
    .header-content .row4{
        font-size: 1.6em;
    }

}
@media screen and (max-width: 769px) {
    .header-nav{
        height: 48px;
        overflow: hidden;
        transition: .3s;
    }
    .header-nav.show{
        height: 244px;
    }
    .header-nav ul{
        position: relative;
        flex-direction: column;
        padding-right: 2rem;
    }
    .header-nav ul li{
        border-bottom: 1px solid whitesmoke;
    }
    .header-nav ul li:nth-last-child(1){
        border-bottom: none;
    }
    .header-nav ul li:nth-child(1){
        padding: 12px;
        display: inherit;
    }
    .header-nav ul li img{
    }
    .header-nav ul li.burgerButton{
        font-size: 1.6em;
    }
    .header-content{
        padding: 0 40px 0 0;
    }
    .header-content .row1, .header-content .row2, .header-content .row3{
        font-size: 2em;
    }
    .header-content .row4{
        font-size: 1em;
    }
}
@media screen and (max-width: 426px) {
    .header-content{
        display: flex;
        flex-direction: column;
        padding: 0;
    }
    .header-content .row1, .header-content .row2, .header-content .row3, .header-content .row4{
        text-align: center;
    }
    .header-content .row1, .header-content .row2, .header-content .row3{
        text-indent: 0;
        font-size: 1.6em;
    }
    .header-content .text-content{
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 321px) {
    .header-content .logo img{
        width: 320px;
    }
}