@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Outfit", sans-serif;
    scroll-behavior: smooth;
}

:root{
    --primary-color: #246BFD;
    --secondary-color: #1f2b38;
    --light-color: #bec7d4;
    --white-color: #ffffff;
    --black-color:#04000b;
    --black-light: #131414;
    --transition-fast: all .4s;
    --transition-slow: all .6s;
    --body-color: #000000;
}
body{
    background-color: var(--black-color);
}

/* custom css */
.btn{
    height: 60px;
    width: 240px;
    /* background-color: var(--white-color); */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 8px;
    position: relative;
    transition: var(--transition-slow);
    overflow: hidden;
    border: none;
    color: var(--white-color);
}
.btn a{
    color: var(--black-color);
    font-size: 18px;
    z-index: 1;
    transition: all 1000ms;
}

.btn i{
    font-size: 20px;
    font-weight: 800;
    color: var(--black-color);
    z-index: 1;
    transition: all 1000ms;
}

.btn::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 60%;
    height: 100%;
    width: 0;
    /* background-color: var(--primary-color); */
    transform: skewX(45deg) translate(-50%, -50%);
    z-index: 0;
    transition: width 1000ms;
}

.btn:hover::before{
    width: 250%;
    color: var(--white-color);
}



.btn:hover i,
.btn:hover a{
    color: var(--white-color);
}

Section{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 120px 12%;
    gap: 50px;
    position: relative;
    z-index: 9;
}

.section-title{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 9;
}
.section-title h2{
    color: var(--white-color);
    font-size: 3rem;
    text-align: center;
}
.section-image{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 9;
}
.section-image img{
    width: 100%;
    height: 100%;
} 


/* navbar */
.navbar{
    height: 80px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 10%;
    position: fixed;
    top: 0%;
    left: 0%;
    z-index: 999;
}
.logo h2{
    font-size: 2rem;
    font-weight: 500;
}
.logo h2 a{
    color: var(--white-color);
}
.logo h2 a span{
    color: var(--primary-color);
}
.menu{
    display: block;
    display: flex;
    align-items: center;
    gap: 30px;
}
.menu li{
    position: relative;
    padding: 10px 20px;
    z-index: 1;
}
.menu li a{
    font-size: 17px;
    color: var(--white-color);
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
}

.menu li::after{
    position: absolute;
    content: ' ';
    top: 0%;
    left: 0%;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    background-color: var(--primary-color);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-slow);
}

.menu li::before{
    position: absolute;
    content: ' ';
    top: 0%;
    right: 0%;
    width: 0%;
    height: 100%;
    border-radius: 30px;
    background-color: var(--primary-color);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-slow);
}

.menu li:hover::before{
    opacity: 1;
    width: 100%;
}
.menu li:hover::after{
    opacity: 1;
    width: 100%;
}

#toggle{
   color: var(--white-color);
   background-color: var(--primary-color);
   font-size: 30px;
   padding: 8px;
   border-radius: 8px;
   display: none;
}
.sidebar{
    display: none;

}

@media screen and (max-width:1000px) {
    #toggle{
        display: block;
    }
    .menu{
        display: none;
    }
    .sidebar{
        min-height: 100vh;
        display: block;
        position: absolute;
        top: 0%;
        left: -100%;width: 35%;
        background-color: var(--white-color);
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 30px;
        opacity: 0;
        z-index: 999;
        transition: var(--transition-slow);
    }
    .sidebar-logo{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 30px;
    }
    .sidebar-logo h2{
        font-size: 2rem;
    }
    .sidebar-logo h2 a{
        color: var(--secondary-color);
    }
    .sidebar-logo i{
        font-size: 1.5rem;
        font-weight: 700;
        z-index: 999;padding: 12px;
    }
    .sidebar-menu{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    .sidebar-menu li{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0px;
    }
    .sidebar-menu li a,
    .sidebar-menu li i{
        font-size: 1.2rem;
        color: var(--secondary-color);
        font-weight: 600;
    }
    .show-sidebar{
        left: 0%;
        opacity: 1;
    }
}




