.hero-section:after {
    height: 1200px;
    content: "";
    position: absolute;
    width: 2300px;
    border-radius: 666px;
    transform: rotate(331deg);
    top: -93%;
    left: -10%;
    z-index: -11;
    opacity: .1;
    background-repeat: no-repeat;
    background-image: url('../images/landingpage/banner.jpg');
    background-size: cover;
    background-position: center;
}

.button {
  padding: 20px 20px;
  box-shadow: 0 2px 5px 0 rgba(3,6,26,0.15);
  transition: .5s all ease-in-out;
  text-align: center;

}
.button:hover{
    animation: none;
    animation-play-state: paused;
}

.button-cta {
  animation: cta 4s 2s infinite;
}

@keyframes cta {
	5%,
	50% {
		transform: scale(1);
	}
	10% {
		transform: scale(0.9);
	}
	15% {
		transform: scale(1.15);
	}
	20% {
		transform: scale(1.15) rotate(-5deg);
	}
	25% {
		transform: scale(1.15) rotate(5deg);
	}
	30% {
		transform: scale(1.15) rotate(-3deg);
	}
	35% {
		transform: scale(1.15) rotate(2deg);
	}
	40% {
		transform: scale(1.15) rotate(0);
	}
}
.pt-button {
	width: auto;
	color: white;
	font-size: 16px;
	text-transform: uppercase;
	padding: 5px 20px;
	line-height: 2;
	vertical-align: middle;
	border: none;
	display: inline-block;
	-webkit-border-radius: 90px;
	-moz-border-radius: 90px;
	border-radius: 90px;
}

.pt-button-block {
	position: relative;
    height: 32px;
    overflow: hidden;
}

.pt-button .pt-button-block .pt-button-text {
	z-index: 9;
    font-weight: 500;
	position: relative;
    display: block;
    transform: translateY(0%);
    transition: all 0.3s ease-in-out;
}

.pt-button:hover .pt-button-block .pt-button-text {
	transform: translateY(-100%);
}

.pt-button:hover,
.pt-button:focus {
	color: white;
	background-position: right center;
}

.pt-button .pt-icon {
    font-size: 18px;
    line-height: 1;

}

.home-slider .hero-slider .slick-slide {
    height: 70vh;
    position: relative;
    z-index: 999;
    display: flex;
    align-items: center;

}

.home-slider .hero-slider .hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    opacity: 0.7;
    z-index: -1;
}

.slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    margin: auto;
    background-color: #35a753;
    border-radius: 50%;
    border: 2px solid #fff;
    cursor: pointer;
    outline: none;
    z-index: 2;
}

.slick-arrow.slick-prev {
    left: 20px;
}

.slick-arrow.slick-next {
    right: 20px;
}

.slick-arrow:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}
.slick-arrow.slick-prev:before {
    transform: rotate(-45deg) ;
}

.slick-arrow.slick-next:before {
    transform: rotate(135deg) ;
}

.experience-area{
    animation: exp-animation 8s linear infinite;
}

@keyframes exp-animation {
    0% {
        transform: translate3d(0,0,0)
    }

    50% {
        transform: translate3d(0,35px,0)
    }

    100% {
        transform: translate3d(0,0,0)
    }
}
.slider-progress span.active {
    width: 100%;
}


@keyframes slideInBottom {
    0% {
        transform: translateY(50px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

.hero-slider .animated-content {
    opacity: 0;
    transform: translateY(50px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

@media only screen and (max-width: 769px){
    .hero-section:after {
        height: 1200px;
        content: "";
        position: absolute;
        width: 2000px;
        left: -20%;

    }
}

@media only screen and (max-width: 577px) {
    .slick-arrow {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 25px;
        height: 25px;
        margin: auto;
        background-color: #35a753;
        border-radius: 50%;
        border: 2px solid #fff;
        cursor: pointer;
        outline: none;
        z-index: 2;
    }

    .slick-arrow:before {
        content: '';
        width: 6px;
        height: 6px;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 0;

    }

    .slick-arrow.slick-prev {
        left: 5px;
    }

    .slick-arrow.slick-next {
        right: 5px;
    }
    .hero-section:after {
        height: 1520px;
        content: "";
        left: -45%;

    }

}
