/* TABLE OF CONTENTS

	1. Import section
	2. Basic styles
	3. BUTTONS
	4. HEADER
	5. SLIDER
	6. ABOUT US
	7. OUR WORKS
	8. PRICING
	9. NEWS
	10. OUR TEAM
	11. TESTIMONIAL
	12. FUN FACTS
	13. CONTACT
	14. BLOG
	15. FOOTER
	16. SCROLL TO TOP

*/



/* 1. IMPORT SECTION */

	/*@import url("http://fonts.googleapis.com/css?family=Raleway:200,300,600,700&subset=latin,latin-ext");*/




/* 2. BASIC STYLES */

	html, body {
		height: 100%;
    	scroll-behavior: smooth;
	}

	body {
		font-family: "Raleway", Helvetica, Arial, sans-serif;
		
		font-size: 14px;
		font-weight: 200;
		line-height: 1.7857;
		letter-spacing: 0.075em;
		color: #333333;
		background-color: #fff;
	}

	#header {
		position: fixed;
		top: 0;
		width: 100%;
		transition: top 0.3s; /* Smooth transition */
		z-index: 1000; /* Ensure it stays above other content */		
	}

	#header .container{
		width: 100%;
		/* margin-left: 80px;
		margin-right: 80px; */
		padding: none;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}


	#header a { 
		color: rgb(139, 139, 139);
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	#header a:hover {
		color: #B0D138 !important;
	}

	a, a:hover, a:active, a:focus, button:focus {
    outline: 0;
    border: 0;
    text-decoration: none;
    text-align: left;
	}

	b {
		color:black;
	}

	#st-preloader {
		background: #FFF;
		bottom: 0;
		left: 0;
		position: fixed;
		right: 0;
		top: 0;
		z-index: 9999;
	}

	p {
		line-height: 1.5;
	}

	h1, h2, h3, h4, h5, h6{
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
	}

	h7{
		font-family: 'Raleway', sans-serif;
		font-weight: 700;
		text-transform: uppercase;
		font-size: 15px;
	}

	h8{
		font-size: 16px;
		font-weight: 700;
		text-transform: none;
		margin-bottom: 50px;
	}

	.portfolio-wrapper .col-md-12 .filter {
		display:flex;
		justify-content:space-between;
	}

	.portfolio-wrapper .col-md-12 .filter li a {
		font-size: 15px;
	}

	input, textarea{
		outline: none;
	}

	label{
		font-weight: 300;
	}

	#pre-status,
	.preload-placeholder {
		background-image: url(../images/preloader.gif);
		background-position: center;
		background-repeat: no-repeat;
		height: 40px;
		left: 50%;
		margin: -20px 0 0 -20px;
		position: absolute;
		top: 50%;
		width: 40px;
	}

	.preload-placeholder {
		background: none;
		left: 0;
		margin: 0;
		text-align: center;
		top: 65%;
	}

	.st-border{
		width: 50px;
		height: 1px;
		display: block;
		background-color: #000;
	}

	.overlay{
		background-color: #000;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0.8;
	}

	.resizable-image {
		display: block;
		margin: auto;
	}	

	/* Rounded border */

	hr {
		background-color:#383838;
	}

	hr.rounded {
		/* border-top: 8px solid #bbb;
		border-radius: 5px; */
		
		border: 0;
		height: 2px;
		background: #B0D138;
		margin: 20px 0;		
	}	


	.header-image{
		width: 100%;
		min-height: 800px;
		max-height: 1000px;
		overflow:hidden;
	}

	video{
		border-radius: 5px;
		border: #909090;
	}

	/* Modal Overlay */
	.modal {
	display: none; /* Hidden by default */
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9); /* Dark semi-transparent background */
	z-index: 1000; /* Ensure it's above other content */
	text-align: center;
	}

	/* Modal Image */
	.modal-content {
	max-width: 90%;
	max-height: 80vh;
	margin: 5% auto; /* Center vertically */
	display: block;
	}

	/* Close Button */
	.close-btn {
	position: absolute;
	top: 20px;
	right: 35px;
	color: #fff;
	font-size: 40px;
	font-weight: bold;
	cursor: pointer;
	transition: 0.3s;
	}

	.close-btn:hover {
	color: #ccc;
	}

	/* Caption Text */
	.caption {
	color: #fff;
	padding: 10px;
	font-size: 16px;
}

