@import url('https://fonts.googleapis.com/css2?family=Jost&display=swap');
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Jost', sans-serif;
  font-weight: ;

/* font-family: 'Merriweather Sans', sans-serif; */
}
a{
  text-decoration: none;
}
iframe{
  display: block;
  margin: auto;
  margin-bottom: 30px;
}
.navbar{
  /* position: relative; */
  margin-bottom: 65px;
}
#menu_btn{
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 26px;
  transition: .3s;
  display: none;
}
#menu_btn:hover{
  color:rgb(255,120,61);
  transition: .3s;
  cursor: pointer;
}
nav{
  display: flex;
  position: fixed;
  top:0;
  width: 100%;
  align-items: center;
  z-index: 9;
  background: #fff;
  height: 65px;
  box-shadow: 0px 1px 5px 0px lightgray;
}
nav .logo{
  flex-basis: 20%;
  height: 40px;
  width: auto;
  display: flex;
  align-items: center;
  margin-left: 60px;
}
nav .logo img{
  height: 30px;
  width: auto;
  float: left;
  cursor: pointer;
}
nav ul{
  flex-basis: 80%;
  margin-left: auto;
  text-align: right;
  margin-right: 1%;
}
.ul_div{
  margin-right: 7%!important;
}
nav ul li{
  display: inline;
  padding: 8px 15px;
  transition: .3s;
}
nav ul li a{
  color: #000;
}
nav ul li a:hover{
  color: rgb(255,120,61);
  transition: .3s;
  cursor: pointer;
}
nav ul #nav_signup a{
  border: 1px solid rgb(255,120,61);
  background: rgb(255,120,61);
  border-radius: 50px;
  padding:10px 20px;
  color: #fff;
  margin-left: 10px;
  transition: .3s;
}
nav ul #nav_signup a:hover{
  color: rgb(255,120,61);
  background: #fff;
  transition: .3s;
}
nav ul #nav_login a{
  border: 1px solid rgb(255,120,61);
  border-radius: 50px;
  padding:10px 40px;
  color: rgb(255,120,61);
  transition: .3s;
  margin-right: 30px;
  cursor: pointer
}
nav ul #nav_login a:hover{
  transition: .3s;
  background: rgb(255,120,61);
  color: #fff;
  cursor: pointer;
}
.menu_toggle{
  display: flex;
  transform:translateY(18px);
  transition: .6s;
}
#profile{
  position: absolute;
  top: 12px;
  right:30px;
  height: 40px;
  width:40px;
  cursor: pointer;
}
#profile img{
  height: 100%;
  width:100%;
  border-radius: 50%;
}
.blur_back{
  position: fixed;
  top: 60px;
  display: none;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.5);
}
.profile_div{
  position: fixed;
  display: none;
  top:50%;
  left: 50%;
  min-width: 250px;
  height: auto;
  /* border:2px solid red; */
  transform:translate(-50% ,-50%);
  background: #fff;
  border-radius: 5px;
  z-index: 999;
  box-shadow: 0px 0px 5px 1px lightgray;

}
#pf_li{
  position: relative;
  display: inline-block;
}
#pf_li input{
  /* display: none; */
}
#pf_li label{
  position: absolute;
  bottom: 0px;
  right: 0px;
  border: 5px solid #eee;
  display: grid;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #eee;
  height: 36px;
  width: 36px;
  cursor: pointer;
  font-size: 20px;
}
.profile_div ul{
  list-style: none;
  padding: 20px;
  display: block;
  margin: auto;
  text-align: center;
}
.profile_div li {
  padding-top: 10px;
  font-weight: 700;

}
.profile_div ul li img{
  border-radius: 50px;
  height: 70px;
  width: 70px;
}
.profile_div ul li {
  border-radius: 50px;
}
.profile_div ul li a{
  color: #000;
  padding: 5px 10px;
  border: 1px solid red;
  border-radius: 6px;
  margin: 20px!important;
}

.profile_div ul li button:nth-child(2){
  padding: 5px 10px;
  border: 1px solid #f05954;
  border-radius: 4px;
  color: #fff;
  cursor:pointer;
  background: linear-gradient(to left,#f09d95,#f05954);
}
.profile_div ul li button:nth-child(1){
  padding: 5px 10px;
  border: 1px solid #6f81d9;
  border-radius: 4px;
  color: #fff;
  cursor:pointer;
  background: linear-gradient(to left,#848fd9,#6f81d9);
}
@media only screen and (max-width:940px){
  #menu_btn{
    display: block;
  }
  #profile{
    right: 80px;
  }
  nav ul{
    margin-right:;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    width:100%;
    text-align: center;
    margin-top: 60px;
    overflow: hidden;
    transform:translateY(-500px);
    box-shadow: 0px 2px 5px 1px solid gray;
    transition: all .6s;
    margin-top: 50px;
    padding-bottom: 50px;
  }
  nav ul li{
    margin-top: 10px;
  }

nav ul #nav_signup a{
  border: 1px solid rgb(255,120,61);
  border-radius: 50px;
  padding:8px 40px;
  color: #fff;
  margin-left: 0px;
  display: block;
  width: 200px;
  margin: auto;
  margin-top: 10px;
}
nav ul #nav_login a{
  border-radius: 50px;
  padding:8px 40px;
  margin-left: 0px;
  width:200px;
  margin: auto;
  /* margin-top: 20px; */
  margin-bottom: 50px;
}

}
@media only screen and (max-width:500px){

}
