/*
Theme Name: nawa
Theme URI: https://nawa.media
Author: Hussein Khalil
Author URI: mailto:husseinkhalil420@gmail.com
Description: English Styled Theme (LTR)
Version: 2
Text Domain: nawa
*/
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
    line-height: 119.4%;
}

html {
    direction:ltr;
    scroll-behavior: smooth;
}

body{
    background-color: #EEEEF2;
}

a{
    text-decoration: none;
}

nav{
    z-index: 11111;
}

.navbar-toggler-icon{
    background-image: url("assets/icons/menu.svg");
}

.singular-navbar-toggler-icon{
    background-image: url("assets/icons/menu_white.svg") !important;
}

.navbar-toggler{
    border: none;
}

.navbar-toggler:focus{
    box-shadow: none;
}


.hk{
    direction: rtl;
    color: white;
}

.hk a{
    color: blueviolet;
}

.hk a:hover{
    color: violet;
}


.waves{
    background-image: url('src/assets/waves.png');
    width: 100%;
    height: 50px;
    background-size: cover;
    background-repeat: no-repeat;
}


.posts form,
.podcasts-page form{
    flex: 1;
    margin: 20px 0;
}

.posts form input,
.podcasts-page form input{
    background: #ddddddbright 8 top 50%;
    border: 0;
    outline: 0;
    width: 59px;
    padding: 10px;
    transition: .5s;
}

.posts form input:focus,
.podcasts-page form input:focus{
    width: 60%;
}

.no-results{
    text-align: center;
    color: #016677;
    font-size: 50px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

#load-more{
    margin: 50px auto;
    background-color: #D78079;
    padding: 15px;
    display: flex;
    border: none;
    outline: none;
    color: white;
}

#load-more-icon{
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-radius: 50%;
    border-top-color: #D78079; /* Color for the spinning part */
    animation: spin 1s linear infinite;
    margin: 50px auto; /* Center the icon horizontally */
    display: flex;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}


::selection {
    color: white;
    background: rgba(1, 100, 119, 0.56);
}

/** Start Home Page **/
.responsive-logo{
    width: 70px;
    height: 50px;
}

.current_page_item a::after{
    width: 100% !important;
}

.landing-nav{
    padding: 20px 0;
}

@media (max-width: 768px){
    .landing-nav{
        flex-wrap: wrap;
    }
}

#latestarticles .carousel-item{
    height: 449.133px
}

.landing-nav .navbar-nav .nav-item{
    margin: 0 10px;
}

.landing-nav li{
    list-style: none;
    margin-top: 10px;
    height: 50px;
}

.landing-nav ul a{
    position: relative;
    padding: 20px 30px;
    color: #016677;
    font-weight: 400;
    font-size: 18px;
    width: fit-content;
    margin-right: 25px;
}


.landing-nav ul a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #016677;
    transition: .5s;
}

.landing-nav ul a:hover,
.landing-nav ul a:focus{
    color: #016677;
}

.landing-nav ul a:hover::after{
    width: 100%;
}

.landing-nav .navbar-brand{
    flex: 1;
}

.landing-nav .navbar-brand img{
    width: 100px;
    height: 100px;
}


a:not([href]):not([class]), a:not([href]):not([class]):hover{
    color: white;
}


.comming-soon{

}

/* start slide show */
#latestarticles .post-image{
    width: 100%;
    height: 580px;
    object-fit: cover;
    filter: blur(1px);
}


#latestarticles .carousel-item{
    position: relative;
}

#latestarticles .carousel-item .post{
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    padding: 50px 20px 80px 20px;
    text-align: center;
    width: 80%;
}

@media (min-width: 992px){
    #latestarticles .carousel-item .post{
        min-width: 900px
    }
}

#latestarticles .carousel-item .post a{
    margin: auto;
}

.post .author,
.post .date{
    font-size: 18px;
    font-weight: 400;
    padding: 0 5px;
    color: white;
    -webkit-text-stroke: 2px #ffffff;
    -webkit-text-stroke-color: black;
    paint-order: stroke fill;
}

#latestarticles .carousel-item .post a{
    color: white;
    margin-top: 25px;
    width: auto;
    font-size: 61px;
}

@media (max-width: 768px){
    #latestarticles .carousel-item .post a{
        font-size: 30px;
    }
}

#latestarticles .carousel-item .post img{
    width: 22px;
    height: 23px;
    margin-right: 20px;
}

#latestarticles .carousel-item .post span{
    color: white;
    font-size: 24px;
    position: relative;
}

#latestarticles .carousel-item .post span::after{
    content: "";
    position: absolute;
    background-color: #D78079;
    width: 100%;
    height: 40%;
    right: 0;
    bottom: 0;
    z-index: -1;
}

#latestarticles .carousel-item .post h1{
    color: #FCDAD8;
    font-weight: 700;
}


.about{
    padding: 50px 0;
}

.about img{
    position: absolute;
    left: 0;
    top: 90%;
    transform: rotate(-180deg);
    z-index: -1;
}


.about p{
    color: #016477;
    font-size: 28px;
    text-align: center;
    font-weight: 400;
    line-height: 165% !important;
}

@media (max-width: 992px){
    .about p{
        font-size: 20px;
    }
}

.projects h1{
    color: #D78079;
}


.projects-container{
    margin-top: 50px;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    text-align: center;
}

@media (max-width: 992px){
    .projects-container{
        flex-direction: column;
        align-items: center;
    }
}

.projects-container .project{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0 20px;
    padding: 0 40px;
    width: calc(100% / 3);
}

@media (max-width: 1200px){
    .projects-container .project{
        padding: 0 20px;
    }
}

@media (max-width: 992px){
    .projects-container .project{
        width: 100%;
        margin-top: 50px;
    }
}

.projects-container .project:nth-child(2){
    border-right: 1px solid #016677;
    border-left: 1px solid #016677;
}

@media (max-width: 992px){
    .projects-container .project:nth-child(2){
        border: none;
    }
}

.projects-container .project img{
    width: 60px;
    height: 60px;
}

.projects-container .project h2{
    color: #016477;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 500;
}

.projects-container .project p{
    color: #016477;
    font-size: 16px;
    margin-top: 30px;
    min-height: 250px;
}

@media (max-width: 992px){
    .projects-container .project p{
        min-height: auto;
    }
}

.read-more{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 122px;
}

.read-more span{
    color: #D77E78;
    font-size: 15px;
}


