/*!
Theme Name: THS
Author: Eisenberg Inc.
Version: 2.0.3
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Global
# Typography

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  --cream: 				#FBF6E8;
  --orange: 			#F68D38;
  --red: 					#7E3D00;
  --blue: 			 	#415767;
	--dark-blue:		#2F3440;
	--black:				#000;
	--white:				#fff;
}



/*--------------------------------------------------------------
# Global
--------------------------------------------------------------*/

body {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}


main, .footer-section>.container  {
	display: block;
	max-width: 1384px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;

}

.no-scroll {
    overflow: hidden;
    height: 100vh; /* Prevent scrolling on mobile */
}

.dark-blue { color: var(--dark-blue); }

.cream { color: var(--cream); }

.red {color: var(--red);}

.orange {color: var(--orange);}

.white { color: var(--white); }

.black { color: var(--white); }

#primary ul {
  list-style: none;
  padding: 0;
}

#primary ul>li {
  position: relative;
  margin: 10px 0;
  padding-left: 20px; /* Adjust as needed */
  line-height: 1.5em;
}

#primary ul>li::before {
	content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 9px; /* Adjust as needed */
  height: 9px; /* Adjust as needed */
  border: 2px solid orange; /* Your desired color */
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 50%;
  z-index: 1;
}

.vc_btn3-container.ths_outline_button>.vc_btn3 {
	color: var(--cream);
	border: 3px solid var(--orange);
	border-radius: 10px;
	font-size: 1rem;
	font-weight: bold;
	background-image: none !important;
	padding: 10px 14px !important;
	text-transform: uppercase;
}

.vc_btn3-container.ths_outline_button>.vc_btn3:hover {
	border: 3px solid var(--orange);
	background-color: var(--orange);
	color: #fff !important;
}

.vc_btn3-container.ths_orange_button>.vc_btn3{
	font-size: 1.25rem;
	font-weight: bold;
	border-radius: 10px;
	border: 3px solid var(--orange);
	background-image: none !important;
	text-transform: uppercase;
}

.vc_btn3-container.ths_orange_button>.vc_btn3:hover{
	background-color: #fff !important;
	color: var(--orange) !important;
	border: 3px solid var(--orange);

}


.orange_border_top_bottom {
	border-top: 3px solid var(--orange);
	border-bottom: 3px solid var(--orange);
}

.orange_border-right {
	border-right: 3px solid var(--orange);
}

	@media screen and (max-width: 767px) {


		.vc_empty_space {
			height: 45px !important;
		}


		main, .footer-section>.container {
			padding-left: 20px;
			padding-right: 20px;
		}


		.vc_btn3-container.ths_orange_button > .vc_btn3 {
			font-size: 0.9rem;
		}

		.orange_border-right {
			border-right: none;
		}

	}



/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body,
p,
ol,
ul {
	font-size: 0.938rem;
	line-height: 1.5;
	font-weight: 500;
}

h1 {
	font-size: 3.875rem;
	line-height: 1.5;
}

h2 {
	font-size: 2.375rem;
	line-height: 1.1;
	margin-bottom: 0;
	margin-top: 0;
}

h3 {
	font-size: 2.25rem;
	line-height: 1.1;
	margin-bottom: 0;
}

h4 {
	font-size: 1.563rem;
  line-height: 1.2;
}

nav {
	font-size: 1rem;
	line-height: 1;
}

p {
	color:var(--blue);
}

b, strong {
    font-weight: 900;
}

.white_text {
	color: #fff;
}

.white_text h4 {
	color: var(--orange);
}

.white_text h4 a {
	color: #fff;
}

.white_text h4 a:hover {
	color: var(--orange);
}

.black_text {
	color: var(--blue);
}

.blue_text {
	color: var(--blue);
}

