/*** 

====================================================================
	Root Code Variables
====================================================================

***/

/* Theme Color */

:root {
	/* #1C2539 in decimal RGB */
	--main-color: #1c2539;
	--main-color-rgb: 28, 37, 57;
	
	/* #DF0A0A in decimal RGB */
	--color-two: #DF0A0A;
	--color-two-rgb: 223, 10, 10;
	
	/* #616161 in decimal RGB */
	--color-three: #616161;
	--color-three-rgb: 97, 97, 97;
	
	/* #999999 in decimal RGB */
	--color-four: #999999;
	--color-four-rgb: 153, 153, 153;
	
	/* #f6f6f6 in decimal RGB */
	--color-five: #f6f6f6;
	--color-five-rgb: 246, 246, 246;
	
	/* #5d666f in decimal RGB */
	--color-six: #5d666f;
	--color-six-rgb: 93, 102, 111;
	
	/* #f7faff in decimal RGB */
	--color-seven: #15C169;
	--color-seven-rgb: 21, 193, 105;
	
	/* #FF9529 in decimal RGB */
	--color-eight: #15C169;
	--color-eight-rgb:21, 193, 105;
	
	/* #E1E9F4 in decimal RGB */
	--color-nine: #e1e9f4;
	--color-nine-rgb:225,233,244;
	
	/* #F6F6F6 in decimal RGB */
	--color-ten: #f6f6f6;
	--color-ten-rgb:246,246,246;
	
	/* #E4F1FF in decimal RGB */
	--color-eleven: #e4f1ff;
	--color-eleven-rgb:228,241,255;
	
	
	
	/* #ffffff in decimal RGB */
	--white-color:#ffffff;
	--white-color-rgb:255,255,255;
	
	/* #000000 in decimal RGB */
	--black-color:#000000;
	--black-color-rgb:0,0,0;
	
	/* #010101 Heading Color in decimal RGB */
	--heading-color:#010101;
  
  
	/* Fonts Size's */
	
	--font-10: 10px;
	--font-12: 12px;
	--font-13: 13px;
	--font-14: 14px;
	--font-15: 15px;
	--font-16: 16px;
	--font-17: 17px;
	--font-18: 18px;
	--font-19: 19px;
	--font-20: 20px;
	--font-22: 22px;
	--font-23: 23px;
	--font-24: 24px;
	--font-25: 25px;
	--font-26: 26px;
	--font-27: 27px;
	--font-28: 28px;
	--font-30: 30px;
	--font-32: 32px;
	--font-33: 33px;
	--font-34: 34px;
	--font-35: 35px;
	--font-36: 36px;
	--font-40: 40px;
	--font-42: 42px;
	--font-44: 44px;
	--font-48: 48px;
	--font-50: 50px;
	--font-52: 52px;
	--font-54: 54px;
	--font-55: 55px;
	--font-56: 56px;
	--font-58: 58px;
	--font-60: 60px;
	--font-62: 62px;
	--font-64: 64px;
	--font-65: 65px;
	--font-66: 66px;
	--font-68: 68px;
	--font-70: 70px;
	--font-72: 72px;
	--font-74: 74px;
	--font-76: 76px;
	--font-78: 78px;
	--font-80: 80px;
	--font-85: 85px;
	--font-90: 90px;
	--font-95: 95px;
	--font-100: 100px;
	--font-110: 110px;
	--font-120: 120px;
	--font-130: 130px;
	--font-150: 150px;
	--font-200: 200px;
	
	--space-0: 0px;
	
	/* Margin Left Variables */
	--space-5: 5px;
	--space-10: 10px;
	--space-15: 15px;
	--space-20: 20px;
	--space-25: 25px;
	--space-30: 30px;
	--space-35: 35px;
	--space-40: 40px;
	--space-45: 45px;
	--space-50: 50px;
	--space-55: 55px;
	--space-60: 60px;
	--space-65: 65px;
	--space-70: 70px;
	--space-75: 75px;
	--space-80: 80px;
	--space-85: 85px;
	--space-90: 90px;
	--space-95: 95px;
	--space-100: 100px;
	--space-120: 120px;
	--space-150: 150px;
	--space-200: 200px;
	--space-240: 240px;
	--space-250: 250px;
	--space-260: 260px;
	--space-290: 290px;
}