.how{
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

@media (max-width: 768px){
    .how{
        padding: 50px 0;
    }
}

.how-bg{
    opacity: 0.2;
    background-image: url(assets/pattern_2.jpeg);
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

.how .container{
    padding: 0 50px;
}


.how h1{
    color: #016477;
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: 64.3%;
}

@media (max-width: 768px){
    .how h1{
        font-size: 36px;
    }
}

.how .nawa-img{
    background-image: url('assets/images/nawa.png');
    position: absolute;
    top: 6%;
    right: 5%;
    z-index: -1;
    width: 408px;
    height: 408px;
}

@media (max-width: 768px){
    .nawa-img{
        width: 323.862px !important;
        height: 323.862px !important;
        background-size: cover;
        margin-right: -189px
    }
}


.how .description{
    color: #016477;
    font-size: 20px;
    line-height: 165%;
    width: 60%;
    margin-top: 40px;
}

@media (max-width: 768px){
    .how .description{
        width: 100%;
    }
}

.how .carts{
    margin-top: 100px;
    display: flex;
    position: relative;
    z-index: 11;
}

@media (max-width: 768px){
    .how .carts{
        flex-direction: column;
        margin-top: 0;
    }
}


.how .cart{
    width: calc(100% / 3);
    background-color: white;
    box-shadow: -3px 13px 13px 0px #FFEEED;
    margin: 10px;
    padding: 40px;
    transition: .5s;
}

@media (max-width: 768px){
    .how .cart{
        width: 100%;
        margin: 10px 0;
    }
}

.how .cart:hover{
    transform: translateY(-17px);
    cursor: pointer;
}

.how .cart h2{
    color: #016477;
    font-size: 35px;
    font-weight: 700;
}

@media (max-width: 768px){
    .how .cart h2{
        font-size: 35px;
    }
}

.how .cart p{
    color: #016477;
    font-size: 16px;
}


.share{
    margin: 100px 0;
    position: relative;
}

.share-image{
    position: absolute;
    right: 0;
    top: -100%;
    z-index: -1;
}

.share .carts{
    text-align: center;
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}

@media (max-width: 992px){
    .share .carts{
        flex-direction: column;
        align-items: center;
    }
}

.share .carts .cart{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    width: calc(100% / 3);
}

@media (max-width: 992px){
    .share .carts .cart{
        width: 100%;
        margin-top: 50px;
    }
}

.share .carts .cart:nth-child(2){
    border-right: 1px solid #016677;
    border-left: 1px solid #016677;
}

@media (max-width: 992px){
    .share .carts .cart:nth-child(2){
        border: none;
    }
}

.share .carts .cart img{
    width: 60px;
    height: 60px;
}

.share .carts .cart h2{
    color: #D77E78;
    font-size: 40px;
    font-weight: bold;
}

.share .carts .cart p{
    color: #016477;
    text-align: center;
    font-size: 20px;
    min-height: 250px;
    font-weight: 500;
}

@media (max-width: 992px){
    .share .carts .cart p{
        min-height: auto;
    }
}

footer{
    clear: both;
    background: #016677;
    padding: 10px 0;
}

footer ul {
    display: flex;
    list-style: none;
    padding: 0;
}

@media (max-width: 576px){
    footer ul{
        flex-wrap: wrap;
    }
}

footer .center{
    align-self: center;
}

footer .left ul{
    margin-top: 70px;
}

.footer{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin-top: 30px;
}


@media (max-width: 992px){
    .footer{
        flex-direction: column;
    }

    .footer .left{
        margin-top: 20px;
        align-self: center;
    }
}

@media (max-width: 576px) {
    .footer {
        flex-direction: column;
    }
}

footer .right,
footer .left{
    display: flex;
    flex-direction: column;
    height: 100%;
}

footer .right .newsletter{
    margin-top: 50px;
}

footer .left{
    align-items: center;
    align-self: flex-end;
}

footer ul a{
    color: white;
    font-size: 20px;
    padding: 10px;
}

footer ul a:hover{
    color: #FCDAD8;
}


footer form{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

footer .left img{
    width: 100px;
    height: 100px;
}

footer form input,
footer form label,
footer form button{
    margin-top: 10px;
}

footer form input{
    padding: 10px;
}

footer form label{
    color: white;
}

footer form button{
    color: #FCDAD8;
    background: #D78079;
    width: 150px;
    padding: 10px 0;
    border: none;
}

/** End Home Page**/



/** start truthfullness index page **/



/** end truthfullness index page **/


/** Start Mokhber Page **/
.mokhber-header{
    min-height: 200px;
}


@media (max-width: 352px){
    .landing-nav form{
        order: 1;
    }
}


.custom-tooltip{
    --bs-tooltip-bg: #D77E78;
    --bs-tooltip-max-width: 100%;
    color: white;
}

.info-tooltip{
    display: flex;
    flex-direction: row-reverse;
}

.info-tooltip img{
    width: 25px;
    height: 25px;
    margin-right: 25px;
    margin-top: 50px;
    cursor: pointer;
}

.post .date,
.post .author,
.post .country{
}

.full-page-post{
    position: relative;
    height: 483px;
    overflow: hidden;
}

@media (max-width: 372px){
    .full-page-post{
        height: 750px;
    }
}

.post .bg{
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: .3s;
    object-fit: cover;
    filter: grayscale(1);
}

.post:hover > .bg{
    scale: 1.2;
    filter: grayscale(0);
}


.post .container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    height: 100%;
    padding: 50px 0;
    transition: 1s;
}

@media (max-width: 768px){
    .post container{
        flex-direction: column;
        padding: 0;
        padding: 50px 20px !important;
    }

    .half-page-post .post{
        width: 100% !important;
        padding: 20px !important;
    }

    .half-page-post .post .top{
        flex-direction: column-reverse;
        align-items: flex-start !important;
    }

    .half-page-post .post .country,
    .full-page-post .post .country{
        margin-top: 20px;
        display: block;
    }
}

.full-page-post .category-country{
    display: flex;
    flex-direction: column;
    height: fit-content;
}

.full-page-post .category-country span{
    font-size: 30px;
    font-weight: 500;
}

.open-source-inv{
    margin: auto;
    transform: translateY(-1px) !important;
}

.post .meta{
    flex: 70%
}
@media (max-width: 768px){
    .post .meta{
        flex: auto;
    }
}

.full-page-post .date{
    align-self: flex-end;
}

.post a:not(.container){
    font-size: 33px;
    font-weight: 500;
    line-height: 119.4%;
    display: block;
    width: 655px;
    padding: 10px 0;
    color: white;
    -webkit-text-stroke: 2px #ffffff;
    -webkit-text-stroke-color: black;
    paint-order: stroke fill;
}

@media (max-width: 576px){
    .post a:not(.container){
        font-size: 40px;
    }
}

@media (max-width: 768px){
    .post a{
        width: auto !important;
    }
}

.half-page-post .post .play{
    width: auto;
}

@media (max-width: 1300px){
    .half-page-post .post a{
        width: auto;
    }
}

@media (max-width: 576px){
    .half-page-post .post a{
        max-width: 540px;
    }
}

.post-overlay{
    width: 100% !important;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    background-color: #00000090;
    display: flex !important;
    transition: 1s;
    align-items: center;
    justify-content: center;
}

.post-overlay p{
    display: flex;
    align-items: center;
    width: 80%;
    height: 100%;
    color: white;
    font-size: 28px;
    line-height: 119.4%;
    text-align: center;
}

@media (max-width: 576px){
    .post-overlay p{
        font-size: 28px;
    }
}

.post:hover > .container{
    opacity: 0;
}

.post:hover > .post-overlay{
    opacity: 1;
}


.post .author-date-sep{
    display: flex;
}

@media (min-width: 768px) and (max-width: 1000px){
    .half-page-post .post .author-date-sep{
        flex-direction: column;
    }
}

.post .author-date-sep .sep {
    display: block;
    width: 2px;
    height: 37px;
}

@media (min-width: 768px) and (max-width: 1000px){
    .half-page-post .post .author-date-sep .sep {
        width: 50%;
        height: 2px;
    }
}


.half-page-post{
    position: relative;
    display: flex;
}

@media (max-width: 768px){
    .half-page-post{
        flex-direction: column !important;
    }
}


.half-page-post .bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.half-page-post .post{
    width: 50%;
    position: relative;
    height: 355px;
    overflow: hidden;
    padding: 50px 100px;
}

.podcasts .half-page-post .post{
    height: auto;
}


@media (max-width: 1200px){
    .half-page-post .post{
        height: auto;
    }
}

@media (max-width: 768px){
    .half-page-post .post{
        width: 100%;
    }
}

@media (max-width: 576px){
    .half-page-post .post{
        padding: 20px 50px;
        height: auto;
    }
}

.half-page-post .post .top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.half-page-post .post .bottom{
    display: flex;
    flex-direction: column;
}

.podcasts .half-page-post .post .bottom a{
    height: auto;
}


@media (max-width: 768px){
    .half-page-post .post .bottom{
        margin-top: 0;
    }
}

.post .play svg{
    cursor: pointer;
}

.post .play{
    float: right;
}

@media (max-width: 576px){
    .post .play{
        margin-top: 0;
    }
}

/** End Mokhber Page **/

/** Start Blog Page **/

.blogs .full-page-post{
    height: 645px;
}

@media (max-width: 372px){
    .blogs .full-page-post{
        height: 750px;
    }
}

.blogs .full-page-post .date{
    align-self: center;
}

.blogs .full-page-post .author{
    background-color: #4b4b4ba6;
    padding: 10px 50px;
    border-radius: 50px;
}

.blogs .full-page-post .category{
    display: flex;
    flex-direction: column;
    align-items: end;
    height: 80px;
}

.blogs .full-page-post .category span{
    direction: rtl;
    font-size: 50px;
    font-weight: 800;
}

.blogs .full-page-post .category span:first-of-type{
    margin-right: 40px;
}

.blogs .full-page-post .category span:nth-child(2){
    transform: translateY(-45px);
}

/** End Blog Page **/

/** Start Resources Page **/

.course{
    margin-top: 50px;
}

.course:nth-child(even){
    background-color: #D77E78;
    padding: 50px 10px;
}

.course .container{
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
}

.course:nth-child(even) .container{
    flex-direction: row-reverse;
}


.course .container img{
    max-width: 600px;
    width: 100%;
    height: 100%;
    flex: 1;
}

.course .container .text{
    align-self: center;
    flex: 1;
    padding: 0 50px;
}

.course .container a{
    font-size: 40px;
    color: #2A2B2A;
    font-weight: 900;
}

.course .container .quote{
    color: black;
    font-size: 20px;
    margin-top: 27px;
    line-height: 165%;
}

/** End Resources Page **/

/** Start Mokhtabar Team Page **/

.team{
    background-image: url("assets/images/team_bg.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}

.team .members{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team .members .member{
    margin: 20px;
    width: 252.684px;
    min-height: 392.283px;
}

.team .members .member img{
    width: 252.684px;
    height: 304.688px;
}

@media (max-width: 768px){
    .team .members .member{
        width: 151.61px;
        height: 235.37px;
        min-height: auto;
    }

    .team .members .member img{
        width: 151.61px;
        height: 182.813px;
    }
}

.team .member .name{
    color: #FCDAD8;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px){
    .team .member .name{
        font-size: 24px;
    }
}

.team .member .country,
.team .member .position{
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
}

@media (max-width: 768px){
    .team .member .country{
        font-size: 18px;
    }
}

.newsroom-graduates{
    background-color: #D78079
}

.newsroom-graduates .section-title{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px 30px;
}

@media (max-width: 768px){
    .newsroom-graduates .section-title{
        flex-direction: column;
    }
}

.newsroom-graduates .section-title p,
.newsroom-graduates .section-title h1{
    flex: 50%;
}

.newsroom-graduates .section-title h1{
    color: #FFF;
    font-weight: 700;
}

.newsroom-graduates .section-title p{
    color: #FFF;
    font-size: 25px;
}

@media (max-width: 768px){
    .newsroom-graduates .section-title p{
        margin-top: 25px;
    }
}

.newsroom-graduates hr{
    color: white;
}

.newsroom-graduates .carts{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}

.newsroom-graduates .cart{
    background: #2F2F2F;
    padding: 30px;
    margin: 10px 0;
}

.newsroom-graduates .cart h1{
    color: #FCDAD8;
}

.newsroom-graduates .cart h2{
    color: #fff;
}

.newsroom-graduates .cart a{
    background: #D78079;
    padding: 20px;
    color: #FCDAD8;
    display: block;
    width: fit-content;
}

/** End Mokhtabar Team Page **/

/** Start Nawa Team Page **/

.nawa-team .container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}


.nawa-team .member{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 80%;
    margin: 50px 0;
}

.nawa-team .member:nth-child(even){
    flex-direction: row-reverse;
}

@media (max-width: 992px){
    .nawa-team .member{
        width: 100%;
        text-align: center;
    }
}


.nawa-team .member .image{
    position: relative;
}


.nawa-team .member .image .icon{
    /*position: absolute;*/
    /*left: 46px;*/
    /*bottom: -89px;*/
    /*width: 150px;*/
    /*height: 150px;*/
    width: 150px;
    height: 150px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -79px;
    right: -57px;
}

.nawa-team .member:nth-child(even) .image .icon{
    left: -74px;
}

/*@media(max-width: 576px){*/
/*    .nawa-team .member .image .icon{*/
/*        left: 23px;*/
/*        width: 100px;*/
/*        height: 100px;*/
/*        bottom: -46px;*/
/*    }*/

/*    .nawa-team .member:nth-child(even) .image .icon{*/
/*        right: 23px;*/
/*    }*/
/*}*/

.nawa-team .member .image{
    /*width: 360px;*/
    width: 217px;
    height: 324px;
}

.nawa-team .member .text{
    flex: 70%;
    max-width: 400px;
    align-self: flex-end;
}

@media(max-width: 992px){
    .nawa-team .member .text{
        margin-top: 40px;
    }
}

.nawa-team .member .image .profile{
    width: 217px;
    height: 324px;
    object-fit: cover;
}

.nawa-team .member .name{
    font-size: 26px;
    color: #2A2B2A;
    font-weight: 500;
}

.nawa-team .member .role{
    color: #016677;
    font-weight: 400;
    font-size: 20px;
}

.nawa-team .member .quote{
    color: #2A2B2A;
    font-size: 18px;
    font-weight: 300;
}

/** End Nawa Team Page **/


/** Start About Page **/
#about{
    padding: 50px 0;
}

#about p{
    font-size: 25px;
}

#about h2{
    font-weight: 700;
}

.partners div{
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

@media (max-width: 576px){
    .partners div{
        flex-direction: column;
    }
}

.partners .partner{
    width: 150px;
    height: 150px;
    filter: grayscale(1);
}

#about .contact{
    color: #fcdad8;
    padding: 15px;
    background: #d78079;
    display: block;
    width: fit-content;
    margin-top: 30px;
    margin-right: auto;
    margin-left: auto;
}
/** End About Page **/

/** Start Article Page **/

@media(min-width: 900px){
    #article{
        padding: 0 150px;
    }
}

