@media all and (min-width: 1280px) and (max-width: 11111px) {
    * {
        box-sizing: border-box;
        scroll-behavior: smooth;
    }

    body {
        margin: 0px;
        padding: 0px;
        background-color: rgb(255, 255, 255);
        scroll-behavior: smooth;
        opacity: 0;
        transition: opacity 3s ease;
    }

    #dot {
        position: fixed;
        width: 20px;
        height: 20px;
        background-color: rgba(0, 0, 0);
        filter: invert(100%);
        mix-blend-mode: difference;
        border-radius: 50%;
        pointer-events: none;
        transition: transform 0.09s linear;
        z-index: 999;
    }

    body.dark #dot {
        background-color: rgb(255, 255, 255);
    }

    body.fade-in {
        opacity: 1;
    }

    body.fade-out {
        opacity: 0;
    }
/* 
    body::-webkit-scrollbar {
        display: none;
    } */

    body.dark {
        background-color: #000000;
    }


    .home {
        width: 100%;
        display: flex;
        justify-content: end;
    }

    .home .div1 {
        top: 0px;
        left: 0px;
        background-size: cover;
        background-position: end;
        background-repeat: no-repeat;
        width: 50%;
        border-radius: 25px;
        height: 100vh;
        position: fixed;
        display: flex;
        border: 10px solid rgb(255, 255, 255);
        border-right: 5px solid rgb(255, 255, 255);
    }

    body.dark .home .div1,
    body.dark .home .div3 {
        border: 10px solid rgb(0, 0, 0);
    }

    body.dark .home .div1 {
        border-right: 5px solid rgb(0, 0, 0);
    }

    body.dark .home .div3 {
        border-left: 5px solid rgb(0, 0, 0);
    }

    body.dark .div1 header::after,
    body.dark .div1 header::before,
    body.dark .types .box h3::before,
    body.dark .types .box h3::after {
        border-top: 9px solid #000000;
        border-left: 9px solid #000000;
    }

    body.dark .div1 header,
    body.dark .div1 .home1 p,
    body.dark .types .box h3,
    body.dark .div1 header nav .ww {
        background-color: rgb(0, 0, 0);
    }

    body.dark .div1 p::after,
    body.dark .div1 p::before {
        border-bottom: 9px solid #000000;
        border-right: 9px solid #000000;
    }

    body.dark .div1 .home1 p,
    body.dark .div1 header nav ul li a,
    body.dark .div1 header .logo a,
    body.dark .eme1 .name1,
    body.dark .types .box h3 {
        color: rgb(231, 231, 231);
    }

    .div1 header {
        display: flex;
        width: 500px;
        height: 50px;
        background-color: rgb(255, 255, 255);
        justify-content: center;
        align-items: center;
        padding-bottom: 10PX;
        border-radius: 0px 0px 25px 0px;

    }

    .div1 header .logo a {
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: rgb(0, 0, 0);
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        font-size: 25px;
    }

    .div1 header .logo a .ll {
        width: 15px;
        height: 15px;
        background-color: rgba(0, 0, 0, 0);
        border: 3px solid rgb(0, 0, 0);
        border-radius: 50%;
        margin: 5px;
    }

    body.dark .div1 header .logo a .ll {
        background-color: rgba(0, 0, 0, 0);
        border: 3px solid rgb(255, 255, 255);
    }


    .div1 header::after {
        content: "";
        position: absolute;
        top: 41px;
        left: -9px;
        width: 30PX;
        height: 30px;
        background-color: transparent;
        border-top: 9px solid #ffffff;
        border-left: 9px solid #ffffff;
        border-top-left-radius: 30px;
    }

    .div1 header::before {
        content: "";
        position: absolute;
        top: -9px;
        left: 491Px;
        width: 30PX;
        height: 30px;
        background-color: transparent;
        border-top: 9px solid #ffffff;
        border-left: 9px solid #ffffff;
        border-top-left-radius: 30px;
    }

    .div1 header nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0px 20px;
    }

    nav .ww {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        margin-left: -20px;
        border-radius: 0px 0px 20px;
        padding: 0px 10px;
    }

    .div1 header nav ul {
        display: flex;
        list-style: none;
        margin-top: -5px;
        gap: 20px;
    }

    .div1 header nav ul li a {
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        color: #000000;
        font-size: 18px;
        font-weight: 400;
    }

    .div1 header button {
        width: 30px;
        height: 20px;
        border: none;
        display: flex;
        background-color: rgb(0, 0, 0);
        font-family: 'Poppins', sans-serif;
        padding: 5px 3px;
        margin-left: 20px;
        margin-right: 5px;
        justify-content: flex-start;
        align-items: center;
        border-radius: 25px;
    }

    body.dark .div1 header button {
        background-color: rgb(255, 255, 255);
        justify-content: flex-end;
    }

    .div1 header button .toggle {
        width: 13px;
        height: 13px;
        background-color: rgb(255, 255, 255);
        border-radius: 50%;
    }

    body.dark header button .toggle {
        background-color: rgb(0, 0, 0);

    }

    body.dack .div1 header button::after {
        content: "";
        position: absolute;
        top: 11px;
        right: 75px;
        width: 20PX;
        height: 20px;
        background-color: rgb(235, 0, 0);
        border-radius: 50%;
    }

    .responsive {
        display: none;
        transition: all;
    }

    .responsive i {
        color: #c20000;
        font-size: 20px;
        cursor: pointer;
    }

    #menu {
        transition: all 1s;
    }

    .div1 .home1 .ss p {
        font-size: 20px;
        font-weight: 400;
        width: 129px;
        display: flex;
        justify-content: center;
        background-color: #ffffff;
        border-top-left-radius: 30px;
        bottom: -25px;
        right: 0px;
        position: absolute;
        padding: 10px 20px;
    }

    .div1 p::after {
        content: "";
        position: absolute;
        top: -30px;
        right: -9px;
        width: 30PX;
        height: 30px;
        background-color: transparent;
        border-bottom: 9px solid #ffffff;
        border-right: 9px solid #ffffff;
        border-bottom-right-radius: 30px;
    }

    .div1 p::before {
        content: "";
        position: absolute;
        top: 17px;
        right: 117.2px;
        width: 20PX;
        height: 20px;
        background-color: transparent;
        border-bottom: 8px solid #ffffff;
        border-right: 8px solid #ffffff;
        border-bottom-right-radius: 30px;
    }


    .home .div2 {
        width: 50%;
    }

    .home .div3 {
        border: 10px solid rgb(255, 255, 255);
        border-right: 10px solid rgb(255, 255, 255);
        top: 0px;
        right: 0px;
        width: 50%;
    }

    body.dark .home .div3 {
        border: 10px solid rgb(0, 0, 0);
        border-right: 10px solid rgb(0, 0, 0);
    }

    .home .div3 .card1 {
        width: 100%;
        height: 350px;
        background-color: rgba(255, 255, 255, 0);
        border-radius: 20px;
        display: flex;
        gap: 5px;
        justify-content: space-between;
    }

    .home .div3 .card1 .eme1 {
        width: 65%;
        height: 350px;
        background-color: rgb(241, 241, 241);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 20px;
        padding: 10px;
    }

    .eme1 .title p {
        font-size: 30px;
    }

    .eme1 .name2 {
        color: #3b2121;
        margin: 0px 10px 10px 10px;
        padding-left: 20px;
    }

    body.dark .eme1 .name2 {
        color: rgb(231, 231, 231);
    }

    .eme1 .name2 p {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        width: 80%;
        line-height: 25px;
    }


    .card1 .eme2 {
        width: 35%;
        height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 20px;
        margin-left: 10px;
        background-color: rgba(241, 241, 241, 0);
    }

    .eme2 a {
        text-decoration: none;
        padding: 10px;
        color: #333333;
        background: rgb(241, 241, 241);

    }

    .eme2 .test {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: rgba(241, 241, 241);
        padding: 0px 10px;
        border-radius: 10px;
        margin-bottom: 10px;
        width: 100%;
        height: 70px;
        color: #333333;
        font-size: 20px;
        font-family: 'Poppins', sans-serif;
    }



    body.dark .eme2 .test,
    body.dark .home .div3 .card1 .eme1,
    body.dark .div3 .card4 .a1,
    body.dark .div3 .card4 .a,
    body.dark .types .tt {
        color: rgb(231, 231, 231);
        background-color: rgba(255, 255, 255, 0.151);
    }

    body.dark .aall .a:hover {
        color: rgb(231, 231, 231);
        background-color: rgba(231, 231, 231, 0.292);
    }


    body.dark .div3 .card4 .a2,
    body.dark .footer {
        background-color: rgb(241, 241, 241);
        color: rgb(0, 0, 0);
    }

    .card2 .hidden {
        width: 100%;
        height: 120vh;
        background-position-y: end;
        background-position-x: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-color: rgba(255, 255, 255, 0);
        border-radius: 40px;
        margin: 10px 0px;
    }

    .div3 .Projects {
        width: 100%;
    }

    .types {
        display: flex;
        gap: 10px;
        justify-content: space-between;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .types a {
        text-decoration: none;
        color: #000000;
    }

    body.dark .types a {
        color: rgb(231, 231, 231);
    }



    .types .box {
        width: 49%;

    }


    .types .tt {
        border-radius: 15px;
        background-color: rgba(241, 241, 241);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 70px 20px;
    }


    .types .tt .Next {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        background-color: rgb(255, 255, 255);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 25px;
        border-radius: 5px;
    }

    body.dark .types .tt .Next {
        background-color: rgb(0, 0, 0);
        color: rgb(255, 255, 255);
    }

    .types .yy .titl {
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .types .yy .view {
        font-family: 'Poppins', sans-serif;
        text-decoration: underline;
    }



    body.dark .types .tt .view {
        color: rgb(255, 255, 255);
    }

    .types .box h3 {
        text-align: center;
        margin-top: 0;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        position: absolute;
        z-index: 99;
        background-color: #ffffff;
        padding: 10px 20px;
        border-radius: 0px 0px 20px 0px;
    }

    .types .box h3::after {
        content: '';
        width: 30px;
        height: 30px;
        background-color: transparent;
        position: absolute;
        border-top: 9px solid #ffffff;
        border-left: 9px solid #ffffff;
        top: 32px;
        left: -9px;
        border-top-left-radius: 30px;
    }

    .types .box h3::before {
        content: '';
        width: 30px;
        height: 30px;
        background-color: transparent;
        position: absolute;
        border-top: 9px solid #ffffff;
        border-left: 9px solid #ffffff;
        top: -9px;
        right: -29px;
        border-top-left-radius: 30px;
    }

    .types .box p {
        width: 100%;
        height: 100%;
        margin-top: 0%;
        background-color: rgba(255, 255, 255, 0);
        border-radius: 10px;
        transition: 0.3s ease;
        cursor: pointer;
        overflow: hidden;
    }

    .types .box p:hover {
        backdrop-filter: blur(10px);
    }

    .div3 .card4 {
        width: 100%;
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .div3 .card4 .a1 {
        width: 100%;
        height: 45px;
        text-decoration: none;
        background-color: rgb(241, 241, 241);
        border-radius: 10px;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        color: #000000;
    }

    .div3 .card4 .a1:hover {
        background-color: rgba(221, 221, 221);
    }

    .aall {
        display: flex;
        gap: 10px;
        justify-content: space-between;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .aall a {
        text-decoration: none;
        color: #000000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        width: 49%;
        background-color: rgb(241, 241, 241);
        border-radius: 10px;
    }

    .aall .a:hover {
        background-color: rgba(221, 221, 221);
    }

    body.dark .aall .a:hover {
        background-color: rgb(50, 50, 50);
        color: rgb(241, 241, 241);
    }

    .aall .a2 {
        width: 100%;
        height: 55px;
        text-decoration: none;
        background-color: rgb(0, 0, 0);
        border-radius: 10px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        color: rgb(231, 231, 231);
    }

    body.dark .aall .a2:hover {
        background-color: rgb(50, 50, 50);
        color: rgb(241, 241, 241);
    }

    .eme1 .name2 p {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        line-height: 25px;
    }

    .name1 .eme {
        width: 60px;
        height: 60px;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 15px;
        border-radius: 50%;
    }

    body.dark .name1 .eme {
        background-color: #000000;
    }

    .name1 .eme .lo {
        width: 30px;
        height: 30px;
        background-color: rgb(255, 255, 255);
        border: 5px solid #000000;
        border-radius: 50%;
    }

    body.dark .name1 .eme .lo {
        background-color: rgb(0, 0, 0);
        border: 5px solid #ffffff;
    }

    .types .box {
        width: 49%;
        height: 75vh;
        border-radius: 10px;
    }

    footer {
        width: 100%;
        background-color: rgb(0, 0, 0);
        border-radius: 15px;
        color: rgb(255, 255, 255);
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }

    .footer {
        width: 100%;
        background-color: rgb(0, 0, 0);
        border-radius: 15px;
        color: rgb(255, 255, 255);
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        display: flex;
        padding: 0px 10px;
    }

    .footer .name1 {
        display: flex;
        align-items: center;
        margin-top: 40px;
        margin-left: 40px;
        justify-self: flex-start;
    }

    .footer .ime {
        width: 60px;
        height: 60px;
        background: url('https://framerusercontent.com/images/CMh23QYytITSqtvV5MouFhzCsQ.webp');
        background-size: cover;
        background-position: center;
        margin-right: 15px;
        background-repeat: no-repeat;
        border-radius: 50%;
    }


    .footer-links {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        margin: auto;
        padding: 20px 20px 50px;
        margin-top: 40px;
    }

    .footer-column {
        flex: 1 1 150px;
        display: flex;
        flex-direction: column;
        margin-bottom: auto;
        width: 300px;
        padding: 0px 10px;
        border-radius: 10px;

    }

    .footer-column h4 {
        font-size: 22px;
        color: #fff;
    }

    body.dark .footer-column h4 {
        color: rgb(0, 0, 0);
    }

    .footer-column a {
        display: block;
        text-decoration: none;
        color: #aaa;
        font-size: 16px;
        font-style: 400;
        margin-bottom: 22px;
        transition: color 0.3s;
    }

    body.dark .footer-column a {
        color: rgb(50, 50, 50);
    }

    .footer-column a:hover {
        color: #fff;
    }

    body.dark .footer-column a:hover {
        color: rgb(0, 0, 0);
    }

    * {
        font-weight: 300;
        font-family: 'Poppins', sans-serif;
    }
}

@media (min-width: 481px) and (max-width: 1279px) {

    * {
        box-sizing: border-box;

    }

    body {
        margin: 10px;
        padding: 0px;
        background-color: rgb(255, 255, 255);
    }

    body.dark {
        background-color: #000000;

    }

    .home {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .div1 {
        background-size: cover;
        background-position-x: center;
        background-position-y: END;
        background-repeat: no-repeat;
        position: relative;
        width: 100%;
        border-radius: 25px;
        height: 1400px;
    }

    body.dark .types .box h3::before,
    body.dark .types .box h3::after {
        border-top: 9px solid #000000;
        border-left: 9px solid #000000;
    }

    body.dark .div1 .home1 p,
    body.dark .types .box h3,
    body.dark .div1 .home1 nav h5 {
        background-color: rgb(0, 0, 0);
    }



    body.dark .div1 .home1 p,
    body.dark header nav ul li a,
    body.dark header .logo a,
    body.dark .eme1 .name1,
    body.dark .types .box h3,
    body.dark .div1 .home1 nav h5 {
        color: rgb(231, 231, 231);
    }

    .fixed {
        position: fixed;
        width: 100%;
        top: 0px;
        left: 0px;
        background-color: #6b3f3f00;
        border: 10px solid rgb(255, 255, 255);
        border-radius: 0px 0px 20px 20px;
        z-index: 99;
    }

    body.dark .fixed {
        border: 10px solid rgb(0, 0, 0);
    }

    header {
        display: flex;
        width: 100%;
        background-color: rgba(143, 20, 20, 0);
        justify-content: center;
        position: fixed;
        align-items: center;
        border-radius: 0px 0px 25px 0px;

    }

    header .logo {
        border-radius: 0px 0px 25px 0px;
        margin: 0px 0px 0px -10px;
        padding: 0px 10px 8px 20px;
    }

    body.dark header nav .ww {

        background-color: #000000;
    }

    header .logo a {
        text-decoration: none;
        color: rgb(0, 0, 0);
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
    }

    header .ww::after {
        content: "";
        position: absolute;
        top: 85px;
        left: -14px;
        width: 40PX;
        height: 40px;
        background-color: transparent;
        border-top: 15px solid #ffffff;
        border-left: 15px solid #ffffff;
        border-top-left-radius: 50px;
    }

    header .ww::before {
        content: "";
        position: absolute;
        top: -11px;
        left: 465Px;
        width: 40PX;
        height: 40px;
        background-color: transparent;
        border-top: 15px solid #ffffff;
        border-left: 14px solid #ffffff;
        border-top-left-radius: 60px;
    }

    body.dark header .ww::after {
        border-top: 15px solid #000000;
        border-left: 15px solid #000000;
        border-top-left-radius: 50px;

    }

    body.dark header .ww::before {
        border-top: 15px solid #000000;
        border-left: 14px solid #000000;
        border-top-left-radius: 60px;
    }

    header nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
    }

    nav .ww {
        display: flex;
        align-items: center;
        justify-self: flex-end;
        background-color: #ffffff;
        transform: translate(0px, -44px);
        margin-left: -21px;
        border-radius: 0px 0px 40px;
        padding: 0px 10px;
        z-index: 99;
    }

    nav ul {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        background: rgb(255, 255, 255);
        padding: 0px;
        border-radius: 0px 0px 20px 5px;
        margin: 0px auto;
        gap: 0px;
        overflow: hidden;
        transition: all 1s;
    }

    body.dark nav ul {
        background: rgb(0, 0, 0);
    }

    nav ul li {
        padding: 30px;
    }

    nav ul li a {
        text-decoration: none;
        font-family: 'Poppins', sans-serif;
        color: #000000;
        font-size: 40px;
    }

    .responsive {
        display: flex;
        justify-content: center;
        align-items: center;
        display: block;
        transition: all 1s;
        z-index: 99;
    }

    .div1 .home1 nav h5 {
        font-size: 60px;
        cursor: pointer;
        font-weight: 300;
        font-family: 'Poppins', sans-serif;
        background-color: #ffffff;
        border-bottom-left-radius: 40px;
        bottom: 0px;
        right: 0px;
        margin-top: 9px;
        padding: 10px 20px 10px 20px;
        z-index: 99;
    }

    .div1 .home1 nav h5::after {
        content: "";
        position: absolute;
        top: -5px;
        right: 195px;
        width: 40PX;
        height: 40px;
        background-color: transparent;
        border-top: 15px solid #ffffff;
        border-right: 15px solid #ffffff;
        border-top-right-radius: 50px;
    }

    .div1 .home1 nav h5::before {
        content: "";
        position: absolute;
        top: 84px;
        right: 5px;
        width: 40PX;
        height: 40px;
        background-color: transparent;
        border-top: 15px solid #ffffff;
        border-right: 15px solid #ffffff;
        border-top-right-radius: 50px;
    }

    body.dark .div1 .home1 nav h5::after,
    body.dark .div1 .home1 nav h5::before {
        border-top: 15px solid #000000;
        border-right: 15px solid #000000;

    }


    header button {
        width: 30px;
        height: 20px;
        border: none;
        display: flex;
        background-color: rgb(0, 0, 0);
        font-family: 'Poppins', sans-serif;
        padding: 5px 3px;
        margin-left: 20px;
        margin-right: 5px;
        justify-content: flex-start;
        align-items: center;
        border-radius: 25px;
    }

    body.dark header button {
        background-color: rgb(255, 255, 255);
        justify-content: flex-end;
    }

    header button .toggle {
        width: 10px;
        height: 10px;
        background-color: rgb(255, 255, 255);
        border-radius: 50%;
    }

    body.dark header button .toggle {
        background-color: rgb(0, 0, 0);

    }

    body.dack header button::after {
        content: "";
        position: absolute;
        top: 11px;
        right: 75px;
        width: 20PX;
        height: 20px;
        background-color: rgb(235, 0, 0);
        border-radius: 50%;
    }

    .div1 .home1 .ss p {
        font-size: 0px;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
        background-color: #ffffff;
        border-top-left-radius: 50px;
        bottom: 0px;
        right: 0px;
        position: absolute;
        padding: 10px 20px;
    }

    .div1 .ss p::after {
        content: "";
        position: absolute;
        top: -30px;
        right: -11px;
        width: 30PX;
        height: 30px;
        background-color: transparent;
        border-bottom: 11px solid #ffffff;
        border-right: 11px solid #ffffff;
        border-bottom-right-radius: 40px;
    }

    .div1 .ss p::before {
        content: "";
        position: absolute;
        top: 0px;
        right: 160px;
        width: 20PX;
        height: 20px;
        background-color: transparent;
        border-bottom-right-radius: 40px;
    }

    body.dark .div1 .ss p::after,
    body.dark .div1 .ss p::before {
        border-bottom: 15px solid #000000;
        border-right: 15px solid #000000;
    }


    .div3 {
        top: 0px;
        margin-top: 20px;
        right: 0px;
        width: 100%;
    }


    .card1 .eme1 {
        width: 65%;
        height: 600px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 40px;
        padding: 10px;
        background-color: rgba(241, 241, 241);
    }



    .card1 .eme2 {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 15px 0px;
        background-color: rgba(241, 241, 241, 0);
    }


    .eme2 .test {
        display: flex;
        font-size: 50px;
        align-items: center;
        justify-content: space-between;
        background-color: rgb(241, 241, 241);
        padding: 0px 15px;
        margin: 10px 0px 0px;
        border-radius: 20px;
        font-family: 'Poppins', sans-serif;
    }

    body.dark .eme2 .test,
    body.dark .home .div3 .card1 .eme1,
    body.dark .div3 .card4 .a1,
    body.dark .div3 .card4 .a,
    body.dark .types .tt {
        color: rgb(231, 231, 231);
        background-color: rgba(255, 255, 255, 0.151);
    }


    body.dark .aall .a:hover {
        color: rgb(231, 231, 231);
        background-color: rgba(231, 231, 231, 0.292);
    }

    body.dark .eme2 .me,
    body.dark .div3 .card4 .a2,
    body.dark .footer {
        background-color: rgb(241, 241, 241);
        color: rgb(0, 0, 0);
    }


    .types {
        display: flex;
        gap: 10px;
        justify-content: space-between;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .types a {
        text-decoration: none;
        color: #000000;
    }

    .types .box h3 {
        text-align: center;
        margin-top: 0;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        position: absolute;
        z-index: 99;
        background-color: #ffffff;
        padding: 10px 20px;
        border-radius: 0px 0px 40px 0px;
    }

    .types .box h3::after {
        content: '';
        width: 30px;
        height: 30px;
        background-color: transparent;
        position: absolute;
        border-top: 11px solid #ffffff;
        border-left: 9px solid #ffffff;
        top: 233px;
        left: -9px;
        border-top-left-radius: 40px;
    }

    .types .box h3::before {
        content: '';
        width: 30px;
        height: 30px;
        background-color: transparent;
        position: absolute;
        border-top: 9px solid #ffffff;
        border-left: 9px solid #ffffff;
        top: -9px;
        right: -29px;
        border-top-left-radius: 40px;
    }

    .types .box p:hover {
        backdrop-filter: blur(10px);
    }

    .name1 .eme {
        width: 120px;
        height: 120px;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: -70px;
        border-radius: 50%;
    }

    body.dark .name1 .eme {
        background-color: #000000;
    }

    .name1 .eme .lo {
        width: 70px;
        height: 70px;
        background-color: rgb(255, 255, 255);
        border: 5px solid #000000;
        border-radius: 50%;
    }

    body.dark .name1 .eme .lo {
        background-color: rgb(0, 0, 0);
        border: 5px solid #ffffff;
    }

    .name1 .title .p1 {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-size: 70px;
        margin-bottom: -30px;
    }

    .name1 .title .p2 {
        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 40px;
    }


    .div3 .card4 {
        width: 100%;
        border-radius: 20px;
        margin-bottom: 10px;
        position: sticky;
        top: 0;
        z-index: -1;

    }

    .div3 .card4 .a1 {
        width: 100%;
        text-decoration: none;
        background-color: rgb(241, 241, 241);
        border-radius: 10px;
        margin-top: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0px 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        color: #000000;
    }

    .div3 .card4 .a1:hover {
        background-color: rgba(221, 221, 221);
    }

    .aall {
        display: flex;
        gap: 10px;
        justify-content: space-between;
        margin-top: 10px;
        flex-wrap: wrap;
    }

    .aall .a {
        text-decoration: none;
        color: #000000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 10px;
        font-size: 60px;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        width: 49%;
        background-color: rgb(241, 241, 241);
        border-radius: 10px;
    }

    .aall .a:hover {
        background-color: rgba(221, 221, 221);
    }

    body.dark .aall .a:hover {
        background-color: rgb(50, 50, 50);
        color: rgb(241, 241, 241);
    }

    .aall .a2 {
        width: 100%;
        height: 55px;
        text-decoration: none;
        background-color: rgb(0, 0, 0);
        border-radius: 10px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 20px;
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        color: rgb(231, 231, 231);
    }

    body.dark .aall .a2:hover {
        background-color: rgb(50, 50, 50);
        color: rgb(241, 241, 241);
    }

    footer {
        width: 100%;
        background-color: rgb(0, 0, 0);
        border-radius: 15px;
        color: rgb(255, 255, 255);
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }

    .footer {
        width: 100%;
        background-color: rgb(0, 0, 0);
        border-radius: 15px;
        color: rgb(255, 255, 255);
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px 10px;
    }

    .footer .name1 {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 40px;
        margin-left: 40px;
    }

    .footer .name1 .title{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .footer .ime {
        width: 80px;
        height: 80px;
        background: url('https://framerusercontent.com/images/CMh23QYytITSqtvV5MouFhzCsQ.webp');
        background-size: cover;
        background-position: center;
        margin-right: 15px;
        background-repeat: no-repeat;
        border-radius: 50%;
    }


    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: auto;
        padding: 20px 20px 50px;
        margin-top: 40px;
    }

    .footer-column {
        flex: 1 1 150px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin-bottom: auto;
        width: 300px;
        padding: 0px 10px;
        border-radius: 10px;

    }

    .footer-column h4 {
        font-size: 7vw;
        color: #fff;
    }

    body.dark .footer-column h4 {
        color: rgb(0, 0, 0);
    }

    .footer-column a {
        display: block;
        text-decoration: none;
        color: #aaa;
        font-size: 16px;
        font-weight: 300;
        margin-bottom: 22px;
        transition: color 0.3s;
    }

    body.dark .footer-column a {
        color: rgb(50, 50, 50);
    }

    .footer-column a:hover {
        color: #fff;
    }

    body.dark .footer-column a:hover {
        color: rgb(0, 0, 0);
    }

    .div2 {
        display: none;
    }


    header .logo a {
        font-size: 80px;
    }

    header nav ul li a {
        font-size: 30px;
    }

    header button {
        width: 90px;
        height: 50px;
    }

    header button .toggle {
        width: 40px;
        height: 40px;
    }



    .div1 .home1 .ss p {
        font-size: 60px;
        padding: 15px 30px;
        background-color: rgb(255, 255, 255);
        transform: translate(0px, 65px);
    }

    .div1 .ss p::before {
        top: 54px;
        left: -40px;
        width: 40PX;
        height: 40px;
        border-right: 12px solid #ffffff;
        border-bottom: 12px solid #ffffff;
    }

    .eme1 .title p {
        font-size: 70px;
    }

    .eme1 .name1 {
        margin: 60px auto 0px;
        width: 100%;
        height: 150px;
    }

    .eme1 .ime,
    .eme .ime {
        width: 170px;
        height: 170px;
    }



    .eme1 .name2 {
        margin: 0px auto;
    }

    .eme1 .name2 p {
        font-family: 'Poppins', sans-serif;
        padding: 0px 20px;
        font-weight: 300;
        font-size: 50px;
    }

    .card1 .eme1 {
        width: 100%;
        height: 700px;
    }

    body.dark .div3 .card4 .a2,
    body.dark .footer {
        background-color: rgb(241, 241, 241);
        color: rgb(0, 0, 0);
    }

    .card2 .hidden {
        width: 100%;
        height: 100vh;
        background-position-y: end;
        background-position-x: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-color: rgba(255, 255, 255, 0);
        border-radius: 40px;
        margin: 10px 0px;
    }

    .div3 .Projects {
        width: 100%;
    }

    .types .tt {
        border-radius: 15px;
        background-color: rgba(241, 241, 241);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 70px 20px;
    }


    .types .tt .Next {
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        background-color: rgb(255, 255, 255);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 50px;
        width: 150px;
        height: 70px;
        border-radius: 5px;
    }

    body.dark .types .tt .Next {
        background-color: rgb(0, 0, 0);
        color: rgb(255, 255, 255);
    }

    .types .yy .titl {
        font-family: 'Poppins', sans-serif;
        font-weight: 300;
        margin-bottom: 5px;
    }

    .types .yy .view {
        font-size: 50px;
        font-family: 'Poppins', sans-serif;
        text-decoration: underline;
    }



    body.dark .types .tt .view {
        color: rgb(255, 255, 255);
    }

    .tt .yy .titl {
        font-size: 50px;
    }

    .types a {
        font-size: 60px;
        cursor: pointer;
    }

    .types {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .types .box {
        width: 99%;
        height: 50vh;
    }

    .types .box h3::after {

        top: 90px;
        left: -9px;
    }

    .div3 .card4 .a1,
    .aall .a2 {
        height: 110px;
        font-size: 55px;
    }

    .aall .a {
        width: 100%;
        height: 110px;
        font-size: 55px;
    }

    .footer-column h4 {
        font-size: 70px;
    }

    .footer-column a {
        font-size: 45px;
    }

    * {
        font-weight: 300;
        font-family: 'Poppins', sans-serif;
    }
}

* {
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}