/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Montserrat",  system-ui, -apple-system, "Open Sans", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d6088; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #000000;  /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #000000;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
ol,ul{margin:0;padding:0}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #000;
  background: #fff;
  padding: 8px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 80px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 16px;
  padding: 8px 25px;
  margin: 0 0 0 30px;border:1px solid #0d6088;
  border-radius: 8px;line-height:28px;
  transition: 0.5s all ease;font-weight:600;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: #0d6088;
  background: #fff;
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    justify-content: center;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
    display: none;
  }

  .header .mobile-phone{
    display:none;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #000000;
  --nav-color: #000000;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(255, 255, 255, 1);box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 25px;
    font-size: 18px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px; 
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;color:#000;
  }
.navmenu a span.icon{
    font-size: 14px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;color:#0d6088;margin-right:8px;
  }
  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #0d6088;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 10px;
    z-index: 99;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 16px;
    text-transform: none;
    color:#000;
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #0d6088;
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 6px 10px;
    font-family: var(--nav-font);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #0d6088;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: transparent;
    border: 0;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer-area {
    padding: 40px 0 20px;
    background: #2d2d2c;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.footer-contact-info {
    background: #212121;
    padding: 50px 50px 50px;
    position: relative;
    margin-top: 0;
    z-index: 1;
}

p.footer-desc {
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    font-weight: 500;
    font-family: "Montserrat";
}
.footer-didget-icon {
    float: left;
    margin-right: 10px;
}
.footer-didget-icon span i {
    color: #FF5E15;
}
.footer-widget-contact p {
    font-size: 14px;
    color: #fff;
    font-weight: 300;
    font-family: "Montserrat";
    overflow: hidden;
}

.footer-widget-social-icon ul li {
    display: inline-block;
    margin-right: 8px;
    margin-top: 14px;
}

.footer-widget-social-icon ul li a {
    display: inline-block;
    width: 32px;
    height: 32px;
    background-color: transparent;
    line-height: 34px;
    text-align: center;
    color: #fff;border-radius:4px;
    font-size: 15px;border:1px solid #fff;
}

.footer-widget-social-icon ul li a:hover{
    background:#0d6088;color:#fff;border:1px solid #0d6088;
}

.footer-widget-content.style-left {
    position: relative;
    margin-left: 40px;
}

.footer-widget-titel h4 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Montserrat";
    margin-bottom: 35px;position:relative
}

.footer-widget-titel h4:after {
    position: absolute;
    content: "";
    left: 0;
    top: 36px;
    width: 50px;
    height: 3px;
    background-color: #fff;
}
.footer-widget-menu ul li{list-style:none;}
.footer-widget-menu ul li a {
    display: inline-block;
    transition: 0.5s;
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    font-family: "Montserrat";
    margin-bottom: 14px;
}

.footer-widget-menu ul li a:hover{
    color:#00a7e0;font-weight:500;
}
.footer-widget-menu ul li{color:#fff}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 75px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 42px;
  height: 42px;
  border-radius: 100%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 22px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 25px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: #14176c;
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  text-transform: none;
  position: relative;color:#14176c;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 90px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h1 {
  margin: 0;
  font-size: 52px;
  font-weight: 700;
  line-height: 60px;color:#14176c;margin-bottom:10px;
}
.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 24px 8px 24px;
  border-radius: 8px;
  transition: 0.5s;border:2px solid #0d6088;
}

.hero .btn-get-started:hover {
  color: #0d6088;
  background: transparent;border:2px solid #0d6088;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;border:2px solid #0d6088;
  color: #0d6088;background:transparent;
  font-weight: 600;padding: 8px 24px 8px 24px;border-radius: 8px;
}

