<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary-color: #b9091e;
    --secondary-color: #fc8d0d;
    --black-color: #111111;
    --white-color: #ffffff;
    --blue-color: #2fa0ff;
    --grey-color: #e6e6e6;
    --darkgrey-color: #333333;
    --lighgrey-color: #151515;
    --primary-font: 'CircularStd';
    --secondary-font: 'Bebas Neue Pro SemiExp XBold';

}

@font-face {
    font-family: 'Bebas Neue Pro SemiExp XBold';
    src: url('../fonts/BebasNeuePro-SemiExpXBold.eot');
    src: url('../fonts/BebasNeuePro-SemiExpXBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/BebasNeuePro-SemiExpXBold.woff2') format('woff2'),
        url('../fonts/BebasNeuePro-SemiExpXBold.woff') format('woff'),
        url('../fonts/BebasNeuePro-SemiExpXBold.ttf') format('truetype'),
        url('../fonts/BebasNeuePro-SemiExpXBold.svg#BebasNeuePro-SemiExpXBold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CircularStd';
    src: url('../fonts/CircularStd-Book.eot');
    src: url('../fonts/CircularStd-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CircularStd-Book.woff2') format('woff2'),
        url('../fonts/CircularStd-Book.woff') format('woff'),
        url('../fonts/CircularStd-Book.ttf') format('truetype'),
        url('../fonts/CircularStd-Book.svg#CircularStd-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CircularStd';
    src: url('../fonts/CircularStd-Medium.eot');
    src: url('../fonts/CircularStd-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CircularStd-Medium.woff2') format('woff2'),
        url('../fonts/CircularStd-Medium.woff') format('woff'),
        url('../fonts/CircularStd-Medium.ttf') format('truetype'),
        url('../fonts/CircularStd-Medium.svg#CircularStd-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CircularStd';
    src: url('../fonts/CircularStd-Bold.eot');
    src: url('../fonts/CircularStd-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CircularStd-Bold.woff2') format('woff2'),
        url('../fonts/CircularStd-Bold.woff') format('woff'),
        url('../fonts/CircularStd-Bold.ttf') format('truetype'),
        url('../fonts/CircularStd-Bold.svg#CircularStd-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'CircularStd';
    src: url('vCircularStd-Black.eot');
    src: url('../fonts/CircularStd-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/CircularStd-Black.woff2') format('woff2'),
        url('../fonts/CircularStd-Black.woff') format('woff'),
        url('../fonts/CircularStd-Black.ttf') format('truetype'),
        url('../fonts/CircularStd-Black.svg#CircularStd-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


body {
    font-family: 'CircularStd';
    font-size: 16px;
    color: #111;
    line-height: 20px;
    font-weight: normal;
}

a {
    text-decoration: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

header::before {
    content: '';
    left: 0;
    right: 0;
    top: -150px;
    height: 100%;
    position: absolute;
    background: var(--black-color);
    transition: ease-in-out 0.4s;
    -webkit-transition: ease-in-out 0.4s;
    -moz-transition: ease-in-out 0.4s;
    -ms-transition: ease-in-out 0.4s;
    -o-transition: ease-in-out 0.4s;
}

header.sticky::before {
    top: 0;
}


.heroBanner {
    height: 100vh;
    /* min-height: 768px; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: transform 0.3s linear;
    -webkit-transition: transform 0.3s linear;
    -moz-transition: transform 0.3s linear;
    -ms-transition: transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}


.heroBanner__content img {
    max-width: 900px;
}

.cta-btn {
    background: var(--primary-color);
    color: #fff;
    border: 0;
    padding: 8px 30px;
    font-size: 16px;
}

.cta-btn img {
    margin-left: 10px;
    position: relative;
    top: -1px;
}

.cta-btn:hover {
    background: var(--secondary-color);
    color: var(--black-color);
}

.cta-btn:hover img {
    filter: invert();
    -webkit-filter: invert();
}

.nav-link {
    color: var(--white-color);
    font-size: 16px;
    margin: 0 30px;
    padding: 11px 0 !important;
    font-weight: normal;
    letter-spacing: 1px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.navbar-brand {
    width: 420px;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--primary-color);
}

.topnumbersSection {
    position: relative;
    margin-top: 100vh;
    background: var(--white-color);
    padding: 100px 20px;
    z-index: 2;
}

.topnumbersSection h2 {
    margin-bottom: 40px;
}

.topnumbersSection p {
    font-size: 24px;
    line-height: 26px;
    margin-top: 40px;
}

.topNumber span {
    font-family: var(--secondary-font);
    display: block;
    font-size: 70px;
    line-height: 70px;
}

.topNumber small {
    font-size: 14px;
    line-height: 16px;
    display: block;
}

.py-100 {
    padding: 100px 0
}


.partnersLogo {
    border-top: 1px solid #ddd;
}

.partnersLogo h5 {
    margin-bottom: 20px;
    font-size: 18px;
}

.aboutSection::before {
    content: '';
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

.main-heading {
    margin-bottom: 60px;
}

.main-heading h2 {
    color: var(--white-color);
    font-size: 36px;
    line-height: 36px;
    position: relative;
    z-index: 1;
}

.main-heading .bar {
    width: 58px;
    height: 4px;
    background: var(--secondary-color);
    display: block;
    margin: auto;
    margin-top: 20px;
}

.main-heading .headingBefore {
    font-size: 220px;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--secondary-font);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.dark-heading h2 {
    color: var(--black-color);
}

.dark-heading .headingBefore {
    color: rgba(0, 0, 0, 0.05);
}

.aboutSection {
    padding-bottom: 250px;
}

.aboutSection__content {
    padding-right: 100px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.eventTime {
    padding-left: 60px;
}

.eventTime small {
    font-size: 16px;
    color: var(--blue-color);
    display: block;
    margin-bottom: 10px;
}

.eventTime span {
    font-size: 24px;
    line-height: 24px;
    color: var(--white-color);
    display: block;
}

.aboutPic {
    height: 500px;
    width: 50%;
    position: absolute;
    top: -430px;
    right: 0;
}

.daySchedule:hover .daySchedule__title {
    background: var(--black-color);
}

.daySchedule:hover .daySchedule__title h5 {
    color: var(--white-color);
}

.daySchedule:hover .daySchedule__title p {
    color: var(--white-color);
}

.daySchedule__day {
    font-family: var(--secondary-font);
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 0;
    padding-left: 30px;
    background: var(--white-color);
    line-height: 50px;
}

.pos {
    position: sticky;
    top: 88px;
    z-index: 1;
}

.daySchedule__title {
    background: var(--grey-color);
    padding: 30px;
    transition: ease-in-out 0.4s;
    -webkit-transition: ease-in-out 0.4s;
    -moz-transition: ease-in-out 0.4s;
    -ms-transition: ease-in-out 0.4s;
    -o-transition: ease-in-out 0.4s;
}

.daySchedule__title h5 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
}

.daySchedule__title p {
    font-size: 14px;
    line-height: 16px;
    max-width: 350px;
}

.daySchedule__block {
    padding-right: 140px;
    margin-top: 50px;
}

.daySchedule__block h5 {
    font-size: 24px;
    text-decoration: underline;
    margin-bottom: 15px;
}

.numberList li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    color: var(--darkgrey-color);
}

.numberList span {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--darkgrey-color);
}

.checkList li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    color: var(--darkgrey-color);
}

.checkList li::before {
    content: '';
    background: url('../img/right-angle-icon.png');
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: -1px;
}

.kbList li {
    font-size: 14px;
    line-height: 16px;
    text-align: center;
}

.kbList li img {
    margin-bottom: 15px;
}

.tikList li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    color: var(--darkgrey-color);
}

.tikList li::before {
    content: '';
    background: url('../img/check-icon.png');
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: -1px;
    background-repeat: no-repeat;
}

.guestSlider__item {
    padding: 0 5px;
}

.guestSection {
    background: var(--black-color);
}

.guestName {
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 15px;
}

.guestName h4 {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 16px;
}

.guestName small {
    display: block;
    font-size: 10px;
    line-height: 10px;
    color: var(--white-color);
}

.guestMsg {
    color: var(--white-color);
    font-size: 12px;
    line-height: 12px;
    margin: 15px 0;
}

.guestVisit small {
    display: block;
    font-size: 10px;
    line-height: 10px;
    color: var(--white-color);
    margin-bottom: 5px;
}

.guestVisit span {
    display: block;
    font-size: 14px;
    line-height: 14px;
    color: var(--primary-color);
}


.guestSlider .slick-arrow {
    background: transparent;
    border: 0;
    color: var(--white-color);
    position: absolute;
    right: 0;
    font-size: 14px;
    bottom: -40px;
}

.guestSlider .slick-prev {
    right: 60px;
    border-right: 1px solid var(--grey-color);
    padding-right: 30px;
}

.guestSlider .slick-dots {
    padding: 0;
    position: absolute;
    left: 5px;
    bottom: -40px;
    margin: 0;
    display: flex;
    background: var(--darkgrey-color);
    font-size: 14px;
}

.guestSlider .slick-dots li {
    list-style-type: none;
    padding: 0;
}

.guestSlider .slick-dots li button {
    background: transparent;
    border: 0;
    color: var(--white-color);
    padding: 5px 10px;
}

.guestSlider .slick-dots li.slick-active button {
    background: var(--grey-color);
    color: var(--black-color);
}

footer {
    background-color: var(--lighgrey-color);
}

.footerContent h2 {
    font-size: 40px;
    line-height: 40px;
    font-weight: bold;
    color: var(--white-color);
    margin-bottom: 15px;
}

.footerContent p {
    font-size: 18px;
    line-height: 18px;
    color: var(--white-color);
}

.socialMedia {
    margin-top: 70px;
}

.socialMedia small {
    color: var(--white-color);
    font-size: 10px;
    display: block;
    margin-bottom: 5px;
}

.socialMedia .d-flex {
    width: 170px;
}

.footerLogo {
    width: 385px;
    position: relative;
    z-index: 1;
}

footer .container::after {
    content: 'TBI';
    font-size: 460px;
    font-weight: bold;
    color: #1a1a1a;
    position: absolute;
    bottom: 0;
    right: 0;
    line-height: 320px;
}


#goTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    font-size: 14px;
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    background-color: var(--secondary-color);
    color: var(--black-color);
    cursor: pointer;
}

.news-column {

    border-radius: 0;
    border: none
}

.news-img img {
    width: 100%;
}

.social-links-news {
    background: var(--grey-color);
    padding: 15px;
}

.social-links-news h6 {
    margin-bottom: 8px;
    font-size: 14px;
}

.panel-list-card {
    background: var(--grey-color);
    min-height: 260px;
}

.panel-list-img {
    border: 1px solid #e6e6e6;
}

.panel-list-card p {
    font-size: 14px;
}

.panel-list-card p span {
    font-weight: bold;
}

#profiles .row {
    justify-content: center;
    row-gap: 20px;
}

.news-column {
    align-items: center;
}

.video-play-ico {
    bottom: 0;
    right: 0;
    position: absolute;
    margin: 0 auto;
    top: 66px;
    left: 0;
    text-align: center;
    /*transform: translateX(0%) translateY(21%);*/
}

.video-play-ico a {
    display: inline-block;
}

.video-play-button {
    position: relative;
    z-index: 10;
    top: 0%;
    left: 0%;
    /*transform: translateX(-50%) translateY(-50%);*/
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    /* background: #fa183d; */
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #e82c30;
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 70px;
    height: 70px;
    background: #e82c30;
    border-radius: 50%;
    transition: all 200ms;
}

.video-play-button:hover:after {
    background-color: darken(#fa183d, 10%);
}

.video-play-icon {
    margin: 18px 0;
}

.video-play-button span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 26px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    top: 6px;
    left: 3px;
}

.pxp-cover {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    max-width: 100%;
    height: 210px;
}

.pxp-areas-1-item {
    display: block;
    position: relative;
    overflow: hidden;
    height: 310px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.10);
    margin-bottom: 30px;
}

.pxp-areas-1-item-fig {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

.pxp-areas-1-item:hover .pxp-areas-1-item-fig {
    transform: scale(1.06, 1.06);
}

.pxp-areas-1-item-details {
    background-color: #fff;
    position: absolute;
    height: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px;
    z-index: 2;
    border-bottom: 3px solid #d6d0d0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pxp-dark-mode .pxp-areas-1-item .pxp-areas-1-item-details {
    background-color: #000;
}

.pxp-areas-1-item-details-area {
    color: #333;
    font-size: 14px;
    line-height: 16px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.pxp-dark-mode .pxp-areas-1-item .pxp-areas-1-item-details-area {
    color: #fff;
}

.pxp-areas-1-item-details-city {
    color: #333;
    font-size: 13px;
    opacity: .7;
    font-style: italic;
    line-height: 15px;
}

.pxp-areas-1-item-details-city .social-links img {
    filter: invert(1);
    width: 24px;
}
.pxp-areas-1-item-details-city .social-links{    display: flex
    ;
        gap: 10px;
        margin-top: 5px;}
.pxp-dark-mode .pxp-areas-1-item .pxp-areas-1-item-details-city {
    color: #fff;
}

.pxp-areas-1-item-counter {
    position: absolute;
    bottom: 120px;
    left: 20px;
    color: #333;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 10px;
    z-index: 3;
    overflow: hidden;
    transform: scale(0.0);
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.pxp-dark-mode .pxp-areas-1-item .pxp-areas-1-item-counter {
    color: #fff;
}

.pxp-areas-1-item:hover .pxp-areas-1-item-counter {
    transform: scale(1, 1);
}

.pxp-areas-1-item-counter:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    border-radius: 50px;
    transform: translateX(-72%);
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.pxp-dark-mode .pxp-areas-1-item .pxp-areas-1-item-counter:before {
    background-color: #000;
}

.pxp-areas-1-item:hover .pxp-areas-1-item-counter:before {
    transform: translateX(0);
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.pxp-areas-1-item-counter&gt;span {
    opacity: 0;
    z-index: 4;
    position: relative;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;

}

.pxp-areas-1-item:hover .pxp-areas-1-item-counter&gt;span {
    opacity: 1;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}

.pxp-areas-1-item-cta {
    position: absolute;
    color: #333;
    bottom: 20px;
    right: 20px;
    z-index: 3;
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0;
    font-weight: 700;
    transform: translateY(400%);
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.pxp-dark-mode .pxp-areas-1-item .pxp-areas-1-item-cta {
    color: #fff;
}

.pxp-areas-1-item:hover .pxp-areas-1-item-cta {
    transform: translateY(0);
    opacity: 1;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@media only screen and (max-width: 1399px) {
    .heroBanner__content img {
        max-width: 700px;
    }

    .nav-link {
        font-size: 14px;
        margin: 0 20px;
    }

    .topnumbersSection h2 {
        font-size: 30px;
    }

    .topNumber span {
        font-size: 60px;
        line-height: 60px;
    }

    .topnumbersSection p {
        font-size: 20px;
        line-height: 22px;
    }

    .aboutSection__content p {
        font-size: 14px;
        line-height: 18px;
    }

    .eventTime span {
        font-size: 20px;
        line-height: 20px;
    }

    .main-heading h2 {
        font-size: 30px;
    }

    .main-heading .headingBefore {
        font-size: 160px;
    }

    .daySchedule__day {
        font-size: 40px;
    }

    .daySchedule__title h5 {
        font-size: 24px;
        margin-bottom: 6px;
    }

    .daySchedule__block h5 {
        font-size: 20px;
    }

    .footerContent h2 {
        font-size: 34px;
        line-height: 34px;
    }
}

@media only screen and (max-width: 1199px) {
    .navbar-brand {
        width: 350px;
    }

    .nav-link {
        margin: 0 16px;
    }

    .heroBanner__content img {
        max-width: 650px;
    }

    .pos {
        top: 77px;
    }

    .daySchedule__block {
        padding-right: 0;
    }

    .kbList {
        flex-wrap: wrap;
    }

    .kbList li {
        width: 33%;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .heroBanner__content img {
        max-width: 530px;
    }

    .navbar-brand {
        width: 290px;
    }

    .nav-link {
        margin: 0 6px;
    }

    .cta-btn {
        padding: 8px 17px;
        font-size: 14px;
    }

    .py-100 {
        padding: 70px 0;
    }

    .partnersLogo__list {
        margin-bottom: 30px;
    }

    .topNumber span {
        font-size: 50px;
        line-height: 50px;
    }

    .topNumber small {
        font-size: 12px;
        line-height: 12px;
    }

    .aboutPic {
        height: 270px;
        width: 100%;
        position: static;
    }

    .eventScheduleSection {
        padding-top: 0;
    }

    .daySchedule__title {
        padding: 20px;
    }

    .daySchedule__title h5 {
        font-size: 20px;
    }

    .daySchedule__day {
        font-size: 30px;
        padding-left: 20px;
    }

    .daySchedule__block h5 {
        font-size: 18px;
    }

    .daySchedule__block p,
    .daySchedule__block li {
        font-size: 14px;
        line-height: 16px;
    }

    .pos {
        top: 69px;
    }

    footer .container::after {
        font-size: 320px;
    }

    .footerLogo {
        width: 315px;
    }
}

@media only screen and (max-width: 767px) {
    header {
        background: var(--black-color);
    }

    header .cta-btn {
        margin-left: 6px !important;
        margin-top: 10px;
    }

    .navbar-toggler {
        padding: 0;
        border: 0;
        box-shadow: none !important;
        position: relative;
        top: -5px;
    }

    .navbar-toggler-icon {
        width: 35px;
        height: 35px;
        background-color: var(--secondary-color);
        border-radius: 50%;
        background-size: 24px;
    }

    .navbar-toggler-icon::before {
        content: 'Menu';
        position: absolute;
        left: 4px;
        bottom: -11px;
        color: var(--secondary-color);
        font-size: 10px;
    }

    .heroBanner__content img {
        max-width: 100%;
    }

    .topNumber {
        margin: 20px 0;
    }

    .topnumbersSection h2 {
        font-size: 26px;
        line-height: 26px;
    }

    .main-heading h2 {
        font-size: 26px;
    }

    .main-heading .headingBefore {
        font-size: 120px;
    }

    .partnersLogo__list img {
        height: 50px;
    }

    .aboutSection__content {
        padding: 0;
        border: 0;
    }

    .eventTime {
        padding-left: 0;
        margin-top: 40px;
    }

    .daySchedule__title p {
        font-size: 12px;
        line-height: 13px;
        max-width: 100%;
    }

    .socialMedia {
        margin-top: 40px;
    }

    .footerLogo {
        width: 280px;
        margin: 0 !important;
        margin-top: 40px !important;
    }

    .footerContent h2 {
        font-size: 30px;
        line-height: 30px;
    }

    .footerContent p {
        font-size: 14px;
        line-height: 16px;
        color: var(--white-color);
    }
}

@media only screen and (max-width: 575px) {
    .navbar-brand {
        width: 295px;
    }

    .heroBanner__content.text-center {
        padding: 30px;
    }

    .partnersLogo__list {
        padding: 0 !important;
    }

    .main-heading .headingBefore {
        font-size: 90px;
    }

    .guest-li__logo img {
        width: 50px;
    }

    .footerContent h2 {
        font-size: 24px;
        line-height: 25px;
    }

    footer {
        text-align: center;
    }

    .socialMedia .d-flex {
        width: 230px;
        margin: 10px auto 40px;
    }

    .footerLogo {
        width: 260px;
        margin: auto !important;
    }

    .guestSlider .slick-dots {
        display: none !important;
    }

    .heroBanner__content .desktop-content {
        display: none;
    }

    .heroBanner__content .mob-content {
        display: block !important;
    }

    #goTopBtn {
        bottom: 15px;
        right: 15px;
        font-size: 12px;
        padding: 5px 15px;
    }

    footer .container::after {
        font-size: 170px;
        left: 0;
        text-align: center;
        line-height: 140px;
        bottom: 0;
    }
}

@media only screen and (max-width: 374px) {
    .navbar-brand {
        width: 245px;
    }
}</pre></body></html>