.burger {
  width: 50px;
  height: 50px;
  position: fixed;
  top: 10px;
  right: 10px;
  border-radius: 4px;
  z-index: 10;
  transition: 0.1s;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  border: 1px solid #333;
  display:none;
  cursor:pointer;
}
.burger span {
  position: relative;
  margin-top: 7px;
  margin-bottom: 7px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -12px;
  margin-top: -1.5px;
  transition: 0.1s;
}
.burger span, .burger span::before, .burger span::after {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #333;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  -moz-transition-property: background-color, -moz-transform;
  -o-transition-property: background-color, -o-transform;
  transition-property: background-color, transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.burger span::before, .burger span::after {
  position: absolute;
  content: "";
}
.burger span::before {
  top: -7px;
}
.burger span::after {
  top: 7px;
}
.burger.clicked span {
  transition: 0.1s;
}
.burger.clicked span {
  background-color: transparent;
}
.burger.clicked span::before {
  -webkit-transform: translateY(7px) rotate(45deg);
  -moz-transform: translateY(7px) rotate(45deg);
  -ms-transform: translateY(7px) rotate(45deg);
  -o-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.burger.clicked span::after {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  -moz-transform: translateY(-7px) rotate(-45deg);
  -ms-transform: translateY(-7px) rotate(-45deg);
  -o-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}
.burger.clicked span:before, .burger.clicked span:after {
  background-color: #333;
}

.fa {
width:25px;}


@font-face{
font-family: 'Source Sans Pro';
src: url(fonts/SourceSansProL.ttf);
}

	
.mobmenumainwindow{
    width: 89%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    overflow-y: auto;
    display: none;
    z-index: 3;
    background: #f1f1f1e3;
    backdrop-filter: blur(4px);

}
.mobmenuicon{
color: #93b881;
font-size: 16px;}
.headmobilemenuquik{
margin: 17px 20px;
} 
.headmobilemenuquiklink{
list-style-type: none;
margin:10px 10px;}

.headmobilemenuquiklink a, .headmobilemenuquiklink{
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-family: 'Source Sans Pro';
    font-weight: 700;}
.mob-menu-reg {
    text-decoration: none;
    line-height: 15px;
    height: 39px;
    vertical-align: middle;
    padding: 5px 12px;
    font-size: 14px;
    background-color: darkorange;
    color: #fff;
    margin: 25px 0px 21px 0;
    text-transform: uppercase;
    -webkit-appearance: none;
    border-radius: 5px;
    text-align: center;
    transition: 0.5s;
    box-shadow: 0 0 10px #777;
    width: 200px;
    margin-left: calc(50% - 100px);}
.headmobilemenuquikblock{
display:none;}
@media only screen and (max-width : 1000px),
only screen and (max-device-width : 1000px){
.burger {display:block;}
}