/* GEES 2025 */
.gees2025 {
    --secondary-color: #2eb45a;
    --gees-dark: #282828;
    --font-body: "DM Sans", serif;
    --font-heading: "Instrument Serif", serif;
    font-family: var(--font-body);
    overflow: hidden;
    scroll-behavior: smooth;
}

.gees-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 10rem;
    width: 100%;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    mask: linear-gradient(black, black, transparent);
    backdrop-filter: blur(45px);
}

.gees-nav__logo {
    width: 10rem;
    height: auto;
}

.gees-header {
    position: relative;
    max-width: 100%;
    height: auto;
    min-height: 60rem;
}

.gees-header__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 400;
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.gees-header__content svg {
    margin-bottom: 3rem;
    width: 25rem;
}

.gees-header__content h1 {
    display: none;
}

.gees-header__content p {
    margin-bottom: 4rem;
}

.gees-lead {
    font-size: 1.6rem;
    font-family: var(--font-body);
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    color: var(--color-white);
    line-height: 1.5;
}

.gees-lead.dark {
    color: var(--color-heading-dark);
}

.gees-lead span {
    display: block;
}

.gees-lead em {
    font-weight: 800 !important;
}

.gees-nav__link {
    color: var(--color-white);
    font-weight: 500;
    font-size: 1.5rem;
    position: relative;
}

.gees-nav__link.dark {
    color: var(--gees-dark);
}

.gees-nav__link::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.4rem;
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.gees-nav__link.dark::after {
    background: rgba(0, 0, 0, 0.4);
}

.gees-nav__link:hover,
.gees-nav__link:focus,
.gees-nav__link:active {
    color: var(--color-white);
}

.gees-nav__link.dark:hover,
.gees-nav__link.dark:focus,
.gees-nav__link.dark:active {
    color: var(--gees-dark);
}

.gees-nav__link:hover::after {
    background: rgba(255, 255, 255, 1);
    z-index: 10;
}

.gees-nav__link.dark:hover::after {
    background: rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.gees-header::before {
    content: "";
    padding-top: 60%;
    display: block;
}

.gees-header__images {
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.gees-header__images img {
    width: calc(100% / 11);
    height: 100%;
    object-fit: cover;
    object-position: center;
    will-change: width, background-position;
    transform: rotate3d(0);
}

.gees-header__images > *:nth-child(1) {
    background-image: url("../images/gees/1.png");
}
.gees-header__images > *:nth-child(2) {
    background-image: url("../images/gees/2.png");
}
.gees-header__images > *:nth-child(3) {
    background-image: url("../images/gees/3.png");
}
.gees-header__images > *:nth-child(4) {
    background-image: url("../images/gees/4.png");
}
.gees-header__images > *:nth-child(5) {
    background-image: url("../images/gees/5.png");
}
.gees-header__images > *:nth-child(6) {
    background-image: url("../images/gees/6.png");
}
.gees-header__images > *:nth-child(7) {
    background-image: url("../images/gees/7.png");
}
.gees-header__images > *:nth-child(8) {
    background-image: url("../images/gees/8.png");
}
.gees-header__images > *:nth-child(9) {
    background-image: url("../images/gees/9.png");
}
.gees-header__images > *:nth-child(10) {
    background-image: url("../images/gees/10.png");
}
.gees-header__images > *:nth-child(11) {
    background-image: url("../images/gees/11.png");
}

.hero-image {
    width: calc(100% / 11);
    height: 100%;
    will-change: width, background-position;
    transform: rotate3d(0);
    background-size: cover;
    background-repeat: no-repeat;
}

.gees-header__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 350;
}

.gees-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 0;

    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
    font-size: 2rem;
    line-height: 25px;
    border-radius: 10rem;
    background-color: var(--color-white);
    color: var(--color-primary);
    transition: transform 0.2s;
    pointer-events: auto !important;
}

