@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


*{
    margin: 0;
    padding: 0;
    font-family: "IBM Plex Sans", sans-serif;
}

p{
    margin: 0;
}

.sctmaincontainer{
    padding: 40px 114px;
    display: flex;
    flex-direction: column;
    gap: 60px;
    background-color: #F9F9F9;
    border-bottom: 1px solid #E5E7EB;
}

.sctmainsec{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.scttextbox{
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 624px;
}

.scttoptitletext{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sctdesctext{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scttitletext{
    font-size: 48px;
    line-height: 48px;
    font-weight: 700;
}

.scttitletext p:last-child{
    font-style: italic;
    color: #B32B26;
}

.sctdesctext p:first-child{
    color: #4B5563;
    font-size: 24px;
    font-weight: 500;
    line-height: 32px;
}

.sctdesctext p:last-child{
    color: #374151;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: Roboto;
}

.sctmidtextbox{
    font-family: Roboto;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #374151;
}

.sctmidtextbox span{
    font-family: Roboto;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-style: italic;
    color: #B32B26;
}

.sctbtnsec{
    cursor: pointer;
    width: fit-content;
}

.sctbtnsec p{
    background-color: #0F0F0F;
    border-radius: 2px;
    padding: 14px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    font-family: Poppins;
    font-weight: 500;
    font-size: 16px;
    color: #FFFFFF;
    width: fit-content;
    transition: 0.3s ease;
}

.sctbtnsec p:hover{
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(15, 15, 15, 0.3) 70.83%), #0F0F0F;
}


.sctvideosec{
    max-width: 580px;
    max-height: 449px;
    overflow: hidden;
    object-fit: contain;
    display: flex;
    align-items: center;
    position: relative;
}

.sctvideo{
    width: inherit;
    max-height: 326px;
    object-fit: contain;
}

.sctvbtn{
    position: absolute;
    height: inherit;
    width: inherit;
    right: 50%;
    transform: translateX(50%);
}

.sctthisyear{
    display: flex;
    gap: 12px;
    color: #4A4A4A;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    justify-content: center;
    font-family: Open Sans;
}

.sctyears{
    cursor: pointer;
}

.sctyearsactive{
    color: #C62828;
    font-size: 16px;
    font-weight: 700;
    font-family: Montserrat;
    cursor: default;
}

.showmobile{
    display: none;
}

@media (max-width: 1200px){
    .scttextbox{
        max-width: 450px;
    }
}

@media (max-width: 1100px){
    .scttextbox{
        max-width: 350px;
    }
}

@media (max-width: 950px){
    .sctmaincontainer{
        padding: 32px;
        gap: 10px;
    }
}


@media (max-width: 750px){
    .sctmaincontainer{
        gap: 24px;
    }
    
    .scttextbox{
        max-width: 100%;
    }

    .sctmainsec{
        flex-direction: column;
        gap: 24px;
    }

    .sctvideosec{
        width: calc(100% - 0px);
        max-width: 100%;
    }

    .sctvideo{
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
    }

    .sctvbtn{
        right: 25px;
    }

    .hidemobile{
        display: none;
    }

    .sctbtnsec.showmobile{
        display: flex;
        justify-content: center !important;
    }

    .sctbtnsec{
        width: 100%;
        justify-content: center;
    }
}


@media (max-width: 500px){
    .sctmaincontainer{
        padding: 32px 16px;
    }

    .scttitletext{
        font-size: 30px;
        line-height: 38px;
        font-weight: 600;
    }

    .sctdesctextmain{
        font-size: 16px;
        line-height: 24px;
        color: #181B1F;
    }

    .sctdesctextpara{
        font-size: 14px;
        line-height: 23px;
        color: #484848;
    }

    .sctthisyear{
        font-size: 12px;
    }

    .sctyearsactive{
        font-size: 14px;
    }

    .sctbtnsec p{
        padding: 8px 12px;
    }
}