* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #080808;
    --bg-color2: #131313;
    --text-color: white;
    --main-color: rgb(212, 31, 31);
    --hover-color: rgba(195, 119, 119, 0.7); /* Added hover color variable */
}

html {
    font-size: 60%;
    overflow-x: hidden;
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4rem 12% 0rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 5;
}

.logo {
    font-size: 3rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s ease;
    animation: slideRight 1s ease forwards;
    opacity: 0;
}

.logo:hover {
    transform: scale(1.1);
}

.logo span {
    text-shadow: 0 0 25px var(--main-color);
}

.navbar a {
    font-size: 1.8rem;
    color: var(--text-color);
    font-weight: 500;
    margin-left: 4rem;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    animation: slideTop 0.5s ease forwards;
}

.navbar a:hover,
.navbar a.active {
    color: var(--main-color);
    border-bottom: 3px solid var(--main-color);
    cursor: pointer;
}

#menu-icon {
    font-size: 5.6rem;
    color: var(--main-color);
    display: none;
    position: absolute;
    top: 24px; /* Adjust spacing from the top */
    right: -274px; /* Adjust spacing from the right */
    cursor: pointer;
    transform: translate(-14%, 5%);
    z-index: 1001;
}

section {
    min-height: 100vh;
    padding: 10rem 12% 10rem;
}

.home {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15rem;
}

.home-content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    text-align: left;
    justify-content: center;
    margin-top: 3rem;
}

span {
    color: var(--main-color);
}

.home-content h3 {
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 3.5rem;
    animation: slideBottom 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.home-content h2 {
    font-size: 6rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
    animation: slideBottom2 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

.home-content h1 {
    font-size: 7rem;
    font-weight: 700;
    margin-top: 1.5rem;
    line-height: 1;
    animation: slideRight 1s ease forwards;
    opacity: 0;
    animation-delay: 1s;
}

.home-img {
    border-radius: 50%;
}

.home-img img {
    position: relative;
    top: 2rem;
    width: 32vw;
    height: 30vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color);
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.home-img img:hover {
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color),
                0 0 100px var(--main-color);
}
.about-img {
    border-radius: 50%;
}

.about-img img {
    position: relative;
    top: 2rem;
    width: 32vw;
    height: 30vw;
    border-radius: 50%;
    box-shadow: 0 0 25px var(--main-color);
    cursor: pointer;
    transition: 0.4s ease-in-out;
}

.about-img img:hover {
    box-shadow: 0 0 25px var(--main-color),
                0 0 50px var(--main-color),
                0 0 100px var(--main-color);
}

.home-content p {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    max-width: 1000px;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4.5rem;
    height: 4.5rem;
    background: transparent;
    border: 2px solid var(--main-color);
    font-size: 2.5rem;
    border-radius: 50%;
    color: var(--main-color);
    margin: 3rem 1.5rem 3rem 0;
    transition: 0.1s ease-in-out;
}

.social-icons a:hover {
    color: var(--text-color);
    border: var(--text-color);
    transform: scale(1.2) translateY(-5px);
    background-color: var(--main-color);
}

.btn {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 0.7rem;
    font-size: 1.6rem;
    color: var(--bg-color);
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-group a:nth-of-type(2) {
    background-color: var(--bg-color);
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.btn-group a:nth-of-type(2):hover {
    color: var(--text-color);
    border: var(--text-color);
    transform: scale(1.1) translateY(-5px);
    background-color: var(--main-color);
}

.btn-group a:nth-of-type(1) {
    background-color: var(--bg-color);
    color: var(--main-color);
    border: 2px solid var(--main-color);
}

.btn-group a:nth-of-type(1):hover {
    color: var(--text-color);
    border: var(--text-color);
    transform: scale(1.1) translateY(-5px);
    background-color: var(--main-color);
}

.text-animation {
    font-size: 34px;
    font-weight: 600;
    min-width: 280px;
}

.text-animation span {
    position: relative;
}

.text-animation span::before {
    content: "Front-end Developer";
    color: var(--main-color);
    animation: words 16s infinite;
}

.text-animation span::after {
    content: "";
    background-color: var(--bg-color);
    position: absolute;
    width: calc(100% + 8px);
    height: 100%;
    border-left: 3px solid var(--bg-color);
    right: -8px;
    animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
}

.about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.about-text h2 {
    font-size: 60px;
    margin-bottom: 10px;
}

.about-text h4 {
    font-size: 29px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.7;
}

.about-text p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 4rem;
}

.skills {
    padding-left: 25px;
    padding-right: 25px;
}

#services {
    color: var(--text-color);
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 4rem;
}

.sub-title {
    text-align: center;
    font-size: 60px;
    padding-bottom: 70px;
    color: white;
}

.container {
    padding: 0px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(259px, 1fr));
    grid-gap: 40px;
    margin-top: 10px;
}