@media(min-width: 778px){
    #article{
        padding: 0 100px;
    }
}


.sticky-social {
    position: fixed;
    top: 88%;
    right: 0;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-social a {
    width: 40px;
    height: 40px;
}

.sticky-social a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}








.article-page .thumbnail-container{
    height: 550px;
}

.article-page .thumbnail{
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 600px;
    transition: .5s;
}

.article-page .title{
    position: absolute;
    height: 600px;
    width: 100%;
    top: 100px;
    z-index: 0;
}

@media(max-width: 992px){
    .article-page .title{
        width: 90%;
        right: 50%;
        transform: translateX(55%);
    }
}


.article-page .title h1{
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    z-index: 1111;
    font-family: 'Rubik', sans-serif;
    width: 100%;
    max-width: 1000px;
    color: white;
    font-size: 64px;
}

@media (max-width: 772px){
    .article-page .title h1{
        font-size: 50px;
    }
}

@media (max-width: 576px){
    .article-page .title h1{
        font-size: 40px;
    }
}

.date-author{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.date-author .author{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px;
}

.date-author .author img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-right: 20px;
}

.date-author .link{
    display: flex;
    align-items: center;
    position: relative;
}

.date-author .author span,
.date-author .date{
    position: relative;
    height: 30px;
    color: black;
}

.date-author .author span{
    margin-right: 5px;
}

.date-author .author a::after,
.date-author .date::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #016677;
}

.date-author a{
    color: #016677;
    font-weight: 500;
    height: 30px;
}


.slider{
    position: relative;
    height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 992px){
    .slider{
        height: 600px;
    }
}

@media(max-width: 576px){
    .slider{
        height: 400px;
    }
}

.slider .slide{
    transition: 1s;
    position: absolute;
    width: 600px;
    height: 500px;
}

@media(max-width: 992px){
    .slider .slide{
        width: 300px;
        height: 250px;
    }
}

@media(max-width: 576px){
    .slider .slide{
        top: 10%;
        width: 250px;
        height: 200px;
    }
}

.slide-1{
    z-index: 11;
}

.slide-2,
.slide-3,
.slide-4{
    filter: grayscale(1);
}

.slide-2{
    transform: translateX(20px);
}

.slide-3{
    transform: translate(40px, 30px);
}

.slide-4{
    transform: translate(60px, 50px);
}



.slide .slide-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide .caption{
    transition: 1s;
    transform: translate(18px, 15px);
    text-align: center;
}

@media(max-width: 576px){
    .slide .caption{
        transform: none;
    }
}

.slide .caption *{
    font-size: 14px !important;
    font-weight: 300 !important;
}

.slide-2 .caption,
.slide-3 .caption,
.slide-4 .caption{
    opacity: 0;
}


.controls{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

@media (max-width: 576px){
    .controls{
        top: 92%;
        justify-content: space-around;
    }
}

.controls span{
    cursor: pointer;
    margin: 0 !important;
}

#article img{
    cursor: zoom-in;
}


#article .alignleft {
    float: right;
    margin: 0 0 10px 30px;
}

#article .aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

#article .alignright {
    float: left;
    margin: 0 30px 10px 0;
}

.blog p img{
    max-width: 800px !important;
    width: 800px !important;
    height: 400px !important;
}

