/* GENERALS */
* {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: rgba(3, 22, 89, 0.1);
}

p, h4 { cursor: default; }

ul {
    margin: 0; 
    padding: 0; 
    list-style-type: none;
}

.section_header {
    margin-top: 0;
    margin-bottom: 53px;

    color: rgba(0, 9, 94, 1);
    font-weight: 600;
    font-size: 40px;
    font-family: "Playfair Display", serif;
}

section {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 0 50px;
}

.center_container {
    width: 1200px;
    margin: 0 auto;
}





/* HEADER */
/* NAVBAR */
.nav {
    width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    position: relative
}

.nav > .nav-header {
    display: inline
}

.nav > .nav-header > .nav-title {
    display: inline-block;
    font-size: 22px;
    color: #fff
}

.nav > #nav-check, .nav > .nav-btn {
    display: none
}

.nav > .nav-links {
    display: inline;
    float: right;
    font-size: 18px;
    z-index: 9999
}

.nav > .nav-links > a {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    color: #fff;
}

.nav > .nav-links > a:hover {
    color: rgba(0, 4, 43, 1);
}

.nav-links form {
    display: inline-block;
}

.nav_logo {
    display: flex;
    justify-content: center;
    align-items: center
}

.nav_logo svg {
    width: 110px;
    z-index: 9;
}

@media (max-width: 1200px) {
    .nav {
        width: 100%;
        padding: 20px 30px;
    }
}

@media (max-width:850px) {
    .nav {
        padding: 5px 30px
    }

    .nav > .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 30px
    }

    .nav > .nav-btn > label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 13px
    }

    .nav > .nav-btn > label > span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #fff
    }

    .nav > .nav-links {
        position: absolute;
        background-color: #fff;
        height: 0;
        transition: all .3s ease-in;
        overflow-y: hidden;
        top: 115px;
        left: 0
    }

    .nav > .nav-links, .nav > .nav-links > a {
        display: block;
        width: 100%
    }

    .nav > .nav-links > a:active 

    .nav > #nav-check:not(:checked) ~ .nav-links {
        height: 0
    }

    .nav > #nav-check:checked ~ .nav-links {
        height: calc(100vh - 50px);
        overflow-y: auto
    }

    .nav > .nav-links > a {
        color: rgba(0, 4, 43, 1) !important;
    }
}

@media (min-width:850px) {
    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .nav-contact {
        padding: 10px 35px !important;
        color: #fff !important;
        background-color: #4ea216;
        border-radius: 4px;
        transition: all .2s ease
    }

    .nav-contact:hover {
        background-color: #377310
    }
}








/* MAIN */
/* MAIN - WELCOME */
#welcome {
    width: 100%;
    height: 100vh;

    margin-top: -170px;
    padding: 0;



    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome_imgContainer {
    width: 100%;
    height: 100vh;

    background-image: url('./img/theme.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;

    position: relative;
}

.carousel-inner .carousel-item:last-child .welcome_imgContainer {
    background-image: url('./img/theme_2.webp');
}

.welcome_header {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
}

.welcome_header span {
    font-size: 38px;
    font-family: "Playfair Display", serif;
}

.welcome_header, .welcome_description {
    color: #fff;
}

.welcome_header {
    font-size: 48px;
    font-weight: 600;
    font-family: "Playfair Display", serif;

    line-height: 64px;
}

.welcome_description {
    font-size: 20px;
    font-weight: 500;

    line-height: 30px;
    text-transform: uppercase;
}



/* MAIN - ABOUT */
#about {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 10%;
}

.about_contentContainer p {
    color: rgba(91, 91, 91, 1);
    line-height: 24px;
    font-size: 16px;
}

.about_contentContainer p:last-child {
    margin-bottom: 20px;
}

.about_img {
    width: 511px;
}

.about_moreBtn {
    margin-top: 15px;
    padding: 10px 25px;

    color: white;
    font-size: 18px;
    font-weight: 600;

    border-radius: 8px;
    border: 1px solid rgba(0, 8, 81, 1);

    background-color: rgba(0, 8, 81, 1);

    cursor: pointer;

    transition: all 0.3s ease;
}

.about_moreBtn:hover {
    color: rgba(0, 8, 81, 1);

    background-color: transparent;
}



/* MAIN - SERVICES */
#services {
    width: 100%;
    background-color: rgba(0, 4, 43, 1);
}

#services .section_header {
    color: #fff;
}

.services_list {
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 370px);

    gap: 0 4%;
}

.services_container {
    margin-bottom: 30px;
    padding: 40px 30px;

    border-radius: 8px;

    background-color: rgba(52,54,85,255);

    transition: all 0.3s ease;

    display: flex;
    align-items: center;
}

.services_container svg {
    width: 140px
}

.services_container:hover {
    background-color: #fff;
}

.services_container:hover .services_header, .services_container:hover .services_content {
    color: rgba(52,54,85,255);
} 

.services_container:hover svg path {
    fill: rgba(52,54,85,255);
}

.services_contentContainer {
    /* margin-left: 30px; */
    
    color: #fff;
}

.services_header {
    width: 180px;

    margin: 0 0 5px;

    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-transform: uppercase;
}

.services_content {
    margin: 0;

    font-size: 12px;
    line-height: 18px;
}



/* MAIN - PARTNERS */
#partners .section_header {
    text-align: center;
}

.partners_list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners_list li {
    width: 200px;

    display: flex;
    justify-content: center;
}

.partners_list li a {
    transition: all 0.3s ease;
}