.hero .btn-watch-video:hover {
 color: #fff;
  background: #0d6088;border:2px solid #0d6088;
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;padding:4px 15px;letter-spacing:0;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
#Counter 
--------------------------------------------------------------*/
.counters{margin:20px auto 0 auto;background:#fff;-webkit-box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
  -o-box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
  box-shadow: -7px 7px 0px 0px rgba(0, 0, 0, 0.1);
  border: 0.8px solid #DADADA;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  -ms-border-radius: 12px;
  border-radius: 12px;
padding:20px 0;}
.common-box {
    
    padding:0 10px;
    text-align: center;
    margin-bottom: 16px;
}
.bdr-rgt { border-right: 1px solid #7b8895;}
.counter-num {
    font-size: 40px;
    line-height: normal;
    font-weight: 900;color:#0d6088;margin-bottom:10px;
}
.counter-text {
    font-size: 14px;
    line-height: normal;
    color: #000;font-weight:500;
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .section-title{padding-bottom:0;}
.clients {
  padding: 12px 0 40px 0;
}

.clients .swiper {
  padding: 20px;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}
.clients .swiper-slide img.img-fluid{box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);border-radius:10px;padding:3px 6px;}
.brdrgt{border-right:2px solid #d9dbdb;margin:0 20px 0 0}
.txthdbolder{font-weight:700}
.txtsubbold{font-weight:500;font-size:15px;line-height:22px;}
.colornavy{color:#14176c}
.spacer-img{margin:6px 0}
/*--------------------------------------------------------------
EXPERIENCE {{env('APP_NAME')}}
--------------------------------------------------------------*/
.exp-doc{background:transparent;position: relative;padding:50px 0 20px 0;}
.position-relative {position: relative !important;}
.center-element {margin:36% auto;}
.wht-box{padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;text-align:center;
    z-index: 1;box-shadow: 0px 0px 25px rgba(56, 152, 226, 0.3);
}
/*.bl-box{padding:30px 30px 4px 30px;background:#e5f3fd;border-radius:10px;}*/
.wht-box h3{font-size:24px;color:#000;line-height:32px;font-weight:800;}
.wht-box p{font-size:15px;line-height:24px;color:#333;font-weight:500;}
.wht-box a.readmore{color:#0d6088;font-weight:700;font-size:18px;line-height:30px;text-decoration:none;text-transform:uppercase;position: relative;z-index: 1;overflow: hidden;display:inline-block;}
.wht-box:hover a.readmore{color:#0d6088;text-decoration:none;}
.wht-box a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background-color: #0d6088;
  z-index: -1;
  width: 0;
  height: 2px;
  transition: .5s;
}
.wht-box:hover a::before {
  width: 118px;
  z-index: 1;
}
.wht-box .posrgt1{position:relative;margin-top:0;height:150px;}
.wht-box .posrgt{position:relative;margin-top:0;height:150px;}
.imagewrapper{position: relative;
    z-index: 0;
    right: 0;
    bottom: -32px;
    margin-top: -146px;}
/*--------------------------------------------------------------
Testtimonial section
---------------------------------------------------------------*/
/* Testimonial */
	.testimonial-style-one-area {
		text-align: center;
	}

	.testimonial-thumb::after {
		height: 500px;
		width: 500px;
	}

	.testimonial-thumb .thumb-item img {
		max-width: 490px;
	}

	.testimonial-thumb .thumb-item img {
		border-radius: 0 0 400px 400px;
		position: relative;
	}

	.testimonial-thumb .thumb-item {
		margin-bottom: 50px;
		margin-top: -35px;
	}

	.testimonial-thumb .mini-shape {
		right: 10%;
		top: 35%;
	}

	.testimonial-style-one .provider {
		justify-content: center;
	}
.testimonial-thumb .mini-shape {
		right: 0;
	}

	.testimonial-thumb .thumb-item {
		margin-bottom: 30px;
		text-align: center;
	}

	.testimonial-style-one {
		text-align: center;
	}

	.testimonial-style-one .provider {
		justify-content: left;
		text-align: left;
	}

	.testimonial-thumb .thumb-item > img {
		height: 474px;
		border-radius: 0 0 480px 485px;
	}

	.testimonial-thumb .thumb-item {
		border-radius: inherit;
		margin-top: -30px;
	}
	.default-padding {
  padding-top: 60px;
  padding-bottom: 0;
}
.testimonial-thumb .thumb-item {
	overflow: hidden;
	border-radius: 0 0 480px 485px;
}

.testimonial-thumb {
	position: relative;
	z-index: 1;
}

.testimonial-thumb::after {
	position: absolute;
	left: 50%;
	bottom: 5px;
	content: "";
	height: 400px;
	width: 400px;
	transform: translateX(-50%);
	background: #c4ddf5;
	z-index: -1;
	border-radius: 50%;
}
.testimonial-style-one-area .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
	padding-bottom:0;text-align:left;
    text-transform: none;
    position: relative;
    color: #14176c;
}
.testimonial-style-one-area p{text-align:left;font-size:16px;}
.secondary .testimonial-thumb::after {
	background: linear-gradient(90deg, var(--dark)  0%, var(--color-secondary) 100%);
}

.testimonial-thumb .mini-shape {
	position: absolute;
    right: -46px;
    top: 20%;
}

.testimonial-style-one p {
	font-size: 24px;color:#333;
	line-height: 1.5;text-align:justify;
}

.testimonial-style-one h4 {
	margin-bottom: 7px;
	font-weight: 600;color:#000;
}

.testimonial-style-one .provider {
	border-top: 2px solid #000;
	margin-top: 25px;
	display: flex;
	align-items: center;
	padding-top: 30px;
}

.testimonial-style-one .provider i {
	display: inline-block;
	font-size: 80px;
	transform: rotate(180deg);
	color: #000;
	margin-right: 18px;
	position: relative;
	top: -10px;
}
/*new*/
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper, .swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.bg_op_1 {
  background:#292f3b;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;
  padding:0;
}
.object-fit-cover {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.object-fit-cover-center {
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.pd_left_70 {
  padding-left: 70px !important;
}
.pd_top_70 {
  padding-top: 70px !important;
}
.pd_zero {
  padding: 0px !important;
}
.title_all_box {
  position: relative;
}
.title_all_box h2{font-size:42px;color:#fff;font-weight:700;margin-bottom:20px;font-family: 'Montserrat';}
.testimonial_sec {
  position: relative;
}
.testimonial_sec.style_one .testimonial_box {
  position: relative;
  margin-bottom: 35px;
}
.testimonial_sec.style_one .testimonial_box .rating {
  position: relative;
  margin-bottom: 20px;
}

.testimonial_sec.style_one .testimonial_box .authour_details {
  position: relative;
  margin-bottom: 20px;
}
.testimonial_sec.style_one .testimonial_box .authour_details .details {
  position: relative;
  padding-top: 5px;
}
.testimonial_sec.style_one .testimonial_box .details h2 {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  display: block;
  line-height: 30px;font-family: 'Montserrat';margin-bottom:5px;
}
.testimonial_sec.style_one .testimonial_box .details span {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 5px;font-family: 'Montserrat';
}
.testimonial_sec.style_one .testimonial_box .authour_details.image_yes {
  position: relative;
}
.testimonial_sec.style_one .testimonial_box .authour_details.image_yes .details {
  position: relative;
  margin-left: 90px;
}
.testimonial_sec.style_one .testimonial_box .authour_details.image_yes .image {
  float: left;
}
.testimonial_sec.style_one .testimonial_box .authour_details.image_yes .image img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.testimonial_sec.style_one .testimonial_box .comment {
  position: relative;
  font-size: 15px;
  line-height: 28px;
  font-weight: 400;
  font-family: 'Montserrat';margin-bottom:20px;
}
.testimonial_sec.style_one .arrows {
  position: absolute;
  width: 220px;
  display: inline-block;
  bottom: -4px;
}
.testimonial_sec.style_one .arrows .next-single-one, .testimonial_sec.style_one .arrows .prev-single-one {
  position: relative;
  top: inherit;
  left: inherit;
  right: inherit;
  display: inline-block;font-size:34px;color:#fff;
}
.testimonial_sec.style_one .arrows .next-single-one::before, .testimonial_sec.style_one .arrows .prev-single-one::before {
  width: auto;
  height: auto;
  line-height: inherit;
  background: none;
  box-shadow: inherit;
  font-size: 32px;
}
.testimonial_sec.style_one .arrows .next-single-one:hover::before, .testimonial_sec.style_one .arrows .prev-single-one:hover::before {
  color: #fff;
}
.testimonial_sec.style_one .arrows .next-single-one {
  margin-left: 60px;
}
.testimonial_sec.style_one .arrows .prev-single-one {
  margin-right: 80px;
}
.testimonial_sec.style_one .num_pagination {
  display: inline-block;
  padding: 0px 82px;
  font-size: 18px;
  font-family: 'Montserrat';
  font-weight: 700;
  text-transform: uppercase;
}
.testimonial_sec.style_one .num_pagination .swiper-pagination-fraction {
  color: var(--primary-color-two);
}
.testimonial_sec.style_one .num_pagination .swiper-pagination-current {
  font-size: 30px;
}
.testimonial_sec.style_one .icon_quotes {
  position: absolute;
  width: 120px;
  height: 120px;
  background: #0d6088;
  border-radius: 50%;
  text-align: center;
  line-height: 120px;
  top: 20%;
  left: -150px;
}
.testimonial_sec.style_one .icon_quotes i {
  font-size: 50px;
  line-height: 120px;
  color: #fff;
}
.testimonial_sec.style_one .icon_quotes:before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  border-radius: 50%;
  left: 7px;
  top: 9px;
  background: transparent;
  border: 1px solid #fff;
}
.testimonial_sec.style_one.light_color .testimonial_box .authour_details.image_yes .details::before {
  background: var(--primary-color-one);
  opacity: 0.3;
}
.testimonial_sec.style_one.light_color .testimonial_box .authour_details .details h2 {
  color: #fff;
}
.testimonial_sec.style_one.light_color .testimonial_box .comment {
  color: #fff;font-style:italic;
}
.testimonial_sec.style_one.light_color .num_pagination .swiper-pagination-fraction {
  color: #fff;
}
.testimonial_sec.style_one.light_color .arrows .prev-single-one::before,
.testimonial_sec.style_one.light_color .arrows .next-single-one::before {
  color: #fff;
}
.testimonial_sec.style_one.light_color .icon_quotes:before {
  border: 1px solid #fff;
}
/*--------------------------------------------------------------
Call to action 1
---------------------------------------------------------------*/
.call{padding:80px 0 40px 0;}
.call-box{background:#e9eaec;padding:30px 40px;border-radius:10px;position:relative;}
.call-box h3{color:#14176c;font-size:42px;line-height:52px;text-align:left;font-weight:700}
.call-box p{color:#000;font-size:15px;line-height:24px;text-align:left;}
.btn-001 {
    color: #fff;margin:0 0;
    background: #191D88;
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 24px 8px 24px;
    border-radius: 8px;
    transition: 0.5s;
    border: 2px solid #191D88;
}
.btn-001:hover{border: 2px solid #0d6088;background:#0d6088;color:#fff;}
.call-box img{position:absolute;right:40px;bottom:-6px;}
.text-right{text-align:right!important;}
/*-------------------------------------------------------------
Why {{env('APP_NAME')}}
-------------------------------------------------------------*/
.why-doc{position:relative;padding:20px 0;}
.why-doc .section-title h2{padding:0;margin-bottom:10px;}
.why-doc p{margin-bottom:20px;font-size:15px;}
.why-categories-block {
  display: flex;
  padding: 40px 30px;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 0px 25px rgba(56, 152, 226, 0.3);
  border-radius: 10px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s all ease;margin-bottom:20px;
}
@media (max-width: 1199px) {
  .why-categories-block {
    padding: 30px 20px;
  }
}
@media (max-width: 991px) {
  .why-categories-block {
    margin: 0px 0 20px 0;
  }
}
.why-categories-block:after {
  width: 200px;
  height: 200px;
  position: absolute;
  left: -100px;
  bottom: -35px;
  content: "";
  background-color: #3898e2;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
  transition: 0.5s all ease;
}
.why-categories-block:before {
  width: 200px;
  height: 200px;
  position: absolute;
  left: -80px;
  bottom: -30px;
  content: "";
  background-color: #3898e2;
  border-radius: 50%;
  opacity: 0.1;
  z-index: -1;
  transition: 0.5s all ease;
}
.why-categories-block:hover:after {
  width: 500%;
  height: 500%;
  position: absolute;
  left: -50px;
  bottom: -50px;
  content: "";
  background-color: #3898e2;
  border-radius: 50%;
  opacity: 0.05;
  z-index: -1;
  transition: 0.5s all ease;
}
.why-categories-block:hover:before {
  opacity: 0;
}
.why-categories-block .backlog-media {
  width: 150px;
}
.why-categories-block .backlog-media img {
  width: auto;
}
.why-categories-block .backlog-media [class*=flaticon-] {
  color: #1967d2;
  font-size: 70px;
  line-height: 70px;
  display: flex;
}
.why-categories-block .backlog-content a {
  margin-bottom: 0px;
  display: block;color:#000;font-size:15px;line-height:24px;text-align:left;font-weight:500;
}
/*--------------------------------------------------------------
Value Added Services
---------------------------------------------------------------*/
.value{padding:40px 0 0 0;}
.value img{max-width:100%;}
.value .section-title{padding-bottom:20px;}
.value-box{height:374px;box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.2);background:#fff;padding:30px;position:relative;border-radius:10px;top:-130px;width:90%;margin:0 auto;}
.value-box h3{font-size:24px;color:#000;font-weight:700;text-transform:uppercase;line-height:34px;text-align:center;}
.value-box p{font-size:15px;color:#000;font-weight:500;line-height:24px;text-align:justify;}
/*-------------------------------------------------------------
CTA Section II
---------------------------------------------------------------*/
.backlog{padding:0 0 20px 0;margin-top:-80px;}
.backlog-explore-media-wrap .backlog-media {
  position: absolute;
    z-index: 4;
    margin-left: -98px;
    border: 0;
    margin-top: 62px;
}
@media (max-width: 991px) {
  .backlog-explore-media-wrap .backlog-media {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}
@media (max-width: 575px) {
  .backlog-explore-media-wrap .backlog-media {
    margin-right: 0px;
  }
  .backlog-explore-media-wrap .backlog-media img {
    width: 100%;
  }
}
.backlog-explore-content-outer {
  position: relative;
  z-index: 1;
}
.backlog-explore-content {
  background-color: #0d6088;
  border-radius: 10px;
  padding: 60px 80px;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  margin-left: 30px;
  z-index: 1;
}
.backlog-explore-content .backlog-title-large {
  margin-bottom: 40px;
}
.backlog-explore-content .backlog-title-large h2 {
  color: #fff;font-size:42px;line-height:56px;margin-bottom: 40px;font-weight:700;}
@media (max-width: 768px) {
  .backlog-explore-content .backlog-title-large h2 {font-size: 26px;line-height:36px;}
}
.backlog-explore-content .backlog-title-large p {color: #fff;font-size:20px;font-weight:500;}
.backlog-btn{position:relative;}
.request-quote{background:#fff;color:#0d6088;padding:10px 20px;font-size:16px;border-radius:10px;border:2px solid #fff;font-weight:700;margin-right:10px;}
.request-quote:hover{background:transparent;color:#fff;}
.schedule-appt{background:transparent;color:#fff;padding:10px 20px;font-size:16px;border-radius:10px;border:2px solid #fff;font-weight:700;}
.schedule-appt:hover{background:#fff;color:#0d6088;}
/*--------------------------------------------------------------
Articles Section
---------------------------------------------------------------*/
section.blog__post-area-two{padding:20px 0 40px 0;}
.blog__post-area-two .section-title{padding-bottom:20px;}
.blog__post-two {
  border: 1px solid #c6c7c7;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  background: #fff;padding:0 0 0 0;
  margin-bottom: 20px;box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}
.blog__post-thumb-two {
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  -o-border-radius: 10px 10px 0 0;
  -ms-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  margin: -1px;
}
.shine-animate {
  display: block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.shine-animate::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.blog__post-thumb-two img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.blog__post-content-two {
  padding: 30px 30px;
}
.blog__post-content-two .title {
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: 600;text-align:center;line-height:32px;
  text-transform: capitalize;color:#000;
}
.blog__post-content-two .title a{color:#000;}
.blog__post-two:hover .blog__post-content-two .title a{color:#0d6088;}
.blog__post-content-two p{font-size:15px;color:#333;font-weight:500;line-height:24px;text-align:center;}
.blog__post-tag-two:hover {
  border-color: #F7A400;
  background: #F7A400;
  color: #000;
}
.blog__post-thumb-two:hover img {
  transform: scale(1.1) rotate(-4deg);
  transition: all 0.4s;
}
/*-------------------------------------------------------------
Industry Segment
-------------------------------------------------------------*/
.neg-80{margin-top:-20px;}
.team__item-inner {
  background-color: var(--bg-team);
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.team__item-thumb {
  border-radius: 8px;
}
.team__item-thumb img {
  transition: all 0.3s ease-in-out;
  object-fit: cover;
}
.team__item-thumb--style1 img {
  transform: translateY(15px);
}
.team__item-content {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  bottom: 0;
  left: 0;
  width: 100%;position:relative;
}
.team__item-content--style1 {
  padding: 8px;
}
.team__item-author {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.team__item-author--style1 {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  padding: 12px 8px;
  border-radius: 8px;
}
.team__item-author--style2 {
  background-color: var(--wh-color);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 2px solid var(--social-border-color);
}
.team__item-author--style2 .team__item-authorinfo h6 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: "Anek Telugu", sans-serif;
  color:#0d6088;font-size:15px;
}
.team__item-author--style2 .team__item-authorinfo h6:hover {
  color: var(--brand-color);
}
.team__item-authorinfo h6 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: "Open Sans", sans-serif;
  color:#0d6088;
  z-index: 2;
}
.team__item-authorinfo h6:hover {
  color: var(--brand-color);
}
.team__item-authorinfo p {
  font-size: 0.875rem;
}
.team__item-shape1 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.5;
  top: 45px;
  left: 18px;
}
@media (min-width: 768px) {
  .team__item-shape1 {
    top: 45px;
    left: 18px;
  }
}
@media (min-width: 992px) {
  .team__item-shape1 {
    width: 35px;
    top: 25px;
    left: 20px;
  }
}
@media (min-width: 1200px) {
  .team__item-shape1 {
    width: auto;
    top: 45px;
    left: 18px;
  }
}
.team__item-shape2 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.1;
  top: 70px;
  right: 25px;
}
@media (min-width: 768px) {
  .team__item-shape2 {
    top: 70px;
    right: 25px;
  }
}
@media (min-width: 992px) {
  .team__item-shape2 {
    width: 35px;
    top: 60px;
    right: 18px;
  }
}
@media (min-width: 1200px) {
  .team__item-shape2 {
    width: auto;
    top: 70px;
    right: 25px;
  }
}
.team__item-shape3 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.1;
  bottom: 200px;
  left: 25px;
}
@media (min-width: 576px) {
  .team__item-shape3 {
    bottom: 136px;
    left: 25px;
  }
}
@media (min-width: 768px) {
  .team__item-shape3 {
    bottom: 200px;
    left: 25px;
  }
}
@media (min-width: 992px) {
  .team__item-shape3 {
    width: 35px;
    bottom: 130px;
    left: 16px;
  }
}
@media (min-width: 1200px) {
  .team__item-shape3 {
    width: auto;
    bottom: 136px;
    left: 25px;
  }
}
.team__item--bgcolor2 .team__item-inner {
  background-color: var(--tertiary-color);
}
.team__item:hover .team__item-author h6 {
  color: var(--brand-color);
}
.team__item:hover .team__item-thumb--style1 img {
  transform: translateY(0);
}
.team__item:hover .team__item-thumb--style2 img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}
.team__item:hover .team__item-shape1, .team__item:hover .team__item-shape2, .team__item:hover .team__item-shape3 {
  opacity: 1;
  transform: rotate(45deg);
}
.team--details .team__thumb {
  border-radius: 20px;
}
.team--details .team__thumb img {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  object-fit: cover;
}
.team--details .team__thumb img:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.team--details .team__content h3 {
  line-height: 1.1;
}
.team--details .team__content > span {
  color: var(--warning-color);
}
.team--details .team__content > span i,
.team--details .team__content > span svg {
  color: var(--warning-color);
}
.team__item-inner {
  background-color: var(--bg-team);
  border-radius: 12px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.team__item-thumb {
  border-radius: 8px;
}
.team__item-thumb img {
  transition: all 0.3s ease-in-out;
  object-fit: cover;
}
.team__item-thumb--style1 img {
  transform: translateY(15px);border-radius:8px;
}
.team__item-content {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  bottom: 60px;
  left: 0;
  width: 100%;
}
.team__item-content--style1 {
  padding: 8px;
}
.team__item-author {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.team__item-author--style1 {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  padding: 10px 0;
  border-radius: 8px;
}
.team__item-author--style2 {
  background-color: var(--wh-color);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border: 2px solid var(--social-border-color);
}
.team__item-author--style2 .team__item-authorinfo h6 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: "Anek Telugu", sans-serif;
  color: var(--title-color);
}
.team__item-author--style2 .team__item-authorinfo h6:hover {
  color: var(--brand-color);
}
.team__item-authorinfo h6 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  font-family: "Open Sans", sans-serif;
  color: #000;
  z-index: 2;text-align:center
}
.team__item-authorinfo h6:hover {
  color: var(--brand-color);
}
.team__item-authorinfo p {
  font-size: 0.875rem;
}
.team__item-shape1 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.5;
  top: 45px;
  left: 18px;
}
@media (min-width: 768px) {
  .team__item-shape1 {
    top: 45px;
    left: 18px;
  }
}
@media (min-width: 992px) {
  .team__item-shape1 {
    width: 35px;
    top: 25px;
    left: 20px;
  }
}
@media (min-width: 1200px) {
  .team__item-shape1 {
    width: auto;
    top: 45px;
    left: 18px;
  }
}
.team__item-shape2 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.1;
  top: 70px;
  right: 25px;
}
@media (min-width: 768px) {
  .team__item-shape2 {
    top: 70px;
    right: 25px;
  }
}
@media (min-width: 992px) {
  .team__item-shape2 {
    width: 35px;
    top: 60px;
    right: 18px;
  }
}
@media (min-width: 1200px) {
  .team__item-shape2 {
    width: auto;
    top: 70px;
    right: 25px;
  }
}
.team__item-shape3 {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  opacity: 0.1;
  bottom: 200px;
  left: 25px;
}
@media (min-width: 576px) {
  .team__item-shape3 {
    bottom: 136px;
    left: 25px;
  }
}
@media (min-width: 768px) {
  .team__item-shape3 {
    bottom: 200px;
    left: 25px;
  }
}
@media (min-width: 992px) {
  .team__item-shape3 {
    width: 35px;
    bottom: 130px;
    left: 16px;
  }
}
@media (min-width: 1200px) {
  .team__item-shape3 {
    width: auto;
    bottom: 136px;
    left: 25px;
  }
}
.team__item--bgcolor2 .team__item-inner {
  background-color: var(--tertiary-color);
}
.team__item:hover .team__item-author h6 {
  color: var(--brand-color);
}
.team__item:hover .team__item-thumb--style1 img {
  transform: translateY(0);
}
.team__item:hover .team__item-thumb--style2 img {
  -webkit-transform: scale(1.06);
  -moz-transform: scale(1.06);
  -ms-transform: scale(1.06);
  -o-transform: scale(1.06);
  transform: scale(1.06);
}
.team__item:hover .team__item-shape1, .team__item:hover .team__item-shape2, .team__item:hover .team__item-shape3 {
  opacity: 1;
  transform: rotate(45deg);
}
.team--details .team__thumb {
  border-radius: 20px;
}
.team--details .team__thumb img {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  object-fit: cover;
}
.team--details .team__thumb img:hover {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.team--details .team__content h3 {
  line-height: 1.1;
}
.team--details .team__content > span {
  color: var(--warning-color);
}
.team--details .team__content > span i,
.team--details .team__content > span svg {
  color: var(--warning-color);
}
@media (max-width: 767.98px) {
  .team-area {
    padding: 100px 0 70px;
  }
}
.team__area-two {
  position: relative;
  padding: 80px 0 90px;
}
@media (max-width: 767.98px) {
  .team__area-two {
    padding: 100px 0 70px;
  }
}
.team__area-three {
  padding: 120px 0 90px;
}
@media (max-width: 767.98px) {
  .team__area-three {
    padding: 100px 0 70px;
  }
}
.team__area-four {
  padding: 120px 0 90px;
}
@media (max-width: 767.98px) {
  .team__area-four {
    padding: 100px 0 70px;
  }
}
.team-item {
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -o-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  border: 1px solid var(--tg-border-1);
  margin-bottom: 30px;
}
.team-item-wrap .row {
  --bs-gutter-x: 24px;
}
.team__item-two {
  margin-bottom: 30px;
}
.team__item-three {
  position: relative;
  margin-bottom: 30px;
}
.team__item-four {
  margin-bottom: 30px;
}
.team-thumb {
  -webkit-border-radius: 14px 14px 0 104px;
  -moz-border-radius: 14px 14px 0 104px;
  -o-border-radius: 14px 14px 0 104px;
  -ms-border-radius: 14px 14px 0 104px;
  border-radius: 14px 14px 0 104px;
  overflow: hidden;
  position: relative;
}
.team-thumb img {
  width: 100%;
  height: 292px;
  object-fit: cover;
}
@media (max-width: 767.98px) {
  .team-thumb img {
    height: auto;
  }
}
.team__thumb-two {
  margin-bottom: 15px;
}
.team__thumb-two img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  width: 100%;
  height: 295px;
  object-fit: cover;
}
@media (max-width: 1199.98px) {
  .team__thumb-two img {
    height: 230px;
  }
}
@media (max-width: 991.98px) {
  .team__thumb-two img {
    height: 295px;
  }
}
@media (max-width: 767.98px) {
  .team__thumb-two img {
    height: auto;
  }
}
.team__thumb-three img {
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -o-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
  width: 100%;
}
.team__thumb-four img {
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  -o-border-radius: 14px;
  -ms-border-radius: 14px;
  border-radius: 14px;
  width: 100%;
}
.team-social {
  position: absolute;
  right: 22px;
  top: 22px;
  background: var(--tg-color-white-default);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -o-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
}
.team-social .social-toggle-icon {
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #474AA0;
  font-size: 20px;
  line-height: 0;
  cursor: pointer;
  -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;
}
.team-social .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 0 0 15px;
  display: none;
  text-align: center;
}
.team-social .list-wrap a {
  font-size: 18px;
  color: #474AA0;
}
.team-social .list-wrap a:hover {
  color: var(--tg-theme-primary);
}
.team__social-two .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.team__social-two .list-wrap li a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--tg-border-3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  font-size: 18px;
  color: var(--tg-border-3);
}
.team__social-two .list-wrap li a:hover {
  color: var(--tg-color-white-default);
  background: var(--tg-theme-primary);
  border-color: var(--tg-theme-primary);
}
.team__social-three {
  top: auto;
  bottom: 30px;
  right: 30px;
  z-index: 1;
  background: var(--tg-theme-primary);
}
.team__social-three .social-toggle-icon {
  background: var(--tg-theme-primary);
  color: var(--tg-color-white-default);
}
.team__social-three .list-wrap {
  padding: 15px 0 0;
}
.team__social-three .list-wrap li a {
  color: var(--tg-color-white-default);
}
.team__social-three .list-wrap li a:hover {
  color: var(--tg-theme-secondary);
}
.team__social-four .list-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.team__social-four .list-wrap li a {
  color: #9597C8;
}
.team__social-four .list-wrap li a:hover {
  color: var(--tg-theme-primary);
}
.team-content {
  padding: 15px 25px 25px;
}
.team-content .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.team-content span {
  display: block;
  line-height: 1;
  color: var(--tg-theme-primary);
}
.team__content-two {
  text-align: center;
}
.team__content-two .title {
  font-size: 24px;
  font-weight: var(--tg-fw-semi-bold);
  margin-bottom: 8px;
}
.team__content-two span {
  display: block;
  line-height: 1;
  color: var(--tg-theme-primary);
  margin-bottom: 20px;
}
.team__content-three {
  position: absolute;
  left: 30px;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.team__content-three .title {
  margin-bottom: 5px;
  color: var(--tg-color-white-default);
  font-size: 24px;
  font-weight: 600;
}
.team__content-three span {
  display: block;
  color: var(--tg-color-gray-3);
}
.team__content-four {
  background: var(--tg-color-white-default);
  -webkit-box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.04);
  box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.04);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  margin: 0 24px;
  padding: 20px 20px;
  margin-top: -65px;
  position: relative;
  z-index: 1;
}
.team__content-four .title {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 600;
}
.team__content-four span {
  display: block;
  color: var(--tg-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.team__shape img {
  position: absolute;
  z-index: -1;
}
.team__shape img:nth-child(1) {
  left: 5%;
  bottom: 15%;
}
@media (max-width: 1500px) {
  .team__shape img:nth-child(1) {
    left: -5%;
  }
}
@media (max-width: 1199.98px) {
  .team__shape img:nth-child(1) {
    display: none;
  }
}
.team__shape img:nth-child(2) {
  right: 6%;
  top: 12%;
}
@media (max-width: 991.98px) {
  .team__shape img:nth-child(2) {
    top: 5%;
    width: 90px;
  }
}
@media (max-width: 767.98px) {
  .team__shape img:nth-child(2) {
    top: 2%;
    width: 80px;
  }
}
.team__details-area {
  padding: 120px 0;
}
@media (max-width: 767.98px) {
  .team__details-area {
    padding: 100px 0;
  }
}
.team__details-inner .row .col-36 {
  width: 35.6%;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .team__details-inner .row .col-36 {
    width: 60%;
  }
}
@media (max-width: 767.98px) {
  .team__details-inner .row .col-36 {
    width: 100%;
  }
}
.team__details-inner .row .col-64 {
  width: 64.4%;
  flex: 0 0 auto;
}
@media (max-width: 991.98px) {
  .team__details-inner .row .col-64 {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .team__details-img {
    margin-bottom: 50px;
  }
}
.team__details-img img {
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .team__details-img img {
    width: 100%;
  }
}
.team__details-content {
  margin-left: 20px;
}
@media (max-width: 1199.98px) {
  .team__details-content {
    margin: 0;
  }
}
.team__details-content .title {
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .team__details-content .title {
    font-size: 36px;
  }
}
@media (max-width: 767.98px) {
  .team__details-content .title {
    font-size: 32px;
  }
}
.team__details-content .position {
  display: block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--tg-theme-primary);
  margin-bottom: 20px;
}
.team__details-content p {
  margin-bottom: 50px;
}
@media (max-width: 1199.98px) {
  .team__details-content p {
    margin-bottom: 25px;
  }
}
.team__details-info > .list-wrap > li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-family: var(--tg-heading-font-family);
  color: var(--tg-theme-secondary);
  gap: 10px;
  margin-bottom: 15px;
}
.team__details-info > .list-wrap > li > a {
  font-family: var(--tg-heading-font-family);
  color: var(--tg-theme-secondary);
}
.team__details-info > .list-wrap > li > a:hover {
  color: var(--tg-theme-primary);
}
.team__details-info > .list-wrap > li > i {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  background: var(--tg-color-gray-3);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--tg-theme-secondary);
  font-size: 18px;
  flex: 0 0 auto;
}
.team__details-info > .list-wrap > li:last-child {
  margin-bottom: 0;
}
.team__details-social {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
  align-items: center;
}
.team__details-social li a {
  color: var(--tg-theme-secondary);
  font-size: 16px;
}
.team__details-social li a:hover {
  color: var(--tg-theme-primary);
}

@media (max-width: 991.98px) {
  .section-content {
    margin-bottom: 50px;
  }
}
.section-content p {
  margin-bottom: 0;
  font-weight: 500;
}

.team-item, .card-team-area-six {
  transition: 0.3s all;
}

.team-item:hover, .card-team-area-six:hover {
  transform: translateY(-3px);
  transition: 0.3s all;
}
.team__wrapper{margin-top:-50px;padding:0;}
.team__wrapper img{max-width:100%;}
.mt-10 {
  margin-top: 10px;
}
.team{padding:40px 0 0 0;}
/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
@media (max-width: 1920px)  {
   .hero h1 {font-size: 58px;line-height: 64px;margin-bottom: 14px;} 
   .counter-text {font-size: 15px;}
   .bl-box .posrgt1 {
    position: relative;
    right: -60px;
    margin-top: -25px;
}
.imagewrapper {
    position: relative;
    z-index: 0;
    right: 0;
    bottom: 0;
    margin-top: -63px;
}
.negtop{margin-top:-68px}
}
@media (max-width: 1366px)  {
	.negtop{margin-top:-38px}
}
/*-----------------------------------------------------
Contact Section
------------------------------------------------------*/
.contact{padding:40px 0 60px 0;}
.contact .section-title h2{padding:0;margin-bottom:10px;text-align:left;font-size:30px;}
.contact p{font-size:15px;color:333;text-align:left;}
.contact-info {
    padding-right: 0;
}
.contact-mail {
    background: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-family: "Montserrat";
    display: block;
    position: relative;font-weight:600;
    color: #333;margin-bottom:20px;width:92%;
    padding: 20px 30px 18px 30px;box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
}
.contact-mail span {
    display: inline-block;
    transform: translateY(3px);
    margin-right: 10px;
}
.contact-mail span img{margin-top:-8px;}
.contact-mail i {
  text-align: right;
  height: 34px;
  width: 34px;
  line-height: 32px;
  text-align: center;
  border: 1px solid #E7E8EB;
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  -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;
}
@media (max-width: 767px) {
  .contact-mail i {
    right: 10px;
  }
}
.contact-mail i svg {
  color: #0E1331;display:inline-block;
  -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;
}
.contact-main-shape-bg {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
}
.contact-main-shape-bg img {
  width: 100%;
}
.contact-content p {
  font-family:'Open Sans';font-size:18px;
  margin-bottom: 20px;color:#333;padding-left:50px;
}
@media (max-width: 767px) {
  .contact-content p br {
    display: none;
  }
}
.contact-title {
  font-family: 'Montserrat';
  font-size: 36px;
  font-weight: 700;text-transform:none;
}
@media (max-width: 767px) {
  .contact-title {
    font-size: 38px;
  }
}
.contact-mail:hover i {
  border-color:#0d6088;
  background-color: #0d6088;
}
.contact-mail:hover i svg {
  color: #fff;
}
.contact-mail span {
  display: inline-block;
  transform: translateY(3px);
  margin-right: 10px;
}
.contact-form {
    background: #fff;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    z-index: 2;
}
.contact-form p.txt{font-size:16px;line-height:24px;color:#000;text-align:left;margin-bottom:0}
.contact-form p{font-size:13px;text-align:center;}
select, textarea{color:#585b5e;}
.form-control{font-size:13px;color:#212529;}
.md-form{margin-bottom:8px;}
textarea.form-control {
    min-height: 37px;
    height: 37px;
}
.form-select{padding:8px 10px;}
.termtxt{font-size:12px;color:#666;text-align:center;font-weight:500;}
.maxwdthdis{max-width:700px;margin:10px auto;}
.distxt{font-size:12px;line-height:20px;text-align:center;color:#666;font-weight:500;}
.distxtcred{color:#fff;font-weight:500;}
.hs-custom-style .hs-input{background:#fff;border-radius:6px;padding:10px 10px;border:2px solid #999}
.hs-custom-style>div input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]), .hs-custom-style fieldset input:not([type=image]):not([type=submit]):not([type=button]):not([type=radio]):not([type=checkbox]):not([type=file]){padding:10px 15px!important;width:100%;color:#000;font-weight:500;}
.actions{text-align:center}
textarea#description-d226a656-73c3-4ead-b276-04da7e1169ba {
    height: 44px;
}
select#location_type-d226a656-73c3-4ead-b276-04da7e1169ba {
    width: 100%;
}
input.hs-button.primary.large {
    background: #0d6088;
    border: 2px solid #0d6088;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    padding: 6px 20px;
    margin: 10px auto;
}
input.hs-button.primary.large:hover {
    background: #fff;
    border: 2px solid #0d6088;
    color: #0d6088;
}
ul.no-list.hs-error-msgs.inputs-list {
    padding: 6px 2px;
    margin: 0;list-style:none;
}
label.hs-error-msg.hs-main-font-element {
    font-size: 14px;
    color: #ff0000;
    font-weight: 600;
}
ul.no-list.hs-error-msgs.inputs-list li{list-style:none;}
@media (min-width:100px) and (max-width:767px){
    .contact .section-title h2{font-size: 26px;}
.mgnegtop-80{margin-top:-80px;}
 .img-fluid1 {
    margin: 0 30px 10px 30px;
    max-width: 100%;
    height: 59px;
}
.mgbtmpic{margin-bottom:20px;}
.header .logo{
  justify-content: center;
  width: 100%;
}
.header .logo img {
    max-height: 50px;
    margin: 0 auto;
    display: block;
    width: auto;
}
.negtop {
        margin-top: 0;
    }
.hero .btn-get-started, .hero .btn-watch-video {
        font-size: 12px;
        padding: 10px 15px;
        letter-spacing: 0;
    }
.hero h1 {
        font-size: 38px;
        line-height: 46px;
        text-align: center;
        margin-bottom: 14px;margin-top:40px;
    }
.btncen{    align-items: center;justify-content: center;}
.request-quote {font-size:16px;}
.schedule-appt{font-size:16px;padding:10px 43px;}
    .backlog-explore-content .backlog-title-large h2 {
        font-size: 24px;
        line-height: 32px;
    }

.backlog-explore-content .backlog-title-large p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}
.section-title h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: none;
    position: relative;
    color: #14176c;
}
.call-box img {
    position: relative;
    right: 0;
    bottom: -34px;
}
.center-element {
    margin: 0;
}
.testimonial_sec_wrapper.pd_left_70 {
    padding: 30px!important;
}
.value-box h3 {
    font-size: 22px;}
.imagewrapper {
    position: relative;
    z-index: 0;
    right: 0;
    bottom: 0;
    margin-top: 0;
}
.testimonial-thumb .mini-shape {
    position: absolute;
    right: 0;
    top: 20%;
}
.testimonial-style-one-area p {
    text-align: center;
    font-size: 14px;
}
.testimonial_sec.style_one .icon_quotes{display:none;}
.testimonial-style-one p{font-size:16px;padding:0 10px;}
.testimonial-style-one-area .section-title h2{font-size:26px;text-align:center;}
.call{padding:20px 0}
.why-categories-block .backlog-content a{font-size:16px;}
.value img{max-width:100%;}
.value-box{padding:20px;width:94%;}
.value-box p{font-size:15px;line-height:24px;}
.team { padding: 0 0;}
.team .section-title{margin-bottom:20px;}
.backlog-explore-media-wrap .backlog-media {
    position: relative;
z-index: 0;
margin-left: 0;
border: 0;
margin-top: 0;
text-align: center;
}
.backlog-explore-content {
    padding:30px 20px;
    position: relative;
    margin:-23px auto 0 auto;text-align:center;
}
.request-quote {
    margin-right: 0;
    margin-bottom: 20px;
    display: block;
    text-align: center;
}
.blog__post-content-two p {font-size: 15px;}
.contact .section-title h2 {
    padding: 0;
    margin-bottom: 10px;
    text-align: center;
}
.contact p {
    font-size: 13px;
    color: #333;line-height:20px;
    text-align: center;
}
.call-box h3 {font-size: 26px;line-height: 34px;}
.call-box p {font-size: 15px;line-height: 24px;}
.why-doc p {font-size: 15px; padding: 2px 10px;}
.why-categories-block .backlog-content a{font-size: 15px;}
.contact-mail{font-size:13px;}
.footer-contact-info{padding:20px;}
.brdrgt {
    border:0;
}
.footer-contact-info {
    margin-top: 0;
    margin-bottom: 20px;
}
.footer-widget-content.style-left {
    position: relative;
    margin-left: 0;padding:8px 20px;
}
.footer-widget-content {
    padding: 10px 20px;
}
.clients {
    padding: 12px 0 0px 0;
}
.imagewrapper img{max-width:100%;}
.wht-box h3 {font-size: 20px;line-height: 28px;}
.wht-box p {font-size: 15px;line-height: 24px;}
.wht-box a.readmore{font-size:16px;}
.wht-box { padding: 20px 30px;}
section, .section{padding:40px 0 10px 0;}
.txtsubbold {font-size: 15px; line-height: 22px;}
.title_all_box h2 {font-size: 26px;}
.testimonial_sec.style_one .testimonial_box .comment {font-size: 16px; line-height: 26px;}
.exp-doc{padding:20px 0;}
.backlog{padding:0;}
.negmargin30{margin-top:-40px;}
.section.blog__post-area-two .section-title{margin-bottom:20px;}
.contact-mail{width:100%;}
.hs-form-d226a656-73c3-4ead-b276-04da7e1169ba_e74f5f13-5394-4c12-9fd8-d82d4b8e1cd9 fieldset.form-columns-2 .input {
    margin-left: 8px;
}
.value-box{height:auto;}
}
@media (max-width:1366px) {
        .counter-text {font-size: 14px; }
        .section-title h2 { font-size: 30px;line-height:42px;}
        .wht-box h3 {font-size: 22px; line-height: 30px;}
        .wht-box p {font-size: 14px;line-height: 20px;}
        .why-categories-block .backlog-content a{font-size:14px;}
        .value-box{height:auto;}
        .backlog-explore-content .backlog-title-large h2 { font-size: 24px; line-height: 34px;margin-bottom:20px;}
        .backlog-explore-content .backlog-title-large p {font-size: 16px;}
        .schedule-appt{font-size:13px;}
        .request-quote{font-size:13px;}
        .team__item-authorinfo h6{font-size:14px;}
        .value-box h3 {font-size: 20px;line-height: 28px;}
        .blog__post-content-two p {font-size: 14px; line-height: 20px;}
        .contact-mail{font-size:16px;}
        .wht-box p {font-size: 14px;line-height: 22px;}
}
/* Two column layout spacing */
.hbspt-form .form-columns-2 {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.hbspt-form .form-columns-2 > div {
  flex: 1;
}
/* Inputs */
.hbspt-form input.hs-input,
.hbspt-form select.hs-input,
.hbspt-form textarea.hs-input {
  width: 100%;
  
  transition: all 0.2s ease;
}

/* Mobile fix */
@media (max-width: 768px) {
  .hbspt-form .form-columns-2 {
    flex-direction: column;
  }
}