@import url('https://fonts.googleapis.com/css2?family=Tiro+Bangla&display=swap');
body{
	font-family: 'Tiro Bangla', serif;
}
p{
  font-size: 20px;
}
.hello{
  height: 100vh;
  text-align: center;
}

::-webkit-scrollbar {
    display: none;
}
.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #444;
}

#main {
  position: fixed;
  transition: margin-left .5s;
  padding: 16px;
  top: 0;
  right: 0;
}
/*End Navbar*/

header{
	background-image: url('img/bg-web.png');
	background-repeat: no-repeat;
	background-position: center;
  background-size: cover;
}
header ul{
	margin: 0;
	padding: 0;
	outline: none;

}
header ul li{
	list-style: none;
	display: inline-block;
}
header ul li a{
	text-decoration: none;
	background: #fff;
	padding: 8px;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	border-radius: 5px;
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,.2);
}





/*Social Image css*/
ul.contactsocial {
    display: inline;
    margin: 0;
    padding: 0;
}
ul.contactsocial li {
    float: left;
}
.contactsocial ul li a{
  text-decoration: none;

}
.contactsocial img{
  width: 40px;
  height: auto;
}






/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidebar {padding-top: 15px;}
  .sidebar a {font-size: 18px;}
  ::-webkit-scrollbar {display: none;overflow: hidden;}
}
/*Scrolling down css*/
.scrolling {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.mouse {
  width: 50px;
  height: 90px;
  border: 3px solid #333;
  border-radius: 60px;
  position: relative;
  &::before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    border-radius: 50%;
    opacity: 1;
    animation: wheel 2s infinite;
    -webkit-animation: wheel 2s infinite;
  }
}

@keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}

@-webkit-keyframes wheel {
  to {
    opacity: 0;
    top: 60px;
  }
}