* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Karla', sans-serif;
    word-break: break-word;
    margin: 0;
    background-color: #F7F7F7;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision
}

::selection {
    background-color: #14202d26
}

:focus {
    outline: 2px solid #274C5B;
    outline-offset: 2px
}

:focus::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 1px solid #14202d4d;
    border-radius: inherit;
    pointer-events: none
}

input::placeholder,
textarea::placeholder {
    transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1)
}

input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0
}

.page_wrapper {
    max-width: 1280px;
    margin: 0 auto
}

.site_header {
    background: linear-gradient(135deg, #14202D 0%, #274C5B 100%);
    padding: 40px 20px;
    position: relative;
    box-shadow: 2px 7px 28px 0 #14202d1c
}

.header_inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.logo_wrap {
    background-color: #F7F7F7;
    padding: 12px;
    border-radius: 2px;
    box-shadow: 2px 2px 6px 0 #14202d0d;
    border: 1px solid #f7f7f733
}

.logo_wrap img {
    display: block;
    width: 68px;
    height: 68px;
    object-fit: contain
}

.nav_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 40px;
    width: 100%
}

.main_nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 40px;
    list-style: none;
    margin: 0;
    padding: 0
}

.main_nav a {
    color: #F7F7F7;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 24px;
    transition: background-color .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: .3px;
    position: relative
}

.main_nav a:hover {
    background-color: #f7f7f726;
    color: #fff
}

.action_link {
    color: #14202D;
    background-color: #F7F7F7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 40px;
    border-radius: 24px;
    transition: background-color .26s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.0, 0, 0.2, 1);
    box-shadow: 2px 2px 6px 0 #14202d0d;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-size: 13px
}

.action_link:hover {
    background-color: #fff;
    box-shadow: 2px 7px 28px 0 #14202d1c
}

@media (max-width: 768px) {
    .site_header {
        padding: 20px 12px
    }

    .header_inner {
        gap: 20px
    }

    .nav_container {
        gap: 6px 20px
    }

    .main_nav {
        gap: 6px 20px
    }

    .main_nav a {
        padding: 12px;
        font-size: 14px
    }

    .action_link {
        padding: 12px 20px
    }
}

.site_footer {
    background-color: #14202D;
    color: #F7F7F7;
    padding: 80px 20px 40px;
    margin-top: 80px
}

.footer_inner {
    max-width: 1280px;
    margin: 0 auto
}

.footer_grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 80px;
    margin-bottom: 80px
}

@media (max-width: 1024px) {
    .footer_grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }
}

@media (max-width: 640px) {
    .footer_grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.footer_block h3 {
    color: #F7F7F7;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    line-height: 1.15
}

.footer_block p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #f7f7f7d9
}

.footer_links {
    list-style: none;
    margin: 0;
    padding: 0
}

.footer_links li {
    margin-bottom: 12px
}

.footer_links a {
    color: #F7F7F7;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block
}

.footer_links a:hover {
    color: #274C5B
}

.contact_info {
    list-style: none;
    margin: 0;
    padding: 0
}

.contact_info li {
    margin-bottom: 12px;
    font-size: 14px;
    color: #f7f7f7d9;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.contact_info svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.contact_info a {
    color: #F7F7F7;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_info a:hover {
    color: #274C5B
}

.footer_bottom {
    padding-top: 40px;
    border-top: 1px solid #f7f7f726;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.copyright {
    font-size: 13px;
    color: #f7f7f7b3;
    margin: 0
}

.footer_logo_container {
    background-color: #F7F7F7;
    padding: 6px;
    border-radius: 2px;
    box-shadow: 2px 2px 6px 0 #274c5b0d
}

.footer_logo_container img {
    display: block;
    width: 42px;
    height: 42px;
    object-fit: contain
}

@media (max-width: 640px) {
    .footer_bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

.mission_text {
    font-size: 14px;
    line-height: 1.7;
    color: #f7f7f7d9;
    margin-bottom: 20px
}

.values_list {
    list-style: none;
    margin: 20px 0 0;
    padding: 0
}

.values_list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #f7f7f7d9
}

.values_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #274C5B;
    border-radius: 2px
}

.doc-box-spgf {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    background: #F7F7F7
}

.doc-box-spgf h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #14202D;
    margin: 0 0 40px
}

.doc-box-spgf h2 {
    font-size: 37px;
    line-height: 1.15;
    color: #274C5B;
    margin: 80px 0 20px
}

.doc-box-spgf h3 {
    font-size: 16px;
    line-height: 1.15;
    color: #14202D;
    margin: 40px 0 12px;
    font-weight: 600
}

.doc-box-spgf h4,
.doc-box-spgf h5,
.doc-box-spgf h6 {
    font-size: 14px;
    line-height: 1.15;
    color: #274C5B;
    margin: 20px 0 12px;
    font-weight: 600
}

.doc-box-spgf p {
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0 0 20px
}

.doc-box-spgf ul,
.doc-box-spgf ol {
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0 0 20px;
    padding: 0 0 0 40px
}

.doc-box-spgf li {
    margin: 0 0 12px
}

.doc-box-spgf li:last-child {
    margin-bottom: 0
}

.doc-box-spgf strong,
.doc-box-spgf b {
    font-weight: 600;
    color: #14202D
}

.doc-box-spgf em,
.doc-box-spgf i {
    font-style: italic
}