.services-list div {
    background: transparent;
    margin: -4px;
    padding: 40px;
    font-size: 13px;
    font-weight: 13px;
    border-right: 10px;
    border-radius: 20px;
    transition: background 0.5s, transform 0.5s;
    box-shadow: 1px 1px 14px var(--main-color);
}

.services-list div i {
    font-size: 50px;
    margin-bottom: 30px;
}

.services-list div h2 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

.services-list div a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.services-list div a:hover {
    color: var(--main-color);
}

.services-list div:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: translateY(-10px);
}

.myskills {
    display: flex;
    justify-content: space-between; 
    margin-top: 50px;
    padding-top: 0px;
    margin-top: 0px;
}

.container1, .container2 {
    width: 48%; 
    height: 500px;
    padding: 50px 65px;
    background-color:transparent; 
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    box-sizing: border-box; 
}

.skillsdiv{
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
}

.sub-title1{
    font-size: 66px;
    text-align: center;
  
}
.heading1{
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-decoration-thickness: 5px;
    margin-bottom: 30px;
    font-size: 18px;
}
.bar{
    font-size: 23px;
}
.technical-bars .bar{
margin-top: 30px;
}
.technical-bars .bar:first-child{
margin-top: 0;
}
.technical-bars .bar:last-child{
    margin-bottom: 0;
    }
    .technical-bars .bar .info{
        margin-bottom: 5px;
    }
    .technical-bars .bar .info span{
        font-size: 17px;
        font-weight: 500;
        animation: showText 0.5s 1s linear forwards;
        opacity: 0;
    }
    .technical-bars .bar .progress-line{
        position: relative;
        border-radius: 10px;
        width: 100%;
        height: 5px;
        background-color:white;
        animation: animate 1s cubic-bezier(1,0,0.5,1) forwards;
         transform: scaleX(0);
         transform-origin: left;

}


@keyframes animate {
    100%{
        transform: scaleX(1);
       
}}
.technical-bars .bar .progress-line span{
    height: 100%;
    background-color: var(--main-color);
    position: absolute;
    border-radius: 10px;
    animation: animate 1s 1s cubic-bezier(1,0,0.5,1) forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.progress-line.html span{
    width: 90%;
}
.progress-line.css span{
    width: 85%;
}
.progress-line.javascript span{
    width: 75%;
}
.progress-line.typescript span{
    width: 80%;
}

.progress-line span::after{
    position: absolute;
    padding: 1px 8px;
    background-color: rgb(32, 31, 31);
    color: white;
    font-size: 12px;
    border-radius: 3px;
    top: -20px;
    right: -20px;
    animation: showText 0.5s 1.5s linear forwards;
    opacity: 0;
}
.progress-line.html span::after{
    content:'90%';
}
.progress-line.css span::after{
    content:'85%';
}
.progress-line.javascript span::after{
    content:'75%';
}
.progress-line.typescript span::after{
    content:'80%';
}

.progress-line span::before{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-bottom-width: 0px;
    border-right-width: 0px;
    border-top-color: black;
    top: -10px;
    right: 0;
    animation: showText 0.5s 1.5s linear forwards;
    opacity: 0;
}

@keyframes showText{
    100%{
       opacity: 1; 
    }
}
.radial-bars{
    width: 100%;
        display:flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
       align-items: flex-start;
}
.radial-bars .radial-bar{
    width: 50%;
    height: 170px;
    margin-bottom: 10px;
    position: relative;
}
.radial-bars .radial-bar svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(-90deg);
    width: 120px;
    height: 160px;
}

