:root {
    --cream: #f0f8ee;
    --secondary-color: #000;
    --tertiary-color: #0f8341;
    --orange-teal: #23cf09;
    --light-secondary-color: #00823b;
    --dark-secondary-color: #064619;
    --teal: #042729;
    --teal2: #063027;
    --teal-darkish: #023337;
    --teal-light: #617779;
    --sage: #b9cdbe;
    --main-text-color: #fff;
    --lavender: #c4d9c2;
    --magenta: #184606;
    --font-family: "Lexend Deca", sans-serif;
    --padding: 10px;
    --margin: 10px;
    --radius: 8px;
}
.pad-no {
    padding: 0px !important;
}
* {
    padding: 0;
    margin: 0;
    font-family: var(--font-family);
}
a {
    color: inherit !important;
    text-decoration: none !important;
}
/* navbar section */
.navbar {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 30px;
    background: var(--teal);
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
.logo-box {
    display: flex;
    justify-content: left;
    align-items: center;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img {
    height: 40px;
    margin-left: 10px;
}
.logo-desc {
    background: var(--cream);
    padding: 5px 8px;
    text-transform: uppercase;
    position: relative;
    font-weight: 700;
    font-size: 25px;
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
}
.logo-desc::after {
    content: "";
    position: absolute;
    height: 3px;
    background: var(--teal);
    width: 60%;
    margin-left: 5px;
    left: 5px;
    bottom: 8px;
    background: var(--light-secondary-color);
}
.logo-year {
    font-weight: 900;
    font-size: 25px;
    background: var(--light-secondary-color);
    padding: 5px 8px;
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    color: var(--main-text-color);
}
.link-box {
    display: flex;
    flex-wrap: wrap;
}
.links {
    color: var(--sage) !important;
    margin-right: 20px;
    transition: all 0.3s ease;
    position: relative;
}
.links:hover {
    color: var(--cream) !important;
}
.links.active {
    color: var(--cream) !important;
}
.links::after {
    content: "";
    position: absolute;
    height: 0.5px;
    background: var(--sage);
    width: 0%;
    left: 0;
    bottom: 0px;
    transition: all 0.5s ease;
}
.links:hover::after {
    width: 100%;
    background: var(--cream);
}
.links.active::after {
    width: 100%;
    background: var(--cream);
}
.more-box {
    display: flex;
    justify-content: right;
    align-items: center;
    display: none;
}
.more-ctrl {
    display: flex;
    justify-content: center;
    cursor: pointer;
}
.mobile-menu{
    position: fixed;
    top: 70px;
    background: var(--teal-darkish);
    z-index: 10;
    width: 100%;
    transition: all .3s ease;
    height: 0px;
    overflow: hidden;
}
.mobile-menu a{
    display: block;
    padding: 10px 20px;
    border-bottom: solid 1px #00823b2f;
}
.mobile-menu.active{
    height: 35%;
    overflow: auto;
}
.nav-text {
    color: var(--sage);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}
.more-ctrl i {
    font-size: 16px;
    color: var(--sage);
    margin-right: 5px;
    margin-left: 5px;
}

.hero-section {
    background-image: url('../img/digital.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size:  cover;
    color: var(--sage);
    margin-top: 30px;
    padding-bottom: 60px;
    padding: 30px 20px;
    min-height: 500px;
    position: relative;
}

.hero-section::before{
    content: '';
    left: 0px;
    top: 0px;
    background: rgba(0,0,0,.70);
    position: absolute;
    height: 100%;
    width: 100%;
}

.hero-section .left {
    flex: 1;
    flex-basis: auto;
    min-width: 0;
    background-color: var(--teal);
    border-radius: var(--radius);
    min-height: 200px;
    margin-top: 90px;
    padding: 20px 40px;
    padding-bottom: 80px;
}

.hero-section .left h1 {
    color: var(--cream);
    text-transform: none;
    font-size: 80px;
    font-weight: 400;
}
.theme-text{
    color: var(--cream);
    font-weight: 700;
    font-size: 17px;
}

.hero-section .right {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;
    min-height: 200px;
    background: transparent;
    padding: 20px 0px;
}

.hero-section .copy {
    margin-bottom: 40px;
}

.hero-section .left .desktop {
    display: flex;
    flex-direction: column;
}

#mainVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.play-ctrl {
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
}

.my-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.my-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 1200px;
    padding: 20px;
}

.my-modal video {
    width: 100%;
    height: 80vh;
}

.my-modal-close {
    position: absolute;
    right: 20px;
    top: 10px;
    color: white;
    font-size: 35px;
    cursor: pointer;
    z-index: 9;
}

.i-button {
    background-color: var(--light-secondary-color);
    border-radius: var(--radius);
    color: var(--main-text-color) !important;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.065rem;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 0.9375rem;
    text-transform: uppercase;
    transition: 0.25s ease;
    width: auto;
}
.i-button:hover {
    background: var(--cream);
    color: var(--light-secondary-color) !important;
}
.video-container {
    border-radius: var(--radius);
    position: relative;
    margin-top: 30px;
    width: 100%;
    height: 400px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.video-container #heroVideo{
    height: 100%;
    width: 100%;
    border-radius: var(--radius);
    object-fit: cover;
}
.video-span-text {
    color: var(--main-text-color);
    font-weight: 300;
    font-size: 18px;
}
.play-ctrl {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: var(--teal);
    padding: 5px 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.play-ctrl:hover {
    background: var(--main-text-color);
}
.play-ctrl i {
    color: var(--main-text-color);
}
.play-ctrl:hover i {
    color: var(--teal);
}
.full-video-button {
    background: var(--teal);
    border-radius: var(--radius);
    bottom: 1.5rem;
    display: flex;
    flex-direction: row;
    gap: var(--radius);
    line-height: 1em;
    padding: 0.8125rem;
    pointer-events: auto;
    position: absolute;
    right: 50px;
    text-transform: uppercase;
    -webkit-user-select: auto;
    -moz-user-select: auto;
    user-select: auto;
    z-index: 3;
    color: var(--main-text-color);
    border: none;
    font-size: 13px;
    transition: all 0.3s ease;
}
.full-video-button:hover {
    transform: scale(0.9);
    background: var(--light-secondary-color);
}

/* section what is */
.what-is {
    background-color: var(--cream);
    background-image: url(../img/large-top.png);
    background-position: 100% 0;
    background-repeat: no-repeat;
    color: var(--teal);
    --offset: 7.0625rem;
    --gap: 1.25rem;
    --adjustment: 12px;
    --control-adjustment: 7px;
    padding: 75px 75px 75px 0px;
}
.what-is-box {
    background: var(--cream);
    background-image: url(../img/bottom-right.png);
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    padding: 40px 40px;
    min-height: 400px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.titled-whatis {
    font-size: 50px;
    color: var(--teal);
    text-transform: none;
}
.whatis-desc p {
    font-weight: 300;
    margin-top: 30px;
}

.whatis-carousel {
    padding-top: 50px;
}

.whatis-carousel .item {
    background: var(--main-text-color);
    background-image: url(../img/top-small-center.png);
    background-position: left 0px;
    background-repeat: no-repeat;
    background-size: 50%;
    margin: 10px;
    color: var(--light-secondary-color);
    font-size: 24px;
    text-align: center;
    border-radius: var(--radius);
    min-height: 250px;
    align-items: flex-start;
    justify-content: end;
    flex-direction: column;
    display: flex;
    padding: 10px 20px;
}
.whatis-carousel .owl-nav {
    display: none;
}
.whatis-carousel .item h5 {
    font-size: 75px;
    font-weight: 500;
}
.whatis-carousel .item span {
    font-size: 16px;
    text-transform: uppercase;
}
.wwhatis-ctrl {
    text-align: center;
    margin-top: 30px;
}
.whatis-ctrl button {
    background: var(--light-secondary-color);
    color: #fff;
    border: none;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50%;
    margin-top: 30px;
    margin-left: 10px;
}
.whatis-carousel .owl-dots {
    position: absolute;
    right: 20px;
    bottom: -60px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--light-secondary-color);
    opacity: 0.3;
}
.owl-theme .owl-dots .owl-dot span {
    background: var(--light-secondary-color);
}
/* annoucement area */
.announcement-area {
    background-image: url(../img/top-large.png), url(../img/bottom-large.png);
    background-position: 100% 0, 0 100%;
    background-repeat: no-repeat, no-repeat;
    min-height: 300px;
    background-color: var(--light-secondary-color);
    padding: 50px;
}
.annoucement-box {
    min-height: 300px;
    border-radius: var(--radius);
    background: var(--light-secondary-color);
}
.announcement-description {
    padding: 20px 50px 20px 20px;
    position: relative;
}
.announcement-tag {
    top: 0;
    left: 20px;
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--main-text-color);
    background: var(--tertiary-color);
    position: absolute;
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    font-weight: 500;
}
.announcement-carousel .item {
    border-radius: 10px;
    text-align: left;
}
.announcement-carousel .main-text {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--main-text-color);
}