/* 3. BUTTONS */

	.btn-send{
		background-color: #383838;
		border-radius: 5px;
		border: 0;
		color: #fff;
		padding: 8px 14px;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	.btn-send:hover{
		background-color: #EE398B;
		color: #fff;
	}

	.btn-readmore{
		background-color: #383838;
		border-radius: 0;
		border: 0;
		color: #fff;
		padding: 10px 20px;
		margin-top: 20px;
		text-transform: uppercase;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	.btn-readmore:hover{
		background-color: #EE398B;
		color: #fff;	
	}


/* 4. HEADER */

	#header .navbar {
		height: 60px;
		margin-bottom: 0;
		border-radius: 0;
		position:fixed;
	}



	.st-navbar{
		background-color: rgb(255, 255, 255, 1);
		/* background-color: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0)); */
		/* backdrop-filter: blur(14px); */
		box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2);
		display: flex;
		align-items: center;
	}

	.st-navbar .container{
		width: 100%;
		display: flex;
		justify-content: space-between; /* Logo left, nav right */
		align-items: center; /* Vertically center items */
		padding: 0 15px; /* Add some padding on sides */
	}

	.collapse.navbar-collaspse {
		display: flex;
		align-items: center;
	}


	.st-navbar ul li a{
		text-transform: uppercase;
		/* color: #000000; */
		font-weight: 600;
		font-size: 14px;
		padding: 0;
		margin: 14px;
	}

	.st-navbar ul li a:hover,
	.st-navbar ul li a:focus {
    	background-color: transparent;
		color: #B0D138;
	}

	.st-navbar .navbar-header{
		margin-top: 5px;
		display: flex;
		align-items: center; /* Vertically center logo */
    	height: 100%;
	}

	.st-navbar .logo{
		display: flex;
		align-items: center;
		height: 100%;
	}

	.st-navbar .navbar-toggle .icon-bar {
		background-color: #000;
	}

	.st-navbar .navbar-toggle{
		margin-top: 7px;
		margin-right: 25px;
		padding: 0;
		border-radius: 0;
	}



/* 5. SLIDER */

	#slider{
		margin-top: 0px;
	}

	/* #home-carousel  .item {
		background-position: center top;
		background-repeat: no-repeat;
		background-size:cover;
		width:100%;
		height: 850px;
	} */


	#home-carousel .item.active {
		/* background-position: center top;
		background-repeat: no-repeat; */
		background-size:cover;
		width:100%;
		height: 850px;
		display: flex;
		align-items: center;
	}


	#home-carousel .item:before{
		background-color: #000;
		content: "";
		height: 100%;
		top: 0;
		left: 0;
		opacity: 0.3;
		position: absolute;
		width: 100%;
	}

	#home-carousel .carousel-inner .item .row,
	#home-carousel .carousel-inner .item.active .row{
		display: flex;
		align-items: center;
	}

	.carousel-caption {
		left: 15px;
		right: 15px;
		top: 50%;
		font-size: 15px;
		text-align: left;
		color: #fff;
		text-shadow: none;
		margin-top: -130px;	
	}

	.carousel-caption h1 {
		font-size:46px;
		margin-bottom:0;
		line-height:27px;
		letter-spacing:2px;
		font-weight:100;
	}

	.carousel-caption h2 {
		font-size:81px;
		font-weight:600;
		margin-top:0px;
		text-transform: none;
		letter-spacing:2px;
		margin-bottom:20px;
	}

	.home-carousel-left, 
	.home-carousel-right {	
		/* background-color: #f0f0f0; */
		color:#ffffff !important;
		font-size: 50px;
		height: 50px;
		line-height: 50px;
		/* margin-top: -20px; */
		position: absolute;
		text-align: center;
		top: 50%;
		width: 32px;
		z-index: 999;
		-webkit-transition: 300ms;
		-moz-transition: 300ms;
		-o-transition: 300ms;
		-ms-transition: 300ms;
		transition: 300ms;
	}

	.home-carousel-left {
		left:-32px;
	}

	.home-carousel-right {
		right:-32px;
	}

	#home-carousel:hover .home-carousel-left {
		left:32px;
	}

	#home-carousel:hover .home-carousel-right {
		right: 32px;
	}

	.home-carousel-left:hover, .home-carousel-right:hover {
		color:#7fa82c !important;
	}

	/* Carousel animation */

	#home-carousel .item h1, 
	#home-carousel .item h2, 
	#home-carousel .item p {
		opacity:0;
		-moz-transform: scale(0.5);
		-webkit-transform: scale(0.5);
		-o-transform: scale(0.5);
		-ms-transform: scale(0.5);
		transform: scale(0.5);
	}

	#home-carousel .item h1 {
		-webkit-transition: all 0.5s ease-in-out 0.15s;
		-moz-transition: all 0.5s ease-in-out 0.15s;
		-ms-transition: all 0.5s ease-in-out 0.15s;
		-o-transition: all 0.5s ease-in-out 0.15s;
		transition: all 0.5s ease-in-out 0.15s;
	}

	#home-carousel .item.active h1, 
	#home-carousel .item.active h2, 
	#home-carousel .item.active p {
		opacity:1;
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	#home-carousel .item h2 {
		-webkit-transition: all 0.5s ease-in-out 0.30s;
		-moz-transition: all 0.5s ease-in-out 0.30s;
		-ms-transition: all 0.5s ease-in-out 0.30s;
		-o-transition: all 0.5s ease-in-out 0.30s;
		transition: all 0.5s ease-in-out 0.30s;
		font-size: 70px;
	}

	#home-carousel .item p {
		-webkit-transition: all 0.5s ease-in-out 0.45s;
		-moz-transition: all 0.5s ease-in-out 0.45s;
		-ms-transition: all 0.5s ease-in-out 0.45s;
		-o-transition: all 0.5s ease-in-out 0.45s;
		transition: all 0.5s ease-in-out 0.45s;
	}





