/*slide-index*/
.owl-theme .owl-nav [class*='owl-']{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--main-color);
    margin: 0;
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    border: 2px solid var(--main-color);
    cursor: pointer;
}
.owl-theme .owl-nav .owl-prev{
    left: 20px;
}
.owl-theme .owl-nav .owl-next{
    right: 20px;
}
.owl-theme .owl-nav [class*='owl-'] svg{
    fill: #Fff;
    width: 17px;
    height: 18px;
    margin-top: 7px;
}
.owl-theme .owl-nav [class*='owl-']:hover{
    background: #059669;
    border-color: #059669;
}
.owl-theme .owl-nav{
    margin: 0;
}
.slide-index .owl-dots{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.owl-carousel .owl-dots .owl-dot span{
    background: #ddd;
}
.owl-carousel .owl-dots .owl-dot.active span, 
.owl-carousel .owl-dots .owl-dot:hover span{
    background: var(--main-color);
}
@media(max-width: 767px){
    .owl-theme .owl-nav [class*='owl-']{
        display: none;
    }
    .slide-index.owl-carousel .owl-item img{
    	height: 300px;
    	object-fit: cover;
    }
}

.slide-st{
    position: relative;
}
.slide-fixgift{
    position: absolute;
    bottom: 20px;
    right: 25px;
    z-index: 100;
}
.slide-fixgift a {
    color: #fff;
    animation-name: pulse;
    animation-delay: 0s;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    font-size: 18px;
    position: relative;
    display: block;
    background: transparent;
}
.slide-fixgift a img{
    width: 250px;
}
.slide-fixgift a span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    text-align: center;
    width: 100%;
    font-size: 16px;
    text-shadow: 1px 1px 5px #000;
}
@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    100% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
/*End slide-index*/

/*st1*/
.st1-heading img{
	max-height: 160px;
	margin-bottom: 12px;
}
.st1-item-title{
	text-transform: uppercase;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.6;
}
.st1-item-title span{
	font-family: "UVF BankGothic Md BT", Sans-serif;
    font-size: 75px;
    font-weight: 400;
	padding-right: 22px;
}
.st1-item{
	padding-left: 30px;
	padding-right: 30px;
}
.st1-item-des{
	font-weight: 500;
	text-transform: uppercase;
}
@media(max-width: 1500px){
	.st1-item-title span{
		font-size: 42px;
		padding-right: 12px;
	}
	.st1-item-title{
		font-size: 14px;
	}
	.st1-item-des{
		font-size: 13px;
	}
}
@media(max-width: 1199px){
	.st1-item-title{
		flex-direction: column;
	}
	.st1-item-des{
		text-transform: initial;
	}
	.st1-item{
		padding-left: 15px;
		padding-right: 15px;
	}
}
@media(max-width: 991px){
	.st1-heading img{
		max-height: 120px;
	}
}
/*End st1*/



