@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}


body {
	font-family: "Poppins", sans-serif;
	/*background-color: #F9F6F5;*/
	background-image: linear-gradient(#171715, #525252);
	font-size: 16px;
	line-height: 30px;
}

:root {
	--primary-color: #372A24 !important;
	--secondary-color: #222222 !important;
	--text-color: #7A7A7A;
	--info-color: #8D7769;
	--light-color: #7A7A7A;
}

@font-face {
    font-family: 'aqua_grotesqueregular';
    src: url('../font/aqua-webfont.woff2') format('woff2'),
         url('../font/aqua-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
@font-face {
    font-family: 'partakedemoregular';
    src: url('../font/partakedemo.regular-webfont.woff2') format('woff2'),
         url('../font/partakedemo.regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.font-aqua {
	font-family: 'aqua_grotesqueregular';
}

p{
	line-height: 1.5;
}
em.error {
    color: #dc3545;
}
.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label {
    color: inherit;
}
.pagination {
	--bs-pagination-padding-x: 1rem !important;
    --bs-pagination-padding-y: 0.375rem !important;
	--bs-pagination-border-radius: 0.375rem !important;
    justify-content: center !important;
	--bs-pagination-border-radius: var(--bs-border-radius) !important;
	gap: 1.5rem !important;
	
}
.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: #8d7769;
    border-color: #8d7769;
}
.page-link {
    color: #B7A9A0;
	border-radius: var(--bs-border-radius) !important;
}
/* colors */
.bg-primary {
	background-color: var(--primary-color) !important;
}

.bg-secondary {
	background-color: var(--secondary-color) !important;
}

.bg-light {
	background-color: var(--light--bg) !important;
}

.text-color {
	color: var(--text-color) !important;
}

.text-light {
	color: var(--light-color) !important;
}

.text-primary {
	color: var(--primary-color) !important;
}

.bg-info {
	background-color: var(--info-color) !important;
}

.text-secondary {
	color: var(--secondary-color) !important;
}

.border-secondary {
	border-color: var(--secondary-color) !important;
}

.fw-300{
	font-weight: 300 !important;
}
/* space-css */
.section {
	padding: 100px 0;
}

/* Container-css */
.container-fluid {
	padding: 0 100px;
}

.bg-gradient {
	background-image: linear-gradient(#222222, #100f0f) !important;
}

/* font-size */
.fs-16 {
	font-size: 16px;
}

.fs-14 {
	font-size: 14px;
}

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

.form-control{
	border:1px solid #C0C0C0;
	border-radius: 15px;
}

/* custom-checkbox */
.form-check-input {
	position: absolute;
	opacity: 0;
}

.form-check-input+label {
	position: relative;
	cursor: pointer;
	padding: 0;
	font-size: 13px;
}
.top-logo img {
    display: none;
}
.form-check-input+label:before {
	content: "";
	margin-right: 10px;
	display: inline-block;
	vertical-align: text-top;
	width: 20px;
	height: 20px;
	background: white;
	border: 1px solid #AEAEB2;
	border-radius: 5px;
}

.form-check-input:hover+label:before {
	background-color: #0a0a0a;
}

.form-check-input:focus+label:before {
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}

.form-check-inline {
	display: inline-block;
	margin-right: 1rem;
	padding: 0;
}

.form-check-input:checked+label:before {
	background-color: #0a0a0a;
}

.form-check-input:disabled+label {
	color: #b8b8b8;
	cursor: auto;
}

.form-check-input:disabled+label:before {
	box-shadow: none;
	background: #ddd;
}

.form-check-input:checked+label:after {
	content: "";
	position: absolute;
	left: 5px;
	top: 15px;
	background: white;
	width: 2px;
	height: 2px;
	box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
	transform: rotate(45deg);
}
.lh-24{
	line-height: 24px;
}

/* Header-css */
.header {
	position: absolute;
	top: 50px;
	z-index: 99;
	width: 100%;
}

.sticky{
	background: none !important;
}

.content.active .header .logo{
	opacity: 0;
}
.content .header .logo{
	opacity: 1;
}

.logo img {
	max-width: 350px;
}


.slick-slide img {
	transform: scale(0.9);
}
.slick-slide.slick-current img {
	transform: scale(1.0);
}



/* Banner-css */
.swiper-slide {
	position: relative;
}

.swiper-slide::after {
	background: linear-gradient(#222222, #2222225E);
	position: absolute;
	top: 0;
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
}

.slide-content {
	z-index: 9;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.slide-content img{
	width: 30%;
}

.slide-content h1{
	line-height: 70px;
}

.custom-btn {
    border: 2px solid white;
    padding: 6px 30px;
    border-radius: 100px;
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.slide-content h6 {
	letter-spacing: 2px;
	font-weight: 300;
}

.custom-btn:hover {
	background-color: white;
	color: black;
	transition: 0.3s ease-in-out;
}

.swiper-pagination-bullet-active {
	background: var(--secondary-color) !important;
}

.swiper-pagination-bullet {
	background: white;
	opacity: 1 !important;
}
.slick-slider {
    margin-bottom: 100px;
}
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 60px;
}

/* residential-css */
.residential {
	background-image: url(../images/residential.jpg);
	background-size: cover;
	height: 100%;
	width: 100%;
	/* min-height: 700px; */
}

.marine-banner {
	background-image: url(../images/marine-bg.png);
	background-size: cover;
	height: 100%;
	width: 100%;
	min-height: 800px;
	position: relative;
}

.marine-banner::after {
	background: linear-gradient(#1e1d1d, #2222225E);
	position: absolute;
	top: 0;
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
}



.residential-banner {
	background-image: url(../images/banner/slide.jpg);
	background-size: cover;
	height: 100%;
	width: 100%;
	min-height: 800px;
	position: relative;
}

.residential-banner::after {
	background: linear-gradient(#1e1d1d, #2222225E);
	position: absolute;
	top: 0;
	content: '';
	height: 100%;
	width: 100%;
	left: 0;
}


.marine-inner-content {
	position: relative;
	z-index: 9;
	margin-top: 150px;
}

.slick-slide img {
	width: 100%;
	border-radius: 0px;
}

.left-content {
    position: relative;
    padding: 100px 100px 100px 200px;
    height: 100%;
    width: 50%;
    background-image: linear-gradient(#3c3a3a, #0a0a0a) !important;
    opacity: 0.9;
}

.marine {
	background-image: url(../images/marine.png);
	background-size: cover;
	height: 100%;
	width: 100%;
	min-height: 650px;
}
.blog-seperater {
    width: 60px;
    height: 3px;
    background-color: #fff;
}
.commercial {
	background-image: url(../images/commerical.jpg);
	background-size: cover;
	height: 100%;
	width: 100%;
	min-height: 650px;
}
.h-px-18 {
  height: 18px !important;
}

.h-px-20 {
  height: 20px !important;
}

.h-px-30 {
  height: 30px !important;
}

.h-px-40 {
  height: 40px !important;
}

.h-px-50 {
  height: 50px !important;
}

.h-px-75 {
  height: 75px !important;
}

.h-px-100 {
  height: 100px !important;
}

.h-px-120 {
  height: 120px !important;
}

.h-px-150 {
  height: 150px !important;
}

.h-px-200 {
  height: 200px !important;
}

.h-px-250 {
  height: 250px !important;
}

.h-px-300 {
  height: 300px !important;
}

.h-px-350 {
  height: 350px !important;
}

.h-px-400 {
  height: 400px !important;
}

.h-px-500 {
  height: 500px !important;
}

.h-px-600 {
  height: 600px !important;
}

.h-px-700 {
  height: 700px !important;
}

.h-px-800 {
  height: 800px !important;
}
.preview-image {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.blog-card{
	min-height: 45rem;
}
.post-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 0px;
}
.blog-details-body p {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}
.right-content {
	position: relative;
	padding: 100px 200px 100px 100px;
	height: 100%;
	width: 50%;
	background-image: linear-gradient(#3c3a3a, #0a0a0a) !important;
	opacity: 0.9;
	margin-left: auto;
}
.tags-list li a {
	border: 1px solid #A5ACB5;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: #A5ACB5;
	border-radius: 50px;
}
.tags-list li a:hover, .tags-list li a.active{
	background-color:#171715;
	color:white;
	border:1px solid white;
	border:1px solid #171715;
}
.custom-prev,
.custom-next {
	position: absolute;
	transform: translateY(-50%);
	z-index: 1000;
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
	width: 40px;
	height: 40px;
	background-size: cover;
	bottom:0px;
}

.slick-slide {
	margin: 0 10px;
}

.custom-prev {
	 /*left:43%;*/ 
	/* Use your custom previous arrow image */
	background-image: url('../images/left-arrow.svg');
}

.custom-next {
	right: 43%;
	/* Use your custom next arrow image */
	background-image: url('../images/right-arrow.svg');
}
.residentails-next{
	right: 50% !important;
}

.marine-slider{
	margin-top: 100px !important;
}
/*.content #sidebarCollapse {
    right: 0;
    position: relative;
    transition: 0.5s ease-in-out;
    top: -40px;
    left: -72rem;
}*/

/* Footer-css */

.get-in-touch {
	margin-top: -398px;
}

.footer-main {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: calc(100vh - 40px);
}

.get-in-touch-card {
	padding: 100px 80px;
}
.fs-20 {
    font-size: 20px;
}
.footer {
	background-image: url(../images/footer.png);
	background-size: cover;
	height: 100%;
	width: 100%;
	margin-top: 350px;
	padding-bottom: 0px !important;
}

.marine-footer {
	min-height: 850px;
	margin-top: 150px;
}
/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */


#sidebar {
    min-width: 300px;
    max-width: 300px;
    color: #fff;
    transition: all 0.3s;
	margin-left: -300px;
	font-family: 'partakedemoregular';
	height: 100vh;
	position: fixed;
	z-index: 99;
	background-color:rgba(0,0,0, 0.4);
	top:0;
	bottom: 0;
	transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: bottom left;
}
#sidebar::after{
	position: absolute;
	content: '';
	filter: blur(8px);
    -webkit-filter: blur(8px);
	inset: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background-image: url('../images/blur-img.svg');
}
.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
/* #sidebar.active {
    margin-left: 0px;
} */

#sidebar.active {
    margin-left: 0px;
    /* transform: rotateY(100deg); */
}

#sidebar .sidebar-header {
    padding: 80px 20px 20px 20px;
}
.sidebar-header img{
	width: 200px;
}
/*.content #sidebarCollapse {
    right: 0;
    position: relative;
    transition: 0.5s ease-in-out;
    
	left: -72rem;
}*/
.content #sidebarCollapse {
    position: relative;
    transition: 0.5s ease-in-out;

}
/*.homepage-toogle{
	left: 0 !important;
}*/
 .content.active .homepage-toogle{
	left: -72rem !important; 
} 
/*.content.active #sidebarCollapse{
	position: relative;
	left: 0rem;
	transition: 0.5s ease-in-out;
}*/
.content.active #sidebarCollapse {
    position: fixed;
    transition: 0.5s ease-in-out;
    left: 14rem !important;
    top: 30px;
}
#sidebar ul.components {
    padding: 20px;
}

#sidebar ul li a{
	font-size: 24px;
}

#sidebar ul li:hover a{
	background-color: white;
	color:black !important;
}

#sidebar ul li:hover svg{
	stroke: currentColor;
	filter: invert(1);
}
#sidebar ul li.active:hover svg{
	stroke: currentColor;
	filter: invert(1);
}
#sidebar ul li.active svg{
	stroke: currentColor;
	filter: invert(1);
}
#sidebar ul li.about.active svg{
	filter: invert(1);
}
#sidebar ul li.active>a,
a[aria-expanded="true"] {
	color:black !important;
    background: #fff;
}