/* 6. ABOUT US */

	#about-us{
		background-color: #f5f5f5;
		padding-top: 120px;
		padding-bottom: 120px;
		width: 100%;
		display: flex;
		justify-content: center;
	}

	#about-us .container-fluid{
		margin: 30px;
		padding: 0px;
		width: 80%;
	}

	/* #about-us .col-md-4.col-sm-6.st-service.col-lg-5 {
		margin-left: 50px;
	} */

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h1{
		margin-top: 0;
		font-size: 40px;
		font-weight: 400;
	}

	.st-service{
		margin-top: 30px;
	}

	.st-service h2{
		font-size: 16px;
		margin-top: 0;
		margin-bottom: 15px;
	}

	.st-service h2 i{
		margin-right: 10px;
	}



/* 7. OUR WORKS */


	.isotope-item {
	    z-index: 2;
	}
	.isotope-hidden.isotope-item {
	    z-index: 1;
	}
	.isotope, .isotope .isotope-item {/* change duration value to whatever you like */
	    -webkit-transition-duration: 0.8s;
	    -moz-transition-duration: 0.8s;
	    transition-duration: 0.8s;
	}
	.isotope {
	    -webkit-transition-property: height, width;
	    -moz-transition-property: height, width;
	    transition-property: height, width;
	}
	.isotope .isotope-item {
	    -webkit-transition-property: -webkit-transform, opacity;
	    -moz-transition-property:-moz-transform, opacity;
	    transition-property:transform, opacity;
	}

	#our-works{
		margin-top: 120px;
		scroll-margin-top: 120px;
	}

	#our-works-list{
		width: 100%;
		padding-bottom: 80px;
		display: flex;
		justify-content: center;
	}
	
	#our-works-list .container-fluid{
		margin: 30px;
		width: 90%;
	}
	
	.portfolio-wrapper ul.filter{
		list-style: none;
		padding: 0;
		margin-bottom: 35px;
		margin-top: 28px;
		overflow: hidden;
	}
	
	.portfolio-wrapper ul.filter li{
		float: left;
		text-transform: uppercase;
		margin-right: 25px;
		font-weight: 600;
	}
	
	.portfolio-wrapper ul.filter li a{
		color: #909090;
		font-size: 15px;
	}
	
	
	.portfolio-wrapper ul.filter li a:hover {
		color: #9CCB3B;
	}
	
	.portfolio-wrapper ul.filter li a:hover,
	.portfolio-wrapper ul.filter li a.active{
		color: #B0D138;
		font-family: Raleway, Helvetica, Arial, sans-serif;
	}
	
	.portfolio-wrapper .portfolio-items{
		display: block;
	}
	
	.portfolio-items.isotope{
		width: 100%;
	}
	
	.portfolio-wrapper .portfolio-items .work-grid{
		margin-bottom: 12px;
		padding-left: 10px;  
		padding-right: 10px;
		float: none;
	}
	
	.portfolio-wrapper .portfolio-content{
		position: relative;
		margin-bottom: 5px;
		display: block;
		height: 100%;
		border-radius: 5px;
	}
	
	.portfolio-wrapper .portfolio-content .portfolio-overlay{
		display: flex;
		align-items: center;
	}
	
	.portfolio-wrapper .portfolio-content .text{
		display: flex;
		flex-direction: column;
	}
	
	.portfolio-wrapper .portfolio-content .text p{
		font-size: 16px;
	}
	
	.portfolio-wrapper .portfolio-content .text h5{
		font-size: 24px;
	}
	
	.portfolio-wrapper .portfolio-content img{
		width: 100%;
		height: 400px;
		object-fit: cover;
		display: block;
		border:#000;
		border-radius: 5px;
	}
	
	.portfolio-overlay-link {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 10;
		border-radius: 5px;
	}

	.zoom-link {
		position: relative;
		z-index: 20;
	}

	.portfolio-wrapper .portfolio-overlay{
		position: absolute;
		background-color: rgba(0, 0, 0, 0.5);
		color: #fff;
		left: 0;
		bottom: 0;
		width: 100%;
		height: 100%;
		padding: 30px;
		opacity: 0;
		border-radius: 5px;
		-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;
		-moz-transform: scale(0.5);
		-webkit-transform: scale(0.5);
		-o-transform: scale(0.5);
		-ms-transform: scale(0.5);
		transform: scale(0.5);
	}

	.portfolio-wrapper .portfolio-content:hover .portfolio-overlay{
		border-radius: 5px;
		opacity: 1;
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	.portfolio-wrapper .portfolio-overlay a{
		border-radius: 5px;
		color: #fff;
		font-size: 35px;
	}
	.portfolio-wrapper .portfolio-overlay a:hover{
		border-radius: 5px;
		color: #fff;
	}

	/* TEST BELOW */

	.project-page-header {
		margin-top: 60px;
		height: 800px;
		overflow: hidden;
	}

	.project-page-header .container {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.project-page-header img {
		filter: brightness(65%);
		width: 100%;
		z-index: 1;
	}

	.project-page-header .header-content{
		display: flex;
		flex-direction: column;
		position: absolute;
		z-index: 2;
		margin-left: 20%;
		margin-left: 20%;
		margin-top: 10%;
	}

	.project-page-header .header-content h1{
		width: 100%;
		font-size: 46px;
		color: #ffffff;
		font-weight: 200;
	}

	.project-page-header .header-content h2{
		font-size: 81px;
		font-weight: 600;
		letter-spacing: 2px;
		color: #ffffff;
		text-transform: none;
	}



	/* TEST ABOVE */

	#project-header .carousel-caption-container{
		margin-top: 0px;
	}


	#project-header .carousel-caption.container .row{
		display: flex;
		align-items: center;
	}

	#project-header img{
		filter: brightness(65%);
		overflow: hidden;
		/* z-index: -1; */
	}

	#project-header h1{
		line-height: 6vh;
		width: 100%;
	}

	#project-header h3{
		margin-top: 40px;
		font-size: 25px;
		font-weight: 300;
	}

	#project {
		display:flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}

	#project img{
		filter: brightness(65%);
		width: 100%;
		height: 850px;
		object-fit: cover;
	}

	#project .container {
		display: flex;
		flex-direction: column;
		margin-top: 10px;
		/* align-items:center;
		justify-content: center; */
	}

	#project .container .content {
		margin-top: 10px;
	}

	#project .container .content img{
		width: 100%;
		height: auto;
	}

	#project-images {
		margin-bottom: 50px;
	}

	.itemcol1-2 {
		grid-column-start: 1;
		grid-column-end: 3;
	}

	.itemcol2-3 {
		grid-column-start: 2;
		grid-column-end:4;
	}

	.itemrow1-2 {
		grid-row-start: 1;
		grid-row-end: 3;
	}

	#project-images .container-fluid {
		display: grid;
		row-gap: 20px;
		column-gap: 20px;	
		grid-template-columns: repeat(3, 1fr);
		padding: 10px;
		margin-left: 8%;
		margin-right: 8%;
	}

	#project-images .container-fluid::before {
		display: none !important;
		content: none !important;
	}

	#project-images .container-fluid::after {
		display: none !important;
		content: none !important;
	}

	#project-images .two-items {
		display: grid;
		row-gap: 20px;
		column-gap: 20px;	
		grid-template-columns: 1fr 1fr;
		padding: 10px;
		margin-left: 8%;
		margin-right: 8%;
	}	
	.project-item {
		border: 1px solid #e0e0e0; /* Light gray border */		
		overflow: hidden;
		width: 100%;
		max-height: 450px;
		/* height: 100%; */
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		border-radius: 5px;
		overflow: hidden;		
	}

	.project-item:hover {
		box-shadow: 0 8px 8px 0 rgba(0,0,0,0.2);
		-webkit-transform: scale(1.04);
		-moz-transform: scale(1.04);
		-o-transform: scale(1.04);
		-ms-transform: scale(1.04);
		transform: scale(1.04);
	}

	#project-images img {
		filter: brightness(100%);
		width: 100%;
		height: 100%;
		object-fit: cover;
	}	

	#project .content .categories{
		margin-bottom: 10px;
	}

	#project .content .categories p{
		margin-top: 5px;
		margin-bottom: 5px;
	}


	#project .content .information {
		display: flex;
		flex-direction: col;
		gap: 100px;
		margin-bottom: 30px;
	}

	#project .content .description{
		width: 80%;
		display: flex;
		flex-direction: column;
	}

	#project .content .description p{
		margin-top: 10px;
		margin-bottom: 10px;
		font-size: 16px;
	}

	#project .content .description li{
		font-size: 16px;
	}

	#project .content .description h7{
		font-size: 40px;
		font-weight: 600;
		text-transform: none;
	}

	/* #project .content .description h6{
		font-size: 40px;
		font-weight: 600;
		text-transform: none;
	}	 */

	#project .content .description b{
		color: gray;
	}

	#project .content .details {
		width: 20%;
		display: flex;
		flex-direction: column;
	}

	#project .content .details p{
		font-size: 15px;
	}

	#project .content .details h7{
		color:#000;
		font-size: 20px;
		text-transform: none;
		font-weight: 325;
	}

	 #project .full-width {
		width: 100%;
		max-height: 1000px;
		display: block;
    }

	.full-width {
		width: 100%;
		display: block;
	}

	#project .container .categories{
		display: flex;
		flex-direction: row;
		padding-top: 15px;
		padding-bottom: 5px;
		padding-right: 5px;
	}

	#project .container .categories p{
		width: fit-content;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 10px;
		padding-right: 10px;
		margin-right: 10px;
		color: #fff;
		background-color: #B0D138;
		border-radius: 5px;
	}

	#project .container .information .description img{
		filter: none;
		max-width: 872px;
		max-height: 480px;
		display: block;
	}

