@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}

.letter-spacing{
    letter-spacing: 2px;
}

.hero-video {
    filter: blur(4px);
}

.hero-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background-color: black;
    padding: 12px 0;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 300;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.footer_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgb(0 0 0 / 46%), rgb(0 0 0 / 64%) 50%, rgb(0 0 0 / 45%) 80%);
    z-index: 1;
}

.footer {
    position: relative;
    overflow: hidden;
}

.footer-top-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background:
        linear-gradient(rgb(255, 255, 255));
    clip-path: polygon(10% 0, 90% 0, 85% 100%, 15% 100%);
    z-index: 3;
}

.footer-bottom-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background:
        linear-gradient(rgb(255, 255, 255));
    clip-path: polygon(15% 0,
            85% 0,
            90% 101%,
            10% 101%);
    z-index: 3;
}

.custom-bullets li {
    position: relative;
    padding-left: 24px;
}

.custom-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #F5D300;
    font-size: 20px;
    line-height: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 130px 10% 2px;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    margin: 20px;
}

.footer-section.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-section.quick-links h3 {
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-links-address {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-address h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-address p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.2rem 0;
}

@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        padding: 100px 12% 2px;
        gap: 0rem;
    }

    .footer-section {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        flex-direction: column;
        padding: 100px 0% 2px;
        gap: 0rem;
    }

    .footer-section {
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .footer-top-shape {
        clip-path: polygon(10% 0, 90% 0, 85% 85%, 15% 85%);
    }
}

@media (max-width: 480px) {
    .footer-top-shape {
        clip-path: polygon(10% 0, 90% 0, 85% 80%, 15% 80%);
    }
}

/*custom btn css*/
.primary-button {
    font-family: 'Ropa Sans', sans-serif;
    color: white;
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.05rem;
    border: 1px solid #0E1822;
    padding: 0.8rem 2.1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 531.28 200'%3E%3Cpolygon fill='%23045c69' points='415.81 200 0 200 115.47 0 531.28 0 415.81 200'/%3E%3C/svg%3E");
    background-color: #0E1822;
    background-size: 200%;
    background-position: 200%;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
    transition-property: background-position, border, color;
    position: relative;
    z-index: 1;
}

.primary-button:hover {
    border: 1px solid #FF4655;
    color: white;
    background-position: 40%;
}

.primary-button:before {
    content: "";
    position: absolute;
    background-color: #0E1822;
    width: 0.2rem;
    height: 0.2rem;
    top: -1px;
    left: -1px;
    transition: background-color 0.15s ease-in-out;
}

.primary-button:hover:before {
    background-color: white;
}

.primary-button:hover:after {
    background-color: white;
}

.primary-button:after {
    content: "";
    position: absolute;
    background-color: #ff6700;
    width: 0.3rem;
    height: 0.3rem;
    bottom: -1px;
    right: -1px;
    transition: background-color 0.15s ease-in-out;
}

.button-borders {
    position: relative;
    width: fit-content;
    height: fit-content;
}

.button-borders:before {
    content: "";
    position: absolute;
    width: calc(100% + 0.5em);
    height: 50%;
    left: -0.3em;
    top: -0.3em;
    border: 1px solid #0E1822;
    border-bottom: 0px;
}

.button-borders:after {
    content: "";
    position: absolute;
    width: calc(100% + 0.5em);
    height: 50%;
    left: -0.3em;
    bottom: -0.3em;
    border: 1px solid #0E1822;
    border-top: 0px;
    z-index: 0;
}

.shape {
    fill: #0E1822;
}

.primary-button-2 {
    font-family: 'Ropa Sans', sans-serif;
    color: rgb(0, 0, 0);
    cursor: pointer;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.05rem;
    border: 1px solid #0E1822;
    padding: 0.8rem 2.1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 531.28 200'%3E%3Cdefs%3E%3Cstyle%3E .shape %7B fill: %23FF4655 /* fill: %230E1822; */ %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpolygon class='shape' points='415.81 200 0 200 115.47 0 531.28 0 415.81 200' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
    background-color: #ffffff;
    background-size: 200%;
    background-position: 200%;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
    transition-property: background-position, border, color;
    position: relative;
    z-index: 1;
}

