html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.nav-img {
    width: 50%;
}
.nav-link {
    font-size: 24px;
}
/* Optional: Add this CSS to ensure proper alignment */
.navbar .d-flex {
    display: flex;
    align-items: center;
}

.navbar-toggler {
    margin-left: auto; /* Optional: Adjusts space between brand and toggler */
}

/* Style the navbar-toggler button */
.navbar-toggler {
    border-color: white; /* Change border color if needed */
}

.navbar-toggler-icon {
    background-image: url('path/to/your/icon.png'); /* If you want a custom icon */
    filter: invert(1); /* Inverts the color of the icon to white */
}
/* Default nav link styles */
.nav-link {
    font-size: 27px; /* Adjust the size as needed for larger screens */
}

/* Smaller font size for small screens */
@media (max-width: 576px) {
    .nav-link {
        font-size: 21px;
        }
}
.alert.hide {
    opacity: 0;
    transition: opacity 0.5s ease;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}



.header {
    position:sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    background: rgb(52, 58, 64);
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: background-color 0.3s ease; /* Add this line */
}

.logo {
    color: #fff;
    font-size: 25px;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
}
.navbar a.active {
    color: red;
}

.navbar a {
    color: #fff !important;
    font-size: 18px;
    text-decoration: none;
    margin-left: 40px;
    transition: .3s;
}
a.line::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: red;
    transition: width .3s;
}

a.line:hover::after {
    width: 100%;
    transition: width .3s;
}


    .navbar a:hover {
        color: #f00;
    }

#menu-icon {
    font-size: 36px;
    color: #fff;
    display: none;
}

@media (max-width: 992px) {
    .header {
        padding: 1.25rem 4%;
    }
}

@media (max-width: 768px) {
    #menu-icon {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0.5rem 4%;
        display: none;
    }

        .navbar.active {
            display: block;
            background: rgb(52, 58, 64);
        }

        .navbar a {
            display: block;
            margin: 1.5rem 0;
        }

    .nav-bg {
        position: fixed;
        top: 8.5%;
        left: 0;
        width: 100%;
        height: 295px;
        backdrop-filter: blur(10px);
        z-index: 99;
        display: none;
    }

        .nav-bg.active {
            display: block;
        }
}
ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    background: #151414;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: red;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

    .cta-text h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .cta-text span {
        color: #757575;
        font-size: 15px;
    }

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

    .footer-logo img {
        max-width: 250px;
    }

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #7e7e7e;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

    .footer-widget-heading h3::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -15px;
        height: 2px;
        width: 50px;
        background: red;
    }
.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}
ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    margin: 0;
}

    ul li {
        display: inline-block; /* Make the <li> elements inline */
        margin-right: 20px; /* Optional: Add space between items */
    }


    .footer-widget ul li a:hover {
        color: red;
    }
    .hover:hover{
        text-decoration:none;
        color:red !important;
    }
    .footer-widget ul li a {
        color: #878787;
        text-transform: capitalize;
    }

.subscribe-form {
    position: relative;
    overflow: hidden;
}

    .subscribe-form input {
        width: 100%;
        padding: 14px 28px;
        background: #2E2E2E;
        border: 1px solid #2E2E2E;
        color: #fff;
    }

    .subscribe-form button {
        position: absolute;
        right: 0;
        background: red;
        padding: 13px 20px;
        border: 1px solid red;
        top: 0;
    }

        .subscribe-form button i {
            color: #fff;
            font-size: 22px;
            transform: rotate(-6deg);
        }

.copyright-area {
    background: #202020;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

    .copyright-text p a {
        color: red;
    }

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

    .footer-menu li:hover a {
        color: red;
    }

    .footer-menu li a {
        font-size: 14px;
        color: #878787;
    }
    a i:hover{
        color:white;   
    }




.o-wrapper {
    display: grid;
    grid-template-columns: 1fr 230px;
}

.c-footer {
    width: 100%;
    background: #2b2d32;
    font-family: "Rokkitt", serif;
}

.c-footer__section {
    padding: 2em;
}

    .c-footer__section:nth-child(2) {
        padding-left: 0;
    }

.c-footer__title {
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #f9f9f9;
}

.c-nav ul {
    display: flex;
    flex-wrap: wrap; /* Added for responsiveness */
}

.c-nav__item {
    margin-right: 15px;
    color: white;
    cursor: pointer;
}

    .c-nav__item:hover {
        color: red;
    }

.c-social ul {
    display: flex;
    flex-wrap: wrap; /* Added for responsiveness */
}

.c-social__item {
    color: #9e9e9e;
    cursor: pointer;
    margin-right: 15px;
    line-height: 20px;
}

    .c-social__item:hover {
        color: #f9f9f9;
    }

        .c-social__item:hover.tw:before {
            background-image: url("http://www.sicontis.com/codepen/css-garden/lrigon7vzqmphx1amdni.svg");
        }

        .c-social__item:hover.fb:before {
            background-image: url("http://www.sicontis.com/codepen/css-garden/f5gwg5zygwtofgyz2pic.svg");
        }

.fb:before,
.tw:before {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    float: left;
    margin-right: 5px;
    background-repeat: no-repeat;
}

.tw:before {
    background-image: url("http://www.sicontis.com/codepen/css-garden/zv13cblcxkxpl18b5jgs.svg");
}

.fb:before {
    background-image: url("http://www.sicontis.com/codepen/css-garden/kpjx2bfsfr40ccpzuttc.svg");
}

.footer-img {
    width: 235px;
}

/* Responsive Styles */
@media only screen and (max-width: 1024px) {
    .o-wrapper {
        grid-template-columns: 1fr; /* Stack the columns on medium screens */
        text-align: center; /* Center align content */
    }

    .c-footer__section {
        padding: 1em; /* Reduce padding for smaller screens */
    }

    .c-nav ul,
    .c-social ul {
        justify-content: center; /* Center nav items */
    }
}

@media only screen and (max-width: 640px) {
    .o-wrapper {
        grid-template-columns: 1fr; /* Stack the columns on small screens */
    }

    .c-footer__section:nth-child(2) {
        padding-top: 2em; /* Adjust padding for the second section */
    }

    .c-nav ul,
    .c-social ul {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align items */
    }

    .c-nav__item,
    .c-social__item {
        margin-bottom: 5px; /* Add spacing between items */
        margin-right: 0; /* Remove right margin */
    }
}
.icons {
    margin-right: 27px;
    font-size: 25px;
    color:white !important;
}
.fa-facebook-f:hover {
    color: #1877F2;
}
.fa-instagram:hover {
    background: -webkit-linear-gradient(#feda75,#fa7e1e, #d62976,#962fbf,#4f5bd5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fa-tiktok:hover {
  color:black;
}
.fa-youtube:hover {
    color: #FF0000 ;
}
a.icons-colors{
    color:white !important;
}
a.links-colors{
    color:white !important;
    text-decoration:none !important;
}
a.links-colors:hover {
    color: red !important;
    text-decoration:none;
}