*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* HEADER */

header{
    padding: 10px 0;
    background-color: #467146;
}

.header_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1195px;
    width: 100%;
    margin: auto;
}

.logo_container{
    max-width: 280px;
    width: 100%;
    height: auto;
}

.logoheader_desktop{
    width: 100%;
    height: auto;
}

.logoheader_mobile{
    display: none;
}

.navbar{
    max-width: 631px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-end;
}

.navbar ul{
    display: flex;
    align-items: center;
    gap: 24px;
}

.navbar ul li{
    list-style-type: none;
}

.navbar ul li a{
    color: #DDEDDE;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.navbar button{
    display: flex;
    height: 36px;
    padding: 8px 16px;
    align-items: center;
    gap: 8px;
    background: #EABF1F;
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    cursor: pointer;
    border: none;
}

/* MOBILE FIRST NAV HIDDEN */
.menu_icon{
    display: none;
    cursor: pointer;
}


.title_container{
    display: flex;
    height: 200px;
    padding: 60px 0;
    align-items: flex-end;
    gap: 8px;
    align-self: stretch;
    width: 100%;
    background-image: url("https://img.fitralin.com/header_bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.title_container h1{
    color: #000;
    font-family: "Open Sans";
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 83.2px */
    max-width: 1320px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* MAIN */

main{
    padding: 40px 0;
    background-color: #FFFFFF;
}

.main_container{
    display: flex;
    max-width: 1320px;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 56px;
    margin: auto;
}

.main_title{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    width: 100%;
}

.main_title h2{
    color: #000;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 130%; /* 41.6px */
}

.main_title h3{
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%; /* 23.4px */
}

.main_title p{
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
}

.faqs_shipping_container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
    width: 100%;
}

.faq_shipping{
    border-radius: 8px;
    border: 1px solid #F3F4F6;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    align-self: stretch;
}

.question_shipping{
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    width: 100%;
    cursor: pointer;
}

.question_shipping h4{
    color:  #000;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%; /* 24px */
}

.answer_shipping p{
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.mb{
    margin-bottom: 16px;
}

.returns, .damaged, .refound{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.returns h4, .damaged h4, .refound h4{
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}

.returns ul li{
    list-style: none;
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}

.contact{
    margin: 24px 0 40px 0;
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    background: #D5EEEE;
    width: fit-content;
}

.contact p{
    color: #000;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%; /* 27px */
}

.damaged{
    margin-bottom: 40px;
}


.hidden{
    display: none;
}


/* FOOTER */

footer{
    background: #222;
    padding: 48px 0;
}

.footer_container{
    max-width: 1320px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.footer_container img{
    max-width: 125px;
    width: 100%;
    height: 36px;
}

.footer_container p{
    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 16.9px */
}

/* RESPONSIVE DESIGN*/

@media (max-width: 475px) {
    .main_container, .footer_container {
        width: 90%;
    }
    header {
        display: flex;
        width: 100%;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    .title_container{
        display: flex;
        width: 100%;
        height: 200px;
        padding: 16px;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    .title_container h1{
        font-size: 48px;
        line-height: 130%; /* 62.4px */
    }
    .main_title h2{
        font-size: 28px;
    }
    .question_shipping h4{
        width: 83%;
    }
    .main_container{
        gap: 40px;
    }
}

/* BURGER BAR */

.hidden{
    display: none;
}

@media (max-width: 475px){
    .navbar{
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right .3s ease;
        padding: 24px;
    }
    .navbar.active{
        right: 0;
    }
    .navbar ul{
        flex-direction: column;
        gap: 32px;
    }
    .navbar button{
        width: 100%;
        justify-content: center;
    }
    .header_container {
        justify-content: space-between;
    }
    .navbar ul li a{
        font-size: 22px;
    }
    .logoheader_mobile{
        display: block;
        width: 132px;
    }
    .logoheader_desktop{
        display: none;
    }
    .menu_icon{
        display: block;
        z-index: 200;
    }
}