* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: gilroy;
}

@font-face {    
    font-family: gilroy;
    src: url(src/Fonts/Gilroy-Regular.ttf);
}

@font-face {
    font-family: gilroy-bold;
    src: url(src/Fonts/Gilroy-Bold.ttf);
}

html,
body {
    width: 100%;
    height: 100%;
    color: white;
    background-color: #111111;
}

/* Navbar */
#navbar {
    position: fixed;
    overflow: hidden;
    width: 100%;
    padding: 1.5vw 6vw 0 6vw;
    color: white;
    background-color: #111111;
    z-index: 1;
    
}

#nav-inner {
    position: relative;
    width: 100%;
    border-bottom: 0.5px solid white;
    padding: 0 0 1.5vw 0;
}

#nav-inner-two {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

#nav-logo-con {
    margin-top: 15px;
}

#nav-logo-con img {
    width: 115px;
    height: 14.5px;
}

#nav-options-con {
    margin-top: 3px;
    display: flex;
    align-items: start;
    gap: 2vw;
    margin-top: 15px;
}

#nav-options-con>h4 {
    cursor: pointer;
    text-transform: uppercase;
    font-size: .85vw;
    transition: all ease-out 0.35s;

}

#nav-options-con>h4:hover {
    opacity: 50%;
}

#navbar #dropdown-options-con {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
}

#dropdown-options-con .nav-option {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nav-option>h4 {
    cursor: default;
    transition: all ease-out 0.35s;
}

.nav-option:hover .main-nav-opt {
    opacity: 50%;
}

#navbar #dropdown-options-con h4 {
    text-transform: uppercase;
    font-size: .85vw;
}

.sub-options {
    height: 0;
    transition: all ease 0.5s;
}

.sub-options h4 {
    margin-top: 18px;
    overflow: hidden;
}

.sub-options h4 span {
    transition: all ease-out 0.35s;
    display: inline-block;
}

.sub-options h4 span:hover {
    opacity: 50%;
    cursor: pointer;
}

.sub-options h4:first-child {
    margin-top: 22px;
}

#nav-btn {
    height: 6.5vh;
    width: 10vw;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
    text-decoration: none;
}

#nav-btn #green-bg {
    background-color: #0da34e;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 20px;
    transition: width .8s cubic-bezier(.16, 1, .32, 1);
}

#nav-btn #elem-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1vw;
    gap: 1.8vw;
}

#nav-btn #elem-btn h3 {
    font-size: 1vw;
    color: white;
}

#nav-btn #elem-btn img {
    width: 1vw;
}

#nav-btn:hover #green-bg {
    width: 39px;
    border-radius: 20px;
}

#nav-btn>img {
    width: 15px;
}

/* Hero Section */

#hero-section {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 93vh;
    transform: translateY(10vh);

}

#hero-section>h1 {
    line-height: 9vw;
    text-transform: uppercase;
    font-family: gilroy-bold;
    font-size: 9vw;
    font-weight: 900;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hero-section>h1>span {
    display: inline-flex;
    width: 6.4vw;
    height: 6.4vw;
    justify-content: center;
    align-items: center;
}

#hero-section>h1>span>span {
    display: inline-flex;
    border-radius: 50%;
    background-color: #0da34e;
    width: 6.4vw;
    height: 6.4vw;
    justify-content: center;
    align-items: center;
    transition: all .6s cubic-bezier(.16, 1, .32, 1);
}

#hero-section h1 img {
    height: 6.4vw;
    transition: all 1.2s cubic-bezier(.16, 1, .32, 1);
}

#hero-section>h1>span:hover span {
    width: 5vw;
    height: 5vw;
}

#hero-section>h1>span:hover img {
    transform: rotate(-30deg);
}

#hero-bottom {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 10px;
}

#hero-bottom #para {
    line-height: 1.7vw;
    text-align: center;
    font-size: 1.2vw;
    font-weight: 400;
}

#hero-bottom #dis-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: lowercase;
    font-size: 1.2vw;
    gap: 2px;
}

#hero-section #dis-btn span {
    padding: 5px 10px;
    border: 1px solid white;
    border-radius: 20px;
}

/* Brand Scroller */

#brand-scroller {
    width: 50%;
    white-space: nowrap;
    padding: 2vw;
    overflow: hidden;
    position: relative;
    transform: translateX(49%);
    padding: 10vh 0 20vh 0;
}

