/* ********************************************************************* */
/* ********** START : Home ********************************************* */
/* ********************************************************************* */

/* ********************************************************************* */
/* ********** Welcome Section ****************************************** */
.main-section{    
    position: relative;
    width:100%;
    max-width: 1200px;
    max-height: 600px;
    height: 50vw;
    overflow-x: hidden;
    /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../assets/dummy/1200x600.png); */
}
.main-section-slideshow{
    display:flex;
    position: absolute;
    max-width: 1200px;
    max-height: 600px;
    width: 100%;
    height: 100%;
    animation: slide 16s infinite;
}
.main-section-img{
    width: 100%;
    object-fit: cover;
}
@keyframes slide {
    0% {
        transform: translateX(0)
    }
    12.5%{
        transform: translateX(0)
    }
    25%{
        transform: translateX(-100%)
    }
    75%{
        transform: translateX(-100%)
    }
    87.5%{
        transform: translateX(-200%)
    }
    100%{
        transform: translateX(-200%)
    }
}
.main-section-dark{
    position: absolute;
    width: 100%;
    max-height: 600px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.main-section-get-start-btn{
    position: absolute;
    width:260px;
    height: 60px;
    bottom: 40px;
    right: 68px;
}
.main-section-item-box{
    box-sizing: border-box;
    position: absolute;
    top: 10vw;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:center;    
    text-align: center;
    color:var(--color-white);
}
.main-section-heading{
    font-size: 2.9rem ;
    text-wrap: nowrap;
    text-align: center;
    font-weight:900;
    text-shadow: 0px 5px 6px rgba(0, 0, 0, 0.692);
    margin: 0;
    font-family: var(--font-wel-come-message);
}
.main-section-sub-heading{
    margin-top: 10px;
    font-size: 2rem ;
    text-align: center;    
    font-weight: bold;
    font-family: var(--font-wel-come-message);
}
.main-section-btn{
    text-decoration: none;
    outline: none;
    border: none;
    padding: 10px 20px;
    font-size: 1.5rem ;
    margin-top: 40px;
    background-color: var(--color-bg-primary);
    color: var(--color-white);
}
.main-section-btn:active{
    transform: scale(0.9);
}

/* ********************************************************************* */
/* ********** About Us Section ***************************************** */
.about-us-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;    
    padding-top: 20px;
    padding-bottom: 20px;
    max-width: 1200px;
    background-color: var(--color-bg-primary);
    margin-bottom: 80px;
}
.about-us-image-box{
    position: relative;
    width: 40%;
    height: 400px;
    margin:20px;
    padding:20px;
}
.about-us-image{
    width: 300px;
    position: absolute;
}
.about-us-image-one{
    top:0;
    left:0;
}
.about-us-image-two{
    right:0;
    bottom:0;
}
.about-us-image-empty{
    position: absolute;
    width: 300px;
    height: 300px;    
    top:15%;
    left:20%;
    border: 1px solid var(--color-white);
}
.about-us-text-box{
    display: flex;
    flex-direction: column;
    align-items:flex-start ;
    justify-content: space-around;
    width: 50%;    
    margin-right: 50px;
    color: var(--color-white);
}
.about-us-text-header{
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.about-us-text-sub-header{
    font-size: 2rem;
    margin-bottom: 20px;
}
.about-us-text{
    font-size: 1rem;
    margin-bottom: 20px;
    text-align:justify;
}
.about-us-btn{
    text-decoration: none;    
    font-size:1rem;    
    padding:10px 37px;
    color: var(--color-white);
    background-color: var(--color-bg-gray-dark);
}
.about-us-btn:active{
    transform: scale(0.9);
}
/* Back To Top Btn */
#back-to-top {
    display: none;
    background-image: url(../assets/img/icons/back-to-top-button-large.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    bottom: 2%;
    right: 2%;
    cursor: pointer;
    width: 4vw;
    height: 4vw;
}

/* ********************************************************************* */
/* ********** Desktop View ********************************************* */
/* ********************************************************************* */
@media only screen and (max-width: 1200px) {
    .main-section-get-start-btn{
        width:20vw;
        height: 5vw;
        bottom: 3.3vw;
        right: 6vw;
    }
    .main-section-item-box{
        top: 15vw;
    }
    .about-us-section{
        margin-bottom:8vw;
    }
    .about-us-image-box{
        height: 35vw;
    }
    .about-us-image{
        width: 25vw;
    }
    .about-us-image-empty{
        width: 20vw;
        height: 20vw;    
        top:23%;
        left:27%;
    }
}

/* ********************************************************************* */
/* ********** Table View *********************************************** */
/* ********************************************************************* */
@media only screen and (max-width: 768px){
/* ********************************************************************* */
/* ********** Welcome Section ****************************************** */
    .main-section-heading{
        font-size: 5vw;
        font-weight:900;
    }
    .main-section-sub-heading{
        font-size: 3vw;
        margin-bottom: 10px;
    }
    .main-section-btn{
        margin-top: 10px;
        font-size: 1rem;
    }
    /* ********************************************************************* */
    /* ********** Back to Top ********************************************** */
    #back-to-top {
        background-image: url(../assets/img/icons/back-to-top-button-small.svg);   
        width: 5vw;
        height: 5vw;
    }
    /* ********************************************************************* */
    /* ********** About Us  ************************************************ */

    .about-us-text-box{
        width: 50%;
        margin-right: 30px;
    }
    .about-us-text-header{
        margin-bottom: 5px;
        font-size: 2rem;
    }
    .about-us-text-sub-header{
        display: none;
    }
    .about-us-text{
        font-size: 1.5vw;
        margin-bottom: 5px;
    }
    .about-us-btn{
        padding:10px 10px;
    }
}

/* ********************************************************************* */
/* ********** Mobile View ********************************************** */
/* ********************************************************************* */
@media only screen and (max-width: 480px){
    .main-section-btn{
        margin-top: 10px;
        font-size: 0.5rem;
        padding: 5px 10px;
    }
    /* ********************************************************************* */
    /* ********** Back to Top ********************************************** */
    #back-to-top {
        width: 6vw;
        height: 6vw;
    }
    
    /* ********************************************************************* */
    /* ********** About Us  ************************************************ */
    .about-us-section {
        flex-direction: column;
    }
    .about-us-image-box {
        width: 80vw;
        height: 60vw;
        margin: 5px;
        padding: 5px;
    }
    .about-us-image-empty {
        width: 50vw;
        height: 50vw;
        top: 10%;
        left: 18.5%;
    }
    .about-us-image {
        width: 50vw;
    }
    .about-us-text-box {
        width: 90%;
        margin-right: 0;
    }
    .about-us-text-header{
        margin-bottom: 5px;
        font-size: 1rem;
    }
    .about-us-text {
        font-size: 0.5rem;
    }
    .about-us-btn {
        text-decoration: none;
        font-size: 0.5rem;
        padding: 5px 18px;
    }
} 

/* ********************************************************************* */
/* ********** END : Home ********************************************** */
/* ********************************************************************* */