.white_copy p {
	color: #fff;
}


	@media screen and (max-width: 767px) {

		h1 {
		 	font-size: 2rem;
		 }

		 h2 {
		 	font-size: 1.7rem;
		 }

		 h3 {
		 	font-size: 1.5rem;
		 }

		 h4 {
		 	font-size: 1rem;
		 }

		p {
			font-size: 0.9rem;
		}
}


 /*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/



.primary_content,
 .primary_content.team_section {
 padding-top: 6.25rem !important;
 padding-bottom: 6.25rem  !important;
}

.primary_content:first-of-type  {
 padding-top: 6.25rem;
}

.primary_content:last-of-type  {
 padding-bottom: 6.25rem;
}


@media screen and (max-width: 767px) {

	.primary_content,
 .primary_content.team_section {
 padding-top: 1.25rem !important;
 padding-bottom: 1.25rem  !important;
}

.primary_content:first-of-type  {
 padding-top: 1.25rem;
}

.primary_content:last-of-type  {
 padding-bottom: 1.25rem;
}


}




 /*--------------------------------------------------------------
 # Hero
 --------------------------------------------------------------*/

 .hero {
   /* height: calc(100vh - 125px);
   padding-bottom: 49.72%;*/
   height: 100vh;
   max-height: 895px;
   min-height: 690px;
   margin-top: -125px;
   position: relative;
   overflow: hidden;
	 background-repeat: no-repeat;
	 background-size: cover;
	 background-position: top;
 }

 /* Video background styles */
 .hero-video {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: -1;
 }

 /* Image background styles */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top;
  z-index: -1;
}

 /* Apply overlay color and center content */
 .hero-overlay {
   position: absolute;
   background: transparent linear-gradient(180deg, #2F344000 0%, var(--dark-blue) 100%) 0% 0% no-repeat padding-box;
   height: 100%;
   width: 100%;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;
 }

 /* Center content horizontally and vertically */
 .hero-content {
	 width: 1384px;
	 margin: 0 auto;
	 padding-left: 40px;
	 padding-right: 40px;
	 position: absolute;
   bottom: 20%;
 }

 /* Style the h1 */
 .hero-content h1 {
   color: var(--cream);
   margin-bottom: 20px;
   line-height: 1.2;
	 margin-top: 0;
 }

 .hero-content p {
	 color: var(--cream);
	 font-weight: 500;
	 font-size: 2.375rem;
	 margin-top: 10px;
	 margin-bottom: 0;
 }

 /* Style the "How we make a difference" button */
 .hero-content .vc_btn3-container {
   margin-top: 3%;
 }


@-webkit-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@-moz-keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
@keyframes ani-mouse {
	0% {
	opacity: 1;
	top: 29%;
	}
	15% {
	opacity: 1;
	top: 50%;
	}
	50% {
	opacity: 0;
	top: 50%;
	}
	100% {
	opacity: 0;
	top: 29%;
	}
}
 .scroll-btn {
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 5px;
	text-align: center;
}
.scroll-btn > * {
	display: inline-block;
	line-height: 18px;
	font-size: 13px;
	font-weight: normal;
	color: #7f8c8d;
	color: #ffffff;
	font-family: "proxima-nova", "Helvetica Neue", Helvetica, Arial, sans-serif;
	letter-spacing: 2px;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *.active {
	color: #ffffff;
}
.scroll-btn > *:hover,
.scroll-btn > *:focus,
.scroll-btn > *:active,
.scroll-btn > *.active {
	opacity: 0.8;
	filter: alpha(opacity=80);
}
.scroll-btn .mouse {
	position: relative;
	display: block;
	width: 35px;
	height: 55px;
	margin: 0 auto 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border: 3px solid white;
	border-radius: 23px;
}
.scroll-btn .mouse > * {
	position: absolute;
	display: block;
	top: 29%;
	left: 50%;
	width: 8px;
	height: 8px;
	margin: -4px 0 0 -4px;
	background: white;
	border-radius: 50%;
	-webkit-animation: ani-mouse 2.5s linear infinite;
	-moz-animation: ani-mouse 2.5s linear infinite;
	animation: ani-mouse 2.5s linear infinite; }


@media screen and (max-width: 1384px) {


		.hero-content {
			width: 100%;
		}

		.hero-content h1 {
 	 	font-size: 2.875rem;
 	 }

	 .hero-content p {
	 	font-size: 1.5rem;
	 }



	}


	@media screen and (max-width: 992px) {

		 .hero {
		 	min-height: 495px;

		 }

		 .scroll-btn {
		 	display: none;
		 }

		 .hero-content {
		 	padding-left: 20px;
  		padding-right: 20px;
		 }

		 .hero-content br {
		  	display: none;
		  	
		  }

		 .hero-content h1 {
		 	font-size: 2rem;
		 }

		 .hero-content p {
		 	 	font-size: 1rem;
		 	 }

		 .vc_btn3-container.ths_outline_button>.vc_btn3 {
		 	font-size: 1rem;
		 }


	}


	@media screen and (max-width: 967px) {

		.hero {
		 	min-height: 495px;
		 	height: auto;
		 }

		 .hero-content h1 {
		 	font-size: 1.5rem;
		 }

		 .vc_btn3-container.ths_outline_button>.vc_btn3 {
		 	font-size: 0.8rem;
		 }

}


	/*--------------------------------------------------------------
  # Home Top
  --------------------------------------------------------------*/
.home_top_row {
  display: flex;
  flex-wrap: wrap; /* Allow flex items to wrap at 992px */
  width: 100%;
  position: relative;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
}

.half-width {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
}


.creambkg {
  background-color: var(--cream);
  display: flex;
  border-right: 3px solid var(--orange);
}

.creambkg h2 {
  color: var(--blue);
}

.creambkg h4 {
	color: var(--orange);
	font-size: 1.563rem;
	line-height: 1.2;
}

.creambkg h4 a {
	color: var(--blue);
}

.creambkg h4 a:hover {
	color: var(--orange);
}

.half-content-left {
  max-width: 650px;
  margin-left: auto;
  padding: 6.25rem 6rem 6.25rem 0;
}

.bluebkg {
  background-color: var(--blue);
  flex: 1;
  display: flex;
  flex-direction: column;
  color: #fff;
  position: relative;
  /*z-index: -1;*/
}



.orangebkg {
  background-color: var(--orange);
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--blue);
  position: relative;
  /*z-index: -1;*/
}

.bluebkg p {
	color: #fff;
}

.orangebkg p {
	color: var(--blue);
}

.half-content-right {
  max-width: 650px;
  margin-right: auto;
  padding: 1rem;
  padding: 6.25rem 40px 6.25rem 6rem;
  display: flex;
  justify-content: space-between;
}

.content-block {
  flex: 1;
  margin-right: 1rem;
}

.button-container {
  width: 30%;
  display: flex;
  align-items: center; /* Center the button vertically within its container */
}

.content-button {
  align-self: center;
  margin-left: auto;
  background-color: var(--orange);
  width: 57px;
  height: 57px;
  border-radius: 50%; /* Makes the button circular */
  display: flex; /* Enables flexbox layout for easy centering */
  justify-content: center; /* Horizontally centers the icon */
  align-items: center; /* Vertically centers the icon */
  text-decoration: none;
}

.content-button.white-btn {
  background-color: var(--blue);
}

.content-button i {
  color: white;
  font-size: 2rem; /* Updated size to 2rem */
}

.content-button.white-btn i {
	color: var(--orange);
}


.content-button:hover {
	background-color: #fff;
}

.content-button:hover i {
	color: var(--orange);
}


.content-button.white-btn:hover {
	background-color: #fff;
}

.content-button.white-btn:hover i {
	color: var(--orange);
}


@media screen and (max-width: 1385px) {

	.half-content-left {
	  padding: 3rem 6rem 3rem 40px;
	}

}


@media screen and (max-width: 992px) {

  .home_top_row {
    flex-direction: column; /* Stack .half-width-left and .half-width-right */
  }

  .half-width {
  	max-width: 100%;
  }

  .half-content-left, .half-content-right {
		padding: 1rem 40px;
    max-width: 100%;
  }

  .half-width-right {
    max-width: 100%; /* Allow .half-width-right to take up full width */
    padding: 0;
    flex-direction: row;
  }

  .creambkg {
	  border-right: none;
	}


  .bluebkg,
  .orangebkg {
    flex: 1; /* Both divs take up 50% of .half-width-right */
    width: 50%; /* 50% width for each div */
  }


  .button-container,
  .content-block {
  	width: 50%;
  }


}

@media screen and (max-width: 767px) {

	.half-width-right {
		flex-direction: column;
	}

	.half-content-left, .half-content-right {
		padding: 20px;
	}

	.bluebkg,
  .orangebkg {
    flex: 1; /* Both divs take up 50% of .half-width-right */
    width: 100%; /* 50% width for each div */
  }

  .content-block {
	  flex: 1;
	  margin-right: 0;
	}

	.creambkg h4 {
		font-size: 1rem;
	}

}

@media screen and (max-width: 400px) {

	.half-content-right {
		flex-direction: column;
	}

	 .button-container,
  .content-block {
  	width: 100%;
  }

  .bluebkg,
  .orangebkg {
    padding-bottom: 2rem;
  }

}


/*--------------------------------------------------------------
# Home Mission
--------------------------------------------------------------*/

.service_row.home_colors h2 {
	color: var(--orange);
}

.service_row.home_colors .wpb_text_column {
	color: #000;
}

/*--------------------------------------------------------------
# Image Navigation
--------------------------------------------------------------*/
.image_navigation_row>.vc_column-inner>.wpb_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
	padding-bottom: 75px;
}