/* Color For Business */
:root .business {
	/* #1C2539 in decimal RGB */
  --main-color: #1C2539;
  --main-color-rgb: 28, 37, 57;
  
  /* #38C9F7 in decimal RGB */
  --color-two: #15C169;
  --color-two-rgb: 21, 193, 105;

  /* #677788 in decimal RGB */
  --color-three: #677788;
  --color-three-rgb: 103, 119, 136;

   /* #5D666F in decimal RGB */
   --color-seven: #5D666F;
   --color-seven-rgb: 93, 102, 111;
}

/*** 

====================================================================
	Global Settings
====================================================================

***/

.text-right{
	text-align:right;
}

.mCSB_inside > .mCSB_container{
	margin-right:var(--space-0) !important;
}

button,
a:hover,a:focus,a:visited{
	text-decoration:none;
	outline:none !important;
}

a.gbc {
  outline: medium none !important;
  color: #15C169 !important;
}

/* Default Input type */
select,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
	display: block;
	width: 100%;
	height: 58px;
	padding: 8px 22px;
	background-color: #ffffff;
	color: var(--color-three);
	background-clip: padding-box;
	border-width: 0px;
	border-radius: 5px;
	transition: all 0.5s ease-in-out;
	backface-visibility: hidden;
	box-sizing: border-box;
	outline: none;
	outline-offset: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea.form-control:focus {
	background-color: var(--color-five);
	border-color: var(--main-color);
	color: var(--color-three);
	outline: none;
	outline-offset: 0px;
	box-shadow: none;
	transition: all 0.5s ease-in-out;
}

::-webkit-input-placeholder {
	color: var(--color-six);
	font-size: var(--font-16);
	font-weight: 400;
}

::-moz-placeholder {
	color: var(--color-six);
	font-size: var(--font-16);
	font-weight: 400;
}

:-ms-input-placeholder {
	color: var(--color-six);
	font-size: var(--font-16);
	font-weight: 400;
}

:-moz-placeholder {
	color: var(--color-six);
	font-size: var(--font-16);
	font-weight: 400;
}

:placeholder {
	color: var(--color-six);
	font-size: var(--font-16);
	font-weight: 400;
}

.text{
	position: relative;
	font-size: var(--font-18);
	line-height: 28px;
	color: var(--color-three);
	
}
.highlight {
    color: var(--color-two);
}

/***

====================================================================
	Scroll To Top style
====================================================================

***/

/* Backto Up */

.progress-wrap {
	position: fixed;
	right: 30px;
	bottom: 40px;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	box-shadow: inset 0 0 0 2px rgba(var(--color-two-rgb), 0.3);
	/* box-shadow: inset 0 0 0 2px rgba(223, 10, 10, 0.3); */
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
	transform: translateY(15px);
	-webkit-transform: translateY(15px);
	-moz-transform: translateY(15px);
	-ms-transform: translateY(15px);
	-o-transform: translateY(15px);
}