.announcement-carousel .description-text {
    font-size: 16px;
    color: var(--main-text-color);
    margin-bottom: 25px;
    font-weight: 300;
}
.announcement-carousel .cta-button {
    margin-bottom: 70px;
}
.cta-button {
    padding: 10px 20px;
    background: transparent;
    border: solid 1px var(--main-text-color);
    color: white;
    border-radius: var(--radius);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: var(--main-text-color);
    color: var(--light-secondary-color);
}
.cta-button.white {
    color: var(--main-text-color) !important;
}
.cta-button.white:hover {
    color: var(--teal) !important;
}

.cta-button.green {
    color: var(--dark-secondary-color) !important;
    border: solid 1px var(--light-secondary-color);
}
.cta-button.green:hover {
    color: var(--main-text-color) !important;
    background: var(--teal);
}
.annoucement-ctrl {
    text-align: right;
    margin-top: 25px;
}

.annoucement-ctrl button {
    background: transparent;
    border: solid 2px var(--main-text-color) !important;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    width: 35px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}
.announcement-carousel .owl-nav {
    position: absolute;
    left: 0px;
    bottom: -20px;
}
.announcement-carousel .owl-prev,
.announcement-carousel .owl-next {
    color: var(--main-text-color) !important;
    transition: all 0.3s ease;
    font-size: 25px !important;
}
.announcement-carousel .owl-prev:hover,
.announcement-carousel .owl-next:hover {
    background: none !important;
    opacity: 0.7;
}
.anc-image {
    width: 100%;
    min-height: 600px;
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.anc-image-carousel .owl-nav {
    display: none;
}
.anc-image-carousel .owl-dots {
    display: none;
}
/* why-attend */
.why-attend {
    min-height: 300px;
    background-image: url(../img/top-500.png), url(../img/bottom-500.png);
    background-position: 100% 0, 0 100%;
    background-repeat: no-repeat, no-repeat;
    background-color: var(--dark-secondary-color);
    padding: 80px 50px;
}
.why-attend-box {
    background-color: var(--dark-secondary-color);
    border-radius: var(--radius);
    color: var(--lavender);
    margin-bottom: 40px;
    padding: 40px;
    background-image: url(../img/why-top.png), url(../img/why-bottom.png);
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, 100% 100%;
}
.why-inbound h1 {
    font-size: 55px;
    color: var(--cream);
    font-weight: 400;
    line-height: 1.2;
}
.why-inbound img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: var(--radius);
    object-fit: cover;
}
.why-desc-title {
    font-weight: 500;
    font-size: 30px;
    color: var(--main-text-color);
}
.why-desc-txt {
    font-weight: 300;
}
.why-border {
    border-top: solid 1px rgba(214, 194, 217, 0.24);
    padding-bottom: 30px;
    padding-top: 30px;
}
/* secure-spot */
.secure-spot {
    background-color: var(--cream);
    background-image: url(../img/top.png), url(../img/large-bottom.png);
    background-position: 100% 0, 0 100%;
    background-repeat: no-repeat, no-repeat;
    color: var(--teal);
    min-height: 200px;
    padding: 50px 20px;
}
.secure-header-txt {
    margin-bottom: 50px;
}
.secure-header-txt h2 {
    text-transform: capitalize;
    font-size: 70px;
}
.secure-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}
.secure-links li {
    text-transform: capitalize;
    color: var(--light-secondary-color);
    text-decoration: underline;
    margin-right: 20px;
    transition: all 0.3s ease;
}
.secure-links li:hover {
    color: var(--main-text-color);
    text-decoration: none;
}

