@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@400;600;700;800&display=swap');

:root{
    --primary-color:#EFC728;
    --font-family: 'Martel Sans', sans-serif;
    --left-padding: 5%;
    --right-padding: 5%;
}
*{
    margin:0;
    padding:0;
    font-family: var(--font-family);
    line-height: 1.5;
}
*,::after,::before{-webkit-box-sizing:border-box;box-sizing:border-box}

h1{
    font-size: 40px;
    word-wrap: break-word;
}
h2,h3,h4,h5,h6{
    word-wrap: break-word;
}
.flex-column{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}




#news-content-archive, #single-category-content, #courses-page-archive{
    line-height: 0;
}



/* popup */
.buttons-langs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.buttons-langs *{
    margin: 5px;
    padding:5px;
}



/* header */
#main-header{
    background-color: white;
    padding: 3%;
    border-bottom: 1px solid #dcdce0;
}
.nav-item{
    margin-top: 13px;
    margin-bottom: 2px;
}
.d-none{
    display:none;
}
.d-flex{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
}
.col-1{
    width: 70%;
}
.col-1 img{
    max-width: 100%;
}
.col-2{
    width: 30%;
    text-align: end;
}
.col-2 img{
    max-width: 30%;
}






/* popup */
#popup{
    display: none;
    position: fixed;
    top:0;
    left:0;
    z-index:100;
    background-color: #000000d9;
    width: 100%;
    height: 100%;
}
.content-popup{
    background-color: white;
    margin-top:25%;
    width:80%;
    margin-left: 10%;
    padding:20px;
}




/* single post box */
.single-post, .box-post-single{
    margin-top:10px;
    line-height: 0;
}




#root h1, #root h2, #root h3,#root h4,#root h5,#root h6{
    padding-top:20px;
}
#root{
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.container{
    line-height: 0;
    padding-top:0;
    min-height: 100vh;
    margin-top:0;
    /* padding-left: 3%;
    padding-right: 3%; */
    max-width: 100%!important;
    white-space: pre-wrap;
    height: auto;
}
.container img{
    max-width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    padding-top:10px;
    padding-bottom:10px;
    height:auto;
}

pre, code {
    white-space: pre-wrap;
    word-break: keep-all;
    font-family: monospace;
    overflow: auto;
}
iframe, embed{
    max-width:100%;
}





/* post page */
.post-page, .post-page-content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.post-page{
    padding-left: var(--left-padding);
    padding-right: var(--right-padding);
}

/* about us */
.about-us-content{
    padding-left: var(--left-padding);
    padding-right: var(--right-padding);
}



/* courses page */
#courses-page-archive{
    padding-left: var(--left-padding);
    padding-right: var(--right-padding);
}


/* categories archive page */
.categories-archive-content{
    padding-left: var(--left-padding);
    padding-right: var(--right-padding);
}
#content-categories-archive{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
}
.category-box-categories{
    width: 50%;
    aspect-ratio: 1/1;
    border: 5px solid white;
    padding: 10px;
    background-color: var(--primary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}




/* single category */
#single-category-content, .title-box-single-cat{
    padding-left: var(--left-padding);
    padding-right: var(--right-padding);
}

/* news archive */
#news-content-archive, .title-news-archive{
    padding-left: var(--left-padding);
    padding-right: var(--right-padding);
}





/* front page */
.section-front{
    background-position: center;
    min-height: 60vw;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-size: cover;
}
#courses-section{
    background-image: url('./../../images/backgrounds/courses-bg.png');
}

#categories-section{
    background-image: url('./../../images/backgrounds/categories-bg.png');
}

#news-section{
    background-image: url('./../../images/backgrounds/news-bg.png');
}

#needhelp-section{
    background-image: url('./../../images/backgrounds/need-help-bg.png');
}

#aboutus-section{
    background-image: url('./../../images/backgrounds/about-us-bg.png');
}
.our-values{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top:30px;
    padding-bottom:30px;
}


/* footer */
#main-footer{
    padding-top:30px;
    padding-bottom:30px;
    background-color: black;
    color:white;
}
.logo-footer{
    max-width: 50%;
    padding-bottom: 20px;
}
.text-center{
    text-align: center;
}
.p-3{
    padding-left:3%;
    padding-right:3%;
}
.icons-sm-footer{
    /* display: flex; */
    display: none;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
}
.icons-sm-footer img{
    padding:10px;
}
#navbar-bottom{
    padding-top: 15px;
}
#navbar-bottom div{
    margin-bottom: 7px;
}





/* SINGLE POST */
.title-post{
    font-size: 36px;
    line-height: 1.1;
}






.fav-div{
    position:absolute;
    z-index:30;
    top:0;
    right:0;
    margin:10px;
    margin-top:25px;
}
.box-post-single{
    position:relative;
}




/* form  */
.for-form *{
    line-height: 1;
    margin-top: -35px;
}
#btn-submit{
    border-radius: 10px;
    border: none;
    background-color: var(--primary-color);
    padding: 10px 20px;
    font-weight: 700;
}
.form input, .form textarea{
    width: 90%;
}
.form textarea{
    margin-top: 0px;
    padding:8px;
}




/* accessibility */
.accessibility-menu span{
    margin-right: 10px;
    background-color: #EFC728;
    padding-left: 7px;
    padding-right: 7px;
    border-radius: 100px;
}
#f-s-a{
    font-size: 14px;
}
#f-m-a{
    font-size: 17px;
}
#f-l-a{
    font-size: 19px;
}




/* wordpress styles add */
.wp-block-column, .wp-block-columns { 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; 
}

/* changes 16.04 */
.about-us-content img{
    max-width: 20vw;
}
.buttons-langs button{
    border:#000000 2px solid;
    border-radius: 5px;
    padding:10px ;
}

#video{
    display: none;
    position: fixed;
    top:0;
    left:0;
    z-index:100;
    background-color: #000000d9;
    width: 100%;
    height: 100%;
}
.video-content{
    background-color: white;
    margin-top:25%;
    width:80%;
    margin-left: 10%;
    padding:12px;
    text-align: end;
}
.close-video{
    font-size: 30px;
    font-weight: 600;
}
#video iframe{
    width: 100%;
    height: 200px;
}

#row-slider{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow: hidden;
    text-align: center;
    padding-left: 0vw;
    padding-right: 0vw;
}
.slider-box{
    width: 100vw;
    -ms-flex-negative: 0;
        flex-shrink: 0;    

}

.slider-box img{
    width: 110px;
    padding-bottom: 0px;
}


.slider-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 100%;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 50px;
}
.prev-slider, .next-slider{
    margin-top: -100px;
}
.prev-slider{
    margin-left: -20px;
}
.next-slider{
    margin-right: -20px;
}

.first-slider{
    -webkit-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
.our-values{
    white-space: normal;
}
.logos{
    padding-top: 65px;
}