/**
* Template Name: Anyar
* Template URL: https://bootstrapmade.com/anyar-free-multipurpose-one-page-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font:
        "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol",
        "Noto Color Emoji";
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #000000; /* Background color for the entire website, including individual sections */
    --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #212529; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0077de; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: rgba(
        000,
        000,
        000,
        0.78
    ); /* The default color of the main navmenu links */
    --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0880e8; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f1f1f1;
    --surface-color: #ffffff;
}

.dark-background {
    /*--background-color: #252525;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0077de;
  --contrast-color: #ffffff;
  background-color: rgba(37, 37, 37, 0.9);
  background: #16222A;
  background: -webkit-linear-gradient(to right, #282842, #000000);
  background: linear-gradient(to right, #282842, #000000); */
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg2.png") !important;
    backdrop-filter: blur(25px);
    background-repeat: no-repeat;
    background-size: cover !important;
}
.dark-pattern-background {
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg12.png") !important;
    backdrop-filter: blur(25px);
    background-repeat: no-repeat;
    background-size: cover !important;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
html {
    font-size: clamp(14px, 1.75vw, 16px);
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 0.9375rem; /* 15px */
    margin-bottom: 1.5rem; /* 24px */
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 0.9375rem; /* 15px */
    margin-bottom: 1.5rem; /* 24px */
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 0.9375rem; /* 15px */
    margin-bottom: 1.5rem; /* 24px */
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 0.625rem -0.375rem 0; /* 10px -6px */
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(
        var(--accent-color) 50%,
        color-mix(in srgb, var(--accent-color), transparent 75%) 52%
    );
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 1);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 0.625rem 0; /* 10px */
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 36px;
    margin-right: 0.5rem; /* 8px */
}

.header .logo h1 {
    font-size: 1.875rem; /* 30px */
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--heading-color);
}

.header .header-social-links {
    padding-right: 0.9375rem; /* 15px */
    margin-left: 1.25rem; /* 20px */
}

.header .header-social-links a {
    padding-left: 0.375rem; /* 6px */
    display: inline-block;
    transition: 0.3s;
    font-size: 0.875rem; /* 14px */
}

.header .header-social-links a:hover {
    color: #fff; /*var(--accent-color);*/
}

.header .header-social-links a i {
    line-height: 0px;
}

.navmenu ul {
    gap: 0.25rem;
}

.navmenu a {
    border-radius: 9999px;
    color: #555;
    transition: all 0.25s ease;
}

.navmenu ul li:not(:last-child) a.active,
.navmenu ul li:not(:last-child) a:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #000;
}

@media (max-width: 1200px) {
    /*.header .logo {
    order: 3;
  }*/
    .header .logo img {
        max-height: 24px;
    }

    .header .header-social-links {
        order: 3;
        display: flex;
    }

    .header .navmenu {
        order: 2;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(255, 255, 255, 0.9); /*rgba(0, 78, 144, 0.9);*/
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 0.75rem;
        font-size: 1.125rem; /* 18px */
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 0.75rem; /* 12px */
        line-height: 0;
        margin-left: 0.3125rem; /* 5px */
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        /*color: var(--nav-hover-color);*/
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 0.625rem 0; /* 10px */
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 0.625rem 1.25rem; /* 10px 20px */
        font-size: 0.9375rem; /* 15px */
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 0.75rem; /* 12px */
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 1.75rem; /* 28px */
        line-height: 0;
        margin-right: 0.625rem; /* 10px */
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 0.625rem 0; /* 10px */
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 0.625rem 1.25rem; /* 10px 20px */
        font-family: var(--nav-font);
        font-size: 1.0625rem; /* 17px */
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 0.75rem; /* 12px */
        line-height: 0;
        margin-left: 0.3125rem; /* 5px */
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 0.625rem 0; /* 10px */
        margin: 0.625rem 1.25rem; /* 10px 20px */
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 2rem; /* 32px */
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.join-us-box .content-box {
    background: #fff;
    padding: 2.5rem 1.25rem; /* 40px 20px */
    text-align: center;
    border-radius: 40px;
    max-width: 100%;
    margin: -4.375rem auto 2.5rem; /* -70px auto 40px */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    /* z-index: 0; */
}

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 0.875rem; /* 14px */
    position: relative;

    width: 100%;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid #ffffff;
    backdrop-filter: blur(25px);
    border-radius: 70px 70px 0px 0px;
    padding: 1.875rem 1rem; /* 30px */
}

.footer .content-box {
    border-radius: 35px;
    background: #fff;
    padding: 0.625rem 1.125rem;
}

.footer .content-box .copyright {
    font-weight: 300;
    font-size: 0.875rem; /* 14px */
    /* line-height: 1.5rem; /* 24px */
}

.footer .footer-newsletter {
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
    padding: 3.125rem 0; /* 50px */
}

.footer .footer-newsletter h4 {
    font-size: 1.5rem; /* 24px */
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 1.875rem; /* 30px */
    margin-bottom: 0.9375rem; /* 15px */
    padding: 6px 8px;
    position: relative;
    border-radius: 4px;
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
    border: 0;
    padding: 4px;
    width: 100%;
    background-color: var(--surface-color);
    color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
    border: 0;
    font-size: 1rem; /* 16px */
    padding: 0 1.25rem; /* 20px */
    margin: -7px -8px -7px 0;
    background: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
    padding-top: 3.125rem; /* 50px */
}

.footer .social-links {
    gap: 0.5rem;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    /*font-size: 1rem; /* 16px */
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    /*margin-right: 0.625rem; /* 10px */
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 1rem; /* 16px */
    font-weight: bold;
    position: relative;
    padding-bottom: 0.75rem; /* 12px */
}

.footer .footer-links {
    margin-bottom: 1.875rem; /* 30px */
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 0.75rem; /* 12px */
    line-height: 0;
    color: var(--accent-color);
}

.footer .footer-links ul li {
    padding: 0.625rem 0; /* 10px */
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-about a {
    color: var(--heading-color);
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    font-family: var(--heading-font);
}

.footer .footer-contact p {
    margin-bottom: 0.3125rem; /* 5px */
}

.footer .copyright {
    padding: 1.5625rem 0; /* 25px */
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 0.8125rem; /* 13px */
}

/* @media (max-width: 768px) {
    .footer .content-box {
        width: 90%;
    }
} */

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color)
        transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 1.5rem; /* 24px */
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 0 5rem 0; /* 160px 0 80px */
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 2.625rem; /* 42px */
    font-weight: 700;
    margin-bottom: 0.625rem; /* 10px */
}

.page-title .breadcrumbs a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.page-title .breadcrumbs a:hover {
    color: var(--default-color);
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 1rem; /* 16px */
    font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
    padding-left: 0.625rem; /* 10px */
}

.page-title .breadcrumbs ol li + li::before {
    content: "/";
    display: inline-block;
    padding-right: 0.625rem; /* 10px */
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 3.75rem 0; /* 60px */
    scroll-margin-top: 80px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 56px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    /* padding-bottom: 3.75rem; /* 60px */
    margin: 1rem 0;
    position: relative;
}