.secure-links.white li {
    color: var(--main-text-color);
}

.secure-links.white li:hover {
    color: var(--light-secondary-color);
}

.pad-secure {
    padding: 10px 10px 10px 0px;
    flex-direction: column;
    display: flex;
}
.spot-card {
    flex: 1;
    min-height: 200px;
    border-radius: var(--radius);
    background: var(--main-text-color);
    padding: 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.spot-card.dark{
    background: var(--teal-darkish);
}
.stretch-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.underlin-txt {
    text-decoration: underline !important;
}
.spot-card.dark .underlin-txt {
    color: var(--main-text-color) !important;
}
.spot-date {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--light-secondary-color);
}
.spot-card.dark .spot-date{
    color: var(--cream);
}
.spot-title {
    margin-top: 30px;
    margin-bottom: 30px;
}
.spot-card.dark .spot-title{
    color: var(--main-text-color);
}
.spot-desc {
    font-weight: 300;
    font-size: 15px;
}

.tiers-parent {
    list-style: none;
}
.tiers-parent li {
    border-bottom: solid 1px rgba(4, 39, 41, 0.205);
    padding-top: 20px;
    padding-bottom: 10px;
}
.spot-card.dark .tiers-parent li{
    border-bottom: solid 1px rgba(9, 107, 112, 0.489);
}
.tiers-parent li:last-child {
    border-bottom: none !important;
}
.tier-number {
    font-size: 21px;
    color: var(--teal-light);
}
.spot-card.dark .tier-number{
    color: var(--sage);
}
.tier.active .tier-number {
    color: var(--light-secondary-color);
}
.tier-number.strike {
    text-decoration: line-through;
}
.tier p {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.sold-out {
    text-transform: uppercase;
    color: var(--teal-light);
    font-size: 12px;
    padding-top: 10px;
}
.spot-card.dark .sold-out{
    color: var(--lavender);
}

.tier.active a {
    color: var(--light-secondary-color) !important;
    text-transform: uppercase;
    font-size: 11px;
    border: solid 1px var(--light-secondary-color);
    padding: 5px 8px;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    text-align: center;
    max-height: 30px;
}
.spot-card.dark .tier.active a{
    color: var(--orange-teal) !important;
}

.spot-card.dark .tier.active .tier-number{
    color: var(--orange-teal) !important;
}

.tier.active a:hover {
    color: var(--main-text-color) !important;
    background: var(--light-secondary-color);
    border: solid 1px transparent;
}

.spot-card.dark .tier.active a:hover{
    color: var(--main-text-color) !important;
}
.offer-list{
    margin-top: 20px;
    margin-bottom: 20px;
}
.offer-list li{
    color: var(--light-secondary-color);
    list-style: none;
    margin-bottom: 10px;
    font-size: 15px;
    padding-left: 10px;
    position: relative
}
.spot-card.dark .offer-list li{
    color: var(--main-text-color);
}
.offer-list li::before{
    content: '';
    position: absolute;
    left: 0;
    height: 5px;
    width: 5px;
    background: var(--light-secondary-color);
    border-radius: 50%;
    top: 10px;
}
.spot-card.dark .offer-list li::before{
    background: var(--orange-teal);
}
.btn-spot {
    text-transform: uppercase;
    font-size: 14px;
    color: var(--main-text-color) !important;
    background: var(--light-secondary-color);
    padding: 10px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    border: solid 1px transparent;
}
.btn-spot:hover {
    background: transparent;
    border: solid 1px var(--light-secondary-color);
    color: var(--light-secondary-color) !important;
}
/* speaker agenda */
.speaker-agenda {
    background-color: var(--teal);
    background-image: url(../img/large-top.png), url(../img/large-bottom.png);
    background-position: 100% 0, 0 100%;
    background-repeat: no-repeat, no-repeat;
    min-height: 200px;
    padding: 50px 30px;
}
.speaker-box {
    padding: 10px 40px;
    min-height: 300px;
    border-radius: var(--radius);
    background-image: url(../img/digital.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}
.speaker-box::before{
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.402);
    z-index: -1;
    border-radius: var(--radius);
}
.speakers-headline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    margin-bottom: 20px;
}
.speakers-headline h2 {
    font-size: 70px;
    color: var(--main-text-color);
    font-weight: 400;
}
.speakers-headline a {
    margin-top: 30px;
    height: 45px;
}
.speaker-agenda-desc {
    width: 60%;
    color: var(--sage);
}
/* Speaker Agenda - Updated Active State */
.speaker-carousel {
    margin-top: 70px;
}
.speaker-carousel .item {
    position: relative;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.speaker-carousel .item img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
    border-radius: var(--radius);
}