/* Button */
.btn {
    display: flex;
    align-items: center;
    background: var(--primary-color);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.btn a {
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
    margin-right: 8px;
}

.btn i {
    color: var(--white-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn:hover {
    background: var(--secondary-color);
}

.btn:hover i {
    transform: translateX(5px);
}

/* Dropdown Styling */
.dropdown {
    display: none;
    background: var(--black-light);
    padding: 16px;
    border-radius: 12px;
    position: absolute;
    width: 300px; /* Wider for better visibility */
    top: 80px; /* Positioned below button */
    right: 20px; /* Shifted to the right side of the screen */
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition-slow);
    border: 2px solid var(--primary-color); /* Border highlight */
    overflow: hidden;
    z-index: 999;
}

.dropdown h3 {
    text-align: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
}

.dropdown::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 30px;
    width: 16px;
    height: 16px;
    background: var(--black-light);
    transform: rotate(45deg);
    border-left: 2px solid var(--primary-color);
    border-top: 2px solid var(--primary-color);
}

.dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.dropdown label {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--white-color);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-fast);
    cursor: pointer;
    position: relative;
    border: 2px solid var(--light-color);
    margin-bottom: 10px;
}

.dropdown input[type="radio"] {
    display: none;
}

.dropdown span {
    position: relative;
    padding-left: 30px;
}

.dropdown span::before {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-color);
    border-radius: 50%;
    transition: var(--transition-fast);
}

/* Filled Circle when selected */
.dropdown input[type="radio"]:checked + span::before {
    border-color: var(--primary-color);
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-color);
}

/* Hover Effect */
.dropdown label:hover {
    background: var(--secondary-color);
    transform: scale(1.02);
    border-color: var(--primary-color);
}


/* hero */
.hero {
    min-height: 100vh;
    justify-content: center;
    align-items: flex-start;
}
.hero::after{
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 50%;
    height: 80%;
    background: url(Image/Hero_bg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    z-index: 1;
}

.hero-title {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;
    position: relative;
    z-index: 9;
}

.hero::before{
    content:'' ;
    position: absolute;
    top: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    z-index: 0;
    background: #00ffaa;
    border-radius: 50%;
    filter: blur(180px);
}


.hero-title h1 {
    color: var(--white-color);
    font-size: 4rem;
    line-height: 4.8rem;
    font-weight: 700;
    /* text-align: center; */
    padding-bottom: 0px;
   

}

.hero-title h1 span {
    color: var(--primary-color);
}

.hero-title p {
    color: var(--light-color);
    width: 75%;
    font-size: 1rem;
    line-height: 1.5rem;
    padding-left: 10%;
    font-weight: 400;
}

.reviews-box {
    position: absolute;
    bottom: 5%;
    right: 7%;
    display: flex;
    flex-direction: column;
    padding: 40px 25px;
    width: 40%;
    gap: 20px;
    background: linear-gradient(112.1deg, rgba(32, 38, 57) 11.4%, rgb(18 18 17) 70.2%);
    border-radius: 8px;
}

.review-image {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.review-image img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: -12px;
    
}

.review-image span {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background-color: var(--black-color);
   color: var(--white-color);
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 1rem;
   font-weight: 500;
}

.rate {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--light-color);
    /* padding-bottom: 20px; */
}

.rate i {
    font-size: 1.5rem;
    color: #ffb10a;
}
.rate span{
    font-size: 1.4rem;
    color: var(--white-color);
    font-weight: 600;
}
.reviews-info{
    display: flex;
    flex-direction: column;
    color: var(--white-color);
}

.reviews-info h4 {
    font-size: 1.3rem;
    padding-bottom: 15px;
}

.reviews-info p {
    color: var(--light-color);
    font-size: 1.2rem;
}
/* about section */

.about{
    background-color: var(--black-light);
    width: 90%;
    margin: auto;
}