.radial-bars .radial-bar .progress-bar{
    stroke-width: 10;
    stop-color: black;
    fill:transparent;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    stroke-linecap: round;
    animation: animate-bar 1s linear forwards;
}
@keyframes animate-bar{
    100%{
    stroke-dashoffset: -1;
}}
.path{
    stroke-width: 10;
    stroke: var(--main-color);
    fill: transparent;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    stroke-linecap: round;
}
.path-1{animation: animate-path1 1s 1s linear forwards;}
.path-2{animation: animate-path2 1s 1s linear forwards;}
.path-3{animation: animate-path3 1s 1s linear forwards;}
.path-4{animation: animate-path4 1s 1s linear forwards;}


@keyframes animate-path1{
    100%{
        stroke-dashoffset: 50;
    }
}
@keyframes animate-path2{
    100%{
        stroke-dashoffset: 175;
    }
}
@keyframes animate-path3{
    100%{
        stroke-dashoffset: 127;
    }
}
@keyframes animate-path4{
    100%{
        stroke-dashoffset: 75;
    }
}

@keyframes slideRight{
    0%{
        transform: translateX(-100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
.radial-bar .percentage{
    position: absolute;
    top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     font-weight: 500;
     font-size: 17px;
     animation: showText 0.5s 1s linear forwards;
     opacity: 0;
}
.radial-bar .text{
    width: 100%;
    position: absolute;
    text-align: center;
    left: 30%;
    bottom: -5px;
    transform: translateX(-50px);
    font-size: 17px;
    font-weight: 500;
    animation: showText 0.5s 1s linear forwards;
    opacity: 0 ;
}
.project {
    margin-top: 10px;
    padding: 33px 25px 25px 25px;
}

.projectdiv {
    padding: 0;
    margin: 0;
}

.pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(259px, 1fr));
    grid-gap: 50px;
    margin-top: 10px;
}

.sub-title3 {
    font-size: 66px;
    text-align: center;
    padding-top: 55px;
    padding-bottom: 30px;
}

.pro div {
    position: relative;
    background: transparent;
    margin: -4px;
    padding: 40px;
    font-size: 13px;
    border-radius: 20px;
    box-shadow: 1px 1px 14px var(--main-color);
    overflow: hidden;
}
.btn1 {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 0.7rem;
    font-size: 1.6rem;
    color: var(--bg-color);
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}
.btn2 {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 0.7rem;
    font-size: 1.6rem;
    color: var(--bg-color);
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}.btn3 {
    display: inline-block;
    padding: 1rem 2.8rem;
    background: var(--main-color);
    border-radius: 0.7rem;
    font-size: 1.6rem;
    color: var(--bg-color);
    border: 2px solid transparent;
    letter-spacing: 0.1rem;
    font-weight: 600;
    transition: 0.2s ease-in-out;
    cursor: pointer;
}

.pro video {
    position: relative;
    height: 300px;
    width: 300px;
    transition: none; /* Ensure smooth transition */
}
.pro i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-92%, -72%);
    font-size: 50px;
    color: var(--main-color);
    cursor: pointer;
    pointer-events: auto;
    z-index: 1;
    transition: color 0.3s ease; /* Smooth color transition */
}
.pro div.expanded bx-play-circle {
    display: none;
}

.pro i:hover {
    color: white; /* Change color on hover */
}

.pro p {
    display: none;
    font-size: 14px;
    margin-top: 10px;
}

.pro div.expanded p {
    display: block; /* Show the paragraph when expanded */
}

.pro div.expanded {
    height: auto;
    background: rgba(0, 0, 0, 0.05);
    padding-bottom: 20px;
    /* Ensure content visibility */

}

