@media (min-width: 1250px){
    .videos-container{
        width: 1240px;                
    }
    .title{
        font-size: 26px;
    }
}
@media (min-width: 1024px) and (max-width:1250px){
    .videos-container{
        width: 90%;
    }
    .title{
        font-size: 26px;
    }
}
@media (max-width: 1024px){
    .videos-container{
        width: 90%;
    }
    .title{
        font-size: 22px;
    }
}
.title{
    font-weight: 500;    
    line-height: 130%;
    color: #232F4F;    
}
.videos-nav{
    display: flex;
    margin: 50px 0 0 0;
    align-items: flex-end;
    gap: 20px;
}
.blue-link {
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    color: #3A8EF8;
    margin-bottom: 5px;
}
#videos{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;    
}
.videos-separator{
    height: 3px;
    width: 100%;
    display: flex;
    align-items: center;
    margin: 20px 0 20px 0;
}
.videos-separator .sep-blue{
    height: 100%;
    width: 70px;
    background: #3A8EF8;
}
.videos-separator .sep-gray{
    height: 1px;
    flex-grow: 2;
    background: #DEE2EB;
}
.video{    
    margin: 50px 0 0 0;
    cursor: pointer;
}
@media (min-width: 800px){
    .video{
        width: 47%;
    }
    .video-body{
        height: 360px;    
    }
    .video-body iframe{
        margin-top: 10px;
    }
}
@media (max-width: 799px){
    .video{
        width: 100%;
    }
    .video-body{
        height: fit-content;
    }
    .video-body iframe{
        margin-top: 5px;
    }
}
#videos-header{
    display: flex;    
    align-items: flex-end;
}
#videos-header p{
    font-weight: 700;
    font-size: 36px;
    line-height: 120%;
    letter-spacing: 0.05em;
    color: #232F4F;
    text-transform: uppercase;
}
#videos-header a{
    margin: 0 0 7px 10px;
    width: 100px;
    line-height: 120%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    color: #3A8EF8;
}
.video-header{
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0.05em;
}
.video-body{
    display: flex;    
}
.video-body video, .video-body iframe{
    width: 100%;
}
.video-body video{
    height: 100%;
}
.video-body iframe{
    height: 360px;    
}
.video-descr{
    margin: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.descr{
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0;
    color: #788093;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 140%;    
    max-height: 80px;     
    -webkit-line-clamp: 4; /* Write the number of 
                          lines you want to be 
                          displayed */
    -webkit-box-orient: vertical;
    padding: 0 !important;  
}
.video-date{
    font-weight: 400;
    font-size: 12px !important;
    line-height: 20px !important;
    letter-spacing: 0.05em !important;
    color: #788093 !important;
    margin: 10px 0 0 0 !important;
}
.more-wrapper{
    display: flex;
    width: 100%;
    justify-content: center;
}
.btn-more{
    margin-top: 55px;
    border: 1px solid #3A8EF8;
    padding: 14px 43px 14px 43px;
    border-radius: 8px;
    cursor: pointer;
}
