@font-face {
    font-family: Oswald-Medium;
    src: url(./fonts/Oswald/static/Oswald-Medium.ttf);
}

@font-face {
    font-family: Montserrat-Regular;
    src: url(./fonts/Montserrat/Montserrat-Regular.ttf);
}

@font-face {
    font-family: Montserrat-SemiBold;
    src: url(./fonts/Montserrat/Montserrat-SemiBold.ttf);
}

@font-face {
    font-family: Montserrat-Medium;
    src: url(./fonts/Montserrat/Montserrat-Medium.ttf);
}

@font-face {
    font-family: Montserrat-Bold;
    src: url(./fonts/Montserrat/Montserrat-Bold.ttf);
}
@font-face {
    font-family:Helvetica;
    src: url(./fonts/Helvetica/Helvetica.ttf);
}
@font-face {
    font-family:Roboto-Medium;
    src: url(./fonts/Roboto/Roboto-Medium.ttf);
}
@font-face {
    font-family:Roboto-Regular;
    src: url(./fonts/Roboto/Roboto-Regular.ttf);
}
@font-face {
    font-family:Roboto-Bold;
    src: url(./fonts/Roboto/Roboto-Bold.ttf);
}
@font-face {
    font-family:Roboto-black;
    src: url(./fonts/Roboto/Roboto-Black.ttf);
}
body {
    --color: #fff;

}

.banner {
    background-image: url(./images/banner.jpg);
    position: relative;

    background-size: cover;
    /* Ensures the background image covers the entire element */
    background-position: center;
    /* Centers the background image within the element */
    background-repeat: no-repeat;
    height: 998px;
    display: flex;
    flex-direction: column;
}

.top-logo {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.we-are-attending {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 300px
}

.left-logo {
    padding-top: 44px;
    padding-left: 40px;
}

.right-logo {
    padding-top: 55px;
    padding-right: 68px;
}

.logo-2 {
    padding-top:140px;
    padding-left: 78px;
}

.banner-head-text {
    font-family: Oswald-Medium !important;
    color:#D82028;
    font-size: 90px;
    padding-left: 78px;
    padding-top:10px;
    font-weight: 500;
    /* line-height: 136px; */
    letter-spacing: -0.05em;
    text-align: left;
    margin: 0;
    text-transform: uppercase;



}

.banner-head-second {
    font-family: Montserrat-Medium;
    font-size: 32px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: -0.02em;
    text-align: left;
    color: #333333;
    padding-left: 87px;

}


.banner-head-text,
.banner-head-second {
    opacity: 0;
}

/* Animation for first headline */
@keyframes slideFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation for second headline */
@keyframes slideFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.banner-head-text.animate-left {
    animation: slideFromLeft 1.5s ease-in-out forwards;
}

.banner-head-second.animate-up {
    animation: slideFromBottom 1.5s ease-in-out forwards;
}


.logo-2 {
    opacity: 0;
}

/* Animation for logo sliding in from left */
@keyframes slideFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation for logo fading up */
@keyframes fadeUp {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.logo-2.animate-left {
    animation: slideFromLeft 1.5s ease-in-out forwards;
}

.logo-2.animate-up {
    animation: fadeUp 1.5s ease-in-out forwards;
}


.meeting-book {
    font-family:Roboto-Bold;
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: center;
    width: 204px;
    height: 60px;

    border-radius: 10px;
    background-color: #D82028;
    color: white;
    border: none;
    text-transform: uppercase;
    transform: translateY(0);
    transition: all 0.5s linear;

}

.meeting-book:hover {
    box-shadow: inset 8rem 0 0 0 var(--color), inset -8rem 0 0 0 var(--color);
    color: var(--hover-b);
    transform: translateY(-0.5rem);
    border: 1px solid #D82028;
    ;
}

.banner-btn {

    padding-left: 78px;
    margin-top: 40px;
}

.col-w-50 {
    width: 50%;
}

.col-w-45 {
    width: 35%;
}

.container-new {
    padding-left: 97px;
    padding-right: 68px;
}

.banner-under-sec {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}

.date-content {
    font-family:Roboto-Regular;
    font-size: 23px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.02em;
    text-align: left;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    padding-left: 111px
}

.date-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0%;
    width: 87px;
    height: 2px;
    background-color: #DCDCDC;
    padding-left: 98px;
}

.heading {
    font-family:Roboto-Medium;
    font-size: 50px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0em;
    text-align: left;
    color: #D82028;
    margin: 0;
    padding-bottom: 21px;


}

.content-sec {
    font-family: Montserrat-Regular;

    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: left;
    margin: 0;
    /* padding-bottom: 30px; */
    color: black;


}

.img-part {
    padding-top: 103px;
    position: relative;

}

.pt-167 {
    padding-top: 167px;
}

.bg {
    background-image: url(./images/bg.png);
    background-position: bottom;
    background-repeat: no-repeat;
}

.rep-text {
    font-family:Roboto-Medium;
    font-size: 50px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0em;
    text-align: center;
    color: #D82028;

}

.rep-slider {
    background-image: url(./images/slider-bg.png);
    background-size: cover;

    background-repeat: no-repeat;
}

.image-container {
    position: relative;
}

 .logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} 

