﻿.animatable {
  
  /* initially hide animatable objects */
 
  /* 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;
}



.animated.animationDelay{
	animation-delay:.4s;
	-webkit-animation-delay:.4s;
}
.animated.animationDelayMed{
	animation-delay:1.2s;
	-webkit-animation-delay:1.2s;
}
.animated.animationDelayLong{
	animation-delay:1.6s;
	-webkit-animation-delay:1.6s;
}
.animated.fadeBgColor {
	-webkit-animation-name: fadeBgColor;
	-moz-animation-name: fadeBgColor;
	-o-animation-name: fadeBgColor;
	animation-name: fadeBgColor;
}
.animated.bounceIn {
	-webkit-animation-name: bounceIn;
	-moz-animation-name: bounceIn;
	-o-animation-name: bounceIn;
	animation-name: bounceIn;
}
.animated.bounceInRight {
	-webkit-animation-name: bounceInRight;
	-moz-animation-name: bounceInRight;
	-o-animation-name: bounceInRight;
	animation-name: bounceInRight;
}
.animated.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	-moz-animation-name: bounceInLeft;
	-o-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}
.animated.fadeIn {
	-webkit-animation-name: fadeIn;
	-moz-animation-name: fadeIn;
	-o-animation-name: fadeIn;
	animation-name: fadeIn;
}
.animated.fadeInDown {
	-webkit-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-o-animation-name: fadeInDown;
	animation-name: fadeInDown;
}
.animated.fadeInUp {
	-webkit-animation-name: fadeInUp;
	-moz-animation-name: fadeInUp;
	-o-animation-name: fadeInUp;
	animation-name: fadeInUp;
}
.animated.moveUp {
	-webkit-animation-name: moveUp;
	-moz-animation-name: moveUp;
	-o-animation-name: moveUp;
	animation-name: moveUp;
}
.boost {
    border: 3px solid #4b6355;
    background: #fff;
    border-radius: 20px;
}
.boost a:hover,.boost a:focus
{
    color:#fff !important;
    background:#2d355a;
    text-decoration:none;
}
.title 
{
    margin-bottom:20px;
    width:100%;
    float:left;
}
.title h3
{
    color:#2d355a;
 font-size:34px;   
 font-family: 'Anton', sans-serif;
}
.title.white h3
{
    color:#fff;
 font-size:34px;   
}
.why-exhibit 
{
    position:relative;
}
.why-exhibit .img img
{
 position:absolute;
 top:0;
 left:0;   
}
.why 
    {
        padding-right:50px;
            width: 100%;
    float: left;
    }
.why li
{
 position:relative;
 padding-left:25px;
 margin-bottom:10px;
 font-size:15px;
 text-align:justify;       
}
.why li:before
{
 content:'\f054';
 position:absolute;
 top:0;
 left:0;
 color:#ec691f;
 font-family:fontawesome;   
}
.why-exhibit a,
.why-exhibit a::after {
  -webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
  -o-transition: all 0.3s;
	transition: all 0.3s;
}

.why-exhibit a {
      background: #ec691f;
    border: 2px solid #fff;
    border-radius:5px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    margin: 1em auto;
    padding: 5px 15px;
    position: relative;
    /* text-transform: uppercase; */
}

.why-exhibit a::before,
.why-exhibit a::after {
  background: #fff;
  content: '';
  position: absolute;
  z-index: -1;
}

.why-exhibit a:hover {
  color: #ec691f;
}

/* BUTTON 1 */
.btn-1::after {
  height: 0;
  left: 0;
  top: 0;
  width: 100%;
}

.btn-1:hover:after {
  height: 100%;
}