@import url("font-size.css");

body {
    overflow-x: hidden;
    /* width: 100%; */
}

* {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

a {
    text-decoration: none;
}

.dark-mode {
    background-color: #000;
}

.bg-body-tertiary {
    background-color: #1c1c1c !important;
}

#s1-b2 {
    background-color: #1b1b1b;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#s1-b2 {
    position: relative;
}

.lfFMDQ {
    position: relative;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    background: linear-gradient(-45deg, #feeac3, #fede9c, #bca984);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    /* To ensure it spans the entire width */
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}



@keyframes gradientAnimation {

    0%,
    100% {
        background: linear-gradient(135deg, #1601AC, #673AB7, #9C27B0);
    }

    33% {
        background: linear-gradient(135deg, #673AB7, #9C27B0, #1601AC);
    }

    67% {
        background: linear-gradient(135deg, #9C27B0, #1601AC, #673AB7);
    }
}


.menu-sep {
    font-size: 10px;
    font-weight: 800;
    position: relative;
    top: 1px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.dropdown-menu.show {
    -webkit-animation: fadeIn 0.1s alternate;
    /* Safari 4.0 - 8.0 */
    animation: fadeIn 0.1s alternate;
}

.bg-dark-nav {
    background-color: #1c1c1c;
}

.nav-item.dropdown.dropdown-mega {
    position: static;
}

.nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 90%;
    top: auto;
    left: 5%;
}

.navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler .hamburger-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 11;
    float: right;
}

.navbar-toggler .hamburger-toggle .hamburger {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    pointer-events: none;
}

.navbar-toggler .hamburger-toggle .hamburger span {
    width: 100%;
    height: 4px;
    position: absolute;
    background: #333;
    border-radius: 2px;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
    left: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    transform: translate(0% -50%) !important;
}

.navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
}

.navbar-toggler .hamburger-toggle .hamburger span:last-child {
    left: 0px;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
}

.navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
    top: 45%;
    transform: rotate(45deg);
}

.navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
    left: 50%;
    width: 0px;
}

.navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
    top: 45%;
    transform: rotate(-45deg);
}

.icons {
    display: inline-flex;
    margin-left: auto;
}

.icons a {
    transition: all 0.2s ease-in-out;
    padding: 0.2rem 0.4rem;
    color: #ccc !important;
    text-decoration: none;
}

.icons a:hover {
    color: white;
    text-shadow: 0 0 30px white;
}

.lf {
    position: relative;
    background-color: #173083;
    color: #fff;
    font-size: 16px;
    padding: 10px 40px;
    font-weight: bolder;
    width: 60%;
}

.btn {
    border-radius: 0 !important;
}

input {
    border-radius: 0 !important;
}

input:focus,
input:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: #ba8b00 !important;
}

.nav-link {
    text-transform: uppercase;
    font-weight: bolder !important;
    font-size: 11px !important;
}

.dropdown-item {
    font-size: 12px;
}

.bb-dotted {
    border-bottom: 1px dotted #fff !important;
}


.card-img-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}

/* Additional styling for text color and spacing */
.card-img-overlay-bottom h5,
.card-img-overlay-bottom p {
    color: white;
    margin-bottom: 0.5rem;
}

.card-img-overlay-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: .5px solid white;
    /* Adjust the border thickness here */
    backdrop-filter: blur(5px);
    /* Adjust the blur intensity here */
    background-color: rgba(0, 0, 0, 0.4);
    /* Semi-transparent white background */
    padding: .5rem 1rem;
}

/* Additional styling for text color */
.card-img-overlay-blur h5,
.card-img-overlay-blur p {
    color: white;
    /* Change as needed */
    margin-bottom: 0.25rem;
}

.card-img-overlay-blur p {
    font-size: 11px;
    font-weight: bolder;
}

/* Ensure the card body has no padding to allow the overlay to sit correctly */
.card-body-no-padding {
    padding: 0;
}

.card-img-top {
    border-radius: 0 !important;
    height: 200px !important;
    object-fit: cover;
}

.no-border {
    border: none !important;
    border-radius: 0 !important;
}

.dotted-lines-container {
    position: relative;
}

.dotted-line {
    position: relative;
    right: 0;
    height: 1px;
    border-top: 1px dotted;
    display: block;
    padding-top: 2px;
}

.dotted-lines-container h2 {
    position: relative;
    z-index: 1;
    /* Ensures the text is above the lines */
}

.bd-placeholder-img {
    height: 101px;
    width: 101px;
    object-fit: cover;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    text-anchor: middle;
}

.feather {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.of-card {
    border-bottom: 1px dotted #fff !important;
    /* min-height: 100px; */
}

a.liink {
    text-decoration: none;
    color: #fff;
}

a.liink:hover {
    text-decoration: underline;
}

.cbp-title {
    height: 95px;
}

.cbp-title-1 {
    height: 105px;
}

.cbp-title-2 {
    height: 85px;
}

.cbp-title-3 {
    height: 55px;
}

@media (min-width: 400px) {
    #main-content {
        position: relative;
        z-index: 1021;
        background-color: #000;
        color: white;
        margin-bottom: 520px;
    }

    footer {
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: -1;
    }
}