.primary-button-2:hover {
    border: 1px solid #FF4655;
    color: white;
    background-position: 40%;
}

.primary-button-2:before {
    content: "";
    position: absolute;
    background-color: #000000;
    width: 0.2rem;
    height: 0.2rem;
    top: -1px;
    left: -1px;
    transition: background-color 0.15s ease-in-out;
}

.primary-button-2:hover:before {
    background-color: white;
}

.primary-button-2:hover:after {
    background-color: white;
}

.primary-button-2:after {
    content: "";
    position: absolute;
    background-color: #46e7ff;
    width: 0.3rem;
    height: 0.3rem;
    bottom: -1px;
    right: -1px;
    transition: background-color 0.15s ease-in-out;
}

.button-borders-2 {
    position: relative;
    width: fit-content;
    height: fit-content;
}

.button-borders-2:before {
    content: "";
    position: absolute;
    width: calc(100% + 0.5em);
    height: 50%;
    left: -0.3em;
    top: -0.3em;
    border: 2px solid #0E1822;
    border-bottom: 0px;
}

.button-borders-2:after {
    content: "";
    position: absolute;
    width: calc(100% + 0.5em);
    height: 50%;
    left: -0.3em;
    bottom: -0.3em;
    border: 2px solid #0E1822;
    border-top: 0px;
    z-index: 0;
}

.shape-2 {
    fill: #0E1822;
}

.btn {
    padding: 1em 1.5em;
    background: none;
    border: 2px solid #fff;
    font-size: 15px;
    color: #131313;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    border-radius: 12px;
    background-color: #9bf0f1;
    font-weight: bolder;
    box-shadow: inset 1px 2px 4px 3px #000000;
}

.btn:before {
    content: "";
    position: absolute;
    width: 100px;
    height: 120%;
    background-color: #ff6700;
    top: 50%;
    transform: skewX(30deg) translate(-150%, -50%);
    transition: all 0.5s;
}

.btn:hover {
    background-color: #4cc9f0;
    color: #fff;
    box-shadow: 3px 5px 0 0px #000;
}

.btn:hover::before {
    transform: skewX(30deg) translate(150%, -50%);
    transition-delay: 0.1s;
}

.btn:active {
    transform: scale(0.9);
}

.award-strip {
    background: rgb(0 0 0 / 38%);
    border: 1px solid #919090;
    box-shadow: inset -4px 1px 17px 6px rgb(255 255 255 / 36%);
    transition: 0.3s ease-in-out;
}

.award-strip:hover {
    border: 1px solid #fed737;
    box-shadow: inset -6px 4px 5px rgba(255, 255, 255, 0), 5px 5px 8px rgba(209, 255, 251, 0);
}

.box-shade {
    box-shadow: 9px 0px 9px 4px rgb(188, 188, 188);
}

.box-shade-2 {
    box-shadow: -10px 1px 9px 2px rgb(188, 188, 188);
}

.break-words {
    overflow-wrap: break-word;
    word-break: break-word;
}

.speaker-card {
    background: linear-gradient(135deg, #ffffff 0%, #e9f7ff 60%, #dff4ff 100%);
    border: 1px solid rgba(0, 0, 0, 0.201);
    border-radius: 14px;
    box-shadow: inset 2px -2px 3px rgb(0 0 0 / 26%);
    transition: all 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-4px);
    box-shadow: inset 1px 2px 4px 3px #24242485;
}

.pricing-bg {
    background: radial-gradient(circle at bottom left, rgb(140 226 255 / 64%), #0000002e 70%), radial-gradient(circle at top right, rgb(120 199 255 / 49%), transparent 65%), linear-gradient(228deg, #05262c, #072133);
}