/*General Styling*/
*{
    margin: 0;
    padding: 0;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 1rem;
}

img{
    width:100%;
}

.btn{
    display: inline-block;
    background: #444;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 30px;
    transition: 500ms;
}

.btn:hover{
    background: #888;
    transform: scale(1.1);
}

.underline{
    width: 100%;
    height: 5px;
    background: rgb(216, 44, 44);
}

.underline-banner{
    width: 100%;
    height: 100px;
    background: rgb(216, 44, 44);
}

.underline-fade{
    width: 80%;
    border-radius: 50%;
    height: 1px;
    background: rgb(0,0,0,0.2);
    margin: auto;
}

/*Styling for Navigation Bar*/
header{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0);
    width: 100%;
    box-sizing: border-box;
    transition: 500ms;

}

.black{
    background: rgba(0,0,0,0.75);
}

header .logo a{
    font-family:'Arvo', sans-serif;
    height: 8vh;
    font-weight: bold;
    line-height: 8vh;
    float: left;
    font-size: 1.5rem;
    letter-spacing: 5px;
    padding: 0 1rem;
    color: rgb(216, 44, 44);
    text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff; 
    animation: navbar 1500ms 1;
}

header nav{
    float: right; 
}

header nav ul{
    margin: 0;
    padding: 0;
    display: flex;
    
}

header nav ul li{
    list-style: none;
    position: relative;
}

header nav ul li ul{
    position: absolute;
    left: 0;
    background: rgba(0,0,0,0.75);
    display: none;
    animation: submenu 300ms 1;
}

header nav ul li.active ul{
    display: block;
}

header nav ul li:hover ul{
    display: block;
}

header nav ul li ul li{
    display: block;
    min-width: 30vw;
}

header nav ul li ul li a{
    animation: submenu 300ms 1;
}

header nav ul li a{
    height: 8vh;
    font-weight: bold;
    line-height: 8vh;
    padding: 0 1vw;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 500ms;
    animation: navbar 1500ms 1;
}

header nav ul li a:hover{
    color: #888;
    text-decoration: none;
}

.burger{
    float: right;
    font-size: 24px;
    cursor: pointer;
    padding: 2.1vh;
    display: none;
}

.burger div{
    width: 20px;
    height:2px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
    animation: navbar 1500ms 1;
}

.section-covid .contain{
    display: grid;
    align-items: center;
    padding: 3rem;
}

.section-covid .contain .para ul{
    padding-left: 4rem;
}


/*Styling for Showcase

/*
.section-a .contain .btn{
    position: block;
    margin: 1rem auto;
    font-weight: bold;
    text-align: center;
    max-width: 250px;
    background-color: rgb(216, 44, 44);
    font-size: 1rem;
    transform: translateY(0%);
    animation: button 1500ms 1;
}

.section-a .contain .btn:hover{
    transform: scale(1.1);
    color: #fff;
    background-color:  rgb(211, 74, 74);
}



.section-a .contain img{
    width: 30%;
    margin: auto;
}
*/

.section-a .contain{
    display: grid;
    background: url("../img/watch.png") center;
    background-color: #000;
    background-repeat: no-repeat;
    background-size: cover;
    align-content: center;
    overflow: hidden;
    height: 60vh;
    animation: showcase 1500ms 1;
}

.section-a .contain h2{
    width: 100%;
    font-family:'Arvo', sans-serif;
    font-weight: bold;
    text-align: center;
    color: rgb(216, 44, 44);
    -webkit-text-stroke: 2px #fff;
    /*
    text-shadow: 
     -3px -3px 0 #fff,  
      3px -3px 0 #fff,
      -3px 3px 0 #fff,
       3px 3px 0 #fff;*/
    font-size: 4rem;
    transform: translateY(0%);
    animation: text 1500ms 1;
}

/*Banner Styling*/
.section-d{
    width: 100%;
    display: flex;
    height: 100px;
    text-align: center;
    background: #e9e9e9;
}

.section-d .btn{
    display: block;
    width: 100%;
    overflow: hidden;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: 0;
    background: #e9e9e9;
    color: #000;
    line-height: 50px;
    /*animation: button 3000ms infinite;*/
}

