.sec-hmbanner {
    position: relative;
}
main ul.js-hmbanner {
    margin-left: 0;
    list-style-type: none;
	 height:800px;
 overflow:hidden;
}
main ul.js-hmbanner.slick-dotted
{
	margin-bottom:0;
}
main ul.js-hmbanner .slick-slide > div {
  display: flex;
  flex-wrap: wrap;
}
main ul.js-hmbanner li img.ban-desk {
    width: 100%;
	  display:block;
	  height:800px;
	  object-fit:cover;
	  object-position:center center;
}
main ul.js-hmbanner li img.ban-mob
{
	display:none;
}
main ul.js-hmbanner li {
 margin-bottom: 0;
}
main ul.js-hmbanner>li:not(:nth-child(-n+1)){
	display:none;
}

.sec-hmbanner .ol-hmbanner {
    position:absolute;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:100%;
    z-index:0;
    display:flex;
    flex-wrap:wrap;
    align-items:flex-end;
    justify-content: flex-start;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.sec-hmbanner .ol-hmbanner:before{
			position:absolute;
			content:"";
			width:100%;
			height:100%;
			top:0;
			left:0;
			background-color: transparent;
			background-image: linear-gradient(300deg, #242424 45%, var(--primary) 41%);
			opacity: 0.8;
}
.ol-hmbanner .container{
	width:100%;
}
.olhmban-wrap {
			 display:flex;
    flex-wrap:wrap;
    width: 100%;
    flex-direction:column;
    align-items:flex-start;
	   justify-content:flex-start;
		  text-align:left;
	   max-width:630px;
	   margin:0;
	padding-bottom:145px;
}
.olhmban-wrap .olhmban-title
{
	   font-family:var(--font-theme-family);
    font-size: 48px;
    font-weight:var(--font-weightsemibold);
    text-transform: uppercase;
	   color:var(--white);
	   line-height: 1;
	   margin-bottom:20px;
}
.olhmban-info p {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight:300;
    color: var(--white);
	line-height: 1.5;
}
.olhmban-info
{
	margin-bottom:50px;
}
.olhmban-list
{
	display:flex;
	flex-wrap:wrap;
	align-items:center;
}
.olhmban-list .button-theme
{
	padding:18px 30px;
}
.olhmban-list .button-theme:hover{
				background-color: var(--white);
    border-color: var(--white);
	   color:var(--secondary);
}
.olhmban-list>a:not(:last-child)
{
	margin-right:30px;
}
.play-icon
{
	   width: 60px;
	   height: 60px;
	   line-height: 54px;
	   font-size: 30px;
	   position:relative;
	   display: inline-flex;
	   background-color: #FFFFFF;
	   border-radius: 100%;
	   flex-wrap: wrap;
	   align-items: center;
	   justify-content: center;
}
.play-icon>img{
	width:30px;
	color:var(--primary);
}
.play-icon:before,.play-icon:after
{
			 content: " ";
			 position: absolute;
			 top: 0;
			 left: 0;
			 width: 100%;
			 height: 100%;
			 color: red;
			 border-radius: 50%;
			 -webkit-box-shadow: 0 0 0 0 #ffffff;
			 box-shadow: 0 0 0 0 #ffffff;
			 -webkit-animation: button-ripple 3s infinite;
			 animation: button-ripple 3s infinite;
			opacity:0.6;
}
.play-icon:before
{
	    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}
.play-icon:after
{
	    -webkit-animation-delay: .3s;
    animation-delay: .3s;
}
@-webkit-keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px #ffffff;
        box-shadow: 0 0 0 15px #ffffff;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #ffffff;
        box-shadow: 0 0 0 0 #ffffff;
        opacity: 0
    }
}

@keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 15px #ffffff;
        box-shadow: 0 0 0 15px #ffffff;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #ffffff;
        box-shadow: 0 0 0 0 #ffffff;
        opacity: 0
    }
}

ul.js-hmbanner .slick-slide li>img {
  width: 100%;
  transition: all 10s ease;
	 -webkit-transition: all 10s ease;
	 -moz-transition: all 10s ease;
  transform: scale(1);
	 -moz-transform: scale(1);
	 -webkit-transform: scale(1);
}
ul.js-hmbanner .slick-slide.slick-active li>img{
  transform: scale(1.2);
	 -moz-transform: scale(1.2);
	 -webkit-transform: scale(1.2);
}

/*-------- our services -------*/

.sec-service .content-width{
	margin-bottom:60px;
}
ul.service-ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    margin:0 -20px -40px;
	   justify-content:center;
}
ul.service-ul li
{
	width:50%;
	padding:0 20px;
	margin-bottom:40px;
}
ul.service-ul .service-li{
	position:relative;
	transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}
ul.service-ul li:hover .service-li
{
	box-shadow: -15px -15px 0px 0px #016699;
	transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}