.info-box {
  flex: 0 0 calc(33.33% - 5px); /* Three columns with 5px gap in between */
  position: relative;
  min-height: 375px;
  margin-bottom: 10px; /* Gap between rows */
  overflow: hidden;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  transition: background 0.3s ease-in-out;
	background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.info-box-overlay {
	  position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(65,87,103,0.5);
    border-bottom: 9px solid var(--orange);
    transition: all 0.3s ease-in-out;
}

.info-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  
  padding: 20px;
  transition: transform 0.3s ease-in-out;
  transform: translateY(80%);
}

.info-content-text {
	transition: opacity 0.3s ease-in-out;
	opacity: 0;
}


.info-box:hover .info-box-overlay {
	background: rgba(246,141,56,0.9);
}

.info-box:hover .info-content {
  transform: translateY(0%);
}


.info-box:hover .info-content-text {
	opacity: 1;
}

/* Target the first two .info-box divs */
.info-box:nth-child(-n + 2) {
  flex-basis: calc(50% - 4px); /* Half of the available width with 5px gap in between */
}

.info-box h3 {
	font-size: 1.688rem;
	text-transform: uppercase;
	margin-top: 0;
	line-height: 1.1;
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.info-box p {
	font-size: 0.938rem;
	color: #fff;
	font-weight: 500;
	transition: all 0.3s ease-in-out;
}

.info-box:hover h3,
.info-box:hover p {
	color: #415767;
}

.info-box a {
	color: #fff;
}

.info-box a:hover {
	color:  #415767;
}

@media screen and (max-width: 1200px) {

	.info-box h3 {
		font-size: 1.3rem;
	}

}

@media screen and (max-width: 992px) {

	.info-box,
	.info-box:nth-child(-n + 2)  {
		flex: 0 0 calc(50% - 5px);
	}

}

@media screen and (max-width: 767px) {

	.info-box,
	.info-box:nth-child(-n + 2)  {
		flex: 0 0 calc(50% - 5px);
	}

	.info-box {
		min-height: 260px;
		height: auto;
	}

	.info-box .info-content {
  transform: translateY(0);
  top: 0;
  height: auto;
  display: block;
}

.info-box:hover .info-content {
  transform: translateY(0);
}

.info-box-overlay {
	background: rgba(65,87,103,0.9);
}

.info-content-text {
	opacity: 1;
}


	.info-box h3  {
		font-size: 1rem;
	}

	.info-box p {
		font-size: 12px;
	}

}



/*--------------------------------------------------------------
# Service Row
--------------------------------------------------------------*/

.service_row {
	min-height: 605px;
	border-top: 3px solid var(--orange);
	border-bottom: 3px solid var(--orange);
}


.service_row.left_copy .ths_diamonds_left {
	border-right: 3px solid var(--orange);
} 

.service_row.right_copy .ths_diamonds_right {
	border-left: 3px solid var(--orange);
} 


.service_row .wpb_text_column {
	max-width: 650px;
}

.service_row.left_copy .wpb_text_column{
	float: right;
	padding-top: 4rem;
	padding-right: 5rem;
	padding-left: 0;
	padding-bottom: 4rem;
}

.service_row.left_copy .ths_outline_button {
		max-width: 650px;
    float: right;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 20px;
}


.service_row.right_copy .wpb_text_column {
	padding-top: 4rem;
	padding-left: 5rem;
	padding-right: 40px;
	padding-bottom: 4rem;
}


.service_row.right_copy .ths_outline_button {
	max-width: 650px;
  float: left;
  width: 100%;
  padding-left: 5rem;
  padding-right: 40px;
  margin-bottom: 20px;
}

.service_row .wpb_text_column {
	color: #fff;
}

.service_row.blue_copy .wpb_text_column {
	color: var(--blue);
}

.service_row.blue_copy .wpb_text_column p {
	color: var(--blue);
}

.service_row .wpb_text_column h3 {
	font-size: 1.563rem;
  line-height: 1.2;
	color: var(--orange);
}


.service_row .wpb_text_column.orange_section h3 {
	color: #fff;
}

	@media screen and (max-width: 1384px) {

		.service_row.left_copy .wpb_text_column {
			padding-left: 40px;
		}

	}


	@media screen and (max-width: 1024px) {


		.service_row.left_copy .wpb_text_column{
			padding-right: 3rem;
		}

		.service_row.right_copy .wpb_text_column {
			padding-left: 3rem;
		}

	}

@media screen and (max-width: 767px) {

	.service_row {
			min-height: auto;
		}

		.service_row.left_copy .ths_diamonds_left {
			border-right: none;
		} 

		.service_row.right_copy .ths_diamonds_right {
			border-left: none;
		} 


	.service_row .wpb_text_column {
			max-width: 100%;
		}

	.service_row.left_copy .wpb_text_column,
	.service_row.right_copy .wpb_text_column {
		padding: 20px 20px 20px;
	}

	.service_row .vc_col-sm-6.vc_col-has-fill{
		display: none !important;
	}

	.service_row .wpb_text_column h3 {
		font-size: 1rem;
	}

	.service_row.left_copy .ths_outline_button,
	.service_row.right_copy .ths_outline_button {
	  max-width: 100%;
	  float: left;
	  width: 100%;
	  padding-left: 20px;
	  margin-bottom: 40px;
	  text-align: left;
	}


}

/*--------------------------------------------------------------
# Stats Row
--------------------------------------------------------------*/

.stats_row {
	color: var(--blue);
	text-align: center;
	padding-top: 100px;
	padding-bottom: 100px;
}

.stats_row>.vc_column_container>.vc_column-inner>.wpb_wrapper {
	display: flex;
  justify-content: center;
  align-items: center;

}


.stats_row .double_num_row {
	display: flex;
  justify-content: center;
  align-items: top;

}

.stats_row .double_num_row .double_num {
	flex: 1;
	margin: 0 10px;
	width: 190px;
}

.stats_row .ths_flex_box {
  margin: 0 10px; /* Adjust as needed */
}

.stats_row .stats_box_basic .countup-number {
	width: 325px;
	margin: 0 auto;
}

.stats_row h3 {
	font-size: 5.25rem;
	margin-top: 0;
}

.stats_row p {
	font-size: 1.875rem;
	font-weight: bold;
	line-height: 1.2;
	margin-top: 0;
	margin-bottom: 10px;
	color: var(--blue);
}


@media screen and (max-width: 1023px) {

		.stats_row p {
			font-size: 1.2rem;
		}

		.stats_row h3 {
		    font-size: 3rem;
		    margin-top: 0;
		}

		.stats_row .stats_box_basic .countup-number {
		  width: 200px;
		  margin: 0 auto;
		}

		.stats_row .double_num_row .double_num {
		    flex: 1;
		    margin: 0 10px;
		    width: 120px;
		}

}

@media screen and (max-width: 767px) {

	#primary .services_page.services_page_home {
  padding-top: 50px;
  padding-bottom: 50px;
  display: none;
}

.stats_row {
	padding-top: 40px;
	padding-bottom: 40px;
}


	.services_page.services_page_home .stats_row>.vc_column_container>.vc_column-inner>.wpb_wrapper {
		display: flex;
	}

	.stats_row>.vc_column_container>.vc_column-inner>.wpb_wrapper,
 	.stats_row .double_num_row  {
		flex-direction: row;
	}

	  .stats_row > .stats_column_mobile.vc_column_container > .vc_column-inner > .wpb_wrapper {
	  	flex-direction: column;
	  }

	.stats_row p {
	    font-size: 1rem;
	}

	.stats_row h3 {
    font-size: 1.5rem;
  }

  .stats_row img {
   	max-width: 95px;
   }

.stats_row .double_num_row .double_num {
	width: 100%;
	margin-bottom: 30px;
}

  .services_page .stats_row > .vc_column_container.stats_three_boxes > .vc_column-inner > .wpb_wrapper {
    display: block;
  }

.services_page.services_page_home  .stats_row img {
	max-width: 80px !important;
	margin-top: 20px;
	margin-bottom: 30px;
}

.services_page.services_page_home .stats_row .ths_flex_box  h3 {
	font-size: 2rem;
}

.services_page.services_page_home .stats_row .ths_flex_box p {
	font-size: 0.9rem;
}



}


 /*--------------------------------------------------------------
 # Text Banner
 --------------------------------------------------------------*/

