@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --ff: "Montserrat",sans-serif;
    --fa: "Arial", sans-serif;
}
*{
    margin: 0;
    padding: 0;
}

body{
    min-height: 100vh;
    max-width: 100%;
    background-color: white;
    font-family: var(--fa);
}

li.logo img{
    height: 100%;
    width: 100%;
}

nav{
    background-color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1);
}

nav ul{
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

nav li{
    height: 70px;
}

nav a{
    height: 100%;
    padding: 0 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    font-family: var(--ff);
    font-weight: 600;
}

nav a:hover{
    color: rgb(76, 76, 76);
}

nav li.logo:last-child{
    margin-left: auto;
}

.sideBar{
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 300px;
    z-index: 999;
    background-color: rgb(22, 22, 22);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sideBar li{
    width: 100%;
}

.sideBar a{
    width: 100%;
}

.sideBar a:hover{
    color: white;
}

.sideBar li:hover{
    background-color: rgb(57, 56, 56);
}

li.close:hover{
    background-color: transparent;
    
}

li.close a:hover{
    cursor: default;
}

li.close svg:hover{
    cursor: pointer;
    fill: white;
}

li.menu svg:hover{
    cursor: pointer;
    fill: rgb(76, 76, 76);
}

.menu{
    display: none;
}

/*FOOTER*/

footer{
    color: white;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1) inset;
}
.contie{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

p.stamp{
    color: black;
    text-align: end;
    font-family: var(--fa);
    font-weight: 600;
    font-size: 14px;
}

p.stamp2{
    color: black;
    text-align: center;
    font-family: var(--fa);
    font-weight: 600;
    font-size: 14px;
}



div.links ul{
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.links li{
    height: 100px;
}

.links a:hover{
    color: gray;
}

.links a{
    height: 100%;
    padding: 0 20px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: black;
    font-family: var(--ff);
    font-weight: 600;
}

div.logo img{
    height: 70px;
    width: 100%;
}

div.socials{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.fb i{
    font-size: 40px;
    margin: 0 15px;
    padding: 10px 20px;
    background-color: black;
    border-radius: 999px;
    color: white;
    text-align: center;
}

.fb i:hover{
    background-color: gray;
}

.twitter i{
    text-align: center;
    font-size: 40px;
    margin: 0 15px;
    padding: 10px 10px;
    background-color: black;
    border-radius: 999px;
    color: white;
}

.twitter i:hover{
    background-color: gray;
}



/*HOME PAGE*/

div.banner{
    height: 300px;
    width: 100%;
    background: linear-gradient(rgba(0,0,0, 0.7), rgba(0,0,0,0.7)),url(./logo/sliderHero1.jpg);
    background-position: center;
}

img.logoPNG{
    height: 128px;
    width: 128px;
}

div.head{
    height: 130px;
    width: 100%;
    padding: 20px 0;
    display: flex;
}

span{
    color: rgb(225, 174, 7);
}

h1{
    color: white;
    font-family: var(--ff);
    font-size: 50px;
    font-weight: 600;
    text-align: start;
    padding: 50px 0;
    margin-left: 50px;
    letter-spacing: 2px;
}

.littleH h2{
    color: rgb(225, 223, 223);
    margin-left: 50px;
    font-size: 20px;
    margin-bottom: 20px;
}

button{
    margin-left: 50px;
    border: none;
    background-color: rgb(25, 154, 25);
    border-radius: 30px;
    padding: 10px 10px;
    text-decoration: none;
}

button a{
    text-decoration: none;
    color: white;
    font-family: var(--fa);
    font-size: 15px;
    padding: 10px 10px;
    font-weight: 500;

}

button a:hover{
    font-weight: 700;
}

button:hover{
    background-color: rgb(12, 73, 12);
}

.header h2{
    color: black;
    text-align: center;
    font-size: 35px;
    margin: 15px 0;
}

div.boxes{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin-top: 30px;
}

div.cont{
    height: 300px;
    width: 475px;
    box-shadow: 0 8px 16px 0  rgba(0,0,0,0.37);
    border-radius: 10px;
    margin-bottom: 30px;
    color: black
}

.incase{
    background: linear-gradient(rgba(234, 48, 48, 1),rgba(99, 6, 6, 1));
    backdrop-filter: blur(10px);
}

p{
    color: black;
    text-align: center;
    padding: 0 15px;
    font-size: 19px;
    margin-bottom: 15px;
}

.cont li{
    margin-left: 40px;
}





@media (max-width: 1024px) {
    .hideMobile{
        display: none;
    }
    
    .menu{
        display: block;
    }

    nav a{
        height: 100%;
        padding: 0 30px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: white;
        font-family: var(--ff);
        font-weight: 600;
    }

    /*FOOTER*/

    footer{
        color: white;
        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.1) inset;
    }
    .contie{
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        align-items: center;
    }
    
    p.stamp{
        color: black;
        text-align: end;
        font-family: var(--fa);
        font-weight: 600;
        font-size: 14px;
    }
    
    p.stamp2{
        color: black;
        text-align: center;
        font-family: var(--fa);
        font-weight: 600;
        font-size: 14px;
    }
    
    
    
    div.links ul{
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    
    .links li{
        height: 50px;
    }
    
    .links a:hover{
        color: gray;
    }
    
    .links a{
        height: 100%;
        padding: 0 20px;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: black;
        font-family: var(--ff);
        font-weight: 600;
    }
    
    div.logo img{
        margin: 20px;
        height: 50px;
        width: 100px
    }
    
    div.socials{
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        margin-bottom: 20px;
    }
    
    .fb i{
        font-size: 20px;
        margin: 0 15px;
        padding: 5px 10px;
        background-color: black;
        border-radius: 999px;
        color: white;
        text-align: center;
    }
    
    .fb i:hover{
        background-color: gray;
    }
    
    .twitter i{
        text-align: center;
        font-size: 20px;
        margin: 0 15px;
        padding: 5px 5px;
        background-color: black;
        border-radius: 999px;
        color: white;
    }
    
    .twitter i:hover{
        background-color: gray;
    }

    /*HOME PAGE*/

    div.banner{
        height: 250px;
        width: 100%;
        background: linear-gradient(rgba(0,0,0, 0.7), rgba(0,0,0,0.7)),url(./logo/sliderHero1.jpg);
        background-position: center;
    }
    
    img.logoPNG{
        height: 1px;
        width: 1px;
    }
    
    div.head{
        height: 70px;
        width: 100%;
        padding: 10px 0;
        display: flex;
    }
    
    span{
        color: rgb(225, 174, 7);
    }
    
    h1{
        color: white;
        font-family: var(--ff);
        font-size: 20px;
        font-weight: 600;
        text-align: start;
        padding: 50px 0;
        margin-left: 10px;
        letter-spacing: 2px;
    }
    
    .littleH h2{
        color: rgb(225, 223, 223);
        margin-left: 10px;
        font-size: 11px;
        margin-top: 20px;
    }
    
    button{
        margin-left: 10px;
        border: none;
        background-color: rgb(25, 154, 25);
        border-radius: 30px;
        padding: 10px 10px;
        text-decoration: none;
    }
    
    button a{
        text-decoration: none;
        color: white;
        font-family: var(--fa);
        font-size: 15px;
        padding: 10px 10px;
        font-weight: 500;
    
    }
    
    button a:hover{
        font-weight: 700;
    }
    
    button:hover{
        background-color: rgb(12, 73, 12);
    }
    
    .header h2{
        color: black;
        text-align: center;
        font-size: 35px;
        margin: 15px 0;
    }
    
    div.boxes{
        display: flex;
        justify-content: space-evenly;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }
    
    div.cont{
        height: 360px;
        width: 90%;
        box-shadow: 0 8px 16px 0  rgba(0,0,0,0.37);
        border-radius: 10px;
        margin-bottom: 30px;
        color: black
    }
    
    p{
        color: black;
        text-align: center;
        padding: 0 15px;
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .cont li{
        margin-left: 40px;
    }
    
    
}

@media (max-width:450px) {
    .sideBar{
        width: 100%;
    }

}



@media (min-width: 760px) and (max-width:1024px) {

    /*HOME*/

    div.banner{
        height: 250px;
        width: 100%;
        background: linear-gradient(rgba(0,0,0, 0.7), rgba(0,0,0,0.7)),url(./logo/sliderHero1.jpg);
        background-position: center;
    }
    
    img.logoPNG{
        height: 1px;
        width: 1px;
    }
    
    div.head{
        height: 70px;
        width: 100%;
        padding: 10px 0;
        display: flex;
    }
    
    span{
        color: rgb(225, 174, 7);
    }
    
    h1{
        color: white;
        font-family: var(--ff);
        font-size: 25px;
        font-weight: 600;
        text-align: start;
        padding: 50px 0;
        margin-left: 10px;
        letter-spacing: 2px;
    }
    
    .littleH h2{
        color: rgb(225, 223, 223);
        margin-left: 10px;
        font-size: 14px;
        margin-top: 20px;
    }
    
    button{
        margin-left: 10px;
        border: none;
        background-color: rgb(25, 154, 25);
        border-radius: 30px;
        padding: 10px 10px;
        text-decoration: none;
    }
    
    button a{
        text-decoration: none;
        color: white;
        font-family: var(--fa);
        font-size: 15px;
        padding: 10px 10px;
        font-weight: 500;
    
    }
    
    button a:hover{
        font-weight: 700;
    }
    
    button:hover{
        background-color: rgb(12, 73, 12);
    }
    
}

@media (min-width: 1180px) and (max-width:1180px) {

    div.banner{
        height: 300px;
        width: 100%;
        background: linear-gradient(rgba(0,0,0, 0.7), rgba(0,0,0,0.7)),url(./logo/sliderHero1.jpg);
        background-position: center;
    }
    
    img.logoPNG{
        height: 128px;
        width: 128px;
    }
    
    div.head{
        height: 130px;
        width: 100%;
        padding: 20px 0;
        display: flex;
    }
    
    span{
        color: rgb(225, 174, 7);
    }
    
    h1{
        color: white;
        font-family: var(--ff);
        font-size: 40px;
        font-weight: 600;
        text-align: start;
        padding: 50px 0;
        margin-left: 50px;
        letter-spacing: 2px;
    }
    
    .littleH h2{
        color: rgb(225, 223, 223);
        margin-left: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    nav a{
        height: 100%;
        padding: 0 20px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: black;
        font-family: var(--ff);
        font-weight: 600;
    }

    .links a{
        height: 100%;
        padding: 0 10px;
        text-decoration: none;
        display: flex;
        align-items: center;
        color: black;
        font-family: var(--ff);
        font-weight: 600;
    }

    
    div.boxes{
        display: flex;
        justify-content: space-evenly;
        flex-direction: row;
        align-items: center;
        margin-top: 30px;
    }
    
    div.cont{
        height: 360px;
        width: 90%;
        box-shadow: 0 8px 16px 0  rgba(0,0,0,0.37);
        border-radius: 10px;
        margin-bottom: 30px;
        color: black
    }
    
}

@media (min-width:750px) and (max-width:1179px){
    div.cont{
        height: 260px;
        width: 90%;
        box-shadow: 0 8px 16px 0  rgba(0,0,0,0.37);
        border-radius: 10px;
        margin-bottom: 30px;
        color: black
    }
}
