﻿:root {
    --white: #ffffff;
    --skyblue: #060f19;
    --dark-blue: #060f19;
}

div.flex-item .flex-item-inner {
    position: relative;
    background-color: var(--dark-blue);
    border-radius: 2px;
    margin-bottom: 20px;
}

.flex-container:nth-child(2) > div.flex-item .flex-item-inner {
    margin-bottom: 30px;
}

div.flex-item .flex-item-inner::after {
    content: "";
    position: absolute;
    bottom: -7px;
    width: 100%;
    height: 7px;
    background: var(--skyblue);
    user-select: none;
    pointer-events: none;
}

div.flex-item .flex-item-inner::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 396 440'%3E%3Cdefs/%3E%3Cpath fill='%23fff' d='M.5.5h395l-200 439H.5V.5z' opacity='.02'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
    user-select: none;
    pointer-events: none;
}

div.flex-item .flex-item-inner .flex-content {
    padding: 14px 2px;
}

.title > h4{
    font-size:16px;
}

    div.flex-item .flex-item-inner .flex-content .title {
        font-style: normal;
        font-weight: bold;
        line-height: 28px;
        color: var(--white);
        margin-bottom: 4px;
    }

    div.flex-item .flex-item-inner .flex-content .description {
        max-width: 259px;
        font-style: normal;
        font-weight: 300;
        font-size: 15px;
        line-height: 28px;
        color: var(--white);
        margin-bottom: 10px;
    }

    div.flex-item .flex-item-inner .flex-content .date {
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 16px;
        color: #4f4f4f;
        margin-bottom: 3px;
    }

.owl-nav {
    display: inline-flex;
    width: auto;
    /*   position: absolute;
  top: 0px;
  right: 0px; */
}

    /*.owl-nav::before {
        content: "";
        position: absolute;
        width: 18vw;
        height: 6px;
        top: 17px;
        background: #1f9cd1;
        left: auto;
        right: -20vw;
    }*/

    .owl-nav > [class*="owl-"] {
        position: relative;
        width: 40px;
        height: 40px;
        background-size: 20px;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0px;
        z-index: 10;
        background-color: transparent;
        border: 1px solid transparent;
    }

        .owl-nav > [class*="owl-"].disabled {
            opacity: 0.4;
            pointer-events: none;
        }

    /*.owl-nav .owl-prev {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 36'%3E%3Cdefs/%3E%3Cpath fill='%231F9CD1' d='M.543 19.405l15.15 16.02a1.8 1.8 0 001.316.575 1.8 1.8 0 001.317-.575l1.116-1.18a2.053 2.053 0 000-2.785L6.721 18.007 19.456 4.54c.35-.371.544-.865.544-1.393 0-.527-.194-1.022-.544-1.393L18.34.575A1.8 1.8 0 0017.024 0a1.8 1.8 0 00-1.317.575L.543 16.61A2.017 2.017 0 000 18.007c-.001.53.192 1.026.543 1.398z'/%3E%3C/svg%3E");
        background-position: left;
    }

    .owl-nav .owl-next {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 36'%3E%3Cdefs/%3E%3Cpath fill='%231F9CD1' d='M19.457 19.405l-15.15 16.02c-.35.37-.818.575-1.316.575a1.8 1.8 0 01-1.317-.575l-1.116-1.18a2.053 2.053 0 010-2.785L13.28 18.007.543 4.54A2.015 2.015 0 010 3.147c0-.527.193-1.022.544-1.393L1.66.575A1.8 1.8 0 012.976 0c.5 0 .967.204 1.317.575L19.457 16.61c.351.372.544.869.543 1.397a2.016 2.016 0 01-.543 1.398z'/%3E%3C/svg%3E");
        background-position: right;
    }*/

.owl-dots {
    counter-reset: slides-num;
    position: relative;
    margin-top: 0;
}

    .owl-dots:after {
        content: counter(slides-num);
        display: inline-block;
        font-size: 20px;
        font-weight: 700;
        vertical-align: middle;
        /*   padding-left: 15px; */
        /* position: relative;
  left: -8px; */
        z-index: -1;
        pointer-events: none;
    }

.owl-dot {
    display: inline-block;
    counter-increment: slides-num;
    margin-right: -4px;
    width: 0px;
    height: 0px;
    background-color: transparent;
    border: 1px solid transparent;
}

    .owl-dot span {
        display: none;
    }

    .owl-dot.active:before {
        content: counter(slides-num) "/ ";
        display: inline-block;
        vertical-align: middle;
        font-size: 20px;
    }

    .flex-content > .title > h4 > a, .description > p > a{
        color:#fff;
    }

    .flex-item-inner > a > img{
        border-radius:15px;
    }