@font-face {
    font-family: 'roboto';
    src: url('../fonts/Roboto/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;  
    font-style: normal;  
}
@font-face {
    font-family: 'poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: normal; 
    font-style: normal;  
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 12px;
    color: #666;
    font-family: 'roboto';
    font-family: 'poppins';
}
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    font-family: Arial, sans-serif;
     display: none;
}
#cookie-popup {
    display: none;
}
.cookie-content {
    max-height: 300px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cookie-content.expanded {
    max-height: 1000px;
}

.cookie-content .additional-info {
    display: none;
}

.cookie-content.expanded .additional-info {
    display: block;
}

.cookie-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.cookie-buttons button {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#accept-all {
    background-color: #4CAF50;
    color: white;
}

#reject-all {
    background-color: #f44336;
    color: white;
}

#manage-preferences {
    background-color: #2196F3;
    color: white;
}

.read-more {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
    margin-left: 5px;
}

 
header{
    width: 100%;
    height: 60px;
    padding-left:10px ;
    padding-right:10px ;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header .content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin-left: 5%;
}
.logo{
    width: 10%;
    /* border: 1px solid red; */
}
.logo img{
    width: 100%;
}
nav{
    width: 50%;
    border-left: 1px solid red;
    border-right: 1px solid red;
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}
nav a {
    text-transform: capitalize;
    color: #fff;
    padding:5px;
    transition: .2s ease-in-out;
}
nav a:hover{
    color: red;
    border-bottom: 1px solid red;
}
.end_btn{
    width: 10%;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    /* border: 1px solid red; */
    height: auto;
    max-height: 60px;
}
.search-container {
    position: relative;
    display: inline-block;
}

.search-form {
    position: absolute;
    top: 110%;
    left: -350px;
    width: 400px;
    padding: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: flex;
    z-index: 2;
}
.search-form .input_group{
    width: 100%;
}
.end_btn button{
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 5px;
    cursor: pointer;
    transition: .2s ease-in-out;
}
.end_btn button:hover{
    background: red;
}
/* Container for positioning */
.container {
    position: relative;
}

/* Sidebar styling */
.sidebar {
    position: fixed;
    top: 0;
    left: -20%; /* Hidden off-screen */
    width: 20%;
    height: 100%;
    background-color: #000000;
    color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: left 0.3s ease; /* Slide-in animation */
    z-index: 1000;
    border-right: 2px solid #fff;
}

/* Show sidebar when active */
.sidebar.active {
    left: 0;
}

/* Profile section */
.profile {
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    height: 80px;
    align-items: center;
    margin-top: 20px;
    /* border: 1px solid red; */
}

.profile-pic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.profile_details{
    margin-left: 20px;
}
.profile-name {
    font-size: 1.2em;
    margin: 5px 0;
    color: #bbb;
}

.profile-email {
    font-size: 0.9em;
    color: #bbb;
}

/* Auth buttons */
.auth-buttons {
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
}

.auth-buttons button {
    width: 100%;
    padding: 10px;
    background-color: #555;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s;
}