.text_banner {
	color: var(--blue);
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.text_banner h1 {
	margin-top: 0;
}


 /*--------------------------------------------------------------
 # Clinet Consultant Boxes
 --------------------------------------------------------------*/

 .client_consultant_row {
 	color: #fff;
 }

 .client_consultant_row .left_copy>.vc_column-inner>.wpb_wrapper>.vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper {
 		max-width: 650px;
 		float: right;
		padding-top: 4rem;
		padding-right: 5rem;
		padding-left: 40px;
		padding-bottom: 4rem;
		display: flex;
    justify-content: space-between;

 }

 .client_consultant_row .right_copy>.vc_column-inner>.wpb_wrapper>.vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper {
 	max-width: 650px;
 	padding-top: 4rem;
	padding-left: 5rem;
	padding-right: 40px;
	padding-bottom: 4rem;
	display: flex;
  justify-content: space-between;
 }

  .client_consultant_row .left_copy>.vc_column-inner>.wpb_wrapper>.vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column,
   .client_consultant_row .right_copy>.vc_column-inner>.wpb_wrapper>.vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper>.wpb_text_column {
   	flex: 1;
   }

 .client_consultant_row h2 {
 	margin-top: 0;
 }

  .client_consultant_row p {
  	color: #fff;
  }


 @media screen and (max-width: 992px) {

 	.client_consultant_row .left_copy,
 	.client_consultant_row .right_copy {
 		width: 100%;
 	}

 	 .client_consultant_row .left_copy>.vc_column-inner>.wpb_wrapper>.vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper,
 	 .client_consultant_row .right_copy>.vc_column-inner>.wpb_wrapper>.vc_row>.wpb_column>.vc_column-inner>.wpb_wrapper {
 	 	max-width: 100%;
 	 	padding: 40px;
 	 }

}


#ths_top_copy .top_copy_left .vc_column-inner {
	background-image: url('../images/cream_pattern.png');
	background-size: 267px;
	background-position: 0;
	background-repeat: repeat-y;
}

#ths_top_copy .top_copy_right .vc_column-inner:first-of-type {
	background-image: url('../images/blue_pattern.png');
	background-repeat: repeat-y;
	background-size: 267px;
	background-position: 100%;
}



