:root{
    /* --redColor: #CB2826; */
    --redColor: #e30000;
}

body, div, h1, h2, h3, h4, h5, h6, p, ol, ul, blockquote, figure{
    margin:0;
    padding:0;
    font-weight: 300;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body{
    position: relative;
    font-family: 'Roboto', sans-serif;
    max-width: 2500px;
    margin:0 auto;
}

body .body-wrapper {
    font-size: 0;
}

/* img{
    width: 100%;
    height: auto;
    display: block;
} */

main img, footer img, header img {
    width: 100%;
    height: auto;
    display: block;
}

a{
    text-decoration: none;
    color: inherit;
}

ul, ol{
    list-style: none;
}

ul.flex > li:last-of-type{
    margin-right: 0!important;
}
ul.flex.border > li:last-of-type{
    border-right: 0!important;
}

address{
    font-style: normal;
}
html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}
iframe {
    max-width: 100%;
}


[style*="--aspect-ratio"] > :first-child {
    width: 100%;
}
[style*="--aspect-ratio"] > img {
    height: auto;
}
@supports (--custom:property) {
    [style*="--aspect-ratio"] {
        position: relative;
    }
    [style*="--aspect-ratio"]::before {
        content: "";
        display: block;
        padding-bottom: calc(100% / (var(--aspect-ratio)));
    }
    [style*="--aspect-ratio"] > :first-child {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
    }
}



/*  containers */

.flex {
    display: flex;
}

.flex.col {
    flex-direction: column;
}


/*  general */

/*  κλείδωμα του scroll στο background
    σε περίπτωση που έχουμε ένα στοιχείο
    που καλύπτει όλη την οθόνη */
.stop-scrolling {
    height: 100%;
    overflow: hidden;
}
    
    
    
