/*  ==========================================================================
    Table of Content
    ==========================================================================
    
    1.0 Slider 
    2.0 Content Blocks
    3.0 Icon Box
    4.0 Portfolio
    5.0 Testimonials
    6.0 Counter
    7.0 Team
    8.0 Blog
    9.0 Sidebar Widgets
    10.0 Video Block
    11.0 Contact Page
    12.0 Brand
    13.0 Footer Widget
    14.0 Clients
    15.0 Scroll To Top

    ==========================================================================
    Construction
    ========================================================================== */

	@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900|Open+Sans:300,400,600,700');

/* ==========================================================================
   1.0 Slider
   ========================================================================== */
:root {
  --site-header-offset: 88px;
}

.slider-section,
.page-heading {
  margin-top: 0;
  padding-top: var(--site-header-offset);
}

.slider-section {
  margin-top: calc(var(--site-header-offset) * -1);
  padding-top: 0;
}

.main-slider{
    overflow: hidden;
}
.main-slider,
.main-slider .owl-stage-outer,
.main-slider .owl-stage,
.main-slider .owl-item,
.main-slider .slide-item {
  min-height: clamp(760px, 78vh, 940px);
}
.main-slider .owl-stage-outer,
.main-slider .owl-stage,
.main-slider .owl-item,
.main-slider .slide-item {
  height: auto;
}
.slide-item.bg-img{
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.main-slider .owl-item:nth-child(1) .slide-item.bg-img {
  background-position: center 32%;
}

.main-slider .owl-item:nth-child(2) .slide-item.bg-img {
  background-position: center 42%;
}

.main-slider .owl-item:nth-child(3) .slide-item.bg-img {
  background-position: center 38%;
}
.slide-item.bg-img:before,
.page-heading:before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 17, 32, 0.96) 0%, rgba(8, 17, 32, 0.9) 36%, rgba(8, 17, 32, 0.72) 68%, rgba(8, 17, 32, 0.56) 100%);
  z-index: 0;
}
.slide-item .display-table,
.page-heading .display-table{
  position: relative;
  z-index: 1;
}