.rep-slider {
    padding: 50px 26px;
}

.rep-content {
    font-family: Montserrat-Regular;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;
    color: black;
    width: 31%;
    margin: auto;
    padding-top: 16px;
    padding-bottom: 52px;
}


.booking-btn {
    display: flex;
    justify-content: center;
}



.card {
    height: 200px;
    background-color: white;
    color: white;
    font-size: 40px;
    margin: 10px;
    flex: 200px 0 0;
    border-radius: 50%;
    border: 1px solid #EFD884;
}

.cards img {
    width: 100%;
    object-fit: cover;
}

.cards-wrapper {
    display: flex;
    transition: ease 0.5s;
}

.display-area {
    width: 880px;
    /*   border: 1px solid black; */
    overflow-x: hidden;
    margin: auto;
}

.dots-wrapper {
    display: flex;
    justify-content: center;
    margin: auto;
}

.dot {
    border: none;
    background: rgba(0, 0, 0, 0.2);
    width: 20px;
    height: 20px;
    margin: 5px;
    border-radius: 50%;
    outline: none;
}

.dot:hover {
    background: rgba(0, 0, 0, 0.3);
}

.dot.active {
    background: rgba(0, 0, 0, 0.5);
}




/* Existing CSS styles */

.arrow {
    position: absolute;
    top: 20%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
}

.left {
    left: 0;
}

.right {
    right: 0;
}

.book-btn-slider {
    margin-top: 88px;
}

.banner-under-sec-new {
    display: flex;
    padding-bottom: 50px;
}

.col-w-24 {
    width: 24%;
}

.pt-237 {
    padding-top: 237px;
}

.footer-banner-content {
    text-align: center;
    padding: 142px 0px 133px;

}

.footer-banner-content-text {
    font-family: Montserrat-Medium;
width: 50%;
margin: auto;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    color: white;
    padding-top: 39px;


}

.book-btn-slider-top {
    padding-top: 39px;
}

.border-5 {
    border-bottom: 5px solid #D82028;
}

.bg-black {
    background-color: black;
    padding: 26px 70px 26px 56px;
}

.footer-logos {
    display: flex;
    gap: 25px;
}

.copy {
    display: flex;
    justify-content: space-between;
}

.rights {
    font-family: Montserrat-Regular;

    font-size: 13px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
    color: white;

}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    /* height: 286px; */
    width: 540px;
    border: 1px solid #DBDBDB;
}

.popup-head {
    font-family:Roboto-black;
    font-size: 38px;
    font-weight: 900;
    line-height: 52px;
    letter-spacing: 0em;
    text-align: center;
    text-transform: uppercase;
    color: #D82028;
    margin: 0;
    padding-bottom: 22px
}

.close-btn {
    position: absolute;
    top: 28px;
    right: 28px;
    cursor: pointer;
}

.input-email {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
    color: black;
    height: 64px;
    width: 100%;
    border: 1px solid #989898;
    border-radius: 5px;
    padding: 19px 22px;
    text-transform: capitalize;

}


