/********** Template CSS **********/
:root {
    --primary: #F3B225;
    --secondary: #000;
    --light: white;
    --dark: #14141F;
}

/********** Control Tambahan Start **********/
ul li::marker {
    content: '☑️';
    color: var(--primary);
}

.fz-10{
    font-size: 10px;
}

.fz-12{
    font-size: 12px;
}

.fz-14{
    font-size: 14px;
}

.rad-top-10{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.rad-5{
    border-radius: 5px;
}

.rad-10{
    border-radius: 10px;
}

@media (max-width: 768px) {
    .fz-12{
        font-size: 12px;
    }
    
    .p-top{
        padding-right: 10px;
        padding-left: 10px;
    }
    table{
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    .p-top{
        padding-right: 3rem !important;
        padding-left: 3rem !important;
    }
}

.bg-green{
    background-color: green;
    color: white;
}

.bg-red{
    background-color: red;
    color: white;
}

.bg-utama{
    background-color: var(--primary);
}

.bg-kedua{
    background-color: var(--secondary);
}

.bg-putih-trans{
    background-color: rgba(255, 255, 255, .5);
}

.text-utama{
    color: var(--primary);
}

.text-kedua{
    color: var(--secondary);
}

.text-putih{
    color: var(--light);
}

.text-gelap{
    color: var(--dark);
}

blockquote {
    background: transparent;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary);
    /* margin-top: 30px; */
    /* margin-bottom: 30px; */
    padding: 30px 20px 20px 20px;
    text-align: center;
}

blockquote::before {
    /* content: "“"; */
    color: var(--custom-btn-bg-color);
    font-size: 100px;
    line-height: 1rem;
    display: block;
}

/*** Carousel Slider ***/
.carousel-home {
    height: 95vh;
    overflow: hidden;
}

.carousel-home .carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-home .carousel-inner .carousel-item {
    height: 100%;
    position: relative;
}

.carousel-home .carousel-inner .carousel-item .overlay {
    position: absolute;
    background-color: #000;
    top: 0;
    bottom: 0;
    width: 100%;
    opacity: 0.5;
    z-index: 1;
}

.carousel-home .carousel-inner .carousel-caption {
    position: absolute;
    right: 15%;
    top: 0;
    bottom: 0;
    left: 15%;
    display: flex;
    flex-direction: column;
    padding-top: 1.25rem;
    justify-content: center;
    text-align: center;
    padding-bottom: 1.25rem;
    color: #fff;
    z-index: 2;
}

.carousel-home .carousel-inner .carousel-caption .caption-content {
    /*background: rgba(0, 0, 0, 0.5);*/
    /*padding: 20px 40px;*/
    border-radius: 1rem;
    text-align: center;
}

.carousel-home
.carousel-inner
.carousel-item
.carousel-caption
.carousel-caption-title {
    position: relative;
    width: fit-content;
}

.carousel-home .carousel-inner .carousel-item .carousel-caption h3 {
    color: #fff;
    font-size: 40px;
    /*width: fit-content;*/
    margin: 0;
    position: relative;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}
@media (max-width: 768px) {
    .carousel-home .carousel-inner .carousel-item .carousel-caption h3 {
        font-size: 35px;
        text-align: center;
    }
}
.carousel-home .carousel-control-next {
    background-color: var(--primary);
    height: 100px;
    width: 50px;
    top: calc(50% - 50px);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.carousel-home .carousel-control-prev {
    background-color: var(--primary);
    height: 100px;
    width: 50px;
    top: calc(50% - 50px);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.carousel-home .carousel-control-next-icon,
.carousel-home .carousel-control-prev-icon {
    width: 1.25rem;
    height: 1.25rem;
}
.bg-zoom-anim img {
    animation: scale 30s linear infinite;
}

@keyframes scale {
    50% {
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }
}

/*** Button Custom ***/
.btn-custom {
	display: inline-block;
	padding: 10px;
	border-radius: 10rem;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
	z-index: 1;

	&:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: var(--primary);
		border-radius: 10rem;
		z-index: -2;
	}
	&:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0%;
		height: 100%;
		background-color: var(--secondary);
		transition: all .3s;
		border-radius: 10rem;
		z-index: -1;
	}
	&:hover {
		color: #fff;
		&:before {
			width: 100%;
		}
	}
}

.btn-custom2 {
	display: inline-block;
	padding: 10px;
	border-radius: 10rem;
	color: var(--primary);
    outline: 1px var(--primary) solid;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
	z-index: 1;

	&:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: transparent;
        color: var(--light);
		border-radius: 10rem;
		z-index: -2;
	}
	&:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0%;
		height: 100%;
		background-color: var(--primary);
		transition: all .3s;
		border-radius: 10rem;
		z-index: -1;
	}
	&:hover {
		color: #fff;
		&:before {
			width: 100%;
		}
	}
}