.hero-bootstrap-row {
  min-height: clamp(760px, 78vh, 940px);
  display: flex;
  align-items: center;
  padding-top: calc(var(--site-header-offset) + 8rem);
  padding-bottom: 48px;
}
.slider-content{
  max-width: 48rem;
  padding: 2.5rem 0;
  animation: heroFloatIn 0.9s ease both;
}
.slider-content h1{
    -webkit-animation-duration: 0.8s!important;
    animation-duration: 0.8s!important;
    -webkit-animation-delay: 0;
    animation-delay: 0;
  font-size: clamp(2.25rem, 4.8vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  margin-bottom: 1rem;
  max-width: 14ch;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}
.slider-content .hero-slide-title{
    -webkit-animation-duration: 0.8s!important;
    animation-duration: 0.8s!important;
    -webkit-animation-delay: 0;
    animation-delay: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.05rem, 4.3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin: 0 0 1rem;
  max-width: 15ch;
  text-wrap: balance;
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}
.slider-content p{
    -webkit-animation-duration: 0.8s!important;
    animation-duration: 0.8s!important;
    -webkit-animation-delay: .7s;
    animation-delay: .7s;
  max-width: 58ch;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.98);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.36);
}
.slider-content .hero-slide-title + p,
.page-heading .hero-content h1 + p {
  margin-top: 0;
}
.slider-content .b-btn{
    -webkit-animation-duration: 0.8s!important;
    animation-duration: 0.8s!important;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.main-slider .owl-nav {
  position: absolute;
  inset: 50% 0 auto;
  transform: translateY(-50%);
  pointer-events: none;
}

.main-slider .owl-nav .owl-prev,
.main-slider .owl-nav .owl-next {
  position: absolute;
  top: 0;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(8, 17, 32, 0.38);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.main-slider .owl-nav .owl-prev {
  left: 24px;
}

.main-slider .owl-nav .owl-next {
  right: 24px;
}

.main-slider .owl-nav .owl-prev:hover,
.main-slider .owl-nav .owl-next:hover,
.main-slider .owl-nav .owl-prev:focus,
.main-slider .owl-nav .owl-next:focus {
  background: rgba(22, 163, 74, 0.95);
  border-color: rgba(22, 163, 74, 1);
  color: #ffffff;
  transform: translateY(-2px);
}

.main-slider .owl-nav .glyphicon {
  font-size: 18px;
  line-height: 1;
}

@keyframes heroFloatIn {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* ==========================================================================
   2.0 Content Blocks
   ========================================================================== */
.content-block{
	z-index: 1;
}
.bg-img-wrap{
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	z-index: -1;
}
.bg-img-wrap.w-55{
  width: 55%;
}
.bg-color.pos-right,
.bg-img-wrap.pos-right{
	left: auto;
	right: 0;
}
.bg-img-wrap div{
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.bg-img-wrap div.atts-scroll{
	background-attachment: scroll;
}
@media all and (max-width: 767px) {
  .bg-img-wrap.w-55,
	.bg-img-wrap{
		position: inherit;
		width: 100%;
		height: auto;
		min-height: 250px;
	}
}
.bg-color{
	width: 50%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
}

/* ==========================================================================
   3.0 Icon Box
   ========================================================================== */
.icon-wrap{
    margin: 0 auto;
    position: relative;
}
.service-box-2:hover{
  background-color: var(--color-brand);
    transition: all 0.5s ease-in-out;
}
.service-box-2:hover h4{
    color: #fff;
}
.service-box-2:hover p{
    color: #eee;
}
.service-box-2:hover .read-more{
    color: #eee;
}
.service-box{
    padding-left: 80px;
    position: relative;
}
.service-box i{
    position: absolute;
    top: 0;
    left: 0;
}
.service-item{
  position: relative;
  overflow: hidden;
}
.service-item img{
  transition: all 0.8s ease-in-out;
}
.service-item:hover img{
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  transition: all 3s ease-in-out;
}
.service-item .post-info{
  /*background-color: rgba(34,34,34,0.2);*/
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.service-item .post-info a:hover{
    text-decoration: underline;
    opacity: 1;
}

.service-box{
    position: relative;
}
.service-section .services-wrap,
.why-us-list,
.services-items {
  margin-left: -15px;
  margin-right: -15px;
}
.service-section .services-wrap,
.why-us-section .services-wrap,
.services-items,
.trust-band .row,
.partner-block .row,
.widget-section .row,
.content-block .row.g-4,
section .row.g-4 {
  display: flex;
  flex-wrap: wrap;
}

.service-section .services-wrap > [class*="col-"],
.why-us-section .services-wrap > [class*="col-"],
.services-items > [class*="col-"],
.trust-band .row > [class*="col-"],
.partner-block .row > [class*="col-"],
.widget-section .row > [class*="col-"],
.content-block .row.g-4 > [class*="col-"],
section .row.g-4 > [class*="col-"] {
  display: flex;
}

.service-section .services-wrap > [class*="col-"] > *,
.why-us-section .services-wrap > [class*="col-"] > *,
.services-items > [class*="col-"] > *,
.trust-band .row > [class*="col-"] > *,
.partner-block .row > [class*="col-"] > *,
.widget-section .row > [class*="col-"] > *,
.content-block .row.g-4 > [class*="col-"] > *,
section .row.g-4 > [class*="col-"] > * {
  width: 100%;
}
.service-box i{
    position: absolute;
    top: 0;
    left: 0;
}
.service-section .service-box,
.services-items .service-box,
.why-us-list .service-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px 28px 92px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-section .service-box:hover,
.services-items .service-box:hover,
.why-us-list .service-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(22, 163, 74, 0.35);
}
.service-section .service-box:before,
.services-items .service-box:before,
.why-us-list .service-box:before,
.feature-card:before,
.split-card:before,
.stat-card:before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.24), rgba(255,255,255,0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.service-section .service-box:hover:before,
.services-items .service-box:hover:before,
.why-us-list .service-box:hover:before,
.feature-card:hover:before,
.split-card:hover:before,
.stat-card:hover:before {
  opacity: 1;
}
.service-section .service-box i,
.why-us-list .service-box i {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-brand-soft);
  color: var(--color-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  top: 32px;
  left: 28px;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
.service-section .service-box i.bi,
.why-us-list .service-box i.bi {
  font-size: 24px;
  line-height: 1;
}
.service-section .service-box:hover i,
.why-us-list .service-box:hover i {
  transform: translateY(-2px) scale(1.04);
}
.service-section .service-box h4,
.services-items .service-box h4,
.why-us-list .service-box h4 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.3;
}
.service-section .service-box p,
.services-items .service-box p,
.why-us-list .service-box p {
  color: var(--color-body);
  margin-bottom: 18px;
  line-height: 1.75;
}
.services-items .service-box{
    padding: 36px 28px;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}
.services-items .service-box:hover h4,
.services-items .service-box:hover a{
    color: #fff;
    transition: all 0.3s ease-in-out;
}
.services-items .service-box:hover p{
    color: rgba(255, 255, 255, 0.98);
    transition: all 0.3s ease-in-out;
}
.service-box .hover-img{
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}
.services-items .service-box:hover .hover-img{
    opacity: 1;
    visibility: visible;
}
.services-items .service-box.hover-yellow:hover{
  background-color: var(--color-brand);
    transition: all 0.3s ease-in-out;
}
.services-items .hover-yellow:hover p{
    color: #fff;
    transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   4.0 Portfolio
   ========================================================================== */
.filter-menu{
    display: inline-block;
    
}
.filter-menu li{
    border-top: 2px solid #ddd;
    border-bottom: 2px solid #ddd;
	display: inline-block;
    padding: 6px 10px;
    margin-left: -5px;
	cursor: pointer;
	color: #262626;
	opacity: 0.7;
	font-weight: 600;
    overflow: hidden;
	text-transform: uppercase;
	font-size: 14px;
	transition: all 0.3s ease-in-out;
    position: relative;
}
.filter-menu li.active{
  border-top: 2px solid var(--color-brand);
  border-bottom: 2px solid var(--color-brand);
	transition: all 0.3s ease-in-out;
}
.filter-menu li:after{
	content: '|';
	position: absolute;
	right: -2px;
    top: 5px;
}
.filter-menu li:last-child:after{
	display: none;
}
.portfolio-box{
	position: relative;
	height: inherit;
	overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: #0f172a;
}
.portfolio-box img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
}
.portfolio-box:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}
.portfolio-box .overlay{
  background: linear-gradient(180deg, rgba(8,17,32,0.18) 0%, rgba(8,17,32,0.56) 45%, rgba(8,17,32,0.9) 100%);
	width: 100%;
	height: 100%;
	position: absolute;
	transition: all 0.3s ease-in-out;
}
.portfolio-box .overlay:hover{
    text-decoration: none;
}
.portfolio-box .overlay .portfolio-content{
	display: inline-block;
	width: auto;
	height: auto;
	position: absolute;
	right: 35px;
	bottom: 25px;
}
.portfolio-box .overlay .portfolio-content h4{
	margin: 0 0 -3px;
  line-height: 1.35;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.portfolio-box .overlay .portfolio-content p{
	margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.97);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
	display: inline-block;
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
	opacity: 0;
	transition: all 0.5s ease-in-out;
}
.portfolio-box:hover .overlay{
	visibility: visible;
	opacity: 1;
}

.page-heading {
  position: relative;
  background-size: cover;
  background-position: center center;
  min-height: clamp(500px, 62vh, 760px);
  height: auto;
}

.hero-content,
.page-heading .hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
  animation: heroFloatIn 0.9s ease both;
  padding-top: 32px;
  padding-bottom: 2.5rem;
}

.page-heading .hero-content h2 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  color: #fff;
  max-width: 15ch;
  text-wrap: balance;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.44);
}