.gees-btn.primary span {
    background: linear-gradient(
        90deg,
        var(--color-secondary),
        var(--color-danger),
        var(--color-secondary)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: button_gradient 3s ease-in infinite;
}

.gees-btn.lg {
    padding: 1.5rem 0;
}

.gees-btn.primary:hover span {
    -webkit-text-fill-color: unset;
    color: var(--color-danger);
}

.gees-btn.primary,
.gees-btn.secondary {
    max-width: 30rem;
}

.gees-btn.secondary {
    font-family: var(--font-body);
    color: var(--gees-dark);
    border: 2px solid var(--secondary-color);
    font-style: normal;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 1.5rem 0;
}

.section {
    padding: 6rem 0;
}

.section-intro {
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
}

.section-intro__title h2,
.section-why__title,
.speakers-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 1rem;
    font-style: italic;
}

.section-intro__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
}

.intro-video__thumb {
    position: relative;
    max-width: 60.5rem;
    height: auto;
    transform: rotate(-2.7deg);
    border-radius: 2.5rem;
    background-image: url("../images/gees/gees-old-speaker.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin: 0 auto;
    box-shadow: 5px 2px 132.8px -69px rgba(0, 0, 0, 0.95);
}

.intro-video__thumb::before {
    content: "";
    display: block;
    padding-top: 55%;
}

.intro-video__thumb svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(2.7deg);
    width: 4rem;
    height: 4rem;
}

.thumb-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
}

.thumb-badge p {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--bg-dark-1);
}

.intro-promo__btn {
    margin: 0 auto;
    margin-top: 4rem;
    max-width: 20rem;
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    text-transform: capitalize;
    border-radius: 2.5rem;
    text-transform: capitalize;
    padding: 1rem 2rem;
    position: relative;
    z-index: 400;
}

.intro-promo__btn p {
    color: var(--secondary-color);
    font-size: 1.6rem;
    font-weight: 500;
}

.intro-promo__btn svg {
    height: 1.6rem;
    width: 1.6rem;
}

.section-description {
    position: relative;
    background: var(--gees-dark);
    min-height: 67rem;
}

.description-content {
    position: relative;
    padding: 2rem;
}

.description-vector {
    position: absolute;
    top: -5rem;
}

.description-content h2 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1.3;
    margin-bottom: 2.5rem;
}

.description-content h2 span {
    display: block;
}

.description__text-box {
    max-width: 45rem;
}

.description-content p {
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--font-body);
}

.section-location {
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    width: 100%;
    min-height: 45rem;
    margin-bottom: 5rem;
}

.ellipse-left,
.ellipse-right {
    height: auto;
    max-width: 60%;
    object-fit: contain;
    object-position: center;
}

.ellipse-left {
    position: absolute;
    top: -5rem;
    left: -5rem;
}

.ellipse-right {
    position: absolute;
    top: -15rem;
    right: 0;
    /* height: 55rem; */
}

.location-thumb__box {
    max-width: 45rem;
    padding: 1.5rem;
    padding-bottom: 2rem;
    margin: 0 auto;
    margin-top: 4rem;
}

.location-thumb {
    width: 100%;
    height: 100%;

    background-image: url("../images/gees/location.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.location-thumb__box,
.location-thumb {
    border-radius: 1.5rem;
    border: 1px solid var(--secondary-color);
}

.location-thumb::after {
    content: "";
    padding-top: 50%;
    display: block;
}

.section-speakers {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 2rem;
    position: relative;
}

.speakers-title {
    position: relative;
    font-size: 4.5rem;
    max-width: 25.6rem;
    margin-bottom: 16rem;
}

.speakers-title::after {
    content: "Learn from these amazing people";
    position: absolute;
    bottom: -1rem;
    right: 0;
    display: inline-block;
    text-align: right;
    font-size: 1.4rem;
    color: #959595;
    font-family: var(--font-body);
    font-style: normal;
}

.speakers-box {
    width: 100%;
}

.speakers {
    width: 100%;
    display: flex;
    gap: 14rem;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 8rem;
    align-items: center;
}

.speaker {
    padding: 2rem;
    border-radius: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    box-shadow: 0.5px 0px 0.4px 0px rgba(0, 0, 0, 0.1);
    max-width: 95rem;
}

.speaker::before {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
    content: "";
    height: 75%;
    bottom: 0;
    width: 100%;
    display: block;
    position: absolute;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2rem;
    z-index: 4;
}

.speaker h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gees-dark);
}