.section-title h2 {
    font-size: 2rem; /* 32px */
    font-weight: 700;
    margin-bottom: 0.9375rem; /* 15px */
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.headline {
    height: 850px;
    background: #ffffff;
    border-radius: 0px 0px 100px 100px;
}

.hero {
    width: 100%;
    /*min-height: 40vh;*/
    position: relative;
    /* padding: 5rem 0 1.875rem 0; /* 80px 0 30px */
    display: flex;
    align-items: center;
}

.hero h2 {
    margin: 0 0 0.625rem 0; /* 10px */
    font-size: 3rem; /* 48px */
    font-weight: 700;
}

.hero h2 .underlight {
    position: relative;
    z-index: 1;
    padding: 0 0.3125rem; /* 5px */
    display: inline-block;
}

.hero h2 .underlight:before {
    content: "";
    position: absolute;
    height: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-color);
    z-index: -1;
}

.hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 1.875rem; /* 30px */
    font-size: 1.75rem; /* 28px */
}

@media (max-width: 768px) {
    .headline {
        height: 550px;
    }
    .hero h2 {
        font-size: 1.6875rem; /* 27px */
        padding: 0px 0.9375rem; /* 15px */
        margin-top: 1.25rem; /* 20px */
    }
    .hero p {
        font-size: 0.9375rem; /* 15px */
        padding: 0px 0.9375rem; /* 15px */
    }
}

