@font-face {
    font-family: nue;
    src: url(./utilities/64d3dd9edfb41666c35b15c0_NeueHaasDisplay-Roman.ttf);
}

@font-face {
    font-family: nue2;
    src: url(./utilities/64d3dd9edfb41666c35b15bf_NeueHaasDisplay-Mediu.ttf);
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: nue;
}

html {
    height: 100vh;
}


body {
    position: relative;
    overflow-x: hidden;
}

@media (max-width:500px) {
    body {
        overflow-x: hidden;
        width: 100vw;
    }
}

/* Main Wrapper */

#main {
    z-index: 11;
    position: relative;
    pointer-events: none;
    overflow-x: hidden;
}

/* Page 1 */

.section-1 {
    min-height: 108vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2vw;
    background-color: #EFEAE3;
    pointer-events: all;
}

.navbar {
    height: 15vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-top: 1vw;
    z-index: 100;
    background-color: #EFEAE3;
}

.navbar .logo {
    height: 76px;
    padding-top: 5px;
    margin-top: -1.6vh;
}

.nav-links {
    align-items: center;
    display: flex;
    justify-content: space-between;
    column-gap: 1.1vh;
    margin-top: -10px;
    position: relative;
}

.nav-links h4 {
    font-size: 2.1vh;
    font-weight: 550;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.193);
    padding: 1.6vh 1.6vw;
    border-radius: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all ease-in-out 0.3s;
}

.nav-links .menu {
    font-size: 2.1vh;
    font-weight: 550;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.193);
    padding: 1.6vh 1.6vw;
    border-radius: 25px;
    cursor: pointer;
    display: none;
}

.nav-links h4 a {
    text-decoration: none;
    color: black;
    position: relative;
    z-index: 9;
}

.nav-links h4::after {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #000000;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease-in-out 0.3s;
}

.nav-links h4:hover::after {
    bottom: 0;
    border-radius: 0;
}

.nav-links h4:hover a {
    color: rgb(255, 255, 255);
    font-weight: 100;
}

.section-1-content {
    height: 77vh;
    position: relative;
    align-items: center;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.178);
}

.section-1-content .left {
    font-family: nue2;
    font-size: 1.80em;
    font-weight: bold;
    margin-top: 22.5vw;
    line-height: 3.7vh;
    letter-spacing: -0.5px;
    width: 22vw;
}

.section-1-content .right {
    font-family: nue2;
    font-size: 10.5em;
    font-weight: 500;
    line-height: .8;
    text-align: right;
    margin-top: 4vw;
    letter-spacing: -.03em;
}

.video {
    height: 100%;
    width: 100%;
    margin-top: 3vw;
    border-radius: 15px;
    position: relative;
}

.hero-parent {
    height: 35vw;
    width: 45vw;
    background-color: transparent;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    position: absolute;
    right: 0;
    top: 79vh;
}

.hero-1 {
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, #ff0000, #ff6600);
    border-radius: 50%;
    position: absolute;
    filter: blur(20px);
    animation-name: hero-1;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;

}

