/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates&family=Roboto:wght@700&display=swap');

/* font-family: 'Montserrat Alternates', sans-serif; */
/* font-family: 'Roboto', sans-serif; */


/* All */

*{
    margin: 0;
    padding: 0;
    font-family: 'Montserrat Alternates', sans-serif;
}

.pic1{
    height: 800px;
}

.pic2{
    height: 800px;
}



/* Navigation */

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5C21B1;
    border-top-right-radius: 50px;
    border-top-left-radius: 50px;
    padding: 30px 100px;
}

.nav-list{
    display: flex;
}

.nav-list-item{
    list-style: none;
    font-size: 20px;
    margin: 0 20px;
    color: #ffffff;
}

.nav-list-item:hover{
    font-weight: bold;
    cursor: pointer;
    border-bottom: 1px solid violet;
    color: #00ffffb3;
}

.btn{
    font-size: 25px;
    padding: 20px 30px;
    color: #ffffff;
    background-color: #00ffffb3;
    border: none;
}

.btn:hover{
    font-weight: bold;
    cursor: pointer;
}

/* Upper */

.upper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #5C21B1;
    padding: 10px 100px 100px;
}

.upper-left-heading{
    color: #ffffff;
    font-size: 130px;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
}

.upper-left-para{
    color: #ffffff;
    font-size: 20px;
    width: 800px;
}

/* Middle */


.middle{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 100px 50px;
}

.middle-right{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.middle-right-heading{
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
    margin-bottom: 70px;
    width: 600px;
}

.middle-part-heading{
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    margin-bottom: 30px;
}
.middle-part-para{
    font-size: 18px;
    width: 400px;
}

.orange{
    color: #ffa500;
    font-size: 25px;  
    margin-right: 15px;  
}
.green{
    color: #90ee90;
    font-size: 25px; 
    margin-right: 15px;   
}
.blue{
    color: #008b8b;
    font-size: 25px;  
    margin-right: 15px;  
}

.middle-right-box{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 50px;
}

/* Lower */


.lower-heading{
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
    text-align: center;
    margin-bottom: 100px;
}

.lower{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 100px;
}

.lower-box{
    padding: 40px 0 0;
    border: none;
    box-shadow: 10px 5px 5px rgba(0, 0, 0, 0.301);
    text-align: center;
    margin: 0 20px;
    border-radius: 50px;
}

.lower-box-heading{
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    text-align: center;
    margin: 0 0 10px;
}

.lower-box-para{
    font-size: 18px;
    width: 300px;
}

.lower-icon{
    border: none;
    padding: 35px;
    border-radius: 80px;
    font-size: 45px;
}

.lower-icon-1{
    color: #a52a2abe;
    background-color: rgba(165, 42, 42, 0.185);
}

.lower-icon-2{
    color: #ffa600b9;
    background-color: rgba(165, 42, 42, 0.07);
}

.lower-icon-3{
    color: #008000b9;
    background-color: rgba(0, 128, 0, 0.13);
}

.lower-icon-4{
    color: #800080c2;
    background-color: rgba(128, 0, 128, 0.267);
}

.lower-box-sub{
    border: none;
    margin-top: 40px;
    border-radius: 50px;
    color: #ffffff;
    background-color: #5C21B1;
    padding: 20px 0; 
}

.remover{
    color: #000000;
    background-color: #ffffff;
}


/* Mobile Responsiveness */

@media (max-width: 1850px){

    .upper{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .upper-left-heading{
        font-size: 5em;
    }
    
    .upper-left-para{
        font-size: 1em;
        width: 70vw;        
    }

    .upper-left{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .pic1{
        height: 500px;
    }

    .pic2{
        height: 500px;
    }

    .middle{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .middle-right-box{
        width: 100vw;
    }

    .middle-right-heading{
        width: 100vw;
    }

    .lower{
        flex-wrap: wrap;
        padding: 0 5em;
    }

    .lower-box{
        margin: 2em;
    }

}


@media (max-width: 1110px){

    .nav{
        flex-direction: column;
    }

    .nav-list{
        flex-direction: column;
        margin: 2em 0;
        text-align: center;
    }

    .nav-list-item{
        margin: 1em 0;
        font-size: 1em;
    }

    .logo{
        height: 3em;
    }

    .btn{
        font-size: 1em;
    }

    .upper-left-heading{
        font-size: 2em;
    }
    
    .upper-left-para{
        font-size: 0.8em;
        
    }

    .pic1{
        height: 250px;
    }

    .pic2{
        height: 250px;
    }

    .middle-right-heading{
        font-size: 2em;
    }

    .middle-part-heading{
        font-size: 1.5em;
    }

    .middle-part-para{
        font-size: 0.8em;
    }

    .fa-solid{
        font-size: 1em;
    }

}


@media (max-width: 500px){

    .middle-right-heading{
        font-size: 1.5em;
        width: 300px;
    }

    .middle-part{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .middle-part-heading{
        font-size: 1em;
        width: 200px;        
    }

    .middle-part-para{
        font-size: 0.7em;
        width: 200px;
    }

    .fa-solid{
        font-size: 1em;
        margin-right: 0;  
    }

    .middle-right{
        align-items: center;
    }

    .lower-heading{
        font-size: 1.5em;
    }

    .lower-icon{
        font-size: 1em;
        padding: 22.5px 20px;
        border-radius: 50px;
    }

    .lower-box-heading{
        font-size: 1.2em;
    }

    .lower-box-para{
        font-size: 0.7em;
        width: 200px;
        text-align: center;
    }
    
    .lower-box{
        width: 250px;
    }

    .lower-box-sub{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}