.next-btn {
    font-family:Roboto-Bold;
    font-size: 19px;
    font-weight: 700;
    line-height: 22px;
    letter-spacing: 0em;

    text-align: center;
    color: #fff;
    height: 64px;
    width: 100%;
    border: 1px solid #989898;
    border-radius: 5px;
    padding: 19px 22px;
    text-transform: capitalize;
    background-color: #333333;
}

.next-btn:hover {
    background-color: #181515;
}

.inside-border {
    border: 1px solid #DBDBDB;
    padding: 42px 46px;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
    .popup-content {
        width: 90%;
    }
}

.custom-container {
    width: 100%;
    padding-right: 0;
    padding-left: 0;

}

.flight-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* Make sure the flight image appears above img-2 */
}

.flight-image img {
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
    /* Smooth transition for movement */
}

.flight-image:hover img {
    transform: translate(-5px, -5px);
    /* Adjust translation values as needed */
}

.swiper {
    width: 100%;
    height: 300px;
    margin: 20px auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;

    display: flex;
    justify-content: center;
    align-items: center;


}

.slide-img {
    background: #fff;
    border-radius: 50%;
    border: 3px solid #EFD884;
    width: 233px;
    height: auto;

}

.append-buttons {
    text-align: center;
    margin-top: 20px;
}

/* Hide horizontal scrollbar */
.swiper-container {
    overflow: hidden;
}

.swiper-container {
    overflow: hidden;
    position: relative;
    /* Position relative for absolute positioning of the arrow */
}

/* Style for arrow */
.arrow-image {
    position: absolute;
    top: 37%;
    left: 4px;
    /* Adjust the left position as needed */
    transform: translateY(-50%);
    z-index: 9999;
    /* Ensure arrow appears above swiper slides */
    cursor: pointer;
    /* Add cursor pointer for better UX */
    height: 14px;
}

.arrow-image img {
    height: 18px;
}

.arrow-image-right img {
    height: 18px;
}

.arrow-image-right {
    position: absolute;
    top: 37%;
    right: 4px;
    /* Adjust the left position as needed */
    transform: translateY(-50%);
    z-index: 9999;
    /* Ensure arrow appears above swiper slides */
    cursor: pointer;
    /* Add cursor pointer for better UX */
}

.swiper-button-next,
.swiper-button-prev {
    color: #D82028 !important;
    height: 26px !important;
    width: 17px !important;
}

.name {
    font-family:Roboto-Medium;
    font-size: 25px;
    font-weight: 600;
    line-height: 52px;
    letter-spacing: 0em;
    text-align: center;
    color: #D82028;

}

.position {
    font-family: Montserrat-Medium;

    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: center;

}





/***************************************Re spomsive*****************************************************/
.slide-img {
    width: 85%;
}

@media screen and (min-width:1920px) {
    .banner-under-sec {
        padding-bottom: 100px;
    }

    .rep-content {
        width: 20%;
    }

    /* .slide-img{
        width: 90%;
    } */
}

@media screen and (max-width:1500px) {

    .heading {

        font-size: 30px;
    }

    .rep-content {
        width: 25%;
        font-size: 13px;
    }

    .name {
        font-size: 18px;
    }

    .position {
        font-family: Montserrat-Medium;
        font-size: 10px;
    }

    .banner-head-text {
        font-size: 80px;
    }
    .logo-2 {
        padding-top:49px;
        padding-left: 78px;
    }
}

@media screen and (max-width:1366px) {
    .rep-content {
        width: 26%;
        font-size: 13px;
    }
}

@media screen and (max-width:1300px) {
    .arrow-image-right {
        display: none;
    }

    .arrow-image {
        display: none;
    }

    .slide-img {
        width: 90%;
    }

    .rep-content {
        width: 30%;
        font-size: 13px;
    }
}