#brand-scroller .imgs-con {
    gap: 2.5vw;
    display: inline-block;
    animation: hzScroll 10s linear infinite;
    margin-left: -4px;
}

#brand-scroller .imgs-con img {
    width: 3.5vw;
    height: 5.5vh;
    margin: 0 1vw;
}

@keyframes hzScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

#scroller-blur-left {
    height: 100%;
    width: 15%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(90deg, #111 0%, rgba(17, 17, 17, 0.00) 100%);
}

#scroller-blur-right {
    height: 100%;
    width: 15%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(270deg, #111 0%, rgba(17, 17, 17, 0.00) 100%);
}

/* Insights Section */

#insights-section {
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 0 6vw;
    padding-bottom: 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
}

#insights-left {
    height: 100%;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 3vw 0;
}

#insights-left p {
    font-size: 1vw;
    font-weight: 600;
}

#insights-left h5 {
    font-size: 1.15vw;
    font-weight: 600;
    width: 70%;
}

#insights-right {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
}

.right-elem {
    position: relative;
    height: inherit;
    border-bottom: 1px solid #333;
    padding-top: 2vw;
    cursor: pointer;
}

.right-elem .right-elem-text {
    display: flex;
    justify-content: space-between;
    align-items: start;

    h3 {
        width: 67%;
        font-weight: 600;
    }

    div {
        display: flex;
        gap: 1vw;

        p {
            font-size: 1vw;
            opacity: 40%;
        }

        a {
            text-decoration: none;

            i{
                color: white;
            opacity: 40%;

            }
        }
    }
}

.right-elem img {
    height: 7vw;
    width: 7vw;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

/* Showreel Section */

#showreel-section {
    height: 100vh;
    width: 100%;
    position: relative;
    background-image: url('/src/images/imgs/showreel-img.webp');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

#showreel-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
}


#showreel-center #play-icon-con {
    height: 11vw;
    width: 11vw;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#showreel-center #play-icon-con i {
    font-size: 3vw;
    color: black;
}

#showreel-center h5 {
    font-size: .85vw;
    text-transform: uppercase;
    background-color: white;
    color: black;
    font-weight: 900;
    padding: .3vw .9vw;
    border-radius: 10px;
    opacity: 0;
    transition: all 0.5s ease;
    transform: translateY(12%);
}

#showreel-center:hover h5 {
    opacity: 1;
    transform: translateY(0);
}

#showreel-section video {
    height: 150%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    transform: scaleX(0.7) scaleY(0);
    border-radius: 30px;
    z-index: 9999999999;
}

/* Stories Section */

#stories-section {
    height: 100vh;
    width: 100%;
    position: relative;
    padding: 6vw;
    background: white;
    color: black;

}

#stories-inner {
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

#stories-left {
    width: 50%;
}

#stories-left h2 {
    width: 60%;
    font-size: 3vw;
    font-weight: 900;
}

#stories-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 50%;
}

#stories-right .stories-right-dis {
    display: flex;
    flex-direction: column;
    gap: 2.5vw;
}

.stories-right-dis p {
    font-size: .9vw;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 50%;
}

.stories-right-dis h5 {
    font-size: 1.5vw;
    font-weight: 600;
    color: #333;
}


/* Figures Section */

#figures-section {
    color: black;
    background-color: white;
    height: 100vh;
    width: 100%;
    padding: 3vw 6vw;
    border-top: 1px solid #c5c5c5;
    border-bottom: 1px solid #c5c5c5;
}

#figures-inner {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    grid-template-rows: 50% 50%;
    gap: 1vw;
    /* margin: 5vw 0; */
}

.figures-elem {
    background-color: #f5f5f5;
    padding: 2vw;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}


.figures-elem h2 {
    font-size: 4vw;
    font-weight: 500;
}

.figures-dis {
    display: flex;
    flex-direction: column;
    gap: 8vw;
}

.figures-dis p:first-child {
    font-size: .9vw;
    font-weight: 600;
    color: #333;
}

.figures-dis p:last-child {
    font-size: .95vw;
    font-weight: 600;
    color: #333;
    opacity: 50%;
}

/* Discrioption Section */

#discription-section {
    height: 50vh;
    width: 100%;
    padding: 2vw 6vw;
    background: white;
    color: black;
    border-bottom: #c5c5c5 1px solid;
}

#discription-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: end;
}

#discription-inner div {
    width: 70%;
}

#discription-inner div h2 {
    width: 15vw;
    height: 5vw;
    float: left;
    font-size: 0.9vw;
}