.hero-2 {
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, #ff0000, #ff6600);
    border-radius: 50%;
    position: absolute;
    filter: blur(20px);
    animation-name: hero-2;
    animation-duration: 5s;
    animation-timing-function: inherit;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.hero-3 {
    width: 100%;
    height: 80%;
    background: linear-gradient(to top, #ff0000, #ff6600);
    border-radius: 50%;
    border-top-right-radius: 0;
    position: absolute;
    filter: blur(20px);
    animation-name: hero-3;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.menu-overlay {
    display: none;
}

/* Animation For Hero Shapes */

@keyframes hero-1 {
    from {
        transform: translate(10%, 10%);
    }

    to {
        transform: translate(-10%, -10%);
    }
}

@keyframes hero-2 {
    from {
        transform: translate(-10%, 10%);
    }

    to {
        transform: translate(10%, -10%);
    }
}

@keyframes hero-3 {
    from {
        transform: translate(10%, -10%);
    }

    to {
        transform: translate(-10%, 10%);
    }
}

@media (max-width: 500px) {

    .menu-overlay {
        height: 100vh;
        width: 430px;
        background-color: #0000006e;
        position: absolute;
        z-index: 99;
        overflow: hidden;
        top: -100%;
        transition: all ease-in-out 1.5s;
        display: initial;
    }
    .menu-overlay .menu-content {
        width: 430px;
        height: 36.5vh;
        background-color: #EFEAE3;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        padding-top: 13vh;
        padding-right: 2vh;
    }
    .menu-content .menu-links {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        position: relative;
        font-size: 3vh;
        line-height: 6.5vh;
        letter-spacing: -2px;
    }
    .menu-links h1 a {
        color: #000000;
        font-family: nue2;
        text-transform: uppercase;
        list-style: none;
        text-decoration: none;
        font-weight: 900;
    }
    .section-1 {
        padding: 0 4vw;
    }
    .navbar {
        height: 9.5vh;
        width: 108.5%;
        align-items: flex-end;
        position: relative;
        z-index: 100;
        margin: 0 -3.8vw;
        padding: 0 4vw;
    }
    .navbar .logo {
        height: 65px;
        transition: all ease-in-out 0.3s;
        transition-delay: 0.6s;
    }
    .nav-links h4 {
        display: none;
    }
    .nav-links .menu {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        width: 11.8vh;
        height: 4.8vh;
        font-size: 1.7vh;
        margin-bottom: 1vh;
    }
    .nav-links .menu li {
        width: 2vh;
    }
    .section-1-content {
        height: 49vh;
        align-items: center;
        height: 46vh;
        padding-top: 2.8vh;
    }
    .section-1-content .left {
        font-size: 2.3vh;
        line-height: 2.3vh;
        position: absolute;
        width: 30.5vh;
        margin-top: 25vh;
        
    }
    .section-1-content .right {
        font-size: 6.8vh;
        margin-bottom: 17vh;
        position: absolute;
        right: 0;
    }
    .video {
        height: 54%;
        width: 92%;
        object-fit: cover;
        background-size: cover;
        position: absolute;
        margin-top: 4vh;
    }
    .hero-parent {
        height: 35vh;
        width: 35vh;
        margin-top: -25vh;
    }
}




/* Page 2 */

.section-2 {
    min-height: 100vh;
    width: 100%;
    overflow: visible;
    background-color: #EFEAE3;
    padding-top: 8vw;
    pointer-events: all;
}

.scrolling-text {
    white-space: nowrap;
    padding-top: 8vw;
    overflow-x: auto;
    padding: 0 2vw;
    z-index: 12;
}

.scrolling-text::-webkit-scrollbar {
    display: none;
}

.text-con {
    white-space: nowrap;
    display: inline-table;
    animation-name: text-scroller;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    z-index: 10;
}

.text-con h1 {
    font-family: nue2;
    font-size: 9vw;
    font-weight: 900;
    letter-spacing: -0.5vh;
    display: inline-block;
}

.text-con .circle {
    height: 5vw;
    width: 5vw;
    border-radius: 50%;
    margin: 1vw 2vw;
    background-color: #FE330B;
    display: inline-block;
}

/* Animation For Scrolling Text */

@keyframes text-scroller {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-100%);
    }
}

.section-2-content {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.section-2-content h1 {
    font-family: nue2;
    font-size: 4.4vw;
    line-height: 9vh;
    letter-spacing: -2px;
    font-weight: 600;
    width: 65.5vw;
    padding: 10vw 6vw;
    z-index: 9;
    background-color: transparent;
}

.section-2-content .right {
    display: flex;
    flex-direction: column;
    padding: 0 6vw;
    padding-top: 15vw;
    background-color: transparent;
    z-index: 5;
}

.section-2-content .right p {
    padding-top: 3vw;
    background-color: transparent;
    width: 18vw;
}

.section-2-content .right .img {
    width: 19vw;
    height: 14vw;
    background-color: black;
    border-radius: 15px;
}

.gooey-parent {
    width: 40vw;
    height: 40vw;
    background-color: transparent;
    border-radius: 50%;
    margin-top: -25vw;
    margin-left: 30vw;
    position: absolute;
    z-index: 4;
    align-items: center;
    display: flex;
}

.gooey-1 {
    width: 80%;
    height: 80%;
    background-color: #ff7b00;
    border-radius: 50%;
    position: absolute;
    animation-name: gooey-1;
    filter: blur(15px);
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.gooey-2 {
    width: 80%;
    height: 80%;
    background-color: #FE330B;
    border-radius: 50%;
    filter: blur(50px);
    animation-name: gooey-2;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    margin-top: 140px;
    margin-right: 170px;
}

/* Animation For Gooey Effect */

@keyframes gooey-1 {
    from {
        transform: translate(8%, -8%) skew(2deg);
    }

    to {
        transform: translate(-8%, 8%) skew(-11deg);
    }
}

@keyframes gooey-2 {
    from {
        transform: translate(8%, -8%) skew(2deg);
    }

    to {
        transform: translate(-8%, 8%) skew(-11deg);
    }
}


@media (max-width:500px) {
    .section-2 {
        padding-top: 14vh;
    }
    .text-con h1 {
        font-size: 5.5vh;
        letter-spacing: -1px;
    }
    .text-con .circle {
        height: 3vh;
        width: 3vh;
    }
    .section-2-content h1 {
        font-size: 3.2vh;
        line-height: 7vw;
        width: 45vh;
        letter-spacing: 0.05px;
        word-spacing: -1px;
        padding: 0 0 0 4vw ;
        margin-top: -7vh;
    }
    .section-2-content .right {
        padding: 0 4vw;
        margin-top: -25vh;
    }
    .section-2-content .right .img {
        width: 27vh;
        height: 18vh;
        border-radius: 8px;
    }
    .section-2-content .right p {
        width: 27vh;
        font-size: 14px;
        line-height: 4.5vw;
        padding-top: 3.7vh;
    }
    .gooey-parent {
        width: 38vh;
        height: 38vh;
        top: 17%;
        left: 0;
        margin-left: 20vh;
    }
}

/* Page 3 */

.section-3 {
    min-height: 100vh;
    width: 100%;
    background-color: #EFEAE3;
    margin-bottom: -9vw;
    padding-bottom: 9vw;
    padding-top: 15vw;
    pointer-events: all;
}

.projects-showcase {
    height: 8vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.123);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.projects-showcase::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #FF9831;
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease-in-out 0.2s;
    z-index: 8;
}

.projects-showcase:hover::after {
    top: 0;
}

.projects-showcase-image {
    display: none;
}

.projects-showcase .left {
    font-family: nue2;
    font-size: 3vw;
    background-color: transparent;
    position: relative;
    z-index: 9;
}

.projects-showcase .right {
    background-color: transparent;
}

.projects-showcase .right h4 {
    font-family: nue;
    font-size: 1vw;
    font-weight: lighter;
    text-align: right;
    background-color: transparent;
    position: relative;
    z-index: 9;
}

.projects-showcase .right .part-2 {
    color: rgba(0, 0, 0, 0.39);
}

/* Image For Projects-Showcase When Hover */

.fixed-image {
    height: 31vw;
    width: 25vw;
    border-radius: 25px;
    background-color: transparent;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 20%;
    display: none;
    background-size: cover;
    background-position: center;
}

.projects-button {
    width: 11vw;
    height: 2.9vw;
    border: 1px solid rgba(0, 0, 0, 0.193);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 4vw 2vw;
    position: relative;
    transition: all ease 0.4s;
    overflow: hidden;
}

.projects-button .fa-solid {
    font-size: 1.5vw;
    font-weight: 600;
    color: #000000;
    transform: rotate(90deg);
    position: relative;
    z-index: 99;
}

.projects-button h3 {
    font-family: nue;
    font-weight: 100;
    position: relative;
    z-index: 9;
    background-color: transparent;
}

.projects-button::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    position: absolute;
    border-radius: 50%;
    bottom: -100%;
    transition: all ease 0.4s;
}

.projects-button:hover::after {
    bottom: 0;
    border-radius: 0;
    width: 100%;
}

.projects-button:hover h3 {
    color: #EFEAE3;
}
.projects-button:hover .fa-solid {
    color: #EFEAE3;
}


@media (max-width:500px) {

    .section-3 {
        padding: 0 4vw;
        margin-top: -7vh;
        padding-top: 3vh;
    }
    .projects-showcase {
        width: 100%;
        height: 63vh;
        flex-direction: column;
        padding: 0 0;
        align-items: flex-start;
        margin-top: 5vh;
        border-bottom: none;
    }
    .fixed-image {
        display: none;
        background-image: none;
        scale: 0;
    }
    .projects-showcase::after {
        display: none;
    }
    .projects-showcase-image {
        width: 100%;
        height: 52.5vh;
        display: block;
        border-radius: 15px;
        background-position: center;
        background-size: cover;
    }
    .projects-showcase #pr1 {
        background-image: url(./utilities/image1.webp);
    }
    .projects-showcase #pr2 {
        background-image: url(./utilities/image2.webp);
    }
    .projects-showcase #pr3 {
        background-image: url(./utilities/image3.webp);
    }
    .projects-showcase #pr4 {
        background-image: url(./utilities/image4.webp);
    }
    .projects-showcase #pr5 {
        background-image: url(./utilities/image5.webp);
    }
    .projects-showcase #pr6 {
        background-image: url(./utilities/image6.webp);
    }
    .projects-showcase #pr7 {
        background-image: url(./utilities/image7.webp);
    }
    .projects-showcase .left {
        font-size: 3vh;
        margin-top: 3vw;
    }
    .projects-showcase .right h4  {
        text-align: left;
        font-size: 1.4vh;
    }
    .projects-showcase .right .part-2  {
        font-size: 1.4vh;
    }
    .projects-button {
        height: 4.5vh;
        width: 18vh;
        font-size: 1.6vh;
        margin-top: 5vh;
    }
    .projects-button .fa-solid {
        font-size: 2vh;
    }
}