/* Pagination Styles */

	.pagination-container {
		margin-top: 15px;
		text-align: center;
	}

	.pagination {
		display: inline-block;
	}

	.pagination a {
		color: #333;
		padding: 8px 16px;
		text-decoration: none;
		border: 1px solid #ddd;
		margin: 0 4px;
		transition: background-color .3s;
	}

	.pagination a.active {
		background-color: #B0D138;
		color: white;
		/* border: 1px solid #628122; */
	}

	.pagination a:hover:not(.active) {
		background-color: #ddd;
	}

	#carousel {
		display: flex;
		justify-content: center;
	}

	.project-carousel .carousel-inner .item.active{
		background: white;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 30px;
	}




/* 8. PRICING */
	
	#pricing{
		background-color: #f5f5f5;
		padding-top: 130px;
		padding-bottom: 120px;
	}

	.st-pricing{
		background-color: #fff;
		padding: 40px;
		margin-top: 30px;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		transition: all 0.2s ease-in-out;
	}

	.st-pricing:hover{
		box-shadow: 0px 0px 18px #ddd;
	}

	.st-pricing h5{
		margin-top: 0;
		margin-bottom: 25px;
	}

	.st-pricing h3{
		margin-top: 0;
		margin-bottom: 25px;
	}

	.st-pricing .st-border{
		width: 100%;
		margin-bottom: 15px;
		background-color: #ccc;
	}

	.st-pricing ul{
		list-style: none;
		padding: 0;
	}

	.st-pricing ul li{
		padding: 12px 0;
		font-size: 15px;
	}

	.st-pricing a.btn-send{
		text-transform: uppercase;
		margin-top: 20px;
		padding: 10px 25px;
	}