@media screen and (max-width:1100px) {
    .left-logo img {
        width: 200px;
    }

    .right-logo img {
        width: 200px;
    }

    .banner-head-text {
        font-size: 55px;
        line-height: 77px;
    }

    .logo-2 img {
        width: 400px;
    }

    .col-w-45 {
        width: 45%;
    }

    .heading {
        font-size: 25px;
    }

    .date-content {

        font-size: 16px;
    }

    .content-sec {
        font-size: 12px;
    }

    .rep-content {
        width: 35%;
    }

    .position {

        font-size: 11px;
    }

    .col-w-24 {
        width: 40%;
    }

    .heading-res {
        line-height: 34px;
        width: 100%;
    }

    .flight-image img {
        width: 476px;
    }

    .footer-banner-content-text {
        font-size: 12px;
    }

    .meeting-book {
        height: 48px;
        font-size: 12px;
    }

    .sas-logo {
        width: 100px;
        height: 25px;
    }

    .four-logo {
        width: 150px;
        height: 22px;
    }

    .rights {
        font-size: 10px;
    }
}




@media screen and (max-width:991px) {
    .banner-hide-mb {
        height: 460px;
    }

    .name {
        font-size: 12px;
    }

    .position {
        font-size: 10px;
    }
}

@media screen and (max-width:768px) {
    .name {
        font-size: 12px;
    }

    .position {
        font-size: 10px;
    }

}


@media screen and (max-width:850px) {
    .container-new {
        padding-left: 68px;
        padding-right: 68px;
    }

    .bg {
        background-image: url("./images/Isolation_Mode.png") !important;
    }

    .banner-under-sec {
        flex-direction: column-reverse;
    }

    .col-w-sm-100 {
        width: 100%;
    }

    .pt-167 {
        padding-top: 50px;
    }

    .date-content {
        margin-bottom: 0px;
    }

    .col-w-50-res {
        width: 40%;
    }

    .flight-image img {
        width: 300px;
    }

    .col-24-res {
        width: 50%;
    }

    .pt-237 {
        padding-top: 100px;
    }

    .logo-container img {
        width: 200px;
        height: 100px;
    }
}