.section-d .btn h1{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 2.5rem;
    width: 100%;
}

.section-d .btn h3{
    font-weight: bold;
    font-size: 1.75rem;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 0.5rem;
    width: 100%;
}
/*Footer Styling*/
.section-footer{
    background: #444;
    color: #fff;
    padding: 2rem 0 4rem 0;
}

.section-footer .contain{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
}

.section-footer ul{
    list-style: none;
}

.section-footer .nav-footer{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.section-footer .contain h2{
    text-align: left;
    color: #fff;
    text-shadow: none;
    width: 100%;
    font-weight: normal;
    font-size: 2rem;
    margin: 0 0 1rem 0;
}

.section-footer .contain h3{
    font-size: 1.5rem;
    margin: 0 0 0.7rem 0;
}

.section-footer h3{
    font-weight: normal;
    width: 100%;
}

.section-footer .info-footer{
    margin: .5rem;
    text-align: center;
    font-size: 1.5rem;
}

.section-footer .light{
    background: #555;
}

.section-footer a{
    line-height: 1.9;
    color: #ccc;
    text-decoration: none;
}

.section-footer li{
    color: #ccc;
}

.section-footer a > i{
    color: #777;
    margin-right: 0.5rem;
}

.section-footer .copyRight{
    text-align: center;
    margin: 1rem;
}

.section-footer img{
    max-height: 200px;
    width: auto;
    padding: 1rem;
}



/*Phone Mode*/
@media screen and (max-width: 768px){

    /*Navigation Styling in Phone*/
    header{
        padding: 0 20px;
        background: rgba(0,0,0,0.75);
        height: 8vh;
    }

    header .logo a{
        font-size: .8rem;
        letter-spacing: 5px;
        padding: 0;
    }

    .burger{
        display: block;
    }
    header nav{
        position: absolute;
        width: 60%;
        height: calc(100vh - 8vh);
        background: rgba(0,0,0,0.75);
        top: 8vh;
        left: 100%;
        transition: 500ms;
    }
    header nav.active{
        left: 40%;
    }

    header nav ul{
        display: block;
        text-align: center;
    }

    header nav ul li{
        padding-top: 2rem;
    }

    header nav ul li:hover ul{
        position: relative;
    }

    header nav ul li.active ul{
        position:relative;
    }

    header nav ul li ul li{
        width: 100%;
    }
    a{
        font-size: 1rem;;
    }
    
    .section-a .contain h2{
        font-size: 3rem;
    }

    .section-footer{
        padding: 2rem 0;
    }

    .section-footer .contain{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-footer .nav-footer{
        grid-template-columns: 1fr;
    }

    .section-footer .navigate{
        display: none;
    }

    .section-footer .contain h2{
        text-align: center;
    }

    
}

/*Animations*/

@keyframes button{
    0%{
        transform: translateY(300%);
        color: rgba(255, 255, 255, 0);
        background-color: rgba(0, 0, 0, 0);
   }
   25%{
       transform: translateY(300%);
        color: rgba(255, 255, 255, 0);
        background-color: rgba(0, 0, 0, 0);
   }
   75%{
       transform: translateY(0%);
       color: white;
   }
}

@keyframes text{
   0%{
        transform: translateY(500%);
   }
   25%{
       transform: translateY(500%);
   }
   75%{
       transform: translateY(0%);
   }
}

@keyframes navbar{
    0%{
        color: rgba(255,255, 255, 0);
        background-color: rgba(0, 0, 0, 0);
        text-shadow: none;
    }
    60%{
        color: rgba(255,255, 255, 0);
        background-color: rgba(0, 0, 0, 0);
        text-shadow: none;
    }
}

@keyframes submenu{
    0%{
        background: rgba(255, 255, 255, 0);
        color: rgba(255, 255, 255, 0);
        transform: translateY(25%)
    }
}

@keyframes button{
    0%{
        transform: scale(1.0);
    }
    50%{
        transform: scale(1.1);
    }
}

@keyframes showcase{
    0%{
        filter: brightness(0);
    }
}

/*Changes menu bar to an X*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px, -6px);
}

