/* -------- GLOBAL STYLES -------- */

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    word-break: break-word;
    scroll-behavior: smooth;
}

:root {
    --red: #C40C0C;
    --gray: #e2e2e2;
    --dark_gray: #5f5f5f
}

body {
    overflow-x: hidden;
}

img,
svg {
    width: 100%;
    max-width: 100%;
}

a {
    cursor: pointer;
    width: fit-content;
    display: inline-block;
    text-decoration: none;
    transition: .25s;
}

button {
    cursor: pointer;
}

h1,
h2 {
    font-size: 2.3vw;
    font-weight: 800;
    color: var(--red);
}

p,
li,
span {
    font-size: 1vw;
    font-weight: 500;
    line-height: 1.5;
    color: black;
}

ul{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text_btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    width: 35%;
    color: white;
    font-size: 1.5vw;
    background: var(--red);
    padding: 1vw 1vw;
    border-radius: 2vw;
    border: .2vw solid var(--red);
    transition-duration: .3s;
}

.text_btn:hover{
    background: white;
    border: .2vw solid var(--red);
    color: var(--red);
}    

@media (max-width: 996px) {
    h1,
    h2 {
        font-size: 5.5vw;
        text-align: center;
    }
    p,
    li,
    span {
        text-align: center;
        font-size: 4.5vw;
    }
    .text_btn {
        display: flex;
        justify-content: center;
        width: 40%;
        color: white;
        font-size: 4.2vw;
        background: var(--red);
        padding: 2vw 2vw;
        border-radius: 2vw;
        border: .2vw solid var(--red);
        transition-duration: .3s;
        margin: auto;
    }
}
/*-------- HEADER STYLE --------*/

header .desktop_header {
    padding: 1vw;
    background-color: var(--red);
}

header .desktop_header .header_box {
    max-width: 100%;
    display: flex;
    justify-content: space-evenly;
}

header .desktop_header .header_box a,
header .desktop_header .header_box .networks_box a {
    font-size: 1vw;
    display: flex;
    align-items: center;
    color: white;
    transition-duration: .20s;
}

header .desktop_header .header_box i {
    margin-right: .5vw;
    color: var(--red);
    background-color: white;
    padding: .3vw;
    border-radius: 50%;
    transition-duration: .20s;
    box-shadow: 0 0 0 0.2vw white;
}

header .desktop_header .header_box a:hover i,
header .desktop_header .header_box .networks_box a:hover i {
    background: var(--red);
    box-shadow: 0 0 0 0.2vw white;
    color: white;
}

header .mobile_header {
    display: none;
}

@media (max-width: 996px) {
    header .desktop_header {
        display: none;
    }
    header .mobile_header {
        display: block;
        position: relative;
    }
    header .mobile_header {
        background: var(--red);
    }
    header .mobile_header .header_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4vw;
        padding: 5vw;
    }
    header .mobile_header .header_box a {
        color: white;
    }
    header .mobile_header .header_box i {
        margin-right: 2vw;
        background: white;
        color: var(--red);
        padding: 1vw;
        box-shadow: 0 0 0 0.2vw white;
        border-radius: 50%;
    }
}
/*-------- FOOTER STYLE --------*/

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

footer .contact_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vw;
    background: var(--red);
    padding: 5% 0;
}

footer .contact_container>img{
    width: 15%;
}

footer .contact_container h2 {
    color: white;
    font-size: 2.5vw;
    font-weight: 650;
    text-align: center;
}

footer .footer_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 3vw;
}

footer .footer_box a,
footer .networks_box a {
    font-size: 1vw;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    transition-duration: .20s;
}

footer .footer_box i {
    margin-right: .5vw;
    color: var(--red);
    background-color: white;
    padding: .35vw;
    border-radius: 50%;
    transition-duration: .20s;
    box-shadow: 0 0 0 0.2vw white;
}

footer .footer_box a:hover i,
footer .networks_box a:hover i {
    background: var(--red);
    box-shadow: 0 0 0 0.2vw white;
    color: white;
}

@media (max-width: 996px) {
    footer .contact_container {
        gap: 5vw;
    }
    footer .contact_container>img{
        width: 35%;
    }
    
    footer .contact_container h2 {
        font-size: 5vw;
    }
    
    footer .footer_box {
        line-height: 10vw;
    }
    
    footer .footer_box a,
    footer .networks_box a {
        font-size: 5vw;
    }
    footer .footer_box i {
        padding: 1vw;
        margin-right: 1vw;
    }
}