.speaker-description {
    position: relative;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    margin-top: 50px;
}

.speaker-carousel .active.center .item {
    z-index: 2;
}

.speaker-carousel .active.center img {
    filter: grayscale(0%);
    border-radius: var(--radius);
    transform: scale(1.3);
}

.speaker-carousel .active.center .speaker-description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.speaker-carousel .item:hover img {
    filter: grayscale(50%);
}
.speaker-name {
    color: var(--main-text-color);
    font-size: 23px;
}
.speaker-position {
    color: var(--main-text-color);
    font-size: 13px;
}
.speaker-desc {
    color: var(--sage);
    font-weight: 300;
}
.speaker-carousel .owl-nav {
    position: absolute;
    left: 0px;
    bottom: 150px;
    display: block !important;
}
.speaker-carousel .owl-prev span {
    font-size: 60px;
    color: var(--main-text-color);
    margin-left: 10px;
    margin-right: 10px;
}
.speaker-carousel .owl-next span {
    font-size: 60px;
    color: var(--main-text-color);
    margin-left: 10px;
    margin-right: 10px;
}

.speaker-carousel .owl-next:hover,
.speaker-carousel .owl-prev:hover {
    background: transparent !important;
    opacity: 0.4;
}

.speaker-carousel .owl-dots {
    position: absolute;
    right: 0px;
    bottom: 180px;
    display: block !important;
}

