
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg-color: #081b29;
    --second-bg-color: #112e42;
    --text-color: #ededed;
    --main-color: #00abf0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    height: 100vh;
    height: calc(var(--vh, 1vh)* 100);
}

body {
    background: var(--bg-color);
    color: var(--text-color);
    max-width: 2000px;
    min-width: 467px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 9%;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: .3s;
}

.digitaldreamz {
    position: relative;
    width: 12rem;
    height: 12rem;
    background-color: transparent;
    border-radius: 10px;
}

.logo {
    font-size: 2.5rem;
    color: var(--text-color);
    font-weight: 500;
    margin-top: 2rem;
}

.logo  a{
    width: 100%;
}


nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    width: 100%;
    background-color: var(--second-bg-color);
}

nav .nav-bar {
    position: relative;
    height: 100%;
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav .nav-bar .sidebarOpen {
    color: var(--text-color);
    font-size: 25px;
    padding: 5px;
    cursor: pointer;
    display: none;
}

.nav-bar .nav-links {
    display: flex;
    align-items: center;
}

.nav-bar .nav-links li {
    margin: 0 5px;
    list-style: none;
}

.nav-links li a {
    position: relative;
    font-size: 21px;
    font-weight: 500;
    margin-left: 4rem;
    color: var(--text-color);
    text-decoration: none;
}

.nav-links li a:hover {
    color:  var(--main-color);
}

.logo-toggle {
    display: none;
}

.logo-toggle bx bx-x sidebarClose::before {
    display: none;
}

section {
    min-height: 467px;
    padding: 10rem 9% 2rem;
}

.home {
    display: block;
    justify-content: center;
    align-items: center;
    min-height: 80%;
}

.home-content {
    margin-top: 5rem;
    padding-top: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 1360px;
    z-index: 99;
}

.home-content h1 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.3;
}


.home-content p {
    font-size: 2rem;
    font-weight: 70;
    line-height: 1.2;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.home-content .text-animate {
    position: relative;
    width: 3.8rem;
}

.home-content .text-animate h3 {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    margin-left: -10rem;
    text-wrap: none;
    text-align: justify;
    font-size: 1.8rem;
    font-weight: 500;
    color: rgb(15, 142, 192);
    -webkit-text-stroke: .7px var(--main-color);
}

.box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 0.5rem;
    height: 5rem;
}

.btn-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 100%;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .8rem;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: .1rem;
    color: rgb(4, 24, 61);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box:hover {
    color: var(--main-color);
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;
}

.btn-box:hover::before {
    width: 100%;
}

.other-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 100%;
    background: var(--bg-color);
    border: .2rem solid var(--main-color);
    border-radius: .8rem;
    font-size: 1.8rem;
    font-weight: 600;
    margin-left: 3rem;
    letter-spacing: .1rem;
    color: rgb(4, 13, 31);
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.other-box:hover {
    color: var(--bg-color);
    background-color: var(--main-color);
}

.other-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -1;
    transition: .5s;
}

.other-box:hover::after {
    width: 100%;
}

.home-sci {
    position: relative;
    bottom: 4rem;
    width: 400px;
    display: flex;
    justify-content: space-between;
    margin-top: 7rem;
}

.home-sci p  {
    font-size: 1.1rem;
}

.home-sci a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 170px;
    height: 50px;
    background: transparent;
    border: .2rem solid var(--main-color);
    border-radius: 60%;
    font-size: 20px;
    color: var(--main-color);
    margin-right: 1rem;
    z-index: 1;
    overflow: hidden;
}

.home-sci a:hover {
    background-color: var(--main-color);
    color: var(--bg-color);
}

home-sci a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    z-index: -1;
    transition: .5s;
}

.home-sci a:hover::after {
    width: 100%;
} 

.home-imghover {
    position: relative;
    margin-top: -25rem;
    margin-left: 5rem;
    top: 0;
    right: 0;
    left: 0;
    margin-left: 32rem;
    width:  100%;
    height: 50rem;
    background: url("/images/pic2.jpg");
    object-fit: cover;
    border: 2px solid var(--second-bg-color);
    z-index: -1;
    opacity: .10;
    transform: scale(2);
    filter: blur(2px);
    -webkit-filter: blur(2px);
    transition: .3s ease-in;
}