.btn-grad {
    background: linear-gradient(90deg, #3171f6 0%, #71d69b 100%);
}
.btn-grad {
    margin: 0.625rem; /* 10px */
    padding: 0.75rem 2.8125rem; /* 12px 45px */
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 12px;
    display: inline-flex;
    background: linear-gradient(90deg, #3171f6 0%, #71d69b 100%);
}

.btn-grad:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.btn-grad-oval {
    padding: 1rem;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 50px;
    display: inline-flex;
    background: linear-gradient(90deg, #3171f6 0%, #71d69b 100%);

    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 0.9375rem; /* 15px */
    /* line-height: 1.5rem; /* 24px */
    text-align: center;

    color: rgba(255, 255, 255, 0.8);
}

.btn-blue {
    margin: 0.625rem; /* 10px */
    padding: 0.75rem 2.8125rem; /* 12px 45px */
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 12px;
    display: inline-flex;
    background: #3171f6;

    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 0.9375rem; /* 15px */
    line-height: 1.5rem; /* 24px */
    text-align: center;

    color: rgba(255, 255, 255, 1);
}

.btn-blue:hover {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 0.9375rem; /* 15px */
    line-height: 1.5rem; /* 24px */
    text-align: center;

    color: rgba(255, 255, 255, 1);
}

.hero .btn-get-started {
    color: #252525;
    background: #f2f2f2;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1rem; /* 16px */
    display: inline-block;
    padding: 0.5rem 2.5rem; /* 8px 40px */
    border-radius: 10px;
    transition: 0.5s;
    cursor: pointer;
    border: 2px solid #f2f2f2;
}

.hero .btn-get-started:hover {
    background-color: color-mix(in srgb, #f2f2f2 90%, #252525 15%);
}

/*--------------------------------------------------------------
# Auth Section
--------------------------------------------------------------*/
.card-auth {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    width: 100%;
    padding: 0.625rem 1.25rem; /* 10px 20px */
}

.card-auth .information {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.card-auth h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    text-align: center;
    color: #ffffff;
}

.card-auth button,
.card-auth a {
    background: #ffffff;
    border-radius: 13px;
    padding: 0.625rem 1.25rem; /* 10px 20px */
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.375rem; /* 22px */
    color: #000000;
    height: 50px;
    margin: 0px 0.625rem; /* 10px */
    align-content: center;
}

@media (max-width: 768px) {
    .card-auth {
        padding: 0.3125rem 0.9375rem; /* 5px 15px */
    }
    .card-auth .information {
        font-size: 0.9375rem; /* 15px */
        line-height: 1.3125rem; /* 21px */
    }
    .card-auth h2 {
        font-size: 0.9375rem; /* 15px */
        line-height: 1.3125rem; /* 21px */
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 3.125rem 0px; /* 50px */
}
.about .content h3 {
    font-weight: 700;
    font-size: 2.125rem; /* 34px */
}

.about .content p {
    margin-bottom: 1.875rem; /* 30px */
}

.about .content .about-btn {
    padding: 0.5rem 1.875rem 0.5625rem 1.875rem; /* 8px 30px 9px 30px */
    color: var(--accent-color);
    border-radius: 50px;
    transition: 0.3s;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8125rem; /* 13px */
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--accent-color);
}

.about .content .about-btn i {
    font-size: 1rem; /* 16px */
    padding-left: 0.3125rem; /* 5px */
}

.about .content .about-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about .icon-box {
    margin: 3.125rem 0px; /* 50px */
    width: 100%;
    padding: 1.875rem; /* 30px */
    color: #fff;
    background: #000000;
    border-radius: 30px;
}

.about .icon-box > div {
    flex-wrap: nowrap;
}

.about .icon-box i {
    font-size: 2.5rem; /* 40px */
    color: #fff;
    margin-bottom: 0.625rem; /* 10px */
}

.about .icon-box h4 {
    font-size: 2rem; /* 32px */
    font-weight: 600;
    /* margin: 0 0 0.625rem 0; /* 10px */
    line-height: 2.25rem; /* 40px */
    color: #fff;
    text-align: center;
}

.about .icon-box h4 a {
    color: #fff;
    transition: 0.3s;
}

.about .icon-box p {
    font-size: 0.9375rem; /* 15px */
    margin-bottom: 0;
}

.about .icon-box:hover h4 a {
    color: var(--accent-color);
}

.about .icon-box .content-right {
    margin: 0;
    /* padding: 1.25rem; /* 20px */
    text-align: center;
}

.about .icon-box .content-right h3 {
    font-size: 2rem; /* 32px */
    font-weight: 600;
    /* margin: 0 0 0.625rem 0; /* 10px */
    /* line-height: 2.5rem; /* 40px */
    color: #fff;
}

.about .icon-box .content-right div {
    font-size: 0.9375rem; /* 15px */
    font-weight: 300;
    /* margin: 0 0 0.625rem 0; /* 10px */
    /* line-height: 1.25rem; /* 20px */
    color: #fff;
}

@media (max-width: 768px) {
    .about .icon-box > div {
        flex-wrap: wrap;
    }
    .about .icon-box h4 {
        font-size: 1.375rem; /* 22px */
    }
    .about .icon-box p {
        font-size: 0.625rem; /* 10px */
    }

    .about .icon-box .content-right {
        /* padding: 0.625rem; /* 10px */
        text-align: center;
    }

    .about .icon-box .content-right h3 {
        font-size: 1.375rem; /* 22px */
    }

    .about .icon-box .content-right div {
        font-size: 0.625rem; /* 10px */
    }
}

@media (max-width: 768px) {
    .how-blockdev .how-blockdev-helps h1 {
        /* font-size: 1.375rem; /* 22px */
    }

    .how-blockdev .card-white h4 {
        font-size: 1.25rem !important; /* 20px */
    }
    .how-blockdev .card-white p {
        font-size: 0.9375rem !important; /* 15px */
    }
}
/*--------------------------------------------------------------
# Knowledge Section
--------------------------------------------------------------*/
.about-us {
    /* margin: 3.125rem 0px; /* 50px */
    color: #fff;
}
.about-us h2 {
    color: #fff;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    line-height: 2.8125rem; /* 45px */
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.about-us p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    color: #ffffff;
}

.about-us .right-content {
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg17.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.about-us .right-content:before {
    background: linear-gradient(90deg, #000000 0%, rgba(102, 102, 102, 0) 100%);
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
}

.how-blockdev .card-blur {
    margin: 1.25rem 0px; /* 20px */
    width: 100%;
    min-height: 210px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(35px);
    padding: 1.875rem; /* 30px */
    border-radius: 40px;
    color: #fff;
}

/*--------------------------------------------------------------
# Our Activity Section
--------------------------------------------------------------*/
.our-activity h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    line-height: 2.8125rem; /* 45px */
    text-align: center;
    color: #ffffff;
    margin: 0.75rem 0;
}

.our-activity p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    text-align: center;
    color: #ffffff;
}

.our-activity .card-box {
    color: #fff;
    width: 100%;
    height: 23rem;
    margin: 1.5rem 0px;
}

.our-activity .content-1 {
    border-radius: 40px;
    color: #fff;
    width: 100%;
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg19.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.our-activity .content-2 {
    border-radius: 40px;
    color: #fff;
    width: 100%;
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg18.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.our-activity .content-3 {
    border-radius: 40px;
    color: #fff;
    width: 100%;
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg20.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.our-activity .card-box .content {
    text-align: center;
}

.our-activity .card-box .content:before {
    background: linear-gradient(
        360deg,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(102, 102, 102, 0) 100%
    );
    border-radius: 0px 0px 40px 40px;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    margin: 0px 10px;
}

.our-activity .card-box .content h4 {
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    line-height: 1.5rem; /* 24px */
    margin: 1.25rem 0px; /* 20px */
    color: #fff;
    position: relative;
    inset: 0;
    z-index: 2;
    bottom: 0;
}

.our-activity .card-box .content p {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    margin: 1.25rem 0px; /* 20px */
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.our-team h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    line-height: 2.8125rem; /* 45px */
    text-align: center;
    color: #ffffff;
}

.our-team p {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    text-align: center;
    color: #ffffff;
}

.our-team .card-box {
    position: relative;
    color: #fff;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #ffffff;
    border-radius: 100px 100px 0px 0px;
}

.our-team .card-box img {
    /* border: 1px solid #ffffff; */
    border-radius: 100px 100px 0px 0px;
}

.our-team .card-footer {
    width: 100%;
    height: 5rem;
    padding: 0 0.5rem;
    background: #ffffff;
    border-radius: 0px 0px 0px 35px;
    align-content: center;
    text-align: center;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    color: rgba(0, 0, 0, 0.7);
}

.our-team .card-box .content {
    text-align: center;
    background: linear-gradient(180deg, #3171f6 0%, #1d4290 100%);
    border-radius: 0px 35px 0px 0px;
    position: absolute;
    bottom: 0;
    width: 80%;
    align-content: center;
    z-index: 0;
}

.our-team .card-box .content h4 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 0.75rem 0.5rem;
    /* line-height: 1.5rem; /* 24px */
    margin: 0;
}

.our-activity .card-box .content p {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    margin: 1.25rem 0px; /* 20px */
}

/*--------------------------------------------------------------
# Knowledge Section
--------------------------------------------------------------*/
.knowledge {
    margin-bottom: 3.125rem; /* 50px */
}

.knowledge-header {
    /* height: 750px; */
    display: inherit;
}

.knowledge-header .box-left {
    /* height: 650px; */
    background: #fff;
    border-radius: 0px 0px 100px 0px;
}

.knowledge-header .box-left h2 {
    font-weight: 700;
    font-size: 4rem; /* 64px */
    line-height: 4.1875rem; /* 67px */
}

.knowledge-header .box-left p {
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    text-align: right;
}

.knowledge-header .box-middle {
    height: 240px;
    background: #fff;
    padding: 0.3125rem 0px; /* 5px */
    margin: 0px;
}

.knowledge-header .box-right {
    height: 650px;
    background: #fff;
    border-radius: 0px 0px 0px 100px;
}

.knowledge {
    margin-top: 3.125rem; /* 50px */
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid #ffffff;
    backdrop-filter: blur(25px);
    border-radius: 50px;
}

@media (max-width: 768px) {
    .knowledge-header {
        padding: 0px;
        height: 500px;
    }

    .knowledge-header .box-left {
        height: 500px;
    }

    .knowledge-header .box-left h2 {
        font-weight: 700;
        font-size: 3rem; /* 48px */
        line-height: 3.25rem; /* 52px */
    }

    .knowledge-header .box-left p {
        font-weight: 500;
        font-size: 0.875rem; /* 14px */
        line-height: 1.125rem; /* 18px */
        text-align: right;
    }

    .card-blockdev a .card-body h5 {
        font-size: 0.9375rem !important; /* 15px */
        letter-spacing: 0px;
    }
    .card-blockdev a .card-body .card-text {
        font-size: 0.625rem; /* 10px */
        letter-spacing: 0px;
    }
}

/*--------------------------------------------------------------
# Event Section
--------------------------------------------------------------*/
.event-header {
    /* height: 750px; */
    display: inherit;
}

.event-header .box-left {
    height: 650px;
    background: #fff;
    border-radius: 0px 0px 100px 0px;
}

.event-header .box-left h2 {
    font-weight: 700;
    font-size: 4rem;
    line-height: 4.1875rem; /* 67px */
}

.event-header .box-left p {
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    text-align: right;
}

.event-header .box-middle {
    height: 18rem;
    background: #fff;
    padding: 0.3125rem 0px; /* 5px */
    margin: 0px;
}

.event-header .box-right {
    height: 650px;
    background: #fff;
    border-radius: 0px 0px 0px 100px;
}

.about-header-text > h2,
.event-header-text > h2,
.knowledge-header-text > h2 {
    text-align: right !important;
}

.event {
    margin: 3.125rem 0;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid #ffffff;
    backdrop-filter: blur(25px);
    border-radius: 50px;
}

@media (max-width: 768px) {
    .event-header {
        padding: 0px;
        height: 500px;
    }

    .event-header .box-left {
        height: 500px;
    }

    .event-header .box-left h2 {
        font-weight: 700;
        font-size: 3rem; /* 48px */
        line-height: 3.25rem; /* 52px */
    }

    .event-header .box-left p {
        font-weight: 500;
        font-size: 0.875rem; /* 14px */
        line-height: 1.125rem; /* 18px */
        text-align: right;
    }

    .about-header-text > h2,
    .event-header-text > h2,
    .knowledge-header-text > h2 {
        text-align: left !important;
    }

    .about-header-text > p,
    .event-header-text > p,
    .knowledge-header-text > p {
        text-align: justify !important;
    }
}

/*--------------------------------------------------------------
# Event Section
--------------------------------------------------------------*/
.event-detail {
    height: auto;
}

.event-detail .header {
    color: #000;
}

.event-detail .event-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 2.5rem; /* 40px */
    line-height: 4.1875rem; /* 67px */
    text-align: center;
    color: #000000;
}

.event-detail .banner {
    box-sizing: border-box;
    border: 2px solid #3171f6;
    border-radius: 20px;
}

.event-detail .other-event h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.5rem; /* 24px */
    line-height: 1.5rem; /* 24px */
    color: rgba(0, 0, 0, 0.9);
}

.event-detail .banner img {
    border-radius: 20px;
}

.event-detail .input-group svg {
    color: #000;
    position: absolute;
    left: 5px;
    top: 10px;
}

.event-detail .input-group input {
    background: transparent;
    padding-left: 1.875rem; /* 30px */
}

.event-detail .other-event-list img {
    box-sizing: border-box;
    border: 2px solid #3171f6;
    border-radius: 20px;
}

.event-detail .other-event input {
    color: #000 !important;
}

.event-detail-content {
    box-sizing: border-box;
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg11.png");
    background-repeat: repeat-y;
    background-size: cover;
    border: 1px solid #ffffff;
    backdrop-filter: blur(25px);
    border-radius: 50px;
    padding: 1.875rem; /* 30px */
}

.event-detail-content .event-author {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.625rem 1.5625rem; /* 10px 25px */
    color: #fff;
    width: fit-content;
}

.event-detail-content .event-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    line-height: 3.125rem; /* 50px */
    color: #ffffff;
    margin: 1.25rem 0px; /* 20px */
}

.event-detail-content .event-banner {
    box-sizing: border-box;
    border: 2px solid #3171f6;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}

.event-detail-content .event-description {
    color: #ffffff !important;
    font-family: "Poppins";
    margin: 1.25rem 0px; /* 20px */
}

@media (max-width: 768px) {
    .event-detail {
        align-items: flex-start;
    }
    .event-detail .header {
        margin: 1.25rem 0px; /* 20px */
    }
    .event-detail-content {
        padding: 0.625rem; /* 10px */
    }
}

/*--------------------------------------------------------------
# Knowledge Section
--------------------------------------------------------------*/
.knowledge-detail {
    height: auto;
    border-radius: 0px;
}

.knowledge-detail .header {
    color: #000;
}

.knowledge-detail .knowledge-author {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
}

.knowledge-detail .knowledge-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    line-height: 3.125rem; /* 50px */
    color: #000;
    margin: 1.25rem 0px; /* 20px */
}

.knowledge-detail .knowledge-banner {
    box-sizing: border-box;
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}

.knowledge-detail .knowledge-description {
    color: #ffffff !important;
    font-family: "Poppins";
    margin: 1.25rem 0px; /* 20px */
}

.knowledge-detail .input-group svg {
    color: #000;
    position: absolute;
    left: 5px;
    top: 10px;
}

.knowledge-detail .input-group input {
    background: transparent;
    padding-left: 1.875rem; /* 30px */
}

.knowledge-detail .other-knowledge .other-knowledge-list div {
    margin: 1.25rem 0px; /* 20px */
}

.knowledge-detail .other-knowledge .other-knowledge-list h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    line-height: 1.5rem; /* 24px */
    color: rgba(0, 0, 0, 0.9);
    padding: 1.25rem 0px; /* 20px */
}

.knowledge-detail .other-knowledge .other-knowledge-list img {
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.knowledge-detail .other-knowledge input {
    color: #000 !important;
}

.knowledge-tag-detail {
    margin: 1.25rem 0px !important; /* 20px */
    padding: 1.875rem 0px; /* 30px */
}

.knowledge-tag-detail .knowledge-tag {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    color: #ffffff;
}

.knowledge-tag-detail .knowledge-tag a span {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 0.9375rem; /* 15px */
    line-height: 1.5rem; /* 24px */
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin: 0.3125rem; /* 5px */
    padding: 0.625rem 0.9375rem; /* 10px 15px */
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
    padding: 0.625rem 0; /* 10px */
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    position: relative;
    height: 100%;
    margin-bottom: 1.875rem; /* 30px */
}

.services .service-item .icon {
    margin-right: 1.25rem; /* 20px */
}

.services .service-item .icon i {
    color: var(--accent-color);
    font-size: 2.5rem; /* 40px */
    line-height: 0;
    transition: 0.3s;
}

.services .service-item:hover .icon i {
    color: var(--accent-color);
}

.services .service-item .title {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 0.625rem; /* 10px */
    font-size: 1.25rem; /* 20px */
    transition: 0.3s;
}

.services .service-item .description {
    font-size: 0.9375rem; /* 15px */
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0.625rem; /* 10px */
}

.services .service-item .readmore {
    display: flex;
    align-items: center;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    transition: 0.3s;
    font-weight: 700;
    font-size: 0.875rem; /* 14px */
}

.services .service-item .readmore i {
    margin-left: 0.5rem; /* 8px */
}

.services .service-item:hover .title,
.services .service-item:hover .readmore,
.services .service-item:hover .icon i {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    --background-color: none;
}

.call-to-action .container {
    padding: 5rem 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    clip-path: inset(0 round 15px);
}

.call-to-action .container img {
    position: fixed;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}

.call-to-action .container:before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.call-to-action .container .content {
    position: relative;
    z-index: 3;
}

.call-to-action h3 {
    color: var(--default-color);
    font-size: 1.75rem; /* 28px */
    font-weight: 700;
    margin-bottom: 1.25rem; /* 20px */
}

.call-to-action p {
    color: var(--default-color);
    margin-bottom: 1.25rem; /* 20px */
}

.call-to-action .pulsating-play-btn {
    display: inline-block;
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1rem; /* 16px */
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.75rem 2.5rem; /* 12px 40px */
    border-radius: 5px;
    transition: 0.5s;
    margin: 0.625rem; /* 10px */
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}

@keyframes pulsate-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0 0 1.25rem 0; /* 20px */
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
    margin: 0 0.625rem; /* 10px */
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 0.875rem; /* 14px */
        margin: 0 0.3125rem; /* 5px */
    }
}

.portfolio .portfolio-content {
    /*background-color: var(--surface-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);*/
    height: 100%;
    overflow: hidden;
    text-align: center;
}

.portfolio .portfolio-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
    width: 100px;
}

.portfolio .portfolio-content .portfolio-info {
    background-color: var(--background-color);
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 1.5625rem 1.25rem; /* 25px 20px */
    position: relative;
    z-index: 2;
}

.portfolio .portfolio-content .portfolio-info h4 {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    padding-right: 3.125rem; /* 50px */
}

.portfolio .portfolio-content .portfolio-info h4 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.portfolio .portfolio-content .portfolio-info h4 a:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-content .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.875rem; /* 14px */
    margin-bottom: 0;
    padding-right: 3.125rem; /* 50px */
}