/* video section */
.video-bound {
    background: var(--dark-secondary-color);
    min-height: 500px;
    background-image: url(../img/top.png), url(../img/down.png);
    background-position: 100% 0, 0 100%;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 1s ease;
}
.video-speaker-box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 80%;
    height: 80%;
    z-index: 0;
    overflow: hidden;
    transition: transform 1s ease;
    border-radius: 12px;
    background: black;
}

.video-speaker-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.616);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-text {
    width: 80%;
    height: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    opacity: 0;
    transition: bottom 1s ease, opacity 1s ease;
    text-align: center;
    padding-top: 12%;
}
.video-text h1{
    font-size: 70px;
}
.video-text p{
    font-size: 16px;
    font-weight: 300;
    margin-top: 30px;
    margin-bottom: 30px;
}
.video-text .cta-button:hover{
    color: var(--dark-secondary-color) !important;
}

.video-speaker-box.active {
    transform: translate(-50%, -50%) scale(1);
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.video-speaker-box.active::before {
    opacity: 1;
}

.video-speaker-box.active .video-text {
    bottom: 30px;
    opacity: 1;
}
/* snaps section */
.snap-area{
    min-height: 400px;
    background: var(--teal);
    background-image: url(../img/top-small-center.png), url(../img/bottom-500.png);
    background-position: 100% 0, 0 100%;
    background-repeat: no-repeat, no-repeat;
    padding-bottom: 50px;
}
.snap-area-title{
    padding: 40px;
}
.snap-area-title h2{
    font-size: 35px;
    color: var(--cream);
    font-weight: 500;
}
.snap-area-title p{
    color: var(--sage);
    font-weight: 300;
    font-size: 15px;
}
.snap-carousel-left, .snap-carousel-right {
    margin: 20px auto;
    max-width: 1200px;
}
.snap-carousel-left img,.snap-carousel-right img {
    height: 230px;
    width: auto;
    object-fit: cover;
    margin: 0 10px;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.402);
    margin-bottom: 30px;
}
/* blog section */
.blog-section{
    background: var(--cream);
    min-height: 300px;
    background-image: url(../img/top-small-center.png);
    background-position: 100% 0;
    background-repeat: no-repeat;
    padding: 40px;
}
/*  
.blog-section {
    min-height: 300px;
    background-image: url(../img/white_digital.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px;
} */

.blog-section .header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 100px;
}
.articulate{
    color: var(--teal);
    font-size: 50px;
}
.blog-section .header .cta-button{
    margin-bottom: 30px;
}
.news-carousel{
    margin-top: 30px;
}
.news-wrapper{
    min-height: 300px;
    padding: 0px 20px;
    margin-bottom: 90px;
}
.news-img-box{
    height: 250px;
    border-radius: var(--radius);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.news-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
    cursor: pointer;
}
.news-wrapper:hover img{
    transform: scale(1.2);
}
.news-wrapper .tag-section{
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}
.news-wrapper .tag-section .cta-button{
    font-size: 12px !important;
    padding: 8px 10px;
}
.news-wrapper .tag-section h6{
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    margin-left: 20px;
    margin-top: 10px;
}
.news-wrapper .news-title{
    font-size: 28px;
    font-weight: 600;
    margin-top: 15px;
}
.news-wrapper:hover .news-title{
    color: var(--light-secondary-color);
}
.news-wrapper p{
    font-weight: 300;
    font-size: 14px;
}
.news-tags{
    display: flex;
    padding-top: 10px;
    padding-bottom: 10px;
}
.tag-text{
    color: var(--light-secondary-color) !important;
    text-decoration: underline !important;
    text-transform: uppercase;
    font-size: 13px;
    margin-left: 10px;
    line-height: 10px;
}
.tag-text:hover{
    text-decoration: none !important;
}

