@font-face {
font-family: 'Brandon Grotesque Black';
font-style: normal;
font-weight: normal;
src: local('Brandon Grotesque Black'), url('../fonts/brandon-grotesque-black-58a8a3e824392.woff') format('woff');
}

.innermenu #menuToggle{
    width:20% !important;
    float: right;
}
.innermenu #menu {
   margin: 0px 0 0 -125px;
    transform: translate(120%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
.innermenu #menuToggle {
    top: -10px;
}
.innermenu .navbar-brand img {
    margin-top: 0px; 
}
.innermenu .stickyM .navbar-brand img {
   content: url(../Images/hashtaglogo1.png);
   
        float: left;
    padding: 0;
}
.innermenu .navbar-brand>img {
       height: 10vh;
    float: left;
    width: auto;
}

.homemenu #menuToggle{
   width: 10% !important;
    float: right;
}
.homemenu #menu {
    transform: translate(300%, 0);
   
    transform: translate(120%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
.homemenu #menuToggle {
    top: -10px;
}
.abt_cont {
    text-align: right;
    color: #fff;
    padding-top: 10%;
    
}
.abt_cont h2 {
    font-weight: 800;
    padding-bottom: 35px;
    text-align: center;
    font-family:Brandon Grotesque Black;
    letter-spacing: 10px;
    font-size: 35px !important;
}

.abt_cont p {
    text-align: right;
    letter-spacing: 1px;
    font-weight: 400;
    font-size: 16px !important;
}
.abt_cont .p5{
    padding-bottom: 20px;
    line-height: 2;
}
.srvs_cont h2 {
    position: relative;
}
.services img {
    position: relative;
}

/* Icon Grow Rotate */
.hvr-icon-grow-rotate {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  
}
.hvr-icon-grow-rotate:hover {
    opacity: 1;
}
.hvr-icon-grow-rotate .hvr-icon {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin-bottom: 25px;

}
.hvr-icon-grow-rotate:hover .hvr-icon, .hvr-icon-grow-rotate:focus .hvr-icon, .hvr-icon-grow-rotate:active .hvr-icon { 
  -webkit-transform: scale(1.5);
  transform: scale(1.1);
}


.blur-filter {
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(2px);
}


.stickyM .navbar-brand img {
    filter: brightness(100%) invert(0);
}
.navbar-brand img {
    filter: brightness(100%) invert(0);
}




.animatable {

    /* initially hide animatable objects */
    visibility: hidden;

    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;   
    -moz-animation-play-state: paused;     
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;   
    animation-play-state: paused; 
}

/* show objects being animated */
.animated {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}

/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-20px);
	}	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeInDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-o-keyframes fadeInDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

.pulse,
.pulse-83,
.pulse-86,
.pulse-88,
.pulse-90,
.pulse-92 {
  animation: pulse 3s infinite;
  margin: 0 auto;
  display: table;
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}



@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
	opacity:0.5;
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
  opacity:0.5;
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}



.pulse1 {
  animation: pulse 4s infinite;
  margin: 0 auto;
  display: table;
  
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse1 {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
	opacity:0.6;
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse1 {
  0% {
    transform: scale(1);
  }
  50% {
  opacity:0.5;
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}


.pulse2 {
  animation: pulse 3s infinite;
  margin: 0 auto;
  display: table;
  
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
	opacity:0.7;
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse2 {
  0% {
    transform: scale(1);
  }
  50% {
  opacity:0.5;
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}



.pulse3 {
  animation: pulse 5s infinite;
  margin: 0 auto;
  display: table;
  
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse3 {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
	opacity:0.5;
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse3 {
  0% {
    transform: scale(1);
  }
  50% {
  opacity:0.5;
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}


.pulse4 {
  animation: pulse 3s infinite;
  margin: 0 auto;
  display: table;
  
  animation-direction: alternate;
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes pulse4 {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
	opacity:0.7;
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse4 {
  0% {
    transform: scale(1);
  }
  50% {
  opacity:0.5;
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}



/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(162, 161, 161, 0.9);
}

/* Modal Content (image) */

.modal-content {
    margin: auto;
    display: block;
    width: 100%;
    max-width: 800px;

}

/* Caption of Modal Image */
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

/* Add Animation */
.modal-content, #caption {  
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom {
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

/* The Close Button */
.close {
 position: absolute;
    top: 15px;
    right: 35px;
    color: #333;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    opacity: 1 !important;
    z-index: 20000;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

 
@media screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
  
  .abt_cont h3 {
       font-weight: 800 !important;
    padding-bottom: 20px !important;
    font-family: Brandon Grotesque Black !important;
    letter-spacing: 2px !important;
    letter-spacing: right !important;
    text-align: center;
    font-size: 18px;
      
  }
  
  .abt_cont .p5 {
    padding-bottom: 25px;
    line-height: 2;
    text-align: center;
    font-size: 16px !important;
}

p.p5 br {
    display: none;
}

.about_bg {
    background: url(../Images/about/aboutbgtop.jpg) no-repeat;
    background-size: cover;
    height: 100%;
}

    .values img {
     width: 9% !important;
    padding-bottom: 20px;
}
    
    .story_content p {
    font-weight: 400;
    font-size: 16px;
    text-align:center;
}

.story_content h2 {
    font-weight: 800;
    padding-bottom: 20px;
    font-size: 50px;
    font-family: 'Brandon Grotesque Black';
    text-align:center;
}

.about_team p {
    font-size: 16px !important;
  padding-bottom: 0px !important;
    padding-top: 0px !important;
    font-weight: 400 !important;
    line-height: 2;
}



}

@media only screen and (min-width: 700px){
.abt_cont h3 {
    font-weight: 800;
    padding-bottom: 20px;
    font-family: Brandon Grotesque Black;
        letter-spacing: 2px;
}
.about_bg {
    background: url(../Images/about/Untitled-5.gif) no-repeat;
    background-size: cover;
    height: 100%;
}

    .values img {
     width: 23% !important;
    padding-bottom: 20px;
}
    
 
   

    
    
}


    
    .blur {
      top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(3px);
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transition: .3s;
    opacity: 1;
}

.overlay2{
    width: 100%;
    height: 100%;
    display: block;
    background: rgba(0,0,0,0.1);
    position: fixed;
    z-index: 10000;
}
.footer {
    position:relative;
    /* color with alpha transparency */
    /* stretch to screen edges */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);
    filter: blur(5px);
}
.blur .homemenu{

} 
.blur header {
    filter:none !important
}