.doc-box-spgf a {
    color: #274C5B;
    text-decoration: underline;
    transition: color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.doc-box-spgf a:hover {
    color: #14202D
}

.doc-box-spgf table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 40px;
    font-size: 14px;
    line-height: 1.7;
    background: #fff;
    box-shadow: 2px 2px 6px 0 #14202d0d;
    border-radius: 2px;
    overflow: hidden
}

.doc-box-spgf thead {
    background: #14202D
}

.doc-box-spgf thead th {
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 12px 20px
}

.doc-box-spgf tbody tr {
    border-bottom: 1px solid #e5e5e5
}

.doc-box-spgf tbody tr:last-child {
    border-bottom: none
}

.doc-box-spgf td {
    padding: 12px 20px;
    color: #1a1a1a
}

.doc-box-spgf th {
    padding: 12px 20px
}

.doc-box-spgf hr {
    border: none;
    height: 1px;
    background: #274C5B;
    opacity: .2;
    margin: 40px 0
}

@media (max-width: 768px) {
    .doc-box-spgf {
        padding: 40px 12px
    }

    .doc-box-spgf h1 {
        font-size: 37px;
        margin-bottom: 20px
    }

    .doc-box-spgf h2 {
        font-size: 16px;
        margin-top: 40px
    }

    .doc-box-spgf h3 {
        font-size: 14px;
        margin-top: 20px
    }

    .doc-box-spgf ul,
    .doc-box-spgf ol {
        padding-left: 20px
    }

    .doc-box-spgf table {
        font-size: 13px
    }

    .doc-box-spgf thead th,
    .doc-box-spgf td,
    .doc-box-spgf th {
        padding: 6px 12px
    }
}

.eventos_pagina {
    background: #F7F7F7;
    min-height: 100vh;
    padding: 0;
    margin: 0
}

.eventos_pagina .page_wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px
}

.eventos_pagina .titulo_hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 2px 7px 28px 0 #14202d1c;
    position: relative;
    overflow: hidden
}

.eventos_pagina .titulo_hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #274C5B, transparent)
}

.eventos_pagina .hero_txt h1 {
    font-size: 52px;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -.02em
}

.eventos_pagina .hero_txt h1 .accent_word {
    color: #274C5B
}

.eventos_pagina .hero_txt p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0
}

.eventos_pagina .hero_img_container {
    position: relative;
    height: 100%;
    min-height: 280px
}

.eventos_pagina .hero_img_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.eventos_pagina .hero_img_container:hover img {
    transform: scale(1.05)
}

.eventos_pagina .seccion_eventos {
    background: #14202D;
    padding: 80px 40px;
    margin-bottom: 80px;
    border-radius: 24px;
    position: relative
}

.eventos_pagina .eventos_header {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center
}

.eventos_pagina .eventos_header h2 {
    font-size: 37px;
    line-height: 1.15;
    color: #F7F7F7;
    margin: 0 0 12px;
    border-bottom: 2px solid #274C5B;
    padding-bottom: 12px;
    display: inline-block
}

.eventos_pagina .eventos_header p {
    font-size: 16px;
    line-height: 1.7;
    color: #f7f7f7d9;
    margin: 0
}

.eventos_pagina .lista_eventos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto
}

.eventos_pagina .evento_item {
    background: #f7f7f70d;
    padding: 20px;
    border-radius: 2px;
    border-left: 3px solid #274C5B;
    transition: all .24s cubic-bezier(0.0, 0, 0.2, 1);
    cursor: pointer
}

.eventos_pagina .evento_item:hover {
    background: #f7f7f714;
    transform: translateX(6px);
    box-shadow: 2px 8px 52px 0 #274c5b1f
}