.portfolio .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# How Blockdev
--------------------------------------------------------------*/
.how-blockdev {
    padding: 3.125rem; /* 50px */
}

.how-blockdev .text-white {
    margin: 1rem 0;
}

.how-blockdev .card-white {
    margin: 1.25rem 0px; /* 20px */
    width: 100%;
    min-height: 210px;
    filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.25));
    padding: 1.875rem; /* 30px */
    border-radius: 40px;
    background: #ffffff;
}

.how-blockdev .card-white h4 {
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    line-height: 1.5rem; /* 24px */
}

.how-blockdev .card-white p {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
}

.how-blockdev .card-blur {
    margin: 1.25rem 0px; /* 20px */
    width: 100%;
    min-height: 210px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(35px);
    padding: 1.875rem; /* 30px */
    border-radius: 40px;
    color: #fff;
}

.how-blockdev .card-blur h4 {
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    line-height: 1.5rem; /* 24px */
}

.how-blockdev .card-blur p {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
}

.how-blockdev .card-middle {
    margin: 1.25rem 0px; /* 20px */
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg16.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 60vh;
    border-radius: 40px;
    color: #fff;
    padding: 1.875rem; /* 30px */
}

.how-blockdev .card-middle .content h4 {
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    line-height: 1.5rem; /* 24px */
    margin: 1.25rem 0px; /* 20px */
    color: #fff;
}

.how-blockdev .card-middle p {
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    margin: 1.25rem 0px; /* 20px */
}

