/* ==== Google fonts ==== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url("https://fonts.googleapis.com/css?family=Poppins:400,400i,700");

/* ==== CSS Variables ==== */
:root {
    --primary-color:#00006f;
    --secondary-color: #ffb907;
    --other-color: #ac7c03;
    --dark-color: #00116f;
}



/* ==== Global Style ==== */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img{
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

/* ==== Utilities Style ==== */
@media (min-width: 976px) {
    .container {
        max-width: 1200px;
    }
}

/*==== Header ==== */
.primary-header{
    background-color: var(--primary-color);
}

.logo img{
    height: 82px;
}

.btn_secondary{
    color: var(--primary-color);
    background-color: var(--secondary-color);
}

.btn_secondary:hover{
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.dark-help .btn{
    color: var(--primary-color);
    background-color: #fff;
    margin-right: 16px;
}

.dark-help .btn:hover{
    background-color: #ccc;
}

/* ==== Nav Bar ==== */
.primary-nav{
    margin-top: 1px;
    background-color: var(--dark-color);
}

.navbar-toggler{
    border: 2px solid #ffb907;
    color: var(--secondary-color);
    font-size: 24px;
}

.nav-link{
    color: var(--secondary-color);
    font-size: 16px;
}

.nav-link:hover{
    color: var(--secondary-color);
    background-color: rgba(255, 185, 7, 0.1);
}

@media (max-width:991px) {
    .nav-fill .nav-item{
    text-align: left;
}

}
.dropdown:hover > .dropdown-menu {
    display: block !important; 
}



/* ==== Banner ==== */
.back-image1{
    position: relative;
    width: 100%;
    height: 70px;
    margin-top: 8px;
    display: flex;
    color: var(--primary-color);
    font-size: 40px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 3;
    background-color: #fff;
}
.back-image1::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    z-index: -1;
}
.back-image1 .btn{
    color: var(--secondary-color);
    background-color: var(--primary-color);
}
.back-image1 .btn:hover{
    background-color: rgba(255, 185, 7, 0.3);
    color: var(--dark-color);
}
.back-image2{
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    color: var(--primary-color);
    margin-top: 8px;
    font-size: 40px;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 3;
    background-color: #fff;
}
.back-image2::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    z-index: -1;
}
.back-image2 .btn{
    color: var(--secondary-color);
    background-color: var(--primary-color);
}
.back-image2 .btn:hover{
    background-color: rgba(255, 185, 7, 0.3);
    color: var(--dark-color);
}


/* ==== Blinking ==== */
.caption-content-block{
    margin-top: 16px ;
    background-color: var(--primary-color); 
    text-align: center;
    font-size: 16px;
}
.caption-content{
    border-color:#000;
}
.blinking{
    background: #ffc;
}

/* ==== Guidelines ==== */
/* .guidelines{
    display: grid;
    grid-template-columns: 2fr 3.5fr 0.5fr;
    grid-gap: 2rem;
    background: var(--secondary-color);
    justify-content: space-between;
    padding: 8px;
    margin: 8px 0;
    margin-bottom: 32px;
}
.enter{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}
.enter:hover{
    background-color: var(--dark-color);
    color: var(--other-color);
}
@media (max-width: 991px) {
    .guidelines{
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 1rem;
    }
    .enter{
        display: block;
        max-width: 70px;
        text-align: center;
        padding: 8px;
    }
}
 */




.card{
    position: relative;
    overflow: hidden;
    border-radius: 0.6rem;
    height: 34rem;
}

.card_header{
    position: relative;
    height: 34rem;
    overflow: hidden;
    padding: 4rem;
}

.card-image{
    position: absolute;
    width: 100%;
    height: 350px;
    top: 0;
    left: 0;
}

.card_header::before{
    content: " ";
    position: absolute;
    width: 100%;
    height: 300%;
    top: 0;
    left: 0;
    background-image: linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4));
    z-index: 2;
}

.blog-details{
    position: relative;
    z-index: 5;
    color: #fff;
}

h2.blog-title{
    font-size: 2rem;
    line-height: 1;
}

h2.blog-title a{
    color: #fff;
}

h2.blog-title a:hover{
    text-decoration: underline dotted;
}

