/********** Template CSS **********/
/*@import './hover.css';*/

.border-white-left{
    border-bottom:1px dashed #fff;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 800 !important;
}

:root {
    --primary: #00B98E;
    --light: #F3F6F8;
    --dark: #333;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    box-shadow: 0px 0px 3px 2px rgba(0,0,0,0.2);
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #FFFFFF;
}

.sticky-top.navbar .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.sticky-top.navbar .navbar-nav .nav-link:hover,
.sticky-top.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar {
        position: relative;
        background: #FFFFFF;
    }

    .navbar .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark);
    }

    .navbar .navbar-nav .nav-link:hover,
    .navbar .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .2);
        z-index: 999;
    }
    
    .sticky-top.navbar {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        bottom: 10px;
        left: 0;
        background: #FFFFFF;
        opacity: 0;
        transition: .5s;
    }

    .sticky-top.navbar .navbar-nav .nav-link::before {
        background: var(--primary);
    }

    .navbar .navbar-nav .nav-link:hover::before,
    .navbar .navbar-nav .nav-link.active::before {
        bottom: -1px;
        left: 0;
        opacity: 1;
    }

    .navbar .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Hero Header ***/

@-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
  }

.main-banner{
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
  
@media (max-width: 991px) {
    .main-banner {
      -webkit-animation: none;
      animation: none;
    }
  }
  
.hero-header {
    position: relative;
    margin-bottom: 6rem;
    padding: 7rem 35px 8rem 35px;
    background: #00B98E;
    /*background: url(../img/shape-bottom.png) center bottom no-repeat;*/
}
.hero-header::before{
        width: 100%;
        height: 126px;
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        background: url(../img/bottom.png) center bottom no-repeat;
    
    
}
.page-header {
    margin-bottom: 6rem;
    padding: 12rem 0 6rem 0;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }

    .page-header {
        padding: 6rem 0;
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(256, 256, 256, .5);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    box-shadow: none;
    border-color: var(--primary);
}

.service-item .service-icon,
.service-item .service-btn {
    margin: -1px 0 0 -1px;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 5px 0;
    transition: .5s;
}

.service-item .service-btn {
    margin: -1px -1px 0 0;
    border-radius: 0 5px;
    opacity: 0;
}

.service-item:hover .service-btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 30px;
    text-align: center;
    transition: .5s;
    z-index: 1;
}

.team-item::before,
.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 40%;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: -1;
}

.team-item::after {
    top: auto;
    bottom: 0;
}

.team-item:hover::before,
.team-item:hover::after {
    background: var(--primary);
}

.team-item h5,
.team-item p {
    transition: .5s;
}

.team-item:hover h5,
.team-item:hover p {
    color: #FFFFFF;
}

.team-item img {
    padding: 15px;
    border: 1px solid var(--primary);
}


/*** Footer ***/
.footer{
    position: relative !important;
    margin-bottom: 70px;
}


/*.footer::before{
    width: 100%;
    height: 321px;
    content: '';
    position: absolute;
    left: 0;
    bottom: 100%;
    background: url(../img/footer-top.png) center top no-repeat;
}*/

@keyframes animatedBackground {
    0% { background-position: center 70px; }
    50% { background-position: center top; }
}

.footer::after{
    width: 100%;
    height: 132px;
    content: '';
    position: absolute;
    left: 0;
    bottom:-66px;
    padding: 0;
    margin: 0;
    z-index: 0;
    background: url(../img/foot-bot.png) center bottom no-repeat;
    /*-animation: animatedBackground 0.6s linear;
    moz-animation: animatedBackground 0.6s linear;
    -webkit-animation: animatedBackground 0.6s linear;
    -ms-animation: animatedBackground 0.6s linear;
    -o-animation: animatedBackground 0.6s linear;*/

    /*-webkit-animation: heartbeat 10.5s infinite;
    animation: heartbeat 10.5s infinite;*/
  

}

  .footer::after :hover{


    -webkit-animation: heartbeat 15.5s infinite;
    animation: heartbeat 15.5s infinite;
  

    /*-webkit-animation-name: bounce;
    -webkit-animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-name: bounce;
    -moz-animation-duration: 1s;
    -moz-animation-fill-mode: both;
    -ms-animation-name: bounce;
    -ms-animation-duration: 1s;
    -ms-animation-fill-mode: both;
    -o-animation-name: bounce;
    -o-animation-duration: 1s;
    -o-animation-fill-mode: both;
    animation-name: bounce;
    animation-duration: 1s;
    animation-fill-mode: both;*/
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* SELF BEGINS */
.home-about{
    position: relative;
    background-color: #00B98E;
    margin-top: -4rem !important;
}
.home-about::before{
    width: 100%;
    height: 127px;
    content: '';
    position: absolute;
    left: 0;
    bottom: 100%;
    border-bottom: 2px solid #00B98E;
    background: url(../img/top.png) center top no-repeat;
}

.common-banner-header{
    position: relative;
}
.common-banner-header::before{
    width: 100%;
    height: 127px;
    content: '';
    position: absolute;
    left: 0;
    top: 99%;
    border-top: 2px solid #00B98E;
    background: url(../img/bottom-rev.png) center top no-repeat;

}

.banner-text-scroll{
    width: 100% !important;
}
.inline-text-scroll{
    width: 100%;

}

.banner-text-scroll h4{
    width: 100%;
    text-align: auto;
}
body,html{
    background: #fff;
}

#home-banner-background-effect{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0 !important;
}