@media(max-width: 992px){
    .blog p img{
        max-width: 500px !important;
        width: 100% !important;
    }
}

.blog-image{
    width: 600px !important;
    height: 500px !important;
    padding: 0 !important;
    margin-right: auto;
    margin-left: auto;
}

@media(max-width: 992px){
    .blog-image{
        max-width: 500px !important;
        width: 100% !important;
    }
}

.blog-carousel{
    max-width: 800px !important;
    width: 800px !important;
}

@media(max-width: 992px){
    .blog-carousel{
        max-width: 500px !important;
        width: 100% !important;
    }
}

.blog-carousel img{
    max-width: 100% !important;
}

.blog-carousel p{
    max-width: 800px !important;
}


#article blockquote{
    padding: 25px;
    font-size: 15px;
    line-height: 22px;
    position: relative;
    max-width: 500px;
    width: 100%;
    margin: auto;
}

blockquote.has-text-align-left{
    float: right !important;
    margin: unset;
}

.quote-parent.left:has(blockquote){
    float: right !important;
    margin: unset;
}


#article blockquote::before{
    content: url("assets/icons/quote.svg");
    position: absolute;
    left: 0;
    top: 0;
    font-size: 100px;
    font-family: fantasy;
    transform: rotate(-180deg);
}


#article blockquote::after{
    content: url("assets/icons/quote.svg");
    position: absolute;
    font-size: 100px;
    font-family: fantasy;
    right: 0;
    bottom: 0;
}



#article blockquote:not(.parent) *{
    width: fit-content;
    padding: 10px;
}


#article table{
    margin: 25px auto;
    width: 100%;
}

#article table td{
    font-family: 'Rubik', sans-serif;
    font-size: 25px;
    padding: 12.5px 0;
}

#article table td:first-child{
    padding-left: 12.5px;
}

#article table tr:nth-child(2n) td{
    background: #f7f7f7;
}


#article img:not(.slide-image){
    width: 100%;
    height: 100%;
    object-fit: cover;
}

 #image-popup {
     position: fixed;
     top: 0;
     right: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 9999;
 }

#popup-content {
    position: relative;
    text-align: center;
}

#close-popup{
    width: 20px;
    height: 20px;
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: 111;
}

#popup-image {
    width: 90%;
    height: 90%;
}


#article h1,
#article h2,
#article h3,
#article h4,
#article h5,
#article h6{
    width: 100%;
    margin: auto !important;
}

#article h1{
    line-height: 135%;
    font-size: 22px;
    font-weight: 600;
}

#article h2{
    font-size: 20px;
    line-height: 135%;
    font-weight: 500;
}

#article h3{
    font-size: 20px;
    line-height: 135%;
    font-weight: 400;
}

#article h4{
    font-size: 18px;
    line-height: 135%;
    font-weight: 400;
}

#article a{
    color: #744D47;
}

#article p,
#article ul,
#article ol
{
    font-size: 18px;
    font-weight: 300;
    color: #000;
    line-height: 119%;
    margin: 20px auto;
}

#article span{
    line-height: 200%;
}

#article iframe{
    max-width: fit-content;
    min-width: 100%;
}


#article .wp-caption {
    max-width: 100%;
    font-family: 'Rubik', sans-serif;
}

#article .wp-caption-text {
    margin: 0;
    text-align: center;
    font-style: italic;
    color: #949494;
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
}

#article .gallery {
    margin-bottom: 20px !important;
}


#article .gallery-caption {
    max-width: 592px;
    margin: 0;
    text-align: center;
    font-style: italic;
    color: #949494;
    font-family: 'Rubik', sans-serif;
}


#article dl dt {
    font-weight: 400;
    font-style: italic;
}


#article dl dd {
    margin: 0 0 20px 0;
    font-weight: 400;
}

#article ul {
    padding-right: 20px;
    list-style-type: disc;
}


#article ol {
    list-style-type: decimal;
}

#article ol ol{
    margin: 0 !important;
    padding-right: 20px;
}


#article address {
    font-family: 'Rubik', sans-serif;
    margin: 0 0 40px 0;
    font-weight: 400;
}


#article abbr,
#article acronym {
    font-family: 'Rubik', sans-serif;
    border-bottom: 1px dotted #949494;
}


#article cite {
    font-style: italic;
}


#article code { font-family: monospace; }


#article del,
#article strike { color: #F00; text-decoration: line-through; }


#article ins {
    border-bottom: 1px solid #949494;
    color: #949494;
}

#article kbd {
    background-color:#f7f7f7;
    border:1px solid #ccc;
    color:#333;
    font-size:11px;
    line-height:1.4;
    margin:0 .1em;
    padding:.1em .6em;
    text-shadow:0 1px 0 #fff;
}

#article pre {
    border-right: 5px solid #949494;
    border-top: 1px solid #949494;
    border-left: 1px solid #949494;
    border-bottom: 1px solid #949494;
    color:#333;
    font-size:11px;
    text-shadow:0 1px 0 #fff;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    background: #fff;
    max-width: 592px;
    width: 100%;
    margin: auto;
}

#article q { font-style: italic; }


#article hr {
    clear: both;
    max-width: 592px;
    width: 100%;
    height: 2px;
    margin: 0 auto 20px auto;
    padding: 0;
    border: none;
    background: #744D47;
}

#article .hr--long {
    background: #c4c29f;
    max-width: 592px;
    width: 100%;
    height: 1px;
}

#article .mejs-container{
    width: 100%;
    margin: 20px auto;
}

#article .twitter-tweet{
    margin: 10px auto;
}


#article .infogram-embed,
#article .flourish-embed{
    margin: auto;
    width: 100%;
}

.comments-section{
}

.comments-section textarea{
    width: 100%;
}

.comments-section #author,
.comments-section #email,
.comments-section #url{
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
    margin: 10px 0;
}

.comments-section #comment{
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
    margin: 10px 0;
}

.comments-section #submit{
    padding: 10px 10px;
    background: #d78079;
    border: none;
    color: #fcdad8;
}

.comments-section .comment{
    border-left: 5px solid #FA635C;
    padding: 5px;
    margin: 10px 0;
}


/** End Article Page **/






















.page-template-page-interactiveMap #header{
    margin-bottom:0!important
}

.interactiveMap__infoCont{
    position:absolute;
    width:100%;
    z-index:3;
    overflow-y:auto;
    -webkit-transform:translateY(-100%);
    -ms-transform:translateY(-100%);
    transform:translateY(-100%);
    -webkit-transition:-webkit-transform .6s ease-in-out;
    transition:-webkit-transform .6s ease-in-out;
    -o-transition:transform .6s ease-in-out;
    transition:transform .6s ease-in-out;
    transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out
}

@media (max-width:47.99em){
    .interactiveMap__infoCont{
        height:calc(100vh - 100px)
    }
}

@media (min-width:48em){
    .interactiveMap__infoCont{
        height:calc(100vh - 100px)
    }
}

.interactiveMap__infoCont--show{
    -webkit-transform:translateY(0);
    -ms-transform:translateY(0);
    transform:translateY(0)
}

@media (max-width:47.99em){
    .interactiveMap__header{
        padding-top:45px;
        padding-bottom:45px
    }
}

@media (min-width:48em){
    .interactiveMap__header{
        padding-top:100px;
        padding-bottom:100px
    }
}

.interactiveMap__header .wpProQuiz_sending div,
.interactiveMap__header p,
.wpProQuiz_sending .interactiveMap__header div {
    color:#fff
}

.interactiveMap__title {
    color:#fff;
    font-size:57px
}

@media (max-width:47.99em){
    .interactiveMap__title{
        margin-bottom:50px
    }
}

@media (min-width:48em) {
    .interactiveMap__title{
        margin-bottom:65px
    }
}

.interactiveMap__button{
    border:1px solid #fff;
    color:#fff;background:transparent
}

.interactiveMap__button:hover{
    background:#fff;color:#262629
}

@media (max-width:47.99em) {
    .interactiveMap__button{
        margin-top:60px;
        width:100%
    }
}

.interactiveMap__mapBar {
    color: #fff;
}

@media (max-width: 47.99em) {
    .interactiveMap__mapBar {
        height: 36px;
    }
}

@media (min-width: 48em) {
    .interactiveMap__mapBar {
        height: 44px;
    }
}