@media screen and (max-width:560px) {
    .logo-2 {
        padding-top: 50px !important;
    }

    .banner {

        background-image: url("./images/mb-banner.png");
        height: 730px;
    }

    .left-logo img {
        width: 120px;
        height: 35px;
    }

    .right-logo img {
        width: 180px;
        height: 26px;
    }

    .logo-2 img {
        width: 200px;
    }

    .logo-2 {
        padding-top: 117px;
    }

    .left-logo {
        padding-top: 31px;
        padding-left: 16px;
    }

    .right-logo {
        padding-top: 31px;
        padding-right: 16px;
    }

    .banner-head-text {
        font-size: 70px;
        line-height: 69px;
        /* width: 50%; */
        padding-left: 21px;
    }

    .logo-2 {
        padding-left: 19px;
    }

    .banner-head-second {
        font-size: 23px;
        padding-left: 21px;
    }

    .banner-btn {
        position: absolute;
        bottom: 66px;
        padding-left: 26px;
    }

    .img-part {
        padding-top: 47px;
    }

    .container-new {
        padding-left: 24px;
        padding-right: 24px;
    }

    .logo-container img {
        width: 268px;
        height: 86px;
    }

    .pt-167 {
        padding-top: 40px;
    }

    .date-content {
        padding-left: 49px
    }

    .date-content::before {
        width: 40px;
        padding-left: 0px;
    }

    .heading {
        font-size: 24px;
        padding-bottom: 12px;
    }

    .content-sec {
        font-size: 14px;
    }

    .meeting-book {
        width: 212px;
        height: 63px;
        font-size: 19px;
    }

    .banner-under-sec {
        padding-bottom: 66px;

    }

    .rep-text {
        font-size: 24px;
    }

    .swiper-button-prev {
        display: none !important;
    }

    .swiper-button-next {
        display: none !important;
    }

    .rep-slider {
        padding: 46px 21px;
    }

    .rep-content {
        width: 100%;
        font-size: 14px;
    }

    .banner-under-sec-new {
        flex-direction: column;
        padding: 45px 21px 45px 21px;
    }

    .col-w-50 {
        width: 100%;
    }

    .col-w-sm-100 {
        width: 100%;
    }

    .heading-res {
        width: 65%;
    }

    .banner-hide-mb {
        display: none;
    }

    .footer-banner-content-text {
        font-size: 12px;
        text-align: center;
    }

    .logo-container img {
        width: 249px;
        height: 101px;
    }

    .copy {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .line-img {
        display: none;
    }

    .footer-logos {
        flex-direction: column;
    }

    .bg-black {
        padding: 42px 58px;
    }

    .res-center {
        display: flex;
        justify-content: center;
    }

    .footer-logos {
        gap: 5px;
    }

    .rights {
        text-align: center;
        padding-top: 20px;
    }

    .logo-container img {
        height: auto;
    }

    .popup-head {
        font-size: 25px;
    }

    .inside-border {
        padding: 39px 6px;
    }

    .input-email {
        height: 60px;
    }

    .next-btn {
        height: 60px;

    }

    .pt-237 {
        padding-top: 0px;
    }

    .slide-img {
        width: 100%;
    }

    .name {
        font-size: 22px;
    }

    .position {
        font-size: 14px;
    }
}


@media screen and (max-width:480px) {
    .flight-image img {
        width: 260px;
    }

    .pt-237 {
        padding-top: 0px;
    }

    .heading-res {
        width: 100%;
    }

    .popup-head {
        font-size: 20px;
    }

    .inside-border {
        padding: 26px 6px;
    }

    .input-email {
        height: 60px;
    }

    .next-btn {
        height: 60px;

    }

    .slide-img {
        width: 100%;
    }


}




@media screen and (min-width:561px) {

    .banner-hide-desk {
        display: none;
    }
}



.section {
    opacity: 0;
    transform: translateY(90px);
    /* Initial position for slide-up effect */
    transition: opacity 0.9s ease-in-out, transform 0.9s ease-in-out;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
    /* Slide up to the final position */
}

@media screen and (max-width:280px) {

    .banner-head-text {
        font-size: 49px;
        line-height: 55px;
    }

    .heading {
        font-size: 21px;
    }

    .rep-text {
        font-size: 21px;
    }

    .flight-image img {
        width: 228px;
    }

    .banner-under-sec-new {
        flex-direction: column;
        padding: 0px 21px 45px 21px;
    }

    .footer-banner-content-text {
        font-size: 11px;
        padding-top: 17px;
    }

    .meeting-book {
        width: 212px;
        height: 48px;
        font-size: 11px;
    }

    .bg-black {
        padding: 42px 22px;
    }

    .logo-container img {
        width: 150px;
    }

    .left-logo img {
        width: 100px;
    }

    .popup-head {
        font-size: 14px;
    }

    .input-email {
        height: 41px;
        font-size: 13px;
    }

    .next-btn {
        height: 41px;
        font-size: 13px;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .next-btn img {
        width: 12px;
    }
}


@media screen and (min-width:1200px) {

    #section3 .col-w-50 {
        width: 50%;
    }

    #section3 .col-w-24 {
        width: 45%;
        padding-right: 100px;
    }



}

@media screen and (min-width:1920px) {
    .flight-image img {
        position: absolute;
        top: 56px;
    }

    .content-sec {
        width: 80%;
    }

    .banner {
        height: 1200px;
    }
}

@media screen and (max-width:575px) {

    .banner {

        background-image: url("./images/mb-banner.png");

    }

    .banner-under-sec-new {
        flex-direction: column;
        padding: 45px 21px 45px 21px
    }

    .col-w-sm-100 {
        width: 100%;
    }

    .copy {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        text-align: center;
    }

    .footer-logos {
        gap: 5px;
    }

    .bg-black {
        padding: 42px 58px;
    }

    .footer-logos {
        flex-direction: column;
        gap: 5px;
        display: flex;
    }

    .line-img {
        display: none;
    }

    .rights {
        text-align: center;
        padding-top: 20px;
    }

    .logo-2 {
        padding-top: 50px;
    }
}

@media screen and (min-width:1101px) and  (max-width:1199px){

#section3 .col-w-24 {
width: 45%;
}
}

/**************************************MRO-live*********************************************/


