@import url('./header.css');
@import url('./scrollbar.css');
@import url('./progress_bar.css');
@import url('./footer.css');
main{
    margin-top: 80px;
}
.hero-section-info-line{
    background-color: #111;
    color: #FFF;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 22px;
}
.main-hero-section{
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.main-hero-section h1{
    text-transform: uppercase;
    font-size: 80px;
    color: #111;
}
.main-hero-section h1::before{
    content: "<";
    color: #D11C1C;
}
.main-hero-section h1::after{
    content: "/>";
    color: #D11C1C;
}
.main-hero-section p{
    color: #222;
    font-weight: 600;
    max-width: 500px;
    font-size: 20px;
}
.main-content-section{
    padding: 50px 0;
}
.main-content-section-inner{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}
.main-content-container h2{
    color: #D11C1C;
    font-size: 42px;
    padding-bottom: 10px;
}
.main-content-container h2::before{
    content: "<";
    color: #222;
}
.main-content-container h2::after{
    content: "/>";
    color: #222;
}
.main-content-container p{
    font-size: 18px;
    text-align: justify;
}
.main-content-container-image{
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-content: center;
    object-fit: contain;
}
.about-team-section{
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    margin: 50px auto;
}
.about-team-section h3{
    color: #D11C1C;
    font-size: 42px;
    padding-bottom: 10px;
}
.about-team-section h3::before{
    content: "<";
    color: #222;
}
.about-team-section h3::after{
    content: "/>";
    color: #222;
}
.about-team-section p{
    padding: 10px 0;
}
.about-team-section img{
    width: 100%;
    object-fit: contain;
}
/* HIRE SECTION */
.hire-section-title{
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.hire-section-title h4{
    color: #222;
    font-size: 42px;
}
.hire-section-title h4::before{
    content: "<";
    color: #D11C1C;
}
.hire-section-title h4::after{
    content: "/>";
    color: #D11C1C;
}
.hire-section-title p{
    color: #222;
    font-size: 18px;
    max-width: 400px;
    text-align: right;
}
.hire-section{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.recruiment-section-grid{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    width: 100;
    margin: 10px 0;
    margin-top: 50px;
    justify-items: center;
}
.recruiment-section-grid div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}
.recruiment-section-grid div::after{
    content: "\f178";
    font-size: 28px;
    color: #D11C1C;
    font-family: FontAwesome;
}
.recruiment-section-grid div:last-child::after{
    content: "\f058";
    font-size: 28px;
    color: green;
    font-family: FontAwesome;
}

@media screen and (max-width:1100px) {
    .main-hero-section{
        height: auto;
        padding: 50px 0;
        flex-direction: column;
        gap: 50px;
    }
    .main-hero-section h1{
        text-transform: uppercase;        
        font-size: 60px;
        text-align: center;
    }
    .main-hero-section p{
        text-align: center;
    }
    .main-content-section-inner{
        grid-template-columns: repeat(1,1fr);
        max-width: 600px;
        gap: 50px;
        text-align: center;
    }
    .main-content-container p{
        text-align: center;
    }
}
@media screen and (max-width:910px) {
    /* HIRE SECTION */
    .hire-section-title{
        padding: 20px 0;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
    }
    .hire-section-title h4{
        color: #222;
        font-size: 42px;
    }
    .hire-section-title h4::before{
        content: "<";
        color: #D11C1C;
    }
    .hire-section-title h4::after{
        content: "/>";
        color: #D11C1C;
    }
    .hire-section-title p{
        color: #222;
        font-size: 18px;
        max-width: 400px;
        text-align: left;
    }
    .hire-section{
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
    }
    .recruiment-section-grid{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        width: 100;
        margin: 10px 0;
        margin-top: 50px;
        justify-items: center;
    }
    .recruiment-section-grid div{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 20px 0;
    }
    .recruiment-section-grid div::after{
        content: "\f178";
        font-size: 28px;
        color: #D11C1C;
        font-family: FontAwesome;
        transform: rotate(90deg);
    }
    .recruiment-section-grid div:last-child::after{
        content: "\f058";
        font-size: 28px;
        color: green;
        font-family: FontAwesome;
        transform: rotate(0deg);
    }
}

@media screen and (max-width:680px) {
    .hero-section-info-line{
        font-size: 18px;
    }
    .main-hero-section h1{
        font-size: 42px;
    }
    .main-hero-section p{
        font-size: 16px;
        padding: 0 20px;
    }
    .main-content-section{
        padding: 0;
    }
    .main-content-section-inner .main-content-container h2{
        font-size: 22px;
    }
    .main-content-section-inner .main-content-container p{
        font-size: 16px;
    }
    .about-team-section h3{
        font-size: 22px;
    }
    .hire-section-title h4{
        font-size: 22px;
    }
    .about-team-section img{
        width: 100%;
        height: 320px;
        object-fit: cover;
    }
}