.pro div.expanded .video-container i.hidden {
    display: none;
}


.contact{
    display: grid;
    margin-top: 0;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    gap: 3rem;
    padding-left: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
    
   
}
.sub-title4{
   font-size: 60px;
    color: white; 
    
}
.contact-text h4{
    margin: 1px 0;
    color: white;
    font-size: 20px;
    line-height: 63px;
    font-weight: 600;
}

.contact-text p{
    color: white;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 2rem;
}

.contact-list{
    margin-bottom: 3rem;
}
.contact-list li{
    padding-top: 0;
    margin-bottom: 10px;
    display: block;
    font-size: 20px;
}


.contact-list i{
    display: inline-block;
    color: var(--main-color);
    font-size: 20px;
    font-weight: 600;
    transition: all .40s ease;
}
.contact-list li a:hover{
    transform: scale(1.01) translateY(-5px);
    color: var(--main-color);
}
.contact-form form{
    position: relative;
}

.contact-form form input,form textarea{
    border: none;
    outline: none;
    width:90%;
    padding: 18px;
    background: rgb(59, 58, 58);
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    border-radius: 0.5rem;
}

.contact-form form input::placeholder,form textarea::placeholder{
color: whitesmoke;
}
.contact-form textarea{
    resize: none;
    height: 220px;
}
.contact-form form .send{
    display: inline-block;
    padding: 12px 28px;
    background: var(--main-color);
    border-radius: 40px;
    font-size: 19px;
    color: white;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 550;
    
}
footer{
    background-color: transparent;
    height: 50px;
    width: 1500px;
}
.footer{
    font-size: 16px;
    padding-top: 10px;
    padding-bottom: 0;
    margin-bottom: 0;
   transform: translateX(400px);
}
@keyframes slideLeft{
    0%{
        transform: translateX(100px);
        opacity: 0;
    }
    100%{
        transform: translateX(0px);
        opacity: 1;
    }
}
@keyframes slideTop{
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes slideBottom{
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes slideBottom2{
    0%{
        transform: translateY(-100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0px);
        opacity: 1;
    }
}
@keyframes cursor{
    to{
        border-left: 2px solid var(--main-color)
    }
}

@keyframes words{
    0%,
    30%{
        content:" Front-end Developer";
    }

31%,
50%{
    content:"UI / UX Designer";
}
51%,
75%{
    content:" Front-end Developer";
}

76%,
100%{
content:"UI / UX Designer";
}
}

@keyframes typing{
    10%,
    15%,
    30%,
    35%,
    50%,
    55%,
    70%,
    75%,
    90%,
    95%{
        width: 0;
    }
    5%,
    20%,
    25%,
    40%,
    45%,
    60%,
    80%{
        width: calc(100% + 8px);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 50%;
        

    }
    body{
        overflow-x: hidden;
    }
    .logo {
        font-size: 2.5rem;
    }
    
    
    .header{
        width: 27%;
        padding-left: 34px;
    }

    .navbar{
        display: none;
    }

    section {
        padding: 0rem 5%;
    }

    .home {
        flex-direction: row; /* Ensure it's side by side */
        flex-wrap: nowrap;   /* Prevent wrapping */
        align-items: flex-start; 
        gap: 1rem;
        padding-bottom: 0;
    }

    .home-content {
        margin-top: 90px;
        width: 50%; /* Adjust width for side-by-side layout */
      
    }

    .home-content h3 {
        font-size: 2.5rem;
    }

    .home-content h2 {
        font-size: 3rem;
    }

    .home-content h1 {
        font-size: 5rem;
        width: 266px;
    }
        .home-content p {
            font-size: 13px;
            width: 100%; /* Adjust as needed */
            margin: 0;
        }
    
      
        .home-img img {
            margin-top: 134%;
            height: 47vw;
            width: 103%;
            animation: slideLeft 1s ease forwards;
    animation-delay: 1.3s;
               opacity: 0;
        }
    
    .about-img img {
        height: 40vw;
        width: 47%;
        
    }
    
   .social-icons a {
    width: 3.3rem;
    height: 3.5rem;
    font-size: 1.8rem;
}
    .btn, .btn-group a {
        padding: 0.8rem 2rem;
        font-size: 2.4rem;
    }

    .about {
        display: inline-block;
        padding-top: 0;
        padding-bottom: 0;
    }

    .about-text h2 {
        font-size: 36px;
        transform: translate(176px, -42px);
    }

    .about-text h4 {
        font-size: 29px;
        
    }

    .about-text p {
        font-size: 17px;
        width: 90%; /* Adjust as needed */
        margin: 0;
        line-height: 1.4;
        margin-bottom: 2rem;
        text-align: justify;
      }
    .services-list {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
    .sub-title{
        padding-top: 55px;
      font-size: 40px; 
      padding-bottom: 33px;
      /* Adjust as needed */
    }
    .sub-title4{
        font-size: 40px; 
        text-align: center;
        padding: 10px;
        padding-top: 67px;
    }
    .services-list div {
        padding: 20px;
    }

    .container1, .container2 {
        width: 100%;
        height: auto;
        padding: 20px;
        padding-bottom: 0;
    }
    .project {
        margin-top: 0;
        padding-top: 0;
    }
    .sub-title1{
        font-size: 40px;
        padding-top: 20px;
    }
    .sub-title3{
        padding-top: 0;
        font-size: 40px;
        text-align: center;
    }

    .heading1 {
        font-size: 12px;
        padding-left: 20px;
    }

    .technical-bars .bar {
        margin-top: 15px;
    }

    .technical-bars .bar .info span {
        font-size: 14px;
    }

    .technical-bars .bar .progress-line {
        height: 4px;
    }

    .progress-line span::after {
        font-size: 10px;
        top: -15px;
        right: -15px;
    }
    .radial-bars{
        width: 129%;
    }
    .radial-bars .radial-bar {
        width: 50%;
        height: 150px;
        margin-bottom: -8px;
    }
    .radial-bar .text{
        font-size: 11px;
        left: 51%;
    }
    .radial-bars .radial-bar svg {
        width: 77px;
        height: 130px;
    }
    .radial-bar .percentage{
        font-size: 14px;
    }

    .pro {
        grid-template-columns: 1fr; /* Ensure a single column layout on mobile */
        height: auto; /* Let the height adjust based on content */
    }
    .pro i{
      transform: translate(-38%, -118%);  
    }
    

    .btn1,
    .btn2,
    .btn3 {
        margin: 20px auto; /* Center buttons on mobile */
    }

    .pro p{
        line-height: 1.3;
    }

    .pro video {
        height: 182px;
        width: 272px;
    }
    .contact {
        grid-template-columns: 1fr;
        padding-left: 15px;
    }
    .contact-text p {
        text-align: justify;
    }

    .contact-form form input, form textarea {
        width: 100%;
        font-size: 2.5rem;
    }

    .contact-form form .send {
        padding: 10px 20px;
        font-size: 2.5rem;
    }
/* Mobile Navbar Styles */
/* Mobile Navbar Styles */

    .navbar {
        position: fixed;
        top: 68px;
        right: -308px;
        width: 200px;
        height: 502px;
        background-color: #fff; /* or your preferred background color */
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 2rem;
        z-index: 1000;
    }

    .navbar.active {
        transform: translateX(0);
    }

    .navbar a {
        font-size: 2.6rem; /* Adjust if needed */
        color: black;
        font-weight: 500;
        margin: 1rem 0; /* Line-by-line spacing */
        transition: 0.3s ease;
        padding-left: 10px;
        border-bottom: 3px solid transparent;
    }

    .navbar a:hover,
    .navbar a.active {
        color: var(--main-color);
        border-bottom: 3px solid var(--main-color);
    }

    #menu-icon {
        display: block;
        z-index: 1001;
    }


    .footer {
        transform: translateX(29px);
    }
}