#ths_top_copy .top_copy_left .vc_column-inner .wpb_wrapper {
		max-width: 650px;
 		float: right;
		padding-top: 4rem;
		padding-right: 5rem;
		padding-left: 40px;
		padding-bottom: 4rem;
}






 /*--------------------------------------------------------------
 # Two Column Layout
 --------------------------------------------------------------*/

.ths_two_column_layout,
.ths_two_column_layout .left_copy,
.ths_two_column_layout .right_copy
 {
	display: flex;
}

.ths_two_column_layout .left_copy>.vc_column-inner>.wpb_wrapper  {
	max-width: 650px;
	float: right;
	padding-top: 6.25rem;
	padding-right: 8rem;
	padding-left: 0;
	padding-bottom: 6.25rem;
	display: flex;
	flex-direction: column;
  justify-content: space-between;
}


.ths_two_column_layout .right_copy>.vc_column-inner>.wpb_wrapper {
	max-width: 650px;
 	padding-top: 6.25rem;
	padding-left: 5rem;
	padding-right: 40px;
	padding-bottom: 6.25rem;
	display: flex;
	flex-direction: column;
  justify-content: space-between;
}


 @media screen and (max-width: 1384px) {

 	.ths_two_column_layout .left_copy>.vc_column-inner>.wpb_wrapper {
 		padding-left: 40px;
 	}

 }

 @media screen and (max-width: 1024px) {

 	.ths_two_column_layout .left_copy>.vc_column-inner>.wpb_wrapper {
 		padding-right: 3rem;
 	}

 	.ths_two_column_layout .right_copy>.vc_column-inner>.wpb_wrapper {
 		padding-left: 3rem;
 	}

}

 @media screen and (max-width: 992px) {

 	.ths_two_column_layout .left_copy>.vc_column-inner>.wpb_wrapper {
 		padding-right: 1rem;
 	}

 	.ths_two_column_layout .right_copy>.vc_column-inner>.wpb_wrapper {
 		padding-left: 1rem;
 	}

}


 @media screen and (max-width: 767px) {

 	.ths_two_column_layout,
.ths_two_column_layout .left_copy,
.ths_two_column_layout .right_copy
 {
	display: block;
}

 	.ths_two_column_layout .left_copy>.vc_column-inner>.wpb_wrapper,
 	.ths_two_column_layout .right_copy>.vc_column-inner>.wpb_wrapper {
 		padding: 20px;
 	}


}


 /*--------------------------------------------------------------
 # Image Banner
 --------------------------------------------------------------*/

.ths_image_banner {
	padding-bottom: 32.82%;
	background-position: center top;
	background-size: cover;
}


.ths_image_banner_button {
	min-height: 350px;
}

 /*--------------------------------------------------------------
 # Quote
 --------------------------------------------------------------

.ths_quote {
	padding-top: 4.9rem;
	padding-bottom: 4.9rem;
}

.ths_quote h2 {
	margin-top: 0;
}


blockquote {
	padding: 1rem 1.2rem;
  width: 70%;
  margin: 0 auto 2rem;

}

blockquote p {
	font-size: 1.3rem;
	margin-top: 0;
}

blockquote:before,
blockquote:after{
    font-family: FontAwesome;
    position: absolute;
    color: var(--orange);
    font-size: 38px;
}

.ths_quote_white blockquote:before,
.ths_quote_white blockquote:after {
	color: #fff;
}

blockquote:before {
	  content: "\f10d";
    margin-right: -20px;
    right: 0%;
    position: absolute;
    top: 42px;
}

blockquote:after {
	content: "\f10e";
    margin-left: -20px;
    left: 0;
    top: auto;
    bottom: 0;
}
*/

.ths_quote {
	padding-top: 6.25rem;
	padding-bottom: 6.25rem;
}

.ths_quote h2 {
	margin-top: 0;
	margin-bottom: 20px;
}

.testimonial-slider {
    width: 80%;
    margin: 0 auto;
}

.testimonial-slide {
    display: flex;
    justify-content: center; /* Horizontally centers content if needed */
    align-items: center; /* Vertically centers content */
    height: 300px; /* Adjust this value as per your requirements */
}

.testimonial-slide blockquote {
    position: relative;

    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
	   padding: 1rem 1.2rem;
	  width: 100%; /* Ensures blockquote takes up full width of the slide */
    max-width: 80%;
	  margin: 0 auto 2rem;

}

.testimonial-slide blockquote p {
	color: #fff;
}

.testimonial-slide blockquote hr {
	margin-top: 40px;
}

/* Large opening quote mark on the top right */
.testimonial-slide blockquote::before {
    content: '“';
    font-family: 'SF Pro', sans-serif;
    font-weight: 900; /* Important to ensure the content appears */
    color: var(--orange);
    font-size: 100px;
    position: absolute;
    top: 15px;
    left: -60px;
    line-height: 1;
}

/* Large closing quote mark on the bottom right */
.testimonial-slide blockquote::after {
    content: '”';
    font-family: 'SF Pro', sans-serif;
    font-weight: 900; /* Important to ensure the content appears */
    color: var(--orange);
    font-size: 100px;
    position: absolute;
    bottom: -75px;
    right: -60px;
}


.ths_quote_white .testimonial-slide blockquote::before,
.ths_quote_white .testimonial-slide blockquote::after {
	color: var(--blue);
}

.ths_quote_white .testimonial-slide blockquote hr {
	background-color: var(--blue);
  height: 3px;
  
}

.ths_quote_white .testimonial-slide p {
	color: #fff;
}

.slick-next:before, .slick-prev:before {
	font-size: 40px !important;
}


#primary ul.slick-dots {
	bottom: -60px;
}


#primary ul.slick-dots li::before {
	content: '' ;
	width: 0;
	height: 0;
	border: none;
}

#primary .slick-dots li button {
	width: 25px;
	height: 25px;
}

#primary .slick-dots li button:before {
	opacity: 1;
  color: #fff;
  font-size: 12px;
  width: 27px;
  height: 27px;
  line-height: 20px;

}

#primary .slick-dots li.slick-active button:before {
	border: 3px solid var(--orange);
	border-radius: 50%;
	top: -2px;
}


