/* Fonts */

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


/* Universal */

*{
    margin: 0;
    padding: 0;
}

/* Container */

.container{
    position: relative;
}

.container::before{
    content: '';
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)) , url("../images/bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    height: 100vh;
    width: 100vw;
    top: 0;
    z-index: -1;
}

/* Navigation */

.nav{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 50px;
    padding-bottom: 20px;
}

.logo{
    flex-grow: 1;
    margin-left: 80px;
}

.list{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 2;
}

.list-item{
    list-style: none;
    margin-right: 70px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 25px;
    color: #ffffff;
}

.list-item:hover{
    color: #ffffffa6;
    border-color: #ffffffa6;
    cursor: pointer;
}

.contact{
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    flex-grow: 1;
    font-family: 'Ubuntu', sans-serif;
    font-size: 20px;
    width: 80px;
    color: #ffffff;
}

.contact-details{
    margin-left: 10px;
}

.phone-icon{
    /* color: white; */
    font-size: 25px;
}

/* Rules */

.rule1{
    width: 1250px;
    position: absolute;
    right: 50px;
    background-color: black;
    height: 2px;
    border: none;
    background-color: #ffffff;
}

.rule2{
    width: 50px;
    background-color: black;
    height: 2px;
    transform: rotate(90deg);
    border: none;
    position: relative;
    left: 300px;
    top: 19px;
    background-color: #ffffff;
}

.rule3{
    width: 50px;
    background-color: black;
    height: 2px;
    /* transform: rotate(90deg); */
    border: none;
    position: relative;
    bottom: 120px;
    left: 180px;
    background-color: #ffffff;
}

/* Circles*/

.circle1{
    position: relative;
    left: 317px;
    top: 37px;
    width: 18px;
    color: #ffffff;
}

.circle2{
    position: relative;
    bottom: 134px;
    left: 229px;
    width: 18px;
    color: #ffffff;
}


/* Main */

.main{
    margin-top: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-icons{
    font-size: 40px;
    padding-bottom: 10px;
    background-color: #ffffff;
    width: 30px;
    height: 25px;
    border: none;
    border-radius: 20px;
    padding-top: 8px;
    padding-right: 25px;
    padding-left: 25px;
    padding-bottom: 25px;
}

.taglines{
    font-family: 'Ubuntu', sans-serif;
    color: #ffffff;
    font-size: 25px;
    margin-top: 10px;
}

.left{
   flex-grow: 2;
   margin-left: 80px;
}

.right{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 500px;
}

.heading{
    font-size: 80px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 50px;
    color: #ffffff;
}

.btn{
    font-size: 30px;
    font-family: 'Montserrat', sans-serif;
    padding: 20px 40px;
    border-radius: 50px;
    background: transparent;
    border-width: 3px;
    color: #ffffff;
    border-style: solid;
    border-color: #ffffff;
}

.btn:hover{
    color: #ffffffa6;
    border-color: #ffffffa6;
    cursor: pointer;
}

.right-1{
    background-color: rgba(255, 255, 255, 0.3);
    width: 360px;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
    left: 100px;
}

.right-2{
    margin-top: 70px;
    background-color: rgba(255, 255, 255, 0.3);
    width: 300px;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;
    right: 140px;
}


/* Mobile Responsiveness */


@media (max-width: 1720px){

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

    .main{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    
    .list-item{
        margin: 0 1em;
    }

    .contact-details span{
        display: inline-block;
        width: 200px;
    }

    .list{
        margin: 2em 0;
    }

    .rule1{
        position: static;
        margin-top: 2em;
    }

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

    .container::before{
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        position: absolute;
        height: 180vh;
        width: 100vw;
        top: 0;
        z-index: -1;
    }

    .heading{
        margin-top: 1em;
    }

}


@media (max-width: 1320px){

    .logo{
        margin-left: 0;
    }
    
    .logo img{
        height: 3em;
        padding: 0;
    }

    .list-item{
        font-size: 1.5em;
    }

    .contact-details span{
        font-size: 0.8em;
    }

    .rule1{
        width: 80%;
    }

    .heading{
        font-size: 3em;
    }

    .btn{
        font-size: 1.5em;
    }

    .left{
        margin-left: 0;
    }

    .main-icons{
        font-size: 25px;        
        padding-right: 15px;
        padding-left: 25px;
        padding-bottom: 15px;
    }

    .taglines{
        font-size: 1.2em;
    }

    .right-1{
        width: 300px;
        left: 0;
    }
    
    .right-2{
        width: 300px;
        right: 0;
    }

    .rule2{
        left: 200px;
        top: 10px;
    }
    
    .rule3{
        bottom: 120px;
        left: 320px;
    }

    .circle1{
        left: 218px;
        top: 20px;
    }
    
    .circle2{
        bottom: 142px;
        left: 370px;
    }
    

}

@media (max-width: 730px){

    .list{
        flex-direction: column;
    }

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

    .heading{
        font-size: 1.6em;
    }

    .btn{
        font-size: 0.8em;
    }

    .main-icons{
        font-size: 20px;        
        padding-right: 12px;
        padding-left: 25px;
        padding-bottom: 8px;
    }

    .taglines{
        font-size: 0.8em;
    }

    .right-1{
        width: 160px;
        left: 0;
    }
    
    .right-2{
        width: 160px;
        right: 0;
    }

    .rule2{
        left: 100px;
        top: 3px;
    }
    
    .rule3{
        bottom: 120px;
        left: 180px;
    }

    .circle1{
        left: 118px;
        top: 5px;
    }
    
    .circle2{
        bottom: 150px;
        left: 220px;
    }

    .contact-details span{
        width: 150px;
    }

}