.page-heading .hero-content p {
  max-width: 58ch;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.985);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.38);
}

.partner-block,
.trust-band {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.brand-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  min-height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.brand-item img {
  width: auto;
  min-width: 100px;
  max-width: 210px;
  max-height: 78px;
  object-fit: contain;
  transition: transform 0.35s ease, opacity 0.35s ease, filter 0.35s ease;
  filter: grayscale(15%);
}

.brand-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.brand-item:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
  opacity: 1;
}

.widget-section {
  background: linear-gradient(180deg, #081120 0%, #0f172a 100%);
  padding: 80px 0 56px;
}

.widget-section h4 {
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 1.35;
  color: #fff;
}

.skip-main-target {
  scroll-margin-top: 110px;
}

.widget-box,
.footer-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.widget-box:hover,
.footer-card:hover {
	transform: translateY(-4px);
  border-color: rgba(22, 163, 74, 0.22);
	background: rgba(255,255,255,0.05);
}

.addr-info li,
.footer-addr li,
.widget-section p,
.widget-section a {
  color: rgba(255,255,255,0.96);
}

.widget-section a,
.footer-section a,
.footer-nav-list a,
.footer-addr a {
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1.5px;
}

.footer-section {
  background: #050b14;
  padding: 24px 0;
}

.scroll-to-top {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-brand), #22c55e);
  color: #081120;
  box-shadow: 0 16px 32px rgba(22, 163, 74, 0.24);
  right: 30px;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-to-top:hover {
	transform: translateY(-4px);
  box-shadow: 0 20px 36px rgba(22, 163, 74, 0.3);
}

.scroll-to-top .bi {
  font-size: 20px;
  line-height: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.24);
  backdrop-filter: blur(8px);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  margin-bottom: 18px;
}