/* help center */
.help-center{
    min-height: 200px;
    background: var(--teal2);
    background-image: url(../img/help-top.png), url(../img/help-bottom.png);
    background-position: 0 0, 100% 100%;
    background-repeat: no-repeat;
    padding: 80px 40px;
}
.help-center-box{
    border-radius: var(--radius);
    background: var(--teal2);
    background-image: url(../img/down.png);
    background-position: 0 100%;
    background-repeat: no-repeat;
    min-height: 200px;
    color: var(--lavender);
}
.help-center-desc{
    padding: 40px 20px;
}
.help-center-desc h2{
    font-size: 60px;
    color: var(--main-text-color);
}
.help-center-desc h2.smaller{
    font-size: 40px;
}
.help-center-desc p{
    margin-top: 30px;
    margin-bottom: 50px;
}
.help-center-desc a{
    margin-top: 40px;
    margin-bottom: 20px;
}
.help-img{
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-top-right-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
}
.help-img.inverted{
    border-top-left-radius: var(--radius);
    border-bottom-left-radius: var(--radius);
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
/* footer section */
.footer-section{
    min-height: 200px;
    padding: 80px 40px;
    background: var(--teal);
   
}
.footer-logo{
    display: flex;
    flex-wrap: wrap;
}
.footer-logo img{
    height: 50px;
    margin-right: 40px;
}
.footer-logo .cta-button{
    margin-top: 10px;
}
.entitled-footer{
    font-weight: 500;
    color: var(--cream);
    font-size: 20px;
    margin-top: 50px;
}
.footer-desc{
    font-size: 12px;
    color: var(--lavender);
    margin-top: 20px;
    font-weight: 300;
}
.footer-desc a{
    text-decoration: underline !important;
}  
.devs-area{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
}
.devs-area img{
    margin-right: 20px;
    height: 40px;
    object-fit: cover;
}
.devs-area h6{
    margin-right: 20px;
    color: var(--lavender);
    margin-top: 15px;
    font-weight: 300;
    font-size: 11px;
}
.devs-area a{
    margin-right: 20px;
    color: var(--main-text-color) !important;
    margin-top: 15px;
    font-weight: 300;
    font-size: 11px;
    text-decoration: underline !important;
    text-transform: capitalize;
}
.footer-social-links{
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 20px;
}
.hash-tag{
    color: var(--main-text-color);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 10px;
}
.footer-social{
    background: #000;
    border-radius: 50%;
    padding: 3px 5px;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -8px;
    margin-right: 15px;
}
.footer-social i{
    color: var(--cream);
    font-size: 14px;
}
.footer-social:hover{
    background: var(--light-secondary-color);
    color: var(--main-text-color);
}
.footer-form{
    display: flex;
    margin-top: 50px;
    justify-content: flex-end;
}
.footer-form input{
    width: 70%;
    border: none;
    outline: none !important;
    box-shadow: none !important;
    padding: 10px 0px;
    background: transparent;
    border-bottom: solid 2px var(--teal-light);
    color: var(--lavender);
}
.footer-form input::placeholder{
    color: var(--teal-light);
}
.footer-form button{
    border: none;
    padding: 15px 20px;
    background: transparent;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--lavender);
    border-bottom: solid 2px var(--teal-light);
}
.footer-form button:hover{
    color: var(--cream);
}