#discription-inner div p {
    font-size: 2.4vw;
}

/* Case Studies */
#case-studies {
    min-height: 100vh;
    width: 100%;
    background-color: white;
    color: black;
    padding: 2vw 6vw;
    position: relative;
}

#case-studies-inner {
    display: flex;
    flex-direction: column;
}

#big-case-con {
    display: flex;
    flex-direction: column;
}

.big-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.big-section-left {
    height: 80vh;
    width: 25%;
    border-top: 2px solid #dfdfdf;
    padding: 1vw 0;
    display: flex;
    flex-direction: column;
    gap: 5vw;
    transition: all ease 0.5s;
}

.big-section-left:hover {
    border-top: 2px solid black;

}

.big-section-left>div:first-child {
    display: flex;
    align-items: center;
    gap: 1.5vw;
}

.big-section-left>div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.big-section-left>div:last-child img {
    width: 24px;
}

.big-section-left>div:last-child p {
    font-size: 1.2vw;
    font-weight: 600;
    opacity: 80%;
}

.big-section-left h2 {
    font-size: 2.5vw;
    font-weight: 500;

}

.big-section-right {
    height: 80vh;
    width: 70%;
    background-color: blanchedalmond;
    position: relative;
}

.big-section-right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.big-section-right video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity ease 0.3s;
}

#small-case-con {
    width: 100%;
    display: flex;
    justify-content: end;
}

#small-case-con-inner {
    width: 70%;
    display: flex;
    justify-content: space-between;
}

.small-section {
    height: 80vh;
    width: 46%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 2px solid #dfdfdf;
    padding: 1vw 0;
    transition: all ease 0.5s;

}


.small-section:hover {
    border-top: 2px solid black;

}

.small-section div:first-child {
    display: flex;
    align-items: center;
    gap: 2vw;
}

.small-section div:first-child h2 {
    font-size: 2.5vw;
    font-weight: 500;
}

.small-section div:last-child {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
}

.small-section p {
    margin-top: 3vw;
    font-size: 1.2vw;
    font-weight: 600;
    opacity: 80%;
    position: absolute;
    top: 0;
    transition: all 0.5s ease;
}

.small-sec-media {
    height: 60% !important;
    transition: all 0.5s ease;
}

.small-sec-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.small-sec-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity ease 0.3s;
}


.small-section:hover .small-sec-media {
    height: 100% !important;

}

.small-section:hover p {
    opacity: 0;
}





#services-section-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#services-top {
    width: 100%;
    height: 65vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#services-top h2 {
    font-size: 4.3vw;
    font-weight: 900;
    margin-left: 4.8vw;
}


#services-section hr {
    border: 1px solid #202020;
    width: 87.8%;
}



#services-bottom {
    min-height: 100vh;
    background-color: #111;
    width: 100%;
    position: relative;
    padding: 15vh 6vw;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

}

#services-bottom-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #333;

}

#client-btn {
    text-transform: uppercase;
    background-color: #0BA34E;
    padding: 1.2vw 3.9vw;
    font-weight: 600;
    font-size: 1vw;
    border-radius: 50px;
    border: none;
    position: sticky;
    top: 20%;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 1vw;
    z-index: 10000;

    i {
        font-size: 1.4vw;
    }
}

#ser-btm-rt {
    width: 70%;
}

#ser-btm-rt>p {
    font-size: 2.1vw;
}

#ser-btm-rt>p span {
    /* background-color: red; */
    width: 15vw;
    display: inline-block;
}

#ser-btm-rt-btm {
    width: 100%;
    /* background-color: red; */
    margin-top: 5vh;
    padding: 5vh 0;
}

#ser-btm-rt-btm h1 {
    font-size: 3vw;
    font-weight: 500;
}

#ser-btm-rt-btm .summaey-points {
    display: flex;
    margin: 4vh 0;

}

#ser-btm-rt-btm .summaey-points h4 {
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid #fff;
    padding: 5px 20px;
    font-weight: 600;
    font-size: 0.8vw;
    letter-spacing: 1px;
    margin: 0 .5vw 0 0;


}

.content-elems {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    padding-top: 6vh;
    padding-bottom: 12vh;
    overflow: hidden;
    border-top: 1px solid #333;
    position: relative;
}

.content-elems p {
    width: 55%;
    font-size: 0.8vw;
    position: relative;
    z-index: 8;
}

.content-elems h3 {
    font-size: 1.6vw;
    font-weight: 400;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    z-index: 8;
}

