/* =========================================
   GLOBAL
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background: #030812;
    color: #ffffff;
}

:root {
    --primary-blue: #159bde;
    --primary-purple: #63237f;

    --light-blue: #79d3ff;
    --light-purple: #c48cff;

    --dark-bg: #030812;

    --card-bg: rgba(8, 20, 40, 0.76);

    --card-border:
        rgba(110, 202, 255, 0.18);

    --text-light: #cdd7e6;
}


/* =========================================
   MAIN SECTION
========================================= */

.credit-section {
    position: relative;
    overflow: hidden;

    padding: 100px 20px;

    background:
        radial-gradient(
            circle at 82% 10%,
            rgba(21, 155, 222, 0.14),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 75%,
            rgba(99, 35, 127, 0.20),
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #02060d 0%,
            #07101f 50%,
            #030812 100%
        );
}


/* GRID BACKGROUND */

.credit-section::before {
    content: "";

    position: absolute;
    inset: 0;

    opacity: 0.12;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.03) 1px,
            transparent 1px
        );

    background-size: 60px 60px;
}


.credit-container {
    width: min(1240px, 100%);

    margin: 0 auto;

    position: relative;
    z-index: 2;
}


/* =========================================
   SECTION LABEL
========================================= */

.section-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 9px 18px;

    margin-bottom: 20px;

    border-radius: 999px;

    border:
        1px solid rgba(121, 211, 255, 0.35);

    background:
        rgba(21, 155, 222, 0.08);

    color: #9edfff;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.section-label::before {
    content: "";

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--primary-blue),
            #b75cff
        );

    box-shadow:
        0 0 15px rgba(21, 155, 222, 0.9);
}


/* =========================================
   SECTION HEADING
========================================= */