.home-imghover:hover {
    background: var(--main-color);
    opacity: .40;
}

.contacts {
    margin-bottom: -80rem;
    margin-left: -130rem;
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
    background: var(--second-bg-color);
    padding-bottom: 3rem;
    margin: 1rem;
}

.about-img {
    position: relative;
    width: 25rem;
    height: 25rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: .7rem var(--main-color);
    
}

.about-img {
    border-radius: 50%;
    border: .7rem var(--main-color);
}

.about-img .circle-spin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border-top: .5rem solid var(--second-bg-color);
    border-bottom: .5rem solid var(--second-bg-color);
    border-left: .7rem solid var(--main-color);
    border-right: .7rem solid var(--main-color);
    animation: aboutSpinner;
}

.about h1 {
    color: rgb(131, 203, 245);
    font-size: 3rem;
}

.about-content {
    text-align: center;
}
.about-content h3 {
    font-size: 2rem;
    color: #00abf0;
    margin-bottom: 2rem;
}

.about-content p {
    margin-top: 1rem;
    font-size: 1.6rem;
    margin: 2rem 0 3rem;
}

.btn-box .btn {
    display: inline-flex;
    width: 80rem;
    text-wrap: none;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
}

.btn-box .btns a::before {
    background: var(--second-bg-color);
}

.services {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 5rem;
    background: var(--bg-color);
    font-size: 3rem;
    font-weight: 400;
    min-height: auto;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}

.services .heading {
    margin-top: -5rem;
    margin-left: 0rem;
    margin-bottom: 5rem;
}

.service-row .service-column {
    scroll-snap-align: center;
    flex: 1 1 40rem;
}

.service-column .service-box {
    display: inline-flex;
    justify-content: space-between;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    color: var(--bg-color);
    opacity: 20;
    z-index: 1;
    overflow: hidden;
}

.service-column .service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-box .service-content  {
    flex-wrap: wrap;
    text-wrap: wrap;
    background: var(--main-color);
    color: var(--bg-color);
    border-radius: .6rem;
    border: .3rem solid var(--main-color);
    font-size: 2.5rem;
    font-weight: 500;
    padding: 1rem;
    margin: 1rem;
    z-index: 1;
    transition: .5s;
    overflow: hidden;
}

.service-box .service-content::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
}

.service-box .service-content:hover::before {
    width: 100%;
}
.service-content .description {
    text-wrap: wrap;
    font-size: 2rem;
    font-weight: 600;
}

.works {
    min-height: auto;
    justify-content: space-between;
    background: var(--second-bg-color);
}

.works h2{
    display: flex;
    align-items: center;
    font-size: 3rem;
    color: rgb(250, 249, 247);
    margin-left: 50rem;
}

.works h3{
    display: flex;
    align-items: center;
    font-size: 3rem;
    color: orange;
    margin-left: 40rem;
}

.wrapper {
    display: flex;
    cursor: pointer;
    margin-bottom: 4rem;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
}

.wrapper img{
    scroll-snap-align: center;
    min-width: 420px;
    height: 400px;
    line-height: 110px;
    text-align: center;
}

.swrapper {
    padding-top: 3rem;
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: mandatory;
    cursor: pointer;
}

.swrapper img{
    scroll-snap-align: center;
    min-width: 690px;
    height: 400px;
    line-height: 110px;
    text-align: center;
}

.testimonies {
    margin-top: 8rem;
    background: var(--second-bg-color);
}

.top{
    display: flex;
    margin-top: 13rem;
    padding-top: 4rem;
    font-size: 145%;
    justify-content: center;
    left: 45%;
    top: 45%;
    margin-bottom: 3rem;
    align-items: center;
    flex-direction: column;
}

.top h2 {
    color: var(--main-color);
}

.top h3{
    border-radius: .6rem;
    border: .2rem solid rgb(247, 246, 245);
    margin-top: 1rem;
    padding: 0.5rem 2rem;
    background: transparent;
}