.speaker-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #6e6e6e;
    line-height: 1.2;
}

.speaker-img {
    position: relative;
}

.speaker-socials {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.speaker-infos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 2rem;
}

.speaker-bio {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gees-dark);
    line-height: 1.2;
    font-family: "DM Sans", serif;
}

.speaker .img-box {
    margin-top: -5rem;
}

.speaker-img-box {
    margin-top: -4rem;
}

.speaker .text-box {
    padding-top: 4rem;
    position: relative;
    z-index: 15;
}

.speaker-img,
.speaker-img-box {
    height: 22.5rem;
    width: 16rem;
    z-index: 10;
    position: relative;
    border-radius: 2rem;
}

.speaker-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.speaker-img-box::before,
.speaker-img-box::after {
    content: "";
    position: absolute;
    bottom: 0.25rem;
    right: 0;
    height: 22.5rem;
    width: 16rem;
    background: #d9d9d9;
    z-index: 9;
    border-radius: 2rem;
    transition: transform 0.4s linear;
}

.speaker-img-box::before {
    transform: rotate(-25.3deg);
    transform-origin: bottom right;
    bottom: 1rem;
    right: -0.8rem;
}

.speaker-img-box::after {
    transform: rotate(16.78deg);
    transform-origin: bottom right;
    bottom: -0.8rem;
    right: 0.6rem;
}

.speaker .img-box:hover .speaker-img-box::before {
    transform: rotate(-20deg);
}

.speaker .img-box:hover .speaker-img-box::after {
    transform: rotate(10deg);
}

.section-why,
.section-schedule {
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
}

.gees-main {
    padding-bottom: 4rem;
}

.why-content {
    width: 100%;
    background: var(--secondary-color);
    position: relative;
    min-height: 45rem;
    padding: 10rem 2rem;
    color: var(--color-white) !important;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    border-radius: 2rem;
    margin-bottom: 5rem;
}

.why-text-box p {
    color: var(--color-white);
    font-weight: 400;
    font-size: 1.5rem;
}

.why-text-box h4 {
    margin-bottom: 1rem !important;
    color: var(--color-white) !important;
    font-size: 1.6rem !important;
}

.dsc-box,
.why-lead {
    margin-bottom: 3rem;
}

.scrib {
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
}

.why-images {
    position: relative;
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-template-rows: repeat(17, 2rem);
    margin-top: 3rem;
}

.why-images img {
    border-radius: 1rem;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0px 4px 80.2px 0px rgba(0, 0, 0, 0.25);
}

.why-images > * {
    position: relative;
}

.why-images > *:nth-child(1) {
    grid-column-start: 2;
    grid-column-end: 8;
    grid-row-start: 1;
    grid-row-end: 9;
    transform: rotate(2deg);
    z-index: 2;
}

.why-images > *:nth-child(2) {
    grid-column-start: 6;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 11;
    transform: rotate(-6deg);
    z-index: 3;
}

.why-images > *:nth-child(3) {
    grid-column-start: 1;
    grid-column-end: 7;
    grid-row-start: 7;
    grid-row-end: 16;
    transform: rotate(4deg);
    z-index: 4;
}

.why-images > *:nth-child(4) {
    grid-column-start: 5;
    grid-column-end: 11;
    grid-row-start: 10;
    grid-row-end: -1;
    z-index: 5;
}

.section-who {
    padding-left: 2rem;
    padding-right: 2rem;
    background: #363434;
    min-height: 45rem;
}

.section-who ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 2rem;
    padding: 0;
    margin: 0;
    grid-auto-rows: 1fr;
}

.section-who li {
    background: var(--gees-dark);
    border-radius: 2rem;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.section-who img {
    width: 4rem;
    height: auto;
    margin-bottom: 2rem;
}

.section-who h5 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    text-align: center;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.schedule {
    margin: 0 auto;
    max-width: 100rem;
    border: 2px solid var(--secondary-color);
    border-radius: 2rem;
    padding: 2rem;
    background: #e3ffec;
    display: flex;
    flex-direction: column;
}

.schedule h5 {
    margin-bottom: 0 !important;
}

.schedule-date {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--secondary-color);
}

