/*
* Aflatonz - Bootstrap  Template
* Author: AflatonKinz
*/
/* ------------------------------------- */
/* TABLE OF CONTENTS
/* -------------------------------------
  1. IMPORT GOOGLE FONTS
  2. GENERAL
    -2.1 SECTION TITLE
    -2.2 BUTTONS
    -2.3 SOCIAL ICON
    -2.4 PRE LOADER
    -2.5 SCROLL TO UP
  3. HERO AREA 
  4. NAVBAR
  5. SERVICES SECTION
  6. FEATURES SECTION
  7. VIDEO PROMO SECTION
  8. PORTFOLIO SECTION
  9. PRICING TABLE 
  10. COUNTER SECTION
  11. TESTIMONIAL AREA
  12. TEAM SECTION
  13. BLOG SECTION
  14. CONTACT SECTION
  15. FOOTER SECTION
    -15.1 COMING SOON PAGE
  ------------------------------------- */
/* ==========================================================================
   1. IMPORT GOOGLE FONTS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;400;600;700&display=swap');
/* ==========================================================================
   2. GENERAL
   ========================================================================== */

.theme-light {
  --color-primary: #e0e5ec;;
  --color-secondary: #fbfbfe;
  --contrast-color:;
  --font-color: #4c4a4a;
  --font-color-2: #222222;
  --contrast-color:#009e66;
  --shadow-outer: 9px 9px 16px rgba(163, 177, 198, 0.6), -3px -3px 7px rgba(255, 255, 255, 0.7);
  --shadow-inner:inset 3px 3px 7px rgba(136, 165, 191, 0.48), inset -3px -3px 7px #FFFFFF;

}
 
 
.theme-dark {
  
  --color-primary: rgb(31, 39, 51);
  --color-secondary: #2b2b31;
  --font-color:  #d8e8f6;
  --font-color-2: #f6f6f6;
  --contrast-color:#009e66;
  --shadow-outer:  5px 5px 10px #171d26, -5px -5px 10px  #273140, inset 0px 0px 0px  #171d26, inset 0px 0px 0px  #273140;
;
  --shadow-inner:  0px 0px 0px  #171d26, 0px 0px 0px #273140, inset 5px 5px 10px  #171d26, inset -5px -5px 10px #273140;
 }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--font-color);
  font-size: 14px;
  font-weight: 400;
  margin: 0px;
  padding: 0px;
  background: var(--color-primary);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}


p {
  font-size: 18px;
  font-weight: 200;
  line-height: 1.5;
}

a:hover, a:focus {
  color:var(--contrast-color);
}

a {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

h1{
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

/*scrolbar*/
/*scroll bar*/
::-webkit-scrollbar {
  width: 5px;
  box-shadow: var(--shadow-outer);
  background: var(--color-primary);
}

/* Track */
::-webkit-scrollbar-track {
  
  border-radius: 25px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--contrast-color);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background:; 
}


/*Backround Animations*/
.effect{
          display: block;
          position: relative;
          z-index: -1;
          opacity: .15;
         }
         .effect-1{
          width: 200px;
          height: 200px;
          border-radius: 50%;
          border:20px solid var(--contrast-color);
          position: absolute;
          left: 10%;
          top: 30%;
          box-shadow: var(--shadow-outer);
            animation: leftBounce 3s ease-in-out infinite;

         }
         .effect-2{
          width: 50px;
          height: 50px;
          border: 10px solid  var(--contrast-color);
          position: absolute;
          right:10%;
          top:18%;
            animation: spin 8s linear infinite; 

         }
         .effect-3{
          width: 300px;
          height: 300px;
          border-radius: 58% 42% 24% 76% / 60% 30% 70% 40%;
          background-color:  var(--contrast-color);
          position: absolute;
          right: 10%;
          bottom:  15%;
            animation: topBounce 3s ease-in-out infinite;

         }
         .effect-4{
           
          width: 40px;
          height: 40px;
          border:  5px solid  var(--contrast-color);
         
          position: absolute;
          left: 10%;
          bottom:  10%;
            animation:  spin 8s linear infinite; 

         }

          .effect-5{
          width: 350px;
          height: 350px;
          border-radius: 58% 42% 24% 76% / 60% 30% 70% 40%;
          background-color:  var(--contrast-color);
          position: absolute;
          left: 8%;
          bottom:  20%;
            animation: morph 7s ease-in-out infinite;

         }


         @keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--contrast-color) 10%, var(--color-primary) 100%);
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    background: linear-gradient(45deg, var(--color-secondary) 10%, var(--contrast-color) 100%);
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--contrast-color) 10%, var(--contrast-color) 100%);
  }
}
         @keyframes spin{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}