.section-intro {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-intro h2 {
  margin-bottom: 0;
}

.section-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-body-soft);
  margin-top: 18px;
}

.stat-card,
.feature-card,
.contact-panel,
.split-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card h3,
.split-card h4,
.contact-panel h4,
.stat-card h3,
.widget-box h4,
.footer-card h4 {
  line-height: 1.3;
}

.stat-card:hover,
.feature-card:hover,
.contact-panel:hover,
.split-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
  border-color: rgba(22, 163, 74, 0.24);
}

.stat-card h3,
.feature-card h3 {
  font-size: 34px;
  margin-bottom: 8px;
}

.stat-card p,
.feature-card p {
  margin-bottom: 0;
  color: var(--color-body-soft);
  line-height: 1.75;
}

.split-card p,
.contact-panel p,
.widget-box p,
.footer-card p,
.addr-info li,
.footer-nav-list a {
  line-height: 1.75;
}

.contact-panel .addr-info.text-dark li,
.contact-panel .addr-info.text-dark,
.addr-info.addr-dark li,
.addr-info.addr-dark span {
  color: var(--color-heading);
}

.cta-section {
  background: linear-gradient(135deg, #15803d 0%, #22c55e 100%);
  padding: 48px 0;
}

.cta-section h2 {
  color: #0f172a;
}

.cta-section .btn-outline-light.brand-outline {
  border-color: #0f172a;
  color: #0f172a;
}

.cta-section .btn-outline-light.brand-outline:hover,
.cta-section .btn-outline-light.brand-outline:focus-visible {
  background: #0f172a;
  color: #ffffff;
}

.cta-section .container,
.cta-section .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.footer-nav-list a {
  color: rgba(255,255,255,0.96);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.3);
}

.footer-nav-list a:hover,
.footer-nav-list a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.9);
}

.brand-item.is-static {
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: inherit;
  border: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.brand-item.is-static:hover {
  transform: none;
  box-shadow: var(--shadow-sm);
}

.portfolio-box .overlay:focus-visible,
.scroll-to-top:focus-visible,
.slicknav_btn:focus-visible,
.slicknav_nav a:focus-visible {
  outline: 3px solid rgba(22, 163, 74, 0.9);
  outline-offset: 3px;
}

.slicknav_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  border-radius: 14px;
}

.slicknav_menu .slicknav_menutxt {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-right: 10px;
}

.slicknav_nav {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.slicknav_nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
}

.metric-card .display-6 {
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.35rem;
  font-size: 3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}