/*  κεντράρισμα εικόνας*/
.img-center{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

picture > video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
    
    
/*  κρύψιμο οριζόντιας μπάρας κύλισης*/
.scrollbar-hide{
    /* overflow-x: scroll; */
    overflow: scroll;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
    
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
    
/*  Κείμενο στο κέντρο του section */
.center-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

/*  red line on the left of element */
.red-line{
    padding-left: 75px;
    position: relative;
}

.red-line:before{
    content: "";
    width: 57px;
    border-top:4px solid var(--redColor);
    position: absolute;
    left: 0ch;
    top: 50%;
    transform: translateY(-50%);
}

.red-line.sm{
    padding-left: 23px;
}

.red-line.sm:before{
    width: 14px;
}

@media screen and (max-width: 370px) {
    .red-line{
        padding-left: 55px;
    }
    .red-line:before{
        width: 40px;
    }
}


/*  image that works as a background image */

.back-img{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section.dark{
    background-color: #000;
    color: #fff;
}

.section.bg-img{
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    position: relative;
}

/*  column grids */

.col-2, .col-3{
    width: 100%; 
    justify-content: space-between;
}

.col-3{
    flex-wrap: wrap;
}

.col-2 > div{
    width: calc((100% - 30px) / 2);
}

.col-3 > div{
    width: calc((100% - (2 * 23px)) / 3);
}

@media screen and (max-width: 1080px) {
    .col-2 > div{
        width: calc((100% - 1.5rem) / 2);
    }
}
@media screen and (max-width: 820px) {
    .col-2 > div{
        width: calc((100% - 1rem) / 2);
    }
}

@media screen and (max-width: 680px) {
    .col-2{
        flex-wrap: wrap;
    }
    .col-2  > div{
        width: 100%;
        margin-bottom:2rem;
    }
    .col-2  > div:last-of-type{
        margin-bottom:0;
    }
}


/*  wrappers    */

.wrapper{
    max-width: 1734px;
    padding:0 2rem;
    margin:0 auto;

}

.wrapper.lg{
    max-width: 1696px;
}
.wrapper.md{
    max-width: 1448px;
}

.landing .wrapper{
    padding: 0 62px;
}




@media screen and (max-width: 980px) {
    .wrapper{
        padding: 0 22px;
    }
}

@media screen and (max-width: 920px) {
    .landing .wrapper{
        padding: 0 22px;
    }
}

@media screen and (max-width: 620px) {
    .wrapper, .landing .wrapper{
        padding: 0 18px;
    }
    .wrapper.m-pl-0{
        padding-left: 0;
    }
}


/*  full width element while parent element has a wrapper class */

@media screen and (max-width: 920px) {
    .mob-full{
        width: calc(100% + 44px);
        margin-left: -22px;
    }
}

@media screen and (max-width: 620px) {
    .mob-full{
        width: calc(100% + 36px);
        margin-left: -18px;
    }
}

/* hero */

.full{
    width: 100%;
    height: 90vh;
}

.full.md{
    height: 75vh;
}

.full .f-img{
    position:relative;
}

.full .f-img .info{
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    display: flex;
    padding: 1rem 2rem;
}

.full .f-img .info.full-height{
    height: 100%;
}

.full .f-img .info.col{
    flex-direction: column;
    justify-content: center;
}

.full .f-img .info.btm{
    justify-content: flex-end;
}



.full .f-img .info.left{
    left: 0;
    top: 0;
    bottom: unset;
    padding-left: 100px;
}

.full .f-img .info.solid{
    background-color: rgba(0, 0, 0, 1);
}

.full .f-img .info.red{
    background-color: var(--redColor);
}


.full .f-img .info .text{

}

.full .f-img .info .more{

}


/*  section header */

.section-header{
    color: var(--redColor);
    text-transform: uppercase;
    position: relative;
    margin: 75px 0 70px;
}

.section-header:after{
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top: 4px solid var(--redColor);
}

.section-header h2,
.section-header h1{
    background-color: white;
    width: fit-content;
    padding-right: 72px;
    font-size: 60px;
    z-index: 2;
    position: relative;
    font-weight: 700;
}

.single .section-header{
    margin: 63px 0 50px;
}
.single .section-header h2,
.single .section-header h1{
    /* font-size: 35px; */
    line-height: 41px;
    padding-right: 21px; 
    font-size: 32px;   
}

.section-header-main{
    text-align: center;
    text-transform: uppercase;
    padding: 82px 0 76px;
}

.section-header-main.pt-0{
    padding-top: 0;
}

.section-header-main h2{
    font-size: 35px;
    letter-spacing: 1.75px;
    font-weight: 900;
}

.dark .section-header-main{
    color: #08FFC8;
}
.bg-img .section-header-main{
    color: #fff;
}

.section-header-main.mob{
    display: none;
}
.section-header-main.red{
    color: var(--redColor);
}

.highlighted-header{
    background: #000;
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.highlighted-header h3{
    font-size: 25px;
    font-weight: 900;
}

@media screen and (max-width: 1280px) {
    .section-header-main{
        padding: 62px 0 56px;
    }
    .section-header h2,
    .section-header h1{
        font-size: 60px;
        line-height: 64px;
        padding-right: 62px;
    }
}

@media screen and (max-width: 1120px) {
    .single .section-header{
        margin: 50px 0 40px;
    }
}
@media screen and (max-width: 980px) {
    .section-header{
        margin: 62px 0 60px;
    }
    .section-header h2,
    .section-header h1{
        font-size: 50px;
        line-height: 54px;
        padding-right: 52px;
    }
    .section-header-main{
        padding: 50px 0 40px;
    }
    .single .section-header{
        margin: 2.75rem 0 2rem;
    }
    .single .section-header h2,
    .single .section-header h1{
        font-size: 30px;
        line-height: 35px;
    }
}
@media screen and (max-width: 820px) {
    .section-header{
        margin: 52px 0 50px;
    }
    .section-header h2,
    .section-header h1{
        font-size: 40px;
        line-height: 44px;
        padding-right: 38px;
    }
}

@media screen and (max-width: 780px) {
    .section-header-main.mob{
        display: block;
    }
}
@media screen and (max-width: 680px) {
    .single .section-header{
        margin: 2rem 0 26px;
    }
    .single .section-header h2,
    .single .section-header h1{
        font-size: 25px;
        line-height: 29px;
    }
}
@media screen and (max-width: 620px) {
    .section-header{
        margin: 42px 0 40px;
    }
    .section-header h2,
    .section-header h1{
        font-size: 30px;
        line-height: 34px;
        padding-right: 24px;
    }
    .section-header-main{
        padding: 45px 0 30px;
    }
    .section-header-main h2{
        font-size: 30px;
        letter-spacing: 1.5px;
    }
}

@media screen and (max-width: 480px) {
    .section-header{
        margin: 32px 0 30px;
    }
    .section-header h2,
    .section-header h1{
        font-size: 25px;
        line-height: 29px;
        padding-right: 18px;
    }
}



/*  cards   */

.card{
    display: flex;
    flex-wrap: wrap;
}

.card.col{
    flex-direction: column;
}

.card.col .card-image{
    width: 100%;
    margin-bottom: 25px;
}

.card.cv{
    position: relative;
}

.card.cv .card-image{
    margin-bottom: 0;
}
.card.cv .card-info{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    color: #fff;
    z-index: 2;
}

.card.cv.btm .card-info{
    bottom: 0;
    width: 100%;
    padding: 13px 28px;
}
.card.cv.left .card-info{
    left: 0;
    max-width: 506px;
    padding: 80px 40px 80px 90px;
    height: 100%;
}


.card-info{
    display: flex;
    flex-direction: column;
}

.card.img-l .card-image{
    width: 45%;
    height: max-content;
}
.card-image video {
    max-width: 100%;
}

.card.img-l .card-info{
    width: 55%;
    padding-left: 46px;
}

.card-info .category{
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--redColor);
    font-size: 19px;
    line-height: 23px;
    font-weight: 900;
}

.card-info .title{
    margin-bottom: 24px;
    font-size: 25px;
    line-height: 30px;
    font-weight: 500;
}

.card-info .lead{
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
}

.card-info .details{
    display: flex;
    color: #888888;
    font-size: 16px;
    line-height: 20px;
}

.card-info .details .date{
    font-weight: 300;
}
.card-info .details .comments{
    align-items: center;
}
.card-info .details .comments .icon{
    /* width: 20px; */
    margin-right: 2px;
    width: 15px;
}

.card-info > *:last-child{
    margin-bottom: 0!important;
}

.card.person .card-image{
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
}

.card.person .card-info{
    text-align: center;
}

.card-info .name{
    font-size: 30px;
    line-height: 25px;
}
.card-info .role{
    font-size: 18px;
    line-height: 25px;
    font-weight: 300;
}

.card-info .arrow{
    width: 58px;
}


.card .card-image{
    position: relative;
}
.card .card-image:after{
    content: '';
    width: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    border-top: 4px solid var(--redColor);
    transition: width 0.3s;
    z-index: 5;
}

.card:hover .card-image:after{
    width: 100%;
}

.col-2 .card .title{
    max-width: 622px;
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 19px;
}
.col-2 .card .lead{
    max-width: 514px;
}

.col-3 .card .card-image{
    margin-bottom: 15px;
}


@media screen and (max-width: 980px) {
    .card.img-l .card-info{
        padding-left: 32px;
    } 
    .card-info .category{
        margin-bottom : 9px;
    }   
    .card-info .title{
        margin-bottom: 10px;
    }
    .card-info .lead{
        margin-bottom: 6px;
    }
}

@media screen and (max-width: 840px) {   
    .card.img-l .card-info{
        padding-left: 20px;
    }  	
}

@media screen and (max-width: 820px) {
    .card.t-row{
        flex-direction: row;
    }
    .card.t-row .card-image{
        width: 45%;
        margin-bottom: 0;
        height: max-content;
    }
    .card.t-row .card-info{
        width: 55%;
    }
    .card.t-row .card-info,
    .card.img-l .card-info{
        padding-left: 16px;
    }
}
@media screen and (max-width: 720px) {
    .col-2 .card .lead{
        display: none;
    }    
}
@media screen and (max-width: 680px) {
    .card.m-row{
        flex-direction: row;
    }
    .card.m-row .card-image{
        width: 45%;
        margin-bottom: 0;
        height: max-content;
    }
    .card.m-row .card-info{
        width: 55%;
    }
    .card.m-row .card-info,
    .card.img-l .card-info{
        padding-left: 16px;
    }
    /*

    .col-2 .card .title{
        max-width: unset;
        font-size: 25px;
        line-height: 28px;
    }
    */

    .card.col .card-image{
        margin-bottom: 17px;
    }
    .col-2 .card .lead{
        max-width: unset;
    }
}

@media screen and (max-width: 580px) {
    .card.m-col{
        flex-direction: column;
    }
    .card.m-col .card-image{
        width: 100%;
        margin-bottom: 1rem;
    }
    .card.m-col .card-info{
        width: 100%;
        padding-left: 0;
    }
    .card-info .category{
        margin-bottom : 0.125rem;
    }
}
@media screen and (max-width: 520px) {
    .card.m-row .card-info,
    .card.img-l .card-info{
        padding-left: 11px;
    } 
}

/*  more btns */

.more-btn{
    display: flex;
    padding: 1rem 0;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    background-color: var(--redColor);
    max-width: 345px;
    margin-top: 64px;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
}

.more-btn.center{
    margin: 0 auto;
}

.more-btn::before{
    content : "";
    width: 100%;
    position: absolute;
    left: 0;
    top: -13px;
    border-top: 4px solid var(--redColor);
    transition: top 0.2s;
}

.more-btn:hover::before{
    top: -4px;
}

.more-btn.black{
    background-color: black;
}
.more-btn.black:before{
    border-color: black;
}

/*  PANELS    */

.bg-panel{
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    transition: opacity 0.3s;
    z-index: 10;
}

.bg-panel.active{
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-panel.show{
    opacity: 1;
}


.img-panel .close-btn{
    position: absolute;
    right: 3rem;
    top: 3rem;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.bg-panel .img-container{
    width: 0;
    height: 0;
    transition: all 0.3s;
}


/*  hero    */


.hero{
    height: 90vh;
    max-height: 720px;
    width: 100%;
    margin-bottom: 94px;
    position: relative;
}

.hero .category-title{
    text-transform: uppercase;
    width: fit-content;
    position: absolute;
    left: 91px;
    top: 128px;
    font-size: 40px;
    line-height: 47px;
    font-weight: 700;
    color: #fff;
    padding-bottom: 7px;
    border-bottom: 4px solid var(--redColor);
    z-index: 15;
}

.hero .left-side{
    flex: 0 0 67%;
    height: 100%;
}
.hero .right-side{
    flex: 0 0 33%;
    height: 100%;
}

.hero .left-side .card-wrapper{
    height: 100%;
}
.hero .right-side .card-wrapper{
    height: 50%;
}
.hero  .card, .hero  .card-image{
    height: 100%;
}



.hero .right-side .category{
    display: none;
}
.hero .right-side .title{
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    max-width: 386px;
    margin-bottom: 0;
    padding-right: 10px;
}

.hero .right-side .card-info{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.hero .right-side .arrow{
    width: 38px;
    flex-shrink: 0;
}

.hero .left-side .card-info{
    justify-content: flex-end;
}

.hero .left-side .title{
    font-size: 35px;
    line-height: 40px;
    font-weight: 500;
}

.hero .left-side .card-info .lead{
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 40px;
}
.hero .left-side .card-info .arrow{
    align-self: flex-end;
}

@media screen and (max-width: 1380px) {
    .hero .left-side{
        flex: 0 0 60%;
    }
    .hero .right-side{
        flex: 0 0 40%;
    }
    .card.cv.left .card-info{
        padding: 40px 40px 40px 2rem;
    }
    .hero .category-title{
        left: 2rem;
        top: 80px;
    }
    .card.cv.btm .card-info{
        padding: 13px 18px;
    }
}

@media screen and (max-width: 1240px) {
    .hero .left-side .title {
        font-size: 30px;
        line-height: 35px;
    }    
    .hero .right-side .title{
        font-size: 18px;
        line-height: 22px;    
    }
}

@media screen and (max-width: 980px) {
    .hero{
        flex-direction: column;
        max-height: unset;
        height: auto;
    }   
    .hero .category-title{
        top: 2rem;
    } 
    .hero .right-side{
        display: flex;
    }
    .hero .right-side .card-wrapper{
        width: 50%;
        height: auto;
    }

    .hero .right-side .title{
        padding-right: 0;
    }

    .hero .category-title{
        font-size: 35px;
        line-height: 35px;
    }
}

@media screen and (max-width: 820px) {
    .hero .left-side .card-info .lead{
        display: none;
    }
    .hero .card-info .arrow{
        display: none;
    }
}
@media screen and (max-width: 740px) {
    .hero .category-title{
        display: none;
    }
    .hero .left-side .title{
        margin-bottom: 0;
    }
    
    .card.cv.left .card-info{
        width: 100%;
        max-width: unset;
        height: auto;
        padding: 20px;
        bottom: 0;
    }
}

@media screen and (max-width: 680px) {
    .hero .card .card-image{
        margin-bottom: 0;
    }
    .hero .card .card-info{
        position: initial;
        background-color: #fff;
        color: #000;
    }
    .hero .right-side {
        display: block;
    }
}
@media screen and (max-width: 520px) {
    .hero .left-side .title{
        font-size: 25px;
        line-height: 28px;
    }
}


/*  article-list */

.article-list{
    max-width: 1002px;
    margin-left: 64px;
    margin-bottom: 120px;
}

.article-list .card-wrapper:not(:last-of-type){
    margin-bottom:40px;
}

.article-list .card .category{
    margin-bottom: 10px;
}

.article-list .card .title{
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 30px;
    max-width: 400px;
}

@media screen and (max-width: 1320px) {
    .article-list{
        margin-left: 0;
        margin-bottom: 90px;
    }
}



@media screen and (max-width: 840px) {
    .article-list .card-info .lead{
        display: none;
    }    
    .article-list .card-info .details{
        display: none;
    }
    .article-list{
        margin-bottom: 4rem;
    }
}

@media screen and (max-width: 680px) {
    .article-list .more-btn{
        margin-left: auto;
        margin-right: auto;
        max-width: 210px;
    }
}

@media screen and (max-width: 580px) {
    .article-list .card .title{
        font-size: 20px;
        line-height: 25px;
    }
}

/*  articles on the bottom of the section */

.bottom-articles{
    background-color: #242529;
    color: #fff;
    padding: 36px 0; 
}

.bottom-articles .bottom-articles-inner{
    padding: 0 60px 0 90px;
}

.bottom-articles .card{
    max-width: 500px;
}

.bottom-articles h2.title{
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 0;
    font-weight: 500;
}
.bottom-articles .card-info{
    padding-left: 23px!important;
    justify-content: space-between;
}

@media screen and (max-width: 1440px) {
    .bottom-articles .card-info .details{
        display: none;
    }
}

@media screen and (max-width: 1380px) {
    .bottom-articles .card .card-image{
        width: 30%;
        --aspect-ratio: 1!important;
    }
    .bottom-articles .card .card-info{
        width: 70%;
    }
}


@media screen and (max-width: 1080px) {
    .bottom-articles .card .card-image{
        display: none;
    }
    .bottom-articles .card .card-info{
        width: 100%;
        position: relative;
    }

    .bottom-articles .card .card-info:before{
        content : '';
        position: absolute;
        width: 14px;
        border-top: 4px solid var(--redColor);
        left: 0px;
        top: 10px;
    }
}


@media screen and (max-width: 1460px) {
    .bottom-articles .bottom-articles-inner{
        padding: 0 55px;
    }
}
@media screen and (max-width: 920px) {
    .bottom-articles .bottom-articles-inner{
        flex-direction: column;
    }
    .bottom-articles .bottom-articles-inner .card-wrapper{
        width: 100%;
        margin-bottom: 2rem;
    }
    .bottom-articles .bottom-articles-inner .card-wrapper:last-of-type{
        margin-bottom: 0;
    }
}

@media screen and (max-width: 720px) {
    .bottom-articles{
        background-color: #fff;
        color: #000;
        padding: 0;
    }
    .bottom-articles .bottom-articles-inner{
        padding: 0 22px;

    }
}

@media screen and (max-width: 620px) {
    .article-list .card .title{
        max-width: unset;
    }
}

/*  scroll */

.scroll-top{
    position: fixed;
    right: 4rem;
    bottom: 8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-top.show{
    opacity: 1;    
}

.scroll-text{
    font-size: 12px;
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: sideways;
    transform-origin: center;
    transform: rotate(-180deg);
}



.scroll-top .icon{
    width: 20px;
    margin-top: 0.5rem;
}

@media screen and (max-width: 1830px) {
    .scroll-top{
        right: 2rem;
    }
}
@media screen and (max-width: 1680px) {
    .scroll-top{
        right: 1rem;
    }
}
@media screen and (max-width: 1180px) {
    .scroll-top{
        right: 0.5rem;
    }
}
@media screen and (max-width: 980px) {
    .scroll-top{
        right: 0;
    }
}
@media screen and (max-width: 920px) {
    .scroll-top{
        bottom: 4rem;
    }
}
@media screen and (max-width: 720px) {
    .scroll-top{
        display: none;
    }
}

.more_posts__container {
    width: 100%;
    min-height: 100px;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
}

.col-3 > div.more_posts__container {
    width: 100%;
}

.more_posts__container .more-btn{
    min-width: 345px;
}

.more-grid.author__artcl {
    border: 0;
}