@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');

:root{
	--color1 : #00BF63;
	--color2 : #FF3131;
	--color1hover:#4F71FA;
	--color2hover:#f01f1f;
  --backgroundGradiant:  linear-gradient(90deg, rgba(79, 113, 250, 1) 0%, rgba(0, 191, 99, 1) 82%);
}
/** BASIC CSS **/

* { 
	margin: 0; 
	padding: 0; 
	border:none; 
	outline:none;
	-webkit-box-sizing: border-box; 
	-moz-box-sizing: border-box; 
	-o-box-sizing: border-box;
	box-sizing: border-box;	}
	

html, body{
	height:auto;
	min-height: 100vh;
	max-width:100%;
	min-width:100%;
	background:#ffffff;
	/* font-family: 'Montserrat', sans-serif; */
  font-family: "Open Sans", sans-serif;
	font-size:14px;
	line-height:18px; 
	color:#000;
	font-weight:normal;
	font-style:normal;
	overflow-x:hidden;
padding: 0 !important;
    margin: 0 !important;}
	
p {
	font-size: 15px;
	color: #393939;
	line-height: 27px;
	font-weight: 400;}
	
h1,h2,h3,h4,h5,h6{
     margin:0;
	 color:rgb(47, 47, 47);
  font-family:  "Oswald", sans-serif;}