/* 9. NEWS */
	
	#news{
		background-color: #f5f5f5;
		padding-top: 130px;
		padding-bottom: 120px;
		width: 100%;
		height: auto;
		margin-top: 80px;
		margin-bottom: 80px;
	}

	.news-container {
		margin-left: 20%;
		margin-right: 5%;
		padding: 15px;
		margin-bottom: 80px;
	}

	.news-container h7{
		font-size: 30px;
		font-weight: 600;
	}

	.news-container h1{
		text-transform: none;
		font-weight: 400;
		margin-top: 10px;
	}

	.news-container .news-article a{
		display: flex;
		flex-direction: row;
		margin-top: 10px;
		margin-bottom: 10px;
		color:#272727;
		height: fit-content;
	}

	.news-container .news-article a:hover{
		color:#9CCB3B;
	}
	
	.news-date{
		width: 200px;
	}

	.title-subtitle {
		margin-left: 100px;
	}




















	.new-container {
		display: grid;
		row-gap: 10px;
		column-gap: 25px;
		grid-template-columns: auto auto auto;
		padding: 10px;
		margin-left: 11%;
		margin-right: 11%;
	}



	.new-container > div {
		background-color: #f1f1f1;
		text-align: center;
		width: 100%;
		min-height: 390px;
		padding-left: 0px;
		padding-right: 0px;
		margin: 10px;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		background-color:#edeff7;
		border:#909090;
		border-radius: 20px;
		overflow: hidden;
	}

	#news .container-fluid .row{
		display: flex;
		align-items: center;
		margin-left: 80%;
	}

	#news .news{
		padding-left: 15%;
		padding-right: 15%;
		padding-top: 15%;
		padding-bottom: 15%;
	}

	#news .news h4{
		margin-top: 0;
		margin-bottom: 30px;
	}

	#news p{
		margin-bottom: 20px;
	}

	#news .news-newsletters {
		display: flex;
		justify-content: start;
		width: 100%;
	}

	#news .redirection {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		column-gap: 100px;
	}

	#news .redirection .col-news,
	#news .redirection .col-newsletters{
		width: 350px;
	}

	#news .news .btn-send{
		margin-top: 50px;
	}

	#news .our-office{
		padding-right: 0px;
	}

	#news-page-header {
		margin-top: 150px;
	}

	#news-page-header .container-fluid {
		margin-left: 20%;
	}

	#newsletter-page-header {
		margin-top: 150px;
	}

	#newsletter-page-header .container-fluid{
		margin-left: 15%;
	}	

	#newsletter {
		margin-bottom: 50px;
	}

	#newsletter .newsletter-container{
		display: grid;
		row-gap: 10px;
		column-gap: 30px;
		grid-template-columns: repeat(3,1fr);
		margin-top: 10px;
		margin-bottom: 10px;
		margin-left: 15%;
		margin-right: 15%;
	}

	#newsletter .newsletter-container > div {
		text-align: center;
		width: fit-content;
		/* max-height: 100px; */
		padding: 10px;
		margin: 10px;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		/* background-color:#edeff7; */
		border:#909090;
		border-radius: 10px;
		overflow: hidden;
	}

	#newsletter .newsletter-container .newsletter-item:hover{
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		transform: scale(1.05);
		/* box-shadow: 0 8px 8px 0 rgba(0,0,0,0.2); */
		/* background-color: #e0e3f7; */
	}

	#newsletter .newsletter-container .newsletter-item a {
		color:#000000;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.newsletter-item a.newsletter-link {
		display: flex;
		justify-content: center;
		width: fit-content;
		height: 100%;
		text-decoration: none;
		color: inherit;
		text-align: center;
	}

	.newsletter-item a.newsletter-link h7 {
		text-transform: uppercase;
		font-weight: 500;
	}

	.newsletter-img {
		display:flex;
		justify-content: center;
	}

	#newsletter .newsletter-container .newsletter-item a img{
		width: 80%;
		height: auto;
		border-radius: 5px;
		border: 1px solid #e0e0e0;
	}

	#news-list {
		margin-bottom: 50px;
	}

	#news-list .container-fluid {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 80%;
		max-width: none;
		margin-top: 30px;
		margin-bottom: 30px;
		gap: 20px 20px;
	}

	#news-list .row{
		display: flex;
		flex-direction: row;
		width: 100%;
		padding-left: 15px;
		padding-right: 15px;
		margin-left: 0px;
		margin-right: 0px;
	}

	#news-list .news-item{
		width: 100%;
		min-height: 390px;
		padding-left: 0px;
		padding-right: 0px;
		margin: 10px;
		-moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s;
		background-color:#edeff7;
		border:#909090;
		border-radius: 20px;
		overflow: hidden;
		/* box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.2); */
	}

	#news-list .news-item img{
		width: 100%;
		height: 250px;
		object-fit: cover;
	}

	#news-list .news-item h3{
		font-size: 25px;
		font-weight: 200;
	}

	#news-list .news-item h4{
		font-size: 17px;
		text-transform: none;
		padding-top: 5px;
		padding-bottom: 5px;
		margin-top: 5px;
		margin-bottom: 5px;
		color: black;
		text-align: left !important;
	}

	#news-list .news-item p{
		font-size: 14px;
	}
	
	#news-list .news-item a{
		font-size: 12px;
		color: rgb(0, 0, 0);
		line-height: 1.5;
	}

	.news-item:hover{
		box-shadow: 0 8px 8px 0 rgba(0,0,0,0.2);
		-webkit-transform: scale(1.04);
		-moz-transform: scale(1.04);
		-o-transform: scale(1.04);
		-ms-transform: scale(1.04);
		transform: scale(1.04);
	}

	#news-list .news-card-caption{
		/* padding: 20px; */
		flex-grow: 1;
		display:flex;
		flex-direction: column;
		margin-top: 10px;
		margin-bottom: 10px;
		margin-right: 20px;
		margin-left: 20px;
		/* height: 100px; */
	}

	#news-list .news-card-caption h4{
		line-height: 1.4;
	}

	#news-list .news-item span{
		color: rgba(0, 0, 0, 0.7);
	}

	#news-list .post-meta.text-uppercase{
		font-weight: normal;
		margin: 0px;
	}

	#news-list .container img{
		width: auto;
		height: auto;
		/* -moz-transition: all 0.3s;
		-webkit-transition: all 0.3s;
		transition: all 0.3s; */
		margin-bottom: 30px;
	}

	#news .row{
		height: fit-content;
		margin-bottom: 0px;
	}

	.office-carousel{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	#office-carousel img{
		height: 872px;
		width: auto;
	}

	.office-carousel-left, 
	.office-carousel-right {	
		color:#D32D85 !important;
		font-size: 40px;
		height: 40px;
		line-height: 40px;
		/* margin-top: -20px; */
		position: absolute;
		text-align: center;
		top: 50%;
		width: 32px;
		z-index: 999;
		-webkit-transition: 300ms;
		-moz-transition: 300ms;
		-o-transition: 300ms;
		-ms-transition: 300ms;
		transition: 300ms;
	}

	.office-carousel-left {
		left:-32px;
	}

	.office-carousel-right {
		right:-32px;
	}

	#office-carousel:hover .office-carousel-left {
		left: 20px;
	}

	#office-carousel:hover .office-carousel-right {
		right: 20px;
	}

	.office-carousel-left:hover, .office-carousel-right:hover {
		color:#7fa82c !important;
	}

	#office-carousel .item img{
		width: 100%;
	}

	#news-page-header {
		margin-top: 150px;
	}