/* Page 4 */

.section-4 {
    min-height: 200vh;
    width: 100%;
    background-color: #EFEAE3;
    pointer-events: all;
}

.section-4 .elements-container {
    height: 52vw;
    width: 96%;
    background-color: #0B0500;
    margin: 8.5vw 2vw;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
}

.elements-container #right {
    height: 100%;
    width: 55%;
    background-color: transparent;
    border-radius: 25px;
    background-image: url(./utilities/bgimage1.webp);
    background-size: cover;
    background-attachment: fixed;
    transform: translate3d(0px, 1%, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.elements-container .left {
    background-color: transparent;
    height: 100%;
    min-width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 8vw 0;
}

.elements-container .left .text-buttons {
    width: 22vw;
    height: 14vw;
    background-color: transparent;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.elements-container .left .text-buttons::after {
    content: "";
    height: 100%;
    width: 1%;
    background-color: #504A45;
    position: absolute;
}

.elements-container .left p {
    font-family: nue;
    background-color: transparent;
    font-size: 2.2vh;
    color: #EFEAE3;
    text-align: left;
    height: 23vh;
    width: 45.5vh;
    position: static;
    transform: translate3d(0px, 1%, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    transform-style: preserve-3d;
}

.text-buttons h1 {
    font-size: 4.5vw;
    background-color: transparent;
    font-family: nue2;
    font-weight: 900;
    line-height: 1.05;
    text-align: left;
    cursor: pointer;
    margin-left: 1.5vw;
}

.text-buttons .hello1 {
    color: white;
}

.text-buttons .hello2, .hello3 {
    color: #504A45;
}

.text-buttons .line {
    height: calc(100% / 3);
    width: 1.1%;
    background-color: #FE330B;
    position: absolute;
    z-index: 99;
    top: 0;
}

.work-text {
    padding: 1vh 6vw;
    display: flex;
    align-items: center;
}

.work-text .dot {
    height: 1.2vh;
    width: 1.2vh;
    background-color: #FE330B;
    border-radius: 0.75vh;
}

.work-text p {
    font-family: nue;
    font-size: 1vw;
    margin-left: 1vh;
    white-space: nowrap;
}

.swiper-parent {
    height: 43vh;
    width: 150vw;
    margin-top: 5vw;
    display: flex;
    flex-direction: x;
    align-items: flex-start;
    overflow-x: scroll;
    padding: 0 6vw;
    position: relative;
    white-space: nowrap;
    user-select: none;
    z-index: 99;
}

.swiper-parent::-webkit-scrollbar {
    display: none;
}

#sliders {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 2vw;
    margin-right: 8vw;
    z-index: 9;
    position: relative;
}

.slider-1,
.slider-2,
.slider-3,
.slider-4,
.slider-5,
.slider-6 {
    border-left: 1.5px solid #0000002c;
}

.slider-7 {
    border-left: none;
    
}
.slider-7 p {
    color: black;
}

#sliders img {
    width: 11em;
    height: 100%;
    position: relative; 
    top: 0;
    left: 0;
}

#sliders p {
    font-family: nue;
    font-size: 2.2vh;
    font-weight: 400;
    line-height: 1.4;
    width: 17vw;
    min-height: 10vw;
    margin-top: 2vw;
    position: relative;
}