.interactiveMap__mapBarInner {
    height: 100%;
}

.interactiveMap__mapBar__btnShowInfo {
    padding: 0;
    margin: 0;
    background: transparent;
    color: #fff;
    border: none;
    font-family: Frutiger LT W23_65 Bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    cursor: pointer;
    float: left;
}

.interactiveMap__mapBar__btnShowInfo svg {
    margin-right: 10px;
    width: 19px;
    height: 19px;
}

.interactiveMap__mapCont {
    width: 100%;
}

@media (max-width: 47.99em) {
    .interactiveMap__mapCont {
        height: calc(100vh - 100px);
    }
}

@media (min-width: 48em) {
    .interactiveMap__mapCont {
        height: calc(100vh - 100px);
    }
}

.interactiveMap__mapCont #iMap2021 {
    position: relative;
    z-index: 0;
    height: 100%;
}

@media (max-width: 47.99em) {
    .interactiveMap__mapCont #iMap2021 {
        height: 100%;
    }
}

@media (min-width: 48em) {
    .interactiveMap__mapCont #iMap2021 {
        height: calc(100% - 44px);
    }
}

.interactiveMap__dataPane {
    position: absolute;
    height: 92.5%;
    z-index: 2;
    top: 0;
    bottom: 0;
    max-width: 460px;
    background: #313135;
    color: #fff;
    overflow-y: auto;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    -o-transition: transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    transform: translateX(-100%);
}
.interactiveMap__dataPane::-webkit-scrollbar {
    width: 15px;
}

/* Track */
.interactiveMap__dataPane::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

/* Handle */
.interactiveMap__dataPane::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 10px;
}
@media (max-width: 47.99em) {
    .interactiveMap__dataPane {
        width: calc(100% - 10px);
        height: calc(100% - 46px);
        left: 0;
        top: 41px;
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 12px;
    }
}

@media (min-width: 48em) {
    .interactiveMap__dataPane {
        width: 100%;
        /*left: 0;*/
        left: 0;
        padding-right: 30px;
        padding-left: 30px;
        padding-top: 108px;
    }
}

.interactiveMap__dataPane svg.interactiveMap__dataPane__logo {
    width: 46px;
    height: 46px;
    position: relative;
}


/* Media Query 1 */
@media (max-width: 47.99em) {
    .interactiveMap__dataPane svg.interactiveMap__dataPane__logo {
        margin-bottom: 25px;
        right: -5px;
    }
}

/* Media Query 2 */
@media (min-width: 48em) {
    .interactiveMap__dataPane svg.interactiveMap__dataPane__logo {
        margin-bottom: 34px;
        right: -10px;
    }
}

/* General Styles */
.interactiveMap__dataPane--open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}

.interactiveMap__dataPane__btnClose {
    height: 20px;
    position: absolute;
    top: 35px;
    right: 15px;
    cursor: pointer;
}

/* Media Query 3 */
@media (max-width: 47.99em) {
    .interactiveMap__dataPane__btnClose {
        color: transparent;
        width: 30px;
    }
}

@media (min-width: 48em) {
    .interactiveMap__dataPane__btnClose {
        width: 50px;
    }
}

.interactiveMap__dataPane__btnClose svg {
    position: relative;
    top: 5px;
}

@media (max-width: 47.99em) {
    .interactiveMap__dataPane__btnClose svg {
        width: 15px;
        height: 15px;
    }
}

@media (min-width: 48em) {
    .interactiveMap__dataPane__btnClose svg {
        width: 15px;
        height: 15px;
    }
}

.interactiveMap__dataPane__inner {
    padding-bottom: 20px;
}

.interactiveMap__dataPane__inner h1 {
    color: #fff;
    font-size: 50px;
}

@media (max-width: 47.99em) {
    .interactiveMap__dataPane__inner h1 {
        margin-bottom: 45px;
    }
}

@media (min-width: 48em) {
    .interactiveMap__dataPane__inner h1 {
        margin-bottom: 68px;
    }
}

.interactiveMap__dataPane__titleLabel {
    margin-bottom: 0;
    color: #fff!important;
    font-size: 12px;
    border-top: 1px solid #fff;
}

.interactiveMap__dataPane__dataString {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
    border-top: 1px solid #fcdad8;
    padding-top: 6px;
    padding-bottom: 8px;
}

.interactiveMap__dataPane__dataString .wpProQuiz_sending div,
.interactiveMap__dataPane__dataString p,
.wpProQuiz_sending .interactiveMap__dataPane__dataString div {
    margin-bottom: 0;
}

.interactiveMap__dataPane__dataString a:hover {
    text-decoration: underline;
}

.interactiveMap__dataPane__dataString .wpProQuiz_sending div,
.interactiveMap__dataPane__dataString .wpProQuiz_sending div a,
.interactiveMap__dataPane__dataString p,
.interactiveMap__dataPane__dataString p a,
.interactiveMap__dataPane__dataString strong,
.wpProQuiz_sending .interactiveMap__dataPane__dataString div,
.wpProQuiz_sending .interactiveMap__dataPane__dataString div a {
    color: #fcdad8!important;
    font-size: 15px;
}

.rtl .interactiveMap__dataPane__dataString .wpProQuiz_sending div,
.rtl .interactiveMap__dataPane__dataString .wpProQuiz_sending div a,
.rtl .interactiveMap__dataPane__dataString p,
.rtl .interactiveMap__dataPane__dataString p a,
.rtl .interactiveMap__dataPane__dataString strong,
.wpProQuiz_sending .rtl .interactiveMap__dataPane__dataString div,
.wpProQuiz_sending .rtl .interactiveMap__dataPane__dataString div a {
    font-family: IBM Plex Sans Arabic, sans-serif!important;
}


/** Start Course Page **/
.course-content-title{
    width: 100%;
    background: #016477;
    padding: 20px 0;
}

.course-content-title h2{
    color: #FFF;
    font-size: 32px;
}

.course-content{
    margin: 50px auto;
}

.course-content .lesson{
    margin: 25px 0;
}