.slider-section .btn,
.page-heading .btn {
  min-height: 48px;
  padding: 0.875rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.slider-section .btn-brand,
.page-heading .btn-brand {
  color: #081120;
}

.slider-section .btn-outline-light.brand-outline,
.page-heading .btn-outline-light.brand-outline {
  color: #fff;
}

.slider-content,
.page-heading .hero-content {
  width: 100%;
}

.page-heading .hero-content h1,
.page-heading .hero-content h2 {
  text-wrap: balance;
}

.page-heading .hero-content h1 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: 1rem;
  color: #fff;
  max-width: 15ch;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.44);
}

.page-heading .hero-content > *:last-child,
.slider-content > *:last-child {
  margin-bottom: 0;
}

.main-slider .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
}

.project.owl-carousel .owl-stage,
.project.owl-carousel .owl-item {
  display: flex;
}

.project.owl-carousel .portfolio-box {
  width: 100%;
}

.widget-section .container > .row {
  align-items: stretch;
}

.footer-section p {
  line-height: 1.7;
}

@media (prefers-reduced-motion: reduce) {
  .slider-content,
  .hero-content,
  .slide-item .display-table,
  .page-heading .display-table {
    animation: none !important;
  }

  .slider-section .btn,
  .page-heading .btn,
  .hero-actions,
  .slider-content h1,
  .slider-content p {
    transition: none !important;
  }
}

.content-card-body {
  padding: 2rem;
}
.portfolio-box:hover .overlay .portfolio-content h4{
	-webkit-transform: translateX(0);
	transform: translateX(0);
	transition-delay: 0.4s;
	opacity: 1;
}
.portfolio-box:hover .overlay .portfolio-content p{
	-webkit-transform: translateX(0);
	transform: translateX(0);
	transition-delay: 0.6s;
	opacity: 1;
}


/* ==========================================================================
   5.0 Testimonials
   ========================================================================== */
.testi-content{
	margin-left: 30px;
}
.testimonial-item img{
	width: 100px!important;
	height: 100px;
	margin: 0 auto;
}
.review-box-2 img{
	margin-top: -90px;
} 

.review-box-3{
    position: relative;
    border: 1px solid #eaeaea;
    background-color: #f7f7f7;
}
.review-box-3:before{
    background-color: #f7f7f7;
    content: '';
    width: 25px;
    height: 25px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 60px;
    bottom: -13px;
    border-bottom: 1px solid #eaeaea;
    border-right: 1px solid #eaeaea;
}
.review-item .client-info {
    position: relative;
    padding-left: 130px;
    height: 80px;
    padding-top: 20px;
}
.review-item .client-info img{
    height: 80px;
    width: 80px !important;
    border-radius: 50%;
    position: absolute;
    left: 35px;
    bottom: 0;
}
.rating {
    margin-left: 5px;
}
.rating li{
    display: inline-block;
    margin-right: -1px;
    font-size: 13px;
}
.review-box-4 .testi-content{
    padding-left: 75px;
    position: relative;
}
.review-box-4 .testi-content .rank{
    font-size: 16px;
    padding: 15px 25px;
    border-radius: 50%;
  border: 2px solid var(--color-brand);
    position: absolute;
    left: 0;
    bottom: 10px;
}
/* ==========================================================================
   6.0 Counter
   ========================================================================== */
