/*add your google webfonts they must be the first lines in your CSS*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,700&display=swap&subset=latin-ext');

/*define the general banner layout*/




/*establish a parent/child relationship for precise positioning*/

#tryinBanner {
    position: relative;
    padding: 0 !important;
    margin: 0;
    
}

#tryinBanner h2{
    font-family: 'Montserrat', sans-serif;
    color: #923901;
    font-size: 15px;
    margin: 0 0 5px;
    text-align: left !important;
}
#tryinBanner .related-articles-box{
    border: 5px solid #923901;
    border-right: 0;
    border-left: 0;
    padding: 5px 0;}



#tryinBanner .rowT{
   display: block;
}
#tryinBanner .rowT .inner{

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


.pb-0{
    padding-bottom: 0 !important;
}
.rowT .logo{
    display: block;
    width: 115px;
    height: 45px;
}
.col{
    width: calc(50% - 10px);
    background: white;
    padding: 0;
    border-radius: 6px;
    color: #049afe;
     overflow: hidden;
    border: 1px solid #eee;

    position: relative;
}
.col .colImg {
    margin: 0;
    padding: 0;
    display: block;
    aspect-ratio: 4 / 3;
    position: relative;
    z-index: 1;
}
.col .colImg a{
    margin: 0;
    padding: 0;
    display: block;
}
.col .colImg  img{
    max-width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0 0 -4px ;
    padding: 0;

}
.col .colContent{
    position: absolute;
    pointer-events: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 5px 20px 15px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.7) 100%);
    z-index: 10;
    display:flex ;
    align-items: flex-end;
}
.col .colContent h3{
    margin: 0;
    line-height: 20px;
    font-family: 'Montserrat', sans-serif;
}
.col .colContent h3 a{
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 14px !important;
    line-height: 4px !important;
    text-decoration: none;
    color: white;
    pointer-events: all;
}
.col .colContent h3 a:hover{
    text-decoration: underline;

}



#tryinBanner .reklama{
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 10px;
    background: #EEE;
    color: #000;
    padding: 2px 4px;

}




@media only screen and (max-width: 1024px) {
    #tryinBanner .rowT .inner{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .col{
        width: 100%;
        margin-bottom: 10px;
    }
}





