/*----------------------------------------HEADER-----------------------------------------------*/
header{
    width: 100vw;
    max-width: 100%;
    max-width: 2000px;
    height: 70px;
    background-color: #20232C;
    padding: 0 30px;
    position: fixed;
    top: 0;
    z-index: 9997;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo{
    width: 100px;
    height: 30px;
    background-image: url('../images/logo.png');
    background-position: center;
    background-size: 100% 100%;
}

.menuDesktop{
    display: flex;
}

.menuDesktop li{
    margin: 0 7px;
}

.menuDesktop li a{
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: bold;
}

.menuDesktop li a:hover{
    color: #B9B7B7 !important;
}

.menuMobile{
    display: none;
    width: 300px;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9998;
    background-color: #121418;
    padding: 10px 0;
    text-align: center;
    padding-top: 60px;
}

.menuMobile li{
    padding: 10px 0;
    border-bottom: 2px solid #0e0f13;
}

.menuMobile li:nth-child(1){
    border-top: 2px solid #0e0f13;
}

.menuMobile li a{
    margin: 30px 0;
    font-size: 17px;
    color: #A6A6A6;
    font-weight: lighter;
}

.dark{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.8);
}

.buttonMenu{
    position: fixed;
    right: 20px;
    display: none;
    background-color: transparent;
    border: 0;
    outline: 0;
    color: white;
    font-size: 25px;
}

.closeMenu{
    z-index: 9999;
    font-size: 28px;
}

.socialMedia{
    padding: 20px;
}

.socialMedia a{
    margin: 0 10px;
    color: #A6A6A6;
}
/*---------------------------------------------------------------------------------------------*/


/*-------------------------------------FIXED-BUTTONS-------------------------------------------*/
/*.fixedButtonsBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 1%;
}*/

.goToTheTopButton{
    font-size: 40px;
    color: #239EE3;
    cursor: pointer;
    margin-bottom: 10px;
    position: fixed;
    bottom: 70px;
    right: 20px;
    display: none;
    border: 0;
    outline: 0;
    background-color: transparent;
}
.whatsButton{
    border-radius: 50px;
    font-size: 30px;
    color: white;
    background-color: #34AF23;
    cursor: pointer;
    padding: 10px 12px;
    border: 2px solid rgb(39, 143, 14);
    position: fixed;
    bottom: 20px;
    right: 10px;
}
/*---------------------------------------------------------------------------------------------*/


/*---------------------------------------SECTION1----------------------------------------------*/
.section1{
    margin-top: 70px;
    width: 100vw;
    max-width: 100%;
    min-height: calc(100vh - 70px);
    background-color: #EEF0F5;
    border-bottom: 1px solid #A6A6A6;
    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url('../images/snow.webp');
    background-position: center;
    background-size: cover;
}

.section1_socials{
    position: absolute;
    top: 50%;
    left: 0;
    display: flex;
    flex-direction: column;
}

.section1_socials a{
    padding: 5px;
    width: 50px;
    height: 35px;
    margin: 10px 10px 10px 0;
    background-color: #e67a00;
    color: white;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;

    -webkit-border-top-right-radius: 100px;
    -webkit-border-bottom-right-radius: 100px;
    -moz-border-radius-topright: 100px;
    -moz-border-radius-bottomright: 100px;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
}

.section1_socials a:hover{
    width: 55px;
}