.eventos_pagina .evento_fecha {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    line-height: 1.15;
    color: #274C5B;
    margin-bottom: 6px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.eventos_pagina .evento_titulo {
    font-size: 16px;
    line-height: 1.15;
    color: #F7F7F7;
    margin: 0 0 12px;
    font-weight: 600
}

.eventos_pagina .evento_desc {
    font-size: 14px;
    line-height: 1.7;
    color: #f7f7f7bf;
    margin: 0
}

.eventos_pagina .evento_cupo {
    font-size: 13px;
    line-height: 1.15;
    color: #274C5B;
    margin: 12px 0 0;
    letter-spacing: .05em
}

.eventos_pagina .instructores_seccion {
    background: #fff;
    padding: 80px 40px;
    border-radius: 24px;
    box-shadow: 2px 2px 6px 0 #14202d0d
}

.eventos_pagina .instructores_header {
    text-align: center;
    margin-bottom: 40px
}

.eventos_pagina .instructores_header h2 {
    font-size: 37px;
    line-height: 1.15;
    color: #14202D;
    margin: 0 0 12px;
    border-bottom: 2px solid #274C5B;
    padding-bottom: 12px;
    display: inline-block
}

.eventos_pagina .instructores_grid {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px;
    align-items: start
}

.eventos_pagina .instructor_card {
    text-align: center;
    transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.eventos_pagina .instructor_card:hover {
    transform: translateY(-6px)
}

.eventos_pagina .instructor_img {
    width: 100%;
    aspect-ratio: 5/7;
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 2px 7px 28px 0 #14202d1c
}

.eventos_pagina .instructor_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.eventos_pagina .instructor_card:hover .instructor_img img {
    transform: scale(1.08)
}

.eventos_pagina .instructor_nombre {
    font-size: 16px;
    line-height: 1.15;
    color: #14202D;
    margin: 0 0 6px;
    font-weight: 600
}

.eventos_pagina .instructor_rol {
    font-size: 14px;
    line-height: 1.7;
    color: #274C5B;
    margin: 0
}

.eventos_pagina .info_adicional {
    background: linear-gradient(135deg, #F7F7F7 0%, #274c5b0d 100%);
    padding: 40px;
    border-radius: 24px
}

.eventos_pagina .info_adicional h3 {
    font-size: 16px;
    line-height: 1.15;
    color: #14202D;
    margin: 0 0 20px;
    font-weight: 600;
    border-bottom: 2px solid #274C5B;
    padding-bottom: 12px
}

.eventos_pagina .info_lista {
    list-style: none;
    padding: 0;
    margin: 0
}

.eventos_pagina .info_lista li {
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative
}

.eventos_pagina .info_lista li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: #274C5B
}

.eventos_pagina .info_lista li:last-child {
    margin-bottom: 0
}

.eventos_pagina .destacado_numero {
    color: #274C5B;
    font-weight: 600
}

@media (max-width: 1024px) {
    .eventos_pagina .titulo_hero {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .eventos_pagina .hero_img_container {
        min-height: 220px
    }

    .eventos_pagina .instructores_grid {
        grid-template-columns: 1fr 1fr
    }

    .eventos_pagina .info_adicional {
        grid-column: 1 / -1
    }
}

@media (max-width: 768px) {
    .eventos_pagina .page_wrap {
        padding: 40px 12px
    }

    .eventos_pagina .titulo_hero {
        padding: 20px;
        margin-bottom: 40px
    }

    .eventos_pagina .hero_txt h1 {
        font-size: 37px
    }

    .eventos_pagina .hero_img_container {
        display: none
    }

    .eventos_pagina .seccion_eventos {
        padding: 40px 20px;
        margin-bottom: 40px
    }

    .eventos_pagina .eventos_header h2,
    .eventos_pagina .instructores_header h2 {
        font-size: 37px
    }

    .eventos_pagina .instructores_seccion {
        padding: 40px 20px
    }

    .eventos_pagina .instructores_grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .eventos_pagina .info_adicional {
        padding: 20px
    }
}

@media (max-width: 640px) {
    .eventos_pagina .hero_txt h1 {
        font-size: 37px
    }

    .eventos_pagina .evento_item {
        padding: 12px
    }
}

.esports_hub {
    background: #F7F7F7;
    min-height: 100vh
}

.esports_hub .title_band {
    background: linear-gradient(135deg, #14202D 0%, #274C5B 100%);
    padding: 40px 20px;
    position: relative;
    overflow: hidden
}

.title_band::before,
.title_band::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #f7f7f74d
}

.title_band::before {
    top: 12px;
    left: 12px;
    border-right: none;
    border-bottom: none
}

.title_band::after {
    bottom: 12px;
    right: 12px;
    border-left: none;
    border-top: none
}

.esports_hub .title_content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center
}

.esports_hub .title_label {
    color: #F7F7F7;
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: .85
}

.esports_hub .title_heading {
    color: #F7F7F7;
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 700
}

.esports_hub .title_description {
    color: #F7F7F7;
    font-size: 16px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
    opacity: .9
}

.esports_hub .showcase_grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 20px
}

@media (max-width: 1024px) {
    .esports_hub .showcase_grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .esports_hub .showcase_grid {
        grid-template-columns: 1fr;
        padding: 40px 20px
    }
}

.esports_hub .showcase_card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 2px 2px 6px 0 #14202d0d;
    transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.esports_hub .showcase_card:hover {
    box-shadow: 2px 7px 28px 0 #14202d1c
}

.esports_hub .showcase_card h3 {
    color: #14202D;
    font-size: 37px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: #274C5B;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px
}

.esports_hub .showcase_card p {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px
}

.esports_hub .showcase_card p:last-of-type {
    margin-bottom: 0
}

.esports_hub .accent_number {
    color: #274C5B;
    font-weight: 700
}

.esports_hub .diagonal_section {
    background: #fff;
    padding: 80px 20px 120px;
    position: relative;
    clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
    margin-top: -40px
}

@media (max-width: 640px) {
    .esports_hub .diagonal_section {
        padding: 40px 20px 80px
    }
}

.esports_hub .diagonal_content {
    max-width: 1280px;
    margin: 0 auto
}

.esports_hub .diagonal_header {
    text-align: center;
    margin-bottom: 40px
}

.esports_hub .diagonal_header h2 {
    color: #274C5B;
    font-size: 37px;
    line-height: 1.15;
    margin-bottom: 12px
}

.esports_hub .diagonal_header .subtitle {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.7
}

.esports_hub .features_list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0
}

.esports_hub .features_list li {
    color: #1a1a1a;
    font-size: 14px;
    padding: 0 12px;
    border-right: 1px solid #274C5B
}

.esports_hub .features_list li:last-child {
    border-right: none
}

@media (max-width: 640px) {
    .esports_hub .features_list {
        flex-direction: column;
        align-items: center
    }

    .esports_hub .features_list li {
        border-right: none;
        border-bottom: 1px solid #274C5B;
        padding: 6px 0
    }

    .esports_hub .features_list li:last-child {
        border-bottom: none
    }
}

.esports_hub .image_gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px
}