/* 10. OUR TEAM */

	#our-team{
		padding-top: 130px;
		padding-bottom: 120px;
	}

	.team-member{
		margin-top: 30px;
	}

	.member-image{
		position: relative;
	}

	.member-info{
		background-color: #f5f5f5;
		padding: 15px;
	}

	.member-info h4{
		margin-top: 0;
		margin-bottom: 6px;
	}

	.member-info span{
		text-transform: uppercase;
	}

	.team-member .member-social{
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.6);
		left: 0;
		top: 0;
		text-align: center;
		opacity: 0;
		-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;
		-moz-transform: scale(0.5);
		-webkit-transform: scale(0.5);
		-o-transform: scale(0.5);
		-ms-transform: scale(0.5);
		transform: scale(0.5);
	}

	.team-member:hover .member-social{
		opacity: 1;
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}

	.team-member .member-social a{
		position: relative;
		font-size: 16px;
		color: #fff;
		top: 47%;
	}

	.team-member:hover .member-social a{
		margin: 6px;
	}

	#our-team .our-team-paragraphs{
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		margin-top: 30px;
	}

	#our-team .our-team-paragraphs .description {
		width: 550px;
	}

	#our-team .our-team-paragraphs .description h2 {
		font-size: 16px;
		margin-bottom: 15px;
	}