.blog_meta{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.blog_meta .meta{
    font-size: 1.2rem;
    margin-right: 2rem;
    display: flex;
    align-items: center;
}

.blog_meta .meta i{
    margin-right: 0.6rem;
}

.blog_meta .meta:last-child{
    margin-right: 0;
}

.card_body{
    padding: 1rem;
    background-color: #fff;
}

.blog-category{
    padding: .5rem;
    border: 0.2rem solid #00006f;
    display: inline-block;
    border-radius: 0.6rem;
    color: #00006f;
    font-size: 1rem;
}

.blog-excerpt{
    margin: 1rem 0;
}

.blog-excerpt p{
    font-size: 1.3rem;
    font-weight: 100;
}

.card_body .button{
    text-decoration: none;
    padding: 8px;
    color: #fff;
    background-color: var(--dark-color);
    border-radius: 4px;
    text-align: center;
    transition: background-color 0.3s ease-in-out;
    font-size: 1.1rem;
}

.button:hover{
    background-color: #ffb907;
    color: #fff;
}



@media screen and (min-width: 992px) {
    .card{
    height: 23rem;
    }

    .card_header{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    }

    .card_body{
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 12;
    bottom: -100%;
    transition: bottom 0.3s ease-in-out;
    }
    

    .card:hover .card_body{
    bottom: 0;
    }

    .blog-details{
    transition: all 0.3s ease-in-out;
    }

    .card:hover .blog-details{
    transform: translateY(-35rem);
    }
}


/* *************** hero section ************ */

section {
    position: relative;
}

.hero {
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    height: 1040px;
    width: 100%;
}

.hero::after {
    content: "";
    background: #203656;
    display: block;
    left: 0;
    opacity: 0.8;
    top: 0;
    height: 100%;
    position: absolute;
    width: 100%;
}

.post{
    margin-bottom: 16px;
    }

.post .category-badge {
    color: #fff;
    font-size: 13px;
    border-radius: 4px;
    display: inline-block;
    padding: 16px;
    line-height: 1;
    left: 20px;
    top: 20px;
    margin-bottom: 8px;
    z-index: 1;
    background-color: #00006f;
    background-image: linear-gradient(315deg,#ffb907 0%, #00006f 74%);
    background-size: 200% auto;
    transition: all 0.3s ease-in-out;
}

.post .category-badge:hover {
    background-position: right center;
}

.post .thumb .rounded{
    position: relative;
}

.inside img{
    height: 300px !important;   
}

.post .thumb .rounded .inner {
    border-radius: 10px;
    overflow: hidden;
}

.big_schol_img {
    height: 285px;
}

.samll_schol_img {
    height: 75px;
}

.post .thumb img {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.post .thumb:hover img {
    transform: scale(1.07);
}

.post .post-title a {
    color: var(--primary-color);
}

.post .post-title a:hover {
    color: var(--secondary-color);
}

.post .meta {
    font-size: 14px;
    color: #9faabb;
}

.post .meta a {
    color: #9faabb;
    font-weight: 400;
}

.post .meta a:hover {
    color: var(--secondary-color);
}

.post .meta i {
    vertical-align: middle;
}

.post .meta li:last-child::after {
    content: "";
    display: none;
}

.post .meta li::after {
    content: "";
    display: inline-block;
    background-color: #00006f;
    border-radius: 50%;
    margin-left: 1rem;
    height: 3px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    width: 3px;
}

.post .meta li:not(:last-child) {
    margin-right: 0.8rem;
}

.featured-post-lg {
    position: relative;
}

.featured-post-lg:hover .thumb .inner {
    transform: scale(1.05);
}

.featured-post-lg .thumb {
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(32, 54, 86, 0.3);
}

.featured-post-lg .thumb::after {
    content: "";
    background: #203656;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.6;
    top: 0;
    position: absolute;
    width: 100%;
}

.featured-post-lg .details {
    bottom: 50px;
    left: 50px;
    right: 50px;
    position: absolute;
    z-index: 1;
}

.featured-post-lg .post-title {
    font-size: 32px;
}

.featured-post-lg .post-title a {
    margin-bottom: 16px;
    color: #fff;
}

.featured-post-lg .thumb .inner {
    background-size: cover;
    background-position: center center;
    height: 533px;
    transition: all 0.3s ease-in-out;
    transform: scale(1);
}

.featured-post-lg .post-title a:hover {
    color: var(--secondary-color);
}

.featured-post-lg .meta {
    color: rgba(255, 255, 255, 0.6);
}

.featured-post-lg .meta li::after {
    content: "";
    background: rgba(255, 255, 255, 0.6);
}

.featured-post-lg .meta li a {
    color: rgba(255, 255, 255, 0.6);
}

/* ******************* hero right side ************** */

.rounded {
    border-radius: 10px !important;
    /* margin-top: 16px; */
}

.bordered {
    border: 1px solid #ebebeb;
}

.post-tabs {
    padding: 8px;
}

#st-tabs1{
    margin-top: 0;
}

.post-tabs .tab-content {
    margin-top: 24px;
}

.store{
    color: var(--primary-color);
    text-align: center;
    font-size: 32px;
    padding: 0 !important;
    border-bottom: 1px solid #ddd;

}

.no_profile_comm {
    width: 60px;
    font-size: 2rem;
    color: #333;
    background-color: #eee;
    text-align: center;
    height: 60px;
    padding-top: 5px;
    font-weight: 500;
}

.nav-tabs {
    border-bottom: 0;
}

.tab-content {
    position: relative;
}

.tab-pane {
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.tab-pane.loading {
    opacity: 0.3;
}

.lds-dual-ring {
    display: inline-block;
    position: absolute;
    right: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    visibility: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease-in-out;
    z-index: 1;
}

.lds-dual-ring.loading {
    visibility: visible;
    opacity: 1;
}

.lds-dual-ring::after {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    margin: 8px;
    border-radius: 50%;
    border: 3px solid;
    border-color: #00006f transparent #00006f transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.nav-fill .nav-item, .nav-fill>.nav-link {
    margin-right: 0px;
}

.nav-fill .nav-item:last-child, .nav-fill>.nav-link:last-child {
    margin-right: 0;
}

.nav-fill .nav-item>.nav-link {
    color: #ffb907 !important;
    margin-right: 3px;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #00006f;
    background-image: linear-gradient(315deg, #00006f 0%, #00006f 74%);
    border-color: transparent;
    background-size: 200% auto;
}

.nav-pills .nav-link {
    background: 0 0;
    border: 1px solid #ebebeb;
    border-radius: 30px;
}

.post.post-list-sm {
    clear: both;
}

.post.post-list-sm.circle .thumb {
    max-width: 60px;
}

.post.post-list-sm.circle .details {
    margin-left: 80px;
}

.post.post-list-sm .thumb {
    float: left;
    position: relative;
}

.post .thumb {
    position: relative;
}

.post .thumb.rounded .inner {
    border-radius: 10px;
    overflow: hidden;
}

.last_update_img {
    height: 130px;
}

.post .thumb.circle .inner {
    overflow: hidden;
    border-radius: 50%;
}

.post.post-list-sm .post-title {
    font-size: 15px;
}

.post.post-list-sm::after {
    content: "";
    display: grid;
    height: 1px;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
    background: #ebebeb;
    /* background: linear-gradient(to left, #ebebeb 0%, transparent 100%); */
}

.post.post-list-sm:last-child::after {
    content: "";
    display: none;
}

/* ************** */

.main-content {
    margin-top: 60px;
}

.section-header {
    /* margin-bottom: 30px; */
    position: relative;
}

.section-title {
    font-size: 32px;
    margin: 0;
    color: var(--primary-color);
}

/* *********************** */

.padding-30 {
    padding: 30px;
}

.post .post-format {
    color: #fff;
    display: block;
    border-radius: 50%;
    font-size: 20px;
    height: 50px;
    line-height: 54px;
    right: 20px;
    text-align: center;
    bottom: -25px;
    position: absolute;
    width: 50px;
    box-shadow: 0 2px 4px 0px rgba(0, 0, 0, 0.15);
    background-color: #00006f;
    background: linear-gradient(315deg, #00006f 0%, #ffb907 74%);
    z-index: 1;
}

.post .meta li img.author {
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 50%;
}

.post.post-list-sm.square .thumb {
    max-width: 110px;
}

.post.post-list-sm.square .details {
    margin-left: 130px;
}

/* ******************* */

.post.post-list-sm.before-seperator::before {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 20px;
    margin-top: 20px;
    width: 100%;
    background: #ebebeb;
    background: linear-gradient(to left, #ebebeb 0%, transparent 100%);
}

.post.post-list-sm.before-seperator::after {
    content: "";
    display: none;
}

/* ************** */

.slick-arrows-top {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0px, -50%);
}

.slick-custom-buttons {
    color: #909090;
    font-size: 10px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #ebebeb;
    padding: 0;
    transition: all 0.3s ease-in-out;
}

.slick-custom-buttons:hover {
    color: #00006f;
    border-color: #00006f;
}

/* -************ */

.post.post-over-content {
    position: relative;
}

.post.post-over-content .thumb {
    position: relative;
    overflow: hidden;
}

.post.post-over-content .thumb::after {
    content: "";
    background: #203656;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0.6;
    top: 0;
    position: absolute;
    width: 100%;
}

.post.post-over-content .details {
    bottom: 20px;
    left: 20px;
    right: 20px;
    position: absolute;
    z-index: 1;
}

.post.post-over-content .post-title {
    font-size: 22px;
}

.post.post-over-content .post-title a {
    color: #fff;
}

.post.post-over-content .post-title a:hover {
    color: aliceblue;
}

.post.post-over-content .meta {
    color: rgba(255, 255, 255, 0.5);
}

.post.post-over-content .meta li::after {
    content: "";
    background: rgba(255, 255, 255, 0.5);
}

.post.post-over-content .meta li a {
    color: rgba(255, 255, 255, 0.5);
}

.cbt_image img{
    width: 100%;
    height: 100%;
}
.ranked{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px;
}

@media (max-width:800px){
    .ranked{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 16px;
    }
}
/* **************** */

.post.post-list {
    margin-bottom: 30px;
}

.post.post-list .thumb {
    float: left;
    max-width: 265px;
}

.post.post-list .details {
    margin-left: 295px;
}

.post.post-list .post-title {
    margin: 9px 0;
}

.post.post-list .post-bottom {
    margin-top: 9px;
}

.post.post-list .post-bottom .social-share .icons {
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-in-out;
}

.post.post-list .post-bottom .social-share .icons::before {
    content: "";
    background: #ddd;
    display: inline-block;
    height: 1px;
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: middle;
    width: 30px;
}

.post.post-list .post-bottom .social-share .icons.visible {
    opacity: 1;
    visibility: visible;
    margin-right: 16px;
}

.post .post-bottom .social-share .toggle-button {
    font-size: 16px;
    color: #9faabb;
    background-color: transparent;
    border: 0;
    padding: 0;
    vertical-align: middle;
}

.post .post-bottom .social-share .icons {
    display: inline;
    vertical-align: middle;
}

.post .post-bottom .social-share .icons li a {
    color: #9faabb;
    font-size: 14px;
}

.post .post-bottom .social-share .icons li a:hover {
    color: #00336f;
}

.post .post-bottom .social-share .icons li:not(:last-child) {
    margin-right: 0.8rem;
}

.post .post-bottom .more-button a {
    font-size: 16px;
    font-weight: 700;
    color: #9faabb;
}

.post .post-bottom .more-button a i {
    color: #9faabb;
    font-size: 12px;
    margin-left: 10px;
    vertical-align: middle;
}

.post .post-bottom .more-button a:hover {
    color: #00336f;
}

.post.post-list::after {
    content: "";
    display: block;
    height: 1px;
    margin-bottom: 30px;
    margin-top: 30px;
    width: 100%;
    background: #ebebeb;
    background: linear-gradient(to left, #ebebeb 0%, transparent 100%);
}


.btn-simple {
    color: #fff;
    background-color: #00006f;
    padding: 9.5px 36px;
    margin-left: 16px;
    border: 1px solid #ebebeb;
}

.btn-simple:hover {
    color: #fff;
    border-color: #00006f;
}

/* ************** */

.widget {
    border: 1px solid #ebebeb;
    padding: 16px 32px;
    margin-bottom: 24px;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget .widget-header {
    margin-bottom: 32px;
}

.post.post-list-sm .thumb .number {
    color: #fff;
    display: block;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 700px;
    height: 24px;
    line-height: 22px;
    left: 0;
    text-align: center;
    top: -10px;
    position: absolute;
    width: 24px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
    background: #00336f;
    background-image: linear-gradient(315deg, #00336f 0%, #00336f 74%);
    z-index: 1;
}

.widget-about{
    margin-top: 8px;
    list-style-type: none;
}

.widget-about h5{
    font-size: 32px; 
}
.widget-about a{
    display: flex;
    align-items: center;
    text-decoration: none;
}
.widget-about span{
    padding-bottom: 0px;
}
.widget-about span i{
    font-size: 32px;
    padding: 8px;
}

.widget ul.list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.widget ul.list li {
    line-height: 2.8rem;
}

.widget ul.list li a {
    color: var(--primary-color);
    font-weight: 700;
}

.widget ul.list li a::before {
    color: #9faabb;
    font-family: "simple-line-icons";
    font-size: 11px;
    vertical-align: middle;
    margin-right: 25px;
    content: "";
}

.widget ul.list li a:hover {
    color: var(--secondary-color);
}

.widget ul.list li::after {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #ebebeb;
    background-image: linear-gradient(to right, #ebebeb 0%, transparent 100%);
}

.widget ul.list li span {
    float: right;
}

.widget ul.list li:last-child::after {
    content: "";
    display: none;
}

/* ****************** */

.newsletter-headline {
    font-size: 15px;
    font-weight: bold;
    color: #203656;
    display: block;
}

.newsletter-privacy {
    font-size: 13px;
    display: block;
}

.btn-default {
    color: #fff;
    padding: 9.5px 36px;
    background-color:var(--primary-color);
    /* background-image: linear-gradient(315deg, #ffbb10 0%, #ffb907 74%); */
    background-size: 200% auto;
}

.btn-default:hover {
    background-color: var(--dark-color);
    color: #fff;
    background-position: right center;
    transition: background-color 0.3s ease-in-out;

}

.btn-full {
    padding: 9.5px 36px;
    width: 100%;
}

/* ***************** */

.slick-arrows-bot {
    position: relative;
    text-align: center;
    margin-top: 20px;
}

/* ****************** */

.tag {
    color: #8f9bad;
    border: 1px solid #8f9bad;
    border-radius: 25px;
    font-size: 13px;
    display: inline-block;
    padding: 3px 14px;
    margin: 4px 0;
}

.tag:hover {
    border-color: #00006f;
    color: #00006f;
}
.all_in_groups{
    display: flex;
    justify-content: stretch;
    overflow: auto;
}

.per_group_name{
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    border: 1px solid #00006f;
    border-radius: 8px;
    padding: 16px;
    width: 168px;
    margin-left: 16px;
    margin-bottom: 16px;
}
.first_letter{
    border: 1px solid #aaa;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 40px;
    border-radius: 100%;
    padding: 16px 24px;
}
.created_by{
    text-align: center;
    color: brown;
    font-size: 0.9rem;
}
.all_members{
    text-align: center;
    font-size: 0.7rem;
    color: green;
}

.join_us{
    margin-top: 24px;
}
.join_us a{
    font-size: 0.9rem;
    background-color: #f3f3f3;
    border-radius: 4px;
    padding: 8px 16px;
}



/* *********** responsiveness **************** */

@media only screen and (max-width: 992px) {
    .inner-wrapper-sticky {
        transform: none !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        width: auto !important;
    }

    #st-tabs1{
        margin-top: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .featured-post-lg .thumb .inner {
        height: 425px;
    }
    .post.post-list .thumb {
        float: none;
        max-width: 550px;
    }
    .post.post-list .details {
        margin-left: 0;
        margin-top: 25px;
    }
    .post .meta li::after {
        content: "";
        margin-left: 0.5rem;
    }
    .post .meta li:not(:last-child) {
        margin-right: 0.3rem;
    }
    .instagram-feed .insta-item {
        text-align: center;
        margin: 2.5px 0;
    }
    .footer-inner {
        text-align: center;
    }
    .featured-post-lg .post-title {
        font-size: 26px;
    }
    .featured-post-lg .details {
        bottom: 30px;
        left: 30px;
        right: 30px;
    }
    .search-popup .search-content {
        padding: 0px 20px;
        width: 100%;
    }
    .post-carousel-widget .post-carousel {
        margin: 0 12px;
    }
    .post-carousel-widget .post-carousel .post-title {
        font-size: 16px;
    }

}


/* ==== Footer ==== */
.footer { 
    background-color: var(--primary-color);
    margin-top: 20px;
}
.footer .quick-links,
.footer .disclaimer,
.footer .connect{
    padding: 1.5rem;
}
.footer .quick-links li,
.footer .connect li{
    list-style: none;
}
.quick-links h4,
.disclaimer h4,
.connect h4{
    font-size: 1.3rem;
    color: #fff;
    position: relative;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #ffb907;
}
    a:-webkit-any-link{
    list-style-type: none;
    text-decoration: none;
}
.quick-links li{
    margin-bottom: 0.85rem;
}
.disclaimer div{
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    transition: all 0.5s ease;
}
@media(max-width:550px){
    .disclaimer{
        margin-top: -40px;
    }
}
.quick-links a,
.explore a {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
    transition: all 0.5s ease;
}
.quick-links a:before,
.explore a:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s ease;
    transform: scale(0);
}
.quick-links a:hover::before,
.explore a:hover::before {
    transform: scale(1);
}
.connect{
    color: #fff;
}
.connect .social-media{
    display: flex;
    list-style-type: none;
}
.connect .social-media .icon{
    margin-right: 1.25rem;
}
.connect .social-media .icon i{
    font-size: 1.85rem;
    color: #fff;
}
.connect .connect-info p i{
    font-size: 1.25rem;
    color: #fff;
}

/* ==== Footer Copyright ==== */
.footer-copyright {
    border-top: #ffb907 2px solid;
    padding: 1.25rem;
    background-color: var(--dark-color);
    color: #fff;
}
.footer-copyright a{
    color: #fff;
}
.footer-copyright a:hover{
    color: #bbb;
}