a {
	text-decoration:none;
	outline: none;
	color: #4b5460;}
	
:focus { 
	outline: none; }
	
a:focus {
	outline: none;}
	
a:hover, a:focus {
	color: var(--color1);
	text-decoration: none !important;}
		
hr{
	background:#e3e3e3;
	border-top:1px solid #333;}
	
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;}
	
::selection {
	text-shadow: none;
	background: var(--color1);
	color: #fff;}
	
::-moz-selection {
 text-shadow: none;
 background: var(--color1);
 color:#fff;}
 
a, input, select, textarea, img {
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;}
		
.clearfix {
	clear: both;
	font-size: 0;
	line-height: 0;
	margin: 0;
	padding: 0;}
			
.hidden{ 
	display: none !important;}
	
.show{ 
	display: block !important;}
	
.floatl{ 
	float: left;}
	
.floatr{
	float: right;}
	
.nopad{
	padding:0 !important;}

.nopadl{
	padding-left:0;}
	
.nopadr{
	padding-right:0;}
	
.btn:focus,button:focus,.form-control:focus{
	outline:0;
	box-shadow:0 0 0 0 transparent;
}
.form-control{
  padding: 10px;
}
select.form-control{
    -webkit-appearance: menulist!important;
    -moz-appearance: menulist!important;
    -ms-appearance: menulist!important;
    -o-appearance: menulist!important;
    appearance: menulist!important;
}
.modal-backdrop{
  z-index: 999999;
}
.modal{
  z-index: 9999999;
}
/** BASIC CSS END HERE **/ 
.topbar {
    background: var(--color1);
     background: var(--backgroundGradiant);
}
.topmenu {
    padding: 0;
    display: flex;
    list-style: none;
    margin: 0;
}
.topmenu li{
    padding:12px 0;
}
.topmenu li a{
    color: #fff;
    border-left: 1px solid #ffffff82;
    padding: 0 12px;
}
.topmenu li a i.fa{
	width: 25px;
    height: 25px;
    background: #fff;
    border-radius: 50%;
    color: var(--color1);
    text-align: center;
    line-height: 1.9;
    margin-right: 5px;
}
.topmenu li a:hover{
	text-decoration: underline;
}
.topmenu li a:hover i.fa{
	color: var(--color2);
}
.topmenu li:first-child a{
    border-left: 0px solid #ffffff82;
	padding-left: 0;
}
.topmenu li:last-child a{
	padding-right: 0;
}
.topsocial{
	margin-left: auto;
    width: max-content;
    padding: 0;
    display: flex;
    list-style: none;
    margin-bottom: 0;
	margin-top: 3px;
}
.topsocial li a{
	color: #fff;
    padding: 14px 10px;
    display: block;
	width: 40px;
    text-align: center;
}
.topsocial li a:hover{
	background: #fff;
	color: var(--color2);
}

.section {
	padding: 100px 0;
	position: relative;
   /* min-height: 100vh;*/
}
.about-two__image {
    display: inline-block;
    border-radius: 50%;
    position: relative;
}
.about-two__image:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 20px solid #fff;
    z-index: 11;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}
.about-two__image:hover::before{
  border: 2px solid #fff;
}
.about-two__image-dots {
    width: 197px;
    height: 268px;
    position: absolute;
    top: 0%;
    left: calc(100% - 60px);
    background-image: url(../images/dot-pattern-1-2.png);
    background-position: 0 0;
    z-index: 10;
}
.about-two__image > img {
	border-radius: 50%;
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-two__count {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 12;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
    border-radius: 50%;
    width: 175px;
    height: 175px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
}
.about-two__image:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -20px;
    border: 3px solid var(--color1);
    border-radius: 50%;
}
.about-two__count:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px dashed rgba(1, 34, 55, 0.15);
    border-radius: 50%;
}
.about-two__count-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-weight: 600;
    color: #81868a;
}
.about-two__count span {
    display: block;
    color: var(--color2);
    letter-spacing: 0em;
    font-weight: 400;
    font-size: 30px;
}
.about-two__single-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: 35px;
    margin-bottom: 35px;
}
.about-two__single {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}
.about-two__single i {
    color: #50606d;
    font-size: 48px;
    margin-right: 14px;
}
.about-two__single-text {
    color: #012237;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

ul.tabs{
	margin: 0px;
	padding: 0px;
	list-style: none;
}
ul.tabs li{
    background: none;
    color: #222;
    display: inline-block;
    padding: 14px 38px;
    cursor: pointer;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

ul.tabs li.current{
	background: var(--color2);
	color: rgb(255, 255, 255);
	box-shadow: 0px 2px 10px #0006;
}

.tab-content{
	display: none;
	margin-top: 15px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}

.tab-content.current{
	display: inherit;
}

.about_area {
    padding-top: 50px;
}
.about_area .absubtitle {
    color: var(--color2);
}
.about_area .abtitle{
	font-size: 58px;
    font-weight: bold;
    color: var(--color1);
    margin-bottom: 21px;
}
.btn-common{
	background: var(--color1);
    color: #fff;
    border: 2px solid var(--color1);
    padding: 14px 40px;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 500;
	box-shadow: 0px 0px 0px 0px #00000030;
}
.btn-common:hover,.btn-common:focus{
	background: var(--color1hover);
	color: #fff;
	border: 2px solid var(--color1hover);
	box-shadow: -15px 20px 20px 0px #00000030;
}
.btn-common-outline{
	background: transparent;
    color: var(--color2);
    border: 2px solid var(--color2);
    padding: 14px 40px;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 500;
	box-shadow: 0px 0px 0px 0px #00000030;
}
.btn-common-outline:hover,.btn-common-outline:focus{
	background: var(--color2);
	color: #fff;
	border: 2px solid var(--color2);
	box-shadow: -15px 20px 20px 0px #00000030;
}

.srvbox{
	width: 100%;
	height: 100%;
	background: #fff;
	box-shadow: 0px 0px 5px #00000030;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	position: relative;
	z-index: 9;
}
.srvbox::before{
    content: "";
    display: block;
    width: 150px;
    height: 130px;
    position: absolute;
    right: 0;
    top: 0;
    background: var(--color1);
     background: var(--backgroundGradiant);
    clip-path: polygon(0 0, 100% 100%, 100% 0);
	z-index: 0;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.srvbox:hover{	
	box-shadow: 0px 20px 35px #00000030;
}
.srvbox:hover::before{
  width: 120px;
  height: 100px;
}
.srvicon{
	    width: 100%;
    height: 300px;
    border-radius: 8px;
    padding: 0;
    background: #e9e9e9;
}
.srvicon img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.srvcontent{  
	padding:30px 20px;
}
.srvcontent h3{
	color: var(--color1hover);
    font-size: 27px;
    margin-bottom: 13px;
    font-weight: bold;
}
.srvbox .btn {
  padding: 9px 30px;
  font-size: 14px;
}
.sec_smtitle {
    color: var(--color2);
    margin-bottom: 7px;
}
.section_title{
	color: #000;
    margin-bottom: 30px;
    font-weight: bold;
}
.doted-bg{
	background: url('../images/bg.jpg');
}
.facilities_sec {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.facilities_sec h3{
	color: var(--color1);
    font-size: 40px;
    font-weight: bold;
    margin: 4px 0 14px;
}
.facilities_sec h5 {
    color: var(--color2);
}
.box-icon-classic {
	display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    margin: auto;
    border-radius: 10px;
    /* border: 1px solid #d5d5d5; */
    padding: 20px 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    z-index: 9;
    box-shadow: 6px 7px 20px 4px #00000026;
}
.box-icon-classic::before{
	content: "";
    display: block;
    z-index: -10;
   
    background: var(--color1);
     background: var(--backgroundGradiant);
	width: 100%;
	height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	transform: translate(-40%, 60%);
    border-radius: 50%;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.box-icon-classic:hover::before{
	transform: translate(0%, 0%);
    border-radius: 0%;
}
.box-icon-classic h5{
    font-size: 19px;
	font-weight: 600;
    color: var(--color2);
    margin-bottom: 6px;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
}
.box-icon-classic:hover h5{
	color: #fff;
}
.box-icon-classic p{
	line-height: 1.4;
}
.box-icon-classic:hover p{
    color: rgb(255, 255, 255);
}
.box-icon-classic img{
	margin-left: auto;
    display: block;
  filter: brightness(1);
  max-width:60px;
  height:60px;
  object-fit:contain;
  object-position: center center;
}
.box-icon-classic:hover img{
  filter: brightness(10);
}

.testimonial_sec{
	background: url('../images/bg2.png') no-repeat;
	background-size: cover;
	background-position: center center;
}
.testimonial-name {
	margin: -30px auto 0;
    display: table;
    width: auto;
    background: var(--color2);
    padding: 9px 35px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
    box-shadow: 0 9px 18px rgb(0 0 0 / 12%), 0 5px 7px rgb(0 0 0 / 5%);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
}
.testimonial-name h5,.testimonial-name p{
	color: #fff;
	margin: 0;
}
.customers-testimonials .item {
	text-align: center;
    padding: 0;
    margin-top: 80px;
    margin-bottom: 80px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.shadow-effect {
	background: #fff;
    border: 1px solid #d8d8d8;
    padding: 61px 15px 40px 15px;
    border-radius: 10px;
	position: relative;
}
.shadow-effect .img-circle {
    min-width: 90px;
	max-width: 90px;
    height: 90px;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
	margin: auto;
    border: 11px solid #fff;
	object-fit: cover;
  box-shadow: 0px 0px 2px 0px #000;
}
.customers-testimonials .owl-item.active.center .item {
	opacity: 1;
	-webkit-transform: scale3d(1.0, 1.0, 1);
	transform: scale3d(1.0, 1.0, 1);
}
.customers-testimonials.owl-carousel .owl-dots .owl-dot.active span,
.customers-testimonials.owl-carousel .owl-dots .owl-dot:hover span {
	background: var(--color2);
	transform: translate3d(0px, -50%, 0px) scale(0.7);
	border-radius: 50%;
}
.customers-testimonials.owl-carousel .owl-dots{
display: inline-block;
width: 100%;
text-align: center;
}
.customers-testimonials.owl-carousel .owl-dots .owl-dot{
display: inline-block;
}
.customers-testimonials.owl-carousel .owl-dots .owl-dot span {
	background: var(--color2);
	display: inline-block;
	height: 20px;
	margin: 0 2px 5px;
	transform: translate3d(0px, -50%, 0px) scale(0.3);
	transform-origin: 50% 50% 0;
	transition: all 250ms ease-out 0s;
	width: 20px;
	border-radius: 50%;
}
.bg-second{
	    background: var(--color1);
    background: var(--backgroundGradiant);
}
.bottom-carv{
	clip-path: polygon(0 0, 100% 0%, 100% 82%, 0% 100%);
}
.top-carv{
  clip-path: polygon(0 0, 100% 17%, 100% 100%, 0% 100%);
}
.bg-second .txteditorcontent,.bg-second .txteditorcontent p,.bg-second .txteditorcontent ul li{
    color: #fff !important;
}

.paralex_content {
        background: #ffffffb5;
    padding: 30px 20px;
    border-radius: 20px 0 20px 0;
}
.paralex_content h2 {
    color: var(--color2);
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: bold;
}
.paralex_content p{
  font-size: 17px;
}
/*-footer---*/
.footer-section {
	background-color: #0e0e0e;
	position: relative;
	overflow: hidden;
	z-index: 9;
  }
  .footer-section:before {
	content: "";
	position: absolute;
	top: -146%;
	left: -18%;
	width: 44%;
	height: 257%;
	transform: rotate(146deg);
	background-color: var(--color1hover);
	-webkit-transform: rotate(146deg);
	-moz-transform: rotate(146deg);
	-ms-transform: rotate(146deg);
	-o-transform: rotate(146deg);
	z-index: -10;
  opacity: 0.1;
  }
  .footer-section:after {
	position: absolute;
	content: "";
	background-color: var(--color2hover);
	top: -24%;
	right: 5%;
	width: 26%;
	height: 257%;
	transform: rotate(111deg);
	-webkit-transform: rotate(111deg);
	-moz-transform: rotate(111deg);
	-ms-transform: rotate(111deg);
	-o-transform: rotate(111deg);
	z-index: -10;
  opacity: 0.1;
  }
  .footer-top {
	padding-top: 96px;
	padding-bottom: 50px;
  }
  .footer-top p,
  .company-footer-contact-list li {
	color: #ffffff;
	margin-bottom: 10px;
  }
  .company-footer-contact-list {
	margin-top: 10px;
  }
  .company-footer-contact-list li {
	display: flex;
	display: -webkit-flex;
	align-items: center;
  }
  .company-footer-contact-list li + li {
	margin-top: 5px;
  }
  .company-footer-contact-list li i {
	margin-right: 10px;
	font-size: 20px;
	display: inline-block;
  color: var(--color1hover);
  }
  
  .footer-top .site-logo {
	margin-bottom: 25px;
	display: block;
	max-width: 170px;
  }
  .widget-title {
	text-transform: capitalize;
  }
  .footer-top .widget-title {
	color: var(--color1);
margin-bottom: 20px;
    font-weight: 600;
    font-size: 19px;
    text-transform: uppercase;
  }
  .courses-link-list,.small-post-list,.terms-privacy,.company-footer-contact-list{
	list-style: none;
	padding: 0;
  }
  .courses-link-list li + li {
	margin-top: 10px;
  }
  .courses-link-list li a {
	color: #ffffff;
	text-transform: capitalize;
	font-weight: 400;
  }
  .courses-link-list li a:hover {
	color: var(--color2);
  }
  .courses-link-list li i {
	margin-right: 5px;
  color: var(--color2);
  }
  .footer-top .small-post-title a {
	color: #ffffff;
	font-weight: 400;
  }
  .small-post-item .post-date {
	color: var(--color2);
	margin-bottom: 3px;
	font-weight: 400;
  }
  .small-post-list li + li {
	margin-top: 30px;
  }
  .news-letter-form {
	margin-top: 15px;
  }
  .news-letter-form input {
	width: 100%;
	padding: 12px 25px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	border: none;
  }
  .news-letter-form input[type="submit"] {
	width: auto;
	border: none;
	background-color: var(--color2);
	padding: 9px 30px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	-o-border-radius: 5px;
	color: #ffffff;
	margin-top: 10px;
  }
  .footer-bottom {
	padding: 13px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.149);
  }
  .copy-right-text {
	color: #ffffff;
  }
  .copy-right-text a {
	color: var(--color2);
  }
  .terms-privacy li + li {
	margin-left: 30px;
  }
  .terms-privacy li a {
	color: #ffffff;
	position: relative;
  }
  .terms-privacy li a:after {
	position: absolute;
	content: "-";
	color: #ffffff;
	display: inline-block;
	top: 0;
	right: -18px;
  }
  .terms-privacy li + li a:after {
	display: none;
  }
  .navbar-corporate-list-social{
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
  }
  .navbar-corporate-list-social a {
    display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    line-height: 2;
    font-size: 19px;
}
.navbar-corporate-list-social a:hover{
	color: var(--color2);
	background: #fff;
}
.inner_banner {
  padding: 20px 0;
  height: 240px;
  display: flex;
  align-items: center;
}
.inner_banner h2{
    color: #fff;
    text-align: center;
    position: relative;
}
.inner_banner h2::after{
  content: "";
    display: block;
    width: 90px;
    height: 3px;
    background: var(--color2);
    margin: auto;
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    border-radius: 10px;
}

.txteditorcontent blockquote {
  padding-left: 20px;
  padding-top: 10px;
  border-left: 5px solid var(--color2); 
  padding-bottom: 10px;
  background: #efefef;
}
.txteditorcontent blockquote p{
  margin: 0;
}
.txteditorcontent ul{
	/* margin-top: 30px;
	margin-bottom: -16px; */
	margin-left: 0;
	margin-right: 0;
	break-inside: avoid;
	display: inline-block;
	text-align: left;
	list-style: none;
    padding: 0;
}
.txteditorcontent ul li{
	display: inline-block;
    width: 100%;
	text-indent: -15px;
    padding-left: 15px;
	margin-bottom: 16px;
}
.txteditorcontent ul li::before{
	position: relative;
    display: inline-block;
    left: 0;
    top: 0;
    content: '';
	height: 7px;
    width: 7px;
    margin-right: 8px;
	background: var(--color1);
}


/*-team-------*/
.team-block {
  margin-bottom: 60px;
}

.sec-title {
  position: relative;
  z-index: 1;
  margin-bottom: 65px;
}

.sec-title .title {
  position: relative;
  font-size: 18px;
  color: #bd0000;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.sec-title .separator {
  position: relative;
  width: 40px;
  margin-top: 16px !important;
}

.sec-title .separator:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 10px;
  height: 2px;
  background-color: #ff9600;
}

.sec-title .separator:after {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  width: 10px;
  height: 2px;
  background-color: #ff9600;
}

.sec-title .separator span {
  position: absolute;
  left: 50%;
  top: -2px;
  width: 10px;
  height: 5px;
  margin-left: -5px;
  display: inline-block;
  background-color: #bd0000;
}

.sec-title h2 {
  position: relative;
  color: #222222;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2em;
  margin-top: 35px;
}

.sec-title .text {
  position: relative;
  font-size: 14px;
  line-height: 1.9em;
  color: #555555;
  margin-top: 10px;
}

.sec-title.centered .separator {
  margin: 0 auto !important;
  float: none !important;
}

.sec-title.centered {
  text-align: center !important;
}

.sec-title.light .title {
  color: #ffffff;
}

.sec-title.light h2 {
  color: #ffffff;
}

.sec-title.light .separator span {
  background-color: #ff9600;
}

.sec-title.light .separator:before,
.sec-title.light .separator:after {
  background-color: #ffffff;
}

.team-section {
  position: relative;
  padding: 80px 0px 60px;
}

.team-section.style-two .pattern-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-position: center center;
  background-repeat: no-repeat;
}

.team-section .title-box {
  position: relative;
  text-align: center;
}

.team-section .title-box h2 {
  position: relative;
  color: #222222;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3em;
  margin-bottom: 50px;
}

.team-section .title-box h2 span {
  color: #ff9600;
}

.team-block {
  position: relative;
}

.team-block .inner-box {
  position: relative;
  padding: 40px 70px 28px 0px;
}

.team-block .inner-box:before {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  left: 70px;
  bottom: 0px;
  border-radius: 10px;
  background-color: #f5f5f5;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  box-shadow: 0px 10px 12px 0px #0000000d;
}

.team-block .inner-box::after {
  position: absolute;
  content: "";
  top: 0px;
  left: 70px;
  bottom: 0px;
  width: 0%;
  border-radius: 10px;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  background-image: -ms-linear-gradient(top, var(--color1) 0%, var(--color1hover) 100%);
  background-image: -moz-linear-gradient(top, var(--color1) 0%, var(--color1hover) 100%);
  background-image: -o-linear-gradient(top, var(--color1) 0%, var(--color1hover) 100%);
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, var(--color1) ),
    color-stop(100, var(--color1hover) )
  );
  background-image: -webkit-linear-gradient(top, var(--color1)  0%, var(--color1hover)  100%);
  background-image: linear-gradient(to bottom, var(--color1)  0%, var(--color1hover)  100%);
}

.team-block .inner-box:hover::after {
  width: 81%;
}

.team-block .inner-box .social-icons {
  position: absolute;
  right: 25px;
  top: 100px;
  z-index: 1;
  list-style: none;
}

.team-block .inner-box .social-icons li {
  position: relative;
  margin-bottom: 20px;
}

.team-block .inner-box .social-icons li a {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 1.6;
  background: var(--color1);
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.team-block .inner-box:hover .social-icons li a{
  background: #fff;
  color:var(--color1) ;
}
.team-block .inner-box:hover .lower-content h3 a,
.team-block .inner-box:hover .lower-content .designation {
  color:#fff;
}
.team-block .inner-box .image {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: inset 0px 0px 35px rgba(0, 0, 0, 0.2);
}

.team-block .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  border-radius: 10px;
}

.team-block .inner-box .lower-content {
  position: relative;
  text-align: left;
  z-index: 1;
  padding: 30px 15px 0px 110px;
}

.team-block .inner-box .lower-content h3 {
  position: relative;
  color: #bd0000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
}

.team-block .inner-box .lower-content h3 a {
  position: relative;
  color: #bd0000;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.team-block .inner-box .lower-content .designation {
  position: relative;
  margin-top: 5px;
  color: #777777;
  font-size: 14px;
}

.team-block.style-two .inner-box .lower-content h3 a,
.team-block.style-two .inner-box .social-icons li a {
  color: #ff9600;
}

.team-block.style-two .inner-box:hover .lower-content h3 a,
.team-block.style-two .inner-box:hover .social-icons li a {
  color: #ffffff;
}

.team-block.style-two .inner-box::after {
  background-image: -ms-linear-gradient(top, #ffeb3c 0%, #ff9600 100%);
  background-image: -moz-linear-gradient(top, #ffeb3c 0%, #ff9600 100%);
  background-image: -o-linear-gradient(top, #ffeb3c 0%, #ff9600 100%);
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(0, #ffeb3c),
    color-stop(100, #ff9600)
  );
  background-image: -webkit-linear-gradient(top, #ffeb3c 0%, #ff9600 100%);
  background-image: linear-gradient(to bottom, #ffeb3c 0%, #ff9600 100%);
}
.counter-content {
  /* background: #00000096; */
  padding: 40px 20px;
  border-radius: 5px;
}
.counter-classic {
  text-align: center;
}
.counter-classic .icon_counter{
    background: var(--color1);
    width: 80px;
    height: 80px;
    display: block;
    margin-bottom: 18px;
    margin: 18px auto;
    font-size: 40px;
    text-align: center;
    line-height: 2;
    border-radius: 50%;
    color: #fff;
}
.counter-classic h1 {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 13px;
}
.counter-classic h1 .symbol{
      font-size: 20px;
    margin-left: 5px;
}
.counter-classic h5{
  color: #ffffff;
}

.tz-gallery a {
  width: 100%;
  height: 190px;
  display: block;
  overflow: hidden;
  position: relative;
}
/* Override bootstrap column paddings */
.tz-gallery .row > div {
  padding: 2px;
}

.tz-gallery .lightbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  position: relative;
}

.tz-gallery .lightbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  font-family: 'FontAwesome';
  content: '\f00e';
  pointer-events: none;
  z-index: 9000;
  transition: 0.4s;
}


.tz-gallery .lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgb(4 95 180 / 40%);
  content: '';
  transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
  opacity: 1;
}
.gal_box {
    width: 100%;
    height: auto;
    position: relative;
    margin-bottom: 15px;
}
.gal_box span {
    display: block;
    font-size: 15px;
    padding: 8px;
    background: var(--color1hover);
    color: #fff;
}


.box-contacts {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 310px;
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.17);
	transition: all .3s ease;
  background: #fff;
}

.box-contacts-body {
	max-width: 90%;
}

.box-contacts-icon {
	font-size: 60px;
	line-height: 1;
	color: var(--color2) ;
}

.box-contacts-decor {
	margin: 30px auto;
	height: 2px;
	max-width: 100px;
	background: var(--color2) ;
	transition: all .3s ease-in-out;
}

.box-contacts-link {
	font-size: 18px;
	line-height: 1.67;
	letter-spacing: .025em;
}

.box-contacts-link a, .box-contacts-link a:focus, .box-contacts-link a:active {
	color: inherit;
}

.box-contacts-link a:hover {
	color: var(--color2) ;
}

.simple_title_sec{
  background: var(--color1hover);
  padding: 25px 0;
}
.simple_title_sec h1{
 color: #fff;
}
.srv_book {
  border: 1px solid rgb(139, 139, 139);
  padding: 9px;
  display: block;
  background: #fff;
  width: 100%;
  text-align: center;
  margin: 7px 0;
  border-radius: 8px;
  cursor: pointer;
}
.srv_book input{
  display: none;
}
.srv_book.active {
  border: 1px solid var(--color2hover);
    background: var(--color2hover);
}
.srv_book span{
  display: block;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
}
.srv_book span:nth-child(2){
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 7px;
}
.srv_book.active span{
  color: #fff;
}
.scrollTop{
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 2;
  font-size: 21px;
  background: var(--color2);
  color: #fff;
  position: fixed;
  right: 10px;
  z-index: 99999;
  bottom: 10px;
  border-radius: 50%;
  box-shadow: 2px 6px 10px #00000038;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.scrollTop:hover,.scrollTop:focus{
  background: var(--color2hover);
  color: #fff;
}
.rd-form {
  background: #fff;
  padding: 2rem;
  border: 1px solid #e8e8e8;
}
.title_icon{
      width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin-left: auto;
    display: block;
    margin-right: auto;
    margin-bottom: 20px;
    background: #e9e9e9;
    border-radius: 10px;
    padding: 0;
}
.service_sec_title {
  font-size: 21px;
  font-weight: bold;
  color: #000;
  margin-bottom: 6px;
}
.package_box {
  width: 100%;
  height: 100%;
  border: 1px solid #b9b9b9;
  border-radius: 8px;
  text-align: left;
  padding: 10px;
  background: #fff;
}
.package_box img{
    width: 100%;
    min-height: 120px;
    max-height: 260px;
    object-fit: contain;
    margin-bottom: 10px;
}
.package_box h3 {
  font-size: 19px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
}
.package_box h5 {
  font-size: 19px;
  font-weight: bold;
  color: var(--color1);
  margin-bottom: 5px;
}
.ckedtor5 .cke .cke_inner  .cke_top{
  display: none !important;
}
.package_box .txteditorcontent ul {
  margin-top: 10px;
  margin-bottom: 5px;
  margin-left: 0;
  margin-right: 0;
  break-inside: avoid;
  display: inline-block;
  text-align: left;
  list-style: none;
  padding: 0;
}
.package_box .txteditorcontent ul li{
  margin-bottom: 10px;
}
.form_booking{
  position: relative;
}
.loader_form {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.loader_form img{
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.service_sdetails .txteditorcontent ul{
    margin-top: 6px !important;
    margin-bottom: 14px !important;
    margin-left: 8px !important;
}
.service_sdetails .txteditorcontent a{
    color: var(--color2hover) !important;
    position: relative;
}

.floating_btn {
  position: fixed;
  bottom: 69px;
  right: 10px;
  width: 45px;
  height: 90px;
  z-index: 99;
}
.floating_btn a {
  width: 43px;
  height: 43px;
  display: block;
  background: var(--color1);
  border-radius: 50%;
  font-size: 29px;
  text-align: center;
  line-height: 1.6;
  color: #fff;
  margin: 5px 0;
}
.floating_btn a.whatsapp{
  background: rgb(14, 134, 14) !important;
}
.floating_btn a.phone{
  background: var(--color1) !important;
}
.bookmodal {
    padding-bottom: 40px;
}
.bookmodal h1 {
    font-size: 38px;
    color: #e73b3b;
}
.bookmodal h1 span{
    color: #000000;
}
.bookmodal .btn-close{
    position: absolute;
    right: 15px;
    top: 15px;
}
 .video-container {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 ratio */
      height: 0;
      overflow: hidden;
      max-width: 100%;
      background: #000;
      border-radius: 16px;
    }

    .video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }