.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner {
  display: flex;
}
.carousel-item {
  min-width: 100%;
  position: relative;
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
  cursor: pointer;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}
.carousel-control-prev {
  left: 0;
}
.carousel-control-next {
  right: 0;
}
.carousel-indicators {
  position: absolute;
  width: 100%;
  bottom: 30px;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 0;
}


.carousel-item img{
	max-width: none;
	height: 100%;
    min-width: 100%;
    width: 100%;
    object-fit: cover;
	-webkit-animation: upDown2 30s ease-out;
    animation: upDown2 30s ease-out;
    animation-iteration-count:infinite;
    animation-fill-mode:forwards;
}
.carousel-control{
	height: 40px;
    width: 40px;
    opacity: 1;
    border-radius: 100px;
    top: 50%;
    z-index: 5;
    /*display: none;*/
    transform: translateY(-50%);
    background: url(../images/carousel-right.svg) no-repeat center center/80% #008B8B !important;
}
.carousel-control:hover{
	opacity: 1;
    background: url(../images/carousel-right.svg) no-repeat center center/80% #00caca !important;
}
.carousel-control:focus{
	opacity: 1;
}
.carousel-control.carousel-control-next{
	right: 1%;
}
.carousel-control.carousel-control-prev{
	left: 1%;
	right: auto;
	transform: rotate(180deg) translateY(50%);
}
.carousel-inner>.carousel-item{
	height: 700px;
	min-height: 700px;
	overflow: hidden;
}
.carousel-inner>.carousel-item:before{
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(51, 51, 51, 0.37);
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 3;
}
.carousel-indicators button{
	width: 12px;
	height: 12px;
	border-radius: 50px;
	margin: 0px 4px;
	background: #fff;
	border: none;
	cursor: pointer;
}
.carousel-indicators .active{
	background: #008B8B;
	margin: 0px 4px;
	width: 12px;
	height: 12px;
	border-radius: 50px;
}
.bannertext{
	position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    padding: 0px 0% 0px 0%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    text-align: left;
    z-index: 4;
}
.bannertext .maincon{
	display: flex;
	justify-content: center;
}
.bannertext .text{
	width: 100%;
	max-width: 100%;
	display: inline-block;
	text-align: center;
}
.bannertext .banner-title{
	text-align: center;
	font-size: 48px;
	line-height: 1.3;
    color: #fff;
    margin: auto;
    margin-top: 60px;
    font-family: 'Roboto-Medium';
    width: 100%;
	opacity: 0;
	transform: translateY(-15px);
	-webkit-animation: upDown 0.5s ease-out;
    animation: upDown 0.5s ease-out;
    animation-iteration-count:1;
    animation-fill-mode:forwards;
    animation-delay: 0.5s;
    white-space: break-spaces;
}
.bannertext p{
	font-size: 22px;
	color: #fff;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 0px;
	white-space: normal;
	display: block;
	opacity: 0;
	transform: translateY(-15px);
	-webkit-animation: upDown .8s ease-out;
    animation: upDown .8s ease-out;
    animation-iteration-count:1;
    animation-fill-mode:forwards;
    animation-delay: 0.8s;
    text-align: center;
    position: relative;
    margin: auto;
    margin-top: 30px;
}
.bannertext .more {
		text-align: center;
		margin-top: 50px;
		opacity: 0;
		transform: translateY(-15px);
		-webkit-animation: upDown 1s ease-out;
		animation: upDown 1s ease-out;
		animation-iteration-count: 1;
		animation-fill-mode: forwards;
		animation-delay: 1.2s;
	}
	.bannertext .shop-btn {
		opacity: 0;
		transform: translateY(-15px);
		-webkit-animation: upDown 1s ease-out;
		animation: upDown 1s ease-out;
		animation-iteration-count: 1;
		animation-fill-mode: forwards;
		animation-delay: 1.2s;
	}
@-webkit-keyframes upDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}
@keyframes upDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes upDown2 {
    0% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}
@keyframes upDown2 {
    0% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}


@media screen and (max-width:1400px){


.bannertext .banner-title{
	font-size: 35px;
}
	
}

@media screen and (max-width:1200px){



.bannertext .banner-title{
	font-size: 30px;
}
.bannertext p{
	font-size: 18px;
}
	
}

@media screen and (max-width:1000px){


.bannertext .text {
    padding: 0px 30px;
}
.bannertext .banner-title{
	font-size: 26px;
}
.bannertext p{
	font-size: 16px;
}
	
}