/* 11. TESTIMONIAL */

	#testimonial{
		background-image: url(../images/testimonial-bg.jpg);
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: fixed;
		padding-top: 100px;
		padding-bottom: 100px;
		position: relative;
	}

	.st-testimonials{
		color: #e0e0e0;
	}

	.st-testimonials .st-border{
		background-color: #e0e0e0;
		margin: 20px auto;
	}

	.st-testimonials p{
		font-style: italic;
	}

	.st-testimonials .client-info h5{
		margin-top: 0;
		margin-bottom: 5px;
	}

	.st-testimonials .client-info span{
		font-size: 12px;
		text-transform: uppercase;
	}



/* 12. FUN FACTS */
	
	#fun-facts{
		background-color: #f5f5f5;
		padding-top: 40px;
		padding-bottom: 40px;
	}

	#fun-facts .fun-fact{
		border-right: 1px solid #ddd;
	}

	#fun-facts .col-md-3:last-child .fun-fact{
		border-right: 0px solid #ddd;
	}

	#fun-facts .fun-fact i{
		margin-right: 5px;
	}

	#fun-facts .fun-fact p{
		font-size: 16px;
	}



/* 13. CONTACT */

	#contact{
		padding-top: 130px;
		padding-bottom: 120px;
	}

	.contact-info {
		margin-top: 30px;
	}
	
	.contact-info .contact-content{
		margin-bottom: 30px;
	}

	.contact-info p{
		margin-bottom: 20px;
	}

	.contact-info p i{
		font-size: 16px;
		margin-right: 10px;
	}

	.col-sm-4.contact-info {
		display: flex;
		flex-direction: column;
		
	}

	.col-sm-4.contact-info .info-row {
		display: flex;
		flex-direction: row;
		column-gap: 10px;
	}




	/* .contact-form{} */

	.contact-form input[type="text"],
	.contact-form input[type="email"]{
		border: 1px solid #E8E8E8;
		padding: 8px 14px;
		width: 100%;
		margin-bottom: 20px;
	}

	.contact-form textarea{
		border: 1px solid #E8E8E8;
		padding: 8px 14px;
		width: 100%;
		margin-bottom: 20px;
	}



