:root{
  --theme-royalblue: #002366;
  --theme-white: #ffffff;
  --theme-grey: #aaaaaa;
  --theme-light: #ACBBE8;
  --svg-royalblue: brightness(0) saturate(100%) invert(12%) sepia(30%) saturate(5572%) hue-rotate(209deg) brightness(96%) contrast(108%);
  --svg-white: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.overflow{
  height: fit-content;
  width: 100%;
  overflow: hidden;
  background-color: var(--theme-royalblue);
}
@font-face{
  font-family: arial;
  src: url(arial-black.ttf);
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html, body{
  background-color: #eee;
  font-family: open sans;
  height: 100%;
}
.overflow{
  height: fit-content;
  width: fit-content;
  overflow: hidden;
}


.nav-scroll{
  position: fixed;
  z-index: 1000;
  padding: 20px;
  width: 100%;
  background-color: var(--theme-white);
  display: flex;
  box-shadow: 0px 0px 4px var(--theme-grey);
  display: none;
  transition: all ease-in-out .5s;
}
.scroll-right{
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  transition: .5s;
}
.scroll-a{
  margin-right: 20px;
  text-decoration: none;
  color: var(--theme-royalblue);
  transition: .5s;
}


.uppernav{
  padding: 10px;
  background-color: var(--theme-royalblue);
  width: 100%;
}
.ic{
  margin-left: auto;
  margin-right: 0;
  display: flex;
  width: fit-content;
}
.icon-lists{
  padding: 7px;
  font-size: .7em;
  color: var(--theme-white);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.icon-lists:hover{
  color: #4169e1;
}
.upper-icon-size{
  height: 14px;
  width: 14px;
  margin-right: 10px;
  filter: var(--svg-white);
}
.main-nav-bar{
  background-color: var(--theme-white);
  width: 100%;
  padding: 20px;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.logo{
  height: 50px;
  width: 300px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.button-side{
  margin-left: auto;
  margin-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.upper-btn{
  background-color: var(--theme-royalblue);
  color: var(--theme-white);
  border: none;
  outline: none;
  padding: 10px 25px;
  cursor: pointer;
  font-family: open sans;
  font-weight: bolder;
  font-size: 1em;
  border-radius: 100px;
  transition: .3s;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.upper-btn:hover{
  background-color: #4169e1;
}
.anchor-links{
  padding: 0px 10px 20px 20px;
  background-color: var(--theme-white);
  width: 100%;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.anchor{
  text-decoration: none;
  color: var(--theme-royalblue);
  margin-right: 20px;
  display: flex;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.anchor:hover{
  color: #4169e1;
  font-size: 1em;
}
.menu, .scroll-menu{
  display: none;
}


@media(max-width: 768px){
  span{
    display: none;
  }
  .flex-nav-main{
    display: flex;
  }
  .upper-icon-size{
    height: 1.5em;
    width: 1.5em;
  }
  .button-side{
    display: none;
  }
  .logo{
    height: 30px;
    width: 100%;
  }
  .main-nav-bar{
    width: 70%;
  }
  .anchor-links{
    height: auto;
    width: 30%;
    background-color: var(--theme-white);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .anchor{
    margin-bottom: 20px;
    display: none;
  }
  .menu-icon{
    height: 15px;
    width: 30px;
    filter: var(--svg-royalblue);
  }
  .hd{
    display: none;
  }
  .phone-icon{
    display: flex;
    height: 15px;
    width: 30px;
    margin-top: 0;
    filter: var(--svg-royalblue);
  }
  .scroll-menu{
    display: flex;
  }
  .phone{
    height: 30px;
    width: 150px;
  }
}

.home{
  height: 500px;
  width: 100%;
  background-color: darkgrey;
  display: flex;
  align-items: center;
  justify-content: center;
}
.txt-home-box{
  width: fit-content;
}
.txt-home{
  text-align: center;
  color: var(--theme-royalblue);
  text-shadow: 0px 0px 10px var(--theme-grey);
  font-size: 1.3em;
  font-weight: bolder;
  letter-spacing: 1px;
}





.weather{
  display: block;
  padding: 10px;
  background-color: var(--theme-royalblue);
  display: flex;
}
.weather-list{
  color: var(--theme-white);
  font-size: 1em;
  margin: auto;
  text-transform: capitalize;
  display: flex;
  justify-content: center;
  align-items: center;
}
.weather-img{
  height: 50px;
  width: 60px;
  margin-right: 20px;
  margin-left: 20px;
}

@media(max-width: 768px){
  .home{
    overflow: hidden;
  }
  .txt-home-box{
    width: 90%;
    margin: auto;
  }
  .txt-home{
    font-size: .8em;
  }
  .weather{
    display: block;
  }
  .weather-list{
    font-size: .8em;
    display: block;
    margin-left: 5px;
    margin-bottom: 10px;
  }
}


.about{
  padding: 20px;
  background-color: var(--theme-royalblue);
  width: 100%;
  display: flex;
}
.about-left{
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  width: 48%;
}
.about-right{
  margin-left: 2%;
  width: 48%;
}
.about-img{
  height: 100%;
  width: 100%;
}
.divider{
  border-top: 1px solid var(--theme-white);
  height: 0;
  width: 50px;
}
.about-title{
  font-size: 2em;
  color: var(--theme-white);
  margin-top: 10px;
  margin-bottom: 20px;
}
.about-desc{
  text-align: justify;
  color: var(--theme-light);
}
.read{
  font-size: .8em;
  text-decoration: none;
  color: var(--theme-white);
  transition: .3s;
}
.arrow{
  visibility: hidden;
  transition: .3s;
  text-decoration: none;
}

.read:hover > .arrow{
  visibility: visible;
  padding-left: 20px;
}

@media(max-width: 768px){
  .about{
    display: block;
  }
  .about-img{
    height: 250px;
    width: 100%;
  }
  .about-left, .about-right{
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
}