*{
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}
body{
  font-family: 'Josefin Sans', sans-serif;
   background-color:#353836;
  }
nav{
  background: #0082e6;
  height: 80px;
  width: 100%;
}
label.logo{
  color: white;
  font-size: 35px;
  line-height: 80px;
  padding: 0 100px;
  font-weight: bold;
}
label.logo span{
  color: #000;
}
nav ul{
  float: right;
  margin-right: 20px;
}
nav ul li{
  display: inline-block;
  line-height: 80px;
  margin: 0 5px;
}
nav ul li a{
  color: white;
  font-size: 17px;
  padding: 7px 13px;
  border-radius: 3px;
  font-weight: bold;
  text-transform: uppercase;
}
a.active,a:hover{
  background: #000;
  transition: .5s;
}
.checkbtn{
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}
#check{
  display: none;
}
section{
  overflow-y: hidden;
}
.hompage_text h2{
  text-align: center;
  color: white;
  font-size: 38px;
  margin-top: 176px;
}
.hompage_text h1{
  text-align: center;
  color: white;
  font-size: 28px;
  margin-top: 20px;
  }
  .hompage_text h1 span{
    color: greenyellow;
  }
.footer_content .text{
  color: #ccc;
  text-align: center;
}
.footer_content{
  padding-top: 30px;
  width: 100%;
}
.footer_icon{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 170px;
  color: #fff;
  padding: 20px;
  font-size: 30px;
  border: 2px;
  border-radius: 20px;

}
.footer_icon i{
  margin-right: 10px;
  padding: 5px;
}
.bx.bxl-facebook-square:hover{
  border: 5px solid #3b5998;
  box-shadow: 0 0 15px #3b5998;
  transition: all 0.5s ease;
  border-radius: 20px;
  cursor: pointer;
}

.bx.bxl-instagram:hover{
  border: 5px solid red;
  box-shadow: 0 0 15px red;
  transition: all 0.5s ease;
  border-radius: 20px;
  cursor: pointer;
}
.bx.bxl-twitter:hover{
  border: 5px solid #00aced;
  box-shadow: 0 0 15px #00aced;
  transition: all 0.5s ease;
  border-radius: 20px;
  cursor: pointer;
}
svg {
  min-height: fit-content;
}

@media (max-width: 1200px){
  .footer_icon{
    margin-top: 50px;
  }
  .hompage_text h1{
   font-size: 28px;
    }
}

@media (max-width: 1000px){
  .footer_icon{
    margin-top: 50px;
  }
}
@media (max-width: 952px){
  label.logo{
    font-size: 30px;
    padding-left: 50px;
  }
  nav ul li a{
    font-size: 16px;
  }
  .footer_icon{
    margin-top: 50px;
  }
}
@media (max-width: 858px){
  .checkbtn{
    display: block;
  }
  ul{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }
  nav ul li{
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }
  nav ul li a{
    font-size: 20px;
  }
  a:hover,a.active{
    background: none;
    color: #0082e6;
  }
  #check:checked ~ ul{
    left: 0;
  }
  .footer_icon{
    margin-top: 50px;
  }
}
@media (max-width: 605px){
  .hompage_text{
    margin-top: 76px;
    font-size: 16px;
  }
  .hompage_text h1{
    font-size: 16px;
  }
  .footer_icon{
    margin-top: 50px;
  } 
}
@media (max-width: 348px){
  label.logo{
    font-size: 25px;
    padding: 0px 30px;
    display: block;
  }
  .checkbtn{
    font-size: 25px;
    margin-right: 30px;
    display: block;
  }
  .hompage_text{
    margin-top: 76px;
  }
  .hompage_text h2{
    font-size: 25px;
  }
  .footer_icon{
    margin-top: 50px;
  }
}