.banner-live-mro {
    position: relative;
    background-image: url(./images/live/b-bg.png);
    display: flex;
    flex-direction: column;
    width: 100%;
    /* min-height: 1363px; */
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-content {
    position: relative;
    /* display: flex; */
    width: 100%;
}

.mro-live-logo {
    display: flex;
    justify-content: space-between;
    padding: 25px 70px 25px 40px;
    border-bottom: 1px solid #D9D9D9;
    /* Change color and thickness as needed */


}

.mro-live-logo_left {
    display: flex;
}

.mro-live-logo_left {
    display: flex;
    align-items: center;
}

.logo-item-left {
    margin-right: 10px;
    /* Adjust margin as needed */
}

.vertical-line {
    border-left: 1px solid #D9D9D9;
    /* Change color and thickness as needed */
    height: 36px;
    /* Adjust height as needed */
    margin: 0 10px;
    /* Adjust margin as needed */
}

.we-are-here {
    background-image: url(./images/live/Isolation_Mode.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    padding: 78px 0px 107px;
}

.we-are-content-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    text-align: center;
}

.we-are-here-head {
    font-family: Oswald-Medium;

    font-size: 74px;
    font-weight: 500;
    line-height: 110px;
    letter-spacing: -0.05em;
    text-align: center;
    color: #D82028;
    text-transform: uppercase;
    margin: 0;
    padding-bottom: 20px;

}

.we-are-here-booth h2 {
    font-family:Roboto-Medium;
    font-size: 23px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: -0.02em;
    text-align: center;
    color: black;
    margin: 0;
    padding-bottom: 22px;

}

.we-are-here-booth-content {
    font-family: Montserrat-Regular;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    color: black;
    width: 41%;
    display: flex;
    justify-content: center;
    text-align: center;
    margin: auto;
    margin-bottom: 0;
    padding-bottom: 26px;

}

.live-btn {
    position: absolute;
    left: 84px;
    bottom: 36px;
}


/* Style for the button container */
.live-btn button {
    position: relative;
    /* Ensure proper positioning of the dot */
    padding-left: 20px;
    /* Add padding to the left for the dot */

    width: 139px;
    height: 30px;


    font-family: Montserrat-SemiBold;

    font-size: 14px;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: 0em;
    text-align: center;
    color: black;
    border-radius: 15px;
    text-transform: capitalize;
    background-color: white;
    border: 1px solid #D9D9D9;


}


.green {
    background: #04B700;

}

.circle {
    position: absolute;
    /* Position the dot absolutely */
    top: 50%;
    /* Align dot vertically */
    left: 0;
    /* Align dot to the left */
    transform: translateY(-50%);
    /* Center the dot vertically */
    width: 18px;
    /* Set width of the dot */
    height: 18px;
    border-radius: 50%;
    box-shadow: 0px 0px 1px 1px #04B7004D;
    margin-right: 5px;
    /* Add some spacing between the dot and text */
    margin-left: 5px;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
    }
}


.master {
    color: black;
    float: right;
}

@media (max-width:900px) {
    .master {
        display: none
    }
}


.slider {
    position: relative;
    width: 100%;

    display: grid;
    place-items: center;
    overflow: hidden;
}

.slider::before {
    left: 0;
    top: 0;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

/*  IMPORTANT CODE BELOW */



/* .slide-track {
    display: flex;
    animation: scroll2 15s linear infinite;
    justify-content: space-between;
    gap: 10px;
  }
  
  .slide {
    width: 380px;
    height:251px;
  
    display: grid;
    place-items: center;
    transition:0.5s;
    cursor:pointer;
  }
  .slide img{

    width:100%;
    height: 251px;
    border-radius: 10px;
  }
  .slide:hover{
    transform:scale(0.9)
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-150px * 10));
    }
  }
  
  @keyframes scroll2 {
    0% {
      transform: translateX(0px);
    }
    100% {
      transform: translateX(calc(-150px * 5));
    }
  }
  
  @media screen and (max-width: 768px) {
    .slide-track {
      width: calc(80px * 20);
    }
  
    .slide-track2 {
      width: calc(80px * 15);
    }
  
    .slide {
      width: 80px;
    }
  
    @keyframes scroll {
      0% {
        transform: translateX(0px);
      }
      100% {
        transform: translateX(calc(-80px * 10));
      }
    }
  
    @keyframes scroll2 {
      0% {
        transform: translateX(0px);
      }
      100% {
        transform: translateX(calc(-80px * 5));
      }
    }
  }
   */




li {
    display: inline-block;

    list-style-type: none;
    /* padding-right:29px; */
    text-transform: uppercase;
    font-family: Montserrat-Medium;
    font-size: 11px;
    font-weight: 400;
    line-height: 11px;
    letter-spacing: 0em;
    text-align: center;
    color: black;

}


.colon {
    font-family: Helvetica;
    font-size: 20px;
    font-weight: 500;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: left;
    padding: 0px 12px;

}

.countdown-live {
    margin: 0;
    padding-left: 0px;
}

li span {
    display: block;

    font-family: Montserrat-Bold;
    font-size: 19px;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0em;
    text-align: left;
    color: #ED1C24;
    border: 1px solid #F4F4F4;
    padding: 12px;
    border-radius: 10px;
    margin-top: 8px;

}

#countdown {
    display: flex;
    justify-content: center;
}



