@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

*{
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
nav h1{
    margin-left: 10%;
}

nav{
padding-top: .5%;
width:80%;
}
nav a{
text-decoration: none;
color:black;
transition: all ease-in-out 150ms;
}
nav a:hover{
color: #2696E9;


}
nav li{
display:flex;
list-style: none;
}
nav ul{
    display:flex;
}

.secondNav{
    display: none;
}
.secondNav ul{
    width:100%;
    vertical-align: center;
    display:flex;
    list-style: none;
    justify-content: space-between;
}
.secondNav h1{
display:flex;
justify: right;
}
.secondNav svg{
display:flex;
justify:left;
    width: 3rem;
    height: 3rem;
}

section {
    padding: 100px 200px;
}

.home {
    position: relative;
    width: 100%;
    min-width: 30ch;
    display: flex;
    justify-content: center;
    flex-direction: column;
    background-color: #2696E9;
}

.home .content{
    z-index: 888;
    color: #fff;
    width: 90%;
    margin-top: 50px;
}

.home .content h1 span{
    font-size: 1.2em;
    font-weight: 600;
}

.home .content p{
    margin-bottom: 5%;
}

.home .content a{
    white-space: nowrap;
    background-color: transparent;
    /* background: #fff; */
    border:2px solid white;
    padding: 2% 5%;
    /* color: #1680AC; */
    color:white;
    font-size: 1.1em;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
    transition: all ease-in-out 350ms;
}
.content a:hover{
    background-color:#2696E9;
}

.media-icons{
    z-index: 888;
    position: absolute;
    right: 1%;
    display: flex;
    flex-direction: column;
    transform: 0.5s ease;
}

.media-icons a{
    color: #fff;
    font-size: 1.6em;
    transition: 0.3s ease;
}

.media-icons a:hover{
    transform: scale(1.3);
}

.home video{
   z-index: 000;
   position: absolute;
   top: 0;
   left: 0; 
   object-fit: cover;
   width: 100%;
   height: 100%;
}
.Provides{
    margin-top: 3%;
    width:90%;
    display:flex;
}
.ProvidesOne:hover,.ProvidesTwo:hover,.ProvidesThree:hover{
    transition: all ease-in-out 350ms;
    background-color:#97CFF9;
}
.ProvidesOne{
text-align: center;
/* background-color: rgb(240, 240, 240); */
border-radius: 7px;
padding:1% 3%;
margin-right: 3%;
box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.ProvidesOne svg{
    width:2rem;
    height: 2rem;
}
.ProvidesOne p{
    max-width: 40ch;
}
.ProvidesTwo{
    text-align: center;
    /* background-color: rgb(240, 240, 240); */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 7px;
    padding:1% 3%;
    margin-right: 3%;
}
.ProvidesTwo svg{
    width:2rem;
    height: 2rem;
}
.ProvidesTwo p{
    max-width: 40ch;
}
.ProvidesThree{
    text-align: center;
    /* background-color: rgb(223, 223, 223); */
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 7px;
    padding:1% 3%;
    margin-right: 3%;
}
.ProvidesThree svg{
    width:2rem;
    height: 2rem;
}
.ProvidesThree p{
    max-width: 40ch;
}

@media screen and (max-width:960px){
    nav ul{
        display:none;
    }
    .secondNav{
        display: flex;
    }
    .home video{
        display:none;
    }
    .home{
        padding:3% 1%;
    }
    .media-icons{
        display:none;
    }
    .secondNav h1{
        font-size: 2rem;
    }
    .Provides{
        margin-top:10%;
        display:block;
    }
    .ProvidesOne{
        padding-top: 3%;
        padding-bottom: 3%;
        margin-bottom: 3%;
    }
    .ProvidesTwo{
        padding-top: 3%;
        padding-bottom: 3%;
        margin-bottom: 3%;
    }
    .ProvidesThree{
        padding-top: 3%;
        padding-bottom: 3%;
        margin-bottom: 10%;
    }
}