.about::after{
    content:'' ;
    position: absolute;
    top: 0%;
    right: 0%;
    background-image: url(Image/about_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 85%;
    height: 100%;
}
.bio-wrap{
    width: 100%;
    columns: 200px;
}
.bio-image{
    break-inside: avoid;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 20px;
    transition: .5;
    user-select: none;
    overflow: hidden;
}
.bio-image:hover img{
    transform: scale(1.1);
}

.bio-image img{
    height: auto;
    border-radius: 8px;
    min-width: 100%;
    transition: var(--transition-slow);
}
.about-title p{
    font-size: 1.1rem;
    color: var(--light-color);  
    line-height: 2rem;
}
.about-title button{
    background-color: var(--primary-color);
    font-size: 1.3rem;
}
.about-title button::before{
    background-color: var(--white-color);
}
.about-title button a{
    color: var(--white-color);

}
.about-title button:hover a{
    color: var(--black-color);
}

/* featuress section */

.features{
    flex-direction: column;
}
.features-title{
    margin: auto;

}
.feature-wrap{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: center;
    place-content: center;
    gap: 30px;
}
.feature-item{
    color: var(--white-color);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 10px;
    z-index: 1;
}
.feature-item::after{
    position: absolute;
    content:'';
    left: -2px;
    top: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(112.1deg, rgb(32, 38,57) 11.4%, rgb(98 103 114) 70.2%);
    z-index: -1;
    border-radius: 10px;
    transition: all .35s ease-in-out;
}
.feature-content{
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    flex-direction: column ;
    align-items: start;
    padding: 50px;
    border-radius: 10px;
    gap: 30px;
    color: var(--white-color);
   
}
.feature-top{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.feature-top img{
    width: 10%;
}
.feature-top h4{
    font-size: 1.2rem;
    font-weight: 600;
}
.feature-content p{
    font: size 1.1rem;
    line-height: 1.8rem;
    font-weight: 500;
    color: var(--light-color);
}

.feature-content ul{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}
.feature-content ul li{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: var(--transition-fast);
}
.feature-content ul li:hover{
    color: var(--black-color);
    background-color: var(--white-color);
}


/* marquee */

.scroll-text span{
    font-size: 5rem;
    font-weight: 500;
    margin: 0px 80px;
    color:var(--primary-color);
    position: relative;
    transition: var(--transition-slow);
}

.scroll-text span:hover{
    color: var(--white-color);
    cursor: pointer;
}
.scroll-text span:nth-of-type(even){
    text-decoration: underline;
}
.scroll-text span::after{
    content: '';
    position: absolute;
    top:35%;
    right: -120px;
    background: url(Image/star.png);
    filter: brightness(0) invert(1);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 100px;
    width: 100px;
}

/* banner */
.banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    perspective: 1000px; /* Enables 3D depth effect */
}

.banner-container {
    width: 45%;
    min-height: 300px;
    background: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
    cursor: pointer;
    padding: 50px; /* Keeps your original padding */
}

/* Flip effect on hover */
.banner-container:hover {
    transform: rotateY(180deg);
}

/* Front & Back sides */
.banner-container .front,
.banner-container .back {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
    border-radius: 12px;
}

/* Styling the front */
.banner-container .front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white-color);
}

