/* FONT */

@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* ROOT */

:root {
    --primary: #ffffff;
    --secondary: #1e1a57;
    --minimal:#b60905;
    --font: "Josefin Sans";
    --bg:#e6e4f0;
}
body {
    margin: 0%;
    width: 100%;
    padding: 0%;
    overflow-x: hidden;
}

/* LOADING */

#Loading{
    position: fixed;
    top: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    z-index: 20;
    background: white url('../Assets/Loading.gif') no-repeat center center;
    background-size: 13%;
}
#Loading img{
    width: 20%;
}

/* LANDING PAGE */

/* HEADER */

.JoyBoy{
    animation: none;
}

@keyframes intro-Nav{
    0%{top:-80px;}
    100%{top:0;}
}

#Head-Logo{
    height: 50px;
}

header{
    display: flex;
    background-color:var(--primary);
    justify-content: space-between;
    height: 80px;
    align-items: center;
    position: fixed;
    width: 100%;
    top:0;
    z-index: 5;
    animation-name: intro-Nav;
    animation-duration: 1s;
    animation-timing-function: linear;
    /* animation-delay: 0.5s; */
}
header::before{
    background: var(--secondary);
}
header::after{
    background-color: var(--minimal);
}
#Head-L{
    margin-left: 100px;
}
#Head-R{
    display: flex;
    width: 45%;
    justify-content: center;
    margin-right: 100px;
}
#Head-R nav{
    width: 100%;
}
#Head-Nav-List{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    list-style-type: none;
    padding: 0;
}
#Head-Nav-List li a{
    text-decoration: none;
    color: black;
    font-family: var(--font);
}
#Head-Nav-List li a:hover{
    color: var(--minimal);
}
.Head-Nav-3{
    display: none;
    background-color: rgba(0, 0, 0, 0);
    border: none;
}
.Head-Nav-3-Img{
    width: 25px;
    
}

/* SLIDER */

@keyframes intro{
    0%{transform: scale(2);}
    100%{transform: scale(1);}
}

@keyframes title-intro {
    0%{width: 0px;}
    100%{width:1030px;}
}



.Slider-Container{
    width:100%;
    height: 100vh;
    overflow: hidden;
}
.Slider-Container img{
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    filter: brightness(20%);
    animation-name: intro;
    animation-duration: 2s;
    animation-timing-function: ease-out;
}

.typing-text {
    font-family:var(--font);
    font-size: 30pt;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 20px;
    padding: 20px;
    width: 80%;
    text-align: center;
}
.Slider-L1{
    position: absolute;
    display: flex;
    top:0;
    width: 100%;
    height: 100%;
    color: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.Slider-L1 p{
    font-size: 30pt;
    font-family: var(--font);
    width: 1030px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    animation:
        title-intro 2.5s steps(40) 1s
    
}
.next-Slide{
    position: absolute;
    right: 70px;
    z-index: 5;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}
.next-Slide img{
    width: 15px;
    filter: invert(1);
    animation: none;
}
.prev-Slide{
    position: absolute;
    left: 70px;
    z-index: 5;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}
.prev-Slide img{
    width: 15px;
    filter: invert(1);
    transform: scaleX(-1);
    animation: none;
}
.sc2,.sc3{
    display: none;
}


/* HOME ABOUT */



#Home-About-Container{
    display: flex;
    width: 100%;
    padding: 120px 0px;
    justify-content: center;
    align-items: center;
    background-color:var(--bg);
}
#Home-About-Img{
    filter: brightness(70%);
    width:500px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.3), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#Home-About-L{
    width: 600px;
    display: flex;
    justify-content: start;
    align-items: center;
}
#Home-About-R{
    width:40%;
    display: flex;
    justify-content: space-between ;
    align-items: start;
    flex-direction: column;
}
.Title-Hidden{
    display: none;
}
.Home-About-Title{
    font-size: 25pt;
    font-family: var(--font);
    color: var(--secondary);
}
.Home-About-Cont{
    font-family: var(--font);
    text-align: justify;
    font-size: 14pt;
    width: 90%;
    line-height: 30px;
}
.Home-About-Cont span{
    font-size: 20pt;
    color: var(--secondary);
}
.Home-About-Button{
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    padding: 10px 20px;
    font-family: var(--font);
    margin-top: 30px;
}
.Home-About-Button:hover{
    background-color: var(--secondary);
    color: white;
    transition: all 0.5s ease;
    cursor: pointer;
}