.schedule-time,
.schedule-ca {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.schedule-line {
    height: 2px;
    width: 100%;
    background: var(--secondary-color);
    margin: 2rem 0;
}

.schedule-time-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.schedule-ca {
    margin-top: 4rem;
    text-align: right;
    color: var(--gees-dark);
}

.gees-footer {
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-bottom: 8rem;
}

.gees-footer img {
    margin-bottom: 3rem;
}

.gees-footer__btn-box {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    align-items: center;
    margin-top: 4rem;
}

.gees-footer h6,
.gees-footer p {
    font-size: 1.6rem;
    color: var(--gees-dark);
    font-weight: 700;
}

.gees-footer p {
    font-weight: 400;
    line-height: 1.2;
}

.gees-main.form-container,
.gees-main.gees-confirm-container {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Container centers the alert */
.gees-alert-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 1rem;
    background-color: #f9fafb;
    min-height: 50rem;
}

/* Alert box styling */
.gees-alert-box {
    max-width: 600px;
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 1rem;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    min-height: 25rem;
}

/* Success icon */
.gees-alert-icon {
    color: var(--secondary-color);
    fill: var(--secondary-color);
    margin-bottom: 1.5rem;
    height: 6rem;
    width: 6rem;
}

/* Heading */
.gees-alert-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gees-dark);
}

/* Message */
.gees-alert-message {
    font-size: 1.6rem;
    color: #4b5563;
    line-height: 1.6;
}

.gees-alert.gees-danger {
    color: var(--color-danger);
    font-size: 1.5rem;
    font-family: var(--font-body);
    margin-top: 0.5rem;
}

.gees-reg__title {
    font-size: 3rem;
    width: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.gees-reg__intro {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gees-dark);
    line-height: 1.5;
    text-align: center;
}

.gees-form__fieldset ul {
    list-style: none !important;
    padding: 0;
}

.gees-reg__form,
.gees-alert-section {
    width: 100%;
    max-width: 85rem;
    margin: 0 auto;
}

.gees-alert-section {
    text-align: center;
    margin-bottom: 3rem;
}

.gees-form__section {
    margin-bottom: 4rem;
    border: 1px solid var(--color-border);
    border-radius: 0.5rem;
    padding: 2rem;
}

.gees-form__control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.gees-form__control label::before,
.gees-form__control label::after {
    display: none !important;
}

.gees-form__control label {
    padding-left: 0 !important;
}

.gees-reg__form-btn {
    margin: 0 auto;
    max-width: 25rem;
    background: var(--secondary-color);
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 1.5rem 2rem;
    border-radius: 4rem;
    border: none;
    outline: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gees-reg__form input[type="text"],
.gees-reg__form input[type="password"],
.gees-reg__form input[type="email"],
.gees-reg__form input[type="number"],
.gees-reg__form input[type="tel"],
.gees-reg__form textarea,
.gees-reg__form select {
    padding: 0.5rem 1rem !important;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gees-dark);
    font-family: inherit;
    border-radius: 0.4rem;
}

.gees-reg__form textarea {
    resize: none;
}

.gees-reg__form label,
.gees-form__fieldset legend,
.gees-form__control label {
    font-size: 1.5rem !important;
    font-weight: 500 !important;
    color: var(--gees-dark) !important;
    margin-bottom: 0.5rem;
}

.gees-form__control label {
    font-weight: 400 !important;
    margin-bottom: 0;
}

.gees-form__fieldset {
    border: none;
}

.gees-form__section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gees-reg__form select {
    padding: 1rem !important;
    max-width: 35rem;
    display: block;
}

.gees-form__section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gees-dark);
    margin-bottom: 0 !important;
}

.gees-video__modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 600;
    display: none;
    opacity: 0;
    pointer-events: none;
}

.gees-video__modal.show {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    animation: fadeZoomIn 0.3s ease forwards;
}

.gees-video__modal video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
}