.counter-box-2{
    width: 150px;
    height: 150px;
    margin: 0 auto;
    position: relative;
    padding: 40px 0;
    z-index: 1;
}
.counter-box-2:before{
    border: 1px solid #fff;
    content: '';
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.counter-box-3{
    border: 2px solid #fff;
    width: 180px;
    height: 180px;
    margin: 0 auto;
    position: relative;
    padding: 50px 0;
    border-radius: 50%;
}

/* ==========================================================================
   7.0 Team
   ========================================================================== */
.team-box{
	position: relative;
}
.team-box .overlay{
	background-color: rgba(34,34,34,0.8);
	display: inline-block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	visibility: hidden;
	opacity: 0;
	transition: all 0.3s ease-in-out;
}
.team-box:hover .overlay{
	visibility: visible;
	opacity: 1;
}
.team-box p,
.team-box h4{
	margin: 0;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	transition: all 0.5s ease-in-out;
	opacity: 0;
}
.team-box:hover p,
.team-box:hover h4{
	-webkit-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
.team-box:hover h4{
	transition-delay: 0.4s;
}
.team-box:hover p{
	transition-delay: 0.5s;
}
.team-box .social-icon-white{
	display: block;
	width: 100%;
	height: auto;
	position: absolute;
	left: 0;
	bottom: 30px;
}

/* ==========================================================================
   8.0 Blog
   ========================================================================== */
.article-box{
  padding-bottom: 5px;
}
.article-box .post-thumb{
  max-height: 220px;
}
.article-box .entry-content .date{
  display: block;
  color: #262626;
  opacity: 0.6;
}
.article-box .entry-content .date:hover{
  color: #262626;
  opacity: 0.9;
  text-decoration: none;
}
.post-thumb{
  position: relative;
}
.post-thumb .video-post{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
/* Pagination */
.pagination-wrap li{
  display: inline-block;
  margin: 0 5px;
}
.pagination-wrap li a{
    border: 1px solid #ddd;
  display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
  color: var(--color-body-soft);
  font-weight: 600;
}
.pagination-wrap li a:hover{
  opacity: 1;
  text-decoration: none;
}
.pagination-wrap li a.active{
  background-color: var(--color-brand);
    border: 1px solid var(--color-brand);
    color: #fff;
}

/* Social Share */
.social-share-wrap{
  overflow: hidden;
  margin: 40px 0;
}
.share-icon{
  display: inline-block;
  margin-left: 10px;
}
.share-icon li{
  display: inline-block;
  margin-right: 10px;
}
.share-icon li:nth-child(1) a{ background-color: #3B5998; }
.share-icon li:nth-child(2) a{ background-color: #1DCAFF; }
.share-icon li:nth-child(3) a{ background-color: #DB4A39; }
.share-icon li a{
  display: inline-block;
  font-size: 14px;
  color: #fff;
  padding: 5px 10px;
}
.share-icon li a:hover{
  text-decoration: none;
  opacity: 0.8;
}

/* 9.0 Sidebar Widgets
   ==========================*/
.sidebar-widget{
  overflow: hidden;
}
/* Search Form */
.search-form{
  position: relative;
}
.search-form .form-control{
  box-shadow: none;
  width: 100%;
  display: block;
  border: 1px solid #ddd;
  clear: #444;
  height: auto;
  padding: 15px 20px;
  border-radius: 3px;
  padding-right: 60px;
}
.search-form .search-btn{
    background-color: transparent;
    font-size: 24px;
  color: var(--color-body-soft);
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 13px 0;
    opacity: 0.6;
}
.search-form .search-btn:focus,
.search-form .search-btn:hover{
  opacity: 1;
}
.search-form input::-webkit-input-placeholder{
  color: #6b7c93 !important;
}
.search-form input:-moz-placeholder{ /* Firefox 18- */
  color: #6b7c93 !important;  
}
.search-form input::-moz-placeholder{  /* Firefox 19+ */
  color: #6b7c93 !important;  
}
.search-form input:-ms-input-placeholder{  
  color: #6b7c93 !important;  
}

/* Category List */
.cat-list li{
  display: block;
}
.cat-list li:last-child a{
  border-bottom: 1px solid #ddd;
}
.cat-list li a{
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
  border-left: 1px solid #ddd;
    text-transform: uppercase;
    font-weight: 600;
  display: block;
  padding: 10px 18px;
  color: #444;
  font-size: 14px;

}
.cat-list li a:hover{
  text-decoration: none;
  background-color: var(--color-brand);
    color: #fff;
}

/* Tag List */
.tag-list li{
  display: inline-block;
  margin: 3px;
}
.tag-list li a{
  background-color: #111;
  display: inline-block;
  padding: 5px 10px;
  font-size: 14px;
  color: #fff;
}
.tag-list li a:hover{
  background-color: var(--color-brand);
  color: #fff;
  text-decoration: none;
}

/* Recent Posts */
.recent-post h4 a:hover{
    opacity: 1;
    text-decoration: underline;
}

/* ==========================================================================
   10.0 Video Block
   ========================================================================== */
.video-block{
    z-index: 1;
}
.video-box{
  position: relative;
}
.video-box .overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.video-content{
  padding: 33px 0;
}
.video-bg-image{
    width: 45%;
    height: 100%;
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
}
.video-bg-image img{
    height: 100%;
}

/* ==========================================================================
   11.0 Contact Page
   ========================================================================== */
.form-control {
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 3px;
}
.form-control:focus,
.form-control:hover{
    outline: none;
}
.form-control{
	box-shadow: none;
}
.form-control:focus,
.form-control:hover{
	box-shadow: none;
	outline: none;
	border: 1px solid #bbb;
}
.cf-wrapper .form-control{
    background: none;
    border: none;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
    color: #282828;
    padding: 10px;
}
.form-box .form-control{
    border: 1px solid #ddd;
}
.cf-wrapper .form-control:hover,
.cf-wrapper .form-control:focus{
    border-bottom: 1px solid #999;
    box-shadow: none;
}
#form-messages{
    display: none;
}
#form-messages.alert-danger,
#form-messages.alert-success{
    display: block;
}
.cf-wrapper input::-webkit-input-placeholder,
.cf-wrapper textarea::-webkit-input-placeholder{
  color: #64748b !important;
}
.cf-wrapper input:-moz-placeholder,
.cf-wrapper textarea:-moz-placeholder{ /* Firefox 18- */
  color: #64748b !important;  
}
.cf-wrapper input::-moz-placeholder,
.cf-wrapper textarea::-moz-placeholder{  /* Firefox 19+ */
  color: #64748b !important;  
}
.cf-wrapper input:-ms-input-placeholder,
.cf-wrapper textarea:-ms-input-placeholder{  
  color: #64748b !important;  
}

/* Campaign Form */
.campaign-form .form-control{
	background-color: #fff;
	border: 1px solid #ccc;
	box-shadow: none;
	color: #444;
	height: 60px;
	width: 100%;
	border-radius: 3px;
}
.reg-form .form-control:focus,
.campaign-form .form-control:focus{
	outline: none;
}
.campaign-form .b-btn{
	width: 100%;
	font-weight: 500;
	font-family: 'Montserrat', sans-serif;
	padding: 15px 0;
}

.campaign-form input::-webkit-input-placeholder{
  color: #64748b !important;
}
.campaign-form input:-moz-placeholder{ /* Firefox 18- */
  color: #64748b !important;  
}
.campaign-form input::-moz-placeholder{  /* Firefox 19+ */
  color: #64748b !important;  
}
.campaign-form input:-ms-input-placeholder{  
  color: #64748b !important;  
}

/* Google Map */
.google-map{
  width: 100%;
  height: 400px;
}

/* ==========================================================================
   12.0 Brand
   ========================================================================== */
.brand-item a{
    opacity: 0.3;
    display: block;
}
.brand-item a:hover{
    opacity: 1;
}
/* ==========================================================================
   13.0 Footer Widget
   ========================================================================== */
.addr-info li{
	color: #fff;
    margin-bottom: 5px;
}
.addr-info.footer-addr li{
	color: #fff;
    margin-bottom: 13px;
}
.addr-info li:last-child{
    margin: 0;
}
.addr-info li span{
	color: #fff;
}
.addr-info.addr-dark li span{
    color: #262626;
}
.addr-info.addr-dark li,
.addr-info.text-dark li{
  color: #262626;
}
.widget-links li a{
    color: #fff;
    opacity: 0.6;
}
.widget-links-dark li a{
    color: #262626;
    opacity: 0.6;
}

/* ==========================================================================
   14.0 Clients
   ========================================================================== */
.partner-block-2 img{
	padding: 0 40px;
}

/* ==========================================================================
  15.0 Scroll To Top
   ========================================================================== */
.scroll-to-top{
	display: block;
	text-align: center;
  background-color: var(--color-brand);
  font-size: 14px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	border-radius: 3px;
	position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 999;
}
.scroll-to-top:hover{
    color: #fff;
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
	text-decoration: none;
}