@media (max-width: 768px) {
    .how-blockdev {
        padding: 1.875rem; /* 30px */
    }
    .how-blockdev .btn-grad-oval {
        /* margin: 1.25rem 0px; /* 20px */
    }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team {
}
.team .team-member {
    background-color: var(--contrast-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    border-radius: 5px;
    transition: 0.5s;
    padding: 1.875rem; /* 30px */
    height: 100%;
    color: #000000;
}

@media (max-width: 468px) {
    .team .team-member {
        flex-direction: column;
        justify-content: center !important;
        align-items: center !important;
    }
}

.team .team-member .pic {
    overflow: hidden;
    width: 150px;
    border-radius: 5%;
    flex-shrink: 0;
}

.team .team-member .pic img {
    transition: ease-in-out 0.3s;
}

.team .team-member:hover {
    transform: translateY(-0.625rem); /* -10px */
}

.team .team-member .member-info {
    padding-left: 1.875rem; /* 30px */
}

@media (max-width: 468px) {
    .team .team-member .member-info {
        padding: 1.875rem 0 0 0; /* 30px */
        text-align: center;
    }
}

.team .team-member h4 {
    font-weight: 700;
    margin-bottom: 0.3125rem; /* 5px */
    font-size: 1.25rem; /* 20px */
    color: #000000;
}

.team .team-member span {
    display: block;
    font-size: 0.9375rem; /* 15px */
    padding-bottom: 0.625rem; /* 10px */
    position: relative;
    font-weight: 500;
}

.team .team-member span::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 85%);
    bottom: 0;
    left: 0;
}

@media (max-width: 468px) {
    .team .team-member span::after {
        left: calc(50% - 1.5625rem); /* 25px */
    }
}

.team .team-member p {
    margin: 0.625rem 0 0 0; /* 10px */
    font-size: 0.875rem; /* 14px */
}

.team .team-member .social {
    margin-top: 0.75rem; /* 12px */
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

@media (max-width: 468px) {
    .team .team-member .social {
        justify-content: center;
    }
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--default-color), transparent 94%);
    transition: ease-in-out 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    width: 36px;
    height: 36px;
}

.team .team-member .social a i {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1rem; /* 16px */
    margin: 0 0.125rem; /* 2px */
}

.team .team-member .social a:hover {
    background: var(--accent-color);
}

.team .team-member .social a:hover i {
    color: var(--contrast-color);
}

.team .team-member .social a + a {
    margin-left: 0.5rem; /* 8px */
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--background-color);
    padding: 3.75rem 2.5rem; /* 60px 40px */
    height: 100%;
    border-radius: 5px;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 0.9375rem; /* 15px */
    font-size: 1.25rem; /* 20px */
}

.pricing h4 {
    color: var(--accent-color);
    font-size: 3rem; /* 48px */
    font-weight: 400;
    font-family: var(--heading-font);
    margin-bottom: 0;
}

.pricing h4 sup {
    font-size: 1.75rem; /* 28px */
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 1.125rem; /* 18px */
}

.pricing ul {
    padding: 1.25rem 0; /* 20px */
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 1.25rem; /* 20px */
}

.pricing ul li {
    padding: 0.625rem 0; /* 10px */
    display: flex;
    align-items: center;
}

.pricing ul i {
    color: #059652;
    font-size: 1.5rem; /* 24px */
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    color: var(--accent-color);
    display: inline-block;
    padding: 0.5rem 2.1875rem 0.625rem 2.1875rem; /* 8px 35px 10px 35px */
    border-radius: 50px;
    transition: none;
    font-size: 1rem; /* 16px */
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
    border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .featured {
    border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
}

@media (max-width: 992px) {
    .pricing .box {
        max-width: 60%;
        margin: 0 auto 1.875rem auto; /* 30px */
    }
}

@media (max-width: 767px) {
    .pricing .box {
        max-width: 80%;
        margin: 0 auto 1.875rem auto; /* 30px */
    }
}

@media (max-width: 420px) {
    .pricing .box {
        max-width: 100%;
        margin: 0 auto 1.875rem auto; /* 30px */
    }
}

/*--------------------------------------------------------------
# Journey Section
--------------------------------------------------------------*/

.journey .section-title h2 {
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    line-height: 2.8125rem; /* 45px */
    margin: 1rem 0;
    color: #fff;
}

.journey .section-title p {
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    margin: 0.5rem 0; /* 20px */
    color: #fff;
}

.owl-carousel .owl-item {
    /* width: 256px !important; */
    margin: 0 !important;
}

.lol {
    width: 100% !important;
}

@media (max-width: 768px) {
    .journey .section-title h2 {
        font-size: 1.6875rem; /* 27px */
    }
    .journey .section-title p {
        font-size: 1.125rem; /* 18px */
    }
}

/*--------------------------------------------------------------
# Next Event Section
--------------------------------------------------------------*/

.next-event .section-title {
    padding: 1rem;
}

.next-event .section-title h2 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 2.8125rem;
    margin-top: 1.25rem;
    color: #fff;
}

.next-event .section-title p {
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    margin-top: 1.25rem; /* 20px */
    color: #fff;
}