@media (max-width:500px) {
    .section-4 {
        padding-top: 6.5vh;
        min-height: 148vh;
    }
    .section-4 .elements-container {
        height: 85vh;
        width: 92%;
        flex-direction: column;
        margin-left: 2vh;
        border-radius: 20px;

    }
    .elements-container #right {
        width: 91%;
        border-radius: 15px;
    }
    .elements-container .left {
        padding-top: 5.5vh;
        
    }
    .elements-container .left .text-buttons {
        height: 14vh;
        margin-right: 21.5vh;
    }
    .text-buttons h1 {
        font-size: 4.5vh;
        padding-left: 1vh;
    }
    .text-buttons .line {
        width: 3%;
    }
    .elements-container .left .text-buttons::after {
        width: 3.5%;
    }
    .elements-container .left p {
        font-size: 3vw;
        width: 63vw;
        padding-top: 6vh;
    }
    .work-text {
        padding: 3vh 4vw;
    }
    .work-text .dot {
        height: 1.7vw;
        width: 1.7vw;
    }
    .work-text p {
        font-size: 1.5vh;
        margin-left: 0.7vh;

    }
    .swiper-parent {
        height: 65vw;
        width: 150vh;
        padding: 0 4vw;
        margin-top: 3.5vh;
        overflow-x: auto;
    }
    #sliders {
        padding-left: 2vh;
        margin-right: 14vh;
        
    }
    #sliders img {
        width: 8.5em;
    }
    #sliders p {
        font-size: 3.2vw;
        margin-top: 2vh;
    }
}