.testimonies span{
    color: var(--second-bg-color);
}

.swiper-wrapper {
    max-height: 340px;
    margin-top: 3rem;
    border: 1px solid var(--main-color);
    display: flex;
    overflow-x: auto;
    overflow-y: auto;
    cursor: pointer;
}

.testimony-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 1rem;
    min-width: 420px;
    height: 240px;
    font-size: 1.6rem;
    text-align: center;
    background: darkgoldenrod;
    border-radius: .2rem solid var(--main-color);
}

.education {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: auto;
    padding-bottom: 5rem;
}

.education .education-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.education-row .education-column {
    flex: 1 1 40rem;
}

.education-column .title {
    font-size: 2.5rem;
    margin: 0 0 1.5rem 2rem;
}

.education-column .education-box {
    border-left: .2rem solid var(--main-color);
}

.education-box .education-content {
    position: relative;
    padding-left: 2rem;
}


.education-content .content {
    position: relative;
    padding-left: 1.5rem;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    background: transparent;
    overflow: hidden;
}

.education-content .content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0rem;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
    transition: .5s;
}

.education-content .content:hover::before {
    width: 100%;
}

.education-content .content .year {
    font-size: 1.5rem;
    color: var(--main-color);
    padding-bottom: .5rem;
}

.education .heading {
    font-size: 4rem;
    margin-bottom: 4rem;
    color: #61c6ee;
    margin-left: 5rem;
}

.skills {
    min-height: auto;
    padding-bottom: 7rem;
    background: var(--second-bg-color);
}

.skills .heading {
    margin-left: 5rem;
    font-size: 3rem;
    color: rgb(142, 203, 241);
    text-decoration: underline;
}

.skills .skills-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    margin-top: 3rem;
}

.skills-row .skills-column {
    flex: 1 1 40rem;
    margin-left: 4rem;
    margin-top: 3rem;
}

.skills-column .title {
    font-size: 2.5rem;
    margin: 0 0 1.5rem;
}

.skills-box .skills-content {
    position: relative;
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
    padding: .5rem 1.5rem;
    z-index: 1;
    overflow: hidden;
}
.skills-box .skills-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--bg-color);
    z-index: -2;
    transition: .5s;
}

.skills-box .skills-content:hover::before {
    width: 100%;
}

.skills-content .progress {
    padding: 1rem 0;
}

.skills-content .progress h3 {
    font-size: 1.7rem;
    display: flex;
    justify-content: space-between;
}

.skills-content .progress h3 span {
    color: var(--main-color);
}

.skills-content .progress .bar {
    height: 2.5rem;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
    padding: .5rem;
    margin: 1rem 0;
}

.skills-content .progress .bar span {
    display: block;
    height: 100%;
    border-radius: .3rem;
    background: var(--main-color);
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(1) .bar span {
    width: 90%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(2) .bar span {
    width: 88%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(3) .bar span {
    width: 76%;
}

.skills-column:nth-child(1) .skills-content .progress:nth-child(4) .bar span {
    width: 70%;
}

.skills-column:nth-child(2) .skills-content .progress:nth-child(1) .bar span {
    width: 90%;
}

.skills-column:nth-child(2) .skills-content .progress:nth-child(2) .bar span {
    width: 80%;
}

.skills-column:nth-child(2) .skills-content .progress:nth-child(3) .bar span {
    width: 95%;
}

.skills-column:nth-child(2) .skills-content .progress:nth-child(4) .bar span {
    width: 70%;
}

.contact {
    min-height: auto;
    padding-bottom: 7rem;
    background: var(--bg-color);
}
.heading {
    margin-left: 5rem;
    font-size: 3rem;
}

.contact form {
    max-width: 70rem;
    margin: 0 auto;
    text-align: center;
    padding: 1 1 2rem;
}

.contact form .input-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    cursor: text;
}

.contact form .input-box .input-field {
    position: relative;
    width: 49%;
    margin: 6rem 0;
    padding: .1rem;
    margin-bottom: -5rem;
}

.contact form .input-box .input-field input,
.contact form .textarea-field textarea {
    width: 100%;
    height: 100%;
    margin: .1rem;
    padding: 1.5rem;
    font-size: 1.6rem;
    color: var(--text-color);
    background: transparent;
    border-radius: .6rem;
    border: .2rem solid var(--main-color);
}

.contact form .input-box .input-field input::placeholder,
.contact form .textarea-field textarea::placeholder {
    color: var(--text-color);
}

.contact form .focus {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: red;
    border-radius: .6rem;
    z-index: -1;
    transition: .5s;
}

.contact form .input-box .input-field input:focus~.focus,
.contact form .input-box .input-field input:valid~.focus, 
.contact form .textarea-field textarea:focus~.focus,
.contact form .textarea-field textarea:valid~.focus {
    width: 100%;
}

.contact form .textarea-field {
    position: relative;
    margin: .8rem 0 2.7rem;
    display: flex;
    margin-top: 8rem;
}

.contact form .textarea-field textarea {
    resize: none;
}

form button {
    background: var(--main-color);
    padding: 1rem 1.8rem;
    border-radius: .8rem;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 2rem 9%;
    background: var(--second-bg-color);
}

.footer-text p {
    font-size: 1.6rem;
}

.footer-iconTop a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: .8rem;
    background: var(--main-color);
    border: .2rem solid var(--main-color);
    border-radius: .6rem;
}

.footer-iconTop a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--second-bg-color);
    z-index: -1;
    transition: .5s;
}