.next-event .next-event-slider .swiper-slide .next-event-box {
    border-radius: 20px;
    width: 100%;

    aspect-ratio: 16 / 9; /* atau sesuai gambar */
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.next-event .next-event-slider .swiper-slide .next-event-box .btn-grad-oval {
    margin: 0.625rem; /* 10px */
    padding: 0.625rem 1.125rem; /* 10px 18px */
    font-family: "Poppins";
    font-size: 0.75rem; /* 12px */
    line-height: 0.9375rem; /* 15px */
}

@media (max-width: 768px) {
    /* .next-event .section-title h2 {
        font-size: 1.6875rem;
    }
    .next-event .section-title p {
        font-size: 1.125rem;
    } */

    .next-event .next-event-slider .swiper-slide .next-event-box {
        width: 100%;
    }
    .next-event
        .next-event-slider
        .swiper-slide
        .next-event-box
        .btn-grad-oval {
        margin: 0.625rem; /* 10px */
        padding: 0.625rem 1.125rem; /* 10px 18px */
        font-family: "Poppins";
        font-size: 0.625rem; /* 10px */
        line-height: 0.5rem; /* 8px */
    }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
    position: relative;
    padding: 1.25rem 0; /* 20px */
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
    margin: 0 1.875rem 0 0; /* 30px */
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 0.3125rem; /* 5px */
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 1.25rem; /* 20px */
    right: 1.25rem; /* 20px */
    font-size: 1rem; /* 16px */
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 0.625rem; /* 10px */
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background-image: url("../img/contact-bg.png");
    background-position: left center;
    background-repeat: no-repeat;
    position: relative;
}

@media (max-width: 640px) {
    .contact {
        background-position: center 50px;
        background-size: contain;
    }
}

.contact:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.contact .info-item + .info-item {
    margin-top: 2.5rem; /* 40px */
}

.contact .info-item i {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-size: 1.25rem; /* 20px */
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 0.9375rem; /* 15px */
}

.contact .info-item h3 {
    padding: 0;
    font-size: 1.125rem; /* 18px */
    font-weight: 700;
    margin-bottom: 0.3125rem; /* 5px */
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 0.875rem; /* 14px */
}

.contact .php-email-form {
    height: 100%;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
    font-size: 0.875rem; /* 14px */
    padding: 0.625rem 0.9375rem; /* 10px 15px */
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(
        in srgb,
        var(--background-color),
        transparent 50%
    );
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 0.625rem 1.875rem; /* 10px 30px */
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 1.25rem; /* 20px */
    position: relative;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 1.875rem; /* 30px */
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 1.375rem; /* 22px */
    font-weight: 700;
    margin-bottom: 1.25rem; /* 20px */
    padding-bottom: 1.25rem; /* 20px */
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 0.9375rem; /* 15px */
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 0.625rem; /* 10px */
}

.portfolio-details .portfolio-description {
    padding-top: 1.875rem; /* 30px */
}

.portfolio-details .portfolio-description h2 {
    font-size: 1.625rem; /* 26px */
    font-weight: 700;
    margin-bottom: 1.25rem; /* 20px */
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 0.625rem 1.875rem; /* 10px 30px */
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 1.25rem; /* 20px */
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 0.5rem 0 0.5rem 0.9375rem; /* 8px 0 8px 15px */
    border-left: 3px solid
        color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 1.25rem 0; /* 20px */
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 1.25rem; /* 20px */
}

.service-details h3 {
    font-size: 1.625rem; /* 26px */
    font-weight: 700;
}

.service-details h4 {
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
}

.service-details p {
    font-size: 0.9375rem; /* 15px */
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 0.9375rem; /* 15px */
}

.service-details ul li {
    padding: 0.3125rem 0; /* 5px */
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 1.25rem; /* 20px */
    margin-right: 0.5rem; /* 8px */
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}

.switch {
    position: relative;
    height: 40px;
    width: 125px;
    padding: 0px 0.3125rem; /* 5px */
    border-radius: 20px;
    background: #16222a; /* fallback for old browsers */
    background: -webkit-linear-gradient(
        to right,
        #282842,
        #000000
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
        to right,
        #282842,
        #000000
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border: 1px solid #fff;
}

.switch-label {
    position: relative;
    z-index: 2;
    /* float: left; */
    width: 50%;
    font-size: 0.6875rem; /* 11px */
    text-align: center;
    cursor: pointer;
    margin: 0;
    line-height: 0.1875rem; /* 3px */
}

@media (max-width: 1200px) {
    .switch-label {
        top: 5px;
        left: 0.5625rem; /* 9px */
    }
}

.switch-label:active {
    letter-spacing: 1px;
    text-align: center;
    color: #282828 !important;
}

.header-social-links .switch-label-on a {
    color: #282828 !important;
    font-size: 0.75rem; /* 12px */
    padding-left: 0px;
}

.header-social-links .switch-label-off a {
    color: #ffffff !important;
    font-size: 0.75rem; /* 12px */
    font-weight: bolder;
    padding-left: 0px;
}

.switch-input {
    display: none;
}

.switch-input:checked + .switch-label {
    color: #000;
    -webkit-transition: 0.15s ease-out;
    -moz-transition: 0.15s ease-out;
    -ms-transition: 0.15s ease-out;
    -o-transition: 0.15s ease-out;
    transition: 0.15s ease-out;
    -webkit-transition-property: color, text-shadow;
    -moz-transition-property: color, text-shadow;
    -ms-transition-property: color, text-shadow;
    -o-transition-property: color, text-shadow;
    transition-property: color, text-shadow;
}

.switch .switch-label-on {
    font-weight: bold;
    color: #000;
}

.switch-input:checked + .switch-label-on ~ .switch-selection {
    left: 60px;
    /* Note: left: 50%; doesn't transition in WebKit */
}

.switch-selection {
    position: absolute;
    z-index: 1;
    top: 4px;
    left: 4px;
    display: block;
    width: 58px;
    height: 30px;
    border-radius: 15px;
    box-shadow:
        0 1px 1px 0 rgba(0, 0, 0, 0.1),
        0 0 1px 0 rgba(0, 0, 0, 0.12);
    border-style: solid;
    border-width: 0.5px;
    border-image-source: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.06) 20%,
        rgba(255, 255, 255, 0)
    );
    border-image-slice: 1;
    background-image:
        linear-gradient(to bottom, #f0f2f5, #f0f2f5),
        linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.06) 20%,
            rgba(255, 255, 255, 0)
        );
    background-origin: border-box;
    background-clip: content-box, border-box;
    -webkit-transition: left 0.15s ease-out;
    -moz-transition: left 0.15s ease-out;
    -ms-transition: left 0.15s ease-out;
    -o-transition: left 0.15s ease-out;
    transition: left 0.15s ease-out;
    color: #282828 !important;
}

.card-blockdev {
    border: none;
    background: #fff;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    border-radius: 35px;
}

.input-search {
    border: 1px solid #ffffff !important;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25)) !important;
    border-radius: 50px;
    background: transparent !important;
    color: #fff;
    padding-left: 2.625rem; /* 42px */
}

.input-search::placeholder {
    color: #fff;
    opacity: 1;
}

/*--------------------------------------------------------------
# Knowledge Section
--------------------------------------------------------------*/
.dashboard {
    height: auto;
    border-radius: 0px;
    padding-bottom: 0px;
    display: block;
}

@media (max-width: 768px) {
    .dashboard {
        padding: 0px !important;
        border: none;
        display: none;
    }

    .dashboard .dashboard-ext {
        display: none;
    }
    .dashboard-box {
        margin-top: 5rem; /* 80px */
        padding: 0.3125rem 1.25rem; /* 5px 20px */
    }
}

.dashboard .dashboard-ext {
    height: auto;
    background: #000000;
    border-radius: 200px 200px 0px 0px;
    width: 100%;
    text-align: center;
    position: relative;
}

.dashboard .dashboard-ext .image:before {
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg13.png") !important;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    margin: 0 auto;
    top: -90px;
}

.dashboard .dashboard-ext img {
    margin-top: -10%;
}

.dashboard-detail .idbuidl-information {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 30px;
    padding: 1.25rem; /* 20px */
    margin-bottom: 1.875rem; /* 30px */
    color: #fff;
}

.dashboard-detail .idbuidl-information .btn-grad-oval {
    background: linear-gradient(90deg, #3171f6 -11.6%, #71d69b 88.4%);
    border-radius: 50px;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 0.9375rem; /* 15px */
    line-height: 1.5rem; /* 24px */
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.dashboard-box {
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg12.png") !important;
    background-size: cover;
    background-repeat: repeat-y;
    backdrop-filter: blur(25px);
    border: 1px solid #ffffff;
    border-radius: 50px;
    /* padding: 3.125rem 1.25rem; /* 50px 20px */
}

.dashboard-box h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    line-height: 2.8125rem; /* 45px */
    text-align: center;
    color: #ffffff;
}

.course-category .other-course-categories {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 1.25rem; /* 20px */
}

.course-category .other-course-categories img {
    box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
}

.course-category .other-course-categories h2 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    line-height: 1.5rem; /* 24px */
    color: #ffffff;
    padding: 0.625rem 0px; /* 10px */
    border-bottom: 1px solid #fff;
}

.course-category .nav-link {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    color: rgba(255, 255, 255, 0.8);
    padding: 0.9375rem 1.5625rem; /* 15px 25px */
    margin-bottom: 0.625rem; /* 10px */
}

.course-category h2 {
    padding: 0.9375rem 1.5625rem; /* 15px 25px */
    margin-bottom: 0.625rem; /* 10px */
    border-bottom: 1px solid #fff;
}

.course-detail {
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg11.png") !important;
    background-size: cover;
    background-repeat: repeat-y;
    backdrop-filter: blur(25px);
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    color: rgba(255, 255, 255, 0.8);
}

