.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;
}
@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: 0;
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: 0;
}


.carousel-item img.bg-pic{
	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-indicators{
	/*display: none;*/
	bottom: 40px;
}
.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% rgba(0,0,0,.5) !important;
}
.carousel-control:hover{
	opacity: 1;
    background: url(../images/carousel-right.svg) no-repeat center center/80% #e26455 !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: 100vh;
	min-height: 700px;
	overflow: hidden;
}
.carousel-inner>.carousel-item.item-style1:before{
	content: '';
	width: 100%;
	height: 100%;
	background: rgba(42, 130, 216, 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;
}
.carousel-indicators .active{
	background: #e26455;
	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: flex-start;
    z-index: 5;
    text-align: left;
    z-index: 4;
}
.bannertext .maincon{
	display: flex;
	justify-content: flex-start;
}
.bannertext .text{
	width: 700px;
	max-width: 100%;
	display: inline-block;
	text-align: left;
}
.bannertext .text .text-btn{
	display: flex;
	column-gap: 20px;
	flex-wrap: wrap;
}
.bannertext .banner-title{
	font-size: 50px;
	line-height: 1.1;
	font-family: MinionPro-Disp;
	color: #fff;
	margin-bottom: 30px;
    width: 100%;
    margin-top: 80px;
	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: 18px;
    line-height: 1.5;
    letter-spacing: 0.4px;
    color: #fff;
    opacity: 1;
	margin-bottom: 35px;
	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: left;
    position: relative;
    margin: auto;
    margin-top: 30px;
}
.learnmore{
	display: inline-block;
    padding: 12px 30px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 0px;
    font-size: 16px;
	position: relative;
    transition: 400ms;
    display: inline-flex;
    justify-content: center;
    line-height: 20px;
    align-items: center;
    transition: all .3s;
    text-transform: uppercase;
}
.learnmore:hover{
	color: #000;
	border: 2px solid #fff;
	background: #fff;
}
.bannertext .learnmore{
	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: 0.8s;
    margin-top: 50px;
}
@-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;
	margin-bottom: 20px;
}
.bannertext p{
	font-size: 18px;
	margin-bottom: 0px;
}
.bannertext .learnmore{
	margin-top: 20px;
}
	
}

@media screen and (max-width:1000px){



.bannertext .banner-title{
	font-size: 26px;
}
.bannertext p{
	font-size: 16px;
}
	
}

@media screen and (max-width:800px){

.learnmore{
	font-size: 15px;
	padding: 10px 12px;
}
.bannertext .banner-title{
	font-size: 22px;
}
}