
/* MOBILE AND SMALL DEVICES */
@media (max-width: 992px) { 
    nav.navbar {
        height: 10dvh;
    }

    nav.navbar button.navbar-toggler navbar-toggler-icon {
        /* color: orange; */
    }
    
    .navbar div.container:has(div.collapse.show) {
        /* background-color: rgba(255, 255, 255, 0.2) !important; */
        background-color: rgba(0, 0, 0, 0.9);
        /* background: red; */
        height: 100%;
        width: 100%;
    }

    .nav-menu-items {
        background-color: rgba(0, 0, 0, 0.9);
        /* background-color: rgba(255, 255, 255, 0.066);
        -webkit-backdrop-filter: blur(25px) !important;
        backdrop-filter: blur(25px) !important; */
        position: fixed;
        left: 0;
        top: 10dvh;
        /* bottom: -90dvh; */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        /* height: 90dvh; */
        width: 100%;
        gap: 60px;
        transform: translate3d(0, 0, 0);
        z-index: 9100;
        
    }

    .nav-menu-items.collapse {
        height: 90dvh;
    } 

    .nav-menu-items ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 80%;
        gap: 40px;
    }

    .nav-menu-items ul li a{
        font-size: 24px;
    }

    .nav-social {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        height: 20%;
        gap: 3px;
    }

    .nav-social a.navbar-brand svg {
        width: 32px;
        height: 32px;
    }

    section.content-area {
        justify-content: flex-end;
        flex-direction: column-reverse;
    }

    .main-wrapper {
        height: 80dvh;
        /* background: orange; */
    }

    section.content-area main {
        align-items: center;
        /* text-align: center; */
        max-height: 80dvh ;
    }

    .main-visible {
        transform: translateX(0px);
    }

    section.content-area main.homepage {
        text-align: center;
    }

    section.content-area main.homepage h3{
        font-size: 24;
    }

    section.content-area main.homepage h1{
        font-size: 28px;
    }

    section.content-area aside.layout-sidebar {
        width: 100% !important;
        justify-content: center !important;
        height: 10dvh;
    }

    section.content-area aside.layout-sidebar nav ul {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0;
    }

    section.content-area aside.layout-sidebar nav ul a{
        width: 16px;
        height: 16px;
    }

    .navbar-toggler:has(+ .nav-menu-items.show) svg {
        display: none;
    }

    svg.cross { 
        display: none;
    }

    .navbar-toggler:has(+ .nav-menu-items.show) svg.cross { 
        display: block !important;
    }

    section.content-area main.about h4 {
        font-size: 20px;
    }

    section.content-area main.about p {
        font-size: 14px; 
        color: #fff;
    }

    section.content-area main.about .icon-border {
        background: linear-gradient(96deg, rgba(85, 128, 156, 0.20) 36.92%, rgba(149, 153, 226, 0.20) 100%);
        box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(13px);
        -webkit-backdrop-filter: blur(13px);
        border: 3px solid rgba(217, 217, 217, 0.13);
    }

    section.content-area main.about .icon-bg {
        padding: 5px 10px;
        background: rgba(23, 23, 23, 0.40);
        box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(13px);
        -webkit-backdrop-filter: blur(13px);
    }

    section.content-area main.about .icon-bg img {
        width: 36px;
    }

    #contact .row {
        /* background: orange; */
        height: 80dvh;
        justify-content: center;
        align-items: center;
    }

    .card-content-group {
        /* background: green; */
        color: #fff;
    }

    .card-content-group img{
        width: 24px;
    }
}