.lesson-title{
    height: 113.57px;
    border: 2px solid #016477;
    padding: 0 40px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

@media (max-width: 576px){
    .lesson-title{
        padding: 0 10px;
    }
}

.lesson-title h1{
    color: #016477;
    font-size: 20px;
    font-weight: 700;
}

.lesson-title .title svg{
    transform: translateX(-19px);
}

.show-course{
    border-radius: 5px;
    border: 2px solid #016477;
    padding: 10px 24px;
    gap: 10px;
    cursor: pointer;
}

.show-course .arrow{
    transition: .5s transform ease;
}


.show-course span{
    color: #016477;
    font-weight: 400;
}

.lesson .content{
    max-height: 0px;
    overflow: hidden;
    transition: .5s max-height ease;
}

.lesson .content .lesson-content{
    background-color: #016477;
    padding: 20px 90px;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    gap: 10px;
}

.lesson .content .lesson-content p{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}


.content .topics{
    padding: 50px 80px;
    background: #F0F0F0;
    overflow-y: scroll;
    height: 500px;
}

.content .topic{
    background-color: #fff;
    padding: 30px;
    margin: 10px 0;
}

.content .topic img{
    width: 26px;
    margin-bottom: 4px;
}

.content .topic a{
    color: #016477;
    font-size: 20px;
    font-weight: 700;
}

.ld-course-status.ld-course-status-enrolled {
    background-color: #f0f0f0;
    border-radius: 6px;
    display: flex;
    padding: 0.5em 1em;
}

@media (max-width: 640px){
    .ld-course-status.ld-course-status-enrolled {
        flex-direction: column;
    }
}


.ld-course-status.ld-course-status-enrolled .ld-progress {
    flex: 1;
    margin: 0;
    padding: 0 1em 0 0;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}
@media (max-width: 640px){
    .ld-course-status.ld-course-status-enrolled .ld-progress {
        align-items: flex-start;
        flex-direction: column;
        padding-right: 0;
    }
}

.ld-progress .ld-progress-heading {
    display: flex;
    font-size: .75em;
    justify-content: space-between;
    line-height: 1em;
}

@media (max-width: 640px){
    .ld-course-status.ld-course-status-enrolled .ld-progress .ld-progress-heading {
        display: block;
        text-align: center;
        width: 100%;
    }
}


.ld-progress .ld-progress-heading .ld-progress-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media (max-width: 640px){
    .ld-course-status .ld-course-status-enrolled .ld-progress .ld-progress-stats {
        flex-direction: column;
    }
}

.ld-progress .ld-progress-heading .ld-progress-stats .ld-progress-percentage {
    color: #D78079;
    font-weight: 800;
    margin-right: 5px;
    text-transform: uppercase;
}

@media (max-width: 640px){
    .ld-course-status.ld-course-status-enrolled .ld-progress .ld-progress-stats .ld-progress-steps {
        margin-left: 0;
    }

}

.ld-progress.ld-progress-inline .ld-progress-bar {
    flex: 1 auto;
    margin-right: 1em;
}

@media (max-width: 640px){
    .ld-course-status.ld-course-status-enrolled .ld-progress .ld-progress-bar {
        margin: 1em 0;
        width: 100%;
    }
}

.ld-progress .ld-progress-bar {
    background-color: #fff;
    border-radius: 7px;
    height: 7px;
    margin: 5px 0;
    overflow: hidden;
}

.ld-progress .ld-progress-bar .ld-progress-bar-percentage {
    background: #D78079;
    height: 7px;
}

.ld-progress-steps,
.ld-progress-percentage{
    font-size: 19px;
    padding-bottom: 5px;
}
/** End Course Page **/


/** Start Topic Page **/
.lesson-header{
    background-color: #04252B;
}

@media (max-width: 992px){
    .lesson-header{
        height: 65px;
    }

    .lesson-header .landing-nav-container{
        background-color: #04252B;
    }
}
.topic-title{
    width: 100%;
    background: #016477;
    padding: 20px 0;
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
}

.topic-title h2{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.topic-content{
    padding: 50px 0;
}

.topic-content .control{
    text-align: center;
}

.topic-content .next,
.topic-content .previous{
    margin: 50px 0;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #016477;
    width: 200px;
    text-align: center;
}

.topic-content .overview{
    color: #04252B;
    text-align: left;
    font-size: 24px;
    font-weight: 400;
    margin: 60px auto;
    display: inline-block;
}

.topic-content .next{
    float: right;
}

.topic-content .previous{
    float: left;
}

@media (max-width: 576px){
    .topic-content .next,
    .topic-content .previous{
        width: 150px;
    }
}

.topic-content .next span,
.topic-content .previous span{
    color: #016477;
    font-size: 20px;
    font-weight: 400;
}

.topic-content .content p{
    margin: 10px auto;
}

.topic-content .content *{
    max-width: 592px;
    margin: auto;
}

.topic-content .content-image h2{
    padding: 20px 0;
}

.topic-content .sfwd-mark-complete{
    text-align: center;
}

.topic-content .learndash_mark_complete_button{
    padding: 20px;
    border: none;
    background-color: #d78079;
    color: #fff;
    margin: 10px;
}

/* Pdf's */
.topic-pdf {
    background-image: url(assets/icons/pdf.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 100px;
    height: 100px;
    padding: 37px;
    display: block;
    border-left: 2px solid #D78079;
}

.content-image h2{
}

.content-image p{
}

.content-image .url{
    background: #f2f2f2;
    padding: 10px;
    border-left: 5px solid #D78079;
    display: block;
    overflow-x: scroll;
}


/** End Topic Page **/

/** Start Quiz Section in Topic's Page **/
.wpProQuiz_button{
    background: #016477;
    color: #fff;
    padding: 20px;
    border: none;
    width: 200px;
    display: block;
}

.wpProQuiz_questionList{
    margin: 20px auto !important;
}

.wpProQuiz_questionListItem label{
    color: #D78079;
}

/** End Quiz Section in Topic's Page **/


/** Start Tools Page **/

.tools{
    display: flex;
    justify-content: center;
    gap: 5px;
    flex-wrap: wrap;
}

.tools .tool-collection{
    width: 400px;
}

.tools .nested-collection{
    width: 100%;
}

#tools input{
    border-radius: 5px;
    width: 100%;
    padding: 10px 50px;
    background-image: url("data:image/svg+xml,%3Csvg width='23' height='25' viewBox='0 0 23 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22.5884 22.1825L16.9917 16.2417C18.4307 14.4958 19.2192 12.2991 19.2192 10.0123C19.2192 4.66928 14.9599 0.322266 9.72481 0.322266C4.48971 0.322266 0.230469 4.66928 0.230469 10.0123C0.230469 15.3552 4.48971 19.7022 9.72481 19.7022C11.6901 19.7022 13.563 19.0973 15.1642 17.9488L20.8035 23.9347C21.0392 24.1845 21.3562 24.3223 21.6959 24.3223C22.0175 24.3223 22.3226 24.1971 22.5541 23.9696C23.0462 23.4864 23.0619 22.6851 22.5884 22.1825ZM9.72481 2.85009C13.5944 2.85009 16.7424 6.06295 16.7424 10.0123C16.7424 13.9616 13.5944 17.1744 9.72481 17.1744C5.85525 17.1744 2.70725 13.9616 2.70725 10.0123C2.70725 6.06295 5.85525 2.85009 9.72481 2.85009Z' fill='%23C5C5C5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 2%;
}

#tools input:focus{
    outline: none;
}

#tools .form{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

@media(max-width: 576px){
    #tools .form{
        flex-direction: column;
    }
}
#tools .form input{
    flex-basis: 60%;
    font-size: 18px;
}

#tools .form select{
    flex-basis: 35%;
    padding: 10px 20px;
    border-radius: 5px;
    border: 2px solid black;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='10' viewBox='0 0 17 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.9794 0.882709C16.3714 1.32816 16.3714 2.04635 15.9794 2.4918L9.33144 10.0463C9.01944 10.4009 8.51544 10.4009 8.20344 10.0463L1.55544 2.4918C1.16344 2.04635 1.16344 1.32816 1.55544 0.882709C1.94744 0.437255 2.57944 0.437255 2.97144 0.882709L8.77144 7.46453L14.5714 0.87362C14.9554 0.437257 15.5954 0.437255 15.9794 0.882709Z' fill='black'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 95%;
    font-size: 18px;
    width: 100%;
}

@media (max-width: 576px){
    #tools .form select{
        margin-top: 10px;
    }
}

#tools {
    min-height: 75vh;
}

#tools .search {
    background-color: #016477;
}

#tools-container{
    padding: 50px 0;
    min-height: 72vh;
}

#tools-container .show{
    cursor: auto;
    border: none;
    padding: 0;
}

.accordion-button:focus{
    box-shadow: none;
}

.tools-container-header button{
    background-color: #016477 !important;
    color: white !important;
    font-weight: 400;
    font-size: 22px;
}

.tools-container-header button::after{
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.2903 6.61471C17.6819 7.01928 17.6819 7.67156 17.2903 8.07614L10.6486 14.9374C10.3369 15.2595 9.8334 15.2595 9.5217 14.9374L2.88006 8.07614C2.48843 7.67156 2.48843 7.01928 2.88006 6.6147C3.27168 6.21013 3.90308 6.21013 4.2947 6.6147L10.0892 12.5925L15.8836 6.60645C16.2672 6.21013 16.9066 6.21013 17.2903 6.61471Z' fill='white'/%3E%3C/svg%3E%0A");
}

.tools-container-header button:not(.collapse)::after{
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M17.2903 6.61471C17.6819 7.01928 17.6819 7.67156 17.2903 8.07614L10.6486 14.9374C10.3369 15.2595 9.8334 15.2595 9.5217 14.9374L2.88006 8.07614C2.48843 7.67156 2.48843 7.01928 2.88006 6.6147C3.27168 6.21013 3.90308 6.21013 4.2947 6.6147L10.0892 12.5925L15.8836 6.60645C16.2672 6.21013 16.9066 6.21013 17.2903 6.61471Z' fill='white'/%3E%3C/svg%3E%0A");
}

.tool-container{
    --bs-accordion-border-width: none;
    --bs-accordion-border-radius: none;
    margin: 10px 0;
}

.tool-container .accordion-item,
.tool-container .accordion-button{
    background-color: #FBFBFB;
}

.tool-container .accordion-button:focus,
.tool-container .accordion-button:not(.collapse){
    color: black;
}

.tool-container .accordion-button:not(.collapse)::after{
    background-image: var(--bs-accordion-btn-icon);
}