.auth-buttons button:hover {
    background-color: #777;
}
fieldset{
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid #00172d;
}
fieldset legend{
    padding: 10px 30px;
    /* width: 50%; */
    /* text-align: center; */
    border-radius: 5px;
    border: 1px solid #00172d;
    text-transform: uppercase;
    color: #fff;
}
fieldset a{
    /* border: 1px solid red; */
    display: flex;
    margin-top: 5px;
}
.topic_tab{
    /* border: 1px solid red; */
    width: 100%;
    display: flex;
    padding: 10px;
    border-radius: 6px;
    background-color: #00172d;

}
.topic_tab p{
    margin-left: 10px;
    color: #fff;
    text-transform: capitalize;
}
.topic_tab:hover p{
    color: red;
}
/* ---------------------BANNER STYLING---------------------------------- */
.banner{
    width: 90%;
    margin-left: 5%;
    background-color: #f6f6f6;
    border-radius: 5px;
    display: flex;
    align-items: center;
    height: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 15px;
}
.banner .breaking_news{
    width: 10%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 2px solid #000;
}
.banner .breaking_news p{
    color: red;
    font-weight: 900;
}
.banner .path{
    width: 90%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner marquee{
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 30px;
}
.banner marquee .separator{
    width: 2px;
    height: 10px;
    /* margin-top: 5px; */
    background-color: red;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;    
}
/* ------------------------------top_main------------------------------------- */
.top_main{
    display: flex;
    width: 90%;
    margin-left: 5%;
    gap: 10px;
    height: 63vh;
}
.main_st{
    position: relative;
    width: 65%;
    /* border: 1px solid red; */

}
.main_st img{
    width: 90%;
    margin-left: 5%;
    height: 100%;
    border-radius: 10px;
}
.main_st .details{
    position:absolute;
    bottom: -60px;
    padding: 15px;
    width: 80%;
    height: 120px;
    left: 0;
    background-color: #f6f6f680;
    border-radius: 10px;
}
.date_posted{
    font-weight: 700;
    color: #000;
    margin-top: 10px;
}
.small_st{
    width: 35%;
    display: flex;
    /* border: 1px solid red; */
    flex-direction: column;
}
.story_tab_a{
    padding: 2px;
    height:auto;
    transition: .2s ease-in-out;
    border-radius: 10px;
    /* border: 1px solid red; */
}
.story_tab_a h3{
    font-size: 14px;
}
.story_tab_a:hover h3{
    color: red;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.main_mr_st_a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65%;
    height: auto;
}
.main_mr_st_a:hover ,.story_tab_a:hover{
    background-color: #f6f6f6;
}
.story_tab{
    display: flex;
    width: 100%;
    height: 14vh;
    gap: 10px;
    margin: 3px;
}
.story_tab img{
    width: 80px;
    height: 80px;
    border-radius: 10px;
}

/* ---------------------------------------------------writer----------------------------------- */
.writer{
    /* border: 1px solid red; */
    display: flex;
    height: auto;
    padding: 1px;
    align-items: center;
    margin-bottom: 7px;
}
.writer img{
    width: 28px;
    height: 28px;
    margin-right: 10px;
    border-radius: 50%;
}
.wname{
    font-weight: 700;
    color: #000;
    font-size: 12px;
    text-transform: capitalize;
}
.dot{
    width: 2px;
    height: 2px;
    background-color: #666;
    border-radius: 50%;
    margin: 5px;
}
.postedtime{
    font-size: 10px;
    color: #c7c7c7;
}
/* ----------------------------------h2---------------------- */
h2{
    color: #00172d;
    font-weight: 700;
    font-size: 22px;
}
h3{
    color: #00172d;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 7px;
}
/* -------------------------detail_para--------------------------- */
.detail_para{
    font-size: 12px;
    margin-bottom: 10px;
    font-style: italic;
}
.detail_para a{
    color: #00172d;
    font-weight: 900;
    margin-left: 10px;
}

/* ----------------------pflex-------------------------category line edit--------------------------- */
.pflex{
    display: flex;
    /* border: 1px solid red; */
}
.category{
    color: red;
    font-weight: 700;
}



/* ----------------------------------------------storycontainer------------------------------------------- */
.storycontainer{
    width: 90%;
    margin-left: 5%;
    /* border: 1px solid red; */
    margin-top: 10px;
}

.sec_title{
    display: flex;
    height: 80px;
    padding: 10px;
    /* border: 1px solid red; */
    align-items: center;
    justify-content: space-between;
}
.scp{
    font-size: 30px;
    text-transform: capitalize;
    color: #00172d;
    font-weight: 800;
}
.sec_title a{
    font-size: 14px;
    color: red;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    transition: .2s ease-in-out;
}
.sec_title a:hover{
    /* text-decoration: underline; */
    background-color: #f6f6f6;
    color: red;
}
/* --------------------------------------mr_str------------------------------- */
.mr_str{
    width: 90%;
    margin-bottom: 50px;
    margin-left: 5%;
}
.main_mr_st{
    width: 100%;
    height: 100%;
    padding: 10px;
    /* border: 1px solid red; */
}
 
.mr_str_flex{
    display: flex;
    height: 45vh;
}
.main_mr_st_img{
    width: 100%;
    height: 25vh;
    border-radius: 10px;
}
/* -----------------display_style_div---------------------------------------- */
.display_style_div{
    display: grid;
    gap: 10px;
    grid-template-columns: auto auto auto auto auto;
}


/* -------------------------storycard ------------------ */
.storycard{
    width: 100%;
    max-width: 100%;
    /* max-height: 300px; */
    padding: 10px;
    border-radius: 10px;
}
.storycard img.storycardimg{
    width: 100%;
    border-radius: 10px;
    height: 200px;
    /* height: 100%; */
}

/* --------------------------top_creators----------------------------------- */
.top_creators{
    width: 90%;
    margin-left: 5%;
    /* border: 1px solid red; */
}
.creator_tab{
    display: flex;
    height: 70px;
    margin: 5px;
}
.creator_tab img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
}
.creator_details{
    display: flex;
    margin-left: 10px;
    flex-direction: column;
    justify-content: center;    
}
.creator_name{
    font-size: 18px;
    color: #00172d;
    font-weight: 700;
    margin-bottom: 5px;
}
footer{
    background-color: #f6f6f6;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}
.footer_top{
    margin-top:30px;
    width: 90%;
    margin-left: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.subscribe{
    width: 30%;
    /* border: 1px solid red; */
    height: 100%;
}
.subscribe_form{
    display: flex;
    margin-top: 15px;
    /* border: 1px solid red; */
    align-items: center;
    justify-content: space-between;
}
.input_group{
    width: 75%;
    border: 1px solid #ddd;
    overflow: hidden;
    border-radius: 5px;
    height: 40px;
    display: flex;
    align-items: center;
}
.input_group input{
    width: 90%;
    height: 40px;
    border: none;
    padding: 10px;
    background-color: #f6f6f6;
}
.input_group input:focus{
    outline: none;
}
.input_group .icon{
    width: 10%;
    height: 35px;
    border: none;
    background-color: #f6f6f6;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}
.subscribe_form button{
    background-color: red;
    color: #fff;
    border: none;
    border-radius: 5px;
    height: 40px;
    padding: 10px;
    cursor: pointer;
}
.s_title{
    font-size: 30px;
    color: #00172d;
}
.links{
    width: 50%;
    height: auto;
    display: flex;
    /* border: 1px solid red; */
}
.links_wholetab{
    width: 25%;
    /* border: 1px solid red; */
}
.other_links{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}
.links_title{
    color: #00172d;
    font-size: 18px;
    font-weight: 800;
}
.other_links a{
    margin-top: 7px;
    font-size: 14px;
    transition: .2s ease-in-out;
    text-transform: capitalize;
}
.footer_bottom{
    border-top: 2px solid #ddd;
    margin-top:30px;
    width: 90%;
    margin-left: 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 30px;
}
.ab_c_links{
    width: 40%;
    /* border: 1px solid red; */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.other_links a:hover ,.ab_c_links a:hover{
    color: red;
    text-decoration: underline;
    letter-spacing: .05rem;
    text-underline-offset: 5px;

}
/* Loader styles */
.loader {
    position: fixed; /* Fixed position to cover the entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    z-index: 9999; /* Ensure it appears on top of everything */
}

.progress-bar {
    width: 0; /* Start with 0 width */
    height: 10px; /* Height of the progress bar */
    background:linear-gradient(45deg , black, #cc0202); /* Color of the progress bar */
    transition: width 3s; /* Animate width change over 3 seconds */
    border-radius: 10px;
}

.loading-gif {
    position: absolute; /* Position it absolutely within the loader */
    top: 25%; /* Adjust this value to position it above the progress bar */
    width: 150px; /* Adjust the size of the GIF */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
}
@media only screen and (max-width: 900px) {
    header{
        width: 100%;
        height: 60px;
        padding-left:10px ;
        padding-right:10px ;
        background-color: #000;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    header .content{
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-left: 0%;
    }
    .logo{
        width: 40%;
        /* border: 1px solid red; */
    }
    .logo h1{
        font-size: 30px;
        color: #fff;
    }
    .logo h1 span{
        font-size: 30px;
        color: red;
    }
    nav{
        display: none;
    }
    nav a {
        text-transform: capitalize;
        color: #fff;
        transition: .2s ease-in-out;
    }
    nav a:hover{
        color: red;
        border-bottom: 1px solid red;
    }
    .end_btn{
        width: 10%;
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        /* border: 1px solid red; */
        height: auto;
        max-height: 60px;
    }
    .search-container {
        position: relative;
        display: inline-block;
    }
    
    .search-form {
        position: absolute;
        top: 110%;
        left: -350px;
        width: 400px;
        padding: 10px;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 4px;
        display: flex;
        z-index: 2;
    }
    .search-form .input_group{
        width: 100%;
    }
    .end_btn button{
        background: none;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 5px;
        cursor: pointer;
        transition: .2s ease-in-out;
    }
    .end_btn button:hover{
        background: red;
    }
    /* Container for positioning */
    .container {
        position: relative;
    }
    
    /* Sidebar styling */
    .sidebar {
        position: fixed;
        top: 0;
        left: -60%; /* Hidden off-screen */
        width: 60%;
        height: 100%;
        background-color: #000000;
        color: white;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        padding: 20px;
        transition: left 0.3s ease; /* Slide-in animation */
        z-index: 1000;
        border-right: 2px solid #fff;
    }
    /* ---------------------BANNER STYLING---------------------------------- */
    .banner{
        width: 98%;
        margin-left: 1%;
        background-color: #f6f6f6;
        border-radius: 5px;
        display: flex;
        align-items: center;
        height: 50px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 15px;
    }
    .banner .breaking_news{
        width: 30%;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-right: 2px solid #000;
    }
    .banner .breaking_news p{
        color: red;
        font-weight: 900;
    }
    .banner .path{
        width: 90%;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .banner marquee{
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        height: 30px;
    }
    .banner marquee .separator{
        width: 2px;
        height: 10px;
        /* margin-top: 5px; */
        background-color: red;
        display: inline-block;
        margin-left: 10px;
        margin-right: 10px;    
    }
    /* ------------------------------top_main------------------------------------- */
    .top_main{
        display: flex;
        flex-direction: column;
        width: 98%;
        margin-left: 1%;
        gap: 10px;
        height: 100%;
    }
    .main_st{
        position: relative;
        width: 100%;
        height: 50dvh;
        /* border: 1px solid red; */
    
    }
    .main_st img{
        width: 90%;
        margin-left: 5%;
        height: 100%;
        border-radius: 10px;
    }
    .main_st .details{
        position:absolute;
        top: 40%;
        padding: 15px;
        width: 250px;
        height: 50%;
        left: 0;
        background-color: #f6f6f6;
        border-radius: 10px;
    }
    .date_posted{
        font-weight: 700;
        color: #000;
        margin-top: 10px;
    }
    .small_st{
        width: 100%;
        display: flex;
        /* border: 1px solid red; */
        flex-direction: column;
    }
    .story_tab_a{
        padding: 2px;
        transition: .2s ease-in-out;
        border-radius: 10px;
        /* border: 1px solid red; */
    }
    .story_tab_a:hover h3{
        color: red;
        text-decoration: underline;
        text-underline-offset: 3px;
    }
    .main_mr_st_a{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 65%;
        height: auto;
    }
    .main_mr_st_a:hover ,.story_tab_a:hover{
        background-color: #f6f6f6;
    }
    .story_tab{
        display: flex;
        width: 100%;
        height: 14vh;
        gap: 10px;
        margin: 3px;
    }
    .story_tab img{
        width: 100px;
        height: 100px;
        border-radius: 10px;
    }
    
    /* ---------------------------------------------------writer----------------------------------- */
    .writer{
        /* border: 1px solid red; */
        display: flex;
        height: 30px;
        padding: 1px;
        align-items: center;
        margin-bottom: 7px;
    }
    .writer img{
        width: 28px;
        height: 28px;
        margin-right: 10px;
        border-radius: 50%;
    }
    .wname{
        font-weight: 700;
        color: #000;
        font-size: 14px;
        text-transform: capitalize;
    }
    .dot{
        width: 4px;
        height: 4px;
        background-color: #666;
        border-radius: 50%;
        margin: 5px;
    }
    .postedtime{
        font-size: 10px;
        color: #c7c7c7;
    }
    /* ----------------------------------h2---------------------- */
    h2{
        color: #00172d;
        font-weight: 700;
        font-size: 22px;
    }
    h3{
        color: #00172d;
        font-weight: 700;
        font-size: 18px;
        line-height: 18px;
        margin-bottom: 7px;
    }
    /* -------------------------detail_para--------------------------- */
    .detail_para{
        font-size: 12px;
        margin-bottom: 10px;
        font-style: italic;
    }
    .detail_para a{
        color: #00172d;
        font-weight: 900;
        margin-left: 10px;
    }
    
    /* ----------------------pflex-------------------------category line edit--------------------------- */
    .pflex{
        display: flex;
        /* border: 1px solid red; */
    }
    .category{
        color: red;
        font-weight: 700;
    }
    
    
    
    /* ----------------------------------------------storycontainer------------------------------------------- */
    .storycontainer{
        width: 98%;
        margin-left: 1%;
        /* border: 1px solid red; */
        margin-top: 10px;
    }
    
    .sec_title{
        display: flex;
        height: 80px;
        padding: 10px;
        /* border: 1px solid red; */
        align-items: center;
        justify-content: space-between;
    }
    .scp{
        font-size: 30px;
        text-transform: capitalize;
        color: #00172d;
        font-weight: 800;
    }
    .sec_title a{
        font-size: 14px;
        color: red;
        font-weight: 700;
        padding: 10px 20px;
        border-radius: 10px;
        transition: .2s ease-in-out;
    }
    .sec_title a:hover{
        /* text-decoration: underline; */
        background-color: #f6f6f6;
        color: red;
    }
    /* --------------------------------------mr_str------------------------------- */
    .mr_str{
        width: 98%;
        margin-bottom: 50px;
        margin-left: 1%;
    }
    .main_mr_st_a{
        width: 100%;
        /* border: 1px solid red; */
    }
    .main_mr_st{
        width: 100%;
        height: 100%;
        padding: 10px;
        /* border: 1px solid red; */
    }
     
    .mr_str_flex{
        display: flex;
        height: auto;
        flex-direction: column;
    }
    .main_mr_st_img{
        width: 100%;
        height: 25vh;
        border-radius: 10px;
    }
    /* -----------------display_style_div---------------------------------------- */
    .display_style_div{
        display: grid;
        gap: 10px;
        grid-template-columns: auto auto ;
    }
    
    
    /* -------------------------storycard ------------------ */
    .storycard{
        width: 100%;
        max-width: 100%;
        padding: 10px;
        border-radius: 10px;
        border-bottom: 2px dotted red;
    }
    .storycard img.storycardimg{
        width: 100%;
        border-radius: 10px;
        height: 100%;
    }
    
    /* --------------------------top_creators----------------------------------- */
    .top_creators{
        width: 90%;
        margin-left: 5%;
    }
    .creator_tab{
        display: flex;
        height: 70px;
        margin: 5px;
    }
    .creator_tab img{
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }
    .creator_details{
        display: flex;
        margin-left: 10px;
        flex-direction: column;
        justify-content: center;    
    }
    .creator_name{
        font-size: 18px;
        color: #00172d;
        font-weight: 700;
        margin-bottom: 5px;
    }
    footer{
        background-color: #f6f6f6;
        margin-top: 50px;
        display: flex;
        flex-direction: column;
    }
    .footer_top{
        margin-top:30px;
        width: 90%;
        margin-left: 5%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
    }
    .subscribe{
        width: 100%;
        /* border: 1px solid red; */
        height: 100%;
    }
    .subscribe_form{
        display: flex;
        margin-top: 15px;
        /* border: 1px solid red; */
        align-items: center;
        justify-content: space-between;
    }
    .input_group{
        width: 75%;
        border: 1px solid #ddd;
        overflow: hidden;
        border-radius: 5px;
        height: 40px;
        display: flex;
        align-items: center;
    }
    .input_group input{
        width: 90%;
        height: 40px;
        border: none;
        padding: 10px;
        background-color: #f6f6f6;
    }
    .input_group input:focus{
        outline: none;
    }
    .input_group .icon{
        width: 10%;
        height: 35px;
        border: none;
        background-color: #f6f6f6;
        border-right: 1px solid #ddd;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .subscribe_form button{
        background-color: red;
        color: #fff;
        border: none;
        border-radius: 5px;
        height: 40px;
        padding: 10px;
        cursor: pointer;
    }
    .s_title{
        font-size: 30px;
        color: #00172d;
    }
    .links{
        width: 100%;
        margin-top: 20px;
        height: auto;
        display: grid;
        grid-template-columns: auto auto;
        flex-direction: column;
        /* border: 1px solid red; */
    }
    .links_wholetab{
        width: 100%;
        /* border: 1px solid red; */
    }
    .other_links{
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }
    .links_title{
        color: #00172d;
        font-size: 18px;
        font-weight: 800;
    }
    .other_links a{
        margin-top: 7px;
        font-size: 14px;
        transition: .2s ease-in-out;
        text-transform: capitalize;
    }
    .footer_bottom{
        border-top: 2px solid #ddd;
        margin-top:30px;
        width: 90%;
        margin-left: 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column-reverse;
        padding-top: 20px;
        padding-bottom: 30px;
    }
    .ab_c_links{
        width: 100%;
        /* border: 1px solid red; */
        height: 40px;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .other_links a:hover ,.ab_c_links a:hover{
        color: red;
        text-decoration: underline;
        letter-spacing: .05rem;
        text-underline-offset: 5px;
    
    }
}

 