.footer-iconTop a:hover::before {
    width: 100%;
}
.footer-icon-Top a i {
    font-size: 2.4rem;
    color: var(--bg-color);
}

.footer-iconTop a:hover i {
    color: var(--main-color);
}


@media (max-width: 1960px) {
    html {
        font-size: 90%;
    }
    .big-container {
        max-width: 1960px;
    }
}

@media (max-width: 1500px) {
    html {
        font-size: 75%;
    }

    .big-container {
        max-width: 1500px;
    }
}

@media (max-width: 1100px) {
    html {
        font-size: 65%;
    }

    .big-container {
        max-width: 1100px;
    }
}

@media screen and (max-width: 767px) {
    .big-container {
        max-width: 767px;
    }
    
    html {
        font-size: 60%;
    }

    body {
        max-width: 100%;

    }
    .header {
        background: var(--bg-color);
        height: 10%;
    }

    .logo {
        position: fixed;
        font-size: 2rem;
        color: var(--text-color);
        font-weight: 500;
        margin-top: 2rem;
    }

    nav .nav-bar .sidebarOpen {
        display: block;
        margin-top: 2rem;
        margin-left: 26rem;
    }

    .menu {
        position: fixed;
        height: 100%;
        width: 320px;
        left: 100%;
        top: 0;
        padding: 20px;
        background: var(--bg-color);
        z-index: 100;
        transition: all 01s ease;
    }

    nav.active .menu{
        left: -0%;
    }

    .menu .logo-toggle {
        position: fixed;
        width: 100%;
        display: block;
        z-index: 1;
    }

    .logo-toggle .sidebarClose {
        color: var(--text-color);
        font-size: 24px;
        cursor: pointer;
        margin-left: 25rem;
    }

    .nav-bar .nav-links {
        flex-direction: column;
        padding-top: 30px;
    }

    .nav-links li a {
        display: block;
        margin-top: 20px;
        color: var(--text-color);
    }

    .home {
        background: var(--bg-color);
    }

    .home-content {
        margin-top: 5rem;
        font-size: 1rem;
        position: relative;
    }

    .home-content h3{
        align-items: center;
        margin-left: -7rem;
    }

    .home-sci {
        width: 120%;
        height: 10%;
        top: 80%;
    }

    .home-sci a{
        width: 5rem;
        height: 4rem;
        margin-right: 1rem;
    }

    .home-imghover {
        display: none;
    }

    .service-box {
        width: 100%;
        margin-left: 35rem;
    }

    .about {
        margin-top: 17rem;
        width: 100%;
    }

    .works h2, .works h3 {
        margin-left: 12rem;
    }
}

    @media screen and (max-width: 467px) {
        .big-container {
            max-width: 467px;
        }

            html {
                font-size: 55%;
            }
        
            body {
                max-width: 100%;
        
            }
            .header {
                background: var(--bg-color);
                height: 10%;
            }
        
            .logo {
                position: fixed;
                font-size: 2rem;
                color: var(--text-color);
                font-weight: 500;
                margin-top: 2rem;
            }
        
            nav .nav-bar .sidebarOpen {
                display: block;
                margin-top: 2rem;
                margin-left: 26rem;
            }
        
            .menu {
                position: fixed;
                height: 100%;
                width: 320px;
                left: 100%;
                top: 0;
                padding: 20px;
                background: var(--bg-color);
                z-index: 100;
                transition: all 01s ease;
            }
        
            nav.active .menu{
                left: -0%;
            }
        
            .menu .logo-toggle {
                position: fixed;
                width: 100%;
                display: block;
                z-index: 1;
            }
        
            .logo-toggle .sidebarClose {
                color: var(--text-color);
                font-size: 24px;
                cursor: pointer;
                margin-left: 25rem;
            }
        
            .nav-bar .nav-links {
                flex-direction: column;
                padding-top: 30px;
            }
        
            .nav-links li a {
                display: block;
                margin-top: 20px;
                color: var(--text-color);
            }
        
            .home {
                background: var(--bg-color);
            }
        
            .home-content {
                margin-top: 5rem;
                font-size: 1rem;
                position: relative;
            }
        
            .home-content h3{
                align-items: center;
                margin-left: -7rem;
            }
        
            .home-sci {
                width: 120%;
                height: 10%;
                top: 80%;
            }
        
            .home-sci a{
                width: 5rem;
                height: 4rem;
                margin-right: 1rem;
            }
        
            .home-imghover {
                display: none;
            }
        
            .service-box {
                width: 100%;
                margin-left: 35rem;
            }
        
            .about {
                margin-top: 17rem;
                width: 100%;
            }
        
            .works h2, .works h3 {
                margin-left: 12rem;
            }
    }

    @media screen and (max-width: 367px) {
        .big-container {
            max-width: 367px;
        }
        html {
            font-size: 50%;
        }
    
        body {
            max-width: 100%;
    
        }
        .header {
            background: var(--bg-color);
            height: 10%;
        }
    
        .logo {
            position: fixed;
            font-size: 2rem;
            color: var(--text-color);
            font-weight: 500;
            margin-top: 2rem;
        }
    
        nav .nav-bar .sidebarOpen {
            display: block;
            margin-top: 2rem;
            margin-left: 26rem;
        }
    
        .menu {
            position: fixed;
            height: 100%;
            width: 320px;
            left: 100%;
            top: 0;
            padding: 20px;
            background: var(--bg-color);
            z-index: 100;
            transition: all 01s ease;
        }
    
        nav.active .menu{
            left: -0%;
        }
    
        .menu .logo-toggle {
            position: fixed;
            width: 100%;
            display: block;
            z-index: 1;
        }
    
        .logo-toggle .sidebarClose {
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
            margin-left: 25rem;
        }
    
        .nav-bar .nav-links {
            flex-direction: column;
            padding-top: 30px;
        }
    
        .nav-links li a {
            display: block;
            margin-top: 20px;
            color: var(--text-color);
        }
    
        .home {
            background: var(--bg-color);
        }
    
        .home-content {
            margin-top: 5rem;
            font-size: 1rem;
            position: relative;
        }
    
        .home-content h3{
            align-items: center;
            margin-left: -7rem;
        }
    
        .home-sci {
            width: 120%;
            height: 10%;
            top: 80%;
        }
    
        .home-sci a{
            width: 5rem;
            height: 4rem;
            margin-right: 1rem;
        }
    
        .home-imghover {
            display: none;
        }
    
        .service-box {
            width: 100%;
            margin-left: 35rem;
        }
    
        .about {
            margin-top: 17rem;
            width: 100%;
        }
    
        .works h2, .works h3 {
            margin-left: 12rem;
        }
    }

    @media screen and (max-width: 267px) {
        .big-container {
            max-width: 267px;
        }

        html {
            font-size: 50%;
        }
    
        body {
            max-width: 100%;
    
        }
        .header {
            background: var(--bg-color);
            height: 10%;
        }
    
        .logo {
            position: fixed;
            font-size: 2rem;
            color: var(--text-color);
            font-weight: 500;
            margin-top: 2rem;
        }
    
        nav .nav-bar .sidebarOpen {
            display: block;
            margin-top: 2rem;
            margin-left: 26rem;
        }
    
        .menu {
            position: fixed;
            height: 100%;
            width: 320px;
            left: 100%;
            top: 0;
            padding: 20px;
            background: var(--bg-color);
            z-index: 100;
            transition: all 01s ease;
        }
    
        nav.active .menu{
            left: -0%;
        }
    
        .menu .logo-toggle {
            position: fixed;
            width: 100%;
            display: block;
            z-index: 1;
        }
    
        .logo-toggle .sidebarClose {
            color: var(--text-color);
            font-size: 24px;
            cursor: pointer;
            margin-left: 25rem;
        }
    
        .nav-bar .nav-links {
            flex-direction: column;
            padding-top: 30px;
        }
    
        .nav-links li a {
            display: block;
            margin-top: 20px;
            color: var(--text-color);
        }
    
        .home {
            background: var(--bg-color);
        }
    
        .home-content {
            margin-top: 5rem;
            font-size: 1rem;
            position: relative;
        }
    
        .home-content h3{
            align-items: center;
            margin-left: -7rem;
        }
    
        .home-sci {
            width: 120%;
            height: 10%;
            top: 80%;
        }
    
        .home-sci a{
            width: 5rem;
            height: 4rem;
            margin-right: 1rem;
        }
    
        .home-imghover {
            display: none;
        }
    
        .service-box {
            width: 100%;
            margin-left: 35rem;
        }
    
        .about {
            margin-top: 17rem;
            width: 100%;
        }
    
        .works h2, .works h3 {
            margin-left: 12rem;
        }
    }

    @media screen and (max-width: 167px) {
        .big-container {
            max-width: 167px;
        }
            html {
                font-size: 45%;
            }
        
            body {
                max-width: 100%;
        
            }
            .header {
                background: var(--bg-color);
                height: 10%;
            }
        
            .logo {
                position: fixed;
                font-size: 2rem;
                color: var(--text-color);
                font-weight: 500;
                margin-top: 2rem;
            }
        
            nav .nav-bar .sidebarOpen {
                display: block;
                margin-top: 2rem;
                margin-left: 26rem;
            }
        
            .menu {
                position: fixed;
                height: 100%;
                width: 320px;
                left: 100%;
                top: 0;
                padding: 20px;
                background: var(--bg-color);
                z-index: 100;
                transition: all 01s ease;
            }
        
            nav.active .menu{
                left: -0%;
            }
        
            .menu .logo-toggle {
                position: fixed;
                width: 100%;
                display: block;
                z-index: 1;
            }
        
            .logo-toggle .sidebarClose {
                color: var(--text-color);
                font-size: 24px;
                cursor: pointer;
                margin-left: 25rem;
            }
        
            .nav-bar .nav-links {
                flex-direction: column;
                padding-top: 30px;
            }
        
            .nav-links li a {
                display: block;
                margin-top: 20px;
                color: var(--text-color);
            }
        
            .home {
                background: var(--bg-color);
            }
        
            .home-content {
                margin-top: 5rem;
                font-size: 1rem;
                position: relative;
            }
        
            .home-content h3{
                align-items: center;
                margin-left: -7rem;
            }
        
            .home-sci {
                width: 120%;
                height: 10%;
                top: 80%;
            }
        
            .home-sci a{
                width: 5rem;
                height: 4rem;
                margin-right: 1rem;
            }
        
            .home-imghover {
                display: none;
            }
        
            .service-box {
                width: 100%;
                margin-left: 35rem;
            }
        
            .about {
                margin-top: 17rem;
                width: 100%;
            }
        
            .works h2, .works h3 {
                margin-left: 12rem;
            }
    }


@keyframes aboutSpinner {
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}