.tool-container .accordion-body {
    font-size: 20px;
    font-family: 'Rubik', sans-serif;
}

.tool-header .accordion-button{
    flex-direction: row-reverse;
    font-size: 22px;
}

.tool-header .accordion-button::after{
    position: absolute;
    left: 15px;
}

.tool-header img{
    width: 40px;
    height: 40px;
    margin: 0 10px;
}

.tool-header div{
    max-width: 73%;
    margin-left: 27px;
    font-family: 'sans-serif';
}

.tool-container .link{
    color: #016477;
    text-decoration: underline;
    font-size: 23px;
    font-weight: 700;
}

.tool-container .link:last-of-type{
    float: right;
}

.price-link{
    display: flex;
    align-items: center;
    justify-content: center;
    clear: both;
}

.price-link .price{
    position: relative;
    height: 29px;
    margin-left: 10px;
    text-align: center;
}

.price-link span:not(.partially){
    position: absolute;
    top: 55%;
    right: 34%;
    transform: translate(32%, -50%);
    width: 106px;
    font-size: 22px;
}

.price-link .partially{
    position: absolute;
    top: 61%;
    right: 37%;
    transform: translate(32%, -50%);
    width: 106px;
    font-size: 22px;
}

/** End Tools Page **/


/** Start Single Page **/

.single-page{
    font-size: 20px;
}


.single-page h1{
    line-height: 135%;
    font-size: 22px;
    font-weight: 600;
}

.single-page h2{
    font-size: 20px;
    line-height: 135%;
    font-weight: 500;
}

.single-page h3{
    font-size: 20px;
    line-height: 135%;
    font-weight: 400;
}

.single-page h4{
    font-size: 18px;
    line-height: 135%;
    font-weight: 400;
}


.single-page p{
    line-height: 145%;
}


.single-page .container,
#about .container{
    padding: 0 50px;
}

.the-page-title{
    color: #016677;
    padding: 20px 0;
}

.page-title{
    padding: 20px 0;
    position: relative;
    width: fit-content;
}

.page-title::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 34px;
    background-color: #FCDAD7;
    left: 0;
    bottom: 25px;
    z-index: -1;
}

.page-title svg{
    transform: translate(-42px, 35px);
    width: 33.328px;
    height: 44.438px;
}

.page-title h2{
    font-size: 24px;
    font-weight: 500;
    color: #D77E78;
}

.page-side{
    position: absolute;
    right: 0;
    z-index: -1;
    transform: rotate(-180deg);
}

.react-page-side{
    background-image: url(assets/images/page_sides.svg);
    width: 100px;
    position: absolute;
    left: 0;
    z-index: -1;
    height: 500px;
    background-repeat: no-repeat;
    background-size: contain;
}

.psl{
    top: 200%;
    right: 0;
    left: unset;
    transform: rotate(-180deg);
}

.courses .page-side{
    top: 240%;
}

.right-side{
    position: absolute;
    left: 0;
    right: unset;
    top: 100%;
    transform: unset;
}

/** End Single Page **/


/** Start Author Page **/

.author-page{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
}

.author-page h2{
    color: #016677;
    font-size: 16px;
}

.author-page img{
    width: 280px;
    height: 280px;
    border-radius: 50%;
}

.author-page .social-links{
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 10%;
}

.author-page h1{
    color: #D77E78;
}


.author-page p{
    text-align: center;
    color: #016677;
}

.author-page .latest{
    align-self: flex-start;
}

.author-page .latest h2{
    color: #D77E78;
    font-size: 32px;
}

.author-page .posts{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.author-page .posts a{
    margin: 20px 0;
    transition: .5s;
}

.author-page .posts a:hover{
    color: #D78079;
}

.author-page a{
    color: #016677;
    font-size: 32px;
}

/** End Author Page **/




/** Start Verification Post **/

.author-verification{
    flex-direction: column;
    align-items: flex-start !important;
}

/** End Verification Post **/








/****************************************** START REACT PAGES *************************************88888/*/
.podcasts-container{
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}

.loading{
    display: flex;
}

.post-single{
    flex: 1 2 49%;
    position: relative;
    height: 550px;
    overflow: hidden;
}

@media (max-width: 992px){
    .post-single{
        height: auto;
    }
}

@media (max-width: 772px){
    .post-single{
        flex: 100%;
    }
}

.post-single .bg-pattern{
    background-image: url("../../assets/bg-pattern.png");
    width: 100%;
    height: 100%;
    background-size: 100px;
    opacity: 0.1;
    transition: .5s;
    position: absolute;
    z-index: -1;
    top: 0;
}


.post-single.border{
    border: 0.1px solid black;
}

.post-single img{
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    transition: .3s;
    object-fit: cover;
}

.post-single .container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    padding: 50px 10px;
    transition: 1s;
    height: auto;
}


.odd svg *{
    fill: #D78079 !important;
}

.odd h2{
    color: #D78079 !important;
}

.even svg *{
    fill: #016677 !important;
}

.even h2{
    color: #016677 !important
}

.post-single h2{
    font-size: 40px;
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    margin: 0;
}

.post-single .date{
    background-color: #4b4b4ba6;
    padding: 10px 50px;
    border-radius: 50px;
    color: white;
    font-family: "Rubik", sans-serif;
}

.post-single a{
    font-family: "Rubik", sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 119.4%;
    display: block;
    width: 500px !important;
    padding: 10px 0;
    color: white;
}

@media(max-width: 992px){
    .post-single a{
        width: 100% !important;
    }
}

.post-single a svg{
    float: right;
}


.post-single iframe,
.post-single video{
    position: absolute;
    top: 0;
    width: 100% !important;
    height: 100% !important;
    z-index: -1;
}

@media(max-width: 772px){
    video{
        transform: translateY(-35px);
    }
}

video::cue {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 18px;
    font-family: Arial, sans-serif;
    text-shadow: -1px 1px 2px black;
    padding: 5px;
    border-radius: 5px;
    transform: translateY(200px);
}

video::cue(b) {
    color: peachpuff;
}

.post .bg{
    filter: grayscale(1);
}

.post:hover > .bg{
    scale: 1.2;
    filter: grayscale(0);
}

.post:hover > .bg-pattern{
    filter: grayscale(1) !important;
}


.post .play{
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-single-container{
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 111;
    background-color: #000000c7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.podcast-single-container .close{
    color: white;
    position: absolute;
    top: 10px;
    left: 20px;
    cursor: pointer;
}

.podcast-single{
    height: 600px;
}

@media(max-width: 772px){
    .podcast-single{
        height: auto;
    }
}

.podcast-single .container{
    height: auto;
    transition: 1s;
}

.podcast-single .container a{
    width: 600px;
}

@media(max-width: 772px){
    .podcast-single .container a{
        width: 100%;
    }
}

.audio-player{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-around;
    padding: 0 100px;
    cursor: pointer;
}

@media(max-width: 992px){
    .audio-player{
        flex-wrap: wrap;
    }
}

@media(max-width: 772px){
    .audio-player{
        padding: 0 10px;
    }
}

.audio-player div{
    width: 90%;
}

@media(max-width: 772px){
    .audio-player{
        padding: 0 10px;
    }
}



/* Start Video Player */

.video-player .controls{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row-reverse;
    padding: 0 50px;
}

.video-player .controls .play-pause{
    margin-left: 20px;
}

.controls svg{
    cursor: pointer;
}

.progress-bar svg:hover > rect{
    transform: scaleY(50);
}

.progress-bar svg *{
    transform-origin: center;
    transition: .5s;
}

/* End Video Player */




/* Start Iframe (old Podcasts) */



.contains-iframe:hover > .container{
    opacity: 0 !important;
    z-index: -1;
}

.contains-iframe:hover > .iframe *{
    z-index: 1 !important;
}
.iframe{

}

/* End Iframe (old Podcasts) */
































.skeleton-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 500px;
    width: 100%;
    justify-content: space-around;
}

.skeleton-map {
    width: 100%;
    height: 600px;
    position: absolute;
    z-index: -1;
}