.section-heading {
    font-family: "Manrope", sans-serif;

    font-size:
        clamp(34px, 4vw, 56px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;

    margin-bottom: 22px;
}


.section-heading span {
    background:
        linear-gradient(
            90deg,
            #ffffff 0%,
            #8edcff 45%,
            #c28cff 100%
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.section-intro {
    max-width: 850px;

    color: var(--text-light);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================
   ABOUT SECTION
========================================= */

.about-grid {
    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    gap: 34px;

    align-items: stretch;

    margin-top: 48px;
}


/* =========================================
   CARDS
========================================= */

.about-card,
.event-card {
    position: relative;

    border:
        1px solid var(--card-border);

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(12, 30, 56, 0.88),
            rgba(5, 14, 29, 0.82)
        );

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    overflow: hidden;
}


/* BORDER GLOW */

.about-card::before,
.event-card::before {
    content: "";

    position: absolute;

    inset: 0;

    padding: 1px;

    border-radius: inherit;

    background:
        linear-gradient(
            135deg,
            rgba(21, 155, 222, 0.55),
            transparent 35%,
            transparent 65%,
            rgba(99, 35, 127, 0.55)
        );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    mask-composite: exclude;

    pointer-events: none;
}


/* =========================================
   ABOUT CARD
========================================= */

.about-card {
    padding: 42px;
}


.about-card h3 {
    font-family: "Manrope", sans-serif;

    font-size: 26px;

    line-height: 1.4;

    margin-bottom: 20px;

    font-weight: 750;
}


.about-card p {
    color: #c9d4e3;

    font-size: 16px;

    line-height: 1.85;

    margin-bottom: 18px;
}


.about-card p:last-child {
    margin-bottom: 0;
}


.about-card strong {
    color: #ffffff;
}


/* ABOUT HIGHLIGHT */

.about-highlight {
    margin-top: 28px;

    padding: 22px 24px;

    border-radius: 16px;

    border-left:
        3px solid var(--primary-blue);

    background:
        linear-gradient(
            90deg,
            rgba(21, 155, 222, 0.10),
            rgba(99, 35, 127, 0.06)
        );

    color: #e7f5ff;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================
   EVENT DETAILS CARD
========================================= */

.event-card {
    padding: 34px;

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(99,35,127,.24),
            transparent 28%
        ),
        linear-gradient(
            145deg,
            rgba(12, 27, 50, 0.95),
            rgba(4, 11, 23, 0.95)
        );
}


.event-title {
    font-family: "Manrope", sans-serif;

    font-size: 23px;

    margin-bottom: 25px;

    font-weight: 800;
}


/* EVENT ITEMS */

.event-item {
    display: flex;

    gap: 16px;

    padding: 21px 0;

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}


.event-item:last-child {
    border-bottom: 0;

    padding-bottom: 0;
}


/* EVENT ICON */

.event-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    border-radius: 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            145deg,
            rgba(21,155,222,.19),
            rgba(99,35,127,.22)
        );

    border:
        1px solid rgba(84,192,255,.28);

    color: #8edcff;
}


.event-icon svg {
    width: 22px;
    height: 22px;
}


/* EVENT TEXT */

.event-info span {
    display: block;

    margin-bottom: 6px;

    color: #7fcff8;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1.2px;
}


.event-info strong {
    display: block;

    font-size: 15px;

    line-height: 1.55;

    color: #ffffff;

    font-weight: 600;
}


/* =========================================
   DISCUSSION SECTION
========================================= */

.discussion-section {
    margin-top: 100px;
}


.discussion-header {
    text-align: center;

    max-width: 850px;

    margin: 0 auto 45px;
}


.discussion-header .section-label {
    margin-left: auto;

    margin-right: auto;
}


.discussion-header p {
    color: #bfcadd;

    font-size: 16px;

    line-height: 1.7;

    max-width: 700px;

    margin: 0 auto;
}


/* =========================================
   PILLARS GRID
========================================= */

.pillars-grid {
    display: grid;

    grid-template-columns:
        repeat(6, 1fr);

    gap: 22px;
}


/* =========================================
   PILLAR CARD
========================================= */

.pillar-card {
    position: relative;

    min-height: 270px;

    padding: 30px 26px 28px;

    border-radius: 22px;

    border:
        1px solid
        rgba(118, 208, 255, 0.14);

    background:
        radial-gradient(
            circle at 90% 5%,
            rgba(21,155,222,.13),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            rgba(8, 22, 42, 0.88),
            rgba(5, 12, 25, 0.96)
        );

    overflow: hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* FIRST ROW */

.pillar-card:nth-child(1),
.pillar-card:nth-child(2),
.pillar-card:nth-child(3) {
    grid-column: span 2;
}


/* SECOND ROW */

.pillar-card:nth-child(4),
.pillar-card:nth-child(5) {
    grid-column: span 3;
}


/* HOVER */

.pillar-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(98, 199, 255, 0.42);

    box-shadow:
        0 25px 55px
        rgba(0,0,0,.30),

        0 0 30px
        rgba(21,155,222,.08);
}


/* CARD GLOW */

.pillar-card::before {
    content: "";

    position: absolute;

    top: -80px;
    right: -80px;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(99,35,127,.26),
            transparent 70%
        );

    transition: 0.4s ease;
}


.pillar-card:hover::before {
    transform: scale(1.3);
}


/* =========================================
   PILLAR NUMBER
========================================= */

.pillar-number {
    position: relative;

    z-index: 2;

    width: 48px;
    height: 48px;

    margin-bottom: 23px;

    border-radius: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;

    font-weight: 800;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--primary-blue),
            var(--primary-purple)
        );

    box-shadow:
        0 9px 25px
        rgba(21,155,222,.16);
}


/* =========================================
   PILLAR CONTENT
========================================= */

.pillar-card h3 {
    position: relative;

    z-index: 2;

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    line-height: 1.35;

    margin-bottom: 13px;

    font-weight: 800;
}


.pillar-card p {
    position: relative;

    z-index: 2;

    color: #b9c7da;

    font-size: 14px;

    line-height: 1.75;
}


/* CARD LINE */

.pillar-line {
    position: relative;

    z-index: 2;

    width: 48px;

    height: 2px;

    margin-top: 22px;

    background:
        linear-gradient(
            90deg,
            var(--primary-blue),
            var(--primary-purple)
        );

    transition:
        width 0.35s ease;
}


.pillar-card:hover .pillar-line {
    width: 95px;
}


/* =========================================
   LAPTOP
========================================= */

