@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  outline: none;
  list-style: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

body{
  background: #fdfdfd;
}

h2{
  font-size: 30px;
}

img{
  height: 110px;
  width: 110px;
  margin-left: 20px;
  margin-top: 20px;
}

.wrapper{
    margin-left: 10%;
    margin-right: 10%;
}

/* Nav bar */

nav{
  height: 130px;
  width: 100%;
  /*background: lightgrey;*/
}

nav ul{
  float: right;
  margin-right: 95px;
}

nav li{
  display: inline-block;
  margin: 0 30px;
  margin-top: 50px;
  /*line-height: 10px;*/
}

nav a{
  color: grey !important;
  font-size: 18px;
  border: 1px solid transparent;
  padding: 7px 10px;
  border-radius: 3px;
  text-decoration: none !important;
}

a.active,a:hover{
  border: 1px solid grey;
  color: grey !important;
  transition: 0.5s;
}

nav #menu{
  color: grey;
  font-size: 30px;
  line-height: 80px;
  float: right;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#logolink {
  border: none;
}

/* Footer */

.site-footer
{
  position: relative;
  width: 100%;
  bottom: 0;
  background-color:#f5f5f5;
  padding:20px 0 20px;
  font-size:13px;
  line-height: 23px;
  color:#3f3f3f;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#3f3f3f;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  border: none;
  color:#3366cc;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block;
}
.footer-links a
{
  color:#3366cc;
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block;
}

.copyright-text
{
  margin:0;
}

a:link
{
  color:#3366cc;
}

.left{
  display: inline-block;
  float: left;
  width: 50%;
}

.right{
  display: inline-block;
  float: right;
  width: 30%;
}

@media (max-width: 1048px){
  .wrapper{
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 10px;
  }
  nav{
    height: 80px;
  }
  nav li{
    margin: 0 30px;
    margin-top: 30px;
    /*line-height: 10px;*/
  }
  img{
    height: 70px;
    width: 70px;
    margin-left: 10px;
    margin-top: 10px;
  }
  nav ul{
    margin-right: 20px;
  }
  nav a{
    font-size: 15px;
  }
  .site-footer
  {
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
    background-color:#f5f5f5;
    padding:20px 0 20px;
    font-size:9px;
    line-height: 17px;
    color:#3f3f3f;
  }
  p{
      font-size: 12px;
  }
}

@media (max-width: 800px){
  .wrapper{
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 10px;
  }
  nav #menu{
    display: block;
  }
  nav ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #fdfdfd;
    top: 80px;
    left: -100%;
    text-align: center;
    z-index: 100;
  }
  nav li{
    display: block;
    margin: 0px 0;
    line-height: 90px;
  }
  nav a{
    font-size: 18px;
  }
  a.active,a:hover{
    border: none;
    color: #664AFF !important;
  }
  nav ul.show{
    left: 0;
  }
  .site-footer
  {
    width: 100%;
    bottom: 0;
    background-color:#f5f5f5;
    padding:20px 0 20px;
    font-size:9px;
    line-height: 17px;
    color:#3f3f3f;
  }
  p{
      font-size: 10px;
  }
}

#warning-message{
  padding-top: 50%;
  text-align: center;
}

#warning-message i{
  font-size: 40px;
}

@media only screen and (orientation:portrait){
    #wrapper { display:none; }
    footer { display:none; }
    #warning-message {display:block; }
}
@media only screen and (orientation:landscape){
    #warning-message { display:none; }
}

.footer_container{
  padding-left: 10%;
  padding-right: 10%;
}