/* Back Side */
.banner-container .back {
    background: var(--primary-color);
    color: var(--white-color);
    transform: rotateY(180deg);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.banner-container h4 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-container h5 {
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 8px;
}

.process-overview{
    align-items: start;
    gap: 130px;
}
.process-overview-title{
    width: 30%;
}
.process-overview-title h2{
    text-align: left;
}
.process-overview-wrap{
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: flex-start;
    place-content: center;
    gap: 50px;
}
.process-overview-item{
    width: 100%;display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    position: relative;
    color: var(--white-color);
}
.process-overview-item ::after{
    position: absolute;
    left: 10%;
    right: -18%;
    content: '';
    height: 3px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    top: 24px;
    z-index: -1;
}
.process-overview-item span{
    background-color: #d8e7ef;
    color: var(--black-color);
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 30px;
}
.process-overview-item h4{
    font-size: 1.5rem;
    font-weight: 700;
    padding-bottom: 20px;
    text-transform: capitalize;
}
.process-overview-item p{
    font-size: 1rem;
    color: var(--light-color);
    line-height: 1.5rem;
}

/* lanch-gixus */
.lanch-gixus{
    flex-direction: column;
    min-height: 500px;
    background-image: url(Image/Launch_Gixus_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position:relative;
}
.lanch-gixus::before{
    position: absolute;
    content: '';
    left: 0%;
    bottom: 0;
    height: 30%;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) repeat scroll 0 0;
    z-index: -1;
}
.lanch-gixus::after{
    position: absolute;
    content: '';
    left: 0%;
    top: 0;
    height: 30%;
    width: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%) repeat scroll 0 0;
    z-index: -1;
}
.lanch-gixus-title{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px;
    gap: 0;
}
.lanch-gixus-title h1{
    text-transform: uppercase;
    font-size: 105px;
    display: inline-block;
    margin: 0;
    position: relative;
    bottom: 45px;
    background: linear-gradient(0deg, rgb(39 36 37)0%, rgb(255 255 255) 50%);
    -webkit-text-fill-color:transparent ;
    -webkit-background-clip: text;
    background-clip: text;
    -moz-background-clip: text;
}

.icon{
    display: block;
    position: relative;
    border-radius: 50%;
    height: 150px;width: 150px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right top, #051937, #1448b4, #008793, #a8eb12);
    border: 1px solid rgba(255, 255, 255,.6);
    
}
.icon img{
    height: 100%;width: 100%;
}
.icon:before{
    position: absolute;
    left: -50px;
    top: -50px;
    right: -50px;
    bottom: -50px;
    background: linear-gradient(112.1deg, rgba(255, 255, 255,.1) 11.4%, rgba(255, 255, 255,.3) 70.2%);
    content: '';
    z-index: -1;
    border-radius:50% ;
    border: 1px solid rgba(255, 255, 255,.5);
}
.icon::after{
    position: absolute;
    left: -20px;
    top: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(112.1deg, rgba(255, 255, 255,.1) 11.4%, rgba(255, 255, 255,.3) 70.2%);
    content: '';
    z-index: -1;
    border-radius:50% ;
    border: 1px solid rgba(255, 255, 255,.5)2
}

/* our team members */

.teams{
    flex-direction: column;
    gap: 50px;
    background-image: url(Image/team-bg.webp);
    background-position: center center;
    background-size: cover;
    position: relative;
}

.teams-title{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.teams-title h2{
    width: 50%;
    font-size: 3.5rem;
    line-height: 4rem;
    font-weight: 600;
    color: var(--white-color);
}
.teams-swiper{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}
.teamSwiper{
    width: 100%;
}



/* 9.55   at 30 media quey of about    at 40.46 of features ,  48.15*/
@media screen and (max-width: 1000px){
    #toggle{
        display: block;
    }
    .menu{
        display: none;
    }
    
    .sidebar{
        min-height: 100vh;
        display: block;
        position: absolute;
        top: 0%;
        left: 0%;
        width: 35%;
        background-color: var(---white-color);
        display: flex;
        flex-direction: column;
        align-items: start;
        padding: 30px;
        /* opacity: 0; */
        z-index: 999;
        transition: var(--transition-slow);
    }
    .sidebar-logo{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 30px;
    }
    /* .sidebar-logo h2{
        font-size: 2rem;
    }
    .sidebar-logo h2 a{
        color: var(--secondary-color);
    }
    .sidebar-logo i{
        font-size: 1.5rem;
        font-weight: 700;
        z-index: 999;
        padding: 12px;
    } */    
}

/*sticky*/
.sticky{
    background-color: #00000025;
    backdrop-filter: blur(50px);
    transition: var(--transition-slow);
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

/*Blog Section*/
.Blog {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 5%;
}

.Blog_title {
    margin-bottom: 40px;
    text-align: center;
}

.Blog_Wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    place-items: center;
}