@keyframes topBounce{
  0%,100%{
                transform: translateY(0);
  }
  50%{
    transform: translateY(30px);
  }
}
@keyframes leftBounce{
  0%,100%{
                transform: translateX(0);
  }
  50%{
    transform: translateX(50px);
  }
}


/* ==========================================================================
   4. Navbar Style
   ========================================================================== */
.navbar-brand img{
  position: relative;
  padding: 0px;
  height: 60px;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--contrast-color);
}

.top-nav-collapse {
  background:var(--color-primary);
  z-index: 999999;
  top: 0px !important;
  padding: 0;
  box-shadow: var(--shadow-outer);
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  background: var(--color-primary) !important;
}

.top-nav-collapse .navbar-brand {
  top: 0px;
  overflow: hidden;
  height: 60px;
}
.top-nav-collapse .navbar-brand img{
  width: 100%;
  height: 60px;
}

.top-nav-collapse .navbar-nav .nav-link {
  color: var(--font-color);
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.top-nav-collapse .navbar-nav .nav-link:hover {
  color: var(--contrast-color) !important;
}

.top-nav-collapse .navbar-nav .nav-link.active {
  color: var(--font-color) !important;
}

.indigo {
  background: transparent;
}

.navbar-expand-lg .navbar-nav .nav-link {
  color: var(--font-color);
  padding: 0 22px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 40px;
  border-radius: 30px;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar-expand-lg .navbar-nav li a:hover,
.navbar-expand-lg .navbar-nav li.active {
  color:var(--contrast-color)!important;
}

.navbar .nav-link.active {
  color: var(--contrast-colo)!important;
 
  box-shadow: var(--shadow-inner);
}

.dropdown-toggle::after {
  display: none;
}
.dropdown-item{
  color: var(--font-color);
  font-size: 18px;
}
.dropdown-item:hover{
  background: none;
  line-height: 1.5;
  box-shadow: var(--shadow-inner);
}

.dropdown-toggle span{
  font-size: 14px;
} 

.dropdown-menu{
  background:var(--color-primary);
  border: none;
  border-top: 2px solid var(--contrast-color);
  box-shadow: var(--shadow-outer);
}

.slicknav_btn {
  box-shadow: var(--shadow-outer);
  border: none;
}
.slicknav_btn:hover {
  box-shadow: var(--shadow-inner);
  border: none;
}

.slicknav_menu .slicknav_icon-bar {
  background: var(--contrast-color);
}

/* only small tablets */

.navbar-toggler {
  display: none;
}

.mobile-menu {
  display: none;
}

.slicknav_menu {
  display: none;
}

@media screen and (max-width: 990px) {
  .navbar-header {
    width: 100%;
    overflow: hidden;
    
  }
  .navbar-brand {
    position: absolute;
    padding: 15px;
    top: 0;
   
  }
  .navbar-brand img {
    width: 70%;
  }
  #mobile-menu {
    display: none;


  }
.dropdown-container{
  display: none;
}   
.sub-menu:hover .dropdown-container{
  display:block ;
}

.slicknav_menu ul{
  background: var(--color-primary); 
  box-shadow: var(--shadow-outer);
}
  .slicknav_menu {
    display: block;
    
  }

  .slicknav_menu a{
    color: var(--font-color);
  }
  .slicknav_nav .active a {
    background: var(--contrast-color);
    color: var(--font-color);
  }
  .slicknav_nav a:hover, .slicknav_nav .active {
    color: var(--contrast-color);
   box-shadow: var(--shadow-inner);

  }
  .slicknav_nav .dropdown li a.active {
    background: var(--color-color);
    color: var(--contrast-color);
  }
}

/*Dark light mode switch*/
.switch {
  position: absolute;
  top: 100px;
  right: 30px;
  display: inline-block;
  width: 40px;
  height: 40px;
  z-index: 100;
}


/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: ;
  box-shadow: var(--shadow-inner);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 40px;
  left: 0px;
  bottom: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: var(--shadow-outer);
  background: url('https://i.ibb.co/FxzBYR9/night.png');
  background-repeat: no-repeat;
  background-position: center;
}