.content-elems i {
    font-size: 1vw;
    position: relative;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
    z-index: 8;
}

.over {
    height: 100%;
    width: 100%;
    background-color: #222;
    position: absolute;
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
    /* display: none; */
    transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.content-elems:hover h3 {
    padding-left: 1vw;

}

.content-elems:hover i {
    padding-right: 1vw;
}

.content-elems:hover .over {
    transform: translateY(0);
    /* display: initial; */
    opacity: 1;
}

.content-elems:hover {
    border-top: 2px solid #fff;
}



summary::marker {
    content: "";
}

#uiux {
    border-top: 1px solid #333;
    padding: 3vh 0;
}

#product {
    padding: 3vh 0;
    border-top: 1px solid #333;
}




#expertise-section {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5vw;
}


#expertise-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2vw;
    align-items: center;
    text-align: center;
}

#expertise-top h2 {
    width: 15vw;
    height: 5vw;
    font-size: 1vw;
}

#expertise-top p {
    font-size: 2.4vw;
    width: 70%;
}


#expertise-bottom {
    height: 80vh;
    width: 100%;
    padding: 0 6vw;
}

#expertise-bottom-inner {
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: .9vw;
}

.field-elems {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5vw;
    cursor: pointer;
    background-color: #1f1f1f;
}

.field-elems p {
    font-size: 0.9vw;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.field-top {
    display: flex;
    justify-content: space-between;
}

.field-top h4 {
    font-size: 1.6vw;

}

.field-top i {
    font-size: 2vw;
}

#lets-talk-btn {
    width: 11.5vw;
    height: 11.5vw;
    position: relative;
    cursor: pointer;
    margin-bottom: 5vw;

}

#lets-talk-btn #bg-green {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #0BA34E;
    border-radius: 50%;
    z-index: -1;
    transition: all cubic-bezier(0.19, 1, 0.22, 1) .9s;

}

#lets-talk-btn i {
    position: absolute;
    right: 20%;
    top: 15%;
}

#lets-talk-btn h5 {
    font-size: 1vw;
    position: absolute;
    bottom: 22%;
    left: 20%;
}

#lets-talk-btn:hover #bg-green {
    scale: 1.1;
}

#workflow-section {
    color: black;
    background-color: white;
    padding: 0 6vw;
}

#workflow-top {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


#workflow-heading {
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: white;
    border-bottom: 1px solid #c5c5c5;
}

#workflow-heading h2 {
    font-size: 4.3vw;
    font-weight: 900;
    margin-right: 5.4vw;
}



#workflow-mid {
    min-height: 100vh;
    color: black;
    background-color: white;
    width: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10vw;

}

#workflow-mid-inner {
    padding: 10vh 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #c5c5c5;

}

#client-btn2 {
    text-transform: uppercase;
    color: white;
    background-color: #4f5bff;
    padding: 1.2vw 3.9vw;
    font-weight: 600;
    font-size: 1vw;
    border-radius: 50px;
    border: none;
    position: sticky;
    top: 20%;
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 1vw;

    i {
        font-size: 1.4vw;
    }
}

#workflow-min-para {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 10vw;
}

#workflow-min-para p {
    font-size: 1.5vw;
    width: 70%;
    font-weight: 600;
}


#page6-bottom {
    height: 44vh;
    width: 100%;
    border-top: 1px solid #dadada;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: white;
}

#btm6-part1 {
    border-right: 1px solid #dadada;
    width: 30%;
    height: 100%;
}

#btm6-part2 {
    border-right: 1px solid #dadada;
    width: 28%;
    height: 100%;
}

#btm6-part3 {
    border-right: 1px solid #dadada;
    width: 15%;
    height: 100%;
}

#btm6-part4 {
    border-right: 1px solid #dadada;
    width: 20%;
    height: 100%;
}

#btm6-part5 {

    width: 15%;
    height: 100%;
}

.btm6-parts {
    padding: 3vh 0.6vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btm6-parts h5 {
    color: #000;
    font-weight: 500;
    font-size: 0.9vw;
    margin-bottom: 4vh;
}

.btm6-parts h4 {
    background-color: #111;
    width: 85%;
    padding: 5px 10px;
    margin-bottom: 0.3vh;
    border-radius: 50px;
    font-size: 0.85vw;
    display: flex;
    align-items: center;
    font-weight: 500;

}

.btm6-parts h4 span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5vw;
    height: 1.5vw;
    background-color: #333;
    padding: 0.5vw;
    border-radius: 50%;
    margin-right: 1vw;
}


