/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : Sep 14, 2023, 9:03:39 PM
    Author     : AllyCat
*/


.QuoteContentParent {

    background: linear-gradient(#F0E65F, #D3B000);
    border-bottom: 1px #685001 solid;
    width: 100%;
    margin: 0px;
    padding-top: 25px;
    padding-bottom: 25px;
}

#LargeAboutQuoteBox{
    width: 100%;
    margin: 0px;
   
}

#LargeAboutQuote{
    text-align: center;
    border-left: 10px black solid;
    padding: 5px;
    font-size: 60px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
   
}

#LargeMainBannerBox,
#MediumMainBannerBox{
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: auto;
    margin-right: auto;
    max-inline-size: 100%;
    block-size: auto;
}

.mainAboutBannerImage_Top,
.mainAboutBannerImage_Bottom{

    position: absolute;
    max-inline-size: 100%;
    block-size: auto;
}

@keyframes ShowOpacity {

    0%   {
        opacity: 0;

    }

    100% {
        opacity: 1;

    }
}


@keyframes ClipHorizontallyFromLeft {

    /*
    T | R | B | L
    */
    0% {
        clip-path: inset(50% 0 0 100%);
    }

    100% {
        clip-path: inset(50% 0 0 0);
    }

}

@keyframes ClipHorizontallyFromRight {

    0%   {
        clip-path: inset(0 100% 49.9% 0);

    }

    100% {
        clip-path: inset(0 0 49.9% 0);
    }
}

.clipHoriz_Left{
    clip-path: inset(50% 0 0 0);
    animation: ClipHorizontallyFromLeft 2s, ShowOpacity 2s;
}

.clipHoriz_Right{
    clip-path: inset(0 0 49.8% 0);
    animation: ClipHorizontallyFromRight 2s, ShowOpacity 2s;
}



@media only screen and (min-width: 1008px) and (max-width: 1999.99px){

    #LargeMainBannerBox,
    #MediumMainBannerBox,
    .mainAboutBannerImage_Top,
    .mainAboutBannerImage_Bottom{
        width: 1000px;
        height: 500px;
    }
    
    #LargeQuoteMainContent{
        width: 60%;
    }
    
}


@media only screen and (min-width: 2000px) {

    #Large_Table_QuoteSet{
        width: 50%;
    }

    #LargeMainBannerBox,
    #MediumMainBannerBox,
    .mainAboutBannerImage_Top,
    .mainAboutBannerImage_Bottom{
        width: 1500px;
        height: 800px;
    }
    
    #LargeQuoteMainContent{
        width: 50%;
    }
    
    


}