input:checked + .slider {
  background-color: var(--color-primary);
}

input:focus + .slider {
  box-shadow:var(--shadow-inner);
}

input:checked + .slider:before {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  background:  url('https://i.ibb.co/7JfqXxB/sunny.png');
  background-repeat: no-repeat;
  background-position: center;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
/* ==========================================================================
   2.1 Section Title
   ========================================================================== */
.section {
  padding: 80px 0;
}

.section-header {
  color: var(--font-color);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.section-header .section-title {
  font-size: 48px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--font-color);
  position: relative;
}

.section-header .section-title:before {
  content: '';
  position: absolute;
  bottom: -8px;
  width: 80px;
  height: 2px;
  background: var(--contrast-color);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
}

.section-header span {
  
  text-transform: uppercase;
 
  z-index: -2;
  display: inline-block;
  position: absolute;
  word-spacing: ;
  letter-spacing: 5px;
  transform: translateY(-130px);
  left: 0;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 900;
  font-size: 100px;
  -webkit-text-stroke: 2px var(--contrast-color);
   text-stroke: 2px var(--contrast-color);
   -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
   color: transparent;
  opacity: 0.5;
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear; 

}
.section-header:hover span {
  transform: translateY(-150px);
}

/* ==========================================================================
   2.2 Buttons
   ========================================================================== */
.morph-btn {
  border-radius: 1rem;
  width: 50px;
  height: 50px;
  display: flex;
  outline: none;
  margin: 0 0.5rem;
  justify-content: center;
  align-items: center;
  color: rebeccapurple;
  box-shadow: var(--shadow-outer);
  transition: background 700ms ease, box-shadow 700ms ease!important;
}

.morph-btn:hover,
.morph-btn:focus {
  box-shadow: var(--shadow-inner);

  transition: box-shadow 700ms ease;
}

.morph-btn i {
  color: var(--font-color);
  cursor: pointer;
  font-size: 36px;
}
.morph-btn i:hover{
  color: var(--contrast-color);
}

.my-btn{
  color: var(--font-color);
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 16px;
  font-size: 16px;
  cursor: pointer;
  background: var(--color-primary);
  box-shadow: var(--shadow-outer);
}
.my-btn:hover{
  box-shadow: var(--shadow-inner);
  color: var(--contrast-color);
}

 
.hover1:hover {
  transform: translateY(-5%);
}
 

/* ========================================================================== 
  -2.5 Scroll To Up 
   ========================================================================== */
.back-to-top {
  display: none;
  position: fixed;
  bottom: 18px;
  right: 15px;
}

.back-to-top i {
  display: block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  border-radius: 4px;
  background-color:var(--contrast-color);
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

/* ==========================================================================
   3. Hero Area
 
  ========================================================================== */



.Homepage{
 
  min-height: 100vh;
  width: 100%;
  display: flex;
  padding: 0px;
  margin-bottom: 0px;
}
.Homepage .inner-page{
 box-shadow: var(--shadow-outer);

  height: 81vh;
  width: 100vw;
  margin: auto auto 2rem auto;
}
.Homepage .inner-page .text{
  height: 100%;
  display: block;
}
.home-img-container{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
 
}
.Home h1 {
  word-spacing: 2px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 2px;
  font-size: 60px;
}
.Home h1 span{
color: var(--contrast-color);
}
.Home h2{
 text-transform: uppe;
  font-size: 22px;
  font-weight: 500;
}

.Homepage .inner-page .home-text{
    font-size: 20px;
    line-height: 1.5;
    font-weight: 100;
    color: var(--font-color);
    opacity: .8;
}
.home-img-container div{
  
  padding: 15px;
  box-shadow:  var(--shadow-outer);
}

.home-img-container img{
  padding: 10px;
  box-shadow:var(--shadow-inner);
}
.social-icons{
  display: flex!important;
}





/* ==========================================================================
  5. Services section
   ========================================================================== */

.sevices {
  margin-bottom: 40px;
  padding: 2em;
  width: 100%;
 transition: all .3s ease;
  box-shadow: var(--shadow-outer); }
.sevices:hover {
    background: var(--contrast-color);
    color: #fff;
    transform: translateY(-10px); }
  .sevices .icon {
    display: block;
    margin-bottom: 30px; }
    .sevices .icon i {
      font-size: 60px;
      line-height: 1.0;
      color: var(--contrast-color); }
  .sevices .desc h3 {
    line-height: 1.3;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    color: var(--font-color); }
    .sevices .desc h3:after {
      position: absolute;
      bottom: -15px;
      left: 0;
      right: 0;
      content: '';
      width: 30px;
      height: 1px;
      background: #ffbd39;
      margin: 0 auto; }
    .sevices .desc h3 a {
      color: #fff; }
  .sevices .desc h4 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 18px; }
  .sevices .desc span {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
    color: #ffbd39; }
  
    .sevices:hover .icon i {
      color: #fff; }
    .sevices:hover h3 {
      color: #ffff; }
      .sevices:hover h3:after {
        background: #ffff; }


/* ==========================================================================
  5. Services section
   ========================================================================== */
/* Timeline */
.timeline {
  border-left: 2px solid var(--contrast-color);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  color: var(--font-color);
  box-shadow: var(--shadow-outer);
  
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.03em;
  padding: 50px;
  list-style: none;
  text-align: left;
  font-weight: 100;
  max-width
}

.timeline h1 {
  
  letter-spacing: 1.5px;
  font-weight: 400;
  font-size: 1.4em;
}
.timeline h2,
.timeline h3 {
  
  letter-spacing: 1.5px;
  font-weight: 400;
  font-size: 1.4em;
}
.timeline .event {
  border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
  padding-bottom: 2px;
  margin-bottom: 50px;
  position: relative;
}
.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}
.timeline .event:before {
  left: -217.5px;
  color:var(--color-primary);
  text-align: right;
  font-weight: 100;
  font-size: 0.9em;
  min-width: 120px;
  font-family: 'Saira', sans-serif;
}
.timeline .event:after {
  
  left: -50.85px;
  background: var(--contrast-color);
  border-radius:;
  height: 20px;
  width: 20px;
  content: "";
  top: 5px;
  transform: ;
  -webkit-clip-path:polygon(0% 0%, 64% 0, 100% 50%, 71% 100%, 0% 100%);
 clip-path: polygon(0% 0%, 64% 0, 100% 50%, 71% 100%, 0% 100%);
}
.progress-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.progress-bar {
    box-shadow: none;
    height: auto;
    border-radius: 0.55rem;
}

.progress {
    background: var(--color-primary);
    border: 0.0625rem solid var(--color-primary);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-inner);
}



.progress-lg {
    height: .8rem;
}

.progress-info {
    display: flex;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between;
    margin-bottom: .8rem;
}
.progress-info .progress-label span {
    display: inline-block;
    font-size: 0.5rem;
    color: var(--font-color);
    font-weight: 400;
}

.progress-info .progress-percentage {
    text-align: right;
    color: var(--font-color);
    background: ;
}

.progress-info .progress-percentage span {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
}

.info-xl .progress-label span,
.info-xl .progress-percentage span {
    font-size: 0.875rem;
}

.info-xl .progress-percentage {
    text-align: right;
}
.progress-bar{
  background: var(--contrast-color);
  height: .46rem;
  opacity: .8;
}

@keyframes animate-positive {
    0% {
        width: 0%;
    }
}


/* ==========================================================================
  6. Features Section Style
   ========================================================================== */
#features {

  color: var(--font-color);
  overflow: hidden;
  position: relative;
}

#features .section-title {
  color: var(--font-color);
}

#features .section-subtitle {
  color:  var(--font-color);
}

#features .icon {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  z-index: 1;
}