img.skills-image {
    width: 120px;
    height: 120px;
    background: #fff;
    border: 1px solid #00B98E !important;
    opacity: 0.7;
    -webkit-filter: grayscale(100%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);

}

img.skills-image:hover {
    opacity: 1;
    -webkit-filter: grayscale(0%);
    /* Safari 6.0 - 9.0 */
    filter: grayscale(0%);
    border: 1px solid #00B98E !important;

}

label.error{
    color:red;
}

/* popup begins */
.popup {
    position: fixed;
    z-index: 99; 
    top: 50%; 
    left: 50%;
    width: 50vw; 
    height: auto; 
    background: #fff;
    border-radius: 5px;
    -moz-box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
    -webkit-box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
    box-shadow: 0px 2px 5px rgba(0,0,0,0.5);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.top {
    -moz-transition:top 800ms;
    -o-transition:top 800ms;
    -webkit-transition:top 800ms;
    transition:top 800ms;
}

.right {
    -moz-transition:right 1800ms;
    -o-transition:right 1800ms;
    -webkit-transition:right 1800ms;
    transition:right 1800ms;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    -o-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

.bottom {
    -moz-transition:bottom 800ms;
    -o-transition:bottom 800ms;
    -webkit-transition:bottom 800ms;
    transition:bottom 800ms;
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
    -o-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

.left {
    -moz-transition:left 1800ms;
    -o-transition:left 1800ms;
    -webkit-transition:left 1800ms;
    transition:left 1800ms;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.p_body {
    position:fixed; 
    top:0; 
    left:0; 
    width:100%; 
    height:100%;
    background:#000; 
    opacity:0.7;
    -moz-transition:opacity 800ms;
    -o-transition:opacity 800ms;
    -webkit-transition:opacity 800ms;
    transition:opacity 800ms;
}

.popup__header {
    padding: 10px 20px; 
}

.p_content { 
    width: 100%; 
    background: #eee;
    text-align: justify; 
    font-size: 14px; 
    padding: 20px; 
}

.popup__footer {
    padding: 10px 20px;  
    text-align: center;
}

.p_close { 
    position: absolute; 
    top: 4px; 
    right: 16px; 
    width: 16px; 
    height: 12px; 
    padding: 15px 11px 0 0; 
}

.p_close span { 
    display: block; 
    width: 18px; 
    height: 5px; 
    background: #333; 
}

.p_close span:first-child {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.p_close span:last-child {
    margin: -5px 0 0;
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.js__slide_top { 
    height:0; 
    overflow:hidden;
    top: 0; 
    right:0;
    bottom: 0;
    left: 0;
}

.js__fadeout { 
    height:0; 
    overflow:hidden; 
    opacity:0; 
}

@media screen and (max-width : 768px) {
    .popup {
        width: 100%;
        height: 100vh;
    }

    .js__slide_top { 
        height:0; 
        overflow:hidden;
        top: 0; 
        right:0;
        bottom: 0;
        left: 0;
    }
}

/* popup ends */


@keyframes heartbeat
{
  0%
  {
    transform: scale( .75 );
  }
  20%
  {
    transform: scale( 1 );
  }
  40%
  {
    transform: scale( .75 );
  }
  60%
  {
    transform: scale( 1 );
  }
  80%
  {
    transform: scale( .75 );
  }
  100%
  {
    transform: scale( .75 );
  }
}



.shadow{
    box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.3);
}