/* 14. BLOG */

	#page-header{
		background-color: #f5f5f5;
		padding-top: 50px;
		padding-bottom: 0px;
		position: relative;
		margin-bottom: 50px;
		margin-top: 80px;
	}

	.single-blog{
		margin-top: 35px;
		margin-bottom: 35px;
		/* width: 80%; */
	}

	.single-blog img{
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	article{
		display: flex;
		flex-direction: column;
		align-items: center;	
		width: 100%;
		margin-bottom: 50px;
	}

	article .row {
		display: flex;
	}

	article .column {
		flex: 50%;
		padding: 5px;
	}

	.post-title{
		font-size: 40px;
		text-align: center;
		margin-top: 100px;
		margin-bottom: 20px;
		width: 100%;
	}

	.post-subtitle{
		width: 100%;
		text-align: center;
		text-transform: none;
		font-size: 16px;
		font-weight: 500;
		margin-bottom: 20px;
		color:#909090;
	}

	.post-header{
		margin-top: 30px;
		margin-bottom: 30px;
		text-align: left !important;
		font-size: 20px;
	}

	.article-text, h4.post-header { 
		text-align: left !important; 
		width: 100%;
	}	

	.post-text{
		font-size: 16px;
		margin-bottom: 10px;
	}

	/* .article-text, .post-italicized h3{
		font-style: italic;
	} */
	
	.post-date{
		text-align: center;
		color:#7fa82c;
		margin-bottom: 30px;
	}

	.post-thumb{
		/* margin-top: 120px; */
		width: 125%;
	}

	.post-thumb img{
		border-radius: 10px;		
	}

	.article-text .post-image {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.post-image {
		margin-top: 30px;
		margin-bottom: 30px;
	}

	.post-image img{
		border-radius: 10px;
		margin-top: 10px;
		margin-bottom: 30px;
	}


	.post-meta{
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.post-meta span{
		margin-right: 6px;
		font-size: 12px;
		font-weight: 600;
		opacity: 0.6;
	}
	
	.article-text {
		justify-content: left;
		margin-bottom: 10px;
	}

	.post-article{
		margin-top: 30px;
		margin-bottom: 40px;
		padding-left:0;
		margin-left:0;
	}

	p.text-justify{
		margin-bottom: 20px;
		margin-top: 0;
		/* text-align: justify; */
		text-align: left;
		font-size: 15px;
	}

	/* .post-article p.text-justify{
		margin-bottom: 20px;
		margin-top: 0;
		text-align: left;
		font-size: 15px;
	} */

	.carousel-inner{
		margin-bottom: 20px;
	}

	.post-carousel-left, 
	.post-carousel-right {	
		background-color: #f0f0f0;
		color:#000;
		font-size: 32px;
		height: 40px;
		line-height: 40px;
		margin-top: -20px;
		position: absolute;
		text-align: center;
		top: 50%;
		width: 32px;
		z-index: 999;
		-webkit-transition: 300ms;
		-moz-transition: 300ms;
		-o-transition: 300ms;
		-ms-transition: 300ms;
		transition: 300ms;
	}

	.post-carousel-left {
		left:-32px;
	}

	.post-carousel-right {
		right:-32px;
	}

	#post-carousel:hover .post-carousel-left {
		left:0;
	}

	#post-carousel:hover .post-carousel-right {
		right:0;
	}

	.post-link{
		background-color: #f5f5f5;
		text-align: center;
		padding: 40px 0;
		font-size: 16px;
		font-weight: 600;
	}

	.post-quote{
		background-color: #f5f5f5;
		padding: 30px;
		font-size: 16px;
		font-weight: 500;
		font-style: italic;
	}

	#blog .pagination{
		margin-bottom: 80px;
	}

	#blog .pagination li a{
		width: 35px;
		height: 35px;
		line-height: 31px;
		text-align: center;
		font-size: 16px;
		color: #a3a3a3;
		border: 1px solid #d1d1d1;
		padding: 0;
		margin-right: 5px;
		border-radius: 0;
	}

	#blog .pagination li.active a,
	#blog .pagination li a:hover{
		background-color: transparent;
		border-color: #000;
		color: #000;
	}

	.sidebar-widget{
		margin-top: 35px;
		margin-bottom: 50px;
	}

	.sidebar-widget .sidebar-title{
		margin-top: 0;
		margin-bottom: 20px;
	}

	.sidebar-widget ul{
		list-style: square;
		margin: 0;
		padding-left: 18px;
	}

	.sidebar-widget ul li{
		margin-bottom: 10px;
		font-weight: 500;
	}

	.sidebar-widget .tagcloud a{
		padding: 4px 10px;
		border: 1px solid #ccc;
		margin: 3px 1px;
		display: inline-block;
	}

	.sidebar-widget .tagcloud a:hover{
		border-color: #000;
		color: #000;
	}


/* 15. FOOTER */

	#footer{
		background-color: #262626;
		padding-top: 40px;
		padding-bottom: 40px;
		color: rgba(255, 255, 255, 0.4);
	}

	#footer .row{
		display:flex;
		justify-content: center;
	}

	#footer .justify-text{
		text-align: center;
	}

	#footer a{
		color: rgba(255, 255, 255, 0.4);
	}

	#footer a:hover{
		color: #fff;
	}

	
/* 16. SCROLL TO TOP */

	.scroll-up {
		position: fixed;
		display: none;
		z-index: 999;
		bottom: 1.8em;
		right: 1.8em;
	}

	.scroll-up ul{
		margin: 0;
		padding: 0;
	}

	.scroll-up li{
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.scroll-up a {
		background-color: #fff;
		display: block;
		width: 40px;
		height: 40px;
		text-align: center;
		color: #000;
		font-size: 20px;
		line-height: 38px;
		box-shadow: 0px 0px 6px #ccc;
	}

	.scroll-up a:hover,
	.scroll-up a:active {
		background-color: #f5f5f5;
		color: #000;
	}