/* SERVICES */

.Home-Services-Icon{
    width:60px;
    height: 60px;   
}
.Home-Services-Container{
    display: flex;
    width:100%;
    padding: 50px 0px;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}
.Home-Services-D{
    display: flex;
    width: 90%;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0px;
}
.Home-Services-O{
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.Home-Services-Title{
    font-size: 25pt;
    font-family: var(--font);
    color: var(--secondary);
}
.Home-Services-Card p{
    color: var(--secondary);
    font-family: var(--font);
    font-size: 12pt;
    text-align: center;
}
.Home-Services-Card{
    display: flex;
    justify-content:space-around;
    align-items: center;
    flex-direction: column;
}
.Home-Services-Button{
    background-color: rgba(0, 0, 0, 0);
    border:2px solid var(--secondary);
    color: var(--secondary);
    font-family: var(--font);
    padding: 10px 20px;
    transition: all 0.5s ease;
    cursor: pointer;
}
.Home-Services-Button:hover{
    background-color: var(--secondary);
    color: white;
}
.Home-Services-Card{
    background-color: var(--bg);
    width: 200px;
    height: 200px;
    border-radius: 20px;
    padding: 20px;
    padding-top: 40px;
}

/* HOME - WHY CHOOSE US */

.Home-WCU-Container{
    background-color: var(--bg);
    width: 100%;    
    padding: 40px 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}
.Home-WCU-Img{
    width:320px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-top: 15px;
}
.Home-WCU-Card{
    background-color:#d2cbe2;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-direction: column;
    width:350px;
    padding-bottom: 10px;
    border-radius: 20px;
}
.Home-WCU-IO{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.Home-WCU-D{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}
.Home-WCU-P{
    width:310px;
    text-align: justify;
    color: black;
    font-family: var(--font);
    margin-top: 0px;
    line-height: 22px;
}
.Home-WCU-Card-Title{
    font-family: var(--font);
    color: var(--secondary);
    font-size: 17pt;
}
.Home-WCU-Title{
    font-family: var(--font);
    color: var(--secondary);
    font-size: 25pt;
    padding-bottom: 20px;
}
.Home-WCU-Button{
    background-color: rgba(0, 0, 0, 0);
    color: var(--secondary);
    border: 2px solid var(--secondary);
    padding: 10px 20px;
    transition: all 0.5s ease;
    cursor: pointer;
    font-family: var(--font);
    margin-top: 40px;
}
.Home-WCU-Button:hover{
    color:white;
    background-color: var(--secondary);
}


/* HOME - CONTACT */

.Home-Contact-Container{
    background-color: var(--secondary);
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
}
.Home-Contact-D{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width:60%;
}
.Home-Contact-Img{
    width:350px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
}
.Home-Contact-Title{
    font-size: 25pt;
    font-family: var(--font);
    color: white;
}
.Home-Contact-p{
    color:white;
    font-family: var(--font);
    margin-left: 10px;
}
.Home-Contact-Head{
    color:white;
    font-family: var(--font);
    font-size: 22pt;
}
.Home-Contact-Button{
    background-color: rgba(0, 0, 0, 0);
    color: white;
    border: 2px solid white;
    padding: 10px 20px;
    transition: all 0.5s ease;
    cursor: pointer;
    font-family: var(--font);
}
.Home-Contact-Button:hover{
    color:var(--secondary);
    background-color: white;
}

/* HOME - Footer */

footer{
    background-color: rgb(49, 48, 48);
    text-align: center;
}
footer p{
    margin: 0%;
    color: white;
    padding: 10px;
    font-family: var(--font);
}

/* RESPONSIVE */

/* NAV BAR  */

@media (min-width: 0px) and (max-width: 800px){

    .Head-Nav-3{
        display: flex;
    }
    .Head-Nav-x{
        display: none;
    }
    #Head-Nav-List{
        z-index: 10;
        transform: translate(500px);
        display: flex;
        position: fixed;
        flex-direction: column;
        background-color: var(--bg);
        align-items: center;
        justify-content: start;
        width:40%;
        right: 0;
        top:60px;
        bottom: 0;
        padding-top: 20px;
        transition: all 0.5s ease;
    }
    #Head-Nav-List li{
        padding: 20px 0px;
    }
   
   
}