@media screen and (max-width:1500px) {
    .logo-item-left img {
        height: 40px;
    }

    .logo-item img {
        height: 30px;
    }

    .mro-live-logo-right img {
        height: 60px;
    }

}

@media screen and (min-width:991px) {
    .mro-live-logo-mb {
        display: none;
    }
}

@media screen and (max-width:991px) {
    .logo-item-left img {
        width: 108px;
        height: 29px;
    }

    .logo-item img {
        width: 168px;
        height: 21px;
    }

    .mro-live-logo-right img {
        height: 35px;
    }

}

@media screen and (max-width:768px) {

    .mro-live-logo {
        flex-direction: column;
        padding: 15px;
    }

    .mro-live-logo_left {
        align-items: center;
        justify-content: space-between;
    }

    .logo-item-left img {
        width: 108px;
        height: 29px;
    }

    .logo-item img {
        width: 168px;
        height: 21px;
    }

    .mro-live-logo-right {
        display: none;
    }

    .vertical-line {
        display: none;
    }

    .banner-live-mro {
        background-image: url(./images/live/mb-bg.png);
    }

    .we-are-here {
        padding: 38px 0px 55px;
    }

    .mro-live-logo-mb {
        display: flex;
        justify-content: center;
        padding-bottom: 38px;
    }

    .we-are-here-head {
        font-size: 60px;
        font-weight: 500;
        line-height: 71px;
        letter-spacing: -0.05em;
        text-align: center;

    }

    .we-are-here {
        background-image: url(./images/live/Isolation_Mode-mb.png);

    }

    .we-are-content-center {
        padding-top: 39px;
    }

    .we-are-here-booth-content {
        width: 85%;
    }

    .live-btn {
        display: none;
    }

}


@media screen and (max-width:575px) {
    .mro-live-logo {
        flex-direction: column;
        padding: 15px;
    }

    .mro-live-logo_left {
        align-items: center;
        justify-content: space-between;
    }

    .logo-item-left img {
        width: 108px;
        height: 29px;
    }

    .logo-item img {
        width: 168px;
        height: 21px;
    }

    .mro-live-logo-right {
        display: none;
    }

    .vertical-line {
        display: none;
    }

    .banner-live-mro {
        background-image: url(./images/live/mb-bg.png);
    }

    .we-are-here {
        padding: 38px 0px 55px;
    }

    .mro-live-logo-mb {
        display: flex;
        justify-content: center;
        padding-bottom: 38px;
    }

    .we-are-here-head {
        font-size: 60px;
        font-weight: 500;
        line-height: 71px;
        letter-spacing: -0.05em;
        text-align: center;

    }

    .we-are-here {
        background-image: url(./images/live/Isolation_Mode-mb.png);

    }

    .we-are-content-center {
        padding-top: 39px;
    }

    .we-are-here-booth-content {
        width: 85%;
    }

    .live-btn {
        display: none;
    }

    .image-container-new img {
        height: 190px;
        width: 288px;
        border-radius: 10px;
    }

    .image-container img {
        height: 190px;
        width: 288px;
        border-radius: 10px;
    }

    .scroll {
        position: relative;
        /* width: 100%; */
        height: 190px;
    }
    .container-new {
        padding-left:21px;
        padding-right: 21px;
    }
    .footer-banner-content-text {
        width: 75%;
    }
}