.skeleton-category{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skeleton-category *{
    margin-bottom: 10px;
}

.skeleton-text *{
    margin-bottom: 10px;
}

.skeleton-date {

}

.skeleton-audio {
    width: 80%;
    margin: 0 auto;
}





























.subtitles-container {
    text-align: center;
    margin-top: 10px;
    height: 30px;
    position: absolute;
    right: 50%;
    transform: translate(50%, -50%);
    transition: opacity 1s ease;
}
.subtitles {
    font-size: 18px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    transition: opacity 0.3s ease;
}


.header{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}


.header div{
    display: flex;
    flex-direction: column;
}

.header div h1{
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    font-size: 36px;
    color: #D77E78;
}

.header div p{
    font-weight: 600;
    color: #016677;
}


.paragraphs{
    color: #016477;
}

.paragraphs p{
    position: relative;
    font-size: 24px;
    font-weight: 300;
    line-height: 165%;
}

.paragraphs-no-line{
    position: relative;
    color: #016477;
}

.about-index-animated{
    font-weight: 300;
    font-size: 22px;
    position: absolute;
    right: 0;
    color: #D78079;
    top: 10%;
    animation: fadeUp 1s ease-in-out forwards;
}

.about-index-animated:hover{
    color: #016477;
}

@keyframes fadeUp{
    100%{
        top: 0;
    }
}

.paragraphs-no-line p{
    font-size: 22px;
    font-weight: 300;
    line-height: 165%;
    margin-top: 20px;
}

.paragraphs p::after{
    content: "";
    position: absolute;
    width: 75%;
    height: 37px;
    background-color: #FCDAD7;
    z-index: -1;
    top: 0;
    left: 0;
}

.heading{
    padding: 50px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.sub-title{
    color: #016477;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
}

.sub-title span{
    position: relative;
    font-size: 32px;
    padding: 0 3px;
}


.sub-title span::after{
    content: "";
    position: absolute;
    width: 102%;
    height: 38px;
    background-color: #FCDAD7;
    z-index: -1;
    left: 0;
}

.heading p{
    color: #016677;
    font-weight: 300;
    font-size: 23px;
    line-height: 165%;
    flex: 70%;
}


.process{
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    flex-wrap: wrap;
}

.process .step{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    margin: 0 50px;
    text-align: center;
}

.process .step img{
    width: 130px;
    height: 100px;
    object-fit: contain;
}

.process .step h2{
    color: #D77E78;
    font-size: 24px;
    font-weight: 800;
}


.index{
    padding: 50px 0;
}

.index-results-title{
    font-size: 30px;
    font-weight: 300;
    color: #D78079;
    text-align: center;
}


.maps{
    background-image: linear-gradient(to right, #5394A1, #3F7F89, #25717E, #056170);
    height: 368px;
}

@media(max-width: 982px){
    .maps{
        height: auto;
    }
}

.maps .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    flex-wrap: wrap;
}

.maps-carousel{
    width: 100%;
    min-height: 350px;
}



.map{
    height: 80%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map strong{
    color: white;
    font-size: 24px;
    font-weight: 800
}


.map:focus > strong{
    color: #FCDAD7;
}


.yemen{
    margin-top: 50px;
}

.map svg{
    shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd
}

.results-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 900px;
}

.result-container{
    margin: 0 20px;
    text-align: center;
}

.CircularProgressbar .CircularProgressbar-path {
    stroke: url(#gradient1) !important;
}

[data-test-id="CircularProgressbarWithChildren"] {
    width: 200px;
    height: 200px;
}

.percentage{
    width: 72%;
    height: 72%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEEEF2;
    color: #D78079;
    border-radius: 50%;
    font-size: 50px;
    font-weight: 600;
}


.result{
    font-size: 24px;
    font-weight: 800;
    color: #D78079;
}


.sub-result{
    font-size: 15px;
    font-weight: 600;
    color: #016677;
}


.index-link-container{
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-link{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #016477;
    font-weight: 700;
}

.index-link svg{
    margin-right: 10px;
}



.articles-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.article-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
}


.article-card{
    width: 400px;
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    margin: 10px;
    padding: 16px;
    background-color: #FDFEFF;
}

.article-header{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.article-header a{
    color: black;
    font-weight: 500;
    margin: 0;
    font-size: 16px;
}

.article-header h3{
    color: #016477;
    font-size: 12px;
    font-weight: 300;
}

.article-header img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-left: 20px;
}

.article-excerpt{
    border-left: 2px solid #016477;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 300;
}

.article-footer{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.article-footer .accuracy{
    width: 50%;
    text-align: center;
}

.article-footer .accuracy span{
    color: #016477;
    font-size: 14px;
    font-weight: 300;
}

.article-footer span{
    font-size: 24px;
    font-weight: 500;
    color: #016477;
}

.article-footer .country{
    align-self: flex-end;
}


.gauge-chart text{
    font-size: 11px;
}

.gauge-chart text:nth-of-type(2){
    transform: translate(-23px, -30px);
    rotate: 34deg;
    transform-origin: center;
}


.gauge-chart text:nth-of-type(1){
    rotate: 58deg;
    transform: translate(-20px, -193px);
}


.gauge-chart text:nth-of-type(3){
    transform: translate(26px, -6px);
    rotate: -42deg;
    transform-origin: center;
    font-size: 10px;
}

.gauge-chart text:nth-of-type(4){
    transform-origin: center;
    rotate: -16deg;
    transform: translate(6px, -21px);
    font-size: 10px;
}

.gauge-chart text:nth-of-type(5){
    transform-origin: center;
    transform: translate(27px, -82px);
    rotate: -63deg;
}


.clima-fact-title h2{
    position: relative;
    padding: 0;
    margin: 0;
    width: fit-content;
}

.clima-fact-title h2::after{
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    height: 36px;
    background-color: #FCDAD7;
}


.clima-fact-title h2:first-of-type::after{
    width: 50%;
    right: 0;
}


@media(max-width: 472px){
    .clima-fact-title h2:first-of-type::after{
        top: unset;
        left: 0;
        right: unset;
    }
}


.clima-fact-title h2:last-of-type{
    margin-left: 30%;
}


@media (min-width: 1200px){
    .clima-fact-title h2:last-of-type{
        margin-left: 13%;
    }
}

.clima-fact-title h2:last-of-type::after{
    width: 100%;
    right: 0;
}

.podcast-home{
    margin-top: 100px;
}

.podcast-home h1{
    font-weight: 700;
    font-size: 64px;
    color: #016677;
    text-align: center;
}

.podcast-home h2{
    font-weight: 600;
    font-size: 32px;
    color: #D78079;
    text-align: center;
}

.podcast-programs{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
}

.program{
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.program img{
    width: 300px;
    height: 260px;
}

.program h2{
    font-family: "Rubik", sans-serif;
    font-weight: 700;
    color: #D78079;
    font-size: 24px;
    text-align: center;
}

.program p{
    font-family: "Rubik", sans-serif;
    font-weight: 600;
    color: #016677;
    padding: 0 30px;
}











/** These are found in style.css nawa theme do not copy them **/
.podcasts-page form{
    flex: 1;
    margin: 20px 0;
}

.podcasts-page form input{
    background: #ddddddbright 8 top 50%;
    border: 0;
    outline: 0;
    width: 59px;
    padding: 10px;
    transition: .5s;
}

.podcasts-page form input:focus{
    width: 60%;
}

.no-results{
    text-align: center;
    color: #016677;
    font-size: 50px;
    font-family: "Rubi", sans-serif;
}



.no-results{
    text-align: center;
    color: #016677;
    font-size: 50px;
    font-family: "Rubi", sans-serif;
}



#loading-icon{
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-radius: 50%;
    border-top-color: #016477;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

#loading-icon-weird{
    width: 50px;
    height: 50px;
    border: 5px solid #ddd;
    border-radius: 50%;
    border-top-color: #016477;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}


.podcast-channels{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


.p-icon{
    width: 150px;
    height: 100px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 10px 20px;
}

@media(max-width: 562px){
    .p-icon{
        width: 80px;
        height: 50px;
    }
}

.minor{
    justify-content: flex-end;
}

@media(max-width: 772px){
    .minor{
        justify-content: center;
    }
}

.minor .p-icon{
    width: 100px;
    height: 50px;
}

.youtube{
    background-image: url("src/assets/youtube.png");
}

.soundcloud{
    background-image: url("src/assets/Soundcloud.png");
}

.podcast{
    background-image: url("src/assets/podcast.png");
}


.google{
    background-image: url("src/assets/google.png");
}

.castbox{
    background-image: url("src/assets/castbox.png");
}