.btn-custom3 {
	display: inline-block;
	padding: 10px;
	border-radius: 10rem;
	color: var(--primary);
    outline: 1px var(--primary) solid;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 1px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
	z-index: 1;

	&:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: transparent;
        color: var(--light);
		border-radius: 10rem;
		z-index: -2;
	}
	&:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0%;
		height: 100%;
		background-color: var(--secondary);
		transition: all .3s;
		border-radius: 10rem;
		z-index: -1;
	}
	&:hover {
		color: #fff;
        outline: 1px var(--secondary) solid;
		&:before {
			width: 100%;
		}
	}
}

@media (min-width: 992px) {
    .btn-customtab {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .btn-customtab {
        font-size: 10px;
    }
}

.btn-customtab {
	display: inline-block;
	padding: 10px;
	border-radius: 10rem;
	color: var(--primary);
    outline: 1px var(--primary) solid;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all .3s;
	position: relative;
	overflow: hidden;
	z-index: 1;

	&:after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: transparent;
        color: var(--light);
		border-radius: 10rem;
		z-index: -2;
	}
	&:before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0%;
		height: 100%;
		background-color: var(--primary);
		transition: all .3s;
		border-radius: 10rem;
		z-index: -1;
	}
	&:hover {
		color: #fff;
		&:before {
			width: 100%;
		}
	}
}

@media (min-width: 992px) {
    .wdt-50{
        width: 50% !important;
    }
    
    .wdt-25{
        width: 25% !important;
    }
}

/*** Sidebar ***/
.sidebar-box {
    margin-bottom: 30px;
    padding: 25px;
    font-size: 15px;
    width: 100%;
    /* border-radius: 10px; */
    position: sticky;
    top: 50px;
}

.sidebar-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.block-21 .blog-img {
    display: block;
    height: 80px;
    width: 80px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.block-21 .text {
    width: calc(100% - 100px);
}

.block-21 .text .heading {
    font-size: 18px;
    font-weight: 300;
}

.block-21 .text .heading a {
    color: #000000;
}

.block-21 .text .heading a:hover,
.block-21 .text .heading a:active,
.block-21 .text .heading a:focus {
    color: var(--primary);
}

.block-21 .text .meta > div {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px;
}

.block-21 .text .meta > div a {
    color: gray;
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--light) !important;
}

.gallery .gallery-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-img img {
    transition: 0.5s;
}

.gallery .gallery-img:hover img {
    transform: scale(1.3);
}

.gallery .gallery-img .gallery-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
    z-index: 1;
}

.gallery .gallery-img .search-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 2;
    
}

.gallery .gallery-img:hover .gallery-overlay,
.gallery .gallery-img:hover .search-icon {
    opacity: 1;
}

/*** Service ***/
@media only screen and (max-width: 767px) {
    .service-item {
        text-align:center;
        height:130px;
    }
}

@media only screen and (min-width: 1200px) {
    .service-item {
        height:130px;
    }
}

.service-item {
    padding:10px;
    background: white;
    transition: .5s;
}
.service-item p{
    color: #0F0F0F;
}

.service-item h5{
    color: #0F0F0F;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--color-primary);
}

.service-item:hover p{
    color: #0F0F0F;
}

.service-item:hover h5{
    color: #0F0F0F;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: #545454;
}

/*** Contact ***/
.contact-section .contact-info p a {
    color: #1a1a1a; 
}

.contact-section .box {
    width: 100%;
    display: block;
    background: rgba(0, 0, 0, 0.05);
}

.contact-section .box .icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    margin: 0 auto;
    margin-bottom: 15px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%; 
}

.contact-section .box .icon span {
    color: #fff;
    font-size: 30px; 
}
    
.contact-section .box h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.contact-section .contact-form {
    width: 100%; 
}
/********** Control Tambahan End **********/

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 24px;
    bottom: 24px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

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

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

@media (max-width: 768px) {
    .btn-sm-square {
        width: 25px;
        height: 25px;
    }
}

@media (min-width: 992px) {
    .btn-sm-square {
        width: 30px;
        height: 30px;
    }
}