.section1_call{
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.section1_call h1{
    color: #00A3FF;
    font-size: 60px;
}

.section1_call h4{
    color: #00A3FF;
    font-size: 28px;
}

.section1_call button{
    border: 2px solid #e67a00;
    color: #e67a00;
    outline: 0;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 16px;
    margin-top: 20px;
    font-weight:500;
    cursor: pointer;
    background-color: transparent;
    transition: 0.4s;
}

.section1_call button:hover{
    background-color: rgba(255, 136, 0, 0.8);
    color: white;
}

.section1_image{
    width: 600px;
    height: 600px;
    margin-left: 50px;
}
/*---------------------------------------------------------------------------------------------*/


/*---------------------------------------SECTION2----------------------------------------------*/
.section2{
    width: 100vw;
    max-width: 100%;
    height: 520px;/*650*/
    display: flex;
    /*align-items: center;*/
    justify-content: center;
    padding: 10px;
}

.aboutUs{
    width: 600px;
    margin-top: 80px;
}

.aboutUs h2{
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    color: #FFA500;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.aboutUs p{
    font-family: 'Open Sans', sans-serif, Arial;
    font-size: 16px;
    color: #565d66;
    line-height: 23px;
}

.section2 img{
    width: 650px;
    height: auto;
}
/*---------------------------------------------------------------------------------------------*/


/*---------------------------------------SECTION3----------------------------------------------*/
.section3{
    width: 100vw;
    max-width: 100%;
    padding-bottom: 50px;
    min-height: 500px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section3 h2{
    margin-bottom: 80px;
    background-color: #00A3FF;
    color: white;
    padding: 6px;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    width: 100%;
    text-align: center;
}

.slideBox{
    width: 1150px;
    height: 500px;
    margin-bottom: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-shadow: 0px 0px 15px -7px #000000; 
    box-shadow: 0px 0px 15px -7px #000000;
    border: 1px solid rgb(201, 201, 201);
    background-color: rgb(241, 241, 241);

    background-image: url('../images/backgroundWood.webp');
    background-position: center;
    background-size: cover;
}

.slideControl{
    height: 80%;
    width: 40px;
    font-size: 40px;
    display: flex;
    color: #8C8C8C;
    justify-content: center;
    align-items: center;
    border: 1px solid rgb(187, 187, 187);
    cursor: pointer;
    background-color: white;
}

.slideControl:hover{
    background-color: rgb(241, 241, 241);
    color: #808080;
}

.slideImage{
    width: 60%;
    height: 80%;
    border-top: 1px solid rgb(187, 187, 187);
    border-bottom: 1px solid rgb(187, 187, 187);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.slideImage img{
    max-width: 100%;
    max-height: 90%;
}

.weWorkWith{
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.iconSingle{
    width: 200px;
    text-align: center;
    margin: 50px 10px;
}

.iconSingle img{
    width: 59%;
}

.iconSingle h4{
    font-family: 'Poppins', sans-serif;
    margin-top: 13px;
    font-size: 17px;
}
/*---------------------------------------------------------------------------------------------*/


/*---------------------------------------SECTION4----------------------------------------------*/
.section4{
    width: 100%;
    padding-top: 60px;
    border: 1px solid #A6A6A6;
}

.section4 h2{
    width: 400px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 70px;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #4F4F4F;
}

.brandsBox{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.section4 img{
    width: 250px;
    height: 80px;
    margin-right: 50px;
    margin-bottom: 110px;
}
/*---------------------------------------------------------------------------------------------*/


/*---------------------------------------SECTION5----------------------------------------------*/
.section5{
    width: 100vw;
    max-width: 100%;
    height: 500px;
    background-image: url('../images/backgroundImage1.webp');
    background-position: center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #A6A6A6;
}

.section5 img{
    width: 80px;
    margin-bottom: 20px;
}

.section5 h2{
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    color: #363636;
    margin-bottom: 25px;
}

.section5 p{
    width: 540px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #565d66;
    text-align: center;
}

/*---------------------------------------------------------------------------------------------*/


/*---------------------------------------SECTION6----------------------------------------------*/
.section6{
    width: 100vw;
    max-width: 100%;
    padding: 70px 20px;
    background-image: url('../images/backgroundWood.webp');
    background-position: center;
    background-size: cover;

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

.section6 h2{
    width: 450px;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    margin-bottom: 20px;
}

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

.opnionSingle{
    width: 800px;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 20px;
}

.opnionSingle img{
    width: 80px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.opnionSingle h4{
    color: #FFA500;
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.opnionSingle p{
    color: white;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    width: 80%;
    text-align: center;
}

.opinionControl{
    color: #28a7f1;
    font-size: 40px;
    cursor: pointer;
}

.opinionControl:hover{
    color: #00A3FF;
}

/*---------------------------------------------------------------------------------------------*/


/*----------------------------------------Section7---------------------------------------------*/
.stepByStepBox{
    width: 500px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.stepsBar{
    width: 100%;
    height: 7px;
    background-color: rgb(44, 44, 44);
    position: relative;
    top: 23px;
    border-radius: 5px;
}

.barProgress{
    width: 19%;
    background-color: #00A3FF;
    height: 100%;
    border-radius: 5px;
}

.done{
    background-color: #00A3FF !important;
}

.steps{
    display: flex;
    justify-content: space-between;
    padding-left: 70px;
}

.stepSingle{
    width: 35px;
    height: 35px;
    border-radius: 35px;
    background-color: rgb(44, 44, 44);
    position: relative;
    z-index: 1;
    text-align: center;
    line-height: 35px;
    font-size: 20px;
    color: white;
}

.stepName{
    color: black;
    margin-top: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
}

.contactSection{
    width: 100%;
    padding: 80px 0 100px 0;
    background-color: #EEF0F5;
    background-image: url('../images/backgroundImage1.webp');
    background-position: center;
    background-size: cover;
}

.sectionTitle{
    text-align: center;
    color: rgb(12, 12, 12);
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    margin-bottom: 20px;
}

.contactBox{
    display: flex;
    justify-content: center;
}

.contact1{
    width: calc(90% / 2);
    margin-right: 20px;
}

.social{
    background-color: #20232C;
    color: #ffffff;
    text-align: center;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.social > i:nth-of-type(1){
    font-size: 30px;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
    background-color: rgb(207, 58, 12);
    padding: 10px 15px;
    border-radius: 10px;
}

.social h2{
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.formalContact{
    display: flex;
    background-color: #20232C;
    justify-content: space-around;
    padding: 45px;
    border-radius: 5px;
}

.socialSingleBox a{
    color: #ffffff;
}

.socialSingleBox i{
    font-size: 20px;
    margin-right: 10px;
    padding: 5px 7px;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 5px;
}

.socialSingleBox i:hover{
    background-color: rgba(9, 121, 226, 0.2);
}

.formalContact--single{
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.formalContact--single a{
    color: rgb(11, 128, 238);
}

.formalContact--single i{
    font-size: 25px;
    margin-bottom: 20px;
    color: #ffffff;
}

.formalContact--single h2{
    font-size: 18px;
    margin-bottom: 10px;
}

.contact2{
    width: calc(90% / 2);
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: #20232C;
    border-radius: 5px;
}

.contact2 h3{
    color: #ffffff;
    text-align: center;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact2 textarea,
.contact2 input{
    padding: 13px 10px;
    margin-bottom: 20px;
    outline: 0;
    font-size: 16px;
    border-radius: 3px;
    background-color: rgb(233, 233, 233);
    border: 0;
    text-align: center;
    border: 1px solid rgb(153, 153, 153);
}

.contact2 textarea{
    height: 100px;
    resize: none;
}

.contact2 button{
    width: 200px;
    margin:  0 auto;
    padding: 13px;
    cursor: pointer;
    border: 0;
    border-radius: 5px;
    font-size: 17px;
    background-color: rgb(224, 99, 15);
    color: white;
}

.contact2 button:hover{
    background-color: rgb(207, 91, 13);
    color: rgb(238, 238, 238);
}
/*---------------------------------------------------------------------------------------------*/


/*--------------------------------------Section9-----------------------------------------------*/
.section9{
    width: 100vw;
    max-width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #20232C;
    color: white;
    height: 300px;
}

.section9_field1 img{
    width: 150px;
}
.section9_field1 p{
    width: 400px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

.section9_field2 h4{
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    font-size: 18px;
}
.section9_field2 i{
    color: #FFA500;
    font-size: 14px;
    margin-right: 5px;
}
.section9_field2 li{
    margin-bottom: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.section9_field3 h4{
    margin-bottom: 15px;
}
.section9_field3 li{
    margin-bottom: 3px;
}
.section9_field3 a{
    color: #00A3FF;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}
.section9_field3 a:hover{
    border-bottom: 1px solid #00A3FF;
}
/*---------------------------------------------------------------------------------------------*/


/*----------------------------------------Footer-----------------------------------------------*/
footer{
    width: 100vw;
    max-width: 100%;
    height: 70px;
    border-top: 1px solid #13151b;
    background-color: #171a22;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 0 30px;
    font-size: 15px;
}
.mark{
    color: #E58920;
}
.mark:hover{
    border-bottom: 1px solid #E58920;
}
/*---------------------------------------------------------------------------------------------*/


/*--------------------------------------RESPONSIVE---------------------------------------------*/

@media screen and (max-width: 1400px){
    .section2{
        height: 500px;
        padding: 0 70px;
    }
    .aboutUs{
        width: 50%;
    }
    .aboutUs h2{
        font-size: 35px;
    }
    .aboutUs p{
        font-size: 14px;
    }
}

@media screen and (max-width: 1330px){
    .section1_call h1{
        font-size: 49px;
    }
    .section1_call h4{
        font-size: 23px;
    }
    .section1_image{
        width: 550px;
        height: 550px;
    }

    .slideBox{
        width: 90%;
        height: 500px;
        margin-bottom: 70px;
    }

    .section4 img{
        width: 220px;
        height: 60px;
        margin-right: 50px;
        margin-bottom: 110px;
    }
    .section2{
        
        height: auto;
        padding-bottom: 20px;
    }
    .section2 img{
        width: 50%;
        height: 40vw;
    }
    .section1_image{
        width: 450px;
        height: auto;
        margin-left: 0;
    }
}

@media screen and (max-width: 1050px){
    .section1_call h1{
        font-size: 39px;
    }
    .section1_call h4{
        font-size: 16px;
    }
    .section1_image{
        width: 450px;
        height: auto;
        margin-left: 0;
    }
    
    .section2 img{
        margin-top: 20px;
    }
    
    .section1_call button{
        background-color: rgba(255, 136, 0, 0.8);
        color: white;
    }

    .brandsBox{
        width: 100%;
        padding: 0 20px;
    }

    .opnionSingle{
        width: 90%;
    }

    .contactBox{
        flex-direction: column;
        align-items: center;
    }
    .contact1{
        width: 90%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .contact2{
        width: 90%;
    }
    .contact2 h3{
        font-size: 20px;
    }
    .contact2 textarea,
    .contact2 input{
        padding: 20px 10px;
        font-size: 20px;
    }
    .contact2 textarea{
        height: 170px;
    }
}

@media screen and (max-width: 840px){
    .section1_call h1{
        font-size: 29px;
    }
    .section1_call h4{
        font-size: 15px;
    }
    .section1_image{
        width: 50%;
    }
    .section1_call button{
        padding: 5px 14px;
        font-size: 13px;
    }

    .section2{
        height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: initial;
        padding: 20px 10px;
    }
    .aboutUs{
        width: 90%;
        margin-top: 0;
    }
    .aboutUs h2{
        font-size: 30px;
        margin-top: 30px;
        margin-bottom: 20px;
        text-align: center;
    }
    .aboutUs p{
        font-size: 14px;
    }
    .section2 img{
        width: 70%;
        height: auto;
        text-align: center;
        margin-top: 30px;
    }

    .slideImage{
        width: calc(75% - 80px);
    }

    .section9{
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 40px 0;
    }
    .section9_field1{
        margin-bottom: 35px;
    }
    .section9_field2{
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 700px){
    .section1{
        flex-direction: column;
        padding: 100px 0 40px 0;
    }
    .section1_call h1{
        font-size: 40px;
    }
    .section1_call h4{
        font-size: 20px;
    }
    .menuDesktop{
        display: none;
    }
    .openMenu{
        display: block;
    }
    header{
        justify-content: center;
    }
    .section1_call button{
        padding: 7px 20px;
        font-size: 13px;
    }
    .section1_image{
        width: 500px;
        height: 500px;
    }

    .section3 h2{
        margin-bottom: 50px;
    }
    .slideBox{
        width: 100%;
        height: 400px;
        -webkit-box-shadow: 0px 0px 0px 0px #000000; 
        box-shadow: 0px 0px 0px 0px #000000;
        border: 0;
        margin-bottom: 0;
    }
    .slideImage{
        width: 80%;
    }
    .iconSingle{
        width: 160px;
    }

    .section4 h2{
        font-size: 25px;
    }
    .section4 img{
        width: 180px;
        height: 50px;
        margin-bottom: 70px;
    }

    .section5{
        height: 400px;
    }
    .section5 h2{
        font-size: 25px;
    }
    .section5 p{
        width: 80%;
        font-size: 17px;
    }

    .section6 h2{
        font-size: 20px;
    }
    .section6 h4{
        font-size: 16px;
    }
    .opnionSingle p{
        width: 100%;
        font-size: 12px;
    }
    .opinionControl{
        font-size: 33px;
    }

    .stepByStepBox{
        width: 90%;
    }
    .formalContact{
        flex-direction: column;
    }
    .formalContact--single:nth-of-type(1){
        margin-bottom: 50px;
    }
    .formalContact--single:nth-of-type(1){
        margin-bottom: 50px;
    }
    .contact2 h3{
        margin-bottom: 35px;
    }
    .contact2 textarea,
    .contact2 input{
        padding: 15px 10px;
        font-size: 18px;
    }
    .contact2 textarea{
        height: 120px;
    }

    footer{
        height: auto;
        justify-content: center;
        flex-direction: column;
        padding: 15px 10px;
        font-size: 15px;
    }
    footer p:nth-of-type(1){
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 500px){
    .section1_call h1{
        font-size: 34px;
    }
    .section1_call h4{
        font-size: 16px;
    }
    .section1_image{
        width: 380px;
        height: auto;
    }
    .fixedButtonsBox{
        right: 2%;
    }
    .goToTheTopButton{
        font-size: 35px;
    }
    .whatsButton{
        font-size: 25px;
    }
    .section2 img{
        width: 80%;
        margin-top: 20px;
    }
    .slideBox{
        padding: 0 20px;
        height: 300px;
    }

    .section4 img{
        width: 150px;
        height: 40px;
        margin-bottom: 70px;
    }

    .section6{
        padding: 50px 20px 0 20px;
    }
    .section6 h2{
        margin-bottom: 0;
    }
    .opnionSingle{
        width: 100%;
    }
    .opnionSingle img{
        width: 60px;
    }
    .opnionSingle h4{
        font-size: 13px;
    }
    .opnionSingle p{
        font-size: 12px;
    }
}

@media screen and (max-width: 450px){
    .menuMobile{
        width: 80%;
    }
    .section1_image{
        width: 90%;
    }

    .goToTheTopButton{
        margin-bottom: 0;
    }

    .aboutUs h2{
        margin-top: 35px;
    }
    .iconSingle{
        margin: 30px 10px;
    }
    .iconSingle img{
        width: 75%;
    }

    .section4{
        padding-top: 40px;
    }
    .section4 h2{
        font-size: 19px;
        width: 90%;
    }
    .section4 img{
        width: 120px;
        height: 30px;
        margin-right: 20px;
        margin-bottom: 70px;
    }

    .section5{
        height: 300px;
    }
    .section5 img{
        width: 60px;
        margin-bottom: 10px;
    }
    .section5 h2{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .section5 p{
        width: 90%;
        font-size: 14px;
    }

    .section6 h2{
        width: 90%;
        font-size: 16px;
    }
    .section6 p{
        font-size: 12px;
    }
    .opinionControl{
        font-size: 29px;
    }

    .sectionTitle{
        font-size: 24px;
    }
    .steps{
        padding-left: 50px;
    }
    .contact1{
        width: 95%;
    }
    .contact2{
        width: 95%;
        padding: 20px 10px;
    }

    .section9_field1 img{
        width: 100px;
    }
    .section9 h4{
        font-size: 16px;
        margin-bottom: 10px;
    }
    .section9_field1{
        margin-bottom: 35px;
    }
    .section9_field3 li,
    .section9_field2 li,
    .section9_field1 p{
        width: 100%;
        padding: 0 10px;
        font-size: 13px;
    }
    .section9_field2 li i{
        font-size: 12px;
    }
}

@media screen and (max-width: 390px){
    .section1{
        flex-direction: column;
        padding: 70px 0 40px 0;
    }
    .section1_call h1{
        font-size: 30px;
    }
    .section1_call h4{
        font-size: 15px;
    }

    .section2{
        padding: 20px 10px;
    }
    .aboutUs{
        width: 90%;
    }
    .aboutUs h2{
        font-size: 25px;
        margin-top: 30px;
        margin-bottom: 15px;
    }
    .aboutUs p{
        font-size: 13px;
    }
    .slideControl{
        width: 30px;
        font-size: 30px;
    }

    .opinionControl{
        font-size: 19px;
    }
    .section6 p{
        font-size: 11px;
    }

    footer{
        font-size: 13px;
        text-align: center;
    }
}
/*---------------------------------------------------------------------------------------------*/