/* Page 5 For Spacing To Show Footer */

.section-5 {
    width: 100%;
    height: 100vh;
    z-index: -9;
    background-color: transparent;
    overflow: hidden;
    position: static;
    /* margin-bottom: 100vw; */
}

@media (max-width:500px) {
    .section-5 {
        height: 65vh;
        
    }
}

/* Footer */

.footer {
    height: 100vh;
    width: 100vw;
    padding: 8.5vw 6vw;
    background-color: #000000;
    bottom: 0;
    position: fixed;
    z-index: 9;

}

.footer-shape1,
.footer-shape2 {
    height: 43em;
    width: 100%;
    background-color: #FE330B;
    position: absolute;
    top: -50%;
    left: 0;
    z-index: 9;
}

.footer-shape1 {
    transform: rotate(-25deg);
    left: -30%;
    top: -53%;
    filter: blur(40px);
    animation-name: footershape1;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: all ease-in-out;
}

.footer-shape2 {
    transform: rotate(35deg);
    left: 30%;
    top: -30%;
    filter: blur(40px);
    animation-name: footershape2;
    animation-duration: 3s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: all ease-in-out;
}

.footer .footer-content {
    display: flex;
    align-items: start;
    justify-content: space-between;
    position: relative;
    z-index: 99;
}