.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: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Oswald', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 20px 0;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

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

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

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

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

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

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

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

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

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

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

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


/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../img/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

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


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    background: var(--light);
}

.service-item:hover {
    background: var(--secondary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (max-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 0px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
    
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

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

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    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: 15px;
    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;
}
/*=============================
	24. Detail Product
===============================*/
.slider-utama {
    border: 1px solid #eee;
    margin-bottom: 10px;
    padding: 5px;
    padding-bottom: 0;
}

.slider-utama .wrap-img {
    overflow: hidden;
    height: 450px;
    display: flex !important;
    align-items: center;
}

.slider-carousel .wrap-img {
    overflow: hidden;
    height: 170px;
    border: 2px solid #eee;
    margin-bottom: 10px;
    padding: 2px;
    padding-bottom: 0;
}

.slider-carousel .wrap-img img {
    width: 100%;
    height: 100%;
}

.slider-carousel .slick-slide {
    padding: 5px;
}

.slider-carousel .slick-current .wrap-img {
    border: 2px solid var(--color-main);
}

@media screen and (min-width: 768px) {
    .mobile-nav-toggle {
        display: none !important;
    }
}

@media screen and (min-width: 900px) and (max-width: 1500px) {
    .single-slider.slider-02 {
        height: 564px;
    }

    .slider-active .swiper-button-next {
        right: calc((100% - 1200px) / 2);
    }

    .slider-active .swiper-button-prev {
        left: calc((100% - 1200px) / 2);
    }
}

@media screen and (max-width: 768px) {
    .product-item .product-inner {
        height: 375px;
    }

    .hm2-feature-box .icon-wrapper {
        width: 80px;
        height: 70px;
        width: 20%;
    }

    .slider-section-02.pol {
        margin-top: 0;
    }

    #topbar .contact-info i a,
    #topbar .contact-info i span {
        font-size: 11px;
    }

    .about-us-content-4 {
        padding: 25px;
    }

    .navbar-mobile .dropdown ul {
        display: block;
    }

    .row .col-70 {
        width: 100% !important;
    }

    .row .col-30 {
        width: 100% !important;
    }

    .sidebar-wrap {
        margin-left: 0;
    }

    #header.fixed-top {
        z-index: 33333333 !important;
    }
}

.slick-next {
    right: 10px;
}

.slick-prev {
    left: 10px;
    z-index: 2;
}

.play-btn {
    width: 100px;
    height: 100px;
    background: radial-gradient(#dc3545e3 60%, rgba(255, 255, 255, 1) 62%);
    border-radius: 50%;
    position: relative;
    display: block;
    margin: 100px auto;
    box-shadow: 0px 0px 25px 3px #dc3545d1;
}

/* triangle */
.play-btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-40%) translateY(-50%);
    transform: translateX(-40%) translateY(-50%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #fff;
    z-index: 100;
    -webkit-transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* pulse wave */
.play-btn:before {
    content: "";
    position: absolute;
    width: 150%;
    height: 150%;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate1 2s;
    animation: pulsate1 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, .75);
    top: -30%;
    left: -30%;
    background: rgba(198, 16, 0, 0);
}

@-webkit-keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}

@keyframes pulsate1 {
    0% {
        -webkit-transform: scale(0.6);
        transform: scale(0.6);
        opacity: 1;
        box-shadow: inset 0px 0px 25px 3px rgba(255, 255, 255, 0.75), 0px 0px 25px 10px rgba(255, 255, 255, 0.75);
    }

    100% {
        -webkit-transform: scale(1, 1);
        transform: scale(1);
        opacity: 0;
        box-shadow: none;

    }
}
.img-border,
.img-border-sm {
    position: relative;
}
.image-play {
    position: relative;
}
.image-play .icon-wrap {
    z-index: 6;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 48%;
    width: 100px;
    height: 100px;
    top: 0;
}
.image-play .icon-wrap>span {
    font-size: 40px;
    color: #fff;
    position: absolute;
    -webkit-transform: translate(-35%, -50%);
    -ms-transform: translate(-35%, -50%);
    transform: translate(-35%, -50%);
    left: 50%;
}
.rounded{
    border-radius: 10px !important;
}
.image-play .icon-wrap {
    left: 45%;
    width: 100px;
    height: 100px;
    top: -32px;
}

@media(min-width:900px){
    .image-play .icon-wrap {
        left: 50%;
    }
}