/* Blog Card Styling */
.Blog_Item {
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--black-color);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.Blog_Item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.Blog_Image {
    width: 100%;
    position: relative;
}

.Blog_Item img {
    width: 100%;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

.Blog_Item:hover img {
    transform: scale(1.05);
}

/* Blog Meta (Category + Date) */
.Blog_Meta {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    gap: 12px;
}

.Blog_Meta li {
    list-style: none;
}

.Blog_Meta li span {
    color: var(--white-color);
    font-weight: 500;
}

/* Blog Content */
.Blog_Content {
    padding: 20px;
    text-align: left;
    color: var(--white-color);
}
.Blog_title h2{
    color: var(--white-color);
    font-size: 3rem;
    text-align: center;
    margin: auto;
} 
.Blog_Content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.Blog_Content button {
    display: flex;
    align-items: center;
    background: transparent;
    border: 2px solid var(--light-color);  /* Added border */
    border-radius: 8px;  /* Rounded edges */
    padding: 8px 14px;  /* Proper spacing */
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.Blog_Content button a {
    color: var(--light-color);
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 600;
}

.Blog_Content button i {
    color: var(--light-color);
    font-size: 1.2rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

/* Hover Effect */
.Blog_Content button:hover {
    background: var(--light-color);
    color: var(--black-color);
}

.Blog_Content button:hover a,
.Blog_Content button:hover i {
    color: var(--black-color);
}

.Blog_Content button:hover i {
    transform: translateX(5px);
}

/*Footer*/
footer{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 120px 12%;
    padding-bottom: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
}
.Footer_Top{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    gap: 50px;
    color: var(--white-color);
}
.Footer_left{
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: start;
    position: relative;
    gap: 30px;
}
.Footer_left::after{
    content: '';
    position: absolute;
    right: 0;
    top:-120px;
    height: 192%;
    width: 2%;
    border-radius: 1px solid rgba(255, 255, 255, .15);
    z-index:-1;
    border-radius: 30px;
}
.Footer_left li p{
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--light-color);
    padding-bottom: 5px;
}
.Footer_left li h4{
    color: var(--white-color);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 2rem;
}
.Footer_right{
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items:center;
    place-content: center;
}
.Footer_Col{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}
.Footer_Col h4{
    font-size: 1.5rem;
    color: var(--white-color);
    font-weight: 700;
    padding-bottom: 20px;
}
.Footer_Col ul li{
    font-size: 1rem;
    padding: 20px 0;
    color: var(--light-color);
    font-weight: 500;
    transition: var(--transition-slow);
}
.Footer_Col ul li:hover{
    color: var(--primary-color);
}
.Footer_Col:nth-child(3){
    background-color: #273545;
    padding: 30px;
}
.Footer_Col p{
    font-size: 1rem;
    line-height: 1.5rem;
    padding-bottom: 30px;
}
.Input_Box{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.Input_Box input{
    width: 100%;
    height: 50px;
    border-radius: 30px;
    border: none;
    padding-left: 10px;
    font-size: 1rem;
}
.Input_Box i{
    position: absolute;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 1rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    right: 5px;
    top: 5px;
}
.Footer_Bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
}
.Footer_Bottom p{
    font-size: 1rem;
    color: var(--white-color);
}
.Footer_Bottom p span{
    color: var(--primary-color);
    font-weight: 600;
}
.Footer_Bottom ul{
    display: flex;
    align-items: start;
    gap: 30px;
}
.Footer_Bottom ul li{
    font-size: 1rem;
    color: var(--white-color);
}
@media screen and (max-width: 768px) {
    .Footer_right{
        grid-template-columns: repeat(1,1fr);
        gap: 30px;
    }
    .Footer_Bottom{
        flex-direction: column;
        gap: 20px;
    }
}
@media screen and (max-width:1200px){
    .Footer_Top{
        flex-direction: column;
    }
    .Footer_left{
        flex-direction: column;
    }
    .Footer_left::after{
        border-right: 0;
    }
    .Footer_right{
        width: 100%;
    }
}