
@media (hover: hover) {
    .img-right-rect {
        opacity: 0.1;
        transition: opacity 0.25s;
        background-color: black;
    }

        .img-right-rect:hover {
            opacity: 0.4;
        }

    .img-left-rect {
        opacity: 0.1;
        background-color: black;
        transition: opacity 0.25s;
    }

        .img-left-rect:hover {
            opacity: 0.4;
        }
}
@media (hover: none) {
    .img-right-rect {
        opacity: 0.15;
        background-color:transparent;
    }

    .img-left-rect {
        opacity: 0.15;
        background-color: transparent;
    }
}

.neo-down-box-sm .col-projects {
    /* text-shadow: 0px 0px 16px #008ecc88;
    color: #0aa2ef;*/
    font-weight: 600;
    /*text-decoration: underline;*/
    font-size: 24px;
}
.neo-up-box-sm .col-projects {
    text-shadow: 0px 0px 16px #008ecc88;
    color: #0aa2ef;
    font-size: 20px !important;
}

.projectsContainer {
    padding-top: clamp(76px, 16vw, 116px);
    height: calc(100% - 100px);
}

.project {
    width: 100%;
    height: 75%;
    padding-bottom: 0px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.5s;
}

.projectsContainer .neo-down-animation-sm {
    animation-duration: 1.5s;
    animation-name: clickOnButton-sm-blue;
}

.projectImage {
    position: relative;
    float: left;
    border-radius: 64px;
    display: inline-block;
    width: 100%;
    height: 75%;
    padding:16px;
}

    .projectImage img {
        width: 100%;
        aspect-ratio:13/9;
        display: block;
        object-fit: cover;
        border-radius: 64px;
    }

.projectName {
    color: #000000;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    /*padding-bottom: 8px;*/
  /*  margin-top: 8px;*/
    display: block;
}

.neo-down-up-animation-sm::before {
    animation-duration: 1.5s;
    animation-name: clickOnUpButton-sm;
}

.header {
    min-height: 64px;
    display: block;
    text-align: center;
    position: fixed;
    height: 72px;
    width: 100%;
    top: 0;
    left: 0;
    padding: 18px;
    z-index: 1;
    background-color: #000000;
    max-height: 100px;
}

.btn-Features {
    margin-top: 0px;
    margin-left: 8px;
    margin-right: 8px;
    top: 18px;
}

    .btn-Features i {
        font-size: clamp(12px, 2vw, 16px);
    }

.btn-lang {
    width: 6vw;
    height: 5vw;
    margin-top: 0px;
    margin-left: 8px;
    margin-right: 8px;
    top: 18px;
    min-width: 32px;
    max-width: 48px;
    min-height: 16px;
    max-height: 32px;
}

    .btn-lang i {
        font-size: clamp(7px, 2.5vw, 14px);
        font-style: normal;
        font-weight: 600;
        text-shadow: 0px 0px 16px #008ecc88;
        color: #0aa2ef;
    }

.glowMeta {
    font-size: 14px;
    margin-top: 4px;
    color: #2177a3;
    vertical-align: text-top;
}

.gray {
    color: #191817;
    margin-top: 4px;
    font-size: 14px;
    vertical-align: text-top;
}

.modal-title {
    display: block;
    position: relative;
    margin: auto;
}

.projectContentSelfContainer {
    width: calc(100% - 16px);
    position: relative;
    margin: 8px;
    display: inline-block;
    float: left;
    border-radius: 8px;
    cursor: pointer;
    padding-top: calc(calc(100% - 16px) / 1.77);
    margin-right: 0px;
}

    .projectContentSelfContainer::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 8px;
        display: block;
        height: 100%;
        width: 100%;
    }

    .projectContentSelfContainer .ytbPrevContainer,
    .projectContentSelfContainer .projectContentSelfContainer-img {
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        border-radius: 16px;
        height: 100%;
        width: 100%;
    }

/*#projectsModal .modal-dialog {*/
   /* width: 100%;*/
    /*margin: 0;
    padding: 0;*/
   /* max-width: 100%;*/
    /*display: block;
}

#projectsModal .modal-content {*/
   /* min-height: 100%;*/
    /*border-radius: 0;
    display: block;*/
    /*height: 100vh;*/
/*}

#projectsModal .modal-header {
    position: fixed;
    height: 64px;
    width: 100%;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 1;
    background-color: #272727;
}

#projectsModal .modal-body {
    min-height: 100%;
    border-radius: 0;
    display: block;
    height: 100%;
}*/

#projectDescription {
    text-align: left;
    width: calc(100vw - 16vw);
}

.projectContentSelfContainer .ytbPrevPlay {
    width: 50%;
    left: 25%;
    position: absolute;
    height: auto;
    top: 12.5%;
}

.loading-img {
    width: 100%;
    height: 100%;
}

.lds-ripple {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    top: 50%;
}

    .lds-ripple div {
        position: absolute;
        border: 4px solid #fff;
        opacity: 1;
        border-radius: 50%;
        animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .lds-ripple div:nth-child(2) {
            animation-delay: -0.5s;
        }

@keyframes lds-ripple {
    0% {
        top: 36px;
        left: 36px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 72px;
        height: 72px;
        opacity: 0;
    }
}

.img-close-action {
    display: block;
    position: fixed;
    z-index: 99999;
    font-weight: 500;
    font-size: 32px;
    color: #ffffff66;
    text-shadow: 0px 0px 10px black;
    bottom: 8px;
    left: calc(50% - 128px);
    line-height: 32px;
}