.progress-wrap.active-progress {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.progress-wrap::after {
	position: absolute;
	content: '\f062';
	font-family: 'FontAwesome';
	text-align: center;
	line-height: 40px;
	font-size: 17px;
	color: var(--color-two);
	left: 0;
	top: 0;
	height: 40px;
	width: 40px;
	cursor: pointer;
	display: block;
	z-index: 1;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

.progress-wrap svg path {
	fill: none;
}

.progress-wrap svg.progress-circle path {
	stroke: var(--color-two);
	stroke-width: 4;
	box-sizing: border-box;
	-webkit-transition: all 200ms linear;
	transition: all 200ms linear;
}

/* Theme Button */
.btn {
	position: relative;
	min-width: 180px;
	font-family: var(--font-family-heading);
	font-size: var(--font-16);
	font-weight: 700;
	line-height: 22px;
	text-transform: capitalize;
	text-align:center;
	overflow: hidden;
	display:inline-block;
	padding: 15px 30px;
	border: 0px solid transparent;
	border-radius: 5px;
	color: var(--white-color);
	background-color: var(--color-two) !important;
}
.btn .btn-wrap{
	position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;	
}

.btn:before{
	position: absolute;
	width: 200%;
	height: 200%;
	content: "";
	top: -200%;
	left: 50%;
	background-color: var(--main-color);
	border-radius: 50%;
	z-index: 1;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);	
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
}

.btn .btn-wrap .text-one{
	position: relative;
	display: block;
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.btn .btn-wrap .text-two{
	position: absolute;
    top: 100%;
    display: block;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn .btn-wrap .text-one,
.btn .btn-wrap .text-two{
	color: var(--white-color);
}

.btn .icon{
	position:relative;
	z-index:1;
	font-weight:normal;
	font-family: "bootstrap-icons";
	font-size: var(--font-16);
	transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	margin-left:var(--space-15);
}
 
.btn:hover:before{
	top: -40%;
}

.btn:hover,
.btn:hover .btn-wrap .text-one,
.btn:hover .btn-wrap .text-two{
	color: var(--white-color);
}
.btn:hover .btn-wrap .text-one{
	-webkit-transform: translateY(-150%);
	-ms-transform: translateY(-150%);
	transform: translateY(-150%);
}
.btn:hover .btn-wrap .text-two{
	top: 50%;
    -webkit-transform: translateY(-50%); 
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.btn:hover .icon{
	color: var(--white-color);
}

.btn-check:focus+.btn, .btn:focus {
	box-shadow: none;
}

/* Btn Style Two */

.btn-two{
	color: var(--main-color);
	background-color:var(--white-color);
}

.btn-two:before{	
	background-color: var(--main-color);
}

.btn-two .btn-wrap .text-one,
.btn-two .btn-wrap .text-two{
	color: var(--main-color);
}

.btn-two:hover .btn-wrap .text-one,
.btn-two:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-two:hover .icon{
	color: var(--white-color);
}

/* Btn Style Three */

.btn-three{
	color: var(--white-color);
	background-color:var(--main-color);
}

.btn-three:before{	
	background-color: var(--color-two);
}

.btn-three .btn-wrap .text-one,
.btn-three .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-three:hover .btn-wrap .text-one,
.btn-three:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-three:hover .icon{
	color: var(--white-color);
}

/* Btn style Gradient */
.btn-gradient{
	color: var(--white-color);
	background: var(--color-two);
	background: -moz-linear-gradient(90deg, var(--color-two) 0%, var(--color-seven) 100%);
	background: -webkit-linear-gradient(90deg, var(--color-two) 0%, var(--color-seven) 100%);
	background: linear-gradient(90deg, var(--color-two) 0%, var(--color-seven) 100%);
}

.btn-gradient:before{	
	background: var(--color-seven);
	background: -moz-linear-gradient(90deg, var(--color-seven) 0%, var(--color-two) 100%);
	background: -webkit-linear-gradient(90deg, var(--color-seven) 0%, var(--color-two) 100%);
	background: linear-gradient(90deg, var(--color-seven) 0%, var(--color-two) 100%);
}

.btn-gradient .btn-wrap .text-one,
.btn-gradient .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-gradient:hover .btn-wrap .text-one,
.btn-gradient:hover .btn-wrap .text-two{
	color: var(--white-color);
}

.btn-gradient:hover .icon{
	color: var(--white-color);
}

/* Effect Ghost */

.effect-ghost {
	position: relative;
}
.effect-ghost:after{
	content: '';
	position: absolute;
	top: auto;
	left: -150%;
    bottom: -150%;
    background-color: rgba(var(--white-color-rgb),0.6);
    width: 150%;
    height: 150%;
    transform: rotate(45deg);
    border-radius: 0;
	z-index: 1;
	-webkit-transition-duration: 800ms;
	transition-duration: 800ms;
}
.effect-ghost:hover:after{
	left: 150%;
    bottom: 150%;
}


/* Submit Button */
.btn-submit {
    position: relative;
    overflow: hidden;
    display: inline-block;
    font-family: var(--font-family-heading);
    font-size: var(--font-15);
    font-weight: 500;
    line-height: 26px;
    text-align: center;
    background-color: var(--color-two);
    color: var(--white-color);
    border: 2px solid var(--color-two);
    border-radius: 3px;
    padding: var(--space-10) var(--space-20);
	transition: all 0.5s ease-in-out;
    text-transform: uppercase;
}
.btn-submit:hover {
    background-color: var(--main-color);
}

.btn-submit.dark {
	background-color: var(--main-color);
}
.btn-submit.dark:hover {
	background-color: var(--color-two);
}


/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position:relative;
	z-index:1;
	margin-bottom:var(--space-40);
}

.sec-title .title{
	position: relative;
    font-weight: 500;
    font-size: var(--font-16);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-two);
    font-family: var(--font-family-inter);
	
}

.sec-title h1{
	z-index:1;
	color:var(--main-color); 
	margin-top:var(--space-10);
}

.sec-title.dark h1{
	color: var(--white-color);
}

.sec-title h2 span{
	position:relative;
}

.sec-title .separator{
	position:relative;
	width:70px;
	height:4px;
	border-radius: 33.7963px;
	margin-top:var(--space-15);
	background-color:var(--color-two);
	display: flex;
}

.sec-title .separator:before{
	position:absolute;
	content:'';
	right:-12px;
	width:8px;
	height:4px;
	border-radius: 33.7963px;
	background-color:var(--color-two);
}

.sec-title .separator:after{
	position:absolute;
	content:'';
	right:-19px;
	width:4px;
	height:4px;
	border-radius: 33.7963px;
	background-color:var(--color-two);
}

.sec-title .text{
	color:var(--color-three);
	margin-top:var(--space-25);
}

.sec-title.light .text{
	color:var(--color-six);
}

.sec-title.light h2{
	color:var(--white-color);
}

.sec-title.centered{
	text-align: center !important;
}

.sec-title.centered .separator{
	margin:0 auto;
	margin-top: var(--space-20);
}

/***
====================================================================
	Form elements
====================================================================
***/

.contact-section {
  padding: var(--space-120) var(--space-50);
}
.contact-section.home {
  padding: var(--space-0);
  background-image: url(../images/background/16.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.contact-section.home .contact-form {
  background: none;
  box-shadow: none;
  padding: var(--space-0);
}
.contact-section.home .contact-form form {
  padding: var(--space-100) var(--space-35);
}
.contact-section.home .contact-form .btn-submit { 
  width: 270px;
}

.contact-box {
  position: relative;
  overflow: hidden;
  background-color: var(--white-color);
  border: 1px solid #e1e9f4;
  border-radius: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-bottom: var(--space-15);
}
.contact-box:hover {
  border-color: transparent;
  box-shadow: 0px 10px 60px rgba(137, 151, 186, 0.15);
}
.contact-box .box-image {
  overflow: hidden;
  background-color: var(--color-two);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contact-box .box-image img {
  width: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contact-box:hover .box-image img {
  opacity: 0.70;
  transform: scale(1.04,1.04) rotate(1deg);
}

.contact-box .contact-box-inner {
  position: relative;
  padding: var(--space-60) var(--space-50);
  padding-top: var(--space-0);
  text-align: center;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.contact-box .contact-box-inner .content h5 {
  margin-bottom: var(--space-25);
}

.contact-box .contact-box-inner .content p {
font-size: var(--font-18);
line-height: 28px;
color: var(--color-six);
margin-bottom: 0;
}

.contact-box .contact-box-inner .image {
  position: relative;
  background-color: var(--white-color);
  width: 90px;
  height: 90px;
  line-height: 90px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 10px 20px rgba(137, 151, 186, 0.2);
  margin: -45px auto 25px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.contact-box:hover .contact-box-inner .image img {
  animation: rotateme3 0.8s ease-in-out;
  -webkit-animation: rotateme3 0.8s ease-in-out;
}

.contact-box .contact-box-inner .image img {
  margin: 0 auto;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 15px;
  margin-top: var(--space-35);
  padding: var(--space-100) var(--space-15);
  box-shadow: 0px 10px 60px rgba(137, 151, 186, 0.15);
}
.contact-form .btn-submit {
  width: 100%;
  max-width: 100%;
  margin-top: var(--space-15);
}
@media only screen and (max-width: 575px){
  .contact-section {
      padding: 50px 10px !important;
  }
  .contact-form {
      padding: 50px var(--space-15) !important;
  }
  .contact-form .btn-submit {
      width: 100% !important;
      padding-left: unset !important;
      padding-right: unset !important;
  }
  .create-listing-step-one-header {
      display: none;
  }
}

/***
====================================================================
	Business elements
====================================================================
***/
.business .page-wrapper {
  padding-top: 0px;
}
.business .main-header {
  background-color: #273450;
}
.business .main-header.sticky {
  background-color: var(--main-color);
}
.business .main-header .main-menu .navigation > li > a {
  color: var(--white-color);
}
.business .main-header .main-menu .navigation > li.current > a,
.business .main-header .main-menu .navigation > li > a:hover {
  color: var(--color-two);
}
.business .main-header.fixed-header .sticky-header {
  background-color: var(--main-color);
}
.business .main-header .sticky-header .mobile-nav-toggler,
.business .main-header .nav-outer .mobile-nav-toggler {
  color: var(--white-color);
}

.business .sec-title h1 {
  font-weight: 700;
}
/* Service section  */
.business .home-services-section {
  margin-top: -110px;
  z-index: 1;
}
.business .home-services-section .inner-column .row {
  column-gap: 15px;
}
.business .service-block {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 40px;
  height: 250px;
  background-color: var(--white-color);
  border-radius: 5px;
  box-shadow: 0px 10px 60px rgba(137, 151, 186, 0.15);
  margin-bottom: var(--space-0);
  transition: all 0.5s ease-in-out;
}
.business .service-block::before {
  position: absolute;
  left: 0%;
  top: 0%;
  width: 100%;
  height: 100%;
  color: var(--white-color);
  background-color: var(--color-two);
  transition: all 0.7s ease-in-out;
  transform: scale(0);
}
.business .service-block:hover {
	background-color: var(--color-two);
	color: var(--white-color);
}
.business .service-block:hover::before {
  	transform: scale(1.1);
}
.business .service-block .icon {
	width: var(--space-70);
	height: var(--space-70);
	line-height: var(--space-70);
	text-align: center;
	background: var(--white-color);
	box-shadow: 0px 10px 20px rgba(137, 151, 186, 0.2);
	border-radius: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--space-40);
	transition: all 0.7s ease-in-out;
}
.business .service-block .inner-box .icon i {
	color: var(--color-two) !important;
}
.business .service-block:hover .inner-box .icon i {
	color: var(--black-color) !important;
}
.business .service-block:hover .icon {
  	transform: rotateY(360deg);
}
.business .service-block .inner-box:hover .icon{
  	animation: none;
  	-webkit-animation: none;
}
.business .service-block h5 {
  	font-size: var(--font-18);
  	line-height: var(--font-26);
}
.business .service-block:hover h5 a,
.business .service-block h5 a:hover {
  	color: var(--white-color);
}
.business .service-block .inner-box h5 {
	color: var(--black-color) !important;
}
.business .service-block:hover .inner-box h5 {
	color: var(--white) !important;
}
#dashboard-items a {
	color: var(--black-color) !important;
}
#dashboard-items a:hover {
	color: var(--white) !important;
}


/* Business Process */
.business .business-process .image-column {
  	position: relative;
}
.business .business-process .image-column .image {
	transform-style: preserve-3d;
	overflow: hidden;
}

.business .business-process .sec-title {
  	margin-bottom: var(--space-20);
}
.business .business-process .text {
  	margin-bottom: var(--space-50);
}

.business .play-box span {
	font-size: var(--font-26);
	box-shadow: none;
	position: relative;
	width: 56px;
	height: 56px;
	line-height: 58px;
	border-width: 0px;
	background-color: var(--main-color);
}
.business .play-box span:before, 
.business .play-box span:after {
  	width: 56px;
  	height: 56px;
  	-webkit-box-shadow: 0px 0px 0px 20px rgba(255, 143, 31, 0.4);
    box-shadow: 0px 0px 0px 20px rgba(255, 143, 31, 0.4);
    animation: ripple5 2s ease-in-out infinite;
}

.business .play-box span:after {
    -webkit-box-shadow: 0px 0px 0px 40px rgba(255, 143, 31, 0.3);
    box-shadow: 0px 0px 0px 40px rgba(255, 143, 31, 0.3);
    -webkit-animation: ripple2 2s ease-in-out infinite;
    animation: ripple6 2s ease-in-out infinite;
}

@keyframes ripple5 {
    0% {box-shadow: 0px 0px 0px 0px rgba(255, 143, 31, 0.4);}
    50% {box-shadow: 0px 0px 0px 20px rgba(255, 143, 31, 0);}
    100% {box-shadow: 0px 0px 0px 0px rgba(255, 143, 31, 0);}
}
@keyframes ripple6 {
    0% {box-shadow: 0px 0px 0px 20px rgba(255, 143, 31, 0.3);}
    50% {box-shadow: 0px 0px 0px 40px rgba(255, 143, 31, 0);}
    100% {box-shadow: 0px 0px 0px 0px rgba(255, 143, 31, 0);}
}

/* Business Case */
.business .business-section .separator,
.business-section .separator::before,
.business-section .separator::after {
  	background-color: var(--color-two);
}
.business .business-case-column {
  background-color: var(--color-two);
  border-radius: 15px;
  box-shadow: 0px 20px 60px rgba(137, 151, 186, 0.15);
  padding: 68px 50px 68px 68px;
  height: 100%;
}
.business .business-case-block {
  color: var(--white-color);
}
.business .business-case-block h6 {
  font-family: var(--font-family-inter);
  font-size: var(--font-16);
  letter-spacing: 2px;
  font-weight: 400;
  text-transform: uppercase;
}
.business .business-case-block h3 {
  margin: 8px 0px 30px 0px;
}
.business .business-case-block h3 a {
  color: var(--white-color);
}
.business .business-case-block .fulltext p {
  color: var(--white-color);
}
.business .blog-details-inner .point-order li {
  font-size: 17px;
}
.business .business-case-block .text {
  color: var(--white-color);
  margin-bottom: var(--space-30);
}
.business .business-case-block .btn:hover {
  color: var(--white-color);
}
.business .business-case-carousel .owl-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.business .business-case-carousel .owl-dot {
  position: relative;
  background-color: var(--white-color);
  width: 12px;
  height: 12px;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.business .business-case-carousel .owl-dot.active {
  background-color: var(--white-color);
  width: 20px;
  height: 20px;
  transform: scale(1);
}
.business .business-case-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  display: block;
  background: var(--color-two);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.business .business-case-carousel .owl-dot.active span {
  transform: translate(-50%, -50%) scale(1);
}
.business .video-post {
  margin-bottom: var(--space-0);
}
.business .video-post,
.business .video-post .ytube-video,
.business .video-post .ytube-video .post-content {
  height: 100%;
  min-height: 500px;
}
.business .video-post .ytube-video .post-content img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  object-fit: cover;
}
.business .video-post .ytube-video .ytplay-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  background-color: rgba(39, 61, 113, 0.7);
}
.business .video-post .ytube-video .ytplay-btn:before, 
.business .video-post .ytube-video .ytplay-btn:after {
  width: 100px;
  height: 100px;
  -webkit-box-shadow: 0px 0px 0px 20px rgba(255, 143, 31, 0.4);
    box-shadow: 0px 0px 0px 20px rgba(255, 143, 31, 0.4);
    animation: ripple5 2s ease-in-out infinite;
}

.business .video-post .ytube-video .ytplay-btn:after {
    -webkit-box-shadow: 0px 0px 0px 40px rgba(255, 143, 31, 0.3);
    box-shadow: 0px 0px 0px 40px rgba(255, 143, 31, 0.3);
    -webkit-animation: ripple2 2s ease-in-out infinite;
    animation: ripple6 2s ease-in-out infinite;
}


/* Team Section */
.business .home-team-section {
  padding-top: var(--space-20);
}

/* Contact Section */
.business .home-contact-section {
  background-image: url(/assets/images/background/23.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.business .home-contact-section .contact-form {
  background: none;
  box-shadow: none;
  padding: var(--space-0);
}
.business .home-contact-section .contact-form form {
  padding: var(--space-100) var(--space-35);
}
.business .home-contact-section .contact-form .btn-submit { 
  width: 270px;
}

.business .home-contact-section .contact-form .sec-title .title {
  font-family: var(--font-family-body);
  font-size: var(--font-14);
  font-weight: 400;
}
.business .home-contact-section .contact-form .sec-title h1 {
  font-size: var(--font-30);
  line-height: var(--font-40);
  color: var(--white-color);
}
.business .home-contact-section .default-form input[type="text"], 
.business .home-contact-section .default-form input[type="email"], 
.business .home-contact-section .default-form input[type="password"], 
.business .home-contact-section .default-form select, 
.business .home-contact-section .default-form textarea {
  background-color: var(--white-color);
}

/* News Block */
.business .news-block .read-more {
  padding-left: var(--space-30);
  padding-right: var(--space-0);
  transition: all 0.5s ease-in-out;
}
.business .news-block .read-more:before {
  position: absolute;
  content: "\f135";
  left: 0;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'bootstrap-icons';
  font-size: var(--font-24);
  width: 0px;
  height: 40px;
  line-height: 40px;
  background: transparent;
  text-align: center;
  border-radius: 100%;
  transition: all 0.5s ease-in-out;
}

.business .news-block .read-more:hover {
  padding-left: var(--space-50);
}
.business .news-block .read-more:hover::before {
  width: 40px;
  background-color: var(--white-color);
  box-shadow: 0px 10px 20px rgba(137, 151, 186, 0.25);
}

/* Contact Section  */
.business .default-form .form-control {
  background-color: #f2f2f4;
}

/* FAQ */
.business .accordion-button:not(.collapsed),
.business .accordion-body {
  background-color: #f2f2f4;
}

/* Sidebar  */
.business .widget_tag_cloud a {
  background-color: #f2f2f4;
}
.business .widget_tag_cloud a:hover {
  background-color: var(--color-two);
}

/* Page Header */
.business .page_header {
  padding: 0px;
  margin: 0px;
}
.business .page_header::before {
  display: none;
}
.business .page_header .page_header_content .heading,
.business .page_header .breadcrumb li,
.business .page_header .breadcrumb li a {
  color: var(--white-color);
}
.business .page_header .breadcrumb li.active,
.business .page_header .breadcrumb li a:hover {
  color: var(--color-two);
}

.business .funfact-section {
  background-size: cover;
}

@media only screen and (max-width: 575px){
  .business .video-post,
  .business .video-post .ytube-video {
    min-height: auto !important;
  }
}


/** Business Listing Screens **/
/** 
.editbusinesslisting-contact
.editbusinesslisting-listing
.editbusinesslisting-socials
.editbusinesslisting-categories
.editbusinesslisting-areas
.editbusinesslisting-map
.editbusinesslisting-images
**/

.editbusinesslisting-categories .main-title {
	background-color: #F2F2F4;
	padding: 5px;
	margin: 0px;
	color: #9CA1A8;
	width: 100%;
}

.editbusinesslisting-categories .child-title {
	font-size: 14px;
	line-height: 18px;
}

.editbusinesslisting-areas .main-title {
	color: #9CA1A8;
}

#descriptionError {
	background-color: #F8D7DA !important;
}


/** Business Listing Payment Screen **/
.payNow {
	width: 100% !important;
	text-transform: uppercase !important;
	padding: 10px !important;
}