a[data-toggle="collapse"] {
    position: relative;
}
#sidebarCollapse {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    cursor: pointer;
}
#sidebarCollapse span {
    width: 50%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #fff;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0.2s;
}
#sidebarCollapse span:first-of-type {
    transform: rotate(0deg) translate(8px, 2px);
    position: relative;
    top: 0px;
}
#sidebarCollapse span:nth-of-type(2) {
    opacity: 1;
    position: relative;
    top: 11px;
    left: 10px;
    transform: rotate(0deg) translate(8px, 2px);
}
#sidebarCollapse span:last-of-type {
    transform: rotate(0deg) translate(8px, -1px);
    position: relative;
    top: 25px;
    left: 0px;
}

#sidebarCollapse.active span:first-of-type {
    transform: rotate(45deg) translate(8px, 3px);
    top: -1px;
    left: 9px;
}
#sidebarCollapse.active span:nth-of-type(2) {
    opacity: 0;
}

#sidebarCollapse.active span:last-of-type {
    transform: rotate(-45deg) translate(7px, -2px);
    top: -1px;
    left: 8px;
}

#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 5px auto;
}
.bg-popup {
    background: #222222;
}
.text-justify, .text-justify p {
    text-align: justify;
}
/* Responsive-css */

@media (min-width: 1201px) and (max-width: 1366px) {
	.left-content {
		padding: 100px 100px;
	}

	.right-content {
		padding: 100px 100px;
	}

	.footer-main {
        height: calc(100vh - 100px);
    }
	.container-fluid {
		padding: 0 20px;
	}
	.marine {
		min-height: 595px;
	}
	.commercial {
		min-height: 590px;
	}
}