#btm6-part2 h4:nth-child(2) {
    transform: translateX(0);
}

#btm6-part2 h4:nth-child(3) {
    transform: translateX(10%);
}

#btm6-part2 h4:nth-child(4) {
    transform: translateX(20%);
}

#btm6-part2 h4:nth-child(5) {
    transform: translateX(30%);
}

#btm6-part2 h4:nth-child(6) {
    transform: translateX(40%);
}

#btm6-part2 h4:nth-child(7) {
    transform: translateX(50%);
}


#btm6-part3 h4:nth-child(2) {
    transform: translateX(0);
}

#btm6-part3 h4:nth-child(3) {
    transform: translateX(15%);
}



#btm6-part4 h4:nth-child(2) {
    transform: translateX(0);
}

#btm6-part4 h4:nth-child(3) {
    transform: translateX(15%);
}

#btm6-part4 h4:nth-child(4) {
    transform: translateX(30%);
}



#contact-section {
    height: 70vh;
    width: 100%;
    padding: 6vw;
}

#contact-section hr{
   margin-top: 4vw;
   border: 1px solid #222222;
}

#contact-inner {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#contact-left {
    width: 35%;
    height: 100%;
}

#contact-left h2 {
    font-size: 4.5vw;
    line-height: 4.5vw;
    font-weight: 900;
}

#contact-right {
    width: 32%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


#contact-right #input {
    width: 100%;
    height: 3vw;
    display: flex;
    align-items: center;

}


#input div {
    width: 100%;
    height: 100%;
    position: relative;
}


#input div:focus-within label {
    transform: translateY(-100%);
    font-size: 0.85vw;
    /* color: #0BA34E; */
}

#input div:focus-within input {
    border-bottom: 1px solid #0BA34E;

}

#input div label {
    position: absolute;
    font-size: 1.3vw;
    font-weight: 600;
    transition: all 0.4s ease;
    /* top: -60%; */

}

#input div input {
    width: 97%;
    height: 100%;
    background-color: #111111;
    border: none;
    outline: none;
    color: white;
    transition: all 0.4s ease;
    border-bottom: 1px solid #333;
}

#input i {
    background-color: #1c1c1c;
    padding: 1vw;
    border-radius: 50%;
    cursor: pointer;
}

#contact-right .social {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}


#contact-right .social h5 {
    font-size: 0.8vw;
    opacity: 60%;
    letter-spacing: 0.7px;
}

#contact-right .social div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-self: start;
    gap: 0.5vw;
}

#contact-right .social div p {

    font-size: 0.8vw;
    letter-spacing: 0.7px;
    font-weight: 600;
    border: white solid 1px;
    padding: .5vw 1vw;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    transition: all 0.3s ease-in-out; 
    cursor: pointer;
}

#contact-right .social div p:hover {

    border: black solid 1px;
    color: black;
    background: white;
}





/* Footer Section */

#footer-section {
    height: 75vh;
    width: 100%;
    padding: 1vw 6vw;
}

#footer-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1vw;
}

#footer-top {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: space-between;
    gap: 1vw;
}

#footer-top-left {
    width: 30%;
    display: flex;
    justify-content: space-between;

}

#footer-top-left .footer-option {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;

}

.footer-option .footer-sub-options {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}


#footer-top-left .footer-option>h4 {
    opacity: 40%;
}

#footer-top-left .footer-option h4 {
    cursor: pointer;
    text-transform: uppercase;
    font-size: .85vw;
    transition: all ease-out 0.35s;
}

#footer-top-left .footer-option h4:hover {
    opacity: 60%;
}

#footer-top-right {
    width: 32%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#location {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

#location h5 {
    font-size: 0.8vw;
    opacity: 60%;
    letter-spacing: 0.7px;
}


#location h3 {
    font-size: 2.4vw;
}

#page-links {
    height: 30%;
    width: 80%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5vw;
}

#page-links a {
    text-decoration: none;
    color: white;
    font-size: 1vw;
    font-weight: 600;
    transition: all 0.3s ease-in-out;

}

#page-links a:hover {
 opacity: 70% !important;

}


#page-links div {
   width: 4px;
   height: 4px;
   background-color: white;
   border-radius: 50%;

}


#footer-bottom {
    height: 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;

    font-size: 0.9vw;
    font-weight: 600;
}

#footer-bottom-right {
    width: 32%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}