@media screen and
(min-width: 1024px) and
(max-width: 1366px) {

    .credit-container {
        max-width: 1120px;
    }

    .credit-section {
        padding:
            80px 30px;
    }

    .section-heading {
        font-size: 45px;
    }

    .about-card {
        padding: 34px;
    }

    .pillar-card {
        padding: 26px 22px;
    }
}


/* =========================================
   TABLET
========================================= */

@media screen and
(max-width: 1050px) {

    .credit-section {
        padding:
            80px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .pillars-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .pillar-card:nth-child(1),
    .pillar-card:nth-child(2),
    .pillar-card:nth-child(3),
    .pillar-card:nth-child(4),
    .pillar-card:nth-child(5) {
        grid-column: span 1;
    }


    .pillar-card:last-child {
        grid-column: 1 / -1;
    }
}


/* =========================================
   MOBILE
========================================= */

@media screen and
(max-width: 767px) {

    .credit-section {
        padding:
            65px 16px;
    }


    .section-heading {
        font-size: 34px;

        letter-spacing:
            -0.8px;
    }


    .section-intro {
        font-size: 15px;

        line-height: 1.7;
    }


    .about-grid {
        margin-top: 35px;

        gap: 22px;
    }


    .about-card,
    .event-card {
        padding:
            26px 22px;

        border-radius: 18px;
    }


    .about-card h3 {
        font-size: 21px;
    }


    .event-title {
        font-size: 21px;
    }


    .discussion-section {
        margin-top: 70px;
    }


    .discussion-header {
        margin-bottom: 32px;
    }


    .pillars-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .pillar-card,
    .pillar-card:last-child {
        grid-column: span 1;

        min-height: auto;
    }


    .pillar-card {
        padding:
            26px 22px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media screen and
(max-width: 480px) {

    .section-heading {
        font-size: 30px;
    }

    .section-label {
        font-size: 11px;

        padding: 8px 14px;
    }

    .about-card {
        padding: 23px 18px;
    }

    .event-card {
        padding: 23px 18px;
    }

    .event-item {
        gap: 13px;
    }

    .event-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;
    }

    .event-info strong {
        font-size: 14px;
    }

    .pillar-card h3 {
        font-size: 19px;
    }
}
@media (max-width: 1200px) {
    .home-banner {
        height: 90vh;
        min-height: 620px;
    }

    .home-banner-image {
        transform: scale(1.08);
    }
}

/* =========================================================
   REGISTER SECTION
========================================================= */

.credit-register-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 7% 10%,
            rgba(21, 155, 222, 0.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 92% 85%,
            rgba(99, 35, 127, 0.09),
            transparent 28%
        ),
        #f7f9fc;
}


/* Background decoration */

.credit-register-section::before {
    position: absolute;
    top: -210px;
    right: -180px;

    width: 480px;
    height: 480px;

    border: 75px solid rgba(99, 35, 127, 0.04);
    border-radius: 50%;

    content: "";
}


.credit-register-section::after {
    position: absolute;
    bottom: -220px;
    left: -190px;

    width: 450px;
    height: 450px;

    border: 70px solid rgba(21, 155, 222, 0.04);
    border-radius: 50%;

    content: "";
}


/* =========================================================
   REGISTER CONTAINER
========================================================= */

.credit-register-container {
    position: relative;
    z-index: 2;

    display: grid;

    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;

    grid-template-columns:
        minmax(360px, 0.88fr)
        minmax(500px, 1.12fr);

    gap: 70px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.credit-register-info {
    max-width: 500px;
}


.credit-register-label {
    display: inline-flex;

    gap: 10px;
    align-items: center;

    margin-bottom: 15px;

    color: #159bde;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.7px;
    text-transform: uppercase;
}


.credit-register-label::before {
    width: 32px;
    height: 2px;

    content: "";

    background: #159bde;
}


.credit-register-info h2 {
    margin: 0;

    color: #17213b;

    font-size: clamp(40px, 4vw, 56px);
    font-weight: 750;

    letter-spacing: -2px;
    line-height: 1.1;
}


.credit-register-info h2 span {
    display: block;

    color: #63237f;
}


.credit-register-description {
    margin: 22px 0 0;

    color: #606978;

    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   EVENT INFORMATION
========================================================= */

.credit-info-list {
    display: grid;
    gap: 13px;

    margin-top: 32px;
}


.credit-info-item {
    display: flex;

    gap: 14px;
    align-items: center;

    padding: 14px 16px;

    border: 1px solid #e6e9ef;
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.85);

    box-shadow:
        0 9px 25px rgba(21, 35, 60, 0.045);
}


.credit-info-icon {
    display: grid;

    width: 44px;
    height: 44px;

    flex: 0 0 44px;

    place-items: center;

    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #159bde,
            #63237f
        );
}


.credit-info-icon i {
    font-size: 15px;
}


.credit-info-item span {
    display: block;

    margin-bottom: 1px;

    color: #8a919d;

    font-size: 10px;
    font-weight: 750;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}


.credit-info-item strong {
    display: block;

    color: #202a40;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   CONTACT BOX
========================================================= */

.credit-contact-box {
    margin-top: 25px;
    padding: 21px;

    overflow: hidden;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            #18264e 0%,
            #312957 100%
        );

    box-shadow:
        0 16px 35px rgba(28, 34, 67, 0.15);
}


.credit-contact-heading {
    margin-bottom: 13px;
}


.credit-contact-heading > span {
    display: block;

    margin-bottom: 3px;

    color: #67c8f1;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}


.credit-contact-heading h3 {
    margin: 0;

    color: #ffffff;

    font-size: 17px;
    font-weight: 700;
}


.credit-contact-link {
    display: flex;

    gap: 12px;
    align-items: center;

    padding: 12px;

    border: 1px solid rgba(255,255,255,.11);
    border-radius: 11px;

    color: inherit;

    background: rgba(255,255,255,.07);

    text-decoration: none;

    transition:
        background .25s ease,
        transform .25s ease;
}


.credit-contact-link:hover {
    transform: translateX(4px);

    background: rgba(255,255,255,.12);
}


.credit-contact-icon {
    display: grid;

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    place-items: center;

    border-radius: 9px;

    color: #ffffff;

    background: #159bde;
}


.credit-contact-link > div:nth-child(2) {
    min-width: 0;
    flex: 1;
}


.credit-contact-link span {
    display: block;

    color: rgba(255,255,255,.55);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: .7px;
    text-transform: uppercase;
}


.credit-contact-link strong {
    display: block;

    color: #ffffff;

    font-size: 12px;
    font-weight: 650;

    overflow-wrap: anywhere;
}


.credit-contact-arrow {
    color: rgba(255,255,255,.6);

    font-size: 12px;

    transition: transform .25s ease;
}


.credit-contact-link:hover .credit-contact-arrow {
    transform: translateX(3px);
}


/* =========================================================
   REGISTER NOTE
========================================================= */

.credit-register-note {
    display: flex;

    gap: 10px;
    align-items: flex-start;

    margin-top: 20px;
    padding: 14px 16px;

    border: 1px solid rgba(21,155,222,.13);
    border-radius: 12px;

    background: rgba(21,155,222,.05);
}


.credit-register-note i {
    margin-top: 3px;

    color: #159bde;

    font-size: 13px;
}


.credit-register-note p {
    margin: 0;

    color: #687181;

    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   FORM CARD
========================================================= */

.credit-form-card {
    position: relative;

    padding: 38px;

    overflow: hidden;

    border: 1px solid rgba(22, 34, 60, .08);
    border-radius: 25px;

    background: #ffffff;

    box-shadow:
        0 26px 65px rgba(22, 34, 60, .12);
}


.credit-form-card::before {
    position: absolute;

    top: 0;
    right: 0;
    left: 0;

    height: 5px;

    content: "";

    background:
        linear-gradient(
            90deg,
            #159bde,
            #63237f
        );
}


/* =========================================================
   FORM HEADING
========================================================= */

.credit-form-heading {
    margin-bottom: 27px;
}


.credit-form-heading > span {
    display: block;

    margin-bottom: 5px;

    color: #159bde;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}


.credit-form-heading h3 {
    margin: 0;

    color: #1e2940;

    font-size: 29px;
    font-weight: 750;

    letter-spacing: -.8px;
}


.credit-form-heading p {
    margin: 6px 0 0;

    color: #7a818d;

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   FORM GRID
========================================================= */

.credit-form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 19px;
}


.credit-form-group {
    min-width: 0;
}


.credit-form-group-full {
    grid-column: 1 / -1;
}


.credit-form-group label {
    display: block;

    margin-bottom: 7px;

    color: #293144;

    font-size: 12px;
    font-weight: 700;
}


.credit-form-group label span {
    margin-left: 2px;

    color: #63237f;
}


/* =========================================================
   INPUTS
========================================================= */

.credit-form-group input {
    width: 100%;
    height: 51px;

    padding: 0 15px;

    border: 1px solid #dde1e8;
    outline: 0;

    border-radius: 10px;

    color: #1d2535;

    background: #fafbfc;

    font-family: inherit;
    font-size: 13px;

    box-sizing: border-box;

    transition:
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.credit-form-group input::placeholder {
    color: #a3a8b2;
}


.credit-form-group input:hover {
    border-color: #cbd0d9;

    background: #ffffff;
}


.credit-form-group input:focus {
    border-color: #159bde;

    background: #ffffff;

    box-shadow:
        0 0 0 4px rgba(21,155,222,.09);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.credit-submit-button {
    display: flex;

    width: 100%;
    min-height: 54px;

    gap: 11px;
    align-items: center;
    justify-content: center;

    margin-top: 24px;
    padding: 14px 22px;

    border: 0;
    border-radius: 11px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #159bde 0%,
            #63237f 100%
        );

    box-shadow:
        0 14px 30px rgba(75,59,145,.20);

    font-family: inherit;
    font-size: 13px;
    font-weight: 750;

    cursor: pointer;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.credit-submit-button svg {
    width: 20px;
    height: 20px;

    fill: none;

    stroke: currentColor;
    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition: transform .25s ease;
}


.credit-submit-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 18px 38px rgba(75,59,145,.28);
}


.credit-submit-button:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   FOOTER
========================================================= */

.footer-section {
    position: relative;

    overflow: hidden;

    padding: 52px 20px 25px;

    background:
        linear-gradient(
            135deg,
            #121d40 0%,
            #202454 50%,
            #251c43 100%
        );

    border-top: 1px solid rgba(255,255,255,.07);
}


/* =========================================================
   FOOTER GLOW
========================================================= */

.footer-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    filter: blur(18px);
}


.footer-glow-left {
    bottom: -130px;
    left: -90px;

    width: 300px;
    height: 300px;

    background: rgba(21,155,222,.20);
}


.footer-glow-right {
    top: -150px;
    right: -90px;

    width: 330px;
    height: 330px;

    background: rgba(99,35,127,.28);
}


/* =========================================================
   FOOTER CONTENT
========================================================= */

.footer-content {
    position: relative;
    z-index: 2;

    display: flex;

    width: min(1180px, 100%);
    margin: 0 auto;

    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =========================================================
   FOOTER LOGO
========================================================= */

.footer-logo-link {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 24px;
}


.footer-logo {
    display: block;

    width: 190px;
    max-height: 70px;

    object-fit: contain;

    filter:
        brightness(0)
        invert(1);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.footer-logo-link:hover .footer-logo {
    transform: translateY(-2px);

    opacity: .9;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.footer-social {
    display: flex;

    gap: 11px;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}


.footer-social a {
    display: grid;

    width: 43px;
    height: 43px;

    place-items: center;

    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;

    color: #ffffff;

    background: rgba(255,255,255,.055);

    font-size: 15px;

    text-decoration: none;

    transition:
        transform .25s ease,
        border-color .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


.footer-social a:hover {
    transform: translateY(-4px);

    border-color: rgba(21,155,222,.8);

    background:
        linear-gradient(
            135deg,
            #159bde,
            #63237f
        );

    box-shadow:
        0 12px 25px rgba(21,155,222,.18);
}


/* =========================================================
   COPYRIGHT
========================================================= */

.footer-copyright {
    width: 100%;

    margin: 0;
    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.09);

    color: rgba(255,255,255,.58);

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .credit-register-section {
        padding: 80px 0;
    }


    .credit-register-container {
        grid-template-columns: 1fr;

        gap: 48px;
    }


    .credit-register-info {
        width: min(680px, 100%);
        max-width: none;

        margin: 0 auto;
    }


    .credit-form-card {
        width: min(700px, 100%);

        margin: 0 auto;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 620px) {

    .credit-register-section {
        padding: 62px 0;
    }


    .credit-register-container {
        width: min(100% - 28px, 1180px);

        gap: 38px;
    }


    .credit-register-info h2 {
        font-size: 35px;

        letter-spacing: -1.2px;
    }


    .credit-register-description {
        font-size: 14px;
    }


    .credit-form-card {
        padding: 28px 20px;

        border-radius: 20px;
    }


    .credit-form-heading h3 {
        font-size: 25px;
    }


    .credit-form-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .credit-form-group-full {
        grid-column: auto;
    }


    .footer-section {
        padding:
            45px 18px
            22px;
    }


    .footer-logo {
        width: 155px;
    }


    .footer-social a {
        width: 40px;
        height: 40px;

        font-size: 14px;
    }


    .footer-copyright {
        font-size: 11px;
    }
}
/* =========================================================
   FULL SCREEN BANNER
   Fills entire browser screen
========================================================= */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
}


/* HERO */

.hero-banner {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    overflow: hidden;

    background-image: url("images/credit-banner.jpg");

    background-repeat: no-repeat;

    /* IMPORTANT */
    background-size: cover;

    /* Keep important left-side content visible */
    background-position: center center;

    background-color: #020817;
}


/* Makes complete banner clickable */

.hero-banner-link {
    position: absolute;
    inset: 0;

    display: block;

    width: 100%;
    height: 100%;

    z-index: 2;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .hero-banner {
        height: 100vh;

        background-size: cover;
        background-position: center center;
    }

}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1200px) {

    .hero-banner {
        height: 100vh;
        min-height: 650px;

        background-position: center center;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .hero-banner {
        height: 100vh;
        min-height: 600px;

        /*
          Shift image slightly left so event title
          remains more visible.
        */
        background-position: 35% center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hero-banner {
        height: 100vh;
        min-height: 580px;

        /*
          Since desktop banner is very wide,
          mobile will naturally crop the right side.
        */
        background-position: 20% center;
    }

}

.homepage-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  padding-top: 0px;
  overflow: hidden;
  background: #eeeeef;
}

.homepage-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.homepage-banner-image {
  display: block;
  width: 100%;
  min-height: 490px;
  object-fit: cover;
  object-position: center;
}

.homepage-banner-action {
  position: absolute;
  z-index: 5;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
}



.banner-scroll-down {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 26px;
  display: flex;
  gap: 9px;
  align-items: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
}

.banner-scroll-down i {
  animation: bannerScroll 1.8s infinite;
}

@keyframes bannerScroll {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}



@media (max-width: 900px) {

 

  .navbar-menu-open {
    display: flex;
    flex-direction: column;
  }

  .navbar-link {
    padding: 13px 12px;
    border-bottom: 1px solid #eeeeef;
  }

  .navbar-link::after {
    display: none;
  }

  .navbar-register-button {
    margin-top: 12px;
  }

  .homepage-banner {
    min-height: 460px;
    padding-top: 74px;
  }

  .homepage-banner-image {
    min-height: 460px;
  }

  .homepage-banner-overlay {
    top: 74px;
  }
}


@media (max-width: 700px) {

  .homepage-banner {
    min-height: auto;
    padding-top: 74px;
    background: #f2f2f2;
  }

  .homepage-banner picture,
  .homepage-banner-image {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .homepage-banner-image {
    object-fit: contain;
  }

  .homepage-banner-action {
    position: relative;
    bottom: auto;
    left: auto;
    display: flex;
    padding: 18px 14px;
    transform: none;
    background: #f4f4f5;
  }

  .banner-register-button {
    width: 100%;
  }

  .banner-scroll-down {
    display: none;
  }
}