/* registration page */
.register-box {
    background: var(--teal);
   
    color: var(--sage);
    padding: 80px 40px;
    min-height: 300px;
}
.register-parent{
    padding-top: 80px;
}
.headline-wrapper{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    color: var(--main-text-color);
}
.headline-wrapper.between{
    justify-content: space-between;
}
.headline-wrapper h1{
    font-size: 60px;
}
.headline-wrapper .meta{
    padding-left: 40px
}
.headline-desc{
    padding-top: 40px;
    color: var(--lavender);
    max-width: 80%;
}
/* faq-section */
.faq-section{
    background: var(--teal);
   
    position: relative;
    min-height: 200px;
    padding: 80px 40px;
}
.faq-parent{
    padding: 10px 20px;
    
    border-radius: var(--radius);
  
    margin-bottom: 40px;
    padding: 40px 40px;
    padding-bottom: 80px;
    padding-top: 70px;
}
.dn-card{
    border: none;
    background: transparent;
    border-bottom: solid 1px #00823b70;
}
.dn-accordion{
    background: #024d2ee8;
    border: none !important;
}
.dn-button{
    box-shadow: none !important;
    color: var(--main-text-color);
    font-size: 30px;
    font-weight: 500;
    text-align: left;
}
.dn-button:hover{
    color: var(--main-text-color);
}
.dn-button:hover span{
    text-decoration: none !important;
}
.dn-card-body{
    background: #047748e8;
    color: var(--main-text-color) !important;
}
/* sponsorship section */
.past-sponsors{
    background: var(--cream);
    background-image: url(../img/top-small-center.png), url(../img/help-bottom.png);
    background-position: 100% 0, 100% 100%;
    background-repeat: no-repeat, no-repeat;
    padding: 80px 40px;
    min-height: 200px;
}
.sponsor-area-title{
    font-size: 53px;
    font-weight: 600;
}
.sponsor-tab{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-bottom: solid 1px var(--sage);
    padding-bottom: 20px;
    margin-top: 30px;
    padding-top: 20px;
}
.sponsor-tab.active{
    background: var(--cream);
    position: fixed;
    top: 40px;
    left: 0px;
    padding-left: 40px;
    z-index: 10;
}
.sponsor-tab .tabs{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 3%;
    cursor: pointer;
}
.sponsor-tab .tabs h6{
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-right: 15px;
}
.sponsor-tab .tabs:hover h6{
    color: var(--tertiary-color)
}
.sponsor-tab .tabs.active h6{
    color: var(--tertiary-color);
}
.sponsor-tab .tabs span{
    font-size: 13px;
    color: var(--secondary-color);
    font-weight: 300;
    margin-top: -7px;
}
.sponsor-tab .tabs:hover span{
    color: var(--tertiary-color);
}
.sponsor-tab .tabs.active span{
    color: var(--tertiary-color);
}
.sponsor-child{
    display: flex;
    flex-wrap: wrap;
}
.sponsor-section-title{
    width: 100%;
    font-size: 40px;
    font-weight: 500;
    color: var(--light-secondary-color);
    padding-top: 40px;
    padding-bottom: 30px;
    text-transform: capitalize;
}
.sponsor-img{
    width: 200px;
    height: 150px;
    border-radius: var(--radius);
    background: var(--main-text-color);
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    margin-bottom: 10px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.023);
    cursor: pointer;
}
.sponsor-img img{
    height: 100px;
    object-fit: cover;
    transition: all .3s ease;
}
.sponsor-img:hover img{
    transform: scale(1.15);
}
/* contact section */
.contact-section{
    background: var(--cream);
    background-image: url(../img/top-small-center.png), url(../img/bottom-500.png);
    background-position: 100% 0, 0% 100%;
    background-repeat: no-repeat, no-repeat;
    padding: 80px 40px;
    min-height: 200px;
}

.contact-card-help{
    background: var(--cream);
    background-image: url('../img/why-top.png');
    background-position: 0 0;
    background-repeat: no-repeat;
    margin-bottom: 40px;
    padding: 60px 40px;
    border-radius: var(--radius);
    min-height: 300px;
}
.contact-card-help .become{
    font-size: 80px;
    margin-bottom: 30px;
    font-weight: 400;
}
.contact-card-help p{
    font-weight: 300;
}
.contact-card{
    padding: 10px
}
.contact-card-form{
    border-radius: var(--radius);
    background: var(--main-text-color);
    padding: 80px 40px;
    min-height: 400px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.023);
}
.form-card{
    margin-bottom: 30px;
}
.form-card label{
    font-weight: 300;
    font-size: 15px;
}
.contact-form-input::placeholder{
    font-weight: 300;
}
.contact-form-input{
    padding: 35px 30px;
    box-shadow: none !important;
    border-radius: var(--radius);
}