.course-detail h2 {
    padding: 0.9375rem 1.5625rem; /* 15px 25px */
    margin-bottom: 0.625rem; /* 10px */
    border-bottom: 1px solid #fff;
}

.profile,
.idbuidl-membership {
    margin: 1.25rem 0px; /* 20px */
    background: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    padding: 0.9375rem 1.5625rem; /* 15px 25px */
    min-height: 200px;
}

.profile .wallet-address button {
    background: #ffffff;
    border-radius: 13px;
    padding: 0.625rem 1.5625rem; /* 10px 25px */
    color: #000000;
}

.idbuidl-membership h2 {
    color: #fff !important;
}

.idbuidl-membership .form-hint {
    color: #fff !important;
}

label {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    color: #ffffff;
}

input,
textarea {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(25px);
    border-radius: 10px;
    color: #fff !important;
    border: none !important;
}

.btn-primary {
    background: linear-gradient(90deg, #3171f6 -11.6%, #71d69b 88.4%);
    border-radius: 50px;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.75rem;
    margin: 0.5rem;

    border: none;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    /* font-size: 1.125rem; /* 18px */
    /* line-height: 1.5rem; /* 24px */
    color: rgba(255, 255, 255, 0.8);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    /* margin: 0px 0.625rem; /* 10px */
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    /* font-size: 1.125rem; /* 18px */
    /* line-height: 1.5rem; /* 24px */
    text-align: center;
    color: rgba(0, 0, 0, 0.8);
    padding: 0.425rem;
    /* padding: 0.625rem 1.5625rem; /* 10px 25px */
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: rgba(0, 0, 0, 0.5) !important;
    border-radius: 8px;
    border: none;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    /* font-size: 1.125rem; /* 18px */
    /* line-height: 1.5rem; /* 24px */
    color: rgba(255, 255, 255, 0.8);
    /* padding: 0.625rem 1.5625rem; /* 10px 25px */
}

input[type="radio"]:checked {
    background-color: #007bff; /* Color of the checked state */
    border-color: #007bff;
}

/* Optional: Add an inner circle for the checked state */
input[type="radio"]:checked::before {
    content: "";
    display: block;
    width: 0.5rem; /* 8px */
    height: 0.5rem; /* 8px */
    background-color: #000; /* Color of the inner circle */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
# Hackathon Section
--------------------------------------------------------------*/
.hackathon-header {
    /* height: 700px; */
    display: inherit;
}

.hackathon-header .box-middle {
    height: 80dvh;
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg15.png") !important;
    background-repeat: no-repeat;
    background-position: center !important;
    background-size: cover !important;
    background: linear-gradient(
        360deg,
        #000000 0%,
        rgba(102, 102, 102, 0) 100%
    );
    border-radius: 0px 0px 30px 30px;
    /* margin: 20px 10px; */
}

.hackathon-header .box-middle:before {
    background: linear-gradient(
        360deg,
        #000000 0%,
        rgba(102, 102, 102, 0) 100%
    );
    border-radius: 0px 0px 30px 30px;
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hackathon-header .box-middle div {
    z-index: 2;
    padding: 3rem;
}

.hackathon-header .box-middle div h2 {
    font-weight: 700;
    font-size: 4rem; /* 64px */
    line-height: 4.1875rem; /* 67px */
    color: #fff;
}

.hackathon-header .box-middle div p {
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.5rem; /* 24px */
    text-align: center;
    color: #fff;
}

.hackathon-section .card {
    background: #ffffff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    padding: 0.625rem; /* 10px */
}

.hackathon-section .card .hackathon-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hackathon-section .card .hackathon-image img {
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.15);
    border-radius: 30px;
    margin: 0px 0.3125rem; /* 5px */
    width: 100%;
}

.hackathon-section .card .hackathon-information h3 {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    line-height: 2.25rem; /* 36px */
    color: #171717;
}

.hackathon-section .card .hackathon-information small {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.6875rem; /* 27px */
    color: rgba(23, 23, 23, 0.6);
}

.hackathon-section .card .hackathon-information .hackathon-date {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 1.0625rem; /* 17px */
    line-height: 1.625rem; /* 26px */
    color: #171717;
}

.hackathon-section .card .hackathon-information .hackathon-theme {
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid rgba(23, 23, 23, 0.25);
    margin: 0.3125rem 0px !important; /* 5px */
    padding: 0.3125rem 0.9375rem; /* 5px 15px */
    border-radius: 50px;
    color: #000;
    display: inline-block;
    font-size: 0.75rem; /* 12px */
    font-weight: 500;
}

.hackathon-section .card .hackathon-information .btn-signup {
    background: #256eff;
    border-radius: 50px;
    font-size: 0.875rem; /* 14px */
    line-height: 1.5625rem; /* 25px */
    font-weight: 400;
    margin: 1.25rem 0px; /* 20px */
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    padding: 0.3125rem 0.9375rem; /* 5px 15px */
}

.hackathon-detail {
    height: auto;
}

.hackathon-detail .header {
    color: #000;
}

.hackathon-detail .hackathon-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 2.5rem; /* 40px */
    line-height: 4.1875rem; /* 67px */
    text-align: center;
    color: #000000;
}

.hackathon-detail .banner {
    box-sizing: border-box;
    border: 2px solid #3171f6;
    border-radius: 20px;
}

.hackathon-detail .banner img {
    border-radius: 20px;
}

.hackathon-detail .input-group svg {
    color: #000;
    position: absolute;
    left: 5px;
    top: 0.625rem; /* 10px */
}

.hackathon-detail .input-group input {
    background: transparent;
    padding-left: 1.875rem; /* 30px */
}

.hackathon-detail-content {
    text-align: center;
    box-sizing: border-box;
    background-image: url("https://blockdev.sgp1.cdn.digitaloceanspaces.com/asset/bg/bg11.png");
    background-repeat: repeat-y;
    background-size: cover;
    border: 1px solid #ffffff;
    backdrop-filter: blur(25px);
    border-radius: 50px;
    padding: 1.875rem; /* 30px */
}

.hackathon-detail-content .hackathon-author {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.625rem 1.5625rem; /* 10px 25px */
    color: #fff;
    /* width: fit-content; */
    align-content: center;
}

.hackathon-detail-content .hackathon-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 2.5rem; /* 40px */
    line-height: 3.125rem; /* 50px */
    color: #ffffff;
    margin: 1.25rem 0px; /* 20px */
}

.hackathon-detail-content .hackathon-banner {
    box-sizing: border-box;
    border: 2px solid #3171f6;
    border-radius: 20px;
    margin: 0 auto;
    display: block;
}

.hackathon-detail-content .hackathon-description {
    color: #ffffff !important;
    font-family: "Poppins";
    margin: 1.25rem 0px; /* 20px */
}

