@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;500;600;700&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto Slab', serif;
    box-sizing: border-box;
    box-sizing: border-box;
}
.html{
    font-size: 62.5%;
}
/* ########## HEADER STYLING ########## */
.header{
    position: relative;
    height: 90vh;
    border: 1px solid black;
    margin-bottom: 4rem;
    background-image: url("./images/Frontpage.jpg");
    background-position: center;
    background-size: 100%;
    background: linear-gradient(rgba(0,0,0,0.5) rgba(0,0,0,0.5));
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgb(204, 204, 204) ;
    color: rgb(230, 239, 248);
}
.header2{
    position: relative;
    background: linear-gradient(rgba(0,0,0,0.5) rgba(0,0,0,0.5));
    border: 1px solid black;
    margin-bottom: 4rem;
    background-color: black;
    color: rgb(230, 239, 248);
}

/* ########## UTILITY CLASSES ########## */
.container-main{
    max-width: 1200px;
    width: 90%;
    margin: 0 auto 2rem auto;
}
.container{
    margin-top: 4em;
    max-width: 800px;
    width: 90%;
    margin: 0 auto auto auto;
}
.txt-blue {
    color: #1c5c9c;
}
.txt-white{
    color: #e1ebf5;
}
.txt-gray{
    color: #555555;
}
.lg-heading{
    font-size: 1.3rem;
}
.md-heading{
    font-size: 0.8rem;
}
/* ######## NAVBAR STYLING ######### */
.nav{
    padding: 1rem;
}
.nav::after{
    content:"" ;
    clear: both ;
}
.header .logo{
    float: left;
    font-weight: 700;
    font-size: 2rem;
}
.header2 .logo{
    float: left;
    font-weight: 700;
    font-size: 2rem;
}
.header .nav-items{
    float: right;
    word-spacing: 2em;
}
.header2 .nav-items{
    float: right;
    word-spacing: 2em;
}
.nav-items .nav-item{
    display: inline-block;
    padding-top: 0.5em ;
}
.nav-items .nav-item3{
    display: inline-block;
}
ul li{
    list-style: none ;
}
.a{
    font-size: 1.0rem;
    text-decoration: unset;
    text-transform: uppercase;
}
.a1{
    font-size: 1.0rem;
    text-decoration: unset;
}
.header a:link,
.header a:visited{
    color: "";
}
.header a:hover{
    border-bottom: 0.1em solid #f4f4f4;
    padding-bottom: 0.3em;
}
.header a:active{
    background-color: rgba(72, 163, 255, 0.3);
}
.header2 a:link,
.header2 a:visited{
    color: "";
}
.header2 a:hover{
    border-bottom: 0.1em solid #f4f4f4;
    padding-bottom: 0.3em;
}
.header2 a:active{
    background-color: rgba(72, 163, 255, 0.3);
}
p, li{
    font-size: 1.0rem;
    margin-bottom: 0.5em;
    letter-spacing: 0.15em;
}
h1, h2, h3{
    margin-bottom: 0.5em;
    font-weight: 500;
}
/* ############ HEADER CONTENT ############ */
.header-content h2{
    text-transform: uppercase;
    padding-top: 3em;
    margin-bottom: 1em;
    word-spacing: 0.2em;
}

.header-content p{
    text-transform: uppercase;
    margin-bottom: 1em;
    word-spacing: 0.2;
}
.header-content{
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
    background: linear-gradient(rgba(119, 71, 71, 0.5) rgba(0, 0, 0, 0.5));
}
/* ################ BUTTON ############### */
.btn{
    display: inline-block;
    padding: 0.5em 1.5em;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0.5em auto;
}
.btn-1{
    border-radius: 10em;
    background-color: #f4f4f4;
}
.btn-2{
    border: 1px solid #1c5c9c;
    border-radius: 10em;
    background-color: #f4f4f4;
}
/* ########## SECTION STYLING ########## */
.section{
    background-color: rgb(204, 204, 204);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}