ul.service-ul .service-img {
   height: 392px;
}
ul.service-ul .service-img>img{
	object-fit:cover;
	object-position:center center;
	width:100%;
	height:100%;
	display:block;
}
ul.service-ul .service-bottom {
 position:absolute;
 padding:32px;
 top:0;
 left:0;
 bottom:0;
 right:0;
 display:flex;
 flex-wrap:wrap;
 flex-direction: column;
 align-items: flex-start;
 justify-content: flex-end;
	z-index:0;
}
ul.service-ul .service-bottom:before {
    position: absolute;
    content: "";
    width: 100%;
    background-color: transparent;
    background-image: linear-gradient(180deg, rgb(51 51 51 / 0%) 0%, #242424 100%);
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	   z-index:-1;
}
ul.service-ul .service-bottom [class*="heading-"]
{
	 text-transform:capitalize;
}
ul.service-ul .service-bottom [class*="heading-"],
ul.service-ul .service-bottom p
{
	color:var(--white);
}

/***-------whychoose content---------***/

main .whychs-content ul:not([class])  strong
{
	 display:inline-block;
	 margin-bottom:0;
}

/*Our Team*/
.sec-team {
    background-color: #F5F5F5;
}
.sec-team ul.team-ul{
	justify-content:center;
}
/*****-------- media Query ------------****/

@media (max-width: 1599.98px) {
	main ul.js-hmbanner li img.ban-desk,main ul.js-hmbanner
	{
		height:700px;
	}
}
@media (max-width: 1439.98px) {
		.olhmban-wrap .olhmban-title{
			font-size:42px;
		}
		.olhmban-info p
		{
			font-size:18px;
			line-height:1.4;
		}
		.olhmban-info {
			margin-bottom:40px;
		}
		.olhmban-list .button-theme {
				padding: 16px 28px;
		}
	 main ul.js-hmbanner li img.ban-desk,main ul.js-hmbanner
	{
		height:660px;
	}
	.sec-hmbanner .ol-hmbanner{
		align-items:center;
	}
	.olhmban-wrap{
		padding-bottom:0;
	}
	.play-icon
	{
		width:48px;
		height:48px;
		font-size:24px;
		line-height:44px;
		
	}
	ul.service-ul .service-bottom{
		padding:25px;
	}
	ul.service-ul li{
		padding: 0 15px;
  margin-bottom: 30px;
	}
	ul.service-ul
	{
		margin: 0 -15px -30px;
	}
	ul.service-ul li:hover .service-li
	{
		box-shadow: -12px -12px 0px 0px #016699;
	}
}
@media (max-width: 1199.98px) {
	 main ul.js-hmbanner li img.ban-desk,main ul.js-hmbanner {
    height:600px;
  }
	ul.service-ul .service-bottom [class*="heading-"]{
		margin-bottom:15px;
	}
}
@media (max-width: 991.98px) {
	  .olhmban-wrap .olhmban-title {
    font-size: 36px;
    margin-bottom: 12px;
  }
	 .olhmban-info {
    margin-bottom: 30px;
  }
	  .olhmban-info p {
    font-size: 16px;
    line-height: 1.45;
  }
main ul.js-hmbanner li img.ban-desk, main ul.js-hmbanner {
    height:500px;
  }
	 ul.service-ul li {
    padding: 0 8px;
    margin-bottom:20px;
  }
	 ul.service-ul {
    margin: 0 -8px -20px;
  }
	 ul.service-ul li:hover .service-li {
    box-shadow: -8px -8px 0px 0px #016699;
  }
	.sec-hmbanner{
		margin-bottom:60px;
	}
}
@media (max-width: 767.98px) {
	 .olhmban-wrap .olhmban-title {
    font-size:30px;
    margin-bottom: 12px;
  }
	 .olhmban-list .button-theme {
    padding: 16px 20px;
  }
	.olhmban-wrap{
		align-items:center;
		text-align:center;
	}
	.olhmban-list{
		justify-content:center;
	}
	  ul.service-ul .service-bottom {
    padding:20px;
  }
	 ul.service-ul li
	{
		padding:0;
		width:100%;
	}
	 ul.service-ul {
    margin: 0 0px -16px;
  }
	 ul.service-ul .service-img {
  	height:360px;
 	}
}
@media (max-width: 575.98px) {
	.olhmban-list > a:not(:last-child) {
  	margin-right: 10px;
  font-size: 14px;
 }
	  .olhmban-list .button-theme {
    padding: 14px 14px;
  }
	.olhmban-list .button-theme i{
		margin:0 6px 0 0;
	}
	.olhmban-list > a{
		margin-bottom:15px;
	}
	 .play-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    line-height: 40px;
  }
	@-webkit-keyframes button-ripple {
    70% {
        -webkit-box-shadow: 0 0 0 7px #ffffff;
        box-shadow: 0 0 0 7px #ffffff;
        opacity: 0
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 #ffffff;
        box-shadow: 0 0 0 0 #ffffff;
        opacity: 0
    }
}
	@keyframes button-ripple {
					70% {
									-webkit-box-shadow: 0 0 0 7px #ffffff;
									box-shadow: 0 0 0 7px #ffffff;
									opacity: 0
					}

					100% {
									-webkit-box-shadow: 0 0 0 0 #ffffff;
									box-shadow: 0 0 0 0 #ffffff;
									opacity: 0
					}
	}
	.sec-hmbanner{
		margin-bottom:40px;
	}
}