#primary .ths_quote_white .slick-dots li.slick-active button:before {
	border: 3px solid #fff;
}


#primary .slick-dots li {
	width: 25px;
	height: 25px;
	line-height: 0;
  padding: 0;
}


blockquote hr {
	background-color: var(--orange);
	height: 3px;
}


@media screen and (max-width: 992px) {

	.testimonial-slide blockquote {
    padding: 1rem 0.9rem;
    max-width: 83%;
  }

  .testimonial-slide blockquote::before {
  	 font-size: 70px;
  	 left: -45px;
  }

  .testimonial-slide blockquote::after {
  	 font-size: 70px;
  	 right: -45px;
  	 bottom: -50px;

  }


}


@media screen and (max-width: 767px) {

	.ths_quote {
	  padding-top: 1.25rem;
	  padding-bottom: 1.25rem;
	}

	.testimonial-slider {
		width: 100%;
	}

		.testimonial-slide blockquote {
			font-size: 0.9rem;
			font-weight: 300;
		}

	.testimonial-slide blockquote::before {
    content: "";
  }

  .testimonial-slide blockquote::after {
    content: "";
  }

}	




@media screen and (max-width: 600px) {

	.testimonial-slide blockquote {
		max-width: 100%;
		padding: 0;
	}

}


 /*--------------------------------------------------------------
 # Team Member
 --------------------------------------------------------------*/

 .team_section {
 	border-top: 3px solid var(--orange);
 	border-bottom: 3px solid var(--orange);
 }

/* Styles for the team members list */
.ths-team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Styles for each team member */
.ths-team-member {
    flex-basis: calc(25% - 20px); /* Four members per row with 20px spacing */
    margin: 10px;
    position: relative;
    text-align: center;
    margin-bottom: 75px;
    cursor: pointer;
}



.ths-team-member h3 {
    margin: 10px 0;
}

/* Styles for the diamond-shaped image container */
.ths-team-image {
   position: relative;
    overflow: hidden;
    max-width: 195px;
    max-height: 195px;
    margin: 0 auto;
}

.ths-team-image img {

}


/* Styles for the orange overlay */
.overlay {
     background-color: rgba(243, 145, 34, 0.75);
    mix-blend-mode: screen;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ths-team-member .overlay {
    z-index: 1; /* Ensure overlay is on top of the rotated image */
}

/* Show the overlay on hover */
.ths-team-member:hover .overlay {
    opacity: 1;
}



.ths-team-member .ths-team-info {
	position:relative;
	padding-top: 5px;
}

.ths-team-member .ths-team-info h3 {
	color: var(--orange);
	font-size:1.375rem;
	margin-bottom: 5px;
}

.ths-team-member .ths-team-info p {
	margin-top: 0;
	margin-bottom: 0;
}


.ths-team-info .team-phone {
	font-weight: 400;
}

.ths-team-member .ths-team-info .team-links {
	margin-top:10px;
	margin-bottom: 10px;
}

.ths-team-member .ths-team-info .team-links i {
	  background-color: #3F5666;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
}

.ths-team-member .ths-team-info .team-links a:hover i {
	background-color: var(--orange);
}


.ths-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black background */
    z-index: 2; /* Place it above the modal */
}

.ths-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid var(--orange);
    border-radius: 10px;
    z-index: 3; /* Place it above the overlay */
    width: 60%; /* Adjust the maximum width of the modal */
    max-height: 560px;
    
    background-color: var(--cream);
}

.team-detail-content {
    max-height: 420px; /* Set the maximum height for the bio section */
    overflow-y: auto; /* Enable vertical scrolling when content exceeds height */
    padding-right: 10px; /* Add padding for better spacing near the scrollbar */
}

/* Custom scrollbar styles */
.team-detail-content::-webkit-scrollbar {
    width: 8px; /* Width of the scrollbar */
}

.team-detail-content::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track background color */
}

.team-detail-content::-webkit-scrollbar-thumb {
    background: var(--blue); /* Scrollbar color */
    border-radius: 4px; /* Rounded edges */
}

.team-detail-content::-webkit-scrollbar-thumb:hover {
    background: var(--blue); /* Darken the scrollbar when hovered (optional) */
}

/* Add CSS to close the modal when clicking the overlay */
.ths-modal-overlay.is-active {
    display: block;
}

.ths-modal.is-active {
    display: block;
    animation: fadeIn 1.0s ease-in-out; /* Add a fade-in animation for a smoother appearance */
}

/* Rest of your modal styles here */

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.ths-modal-content {
    background-color: #F5F0E2;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
}

.ths-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
    background-color: transparent;
    border-radius: 50%;
    line-height: 1;
    width: 30px;
    height: 30px;
    color: var(--orange);
    border: 2px solid var(--orange);
}

.ths-modal-close:hover {
	background-color: var(--orange);
	color: #fff;
}

/* Styles for additional  details in the modal */
.ths-modal .top-row {
	display: flex;
	align-items: stretch;
}

.ths-modal .top-row .team-detail-image {
	 flex: 0 0 40%;
	  background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 435px;
}

.ths-modal .top-row .team-detail-image img {
    display: block; /* Remove extra spacing around the image */
    margin: 0; /* Remove margin to prevent overlap */
    padding: 23px; /* Use padding to add spacing inside the container */
    border-radius: 10px; /* Add any desired border radius */
   
    box-sizing: border-box; /* Ensure padding is included in the total width/height */
    height: auto; /* Maintain aspect ratio */
}

.ths-modal .team-detail-info {
	text-align: left;
	padding: 20px 20px;
	flex: 1; /* Fill the remaining space */
    display: flex;
    flex-direction: column;
    overflow: scroll;

}

.ths-modal .team-detail-info h3 {
	color: var(--orange);
	font-size: 1.563rem;
	margin-top: 0;
	margin-bottom: 0;
}

.ths-modal .team-detail-info p {
	margin-top: 0;
}

.ths-modal .team-detail-content p {
	text-align: left;
	font-size: 0.9rem;
	margin-bottom: 0.9em;
}