@media (max-width: 768px) {
    .esports_hub .image_gallery {
        grid-template-columns: 1fr
    }
}

.esports_hub .gallery_image {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 24px;
    transition: transform .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.esports_hub .gallery_image:hover {
    transform: scale(1.03)
}

@media (max-width: 640px) {
    .esports_hub .gallery_image {
        display: none
    }
}

.esports_hub .text_visual_block {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start
}

@media (max-width: 768px) {
    .esports_hub .text_visual_block {
        grid-template-columns: 1fr;
        padding: 40px 20px
    }
}

.esports_hub .pull_quote {
    color: #274C5B;
    font-size: 37px;
    line-height: 1.15;
    font-weight: 700;
    position: sticky;
    top: 80px
}

@media (max-width: 768px) {
    .esports_hub .pull_quote {
        position: static;
        font-size: 37px
    }
}

.esports_hub .body_content h3 {
    color: #14202D;
    font-size: 37px;
    line-height: 1.15;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: #274C5B;
    text-decoration-thickness: 2px;
    text-underline-offset: 6px
}

.esports_hub .body_content p {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px
}

.esports_hub .body_content p:last-child {
    margin-bottom: 0
}

.esports_hub .four_col_section {
    background: #14202D;
    padding: 80px 20px;
    position: relative
}

@media (max-width: 640px) {
    .esports_hub .four_col_section {
        padding: 40px 20px
    }
}

.esports_hub .four_col_container {
    max-width: 1280px;
    margin: 0 auto
}

.esports_hub .four_col_header {
    text-align: center;
    margin-bottom: 40px
}

.esports_hub .four_col_header h2 {
    color: #F7F7F7;
    font-size: 37px;
    line-height: 1.15;
    margin-bottom: 12px
}

.esports_hub .four_col_header p {
    color: #F7F7F7;
    font-size: 14px;
    line-height: 1.7;
    opacity: .85
}

.esports_hub .four_col_grid {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    gap: 20px
}

@media (max-width: 1024px) {
    .esports_hub .four_col_grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .esports_hub .four_col_grid {
        grid-template-columns: 1fr
    }
}

.esports_hub .col_item {
    background: #f7f7f714;
    padding: 40px;
    border-radius: 2px;
    transition: background-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.esports_hub .col_item:hover {
    background-color: #f7f7f71f
}

.esports_hub .col_item h4 {
    color: #F7F7F7;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700
}

.esports_hub .col_item p {
    color: #F7F7F7;
    font-size: 13px;
    line-height: 1.7;
    opacity: .85
}

.esports_hub .dot_accent {
    display: flex;
    gap: 6px;
    margin-top: 12px
}

.esports_hub .dot_accent span {
    width: 6px;
    height: 6px;
    background: #274C5B;
    border-radius: 50%
}

.esports_hub .testimonial_section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px
}

@media (max-width: 640px) {
    .esports_hub .testimonial_section {
        padding: 40px 20px
    }
}

.esports_hub .testimonial_header {
    text-align: center;
    margin-bottom: 40px
}

.esports_hub .testimonial_header h2 {
    color: #274C5B;
    font-size: 37px;
    line-height: 1.15;
    margin-bottom: 12px
}

.esports_hub .testimonial_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

@media (max-width: 768px) {
    .esports_hub .testimonial_grid {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.esports_hub .testimonial_card {
    display: flex;
    gap: 20px;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 2px 8px 52px 0 #274c5b1f
}

@media (max-width: 640px) {
    .esports_hub .testimonial_card {
        flex-direction: column;
        align-items: center;
        text-align: center
    }
}

.esports_hub .testimonial_portrait {
    flex-shrink: 0
}

.esports_hub .testimonial_portrait img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    box-shadow: 2px 2px 6px 0 #14202d0d
}

@media (max-width: 640px) {
    .esports_hub .testimonial_portrait img {
        display: none
    }
}

.esports_hub .testimonial_content h4 {
    color: #14202D;
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700
}

.esports_hub .testimonial_content .role {
    color: #274C5B;
    font-size: 13px;
    margin-bottom: 12px;
    letter-spacing: .08em
}

.esports_hub .testimonial_content p {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.7
}

.esports_hub .cta_section {
    background: linear-gradient(180deg, #F7F7F7 0%, #f7f7f766 100%);
    padding: 80px 20px;
    text-align: center
}

@media (max-width: 640px) {
    .esports_hub .cta_section {
        padding: 40px 20px
    }
}

.esports_hub .cta_content {
    max-width: 1280px;
    margin: 0 auto
}

.esports_hub .cta_content h2 {
    color: #14202D;
    font-size: 37px;
    line-height: 1.15;
    margin-bottom: 20px
}

.esports_hub .cta_content p {
    color: #1a1a1a;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto
}

.esports_hub .cta_btn {
    display: inline-block;
    background: #14202D;
    color: #F7F7F7;
    padding: 20px 40px;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .05em;
    transition: background-color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 2px 6px 0 #14202d0d;
    position: relative;
    overflow: hidden
}

.esports_hub .cta_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #274C5B;
    transition: width .28s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.esports_hub .cta_btn:hover::before {
    width: 100%
}

.esports_hub .cta_btn span {
    position: relative;
    z-index: 1
}

.esports_hub .cta_btn:hover {
    box-shadow: 2px 7px 28px 0 #14202d1c
}

@media (max-width: 640px) {
    .esports_hub .title_heading {
        font-size: 37px
    }

    .esports_hub .showcase_card h3,
    .esports_hub .diagonal_header h2,
    .esports_hub .body_content h3,
    .esports_hub .four_col_header h2,
    .esports_hub .testimonial_header h2,
    .esports_hub .cta_content h2,
    .esports_hub .pull_quote {
        font-size: 37px
    }
}

::selection {
    background: #14202d26;
    color: inherit
}

input::placeholder,
textarea::placeholder {
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

input:focus::placeholder,
textarea:focus::placeholder {
    opacity: 0
}

.about_main {
    background: #F7F7F7;
    color: #1a1a1a;
    line-height: 1.7
}

.about_main * {
    box-sizing: border-box
}

.about_main .top_banner {
    background: linear-gradient(135deg, #14202D 0%, #274C5B 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    max-width: 1280px;
    margin: 0 auto
}

.about_main .top_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(./graphic_files/temp-IMG_7336.jpg) center/cover;
    opacity: .15;
    filter: grayscale(20%)
}

.about_main .banner_content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1
}

.about_main .banner_left {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.about_main .banner_title {
    font-size: 52px;
    line-height: 1.15;
    color: #F7F7F7;
    font-weight: 700;
    margin: 0
}

.about_main .banner_title .accent_num {
    color: #F7F7F7;
    opacity: .7
}

.about_main .banner_desc {
    font-size: 16px;
    color: #F7F7F7;
    opacity: .9;
    margin: 0
}

.about_main .banner_right {
    position: relative
}

.about_main .banner_image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 24px;
    position: relative
}

.about_main .banner_image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #14202d4d 0%, #14202d00 100%);
    border-radius: 24px;
    pointer-events: none
}

.about_main .deco_shape {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    border: 2px solid #274C5B;
    opacity: .2;
    border-radius: 2px;
    pointer-events: none
}

.about_main .story_section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px
}

.about_main .story_left {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.about_main .story_heading {
    font-size: 37px;
    line-height: 1.15;
    color: #14202D;
    font-weight: 700;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #274C5B
}

.about_main .story_text {
    font-size: 16px;
    margin: 0
}

.about_main .story_text:first-of-type {
    font-size: 14px;
    color: #274C5B;
    letter-spacing: .05em;
    text-transform: uppercase
}

.about_main .story_middle {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 2px 7px 28px 0 #14202d1c
}

.about_main .story_feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    background: #F7F7F7;
    border-radius: 2px;
    transition: transform .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.about_main .story_feature:hover {
    transform: translateX(6px)
}

.about_main .feature_icon {
    width: 40px;
    height: 40px;
    background: #274C5B;
    border-radius: 2px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    font-weight: 700
}

.about_main .feature_content {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.about_main .feature_title {
    font-size: 16px;
    font-weight: 700;
    color: #14202D;
    margin: 0
}

.about_main .feature_desc {
    font-size: 14px;
    margin: 0;
    color: #555
}

.about_main .story_right {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.about_main .stat_card {
    background: #14202D;
    color: #fff;
    padding: 20px;
    border-radius: 24px;
    text-align: center;
    transition: box-shadow .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.about_main .stat_card:hover {
    box-shadow: 2px 8px 52px 0 #14202d1f
}

.about_main .stat_number {
    font-size: 37px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #F7F7F7
}

.about_main .stat_label {
    font-size: 13px;
    margin: 0;
    opacity: .8;
    letter-spacing: .03em
}

.about_main .divider_crosses {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px
}

.about_main .cross_symbol {
    width: 12px;
    height: 12px;
    position: relative
}

.about_main .cross_symbol::before,
.about_main .cross_symbol::after {
    content: '';
    position: absolute;
    background: #274C5B;
    opacity: .3
}

.about_main .cross_symbol::before {
    width: 2px;
    height: 12px;
    left: 5px;
    top: 0
}

.about_main .cross_symbol::after {
    width: 12px;
    height: 2px;
    left: 0;
    top: 5px
}

.about_main .team_section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 20px;
    background: #fff;
    position: relative
}

.about_main .team_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(./graphic_files/12-menu.jpg) center/cover;
    opacity: .03;
    mix-blend-mode: multiply;
    pointer-events: none
}

.about_main .team_wrapper {
    position: relative;
    z-index: 1
}

.about_main .team_intro {
    margin-bottom: 40px;
    max-width: 800px
}

.about_main .team_heading {
    font-size: 37px;
    line-height: 1.15;
    color: #14202D;
    font-weight: 700;
    margin: 0 0 20px
}

.about_main .team_subtext {
    font-size: 16px;
    margin: 0;
    color: #555
}

.about_main .team_grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start
}

.about_main .team_member {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    background: #F7F7F7;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.about_main .team_member:hover {
    transform: translateY(-6px)
}

.about_main .team_member::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, #274c5b1a 0%, #14202d0d 100%);
    transition: width .28s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

.about_main .team_member:hover::before {
    width: 100%
}

.about_main .member_portrait {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: top;
    border-radius: 24px
}

.about_main .member_info {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.about_main .member_name {
    font-size: 16px;
    font-weight: 700;
    color: #14202D;
    margin: 0
}

.about_main .member_role {
    font-size: 14px;
    color: #274C5B;
    margin: 0
}

.about_main .team_content {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.about_main .content_block {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.about_main .block_title {
    font-size: 16px;
    font-weight: 700;
    color: #14202D;
    margin: 0;
    letter-spacing: .02em
}

.about_main .block_text {
    font-size: 16px;
    margin: 0;
    color: #333
}

.about_main .highlight_box {
    padding: 40px;
    background: linear-gradient(135deg, #14202D 0%, #274C5B 100%);
    border-radius: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.about_main .highlight_title {
    font-size: 37px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0;
    color: #F7F7F7
}

.about_main .highlight_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none
}

.about_main .highlight_item {
    font-size: 14px;
    padding-left: 20px;
    position: relative;
    opacity: .9
}

.about_main .highlight_item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #F7F7F7;
    border-radius: 2px
}

.about_main .image_showcase {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 2px 7px 28px 0 #14202d1c
}

@media (max-width: 1024px) {
    .about_main .banner_content {
        grid-template-columns: 1fr
    }

    .about_main .banner_right {
        display: none
    }

    .about_main .story_section {
        grid-template-columns: 1fr
    }

    .about_main .team_grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .about_main .banner_title {
        font-size: 37px
    }

    .about_main .story_heading,
    .about_main .team_heading,
    .about_main .highlight_title {
        font-size: 37px
    }

    .about_main .top_banner {
        padding: 40px 20px
    }

    .about_main .story_section,
    .about_main .team_section {
        padding: 40px 20px
    }

    .about_main .story_middle {
        padding: 20px
    }

    .about_main .team_member {
        padding: 20px
    }

    .about_main .highlight_box {
        padding: 20px
    }
}

@media (max-width: 640px) {
    .about_main .divider_crosses {
        gap: 20px
    }

    .about_main .image_showcase {
        height: 240px
    }
}

.contact_hub {
    background: #F7F7F7;
    min-height: 100vh;
    overflow-x: clip
}

.contact_hub .top_banner {
    background: linear-gradient(135deg, #14202D 0%, #274C5B 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden
}

.contact_hub .top_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, #f7f7f705 12px, #f7f7f705 24px), repeating-linear-gradient(-45deg, transparent, transparent 12px, #f7f7f705 12px, #f7f7f705 24px);
    pointer-events: none
}

.contact_hub .top_banner .banner_wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1
}

.contact_hub .top_banner .text_zone {
    padding: 40px 40px 40px 20px;
    animation: slideFromLeft .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.contact_hub .top_banner h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #F7F7F7;
    margin: 0 0 20px
}

.contact_hub .top_banner .desc_text {
    font-size: 16px;
    line-height: 1.7;
    color: #f7f7f7e6;
    margin: 0 0 40px
}

.contact_hub .top_banner .quick_links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.contact_hub .top_banner .quick_links a {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #f7f7f71a;
    color: #F7F7F7;
    text-decoration: none;
    border-radius: 2px;
    font-size: 14px;
    border: 1px solid #f7f7f733;
    transition: background .24s cubic-bezier(0.4, 0, 0.2, 1), border-color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .top_banner .quick_links a:hover {
    background: #f7f7f733;
    border-color: #f7f7f766
}

.contact_hub .top_banner .img_zone {
    padding: 20px 20px 40px 40px;
    position: relative;
    animation: slideFromRight .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.contact_hub .top_banner .img_holder {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 2px 8px 52px 0 #14202d1f
}

.contact_hub .top_banner .img_holder img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    filter: saturate(0.7);
    transition: filter .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .top_banner .img_holder:hover img {
    filter: saturate(1)
}

.contact_hub .top_banner .img_holder::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, #14202d66 100%);
    pointer-events: none
}

.contact_hub .top_banner .pattern_dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, #f7f7f726 2px, transparent 2px);
    background-size: 12px 12px;
    pointer-events: none;
    z-index: 0
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.contact_hub .form_section {
    padding: 80px 20px;
    background: #fff
}

.contact_hub .form_section .section_wrap {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 40px
}

.contact_hub .form_section .info_column {
    animation: slideFromLeft .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .form_section h2 {
    font-size: 37px;
    line-height: 1.15;
    color: #14202D;
    margin: 0 0 20px;
    border-bottom: 3px solid #274C5B;
    padding-bottom: 12px
}

.contact_hub .form_section .info_text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0 0 40px
}

.contact_hub .form_section .contact_details {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.contact_hub .form_section .detail_item {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.contact_hub .form_section .detail_icon {
    width: 32px;
    height: 32px;
    background: #274C5B;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.contact_hub .form_section .detail_icon svg {
    width: 16px;
    height: 16px;
    fill: #F7F7F7
}

.contact_hub .form_section .detail_content {
    flex: 1
}

.contact_hub .form_section .detail_label {
    font-size: 13px;
    color: #666;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.contact_hub .form_section .detail_value {
    font-size: 16px;
    color: #14202D;
    margin: 0
}

.contact_hub .form_section .detail_value a {
    color: #274C5B;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .form_section .detail_value a:hover {
    color: #14202D
}

.contact_hub .form_section .form_column {
    animation: slideFromRight .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .form_section .form_wrapper {
    background: #F7F7F7;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 2px 2px 6px 0 #274c5b0d
}

.contact_hub .form_section .form_title {
    font-size: 37px;
    line-height: 1.15;
    color: #274C5B;
    margin: 0 0 40px
}

.contact_hub .form_section .form_group {
    margin-bottom: 20px
}

.contact_hub .form_section label {
    display: block;
    font-size: 14px;
    color: #14202D;
    margin-bottom: 6px;
    font-weight: 600
}

.contact_hub .form_section input[type="text"],
.contact_hub .form_section input[type="tel"] {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #ddd;
    border-radius: 2px;
    font-size: 16px;
    background: #fff;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .form_section input[type="text"]:focus,
.contact_hub .form_section input[type="tel"]:focus {
    outline: none;
    border-color: #274C5B;
    box-shadow: 0 0 0 3px #274c5b1a
}

.contact_hub .form_section input[type="text"]::placeholder,
.contact_hub .form_section input[type="tel"]::placeholder {
    color: #999;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .form_section input[type="text"]:focus::placeholder,
.contact_hub .form_section input[type="tel"]:focus::placeholder {
    opacity: 0
}

.contact_hub .form_section .time_slots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.contact_hub .form_section .time_slot_option {
    position: relative
}

.contact_hub .form_section .time_slot_option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.contact_hub .form_section .time_slot_option label {
    display: block;
    padding: 12px 20px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
    transition: all .24s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
    margin: 0
}

.contact_hub .form_section .time_slot_option input[type="radio"]:checked+label {
    background: #274C5B;
    border-color: #274C5B;
    color: #F7F7F7;
    box-shadow: 2px 7px 28px 0 #274c5b1c
}

.contact_hub .form_section .time_slot_option label:hover {
    border-color: #274C5B
}

.contact_hub .form_section .privacy_check {
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.contact_hub .form_section .privacy_check input[type="checkbox"] {
    margin-top: 6px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0
}

.contact_hub .form_section .privacy_check label {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    cursor: pointer
}

.contact_hub .form_section .privacy_check a {
    color: #274C5B;
    text-decoration: underline
}

.contact_hub .form_section .submit_btn {
    width: 100%;
    padding: 12px 40px;
    background: #14202D;
    color: #F7F7F7;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 7px 28px 0 #14202d1c;
    position: relative;
    overflow: hidden
}

.contact_hub .form_section .submit_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #f7f7f733, transparent);
    transition: left .5s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .form_section .submit_btn:hover {
    background: #274C5B;
    box-shadow: 2px 8px 52px 0 #14202d1f
}

.contact_hub .form_section .submit_btn:hover::before {
    left: 100%
}

.contact_hub .form_section .submit_btn:focus-visible {
    outline: 3px solid #274C5B !important;
    outline-offset: 3px !important
}

.contact_hub .form_section .side_column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    animation: slideFromRight .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .form_section .highlight_box {
    background: #274C5B;
    padding: 40px;
    border-radius: 24px;
    color: #F7F7F7;
    border: 3px dashed #f7f7f74d
}

.contact_hub .form_section .highlight_box h3 {
    font-size: 37px;
    line-height: 1.15;
    margin: 0 0 12px;
    color: #F7F7F7
}

.contact_hub .form_section .highlight_box .number_accent {
    color: #F7F7F7;
    font-weight: 700
}

.contact_hub .form_section .highlight_box p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0
}

.contact_hub .stats_section {
    padding: 80px 20px;
    background: #14202D;
    position: relative
}

.contact_hub .stats_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #274C5B 0%, transparent 50%, #274C5B 100%)
}

.contact_hub .stats_section::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #274C5B 50%, transparent 100%)
}

.contact_hub .stats_section .stats_wrap {
    max-width: 1280px;
    margin: 0 auto
}

.contact_hub .stats_section h2 {
    font-size: 37px;
    line-height: 1.15;
    color: #F7F7F7;
    text-align: center;
    margin: 0 0 40px;
    animation: slideFromLeft .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .stats_section .stats_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.contact_hub .stats_section .stat_card {
    background: #f7f7f70d;
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #f7f7f71a;
    transition: all .28s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideFromRight .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .stats_section .stat_card:nth-child(2) {
    animation-delay: .05s
}

.contact_hub .stats_section .stat_card:nth-child(3) {
    animation-delay: .1s
}

.contact_hub .stats_section .stat_card:hover {
    background: #f7f7f714;
    border-color: #f7f7f733;
    box-shadow: 2px 8px 52px 0 #274c5b1f
}

.contact_hub .stats_section .stat_number {
    font-size: 52px;
    line-height: 1.15;
    color: #F7F7F7;
    margin: 0 0 12px;
    font-weight: 700
}

.contact_hub .stats_section .stat_label {
    font-size: 16px;
    line-height: 1.7;
    color: #f7f7f7cc;
    margin: 0
}

.contact_hub .stats_section .featured_text {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
    align-items: center;
    animation: slideFromLeft .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact_hub .stats_section .divider_line {
    width: 1px;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, #274C5B 50%, transparent 100%)
}

.contact_hub .stats_section .featured_left {
    text-align: right;
    padding-right: 40px
}

.contact_hub .stats_section .featured_right {
    padding-left: 40px
}

.contact_hub .stats_section .featured_left h3,
.contact_hub .stats_section .featured_right h3 {
    font-size: 37px;
    line-height: 1.15;
    color: #F7F7F7;
    margin: 0 0 12px
}

.contact_hub .stats_section .featured_left p,
.contact_hub .stats_section .featured_right p {
    font-size: 16px;
    line-height: 1.7;
    color: #f7f7f7cc;
    margin: 0
}

.contact_hub .stats_section .underline_marker {
    display: inline;
    background: linear-gradient(180deg, transparent 60%, #274C5B 60%, #274C5B 85%, transparent 85%);
    padding: 0 6px
}

@media (max-width: 1024px) {
    .contact_hub .top_banner .banner_wrap {
        grid-template-columns: 1fr
    }

    .contact_hub .top_banner .text_zone,
    .contact_hub .top_banner .img_zone {
        padding: 20px
    }

    .contact_hub .form_section .section_wrap {
        grid-template-columns: 1fr
    }

    .contact_hub .stats_section .stats_grid {
        grid-template-columns: 1fr
    }

    .contact_hub .stats_section .featured_text {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .contact_hub .stats_section .divider_line {
        display: none
    }

    .contact_hub .stats_section .featured_left,
    .contact_hub .stats_section .featured_right {
        text-align: left;
        padding: 0
    }
}

@media (max-width: 768px) {
    .contact_hub .top_banner {
        padding: 40px 20px
    }

    .contact_hub .top_banner h1 {
        font-size: 37px
    }

    .contact_hub .top_banner .img_holder {
        display: none
    }

    .contact_hub .form_section {
        padding: 40px 20px
    }

    .contact_hub .form_section h2,
    .contact_hub .form_section .form_title,
    .contact_hub .stats_section h2 {
        font-size: 37px
    }

    .contact_hub .form_section .form_wrapper {
        padding: 20px
    }

    .contact_hub .form_section .time_slots {
        grid-template-columns: 1fr
    }

    .contact_hub .stats_section {
        padding: 40px 20px
    }

    .contact_hub .stats_section .stat_number {
        font-size: 37px
    }
}

.contact_hub input:focus-visible,
.contact_hub button:focus-visible,
.contact_hub a:focus-visible {
    outline: 3px solid #274C5B !important;
    outline-offset: 3px !important
}

.success_wrap {
    background: linear-gradient(180deg, #F7F7F7 0%, #fff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px
}

.success_wrap .central_confirm {
    max-width: 680px;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 80px 40px;
    border-radius: 24px;
    box-shadow: 2px 7px 28px 0 #14202d1c;
    position: relative;
    overflow: hidden
}

.success_wrap .central_confirm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #14202D 0%, #274C5B 100%)
}

.success_wrap .check_icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 40px;
    position: relative
}

.success_wrap .check_icon svg {
    width: 100%;
    height: 100%
}

.success_wrap .check_icon circle {
    fill: none;
    stroke: #274C5B;
    stroke-width: 3;
    stroke-dasharray: 289;
    stroke-dashoffset: 289;
    animation: draw_circle .8s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.success_wrap .check_icon polyline {
    fill: none;
    stroke: #14202D;
    stroke-width: 3;
    stroke-dasharray: 70;
    stroke-dashoffset: 70;
    animation: draw_check .6s cubic-bezier(0.4, 0, 0.2, 1) .4s forwards
}

@keyframes draw_circle {
    to {
        stroke-dashoffset: 0
    }
}

@keyframes draw_check {
    to {
        stroke-dashoffset: 0
    }
}

.success_wrap .main_heading {
    font-size: 52px;
    line-height: 1.15;
    color: #14202D;
    margin: 0 0 20px;
    font-weight: 600
}

.success_wrap .confirmation_text {
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c2c;
    margin: 0 0 12px
}

.success_wrap .detail_note {
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0 0 40px
}

.success_wrap .action_group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.success_wrap .btn_primary {
    background: #14202D;
    color: #fff;
    padding: 20px 40px;
    border-radius: 2px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background .24s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden
}

.success_wrap .btn_primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #274C5B;
    transition: left .26s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0
}

.success_wrap .btn_primary:hover::before {
    left: 0
}

.success_wrap .btn_primary span {
    position: relative;
    z-index: 1
}

.success_wrap .btn_primary:hover {
    transform: translateY(-2px)
}

.success_wrap .btn_secondary {
    background: transparent;
    color: #274C5B;
    padding: 20px 40px;
    border: 2px solid #274C5B;
    border-radius: 2px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background .22s cubic-bezier(0.0, 0, 0.2, 1), color .22s cubic-bezier(0.0, 0, 0.2, 1);
    font-weight: 500
}

.success_wrap .btn_secondary:hover {
    background: #274C5B;
    color: #fff
}

.success_wrap .info_strip {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e5
}

.success_wrap .info_list {
    display: flex;
    justify-content: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap
}

.success_wrap .info_list li {
    font-size: 13px;
    line-height: 1.7;
    color: #5a5a5a;
    display: flex;
    align-items: center;
    gap: 12px
}

.success_wrap .info_list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #274C5B;
    border-radius: 2px;
    flex-shrink: 0
}

@media (max-width: 640px) {
    .success_wrap {
        padding: 20px 12px
    }

    .success_wrap .central_confirm {
        padding: 40px 20px
    }

    .success_wrap .main_heading {
        font-size: 37px
    }

    .success_wrap .check_icon {
        width: 72px;
        height: 72px;
        margin-bottom: 20px
    }

    .success_wrap .action_group {
        flex-direction: column;
        gap: 12px
    }

    .success_wrap .btn_primary,
    .success_wrap .btn_secondary {
        width: 100%;
        padding: 20px
    }

    .success_wrap .info_strip {
        margin-top: 40px;
        padding-top: 20px
    }

    .success_wrap .info_list {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start
    }
}