.p-b-10{
    padding-bottom: 10px;
}
.scroller {
    max-width: 100%;
  }
  .scroller__inner {
  
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .scroller__inner img{
    height: 251px;
  }
  .scroller__inner img{
    border-radius:10px;
  }
  .scroller[data-animated="true"] {
    overflow: hidden;
  }
  .scroller[data-animated="true"] .scroller__inner {
    width: max-content;
    flex-wrap: nowrap;
    animation: scroll var(--_animation-duration, 40s)
      var(--_animation-direction, forwards) linear infinite;
  }
  .scroller[data-direction="right"] {
    --_animation-direction: reverse;
  }
  .scroller[data-direction="left"] {
    --_animation-direction: forwards;
  }
  .scroller[data-speed="fast"] {
    --_animation-duration: 20s;
  }
  .scroller[data-speed="slow"] {
    --_animation-duration: 100s;
  }
  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 0.5rem));
    }
  }


  @media screen and (min-width:769px) and (max-width:990px) {
    .mro-live-logo-mb{
        display: none;
    }
  }



  #section4{
    background-image: url(./images/footer-banner.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  @media screen and (max-width:575px) {

  #section4{

    background-image: url(./images/footer-bg-mb.png);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}


@media screen and (min-width:576px) and (max-width:700px) {

    .banner-under-sec-new{
        flex-direction: column;
    }
    .col-w-50-res {
        width: 100%;
    }
    .heading{
        padding-left:21px;
        padding-right: 30px;

    }
    .content-sec{
        padding-left:21px;
        padding-right: 30px;
    }
    .col-w-sm-100{
        width: 100%;
    }
    #section3 .meeting-book{
        margin-left:21px;

    }
    .rep-content {
        width: 50%;
    }
    .copy {
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        text-align: center;
    }
    .footer-logos{
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    .line-img{
        display: none;
    }
    .bg-black {
        padding: 42px 58px;
    }
    .rights{
        text-align: center;
    }
    .pt-237 {
        padding-top: 0;
    }
}




@media screen and (max-width:280px) {

    .logo-item-left img {
        width: 90px;
        height: 25px;
    }
    .logo-item img {
        width: 145px;
        height: 21px;
    }
    li {
        font-size: 8px;
    }
    li span{
        font-size: 14px;
        padding: 8px;
    }
    .we-are-here-head {
        font-size: 50px;
    }
    .footer-banner-content img{
        width: 120px;
    }
    .footer-banner-content-text {
        font-family: Montserrat-Medium;
        width: 80%;
    }
    .footer-banner-content {
        text-align: center;
        padding: 50px 0px 50px;
    }


    .right-logo img {
        width: 143px;
        height: 22px;
    }
}




.input-container {
    display: flex;
    width: 417px;
    height: 60px;
   

}
.input-field{
    width: 417px;
    height: 60px;
    border-radius: 10px 0px 0px 10px;
    padding: 20px;
    border: 1px solid #D82028;
    
}

.input-button{
    width: 62px;
    height: 60px;
    background-color: #D82028;
    border-radius: 0px 10px 10px 0px;
    border: none;
    
}


.input-field::placeholder {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    letter-spacing: 0em;
    text-align: left;
}
.input-container input:focus, .input-container input:active {
    outline: none;
}



@media screen and (max-width:575px) {

.input-container{
    width: 327px;

}
.input-field{
    width: 327px;
}
}

@media screen and (max-width:280px) {

    .input-container{
        width:200px;
        height: 30px;
    
    }
    .input-field{
        width:200px;
        height: 30px;
    }
    .input-field::placeholder {
        font-family: Helvetica;
        font-size:9px;
        font-weight: 400;
        line-height: 19px;
        letter-spacing: 0em;
        text-align: left;
    }
    .input-button{
        height: 40px;
    }
    }
    @media screen and (min-width:576px) {
        .logo-2 img{
            height: 130px;
               }
       }