.zoom-in-zoom-out {
  /*margin: 24px;*/
  /*width: 50px;*/
  /*height: 50px;*/
  /*background: green;*/
 animation: animationFade 1s linear;
}

@keyframes animationFade {
 
  
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  
  50% {
    transform: scale(1);
  }
  
  100% {
    opacity: 1;
    transform: scale(1);
  }
}



.zoom-in-zoom-out1 {
  /*margin: 24px;*/
  /*width: 50px;*/
  /*height: 50px;*/
  /*background: green;*/
  animation: zoom-in-zoom-out 1s ease;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
     transform: scale(1.5, 1.5);
  }
}
/*.image {*/
/*  opacity: 1;*/
/*  display: block;*/
/*  width: 100%;*/
/*  height: auto;*/
/*  transition: .5s ease;*/
/*  backface-visibility: hidden;*/
/*}*/

/*.stockimg:hover .image {*/
/*  opacity: 0.3;*/
/*}*/


.image {
    position:relative;
    /*width:400px;*/
    /*height:400px;*/
}
.image img {
    width:100%;
    vertical-align:top;
}
.image:after {
    content:'\A';
    position:absolute;
    width:100%; height:100%;
    top:0; left:0;
    background:rgba(0,0,0,0.6);
    opacity:0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}
.image:hover:after {
    opacity:1;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.stockimg:hover .middle {
  opacity: 1;
}


.sectionClass {
  padding: 20px 0px 50px 0px;
  position: relative;
  display: block;
}

.fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}


.sectiontitle {
  background-position: center;
  margin: 30px 0 0px;
  text-align: center;
  min-height: 20px;
}

.sectiontitle h2 {
  font-size: 30px;
  color: #222;
  margin-bottom: 0px;
  padding-right: 10px;
  padding-left: 10px;
}


.headerLine {
  width: 160px;
  height: 2px;
  display: inline-block;
  background: #101F2E;
}


.projectFactsWrap{
    display: flex;
  margin-top: 30px;
  flex-direction: row;
  flex-wrap: wrap;
}


#projectFacts .fullWidth{
  padding: 0;
}

.projectFactsWrap .item{
  width: 25%;
  height: 100%;
  padding: 50px 0px;
  text-align: center;
}

.projectFactsWrap .item:nth-child(1){
  background: rgb(16, 31, 46);
}

.projectFactsWrap .item:nth-child(2){
  background: rgb(18, 34, 51);
}

.projectFactsWrap .item:nth-child(3){
  background: rgb(21, 38, 56);
}

.projectFactsWrap .item:nth-child(4){
  background: rgb(23, 44, 66);
}

.projectFactsWrap .item p.number{
  font-size: 40px;
  padding: 0;
  font-weight: bold;
}

.projectFactsWrap .item p{
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin: 0;
  padding: 10px;
  font-family: 'Open Sans';
}


.projectFactsWrap .item span{
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 0 auto;
}


.projectFactsWrap .item i{
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}


.projectFactsWrap .item:hover i, .projectFactsWrap .item:hover p{
  color: white;
}

.projectFactsWrap .item:hover span{
  background: white;
}

@media (max-width: 786px){
  .projectFactsWrap .item {
     flex: 0 0 50%;
  }
}

/* AUTHOR LINK */


footer{
  z-index: 100;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  bottom: 0;
  left: 0;
}

footer p {
color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  opacity: 0;
  font-family: 'Open Sans';
  width: 100%;
    word-wrap: break-word;
  line-height: 25px;
  -webkit-transform: translateX(-200px);
  transform: translateX(-200px);
  margin: 0;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  transition: all 250ms ease;
}

footer .authorWindow a{
  color: white;
  text-decoration: none;
}

footer p strong {
    color: rgba(255, 255, 255, 0.9);
}

.about-me-img {
  width: 120px;
  height: 120px;
  left: 10px;
  /* bottom: 30px; */
  position: relative;
  border-radius: 100px;
}


.about-me-img img {
}


.authorWindow{
  width: 600px;
  background: #75439a;
  padding: 22px 20px 22px 20px;
  border-radius: 5px;
  overflow: hidden;
}

.authorWindowWrapper{
  display: none;
  left: 110px;
  top: 0;
  padding-left: 25px;
  position: absolute;
}





.trans{
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media screen and (max-width: 768px) {
    .authorWindow{
         width: 210px;
    }

    .authorWindowWrapper{
             bottom: -170px;
  margin-bottom: 20px;
    }

    footer p{
          font-size: 14px;
    }
}

.fadeinright{
animation: fadeInRight 1s ease-in-out;
}


@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(300px);
  }
  to {
    opacity: 1;
  }
}







.reveal{
  position: relative;
  transform: translateX(100px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active{
  transform: translateY(0);
  opacity: 1;
}




.reveal1{
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 1.5s all ease;
}

.reveal1.active{
  transform: translateY(0);
  opacity: 1;
}


.reveal2{
  position: relative;
  transform: translateX(-100px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal2.active{
  transform: translateY(0);
  opacity: 1;
}



.cbh-phone
{
    display: block;
    position: relative;
    right: 0px;
    /* bottom: -55px; */
    visibility: hidden;
    background-color: transparent;
    width: 200px;
    height: 200px;
    /* cursor: pointer; */
    z-index: 999;
    /* -webkit-backface-visibility: hidden; */
    /* -webkit-transform: translateZ(0); */
    /* -webkit-transition: visibility .5s; */
    -moz-transition: visibility .5s;
    -o-transition: visibility .5s;
    
}
   .dropbtn {
  /*background-color: #3498DB;*/
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropbtn:hover, .dropbtn:focus {
  /*background-color: #2980B9;*/
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {background-color: #ddd;}

.show {display: block;}
    
   
@keyframes circle{
  0%{
    transform:rotate(0deg)
              translate(-165px)
              rotate(0deg);
  
  }
  100%{
    transform:rotate(360deg)
              translate(-165px)
              rotate(-360deg);
  }
}




@keyframes animatedBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}


#animate-area {
  width: 62%;
        height: 243px;

  background-image: url(../../images/bg.png);
  background-position: 0px 0px;
  background-repeat: repeat-x;
  animation: animatedBackground 10s linear infinite alternate;
}


  @media only screen and (max-width:767px) {  
      #animate-area {
       width: 100%;
    height: 306px;
  background-image: url(../../images/bg.png);
  background-position: 0px 0px;
  background-repeat: repeat-x;
  animation: animatedBackground 10s linear infinite alternate;
      }
  }


.radius{
  width: 39px;
  height:39px;
  border-radius:100%;
  position:absolute;
  /*top:50%;*/
  /*left:50%;*/
  -webkit-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
}
.place{
  background:#35ea4b;
  z-index:2;
}
.radius .border-animation, .place{
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  border-radius:100%;
}
.radius .border-animation{
  z-index:1;
}
.ba1{
  animation: rounder1 2s linear 2s infinite alternate;
  background:rgb(63 238 68 / 60%);
}
@keyframes rounder1 {
  from {transform:scale(1);}
  to {transform:scale(1.39);}
}
.ba2{
  animation: rounder2 2s linear 2s infinite alternate;
  background:rgb(106 245 71 / 50%);
}
@keyframes rounder2 {
  from {transform:scale(1);}
  to {transform:scale(1.69);}
}
.ba3{
  animation: rounder3 2s linear 2s infinite alternate;
  background:rgb(125 245 63 / 44%);
}
@keyframes rounder3 {
  from {transform:scale(1);}
  to {transform:scale(1.99);} 
} 