.ths-modal .team-links {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align to the bottom */
    padding-bottom: 10px;
}

.ths-modal .team-phone,
.ths-modal .team-social {
    flex: 0 0 48%; /* Equal width for both columns with a small gap in between */

}

.ths-modal .team-links .team-social i {
    margin-right: 5px; /* Add some spacing between the icons */
    float: right;
    background-color: #3F5666;
    padding: 10px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.9rem;
}

.ths-modal .team-links .team-social a:hover i {
	background-color: var(--orange);
}


@media screen and (max-width: 1037px) {

	.ths-modal .team-links {
    flex-direction: column;
     align-items: flex-start;
}


}


@media screen and (max-width: 1200px) {

	.ths-modal .top-row .team-detail-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top;
    min-height: 435px;
}


}



@media screen and (max-width: 992px) {

	.ths-team-member {
    flex-basis: calc(33.33333333% - 20px); /* Four members per row with 20px spacing */
   }


}

@media screen and (max-width: 767px) {

	 .team-detail-content {
        max-height: none; /* Allow the content to grow with no height restriction */
        overflow-y: visible; /* Disable scrolling */
        padding-right: 0; /* Remove scrollbar padding */
    }

	.ths-team-member {
    flex-basis: calc(50% - 20px); /* Four members per row with 20px spacing */
   }

   .ths-team-member .ths-team-info h3 {
   	font-size: 1rem;
   }

    .ths-team-member .ths-team-info p {
    	font-szie: 0.9rem;
    }

     .ths-modal {
     	width: 95%;
     	overflow-y: scroll;
     }

     .ths-modal .top-row .team-detail-image {
     	min-height: auto;
     }


    .ths-modal .team-phone, .ths-modal .team-social {
    	margin-top: 10px;
    }

   .ths-modal .top-row {
    flex-direction: column;
  }

 

}


 /*--------------------------------------------------------------
 # Work With Us
 --------------------------------------------------------------*/

.primary_content.address_content {
	color: var(--blue);
}

.primary_content.address_content h2 {
	color: var(--orange);
	font-size: 1.375rem;
	margin-top: 0;

}

.primary_content.address_content p strong {
	color: var(--blue);
}

.primary_content.address_content a {
	color: var(--blue); 
}

.primary_content.address_content a:hover {
	color: var(--orange);
}

.primary_content.address_content .work_social_links {
	margin-top: 25px !important;
	margin-bottom: 50px !important;
}

.primary_content.address_content .work_social_links li {
	padding-right: 16px !important;
}

.primary_content.address_content .work_social_links li a {
	border-radius: 50%;
    line-height: 54px!important;
    width: 54px;
    height: 54px;
  background-color: var(--blue) !important;
}

.primary_content.address_content .work_social_links li a:hover {
	background-color: var(--orange) !important;
}


.primary_content.address_content p {
	font-size: 1.063rem;
}

.primary_content.address_content .gusta-post-meta p {
	margin-bottom: 10px !important;
}


 /*--------------------------------------------------------------
 # Contact Forms
 --------------------------------------------------------------*/

.sub_page_contact_form h1 {
	color: var(--blue);
	font-size: 3rem;
	margin-bottom: 30px !important;
}

.gform_required_legend {
	font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px !important;
    display: none;
}

.gfield_label {
	color: var(--blue);
	font-size: 1rem;
	font-weight: 500;
    font-style: normal;

}

.gform_wrapper.gravity-theme .gfield input.large,
.gform_wrapper.gravity-theme .gfield textarea {
	background-color: var(--cream);
	border-radius: 5px;
	color:var(--blue);
}

.gform_wrapper.gravity-theme .gfield select.large {
	background-color: var(--cream);
	border-radius: 5px;
	color:var(--blue);
}

.gfield.center_textarea{
	width: 50%;
	margin: 0 auto;
}

.gform_button {
	margin: 0 auto;
	color: #fff !important;
	background-color: var(--blue) !important;
	font-weight: 500;
  font-style: normal;
  font-size: 1.25rem;
  border-radius: 5px !important;
  border-color: var(--blue) !important;
  padding: 10px 14px !important;
  transition: all 0.3s ease;
}


.gform_button:hover {
	background-color: var(--orange) !important;
	border-color: var(--orange) !important;
}


.work_with_us_form h2 {
	color: var(--orange);
}

#gform_1,
#gform_2,
#gform_3 {
	margin-top: 50px;
}

#field_1_5,
#field_3_5 {
	grid-column: span 6;
}

#field_1_13,
#field_1_12,
#field_3_11,
#field_3_12,
#field_2_12,
#field_2_13 {
	grid-column: span 3;
}

#field_1_6,
#field_2_10,
#field_3_10,
#field_2_6,
#field_2_11 {
	width: 50%;
	margin: 0 auto;
	margin-bottom: 30px;
}

#field_2_10  .gfield_label {
	text-align: center;
	color: var(--blue);
	font-size: 2.375rem;
	width: 100%;
}

#field_2_10 .ginput_container_select {
	text-align: center;
}

#input_2_10 {
	width: 60%;
	margin: 0 auto;
}

#field_2_10 .gfield_required {
	display: none;
}

#field_2_10 select.large {
	background-color: #fff;
	border: 2px solid var(--orange);
	color: var(--blue);
}



#field_2_5 {
	grid-column: span 6
}


.form_margin-right {
	margin-right: 20px;
}

.form_margin-left {
	margin-left: 20px;
}


#field_2_7.form_half_width {
	  grid-column: span 12;
    width: 50% !important;
    margin: 0 auto !important;
}