.partners_list li a:hover {
    transform: scale(1.3);
}

.partners_list li a img {
    width: 150px;
}




/* MAIN - INFOS */
#infos {
    width: 100%;
}

.infos_container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.infos_container li {
    height: 700px;

    position: relative;

    transition: all 0.3s ease;
}

.infos_container li img {
    width: 100%;
    height: 100%;
}

.infos_container li:hover .infos_contentContainer {
    display: flex;
}

.infos_contentContainer {
    width: 100%;
    height: 100%;

    padding: 0 50px;

    -webkit-backdrop-filter: blur(15px)!important;
    backdrop-filter: blur(15px) !important;

    position: absolute;
    top: 0;

    display: none;
    flex-direction: column;
    justify-content: center;

    transition: all 0.3s ease;
}

.infos_header {
    margin: 0;

    color: rgba(0, 4, 43, 1);
    font-size: 40px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.infos_content {
    margin: 40px 0;

    color: rgba(0, 4, 43, 1);
    /* color: #fff; */
}

.infos_moreBtn {
    width: 150px;
    padding: 8px 0;

    color: rgba(0, 4, 43, 1);
    text-align: center;
    text-decoration: none;

    border: 0.1px solid black;
    border-radius: 20px;
    background-color: #fff;
}




/* MAIN - CONTACT */
#contact {
    padding-bottom: 150px;
}

.contact_formContainer {
    display: flex;
    justify-content: space-between;
}

.contact_form {
    width: 700px;
}

.contact_inputContainer {
    margin-bottom: 25px;

    display: flex;
    justify-content: space-between;
}

.contact_input {
    width: 48%;

    padding: 10px 15px;
    
    font-size: 16px;

    border-radius: 4px;
    border: 1px solid rgba(138, 140, 157, 1);

    background-color: transparent;
}

.contact_formContainer form textarea {
    width: 100%;
    margin-bottom: 20px;
    resize: none;
}

.contactList_data {
    margin-bottom: 20px;

    display: flex;
    align-items: center;

    transition: all 0.3s ease;
}

.contactList_data:hover {
    transform: scale(1.1);
}

.contactList_data svg {
    margin-right: 20px;
}

.contactList_data a {
    color: rgba(8, 21, 140, 1);
    line-height: 24px;
    text-decoration: none;
}

.contact_submit {
    padding: 10px 40px;

    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;

    border-radius: 8px;
    border: 1px solid rgba(0, 8, 81, 1);
    background-color: rgba(0, 8, 81, 1);

    cursor: pointer;

    transition: all 0.3s ease;
}

.contact_submit:hover {
    color: rgba(0, 8, 81, 1);
    background-color: transparent;
}



/* FOOTER */
footer {
    color: #fff;
    font-size: 16px;

    background-color: rgba(0, 4, 43, 1);
}

footer .center_container {
    display: flex;
    justify-content: space-between;
}

.footer_rightsTxt {
    margin: 16px 0;
}

.socialMedia_bar {
    display: flex;
    align-items: center;
}

.socialMedia_bar li {
    margin-right: 15px;
}

.socialMedia_bar li:last-child {
    margin-right: 0;
}

.socialMedia_bar li:hover path {
    fill: rgba(52,54,85,255);
}




/* RESPONSIVE */

@media (max-width: 1250px) {
    
    section, .center_container {
        width: 90%;
    }

    #about {
        flex-direction: column;
    }

    .about_contentContainer {
        margin-bottom: 70px;
    }

    #services .section_header {
        text-align: center;
    }

    .services_list {
        width: 770px;

        grid-template-columns: repeat(2, 370px);
    }

    .partners_list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20% 0;
    }

    .partners_list li {
        width: 100%;
    }

    .infos_contentContainer {
        display: flex;
    }

    .contact_formContainer {
        gap: 0 5%;
    }
}

@media (max-width: 900px) {

    .welcome_header {
        font-size: 38px;
    }

    .welcome_header, .welcome_description {
        width: 100%;
    }

    .services_list {
        width: 370px;
        grid-template-columns: 1fr;
    }

    .partners_list {
        grid-template-columns: repeat(2, 1fr);
    }

    .infos_container {
        grid-template-columns: repeat(2, 1fr);
    }

    .infos_container li:last-child {
        height: 500px;
        grid-column: 1 / -1;
    }

    .contact_formContainer {
        flex-direction: column-reverse;
    }

    .contactList {
        margin-bottom: 50px;
    }

    .contact_form {
        width: 100%;
    }
}

@media (max-width: 850px) {
    #welcome {
        margin-top: -140px
    }
}

@media (max-width: 550px) {

    .about_img {
        width: 100%;
    }

    .partners_list {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
    }
    
    .partners_list li {
        margin-bottom: 50px;
    }

    .partners_list li:last-child {
        margin-bottom: 0;
    }

    .infos_container {
        grid-template-columns: 1fr
    }

    .infos_container li {
        height: 500px;
    }
}

@media (max-width: 450px) {
    
    .services_list {
        width: 100%;
    }

    .contact_inputContainer {
        margin-bottom: 15px;
        flex-direction: column;
    }

    .contact_input {
        width: 100%;
    }

    .contact_inputContainer .contact_input:first-child {
        margin-bottom: 15px;
    }
}

@media (max-width: 420px) {
    
    .services_container {
        flex-direction: column;
    }

    .services_contentContainer {
        margin: 0;
        text-align: center;
    }

    .services_header {
        margin: 20px 0;
    }
}