.section h1{
    margin-top: 1em;
}
.article{
    height: 15rem;
    background-color: #f4f4f4;
    margin: 4em auto;
    box-shadow: 0px 0px 20px 10px #979797;
}
.article1 .img-box{
    float: left;
    height: 100%;
    width: 50%;
}
.article1 .txt-box{
    float: right;
    height: 100%;
    width: 50%;
    text-align: center;
    line-height: 2em;
}
.article2 .img-box{
    float: right;
    height: 100%;
    width: 50%;
}
.article2 .txt-box{
    float: left;
    height: 100%;
    width: 50%;
    text-align: center;
    line-height: 2em;
}
.article1 img{
    width: 100%;
    height: 100%;
}
.article2 img{
    width: 100%;
    height: 100%;
}
.txt-box h2{
    padding: 2em auto;
}
.article1::after{
    content: "";
    clear: both;
}
.article2::after{
    content: "";
    clear: both;
}
.article a:hover{
    text-decoration: underline;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-bottom: 0.5em;
}
.article a:active{
    background-color: rgba(72, 163, 255, 0.3);
}
/* ########### FEATURES STYLING ########## */
.features{
    padding: 5rem;
}
.box-wrapper{
    box-shadow: 5px 5px 20px 0px #707070;
}
.box-wrapper::after{
    content: "";
    display: block;
    clear: both;
}
.box{
    width: 33.33333333333%;
    float: left;
    padding: 2em;
    text-align: center;
    color: #e1ebf5;
}
.box h2{
    font-size: 2em;
}
.box-1,.box-3{
    background-color: #000000;
background-image: linear-gradient(147deg, #000000 0%, #434343 74%);;
}
.box-2{
    background-color: #000000;
background-image: linear-gradient(147deg, #000000 0%, #04619f 74%);

}
/* ################ FOOTER STYLING ################ */
.footer{
    text-align: center;
    padding: 5rem auto;
    background-color: #000000;
    background-image: linear-gradient(147deg, #000000 0%, #434343 74%);
}
.links{
    word-spacing: 3em;
    margin-top: 1rem;
    padding-top: 2rem;
}
.footer p{
    padding-bottom: 1.5rem;
    padding-top: 0.5rem;
    color: #e1ebf5;
}
.av{
    color: #e1ebf5;
}
/* ############# ABOUT STYLING ############# */ 
.afeature{
  text-align: center;
  margin-top: 1rem;
}
.afeature::after{
  content: "";
  display: block;
  clear: both;
}
.afeature p::before{
  content: "\2713";
  font-weight: bold;
  color: #2074fa;
  margin-right: 0.5em;
}
.afeature{
  text-align: center;
}
.aheading{
  font-weight: bold;
  color: #2074fa;
  border-bottom: 0.2rem solid #2074fa;
}
.left{
  float: left;
  width: 50%;
}
.right{
  float: right;
  width: 50%;
}
.acount{
  text-align: center;
  font-weight: bold;
}
.acount::after{
  content: "";
  display: block;
  clear: both;
}
.cnumber{
  color: #2074fa;
  font-size: 1em;
  margin-bottom: 0px;
  padding-bottom: 0px; 
}
.ctext{
  font-weight: bold;
  font-size: 1.5rem;
}
.count{
  float: left;
  width: 25%;
  display: inline;
  margin-bottom: 0px;
  padding-bottom: 0px; 
  margin-top: 0.5rem;
}
.bwrapper{
  background-color: #086eea; 
  text-align: center;
  color: white;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.bleft{
  float: left;
}
.bright{
  float: right;
}
.bwrapper::after{
  content: "";
  display: block;
  clear: both;
}
.b-button{
  border: 0.15em solid white;
  background-color: #086eea;
}
.bright{
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  margin-right: 0.25rem;
}
.bright a{
  text-decoration: none;
  color: white;
}
.bleft p{
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
/* ######### FORM STYLING ######## */
.contact{
  margin-top: 0rem;
  background-color: #e0e0e0;
  box-sizing: border-box;
}
.cwrap::after{
  content: "";
  display: block;
  clear: both;
}
.address{
  margin: 1rem;
  float: left;
  width: 45%;
  padding: 0.5rem;
  margin-top: 4rem;
  background-color: white;
  height: 120vh;
}
.form{
  margin: 1rem;
  margin-top: 4rem;
  padding: 0.5rem;
  float: right;
  width: 45%;
  background-color: white;
  height: 120vh;
}
.address-grp h2{
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 0px;
}
.address-grp i{
  display: inline-block;
  margin-right: 0.25em;
  margin-bottom: 0px;
}
.address-grp p{
  margin-bottom: 2rem;
}
.address img{
  width: 100%;
  height: 50%;
}
.form h1{
  border-bottom: 4px solid #2074fa;
}
label{
  display: inline-block;
  padding-bottom: 0.5em;
}
input,textarea{
  width: 95%;
  margin-bottom: 1.35rem;
  padding: 0.2rem;
  border: 2px solid #2074fa;
}
.txt-blue{
  color: #2074fa;
}
.txt-grey{
  color: #777777;
}
.form-btn{
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  display: block;
  margin: 0px auto;
  padding: 0.5rem;
  background-color: #2074fa;
  color: white;
  border: none;
  outline: none;
  cursor: pointer;
}