@keyframes fadeZoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media only screen and (min-width: 576px) {
    .description-content h2 {
        font-size: 5rem;
    }

    .description-content p {
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .location-thumb__box {
        padding: 2rem;
        padding-bottom: 3rem;
    }

    .location-thumb__box,
    .location-thumb {
        border-radius: 2rem;
    }
}

@media only screen and (min-width: 768px) {
    .gees-header {
        min-height: 70rem;
    }

    .gees-lead {
        font-size: 1.8rem;
    }

    .gees-header::before {
        padding-top: 75%;
    }

    .section-speakers {
        padding-left: 4rem;
        padding-right: 4rem;
        padding-top: 2rem;
    }

    .section-intro__title h2,
    .section-why__title,
    .speakers-title {
        font-size: 5rem;
    }

    .speakers-title {
        font-size: 6rem;
        max-width: 30rem;
    }

    .speakers-title::after {
        bottom: -1rem;
        font-size: 1.6rem;
    }

    .gees-btn {
        font-size: 3rem;
        padding: 1.4rem 0;
        line-height: 40px;
    }

    .gees-btn.primary {
        max-width: 50rem;
    }
    .gees-btn.secondary {
        max-width: 60rem;
    }

    .gees-btn.lg {
        padding: 1.6rem 0;
    }

    .lead {
        font-size: 1.8rem;
        line-height: 1.5;
    }

    .gees-header__content svg {
        width: 35rem;
    }

    .gees-header__content p {
        margin-bottom: 6rem;
    }

    .gees-nav__link {
        font-size: 1.8rem;
    }

    .gees-nav__link::after {
        bottom: 0.2rem;
    }

    .gees-nav__logo {
        width: 14rem;
        height: auto;
    }

    .intro-video__thumb svg {
        width: 6rem;
        height: 6rem;
    }

    .thumb-badge {
        bottom: 2rem;
        right: 2rem;
        padding: 1rem 2.5rem;
        border-radius: 2.5rem;
    }

    .thumb-badge p {
        font-size: 1.65rem;
    }

    .section-description {
        min-height: 67rem;
    }

    .description-content {
        position: relative;
        padding: 2rem 4rem;
    }

    .description-vector {
        top: -15rem;
    }

    .description-content h2 {
        font-size: 7.5rem;
        color: var(--color-white);
        line-height: 1.3;
        margin-bottom: 2.5rem;
    }

    .description-content p {
        font-size: 1.6rem;
        line-height: 1.6;
    }

    .location-thumb__box {
        max-width: 55rem;
        padding: 2.5rem;
        padding-bottom: 3.5rem;
    }

    .location-thumb__box,
    .location-thumb {
        border-radius: 2rem;
    }

    .ellipse-left {
        position: absolute;
        top: -10rem;
    }

    .section-why {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .scrib {
        top: -8rem;
    }

    .why-content {
        padding: 12rem 6rem;
    }

    .why-text-box p {
        font-size: 1.6rem;
    }

    .why-text-box h4 {
        font-size: 1.8rem !important;
    }

    .dsc-box,
    .why-lead {
        margin-bottom: 3rem;
    }

    .why-images {
        margin-top: 4rem;
    }

    .schedule {
        border-radius: 2rem;
        padding: 4rem 6rem;
    }

    .schedule-date {
        font-size: 2rem;
    }

    .schedule-time,
    .schedule-ca {
        font-size: 1.8rem;
    }

    .schedule-line {
        height: 2px;
        margin: 3rem 0;
    }

    .schedule-ca {
        margin-top: 4rem;
    }

    .gees-footer__btn-box {
        flex-direction: row;
        gap: 6rem;
        max-width: 50rem;
        margin-top: 5rem;
    }

    .gees-footer h6,
    .gees-footer p {
        font-size: 2rem;
    }

    .speakers {
        gap: 8rem;
    }

    .speakers-title {
        margin-bottom: 10rem;
    }

    .speaker {
        grid-template-columns: 2fr 4fr;
        padding: 4rem;
    }

    .speaker.speaker-1 {
        box-shadow: 0.5px 0px 0.4px 0px rgba(0, 0, 0, 0.1);
    }

    .speaker.speaker-2 {
        grid-template-columns: 4fr 2fr;
        box-shadow: -0.5px 0px 0.4px 0px rgba(0, 0, 0, 0.1);
    }

    .speaker.speaker-2 .img-box {
        order: 2;
        justify-self: center;
    }

    .speaker.speaker-2 .text-box {
        order: 1;
    }

    .speaker::before {
        content: "";
        height: 100%;
        bottom: unset;
        width: 70%;
        display: block;
        position: absolute;
    }

    .speaker.speaker-1::before {
        box-shadow: 1px 0px 1px rgba(0, 0, 0, 0.2);
        right: 0;
        border-top-right-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }

    .speaker.speaker-2::before {
        left: 0;
        box-shadow: -1px 0px 1px rgba(0, 0, 0, 0.2);
        border-top-left-radius: 2rem;
        border-bottom-left-radius: 2rem;
    }

    .speaker .img-box {
        margin-top: 0;
    }

    .speaker-img-box {
        margin-top: 0;
    }

    .speaker .text-box h3 {
        font-size: 2.5rem;
    }

    .speaker .text-box {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media only screen and (min-width: 1024px) {
    .gees-header__overlay {
        pointer-events: none;
    }

    .section-location {
        margin-bottom: 8rem;
    }

    .gees-lead {
        font-size: 2rem;
    }

    .gees-header__content {
        pointer-events: none;
    }

    .section {
        padding: 8rem auto;
    }

    .section-who {
        padding-left: 4rem;
        padding-right: 4rem;
    }

    .gees-header__content svg {
        width: 40rem;
    }

    .gees-nav__link {
        font-size: 2rem;
    }

    .gees-nav__link::after {
        bottom: 0rem;
    }

    .gees-btn {
        font-size: 4rem;
        padding: 1.5rem 0;
        line-height: 50px;
    }

    .gees-btn.lg {
        /* padding: 2rem 0; */
    }

    .lead {
        font-size: 2.5rem;
        line-height: 1.5;
    }

    .gees-header__content p {
        margin-bottom: 7rem;
    }

    .gees-nav__logo {
        width: 18rem;
        height: auto;
    }

    .section-intro__title h2,
    .section-why__title,
    .speakers-title {
        font-size: 7.5rem;
    }

    .section-speakers {
        padding-left: 8rem;
        padding-right: 8rem;
        padding-top: 2rem;
    }

    .speakers-title {
        font-size: 8.5rem;
        max-width: 40rem;
    }

    .speakers-title::after {
        bottom: -1.5rem;
        font-size: 1.8rem;
    }

    .intro-video__thumb {
        border-radius: 4rem;
        max-width: 80.5rem;
    }

    .section-intro__title {
        margin-bottom: 4rem;
    }

    .intro-video__thumb svg {
        width: 8rem;
        height: 8rem;
    }

    .thumb-badge {
        right: 2rem;
        bottom: 2rem;
    }

    .intro-promo__btn svg {
        height: 3rem;
        width: 3rem;
    }

    .intro-promo__btn {
        border-radius: 3rem;
        padding: 1.5rem 2.5rem;
        max-width: 30rem;
        margin-top: 6rem;
    }

    .intro-promo__btn p {
        font-size: 2rem;
    }

    .description-content {
        position: relative;
        padding: 2rem 8rem;
    }

    .description-vector {
        top: -25rem;
    }

    .description-content h2 {
        font-size: 9rem;
        line-height: 1.3;
    }

    .description-content p {
        font-size: 1.8rem;
    }

    .location-thumb__box {
        max-width: 80.5rem;
        padding: 4.5rem;
        padding-bottom: 6.5rem;
    }

    .location-thumb {
        border-radius: 3rem;
    }

    .ellipse-left {
        top: -15rem;
    }

    .ellipse-right {
        top: -25rem;
        right: 0;
    }

    .section-why {
        padding-left: 6rem;
        padding-right: 6rem;
    }

    .why-content {
        padding: 12rem 8rem;
        border-radius: 3rem;
        margin-bottom: 8rem;
    }

    .why-text-box h4 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem;
    }

    .dsc-box,
    .why-lead {
        margin-bottom: 3rem;
    }

    .section-who img {
        width: 6rem;
    }

    .section-who h5 {
        font-size: 2rem;
    }

    .schedule {
        border-radius: 2rem;
        padding: 5rem 8rem;
    }

    .schedule-date {
        font-size: 2.5rem;
    }

    .schedule-time,
    .schedule-ca {
        font-size: 2rem;
    }

    .schedule-line {
        height: 2px;
        margin: 3rem 0;
    }

    .schedule-ca {
        margin-top: 4rem;
    }
}

@media only screen and (min-width: 1200px) {
    .gees-header__content svg {
        width: 45rem;
    }

    .gees-lead {
        font-size: 2.2rem;
    }

    .section-location {
        margin-bottom: 10rem;
    }

    .section-who {
        padding-left: 6rem;
        padding-right: 6rem;
    }

    .section-intro__title h2,
    .section-why__title,
    .speakers-title {
        font-size: 8rem;
    }

    .section-intro__title {
        margin-bottom: 5rem;
    }

    .description-vector {
        top: -35rem;
    }

    .section-description {
        min-height: 167rem;
    }

    .description-content {
        padding: 2rem 10rem;
    }

    .section-speakers {
        padding-left: 10rem;
        padding-right: 10rem;
        padding-top: 2rem;
    }

    .speakers-title {
        font-size: 9rem;
        max-width: 50rem;
    }

    .speakers-title::after {
        bottom: -2rem;
        font-size: 2rem;
        right: 3rem;
    }

    .ellipse-left {
        top: -20rem;
    }

    .ellipse-right {
        top: -30rem;
    }

    .section-why {
        padding-left: 8rem;
        padding-right: 8rem;
    }

    .why-content {
        padding: 14rem 8rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 6rem;
        border-radius: 3.7rem;
    }

    .dsc-box,
    .why-lead {
        margin-bottom: 4rem;
    }

    .schedule {
        padding: 5rem 6.5rem;
    }
}

@media only screen and (min-width: 1376px) {
    .gees-header__content svg {
        width: 55rem;
    }

    .description__text-box {
        max-width: 55rem;
    }

    .gees-header::before {
        padding-top: 80%;
    }

    .section-who ul {
        gap: 4rem;
    }

    .section-intro__title {
        margin-bottom: 6rem;
    }

    .intro-video__thumb {
        border-radius: 5rem;
        max-width: 118.4rem;
    }

    .location-thumb__box {
        max-width: 118.4rem;
        padding: 5rem;
        padding-bottom: 7.5rem;
    }

    .location-thumb {
        border-radius: 5rem;
    }

    .intro-video__thumb svg {
        width: 15rem;
        height: 15rem;
    }

    .thumb-badge {
        right: 4rem;
        bottom: 4rem;
        padding: 2rem 4.5rem;
        border-radius: 4rem;
    }

    .thumb-badge p {
        font-size: 3rem;
    }

    .description-vector {
        top: -45rem;
    }

    .description-content h2 {
        font-size: 12rem;
    }

    .description-content p {
        font-size: 2rem;
    }

    .section-description {
        min-height: 187rem;
    }

    .section-speakers {
        padding-left: 12rem;
        padding-right: 12rem;
        padding-top: 3rem;
    }

    .speakers-title {
        font-size: 11.5rem;
        max-width: 55rem;
    }

    .speakers-title::after {
        right: 4rem;
    }

    .ellipse-left {
        position: absolute;
        top: -25rem;
    }

    .why-content {
        gap: 8rem;
    }

    .schedule {
        padding: 6rem 10rem;
    }

    .schedule-date {
        font-size: 3rem;
    }

    .schedule-time,
    .schedule-ca {
        font-size: 2.5rem;
    }

    .schedule-line {
        height: 2px;
        margin: 3rem 0;
    }

    .schedule-ca {
        margin-top: 5rem;
    }
}

.speakers-title,
.section-why__title {
    text-align: left !important;
}

.section-why__title {
    color: var(--color-white);
}

.gees-footer__btn-box a {
    line-height: 1.5 !important;
}

.gees-header.half {
    min-height: 45rem;
}

.gees-header.half::before {
    padding-top: 30%;
}

@keyframes button_gradient {
    100% {
        background-position: -200% center;
    }
}