@media (min-width: 992px) and (max-width: 1200px) {
	.left-content {
		padding: 100px 100px;
		width: 60%;
	}

	.right-content {
		padding: 100px 100px;
		width: 60%;
	}
	.container-fluid {
		padding: 0 20px;
	}
	.footer-main {
        height: calc(60vh - 50px);
    }
}


@media (min-width: 768px) and (max-width: 991px) {
	.left-content {
		padding: 100px 100px;
		width: 80%;
	}
	.container-fluid {
		padding: 0 20px;
	}
	.right-content {
		padding: 100px 100px;
		width: 80%;
	}

	.footer-main {
		height: calc(100vh - 0px);
	}
	.get-in-touch-card {
		padding: 50px 50px;
	}
	.marine{
		background-position: center;
	}
}
.next-prev-btn a {
    border: 2px solid #ffffff;
    padding: 5px 32px 5px 32px;
    text-decoration: none;
    color: #fff;
    border-radius: 32px !important;
}

@media (max-width: 767px) {
	.left-content {
        padding: 50px 30px 80px 30px;
        width: 50%;
        height: fit-content !important;
    }
    .chk-wrapper .col {
        width: 100%;
    }
    .top-logo img {
        display: block;
    }
   .left-content h3{
	    font-size: 20px;
   }
   .marine-inner-content {
        margin-top: 0px;
    }
    .preview-image {
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        width: 100%;
        height: 264px !important;
    }
   .display-6 {
       font-size: 20px;
   }
   .slide-content h1 {
        line-height: 50px;
    }
   .right-content {
    padding: 50px 30px 80px 30px !important;
	width: 50% !important;
	height: fit-content !important;
}
	.left-content p{
		overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 5; /* number of lines to show */
           line-clamp: 5;
   -webkit-box-orient: vertical;
	}
	.residential, .marine, .commercial {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: right;
		min-height: fit-content !important;
    }
	.social-media-icon-footer{
		margin: 0 auto !important;
	}
	.marine-inner-content h3{
		font-size: 36px;
		margin-bottom: 20px;
	}
	.custom-prev, .custom-next{
		width: 60px;
		height: 60px;
	}
	.slide-content {
		padding: 0 20px;
	}

	.header {
		right: 0px;
		top: 20px;
		padding: 20px 0px;
	}

	.slide-content img {
		width: 330px;
	}

	.slide-content h6 {
		text-align: center;
		line-height: 18px;
	}

	.swiper-slide>img {
		min-height: 700px;
		object-fit: cover;
	}

	.right-content {
		padding: 50px;
		width: 100%;
		opacity: 0.8;
	}

	.swiper-slide {
		min-height: 650px;
	}

	.get-in-touch-card {
        padding: 40px 24px;
    }

	.footer-main {
        height: fit-content;
    }
	.custom-next {
		right: 10%;
	}
	.container-fluid {
		padding: 0px 20px;
	}
	.custom-prev, .custom-next {
		bottom: -100px;
	}
	.residentails-next {
		right: 20% !important;
	}
	.custom-prev {
        left: 10%;
    }
	.marine-footer .footer-main {
        height: fit-content;
    }
	.marine-footer {
		min-height: 100vh;
	}
	.logo img {
		max-width: 250px;
	}
	.blog-card {
		min-height: 529px;
	}
	.post-image img {
        width: 91px;
        height: 91px;
        object-fit: cover;
        border-radius: 0px;
    }
	.content #sidebarCollapse {
		top: -10px !important;
		left: -1rem !important;
	}
	.content.active #sidebarCollapse {
		left: -8rem !important;
	}
	.wrapper.active .content #sidebarCollapse {
		/*left: -6rem !important;*/
	}
	.wrapper .content.active #sidebarCollapse {
        left: 14rem !important;
        top: 20px !important;
    }
	.wrapper.homepage.active .content.active #sidebarCollapse {
        left: -8rem !important;
    }
	.marine{
		background-position: center;
	}
	.custom-btn{
		padding: 6px 10px !important;
	}
}




@media only screen and (max-width: 767px) {
    #first {
        order: 1;
    }
    #second {
        order: 2;
    }
    #third {
        order: 3;
    }
    #fourth {
        order: 4;
    }
}
@media (min-width: 1920px) and (max-width: 2560px)  {
   .custom-prev, .custom-next {
        position: absolute;
        transform: translateY(-50%);
        z-index: 1000;
        background-color: transparent;
        border: none;
        outline: none;
        cursor: pointer;
        width: 40px;
        height: 40px;
        background-size: cover;
        bottom: -70px;
    } 
    .footer-main {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: calc(78vh - 40px);
    }
    .custom-prev {
        left: 34%;
    }
    .custom-next {
        right: 44%;
    }

}