#features .box-item {
  padding: 15px 0;
  margin-bottom:20px;
  transition: all .3s ease;
}

#features .box-item:hover {
  box-shadow: var(--shadow-outer);
  padding-left: 10px;
}

#features .box-item .icon {
 box-shadow: var(--shadow-inner);
  text-align: center;
  float: left;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#features .box-item .icon i {
  color: var(--contrast-color);
  font-size: 24px;
  line-height: 60px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#features .box-item .text {
  padding-left: 80px;
}

#features .box-item .text h4 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 22px;
}

#features .box-item .text p {
  font-size: 14px;
  line-height: 26px;
}


#features .box-item:hover .icon i {
  color: var(--font-color);
}

#features .show-box img {
  position: absolute;
  bottom: -120px;
}



/* ==========================================================================
  8. Portfolio Section
   ========================================================================== */
#portfolios .mix {
  padding: 10px;
}

#portfolios .portfolio-item .shot-item {
  margin: 0px;
}

#portfolio .mix {
  display: none;
}

.controls {
  text-align: center;
  padding: 0px 0px 20px;
}

.controls .active {
  color: var(--contrast-color)!important;
  border-color: var(--contrast-color);
  box-shadow:  var(--shadow-inner)!important;
  background: transparent;
}

.controls .btn {
  color: var(--font-color);
  text-transform: uppercase;
  box-shadow: var(--shadow-outer);
  padding: 12px 32px;
  margin: 5px;
}

