@import url('https://fonts.googleapis.com/css2?family=Titan+One');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Titan+One&display=swap');

.p_5 {
    padding: 40px;
}

@media screen and (max-width:768px) {
    .a_sec2 {
        padding: 50px 0px 0px 0px;
    }

    .p_5 {
        padding: 0px 20px;
    }
}


/* ================================== section 3 ======================================== */
.sec3_h1 {
    font-family: Titan One;
    font-size: 40px;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
    color: #E65E5C;
    text-transform: uppercase;
    padding: 0px 0px 40px 0px;
}

@media screen and (max-width:768px) {
    .sec3_h1 {
        font-family: Titan One;
        font-size: 24px;
        font-weight: 400;
        line-height: 30px;
        padding: 0px 0px 31px 0px;
        text-align: center;
    }
}

.sec3_p {
    font-family: Outfit;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #666666;
}

@media screen and (max-width:768px) {
    .sec3_p {
        font-family: Outfit;
        font-size: 13px;
        font-weight: 400;
        line-height: 20px;
        text-align: left;
    }
}

.sec3_img {
    padding: 0px 0px 27px 0px;
}

@media screen and (max-width:768px) {
    .sec3_img {
        padding: 0px 0px 12px 0px;
    }
}


/* ================================================ section 4 ===================================== */
.sec4_h5 {
    font-family: Titan One;
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
    color: #E65E5C;
}

.sec4_p {
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: #666666;
}

.about_sec4_wave_mobile {
    display: none;
}

@media screen and (max-width:768px) {
    .about_sec4_wave_mobile {
        display: block;
        width: 100%;
    }

    .about_sec4_wave {
        display: none;
    }
}




/* ========================================= section 5 ================================================= */
.sec5_heading {
    font-family: Titan One;
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    color: #E65E5C;
}

@media screen and (max-width:768px) {
    .sec5_heading {
        font-family: Titan One;
        font-size: 22px;
        font-weight: 400;
        line-height: 30px;
        text-align: center;
    }
}


/* =================================== */

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: transparent;
    padding: 10px 0;
    box-sizing: border-box;
    position: relative;
}

.marquee-wrapper {
    display: flex;
    width: max-content;
    animation: marquee 10s linear infinite;
}

.marquee-content {
    font-size: 24px;
    white-space: nowrap;
}

/* Keyframes for seamless scrolling */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause the marquee on hover */
.marquee-wrapper:hover {
    animation-play-state: paused;
}



/* Container styles */
.scrolling-text-container {
    background-color: transparent;
    border-radius: 4px;
    overflow: hidden;
}

/* Inner container styles */
.scrolling-text-inner {
    display: flex;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
    overflow: hidden;
}

/* Text styles */
.scrolling-text {
    display: flex;
}

.scrolling-text-item {
    padding: 0 30px;
}

@media screen and (max-width:768px) {
    .scrolling-text-item {
        padding: 10px;
        aspect-ratio: 2/1.5;
        width: 300px;
    }
}

/* Apply the animation to the text items */
.scrolling-text-inner>div {
    animation: var(--direction) var(--marquee-speed) linear infinite;
}

/* Pause the animation when a user hovers over it */
.scrolling-text-container:hover .scrolling-text-inner>div {
    animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(0%);
    }
}

/* ========================== */


.sec5_border {
    position: relative;
    z-index: 2;
    color: #E65E5C;
    border-style: dashed;
    border-width: 2px;
}

.sec5_dot {
    position: relative;
    top: -40px;
    filter: contrast(1);
    z-index: 2;
}


.sec5_h5 {
    font-family: Titan One;
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
    text-align: center;
    color: #E65E5C;
}

.sec5_p {
    font-family: Outfit;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    text-align: center;
    color: #666666;
    text-transform: uppercase;
}

@media screen and (max-width:768px) {
    .sec5_h5 {
        font-family: Titan One;
        font-size: 20px;
        font-weight: 400;
        line-height: 22.9px;
        text-align: center;
    }

    .sec5_p {
        font-family: Outfit;
        font-size: 16px;
        font-weight: 400;
        line-height: 20.16px;
        text-align: center;
    }
}


/* ====================================== About section 6 ========================================== */
.sec6_heading {
    font-family: Titan One;
    font-size: 50px;
    font-weight: 400;
    line-height: 60px;
    text-align: left;
    color: #E65E5C;
    text-transform: uppercase;
    margin-top: 15%;
}

@media screen and (max-width:768px) {
    .sec6_heading {
        font-family: Titan One;
        font-size: 24px;
        font-weight: 400;
        line-height: 30px;
        text-align: center;
        margin-top: 0%;
    }
}

.sec6_desc {
    font-family: Outfit;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    text-align: left;
    color: #666666;
}

@media screen and (max-width:768px) {
    .sec6_desc {
        font-family: Outfit;
        font-size: 13px;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
    }
}

.sec6_card_bg {
    background-color: white;
    height: auto;
    text-align: center;
    border-radius: 10px;
}

.sec6_card_bg1 {
    background-color: white;
    height: auto;
    text-align: center;
    border-radius: 10px;
}

@media screen and (max-width:768px) {
    .sec6_card_bg{
        padding: 0px 28px !important;
    }
    .sec6_card_bg1 {
        margin-top: 10%;
    }
}

.sec6_h5 {
    font-family: Titan One;
    font-size: 28px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    color: #E65E5C;
}

.sec6_p {
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: #666666;
    padding: 0px 0px 88px 0px;
}

.sec6_p2 {
    font-family: Outfit;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    color: #666666;
}

@media screen and (max-width:768px) {
    .sec6_p {
        font-family: Outfit;
        font-size: 13px;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
    }

    .sec6_p2 {
        font-family: Outfit;
        font-size: 13px;
        font-weight: 400;
        line-height: 20px;
        text-align: center;
    }

    .sec6_ico {
        width: 20%;
    }
}

.About_hero_mobile {
    display: none;
}

@media screen and (max-width:768px) {
    .About_hero_mobile {
        display: block;
    }

    .About_hero_desktop {
        display: none;
    }
}