/* 1. Theme default css */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700&family=Poppins:wght@400;500;600;700;800;900&display=swap');
/*
font-family: 'Nunito Sans', sans-serif;
font-family: 'Poppins', sans-serif;
*/
:root {
	--vti-font:'Nunito Sans', sans-serif;
	--vti-heading-font:'Poppins', sans-serif;
	--vti-primary:#072f60;
	--vti-secondary:#3bbca7;
	--vti-base:#03b7c8;
	--vti-black:#082740;
	--vti-gray:#eceeef;
	--thm-black-rgb:7, 47, 96;
}
body {
  font-family:var(--vti-font);
  font-weight: 500;
  font-style: normal;
}
.img {
  max-width: 100%;
  transition: all 0.3s ease-out 0s;
}
.f-left {
  float: left;
}
.f-right {
  float: right;
}
.fix {
  overflow: hidden;
}
a,
.button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}
a:focus,
a:hover,
.portfolio-cat a:hover,
.footer -menu li a:hover {
  color: #2b96cc;
  text-decoration: none;
}
a,
button {
  color: #1696e7;
  outline: medium none;
}
button:focus,
input:focus,
input:focus,
textarea,
textarea:focus {
  outline: 0;
}
.cta-form input:focus:-moz-placeholder {
  opacity: 0;
}
.cta-form input:focus::placeholder {
  opacity: 0;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:var(--vti-heading-font);
  font-weight: normal;
  color: var(--vti-primary);
  margin-top: 0px;
  font-style: normal;
  font-weight: 700;
  text-transform: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}