.controls:hover {
  cursor: pointer;
}

.portfolio-img {
  overflow: hidden;
  display: block;
  position: relative;

}

.portfolio-img img {
  width: 100%;
  
}

.shot-item {
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.shot-item img {
  width: 100%;
  
}

.shot-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
}

.shot-item:hover .overlay {
  opacity: 1;
}

.overlay .item-icon {
  height: 48px;
  width: 48px;
  line-height: 48px;
  color: #61D2B4;
  left: 50%;
  margin-left: -24px;
  margin-top: -24px;
  top: 50%;
  position: absolute;
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border: 1px solid #61D2B4;
  border-radius: 50%;
}

.overlay .item-icon:hover {
  background: #61D2B4;
  color: #fff;
}

.shot-item:hover .item-icon {
  visibility: visible;
  opacity: 1;
}

/* Hide every HTML inside .hover that would render outside*/
.hover {
  overflow: hidden;
}
/*Animate overlay and move it 'above'*/
.hover .overlay {
  transform: translate3d(-100%, 0, 0);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Mouse enter event */
.hover.mouseenter.top .overlay {
  animation-name: slide--enter-top;
}
.hover.mouseenter.right .overlay {
  animation-name: slide--enter-right;
}
.hover.mouseenter.bottom .overlay {
  animation-name: slide--enter-bottom;
}
.hover.mouseenter.left .overlay {
  animation-name: slide--enter-left;
}

/* Mouse leave event */
.hover.mouseleave.top .overlay {
  animation-name: slide--leave-top;
}
.hover.mouseleave.right .overlay {
  animation-name: slide--leave-right;
}
.hover.mouseleave.bottom .overlay {
  animation-name: slide--leave-bottom;
}
.hover.mouseleave.left .overlay {
  animation-name: slide--leave-left;
}

/* Sliding animations ! */
@keyframes slide--enter-top {
  0% { transform: translate3d(0, -100%, 0); }
  100% { transform: none; }
}
@keyframes slide--enter-right {
  0% { transform: translate3d(100%, 0, 0); }
  100% { transform: none; }
}
@keyframes slide--enter-bottom {
  0% { transform: translate3d(0, 100%, 0); }
  100% { transform: none; }
}
@keyframes slide--enter-left {
  0% { transform: translate3d(-100%, 0, 0); }
  100% { transform: none; }
}
@keyframes slide--leave-top {
  0% { transform: none; }
  100% { transform: translate3d(0, -100%, 0); }
}
@keyframes slide--leave-right {
  0% { transform: none; }
  100% { transform: translate3d(100%, 0, 0); }
}
@keyframes slide--leave-bottom {
  0% { transform: none; }
  100% { transform: translate3d(0, 100%, 0); }
}
@keyframes slide--leave-left {
  0% { transform: none; }
  100% { transform: translate3d(-100%, 0, 0); }
}
.hover {
  position: relative;
  display: flex;
  align-items: center;
  justify-items: center;
}

.content {
  flex: 1;
  text-align: center;
}

.overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  
  cursor: pointer;
  background-color:var(--contrast-color);
  opacity: .9;
  justify-content: center;
  text-align: center;
  z-index: ;

}
.overlay span {
margin-top: 25%;
font-size: 35px;
font-weight: bold;
opacity: 1!important;
color: black;
}


/* ==========================================================================
 10. Counter Section Style
 ========================================================================== */


.counters .facts-item {
  box-shadow: var(--shadow-outer);
  padding: 16px 0px;
  text-align: center;
  color:var(--font-color);
  border-radius: 5px;
  transition: all .5s ease;
}
.counters .facts-item:hover {
  transform: translateY(-10px);
}
.counters .facts-item .icon {
  margin-bottom: 30px;
}

.counters .facts-item .icon i {
  font-size: 50px;
  color: var(--contrast-color);
}

.counters .facts-item .fact-count h3 {
  font-size: 35px;
  color:var(--font-color);
  margin-bottom: 15px;
}

.counters .facts-item .fact-count h4 {
  font-size: 20px;
  font-weight: 400;
  color: var(--font-color);
}

/* ==========================================================================
11. Testimonial Section Style
 ========================================================================== */
#testimonial {
  overflow: hidden;
  position: relative;
}

.testimonial-item {
  text-align: center;
}

.testimonial-item img {
  width: 80px;
  border: 3px solid #fff;
  height: 80px;
  border-radius: 50%;
}

.testimonial-item .testimonial-text h3 {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-item .testimonial-text span {
  font-size: 14px;
  color: #999;
}

.testimonial-item .testimonial-text p {
  font-size: 14px;
  font-weight: 400;
  padding: 36px 10px 30px 10px;
  margin: 0;
  line-height: 30px;
}

.owl-theme .owl-controls .owl-page span {
  background: #61D2B4;
}

.owl-theme .owl-controls {
  margin-top: 20px;
}

/* ==========================================================================
  12. Team Section
   ========================================================================== */

.card {
  position: relative;
  width: 310px;
  height: 400px;
  margin: 2rem ;
  overflow: hidden;
  padding: 10px;
  box-shadow: var(--shadow-outer);
  border-radius: 15px;
  display: flex;
  background: transparent!important;
  justify-content: center;
  align-items: center;
  border: none;
}
.imgBx img{

 box-shadow: var(--shadow-outer);
}
  .card .content {
  position: absolute;
  bottom: -160px;
  width: 100%;
  height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  flex-direction: column;
 background: var(--color-primary);
  box-shadow:var(--shadow-outer);
 
  border-radius: 15px;
  transition: bottom 0.5s;
  transition-delay: 0.65s;
}
  .card:hover .content {
  bottom: 0;
  transition-delay: 0s;
}
  .card .content .contentBx h3 {
  text-transform: uppercase;
  color:var(--font-color);
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin: 20px 0 15px;
  line-height: 1.1em;
  transition: 0.5s;
  transition-delay: 0.6s;
  opacity: 0;
  transform: translateY(-20px);
}
  .card:hover .content .contentBx h3 {
  opacity: 1;
  transform: translateY(0);
}
  .card .content .contentBx h3 span {
  font-size: 12px;
  font-weight: 300;
  text-transform: initial;
}
  .card .content .sci {
  position: relative;
  margin-top: 10px;
  bottom: 10px;
  display: flex;
}
  .card .content .sci li {
  list-style: none;
  margin: 0 10px;
  transform: translateY(40px);
  transition: 0.5s;
  opacity: 0;
  transition-delay: calc(0.2s * var(--i));
}

  .card:hover .content .sci li {
  transform: translateY(0);
  opacity: 1;
}
  .card .content .sci li a {
  color: var(--contrast-color);
  font-size: 24px;
  margin-top: 20px;
  padding: .5rem .8rem;
  border-radius: 50%;
  box-shadow: var(--shadow-inner);
}

.card .content .sci li a:hover {
  color: var(--contrast-color);
  font-size: 24px;
}
/* ==========================================================================
  Testimonials
  ========================================================================== */

.testimonial{
    text-align: center;
    padding: 85px 50px 45px 70px;
    margin: 70px 15px 35px;
  box-shadow: var(--shadow-outer);
    position: relative;
}
.testimonial:hover{
    box-shadow: var(--shadow-inner);
 
}
.testimonial .pic{
    width: 120px;
    height: 120px;
    padding: 10px;
    border-radius: 16px;
    box-shadow: var(--shadow-inner);
    margin: 0 auto;
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
}
.testimonial:hover .pic{
 box-shadow: var(--shadow-outer);
 }


.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .description{
    font-size: 15px;
    color: var(--font-color);
    opacity: .9;
    line-height: 27px;
    margin-bottom: 20px;
    position: relative;
}
.testimonial .description:before{
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 32px;
    color: var(--contrast-color);
    position: absolute;
    top: -15px;
    left: -35px;
}
.testimonial .testimonial-profile{
    position: relative;
    margin: 20px 0 10px 0;
}
.testimonial .testimonial-profile:after{
    content: "";
    width: 50px;
    height: 2px;
    background:var(--font-color);
    margin: 0 auto;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
}
.testimonial .title{
    display: inline-block;
    font-size: 18px;
    color: var(--font-color);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
}
.testimonial .post{
    display: inline-block;
    font-size: 15px;
    color: var(--font-color);
    opacity: .8;
    text-transform: capitalize;
}
.owl-theme .owl-controls{
    margin-top: 10px;
}
.owl-theme .owl-controls .owl-page span{
    background: #5e5f5f;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #77a9dd;
}
.owl-theme .owl-controls .owl-page.active span{
    width: 22px;
    height: 12px;
}



/* ==========================================================================
  14. Contact Us
  ========================================================================== */
.contact-us h3 {
  font-size: 36px;
  margin-bottom: 45px;
}

.contact-us p span {
  color: #61D2B4;
  padding-left: 10px;
}

#contact {
  color:var(--font-color);
  position: relative;
}
input,textarea{
  outline: none!important;

}
.form-control {
  width: 100%;
  margin-bottom: 26px;
  padding: 14px;
  box-shadow: var(--shadow-inner);
  border-radius: 10px;
   color:var(--font-color);
  background: var(--color-primary);
  font-size: 14px;
  border: none;
  outline: none!important;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.form-control:focus {
  box-shadow: none;

   color:var(--font-color);
  border:1px solid var(--contrast-color);
  font-size: 18px;
  background: var(--color-primary);
  outline: none;
}

.btn.disabled, .btn:disabled {
  opacity: 1;
}

.text-danger {
  font-size: 14px;
  margin-top: 10px;
}

.list-unstyled li {
  color:var(--contrast-color);
}

.contact-info {
  margin-bottom: 15px;
}

.contact-info i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact-info h5 {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 500;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 0;
}


#contact .contact-block {
  overflow: hidden;
}

.text-danger {
  font-size: 14px;
  margin-top: 10px;
}

.list-unstyled li {
  color: var(--contrast-color);
}


/* ==========================================================================
15. Footer Style
 ========================================================================== */
footer {
  background: var(--color-primary);
  box-shadow: var(--shadow-inner);
  padding: 20px 0;
  margin-top: 16px;
}

.footer-links {
  line-height: 48px;
}

.footer-links li {
  float: left;
}

.footer-links li a {
  color: var(--font-color);
  margin-right: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
}

.footer-links li a:hover {
  color: var(--contrast-color);
}

.copyright {
  margin-top: 10px;
  float: right;
}

.copyright p {
  color: var(--font-color);
  font-size: 16px;
}

.copyright p a {
  color: var(--contrast-color);
}

.copyright p a:hover {
  color: var(--font-color);
}