@media screen and (max-width: 767px) {

	.sub_page_contact_form h1 {
		font-size: 1.5rem;
	}

	#field_2_10 .gfield_label {
		font-size: 1.2rem;
	}

	.gfield.center_textarea{
	width: 100%;

	}

	.form_margin-right {
		margin-right: 0;
	}

	.form_margin-left {
		margin-left: 0;
	}

	#field_2_5,
	#field_2_6,
	#field_2_11,
	#field_1_5,
	#field_3_5,
	#field_1_13,
	#field_1_12,
	#field_3_11,
	#field_3_12   {
		grid-column: span 12
	}

	#field_2_10,
	#field_3_10 {
		width: 100%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	#input_2_10 {
		width: 100%;
		margin: 0 auto;
	}

	#field_2_7.form_half_width {
	    grid-column: span 12;
	    width: 100% !important;
			margin: 0 auto !important;
			margin-left: 0 !important;
}

}


 /*--------------------------------------------------------------
 # Full Screen Diamons
 --------------------------------------------------------------*/

@media screen and (min-width: 1384px) {
    .half-width-left,
    .service_row.left_h {
        background-image: url('../images/h_pattern_left.jpg'); /* Replace with your image URL */
        background-position: top left;
        background-repeat: no-repeat;
    }

    .right_copy.h_right>.vc_column-inner  {
    	background-image: url('../images/h_pattern_right_2.jpg'); /* Replace with your image URL */
        background-position: top right;
        background-repeat: no-repeat;
    }

    .home_latest_posts_section {
		  background: 
		    url('../images/h_pattern_right_2.jpg') top right no-repeat, /* Replace with your image URL */
		    linear-gradient(to right, var(--blue) 49.925%, var(--orange) 49.925%, var(--orange) 50.075%, var(--cream) 50.075%) !important; 
		  border-top: 4px solid var(--orange);
		  border-bottom: 4px solid var(--orange);
		}

		.primary_content.team_section,
		.primary_content.double_h_pattern {
			background: 
	    url('../images/h_pattern_left.jpg'), /* Replace with your left image URL */
	    url('../images/h_pattern_right_2.jpg'); /* Replace with your right image URL */
	    background-position: top left, top right; /* Position the images */
    	background-repeat: repeat-y, repeat-y; /* Repeat vertically for both images */
    	background-size: auto, auto;
	  	background-size: auto;
		}

}
	

 /*--------------------------------------------------------------
 # Client Consultant Logins
 --------------------------------------------------------------*/


.client_logins { text-align: center;  }

.client_logins h1,
.client_logins h2 {
	   color: var(--blue);
    font-size: 2.375rem;
    margin-bottom: 10px !important;
    margin-top: 85px;
}

.client_logins .ths_outline_button {
	margin: 20px;
}


@media screen and (max-width: 767px) {


	.client_logins h1, .client_logins h2 {
		font-size: 1.5 rem;
	}

}


 /*--------------------------------------------------------------
 # Number Circles
 --------------------------------------------------------------*/

.number-circle {
    width: 77px;
    height: 77px;
    border-radius: 50%;
    border: 7px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    color: #000;
    line-height: 1;
    margin: 0 auto;
}


 /*--------------------------------------------------------------
 # Back To Top
 --------------------------------------------------------------*/

/* Back-to-Top Button */
#back-to-top {
    position: fixed;
    bottom: 20px; /* Adjust as needed */
    right: 20px; /* Adjust as needed */
    width: 50px;
    height: 50px;
    background-color: var(--blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    border: 3px solid var(--orange);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Hover effect */
#back-to-top:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

/* Font Awesome icon */
#back-to-top i {
    font-size: 1.5rem;
    height: 30px;
}

/* Show button on scroll */
#back-to-top.show {
    display: flex; /* Make it visible */
}

/* Only show on mobile devices */
@media (min-width: 768px) {
    #back-to-top {
        display: none !important;
    }
}


 /*--------------------------------------------------------------
 # Footer
 --------------------------------------------------------------*/

#gusta-footer .footer_mobile {
			display: none;
		}

#gusta-footer h3 {
	color: #fff;
	margin-bottom: 5px !important;
}


#gusta-footer .footer_sub_title {
	font-size: 1.563rem !important;
	color: var(--blue);
}

#gusta-footer p {
	font-size: 1rem;
	margin-top: 0;
	color: var(--blue);
}

#gusta-footer a {
	color: var(--blue);
	text-decoration: none;
}

#gusta-footer a:hover {
	color: #fff;
}

#ths_social_links li {
	padding-right: 16px !important;
}

#ths_social_links a {
	  border-radius: 50%;
    line-height: 30px !important;
    width: 27px;
    height: 30px;
    margin: 0 !important;
}


 #gusta-footer .footer_copyright p {
	 font-size: 0.75rem;
	 color: var(--blue);
 }

  #gusta-footer .footer_copyright {
  	margin-top: 15px;
  }

  #gusta-footer  .footer_margin_top {
  	margin-top: 37% !important;
  }



	@media screen and (max-width: 992px) {

		#gusta-footer .footer_left_column {
			width: 30%;
		}

		#gusta-footer .footer_left_column .vc_col-sm-4,
		#gusta-footer .footer_left_column .vc_col-sm-6,
		#gusta-footer .footer_left_column .vc_col-sm-2 {
			width: 100%;
		}

		#gusta-footer .footer_right_column {
			width: 70%;
		}

		#gusta-footer #logo_footer,
		#gusta-footer #logo_footer a {
			height: 100px !important;
			margin-bottom: 10px !important;
		}

		#gusta-footer .footer_copyright {
			margin-top: 20px;
		}

		#gusta-footer .footer_left_column .vc_empty_space {
			height: 10px !important;
		}

		#gusta-footer .footer_copyright_column .vc_column_container {

			width: 100%;

		}

		 #gusta-footer  .footer_margin_top {
	  	margin-top: 10% !important;
	  }

	}

	@media screen and (max-width: 767px) {

		#gusta-footer .footer_left_column,
		#gusta-footer .footer_right_column  {
			width: 100%;
		}

		#gusta-footer .footer_right_column h3 {
			margin-top: 20px !important;
		}

		#gusta-footer p {
			font-size: 0.8rem;
		}

		#gusta-footer .footer_right_column .vc_empty_space {
			height: 10px !important;
		}

		#gusta-footer .footer_legal_links {
			margin-top: 20px;
		}

		#gusta-footer .footer_desktop {
			display: none;
		}

		#gusta-footer .footer_mobile {
			display: block;
		}

	}