h1 {
  font-size: 40px;
  font-weight: 500;
}
h2 {
  font-size: 35px;
}
h3 {
  font-size: 28px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 18px;
}
h6 {
  font-size: 16px;
}
ul {
  margin: 0px;
  padding: 0px;
}
li {
  list-style: none;
}
p {
  font-size: 16px;
  font-weight: 500;
  line-height: 27px;
  color:#201f1f;
  margin-bottom: 15px;
  font-family:var(--adp-font);
}
hr {
  border-bottom: 1px solid #eceff8;
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}
label {
  color: #7e7e7e;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}
/*
Default Btn Area Style*/
.default-btn {
  font-size: 16px;
  color: #ffffff;
  line-height: 1;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-table;
  padding: 20px 45px;
  font-weight: 600;
  border-radius: 4px;
  background-image: -webkit-gradient(linear, left top, right top, from(#0ab04b), to(#07bd4f));
  background-image: linear-gradient(to right, #0ab04b, #07bd4f);
}

.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#0ab04b), to(#07bd4f));
  background-image: linear-gradient(to right, #0ab04b, #07bd4f);
  z-index: -1;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

/*
Read More Btn Area Style*/
.read-more {
  font-size: 15px;
  color: #30296c;
  font-weight: 600;
}

.read-more i {
  position: relative;
  top: 3px;
}

.read-more:hover {
  color: #f68820;
  letter-spacing: 1px;
}
.scrollToTop {
  width:65px;
  height:65px;
  line-height:70px;
  text-align: center;
  color: #fff;
  font-size: 25px;
  background:var(--vti-secondary);
  background-position: center center;	
  position: fixed;
  right: 30px;
  bottom: 50px;
  display: none;
  z-index: 999;
  margin:5px;
}
.scrollToTop:hover {
  color: #fff;
}

*::-moz-selection {
  background: var(--vti-primary);
  color: #fff;
  text-shadow: none;
}
::-moz-selection {
  background: var(--vti-primary);
  color: #fff;
  text-shadow: none;
}
::selection {
  background: var(--vti-primary);
  color: #fff;
  text-shadow: none;
}
*::-moz-placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}
*::placeholder {
  color: #555555;
  font-size: 14px;
  opacity: 1;
}
.theme-overlay {
  position: relative;
}
.theme-overlay::before {
  background: #1696e7 none repeat scroll 0 0;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  top: 0;
  width: 100%;
}
.separator {
  border-top: 1px solid #f2f2f2;
}

.section-heading {
position:relative;
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h6 {
  margin-bottom: 15px;
  /*background: rgba(24, 171, 99, 0.1);*/
  border-radius: 3px;
  display: inline-block;
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.7rem;
  font-size: 24px;
  color: var(--vti-secondary);
}

.section-heading h3 {
  font-size: 42px;
  text-align: center;
  position: relative;
  padding: 0 0 30px 0;
  margin-bottom: 20px;
  font-family: var(--vti-font);	
}
.section-heading span {
   display: block;
    position: relative;
}
.section-heading span:after,
.section-heading span:before {
    position: absolute;
    height: 1px;
    content: '';
    width: 60px;
    bottom: -0.9rem;
    left: calc(50% - 3.65rem);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
	background-color: var(--vti-secondary);
}
.section-heading span:after {
    left: calc(50% + 3.2rem);
}
.section-heading:after {
    font-family: 'Font Awesome 5 Pro';
    content: "\f104";
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    font-weight: 400;
    font-size: 35px;
}

/*.section-heading h3:after, .section-heading h3:before {
  content: "";
  left: 50%;
  position: absolute;
  border-radius: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.section-heading h3:before {
  width: 30px;
  height: 10px;
  z-index: 5;
  bottom: 0px;
  background: var(--vti-primary);
}

.section-heading h3:after {
  width: 100px;
  height: 10px;
  background:rgb(102, 188, 69);
  bottom: 0;
}

.section-heading h3 span {
  color: #18ab63;
  margin-left: 10px;
}*/


/* Title */
.sc-title {
    position: relative;
	margin-bottom: 2.4rem;
	padding-bottom: 3.2rem;
	text-align:center;
}
.sc-title p {
	color:var(--vti-secondary);
	font-size:24px;
	font-weight: 600;
}
.sc-title h2 {
	text-align:center;
	font-family: var(--vti-font);	
	font-size: 42px;
}
.sc-title h2:after {
    content:"";
    position: absolute;
	bottom: -0.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    background:url('../images/courier.png');
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	width:64px;
	height:64px;
}
.sc-title h2 span {
   display: block;
    position: relative;
}
.sc-title h2 span:after,
.sc-title h2 span:before {
    position: absolute;
    height: 2px;
    content: '';
    width: 90px;
    bottom:-2.2rem;
    left: calc(50% - 3.65rem);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
	background-color: var(--vti-secondary);
}
.sc-title h2 span:after {
    left: calc(50% + 3.2rem);
}
.inner-header-title {
  margin-bottom: 25px !important;
  position: relative;
  padding-bottom: 20px;
  display: block;
}

.inner-header-title:after, .inner-header-title:before {
  content: "";
  bottom: 0;
  left: 0;
  height: 2px;
  position: absolute;
  border-radius: 5px;
}

.inner-header-title:after {
  width: 100%;
  background: rgba(0, 0, 0, 0.05);
}

.inner-header-title:before {
  width: 60px;
  z-index: 36;
  background: #18ab63;
}

.flex-box-center {
  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;
}

/* button style */
.btn {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 20px 55px;
  text-align: center;
  touch-action: manipulation;
  transition: all 0.3s ease 0s;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: capitalize;
  background: var(--vti-primary);
  border-radius: 0;
  font-family:var(--vti-heading-font);
}
.test-space {
  padding-top: 415px;
}
.btn-border {
  background: transparent;
  border: 2px solid var(--vti-primary);
  padding:18px 47px;
  color:var(--vti-primary);
  text-decoration:none;
  font-weight: 700;	
}
.btn.btn-line {
  padding: 20px 56px;
}
.btn-border:hover {
  background: #fff;
  color: #ff62a3;
}
/*Buttons*/
.default-primary-btn {
  padding: 18px 30px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  text-align: center;
  border-radius: 3px;
  position: relative;
  background: #18ab63;
  color: #fff;
  border: none;
  outline: none;
}

.default-primary-btn:hover {
  background: #127e49;
  color: #fff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.primary-icon-btn {
  padding: 18px 90px 18px 30px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  text-align: center;
  border-radius: 3px;
  position: relative;
  background:var(--vti-secondary);
	text-decoration:none;
  color: #fff;
  border: none;
  font-weight: 800;
}

.primary-icon-btn:hover {
  background: #127e49;
  color: #fff;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.primary-icon-btn i {
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  display: inline-block;
  position: absolute;
  border-radius: 0 3px 3px 0;
  background: rgba(255, 255, 255, 0.2);
}

.secondary-icon-btn {
  padding: 18px 90px 18px 30px;
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  text-align: center;
  border-radius: 3px;
  position: relative;
  background: #1B1464;
  color: #fff;
  border: none;
}

.secondary-icon-btn:hover {
  color: #fff;
  background: #100c3a;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.secondary-icon-btn i {
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  display: inline-block;
  position: absolute;
  border-radius: 0 3px 3px 0;
  background: rgba(255, 255, 255, 0.2);
}
.breadcrumb>.active {
  color: #888;
}
/* 2. header */
.topbar {
  background:var(--vti-primary);	
  border-bottom: 1px solid #eeeeee;
  padding-top:10px;
  padding-bottom:10px;
  padding-left:85px;
  padding-right:85px;	
  position: relative;
  z-index: 9;
  color: #fff;	
}

.topbar-left-side ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.topbar-left-side ul li {
  font-size: 16px;
  margin-right: 15px;
  display: inline-block;
  color:#fff;
}

.topbar-left-side ul li a {
 color:#fff;
 text-decoration: none;
}

.topbar-left-side ul li i {
  margin-right: 3px;
  color: var(--mainColor);
}


.topbar-right-side ul li {
  font-size: 16px;
  margin-right: 15px;
  display: inline-block;
  color:#fff;
text-align: center;

}

.topbar-right-side ul li a {
 color:#fff;
 text-decoration: none;
}

.topbar-right-side ul li i {
  margin-right: 3px;
  color: var(--mainColor);
}

.topbar-right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}


.header-area {
  padding-left: 85px;
  padding-right: 85px;
}
.header-right {
  display: flex;
  justify-content: center;
}
.logo {
	padding-top:3px;
}
.header-right {
  padding-top:4px;
}
.header-icon {
  margin-right: 16px;
  font-size: 20px;
  line-height: 72px;
}
.header-cta p {
  font-size: 14px;
  margin-bottom: 9px;
  line-height: 1;
}
.header-cta h4 {
  color: #002650;
  font-size:18px;
  margin-bottom: 0px;
}
/*.header-icon i {
  color: var(--vti-primary);
  font-size: 30px;
}*/
.header-icon .fa-phone {
    transform: scaleX(-1);
}
.main-menu ul li {
  display: inline-block;
  margin: 0 20px;
  position: relative;
  z-index: 999;
}
.main-menu ul li a {
  font-family: var(--vti-font);
  color: #002650;
  font-weight: 700;
  font-size:18px;
  padding:20px 0px 0;
  display:inline-block;
  text-align: center;
  line-height: 1;
  position: relative;
  text-decoration: none;
  /*text-transform: uppercase;*/
  letter-spacing:1px;	
}
.main-menu ul li a i {
	font-size:32px;
}

.main-menu ul>li:hover>a::before,.main-menu ul > li.active > a::before {
  opacity: 1;
}
.main-menu ul li:hover a,.main-menu ul li.active a {
  color:var(--vti-secondary);
}
.header-top-btn a {
  padding: 16px 12px;
  font-size: 14px;
}
.header-top-btn {
  padding-top:7px;
}
.header-btn a {
  background: #6c5edf;
  padding: 20px 60px;
  border-radius: 30px;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 700;
  color: #fff;
}
.main-menu ul li ul.submenu {
	position: absolute;
	background:var(--vti-primary);
	border-top: 3px solid var(--vti-secondary);
	width:270px;
	top: 110%;
	padding: 15px 0;
	transition: 0.3s;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
	text-align: left;
}
.main-menu ul li:hover>ul.submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.main-menu ul li ul.submenu li {
  margin: 0;
  display: block;
  margin-bottom: 0px;
}
.main-menu ul li ul.submenu li>a::before {
  background: transparent;
}
.main-menu ul li ul.submenu li:hover>a {
  color:var(--vti-secondary);
}
.main-menu ul li ul.submenu li:last-child {
  margin-bottom: 0;
}
.main-menu ul li ul.submenu li a {
	color:#fff;
	font-weight: 700;
	font-size: 16px;
	padding: 12px 20px;
}
.main-menu ul li ul.submenu li ul.submenu {
  left: 100%;
  top: 0;
}
.header-btn a:hover {
  background: #ff63a3;
  color: #fff;
}
.sticky-bar {
	left: 0;
	margin: auto;
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
	z-index: 9999;
	-webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
	-webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
	background: #fff;
}
.sticky-bar .header-cta h4 {
	color: #002650;
}
/*Sub Banner Start Here*/
/*Marquee */
.marquee-area {
	background:var(--vti-secondary);
	padding: 10px 0;
	overflow: hidden;
}
.marquee-wrap {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	width: fit-content;
	animation:marquee 90s linear infinite;
}
.marquee-wrap span {
	display: flex;
	font-family: 'Cuprum', sans-serif;
	font-weight: 300;
	color: #000000;
	align-items: center;
	font-size: 18px;
	line-height: 1;
	margin-right: 20px;
	white-space: nowrap;
}
.marquee-wrap span::before {
	content: "";
	display: block;
	background-image: url(../images/star.svg);
	width: 13px;
	height: 13px;
	margin-right: 20px;
}
@keyframes marquee {
	0% {
		transform: translateX(50%);
	}
	100% {
		transform: translateX(-100%);
	}
}
.marquee-style-two {
	transform: rotate(-3deg);
}
/*About Section*/
.about-section{
	position:relative;
	padding:40px 0px 40px;
	background-position:right center;
	background-repeat:no-repeat;
}
.about-section .image-column{
	position:relative;
	margin-bottom:30px;
}
.about-section .image-column .inner-column{
	position:relative;
	padding-right:70px;
	padding-bottom:90px;
}
.about-section .image-column .year-box{
	position:absolute;
	right:0px;
	top:45px;
	z-index:1;
	width:136px;
	height:136px;
	border-radius:5px;
	text-align:center;
	font-weight:700;
	font-size:32px;
	color:#fff;
	padding-top:15px;
	background-color:var(--vti-secondary);
}
.about-section .image-column .year-box h2{
	position:relative;
	font-weight:800;
	font-size:54px;
	color:#fff;
	margin-bottom:5px;
}
.about-section .image-column .image{
	position:relative;
	border-radius:5px;
	overflow:hidden;
}
.about-section .image-column .image img{
	position:relative;
	width:100%;
	display:block;
}
.about-section .image-column .image-two{
	position:absolute;
	right:0px;
	bottom:0px;
	width:255px;
	border-radius:5px;
	border:5px solid #fff;
	background:#fff;
}
.welcome-carousel {
  margin: 4px;
}

.welcome-slider .owl-nav > div {
	background: #ec008c !important;
	padding:7px 12px !important;
	color: #86bc42;
	/*padding: 0;
	position: static;*/
	text-align: center;
	transform: none;
	/*top: -30px;
	position: absolute;*/
}
.welcome-slider .owl-nav .owl-prev {
	right: 50px;
}
.welcome-slider .owl-nav .owl-next {
	right: 0px;
}

.welcome-carousel:hover .thumb img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.welcome-carousel:hover .body h5{
  color: #0083ff;
}

.welcome-slider-slider .owl-dots {
  text-align: center;
}
.welcome-slider .owl-dots button.owl-dot {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: #aaaaaa;
  outline: none;
  display: inline-block;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  margin: 0 3px;
}
.welcome-slider .owl-dots button.owl-dot.active {
  background: #0083ff;
}

@media all and (max-width: 1199px) {
  
}
@media all and (max-width: 767px) {
}
@media all and (max-width: 599px) {
  .welcome-slider {
    padding-bottom: 40px;
  }
  
}
.about-section .content-column{
	position:relative;
	margin-bottom:30px;
}
.about-section .content-column .inner-column{
	position:relative;
	padding-left:15px;
}

.vti-widget {
    background: #eff3fa;
    padding: 50px 20px 42px 20px;
    position: relative;
    margin: 0 0 40px;
    z-index: 2;
    overflow: hidden;
	border-radius: 9px;
}
.vti-widget:last-child {
    margin-bottom: 0px;
}
.vti-widgetTitle {
    font-size: 24px;
    line-height: 26px;
    color: #140e25;
    margin: 0 0 16px;
}
.vti-widget ul li {
  border-bottom: 1px solid #ede6f1;
  position: relative;
  -webkit-transition: all ease 360ms;
  transition: all ease 360ms;
  overflow: hidden;
  padding: 0;
}
.vti-widget ul li a {
  padding:17px 36px 15px 0;
    padding-left: 0px;
  display: block;
  width: 100%;
  font-size: 16px;
  line-height:18px;
  color: #1c2035;
  font-weight: 500;
  -webkit-transition: all ease 360ms;
  transition: all ease 360ms;
  border-radius: 2px;
  position: relative;
  text-decoration:none;
}
.vti-widget ul li a:hover {color: var(--vti-secondary);}
/*Section Title Two*/
.sec-title-two{
	position:relative;
	margin-bottom:40px;
}
.sec-title-two .title{
	position:relative;
    font-weight:700;
	padding:10px 100px 10px 5px;
	font-size:24px;
	display:inline-block;
	color:var(--vti-secondary);
}
.sec-title-two .text{
	color:var(--vti-black);
	line-height:32px;
	margin-top:25px;
}
.sec-title-two h2{
	line-height:36px;
	font-weight:800;
	color:var(--vti-primary);
	margin-bottom:10px;
	font-size:27px;
}
.sec-title-two.centered .title{
	padding:10px 75px;
}
.sec-title-two.light .text,
.sec-title-two.light h2{
	color:#fff;
}
.sec-title-two.light .title{
	color:#fff;
	border-color:#fff;
}
.sec-title-two.centered{
	text-align: center !important;
}
/*Counter Section CSS*/
.bg2 {
  background:url("../images/counter-bg.jpg");
    background-position-x: 0%;
    background-position-y: 0%;
    background-repeat: repeat;
    background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.vti-counter .sec-title .sub-text {
 color: var(--vti-secondary);
 font-weight: 600;
 font-size: 24px;
 padding-bottom:20px;
}
.vti-counter .sec-title .title {
	color:#fff;
	font-size: 36px;
   line-height: 48px;
}
.vti-counter .sec-title .title strong {
	font-weight:bold;
	color: var(--vti-secondary);
}
.vti-counter .vti-counter-list {
  text-align: left;
  padding: 28px 35px 40px 35px;
  background:var(--vti-primary);
  clip-path: polygon(15% 0%, 100% 0, 100% 20%, 100% 74%, 85% 100%, 0 100%, 0% 80%, 0% 25%);
}
.vti-counter .vti-counter-list .count-text .count-number {
  margin-bottom: 6px;
}
.vti-counter .vti-counter-list .count-text .count-number .vti-count {
  font-size: 42px;
  line-height: 60px;
  font-weight: 700;
  color: #ffb703;
  font-family: "Roboto", Sans-serif;
}
.vti-counter .vti-counter-list .count-text .count-number .prefix {
  font-size: 42px;
  line-height: 60px;
  font-weight: 700;
  color: #ffb703;
  font-family: "Roboto", Sans-serif;
}
.vti-counter .vti-counter-list .count-text .title {
  font-size: 20px;
  font-weight: 500;
  line-height: 18px;
  color: #ffffff;
}
.vti-counter .counter-modify1 .vti-counter-list {
  position: relative;
  padding: 16px 0px 19px 20px;
  background: unset;
  clip-path: unset;
}
.vti-counter .counter-modify1 .vti-counter-list:before {
  position: absolute;
  content: '';
  left: 2px;
  top: 6px;
  bottom: 0;
  width: 70px;
  background: #FFB7031F;
  height: 125px;
}
.vti-counter .vti-counter-list .count-text .title {
  font-size: 18px;
}
.vti-counter .counter-modify2 .vti-counter-list {
  text-align: center;
  padding: 0px 0px 0px 0px;
  background: unset;
  clip-path: unset;
}
/*Courses Area */
.courses-area {
	padding:60px 0px;
	position: relative;
}
.vit-bg-one {
	background:#eff3fa;
}
.courses-img {
	position: relative;
	margin-right: 35px;
}
.courses-img .shape {
  position: absolute;
  left: 0px;
  top: -15px;
}
.courses-content {
	margin: 0 0 0 100px;
}
.courses-content .title {
 font-size:36px;
 line-height: 1.17;
 margin: 0 0 25px;
}
.courses-content .sub-title {
font-size: 27px;
line-height: 1.17;
margin: 0 0 10px;
color: var(--vti-secondary);	
}
.courses-content p {
coursesmargin: 0 0 55px;
}
.courses-list {
	margin: 0 0 5px;
	padding: 0;
}
.courses-list li {
	list-style: none;
	position: relative;
	font-size: 20px;
	color:var(--vti-primary);
	padding-bottom: 15px;
}
.courses-list li p {padding-left:50px; margin-bottom:0;}
.courses-list li::before {
	content: "\f058";
	font-family:"Font Awesome 6 Pro";
	font-weight:300;
	color:var(--vti-primary);
	line-height: 1;
	margin: 0 15px 0 0;
}
.courses-list li li::before {
	content: "\f0a9";
	font-family:"Font Awesome 6 Pro";
	font-weight:300;
	color:var(--vti-secondary);
	line-height: 1;
	margin: 0 15px 0 0;
}
.courses-list li li {
	padding-left:15px;
}
/*Testimonial Style*/
.vti-testimonial .sec-title .sub-text {
  font-weight: 700;
  padding: 10px 100px 10px 5px;
  font-size: 24px;
  display: inline-block;
  color: var(--vti-secondary);
}
.vti-testimonial .testi-item .testi-wrap {
  position: relative;
  background-color:#eff3fa;
  border-radius: 5px 5px 5px 5px;
  padding: 55px 55px 60px 55px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.07);
}
.vti-testimonial .testi-item .testi-wrap .item-content-basic span img {
  width: 60px;
  top: 71%;
  position: absolute;
  left: 80%;
}
.vti-testimonial .testi-item .testi-wrap .item-content-basic p {
  font-size: 19px;
  line-height: 32px;
  font-weight: 400;
  font-style: italic;
  color: #032e42;
  margin: 0 0 51px;
}
.vti-testimonial .testi-item .testi-wrap .testi-content {
  display: flex;
  align-items: center;
}
.vti-testimonial .testi-item .testi-wrap .testi-content .image-wrap img {
  height: 65px;
  width: 65px;
  border-radius: 50%;
  position: relative;
}
.vti-testimonial .testi-item .testi-wrap .testi-content .testi-information {
  padding: 0 0 0 25px;
}
.vti-testimonial .testi-item .testi-wrap .testi-content .testi-information .testi-name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #032e42;
}
.vti-testimonial .testi-item .testi-wrap .testi-content .testi-information .designation {
  color: #676767;
  font-size: 16px;
  font-weight: 400;
}
.vti-testimonial.testi-services-modify1 .testi-item .testi-wrap {
  position: relative;
  background-color: #fbfbfb;
  border-radius: unset;
  padding: 55px 55px 60px 55px;
  box-shadow: unset;
}
.vti-testimonial.testi-services-modify1 .testi-item .testi-wrap .item-content-basic p {
  font-weight: 500;
}
/*Page Header*/
.page-header {
    position: relative;
    display: block;
    padding:95px 0px 95px;
    overflow: hidden;
    z-index: 1;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-attachment: scroll;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.page-header__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background:rgba(var(--thm-black-rgb), 0.75);
    z-index: -1;
}

.page-header__wrapper {
    position: relative;
    display: block;
    z-index: 2;
}

.page-header__content {
    position: relative;
    display: block;
}

.page-header__content h2 {
    color: #ffffff;
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.page-header__menu {
    position: relative;
    display: block;
}

.page-header__menu ul {
    position: relative;
    display: block;
}

.page-header__menu ul li {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.002em;
    padding-left: 3px;
    padding-right: 7px;
    font-family: var(--thm-font);
}

.page-header__menu ul li:first-child {
    padding-left: 0;
}

.page-header__menu ul li:last-child {
    padding-right: 0;
}

.page-header__menu ul li::before {
    position: absolute;
    top: 7px;
    right: 0;
    bottom: 8px;
    width: 1px;
    background: #ffffff;
    transform: rotate(20deg);
    content: "";
}

.page-header__menu ul li:last-child:before {
    display: none;
}

.page-header__menu ul li a {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: 0.002em;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.page-header__menu ul li a:hover {
    color: var(--thm-base);
}
/** gallery-page-section **/
/* Projects Section */
.projects-section {
    position: relative;
    padding: 20px 0 ;
}
.projects-section .sec-title .sub-text {
  font-weight: 700;
  font-size: 24px;
  display: inline-block;
  color: var(--vti-secondary);
}

.projects-section .auto-container {
    max-width: 100%;
}

.projects-section .title-box {
    position: relative;
    max-width: 1170px;
    margin: 0 auto;
}

@media only screen and (min-width:1260px) {
    .projects-section .auto-container {
        padding: 0 30px;
    }
}

.project-block {
    position: relative;
}

.project-block .inner-box {
    position: relative;
    margin-bottom: 30px;
}

.project-block .image {
    position: relative;
    overflow: hidden;
}

.project-block .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    background-color: rgba(34, 34, 49, 0.92);
    opacity: 0;
}

.project-block .inner-box:hover .overlay {
    opacity: 1;
}

.project-block .overlay a {
    width:50px;
    height:50px;
    line-height:44px;
    text-align: center;
    border: 2px solid #fff;
    color: #fff;
    display: inline-block;
    font-size:27px;
}

.project-block .overlay span {
    position: relative;
    display: inline-block;
    transition: .5s;
}

.project-block .inner-box:hover .overlay span {
    transform: rotate(360deg);
}

.project-block .lower-content {
	text-align:center;
    position: relative;
    padding-top:10px;
}

.project-block .category {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
	color: var(--thm-secondary);
}

.project-block h4 {
    position: relative;
    font-size: 20px;
    font-weight:500;
	color: var(--thm-primary);
}

.project-block .link-btn {
    position: absolute;
    right: 20px;
    top: 30px;
    transition: .5s;
    opacity: 0;
	background:#00afef;
}

.project-block .inner-box:hover .link-btn {
    right: 0;
    opacity: 1;
	background:#069cd2;
}

.project-block .link-btn a {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    display: inline-block;
    /*transition: .5s;
    transform: rotate(90deg);*/
}

.project-block .link-btn a:hover {
    background-color: #069cd2;
}
.projects-section a {
	text-decoration: none;
	color: var(--vti-black);
}
.projects-section a:hover {
	text-decoration: none;
	color:var(--vti-base);
}
.projects-section .page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color:var(--vti-base);
  border-color:var(--vti-base);
}
/*FAQ Accordion Page Style*/
.contact-area .sec-title .sub-text {
  font-weight: 700;
  font-size: 24px;
  display: inline-block;
  color: var(--vti-secondary);
}
.pel-address {
  background-color: #ffffff;
  box-shadow: 0px 0px 30px rgba(85, 85, 85, 0.1);
  border-radius: 10px;
  padding: 22px;
  margin-bottom: 25px;
}
.pel-address:last-child {
  margin-bottom: 0;
}
.pel-address ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.pel-address ul li {
  position: relative;
  padding-left: 100px;
}
.pel-address ul li .icon {
  background: rgba(253, 117, 41, 0.05);
  border-radius: 10px;
  width: 76px;
  height: 74px;
  line-height:75px;
  text-align: center;
  position: absolute;
  top: 1px;
  left: 0;
}
.pel-address ul li .icon i {
  font-size: 35px;
  color:var(--vti-secondary);
}
.pel-address ul li p {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
}
.pel-address ul li a {
  display: block;
  text-decoration:none;
  color: #212529;
}
.pel-address ul li a:hover {
  color:var(--vti-secondary);
}

/*Contact Us Page*/
.contact-form {
  margin-left: 25px;
}
.contact-form .form-group ul li {
  color: #ff0000;
}
.contact-form .form-control {
  border: none;
  height: 56px;
  box-shadow: none;
  background-color: #f8f8f8;
  border: 1px solid #f8f8f8;
  padding: 16px 23px;
  margin-bottom: 20px;
  transition: all ease 0.5s;
}
.contact-form .form-control::-moz-placeholder {
  color: #555555;
  -moz-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.contact-form .form-control:-ms-input-placeholder {
  color: #555555;
  -ms-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.contact-form .form-control::placeholder {
  color: #555555;
  transition: all ease 0.5s;
}
.contact-form .form-control:focus {
  border: 1px solid #fd7529;
}
.contact-form .form-control:focus::-moz-placeholder {
  color: transparent;
}
.contact-form .form-control:focus:-ms-input-placeholder {
  color: transparent;
}
.contact-form .form-control:focus::placeholder {
  color: transparent;
}
.contact-form .textarea {
  height: 175px;
}
.contact-form .book-btn {
  width: 100%;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 13px;
  margin-top: 18px;
  border-radius: 5px;
  color: #ffffff;
  transition: all ease 0.5s;
  background: linear-gradient(89.11deg, rgba(253, 117, 41, 0.97) -3.33%, #FF3CA7 108.61%);
  position: relative;
  z-index: 1;
}
.contact-form .book-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(89.11deg, rgba(253, 41, 182, 0.97) -3.33%, #ff943c 108.61%);
  transition: all ease 0.5s;
  border-radius: 5px;
  z-index: -1;
}
.contact-form .book-btn:hover::before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.contact-form .text-danger {
  text-align: center;
  margin-bottom: 0;
  margin-top: 20px;
}

.map-area .map iframe {
  display: block;
  width: 100%;
  height:450px;
  margin-bottom: -8px;
}

/*Footer Section Start Here*/
.footer-section {
  background:var(--vti-primary);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow:hidden;
}
.footer-section .pattern-layer{
	position:absolute;
	left:0px;
	bottom:5px;
	width:276px;
	height:424px;
	background-repeat:no-repeat;
}
.footer-section .pattern-layer-two{
	position:absolute;
	right:0px;
	bottom:18px;
	width:276px;
	height:424px;
	background-repeat:no-repeat;
}
.footer-section .pattern-layer-two {
    animation-name: float_up_down; 
    animation-duration: 5s; 
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    
    -webkit-animation-name: float_up_down; 
    -webkit-animation-duration: 5s; 
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    
    -moz-animation-name: float_up_down; 
    -moz-animation-duration: 5s; 
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    
    -ms-animation-name: float_up_down; 
    -ms-animation-duration: 5s; 
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
}

/* Bob Up Down*/
@-webkit-keyframes float_up_down {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }

  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}
.footer-section .upper-box{
	position:relative;
	margin-bottom:30px;
	padding-top:70px;
    padding-bottom:50px;
}
.footer-section .upper-box h1 {
	padding-bottom: 25px;
	text-align:center;
	color:#fff;
}
.footer-section .upper-box .info-box{
	position:relative;
	margin-bottom:5px;
}
.footer-section .upper-box .info-box .box-inner{
	position:relative;
	padding:25px 30px;
	border-radius:5px;
	background-color:#032855;
}
.footer-section .upper-box .info-box .content{
	position:relative;
	padding-left:50px;
}
.footer-section .upper-box .info-box .icon{
	position:absolute;
	left:0px;
	top:0px;
	line-height:1em;
	font-size:36px;
	font-family:"Font Awesome 6 Pro";
	color:var(--vti-secondary);
}
.footer-section .upper-box .info-box strong{
	position:relative;
	display:block;
	font-weight:800;
	font-size:18px;
	color:#fff;
	margin-bottom:10px;
	font-family:var(--vti-font);
}
.footer-section .upper-box .info-box .text {
	position:relative;
	font-size:16px;
	color:#fff;
}
.footer-section .upper-box .info-box .text a {
	color:#fff;
	text-decoration:none;
}
.footer-section .upper-box .info-box .text a:hover {color:var(--vti-secondary);}
.footer-copyright {
  border-top: 1px solid #074b9f;
  padding:30px 0 10px;
}
.footer-copyright p {
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  color: #c4c5c7;
}
.footer-copyright p a {
	color:#fff;
	text-decoration:none;
}
.footer-copyright p a:hover {color:var(--vti-secondary);}
/*Footer Section Start Here*/