.hackathon-card h5 {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .hackathon-header .box-middle div {
        padding: 1rem;
    }
    .hackathon-header .box-middle div h2 {
        font-weight: 700;
        font-size: 2.125rem; /* 34px */
        line-height: 2.3125rem; /* 37px */
        color: #fff;
    }

    .hackathon-header .box-middle div p {
        font-weight: 500;
        font-size: 0.75rem; /* 12px */
        line-height: 1.125rem; /* 18px */
        text-align: center;
        color: #fff;
    }
    .hackathon-section {
        padding-top: 0px;
    }
    .hackathon-section .section-heading h4 {
        font-size: 1.25rem; /* 20px */
        line-height: 1.5rem; /* 24px */
    }

    .hackathon-section .section-heading h4 span {
        font-size: 1.25rem; /* 20px */
        line-height: 1.5rem; /* 24px */
    }

    .hackathon-section .card {
        background: #ffffff;
        box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
        border-radius: 30px;
        padding: 0.625rem; /* 10px */
    }

    .hackathon-section .card .hackathon-image {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hackathon-section .card .hackathon-image img {
        box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.15);
        border-radius: 30px;
        margin: 0px 0.3125rem; /* 5px */
        height: 100px;
    }

    .hackathon-section .card .hackathon-information h3 {
        font-size: 0.75rem; /* 12px */
        line-height: 0.9375rem; /* 15px */
    }

    .hackathon-section .card .hackathon-information small {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 400;
        font-size: 0.5rem; /* 8px */
        color: rgba(23, 23, 23, 0.6);
    }

    .hackathon-section .card .hackathon-information .hackathon-date {
        font-family: "Poppins";
        font-style: normal;
        font-weight: 600;
        font-size: 0.4375rem; /* 7px */
        line-height: 0.75rem; /* 12px */
        color: #171717;
    }

    .hackathon-section .card .hackathon-information .hackathon-theme {
        box-sizing: border-box;
        background: #ffffff;
        border: 1px solid rgba(23, 23, 23, 0.25);
        margin: 0.125rem 0px !important; /* 2px */
        padding: 0.125rem 0.625rem; /* 2px 10px */
        border-radius: 50px;
        color: #000;
        display: inline-block;
        font-size: 0.5rem; /* 8px */
        font-weight: 500;
    }

    .hackathon-section .card .hackathon-information .btn-signup {
        background: #256eff;
        border-radius: 50px;
        font-size: 0.625rem; /* 10px */
        line-height: 0.9375rem; /* 15px */
        font-weight: 400;
        margin: 0.3125rem 0px; /* 5px */
        filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
        padding: 0.3125rem 0.625rem; /* 5px 10px */
    }

    .hackathon-detail {
        align-items: flex-start;
    }
    .hackathon-detail .header {
        margin: 1.25rem 0px; /* 20px */
    }

    .hackathon-detail-content {
        padding: 0.625rem; /* 10px */
    }
}

/*
---------------------------------------------
Hackathon Prize
---------------------------------------------
*/
.hackathon-prize-banner {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        rgba(37, 110, 255, 0.5) 100%
    );
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
}

.hackathon-prize-banner .thropy {
    background: url(https://hackathon.sgp1.cdn.digitaloceanspaces.com/asset/hackathon-prize-bgbanner.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    right: 15px;
    display: flex !important;
    align-items: center;
}

.hackathon-prize-banner .thropy img {
    width: 100%;
    margin: 0 auto;
}

.hackathon-prize-banner .hackathon-prize-logo {
    width: 50%;
    margin-top: 1.875rem; /* 30px */
    margin-bottom: 0.625rem; /* 10px */
    margin-left: 1.875rem; /* 30px */
}

.hackathon-prize-banner .hackathon-prize-total {
    background: #256eff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 100%;
    margin-top: 1.25rem; /* 20px */
    margin-left: 1.875rem; /* 30px */
}

.hackathon-prize-banner .hackathon-prize-total .title {
    margin-right: 0.625rem; /* 10px */
}

.hackathon-prize-banner .hackathon-prize-total .prize-pool {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 2.5rem; /* 40px */
    line-height: 3.75rem; /* 60px */
    color: #ffffff;
    margin-left: 0.625rem; /* 10px */
}

.hackathon-prize-banner .hackathon-prize-organizer {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 1.125rem; /* 18px */
    line-height: 1.6875rem; /* 27px */
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1.25rem; /* 20px */
    text-align: left;
    margin-left: 3.125rem; /* 50px */
    margin-bottom: 1.875rem; /* 30px */
}
.hackathon-prize-banner .hackathon-prize-organizer img {
    width: 35%;
}

.hackathon-prize-card {
    background: #ffffff;
    box-shadow: 0px 5px 4px #256eff;
    border-radius: 25px;
    margin-top: 1.25rem; /* 20px */
    margin-bottom: 1.25rem; /* 20px */
}

.hackathon-prize-card .hackathon-prize-title {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 1.25rem; /* 20px */
    line-height: 1.875rem; /* 30px */
    color: #000000;
}

.hackathon-prize-card .hackathon-prize-title span {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 1.875rem; /* 30px */
    line-height: 2.8125rem; /* 45px */
    background: linear-gradient(90deg, #171717 0%, #256eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.hackathon-prize-card .hackathon-prize-description {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 1.125rem; /* 18px */
    line-height: 1.6875rem; /* 27px */
    color: #171717;
}

@media (max-width: 767px) {
    .hackathon-prize-banner .hackathon-prize-total {
        font-size: 0.625rem; /* 10px */
        width: 90%;
        margin: 0 auto;
    }

    .hackathon-prize-banner .hackathon-prize-total .prize-pool {
        font-size: 1.5625rem; /* 25px */
    }

    .hackathon-prize-banner .hackathon-prize-organizer {
        font-size: 0.75rem; /* 12px */
    }

    .hackathon-prize-card .hackathon-prize-title {
        font-size: 0.875rem; /* 14px */
    }

    .hackathon-prize-card .hackathon-prize-title span {
        font-size: 1.5rem; /* 24px */
    }

    .hackathon-prize-card .hackathon-prize-description {
        font-size: 0.75rem; /* 12px */
    }

    .hackathon-prize-banner .thropy {
        display: none !important;
    }

    .hackathon-prize-banner .thropy img {
        width: 50%;
        margin: 0 auto;
    }
}

/*
---------------------------------------------
Hackathon Project Card
---------------------------------------------
*/
.hackathon-project-card {
    background: #ffffff;
    box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.25);
    border-radius: 25px;
    padding: 0.625rem; /* 10px */
    margin: 0.625rem; /* 10px */
}

.hackathon-project-card .project-image {
    background: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    height: 35vh;
    justify-content: center;
    align-items: center;
    display: flex;
}

.hackathon-project-card .project-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.hackathon-project-card .project-name {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 700;
    font-size: 1.375rem; /* 22px */
    line-height: 2.0625rem; /* 33px */
    color: #171717;
}

.hackathon-project-card .project-date {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    font-size: 1rem; /* 16px */
    line-height: 1.5rem; /* 24px */
    text-align: right;
    color: #171717;
    margin-right: 3.125rem; /* 50px */
}

.hackathon-project-card .project-button {
    background: #256eff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    margin: 0.625rem 0px; /* 10px */
    width: 80%;
    padding: 0.3125rem 0.625rem; /* 5px 10px */
    color: #ffffff;
    text-align: center;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 0.875rem; /* 14px */
    line-height: 1.3125rem; /* 21px */
}

@media (max-width: 767px) {
    .hackathon-project-card .project-name {
        font-size: 1.125rem; /* 18px */
    }

    .hackathon-project-card .project-date {
        font-size: 0.75rem; /* 12px */
    }
    .hackathon-project-card .project-button {
        font-size: 0.625rem; /* 10px */
    }
}

.nav-pills .nav-link {
    color: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    /*background: #1165a4;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);*/
    background: none;
    box-shadow: none;
    color: rgba(0, 0, 0, 0.5);
}

.mbsc-ios .mbsc-alert-title {
    color: #fff !important;
}

.background-particle {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 0;
}