.footer-links h1 {
    cursor: pointer;
}

.footer-links h1 a:hover {
    color: #F4B5A3;
}

.footer-links a {
    color: #EFEAE3;
    list-style: none;
    text-decoration: none;
    font-size: 2.1vw;
    font-family: nue2;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: -.01vh;
    transition: all ease .1s;
}

.footer-email {
    margin-right: 1vw;
    border-bottom: 0.5px solid #F4B5A3;
}

.footer-email p {
    font-size: 1.3vw;
    color: #EFEAE3;
    width: 20vw;
}

.footer-email input {
    position: relative;
    margin-top: 3vw;
    width: 100%;
    height: 2vw;
    font-size: 1vw;
    color: white;
    border: none;
    background-color: transparent;
    padding-bottom: 1vw;
    outline: none;
}

.company-name {
    color: #EFEAE3;
    height: 50%;
    border-bottom: 0.1vh solid #EFEAE3;
    font-size: 22.8vw;
    margin-left: -3.9vw;
    font-family: nue2;
    position: absolute;
    cursor: default;
    margin-top: 2.5vw;
}

.footer-bottom {
    height: 10vw;
    width: 100%;
    font-size: 1.2vh;
    font-weight: 100;
    font-family: nue;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    margin-bottom: -2.6vw;
    padding-left: 4vw;
    margin-left: -8vw;
}

.footer-bottom h1 {
    color: #EFEAE3;
    font-weight: 400;
    font-size: 1.1vw;
    overflow: hidden;
}

.footer-bottom div a {
    font-size: 1.1vw;
    color: #EFEAE3;
    text-decoration: none;
    list-style: none;
    cursor: pointer;
}

.footer-bottom div {
    transition: all ease-in-out 0.3s;
}

.footer-bottom div:hover {
    border-bottom: 1px solid #EFEAE3;
}

@media (max-width:500px) {
    .footer {
        height: 65vh;
        padding: 8vh 4vw;
        overflow: hidden;
    }
    .footer-shape1,
    .footer-shape2 {
        height: 30em;
        width: 50em;
        filter: blur(50px);
    }
    .footer-shape1 {
        left: -50%;
    }
    .footer-shape2 {
        left: 30%;
        top: -20%;
    }
    .footer-bottom {
        display: none;
    }
    .company-name {
        display: none;
    }
    .footer-content {
        flex-direction: column;
    }
    .footer-links a {
        font-size: 3vh;
    }
    .footer-email {
        margin-right: 0;
        margin-top: 3vh;
    }
    .footer-email p {
        font-size: 2vh;
        width: 65%;
    }
    .footer-email input {
        font-size: 1.5vh;
        margin-top: 4.5vh;
        height: 5vh;
        padding-bottom: 0;
    }
    .slider-7 {
        width: 20vh;
        display: block;
    }
    .slider-7 p{
        width: 20vh;
    }
}



/* Animation For Footer Shapes */

@keyframes footershape1 {
    from {
        transform: rotate(-25deg) skew(-3deg);
    }

    to {
        transform: rotate(-5deg) skew(-10deg);
    }
}

@keyframes footershape2 {
    from {
        transform: rotate(35deg);
    }

    to {
        transform: rotate(15deg);
    }
}