@media (max-width: 1024px){
    #Home-About-Img{
        width:400px;
    }
    #Home-About-L{
        width: 500px;
    }

    .Home-Services-Card{
        width: 170px;
    }
    .Home-WCU-Card{
        width: 300px;
    }
    .Home-WCU-Img{
        width: 270px;
    }
    .Home-WCU-P{
        width: 260px;
    }
    .Home-Contact-D {
        width: 90%;
    }

}
@media (max-width: 900px){
    #Home-About-Container{
        flex-direction: column;
    }
    #Home-About-L{
        display: none;
    }
    #Home-About-Img{
        width:500px;
        height: 250px;
    }
    #Home-About-R{
        align-items: center;
        width: 70%;

    }
    .Home-About-Title{
        display: none;
    }
    .Title-Hidden{
        display:flex;
    }
    .Home-About-Cont{
        width: unset;
        line-height: 30px;
    }
    .Home-Services-D{
        flex-direction: column;
        width: 65%;
    }
    .Home-Services-O{
        padding-bottom: 40px;
    }
    .Home-WCU-D{
        flex-direction: column;
        align-items: center;
    }
    .Home-WCU-Card{
        flex-direction: row;
        width:80%;
        justify-content: space-around;
        margin-bottom: 40px;
        padding-right: 20px;
    }
    .Home-WCU-Img{
        height: 300px;
    }
    .Home-WCU-IO{
        padding-left: 20px;
    }
    .Home-WCU-P{
        margin-top: 10px;
    }
    .Home-Contact-Img{
        width:250px;
        height: 250px;
    }
    .Home-Contact-Head{
        font-size: 18pt;
    }

}

@media (max-width: 700px) {
    .typing-text{
        font-size: 20pt;
    }
    .Home-WCU-Card{
        flex-direction: column;
        padding: 0px;
    }
    .Home-WCU-Img{
        margin-top: 5%;
        width: 300px;
        
    }
    .Home-WCU-IO{
        padding-left: 0px;
    }
    .Home-Contact-D{
        flex-direction: column;
    }
    .Home-Services-Icon{
        width: 40px;
    }
    .Home-Services-Container{
        padding: 40px 0px;
    }
    .Home-Services-D {
        width:90%;
        justify-content: space-between;
        padding-bottom: 10px;
    }
    .Home-Services-Card{
        width:130px;
        
    }
    .Home-Services-Card p{
        font-size: 10pt;
    }
    #Slider-Cont{
        font-size: 20pt;
        width:50%;
        padding-left: 0%;
    }
    #Slider-Cont-Container{
        justify-content: center;
    }
    #Head-Logo {
        height: 30px;
    }
    #Head-L{
        margin-left: 40px;
    }
    #Head-R{
        margin-right: 40px;
    }
    header{
        height: 60px;
    }
    #Slider{
        margin-top: 60px;
    }
    .Head-Nav-3-Img{
        width: 20px;
    }
    #Head-Nav-List{
        top:44px;
    }
    
}
@media (max-width: 400px) {
    .Home-Services-D {
        width: 85%;
    }
    .Home-Services-Card{
        width:100px;
        
    }
    .Home-WCU-Img{
        margin-top: 5%;
    }
    .Home-WCU-Img{
        width: 280px;
        
    }

}
@media (max-width: 321px) {
    #Slider-Cont{
        font-size: 16pt;
    }
    .Home-Services-Icon{
        width: 30px;
    }
    .Home-Services-Card{
        width:85px;
    }
    .Home-Services-Card p{
        font-size: 10pt;
    }
    .Home-WCU-Card{
        justify-content: center;
    }
    .Home-WCU-Card-Title{
        font-size: 13pt;
    }
    .Home-WCU-Img{
        width: 220px;
    }
    .Home-WCU-P{
        width: 85%;
    }
    .JJ-Home{
        display: flex;
        justify-content: center;
        margin-bottom: 8px;
    }
    .Home-Contact-Head{
        font-size: 15pt;
    }
    .Home-Contact-p{
        font-size: 10pt;
    }
}