/*
	Theme Name: COIMOSA WordPress Theme
	Theme URI: https://boostmonitor.com
	Description: COIMOSA WordPress Theme by Boostmonitor
	Version: 2.0
	Author: Hector Felan (@boostmonitor)
	Author URI: https://boostmonitor.com
	Tags: COIMOSA, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/
.under-construction-container {
	display: flex;
	align-self: center;
	justify-content: center;
	width: 100%;
	height: 100vh;
}
.under-construction-container img {
	max-width: 300px;
	width: 100%;
	object-fit: contain;
}
/*------------------------------------*\
    ROOT COLORS
\*------------------------------------*/
:root {
	--primary-color: #583E23;
	--primary-color-2: #1A3557;
	--primary-color-3: #81BCD7;
	--secondary-color: #7C5A36;
	--secondary-color-2: #A47C52;
	--secondary-color-3: #CFA782;
	--tertiary-color: #fcf2e6;
	--quaternary-color: #d19d61;
	--clear-color: #ffffff;
	--default-color: #16110a;
	--light-color: #dacfc8;
	
	--button-border-radius: 30px;
}
/*------------------------------------*\
    TEXT
\*------------------------------------*/
h1, h2, h3, h4, h5 {
	font-family: 'Outfit', sans-serif;
}
p, li, .footer span {
	font-family: 'Outfit', sans-serif;
	font-size: 17px;
	line-height: 1.4;
}
p {
	margin-top: 17px;
	margin-bottom: 17px;
}
h1 {
	margin: 3rem 0;
}
h1.main-heading {
	font-size: 40px;
	/* margin-top: 0; */
}
h1.secondary-heading {
	font-size: 30px;
	/* margin-top: 0; */
}
h2.main-heading {
	font-size: 30px;
	/* margin-top: 0; */
}
h2.secondary-heading {
	font-size: 28px;
	/* margin-top: 0; */
}
h2.tertiary-heading {
	font-size: 24px;
	/* margin-top: 0; */
}
p.main-paragraph {
	font-size: 20px;
}
.main-list li {
	font-size: 20px !important;
}
.text-strong {
	font-weight: 900;
}
.pretitle {
	font-size: 30px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 8.5px;
	text-transform: uppercase;
  	-webkit-text-fill-color: transparent;
	opacity: 0.6 !important;
}
/* .pretitle::after {
	content: '';
	display: inline-block;
	width: 80px;
	height: 1px;
} */
.pretitle-primary {
	-webkit-text-stroke: 1px var(--primary-color);
}
.pretitle-primary::after {
	background-color: var(--primary-color);
}
.pretitle-primary-2 {
	-webkit-text-stroke: 1px var(--primary-color-2);
}
.pretitle-primary-2::after {
	background-color: var(--primary-color-2);
}
.pretitle-secondary {
	-webkit-text-stroke: 1px var(--secondary-color);
}
.pretitle-secondary::after {
	background-color: var(--secondary-color);
}
.pretitle-tertiary {
	-webkit-text-stroke: 1px var(--tertiary-color);
}
.pretitle-tertiary::after {
	background-color: var(--tertiary-color);
}
.pretitle-quaternary {
	-webkit-text-stroke: 1px var(--quaternary-color);
}
.pretitle-quaternary::after {
	background-color: var(--quaternary-color);
}
.uppercase {
	text-transform: uppercase !important;
}
.capitalize {
	text-transform: capitalize;
}
.lowercase {
	text-transform: lowercase;
}
/*------------------------------------*\
    COLORS CLASSES
\*------------------------------------*/
.primary-color {
	color: var(--primary-color);
}
.primary-color-2 {
	color: var(--primary-color-2);
}
.primary-color-3 {
	color: var(--primary-color-3);
}
.secondary-color {
	color: var(--secondary-color);
}
.secondary-color-2 {
	color: var(--secondary-color-2);
}
.secondary-color-3 {
	color: var(--secondary-color-3);
}
.tertiary-color {
	color: var(--tertiary-color);
}

/* Backgrounds */
.bg-primary {
	background-color: var(--primary-color);
}
.bg-primary-2 {
	background-color: var(--primary-color-2);
}
.bg-primary-3 {
	background-color: var(--primary-color-3);
}
.bg-secondary-2 {
	background-color: var(--secondary-color-2);
}
.bg-secondary-3 {
	background-color: var(--secondary-color-3);
}
/*------------------------------------*\
    BACKGROUNDS
\*------------------------------------*/

/*------------------------------------*\
    FIELDS & BUTTONS
\*------------------------------------*/
.form-input {
	position: relative;
	margin-top: 5px;
	margin-bottom: 5px;
}
input {
	font-size: 17px;
}
form {
	display: block;
	width: 100%;
}
label {
	display: block;
	font-size: 20px;
	font-weight: 800;
	font-family: 'Outfit', sans-serif;
}
input[type='text'],
input[type='email'],
input[type='number'],
input[type='password'],
textarea {
	font-family: 'Inter', sans-serif;
	font-size: 18px;
	outline: none;
}
input[type='text'],
input[type='email'],
input[type='number'],
input[type='password'] {
	display: block;
	width: 100%;
	height: 50px;
	margin: 8.5px 17px 8.5px 0;
	padding: 0 17px;
	border-radius: 10px;
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
textarea {
	display: block;
	width: 100%;
	height: 119px;
	resize: none;
	margin: 8.5px 34px 8.5px 0;
	padding: 17px;
	border-radius: 10px;
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
input[type='text']:focus,
input[type='email']:focus,
input[type='number']:focus,
input[type='password']:focus,
textarea:focus {
	border-radius: var(--button-border-radius) !important;
}
input[name='name'] {
	text-transform: capitalize;
}
.input-error {
	border-color: red !important;
}
#form-message-field {
	display: none;
	margin-top: 17px;
}
#form-message-text {
	display: block;
	padding: 17px;
	font-weight: 600;
	border-radius: 17px;
	backdrop-filter: blur(2px);
  	-webkit-backdrop-filter: blur(2px);
}
.form-error-message {
	background-color: rgba(255, 0, 0, 0.5);
	color: var(--tertiary-color);
}
.form-success-message {
	background-color: rgba(1, 157, 35, 0.5);
	color: var(--tertiary-color);
}
.button {
	display: block;
	position: relative;
	border-radius: 10px;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	margin-top: 17px;
	margin-right: 5px;
	margin-bottom: 5px;
	width: fit-content !important;
	overflow: hidden;
	outline: none;
	border: none;
	cursor: pointer;
}
.button-wrapper {
	position: relative;
}
.button::before {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;
	left: calc(-100% - 20px);
	width: 100%;
	height: 100%;
	background: linear-gradient(-45deg, transparent 0%, transparent 25%, rgba(255, 255, 255, 0.5) 50%, transparent 75%, transparent 100%);
	opacity: 0.9;
	transition: 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.button:hover::before {
	left: calc(100% + 20px);
}
.button:hover {
	border-radius: var(--button-border-radius);
	color: var(--tertiary-color);
}
.button-medium {
	padding: 15px 20px;
	font-size: 18px;
	font-weight: 600;
}
.button-large {
	padding: 20px 20px;
	font-size: 18px;
	font-weight: 600;
}
.button-primary {
	background-color: var(--primary-color);
	color: var(--tertiary-color);
}
.button-primary-2 {
	background-color: var(--primary-color-2);
	color: var(--tertiary-color);
}
.button-primary-3 {
	background-color: var(--primary-color-3);
	color: var(--tertiary-color);
}
.button-secondary {
	background-color: var(--secondary-color);
	color: var(--tertiary-color);
}
.button-quaternary {
	background-color: var(--quaternary-color);
	color: var(--tertiary-color);
}
.button-right-icon i {
	margin-left: 10px;
}
.button-right-left i {
	margin-right: 10px;
}
.button-arrow-right::after {
	content: '\f061';
	font-family: 'Font Awesome 6 Sharp';
	font-weight: 400;
	margin-left: 10px;
}
.button-primary-loading::after {
	content: '';
	position: absolute;
	background-color: var(--quaternary-color);
	z-index: -1;
	top: 0;
	left: 0 !important;
	height: 100%;
	animation: button-loading-effect 6s ease-in forwards;
}
@keyframes button-loading-effect {
	0% {
		width: 0%
	}
	25% {
		width: 33%
	}
	50% {
		width: 75%
	}
	90% {
		width: 90%
	}
	100% {
		width: 100%
	}
}
.button-loading-2::before {
	width: 50%;
}
.button-loading-3:before {
	width: 100%;
}
.button-footer {
	border: 2px solid var(--tertiary-color);
	background-color: var(--primary-color-2);
	color: var(--tertiary-color);
}
.button-footer:hover {
	color: var(--tertiary-color);
}
/*------------------------------------*\
    LISTS
\*------------------------------------*/
.list-style-check {
	list-style: none;
	position: relative;
	padding: 8.5px 0 8.5px 17px;
}
.list-style-check li {
	display: flex;
	align-items: flex-start;
	padding-left: 34px;
	margin: 8.5px 0;
}
.list-style-check li::before {
	content: '\f058';
	font-family: 'Font Awesome 6 Sharp';
	font-weight: 500;
	position: absolute;
	left: 0;
	color: inherit;
}
.list-style-big li::before {
	font-size: 24px;
}
/*------------------------------------*\
    MISC
\*------------------------------------*/
.divisor {
	display: block;
	width: 100%;
	position: relative;
}
.divisor-thin {
	height: 1px;
}
.divisor-thick {
	height: 3px;
}
.divisor-lightgray {
	background-color: lightgray;
}
.divisor-vp-small {
	margin-top: 10px;
	margin-bottom: 10px;
}
.divisor-vp-medium {
	margin-top: 17px;
	margin-bottom: 17px;
}
.divisor-vp-large {
	margin-top: 34px;
	margin-bottom: 34px;
}
.bm-col-container {
	display: block;
	width: 100%;
	position: relative;
	height: 100%;
	padding: 0px;
}
.bm-col-inner-container {
	display: block;
	width: 100%;
	position: relative;
	height: 100%;
	padding: 0px 0;
}
.bm-col-container-light {
	background-color: var(--secondary-color-3);
	border-radius: var(--button-border-radius);
	color: var(--tertiary-color);
	clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 25px, 100% 100%, 50px 100%, 0% calc(100% - 25px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 25px, 100% 100%, 50px 100%, 0% calc(100% - 25px));
}
.bm-col-container-light .bm-col-icon-left i {
	font-size: 50px;
	color: var(--primary-color);
}
.bm-col-container-dark {
	background:linear-gradient(45deg, var(--secondary-color-3) 0%, var(--secondary-color-2) 100%);
	border-radius: var(--button-border-radius);
	color: var(--tertiary-color);
	clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 25px, 100% 100%, 50px 100%, 0% calc(100% - 25px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 25px, 100% 100%, 50px 100%, 0% calc(100% - 25px));
}
.bm-col-details-right i {
	font-size: 24px;
	color: var(--secondary-color);
}
.bm-col-details-right .flex {
	margin-bottom: 8.5px;
}
.bm-col-details-right > .flex span {
	display: block;
	font-weight: 700;
}
.overflow-hidden {
	overflow: hidden;
}
.bm-col-details-right ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.block {
	display: block;
}
.bm-col-container-icon {
	font-size: 30px;
	display: block;
	width: 100%;
	text-align: center !important;
}
.bm-col-container-paragraph {
	font-size: 18px;
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	display: block;
	width: 100%;
	text-align: center;
	margin: 17px 0 0 0;
	padding: 0;
}
.br-10 {
	border-radius: 10px;
}
.br-default {
	border-radius: var(--button-border-radius);
}
/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box ;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
::-webkit-scrollbar-corner { 
	background: none;
}
* {
	scrollbar-width: none !important;
}
/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
	width: 0px;
	height: 0px;
}
*::-webkit-scrollbar-track {
	background: none;
}
*::-webkit-scrollbar-thumb {
	background-color: var(--scroll-bar-color);
	border-radius: 20px;
	border: none;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 17px;
	font-family: 'Inter', sans-serif;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-tap-highlight-color: transparent;
	background-color: var(--tertiary-color);
	background-image: url('img/backgrounds/absurdity.png');
}
.modal-open {
	overflow: hidden;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color: unset;
	text-decoration: unset;
}
a:hover {
	color: unset;
	text-decoration: unset;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
.wrapper {
	width: 100%;
	position: relative;
}
main {
	width: 100%;
	position: relative;
	padding-left: 17px;
	padding-right: 17px;
}
section {
	max-width: 1604px;
	width: 100%;
	position: relative;
	margin: 0 auto;
	padding-top: 17px;
	padding-bottom: 17px;
}
.narrow-section {
	max-width: 1440px;
}
.narrower-section {
	max-width: 1280px;
	margin: 0 auto;
}
.small-section {
	max-width: 1110px;
	width: 100%;
	margin: 0 auto;
}
/*------------------------------------*\
    HEADER
\*------------------------------------*/
#header-wrapper {
	background:linear-gradient(0deg, var(--secondary-color-2) 0%, var(--secondary-color) 100%);
}
.header {
	width: 100%;
	position: relative;
}
#header-nav-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#scroll-header {
	position: fixed;
	z-index: 2;
	left: 0;
	top: -80px;
	width: 100%;
	padding: 0;
	background:linear-gradient(0deg, var(--secondary-color-2) 0%, var(--secondary-color) 100%);
	opacity: 0;
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.scroll-header-show {
	opacity: 1 !important;
	top: 0 !important;
}
#scroll-header section {
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 17px;
	padding-left: 17px;
}
#scroll-header img {
	width: 200px;
	height: auto;
	object-fit: contain;
}
.logo img {
	width: 220px;
	height: auto;
	object-fit: contain;
}
.header-nav {
	display: none;
}
.header-nav ul {
	display: flex;
	padding: 0;
	gap: 68px;
	list-style: none;
}
.header-nav ul li {
	position: relative;
}
.header-nav ul li a {
	font-size: 20px;
	font-weight: 700;
	color: var(--tertiary-color);
}
.prep-option {
	position: absolute;
	top: 0;
	left: 0;
	color: var(--primary-color);
	width: 0px;
	white-space: nowrap;
	overflow: hidden;
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.header-nav ul li a:hover .prep-option {
	width: 100%;
}
#header-dektop-menu {
	display: flex;
	gap: 17px;
	align-items: center;
}
.header-contact-button {
	list-style: none;
	padding: 0;
	margin: 0;
	position: relative;
	width: fit-content;
}
.header-contact-button li a {
	position: relative;
	overflow: hidden;
	padding: 10px 20px;
	background-color: var(--primary-color);
	border-radius: 10px;
	color: var(--tertiary-color);
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.header-contact-button li a:hover {
	border-radius: var(--button-border-radius);
}
.menu-bars {
	position: relative;
	width: 50px;
	height: 24px;
	cursor: pointer;
}
.menu-bars span {
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 2px;
	background-color: var(--tertiary-color);
	border-radius: 3px;
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-bars span:nth-child(1) {
	top: 0px;
}
.menu-bars span:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}
.menu-bars span:nth-child(3) {
	bottom: 0px;
}
.menu-bars:hover span:nth-child(2) {
	width: 80%;
}
#nav-overlay {
	position: fixed;
	z-index: 5;
	top: 0;
	right: -100%;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: var(--default-color);
	opacity: 0;
	transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
#nav-container {
	position: fixed;
	z-index: 6;
	max-width: 450px;
	width: 100%;
	top: 0;
	bottom: 0;
	right: -450px;
	background-color: var(--clear-color);
	height: 100%;
	transition: 1s cubic-bezier(0.645, 0.045, 0.355, 1);
	padding: 17px 34px 34px 34px;
	opacity: 0;
}
#nav-overlay.active {
	opacity: 0.5;
	right: 0%;
}
#nav-container.active {
	opacity: 1;
	right: 0%;
}
#nav-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: relative;
	z-index: 1;
	padding: 10px 0;
	background-color: var(--clear-color);
	color: var(--primary-color);
	font-size: 15px;
}
#close-nav-container {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
#lang-nav-container a {
	display: flex;
	align-items: center;
	gap: 5px;
}
#lang-nav-container a img {
	width: 25px;
	height: 25px;
	object-fit: cover;
	object-position: center center;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	overflow: hidden;
}
.nav-container-content {
	position: relative;
	height: 100%;
	overflow-y: auto;
}
.nav-container-logo {
	width: 220px;
	height: auto;
	object-fit: contain;
	display: block;
	margin-top: 17px;
	margin-bottom: 34px;
}
.nav {
	display: block;
	margin-bottom: 17px;
}
.nav ul {
	position: relative;
	padding: 0 0 0 17px;
	margin: 0;
	list-style: none;
}
.nav ul li {
	display: flex;
	align-items: center;
}
.nav ul li a {
	display: block;
	font-weight: 500;
	padding: 8.5px 17px 8.5px 0;
	margin: 0;
}
.nav ul li::before {
	content: '\f0a9';
	font-family: 'Font Awesome 6 Sharp';
	font-weight: 300;
	font-size: 24px;
	margin-right: 10px;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	color: var(--primary-color-2);
}
.nav ul li:hover::before {
	margin-right: 13px;
}
.nav-contact-section {
	display: flex;
	align-items: center;
	padding: 8.5px 17px 8.5px 0;
}
.nav-contact-icon {
	font-size: 24px;
	margin-right: 10px;
	color: var(--primary-color-2);
}
.nav-contact-info span {
	display: block;
}
.nav-contact-info span:first-of-type {
	font-weight: 700;
}
.nav-contact-section ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.nav-contact-info a {
	color: var(--primary-color);
}
.nav-contact-info a::after {
	content: '\f08e';
	font-family: 'Font Awesome 6 Sharp';
	font-weight: 600;
	font-size: 15px;
	margin-left: 10px;
	color: var(--secondary-color);
}
.nav-form {
	position: relative;
	width: 100%;
}
.nav-form input {
	width: 100%;
	height: 50px;
	padding: 0 50px 0 0;
	outline: none;
	border: none;
	border-bottom: 3px solid lightgray;
}
.nav-form button[type='submit'] {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 17px;
	font-size: 24px;
	border: none;
	outline: none;
	background-color: var(--clear-color);
	color: var(--primary-color);
}
#newsletter-subscription-form input {
	border-radius: 0px !important;
}
#newsletter-subscription-form input[name='first-name'] {
	text-transform: capitalize
}
.newsletter-subscription-form-error {
	border-bottom: 3px solid red !important;
}
#newsletter-subscription-form-message {
	display: none;
	margin-top: 17px;
	width: 100%;
	padding: 17px;
	border-radius: 10px;
}
#newsletter-subscription-form-message-container {
	display: flex;
	align-items: center;
	gap: 17px;
}
#newsletter-subscription-form-message i {
	font-size: 30px;
}
.newsletter-error-message {
	background-color: red;
	color: var(--clear-color);
}
.newsletter-warning-message {
	background-color: var(--secondary-color);
	color: var(--clear-color);
}
.newsletter-success-message {
	background-color: green;
	color: var(--clear-color);
}
.nav-sm-list {
	display: flex;
	align-self: center;
	justify-content: center;
	gap: 34px;
	list-style: none;
	padding: 17px 0;
}
.nav-sm-list li a {
	font-size: 24px;
	color: var(--primary-color);
}
/*------------------------------------*\
    MAIN PAGE
\*------------------------------------*/
#home-hero-wrapper {
	background: linear-gradient(0deg, var(--secondary-color-3) 0%, var(--secondary-color-2) 100%);
}
#home-hero-wrapper > section {
	padding-top: 0;
}
#home-hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-slide-background-img::after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--default-color);
    opacity: 0.5;
    /* border-radius: var(--button-border-radius); */
}
#home-hero-container .owl-stage-outer {
	overflow: hidden;
	position: relative;
	border-radius: var(--button-border-radius);
	clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
    /* border: 4px solid var(--tertiary-color); */
}
#home-hero-container .item {
	position: relative;
	overflow: hidden;
}
#home-hero-container .owl-item .hero-slide-background-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: scale(1);
    animation: none; /* Ensure no animation on inactive slides */
}
#home-hero-container .owl-item.active .hero-slide-background-img img.scale-active {
    animation: slide-image-animation 10s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
@keyframes slide-image-animation {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}
/* Reset animation for inactive slides */
#home-hero-container .owl-item:not(.active) .hero-slide-background-img img {
    animation: slide-image-reset 2s ease-in forwards;
}
@keyframes slide-image-reset {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
#home-hero-content .owl-dots {
	display: flex;
	gap: 0 17px;
	position: absolute;
	top: 68px;
	left: 50%;
	transform: rotate(0deg) translateX(-50%);
}
#home-hero-content .owl-dot {
	padding: 17px 0 !important;
}
#home-hero-content .owl-dot span {
	display: block;
	width: 50px;
	height: 3px;
	border-radius: 3px;
	background-color: var(--tertiary-color);
	opacity: 0.5;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#home-hero-content .owl-dot.active span {
	opacity: 1;
	width: 30px;
	background-color: var(--secondary-color-3);
}
.hero-slide-data {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 100px 17px 50px 17px;
}
#home-hero-content h1 {
	font-size: 40px;
	line-height: 1.18;
	text-align: center;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
	margin-top: 0;
	color: var(--tertiary-color);
}
#home-hero-content p {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
	color: var(--tertiary-color);
}
#home-hero-content .button {
	margin-top: 34px;
	margin-left: auto;
	margin-right: auto;
}
.hero-scroll-arrow {
	position: absolute;
	z-index: 2;
	right: 20px;
	bottom: 30px;
	font-size: 24px;
	transform: rotate(90deg);
	color: var(--tertiary-color);
	animation: arrow-bounce-up-down 2s ease-in-out infinite;
}
.hero-scroll-arrow:hover {
	color: var(--tertiary-color);
}
@keyframes arrow-bounce-up-down {
	0% {
		transform: rotate(90deg) translateX(0px);
	}
	50% {
		transform: rotate(90deg) translateX(20px);
	}
	100% {
		transform: rotate(90deg) translateX(0px);
	}
}
/* Home about us section */
#home-about-us-section {
	margin-top: -200px;
	padding-top: 200px;
	padding-bottom: 0px;
	background-color: var(--tertiary-color);
	background-image: url('img/backgrounds/absurdity.png');
}
.coimosa-wireframe-watermark {
	position: absolute;
	z-index: 1;
	right: 50% !important;
	transform: translateX(50%);
	bottom: -160px !important;
 	width: 200px !important;
	object-fit: contain;
	opacity: 0.2;
}
#home-about-us-section h2 {
	margin-top: 17px;
	font-size: 30px;
}
#home-about-us-section-img img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: center center;
	border-radius: var(--button-border-radius);
	clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
}
.home-about-us-history {
	margin-bottom: 34px;
	padding-bottom: 34px;
}
.home-about-us-services {
	margin-top: 34px;
	padding-top: 34px;
	padding-left: 34px;
	padding-right: 34px;
	border-top: 1px solid var(--light-color);
}
.home-about-us-services > * {
	margin-bottom: 34px;
	padding-bottom: 34px;
	border-right: none;
	border-bottom: 1px solid var(--light-color);
}
.home-about-us-services > *:last-child {
	border-right: none;
	border-bottom: none;
}
#home-about-us-section h3 {
	font-size: 24px;
}
.home-about-col-container svg {
	width: 70px;
	height: auto;
	object-fit: contain;
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.home-about-col-container .cls-1 {
	fill: var(--primary-color);
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.home-about-col-container:hover .cls-1 {
	fill: var(--secondary-color)
}
/* Home projects */
#home-projects-wrapper {
	padding-top: 64px;
	padding-bottom: 64px;
	background-color: var(--primary-color-2);
	background-image: url('img/backgrounds/az-subtle.png');
	clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
}
#home-projects-wrapper .button {
	margin-top: 34px;
}
#home-featured-image-container .owl-stage-outer {
	border-radius: var(--button-border-radius);
	clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
}
#home-featured-image-container img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: center center;
}
#home-featured-image-container .owl-dots {
	margin-top: 17px;
	display: flex;
	justify-content: flex-end;
	gap:  0 17px;
}
#home-featured-image-container .owl-dots .owl-dot {
	padding: 17px 0 !important;
	height: 2px;
	display: block;
	max-width: 45px;
	width: 100%;
}
#home-featured-image-container .owl-dots .owl-dot span {
	display: block;
	max-width: 45px;
	width: 100%;
	height: 2px;
	background-color: var(--tertiary-color);
	border-radius: 1.5px;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#home-featured-image-container .owl-dots .owl-dot.active span {
	background-color: var(--secondary-color);
}
#home-projects-wrapper h2 {
	margin-top: 0;
}
#home-projects-wrapper .coimosa-wireframe-watermark {
	position: absolute;
	bottom: calc(100% - 250px) !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 300px !important;
	height: auto;
	object-fit: contain;
	opacity: 0.05 !important;
}
#home-project-details {
	display: flex;
	margin-top: 34px;
	align-items: flex-start;
	justify-content: center;
	gap: 34px 17px;
	flex-wrap: wrap;
}
.home-project-detail-option {
	display: block;
	text-align: center;
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.home-project-detail-option i {
	font-size: 34px;
	margin-bottom: 17px;
	color: var(--tertiary-color)
}
.home-project-detail-option span {
	display: block;
	text-align: center;
	font-size: 11px;
	font-weight: 500;
	color: var(--tertiary-color);
}
/* Home contact section */
#home-contact-section {
	position: relative;
	padding-top: 64px;
	padding-bottom: 64px;
}
#home-contact-form input,
#home-contact-form textarea { /* Contact form */
	background-color:var(--clear-color);
	border: 1px solid var(--primary-color-2);
}
#home-contact-section .bm-row {
	position: relative;
	z-index: 2;
}
#home-contact-section .narrower-section .bm-row > * {
	padding: 0;
}
#home-contact-section .narrower-section {
	position: relative;
	background-image: url('img/proyectos/cordillera/DJI_0414.JPG');
	background-repeat: no-repeat;
	background-position: 100% 100%;
	animation: home-contact-section 60s ease-in-out infinite;
	border-radius: var(--button-border-radius);
	overflow: hidden;
	padding: 0;
	clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
}
@keyframes home-contact-section {
	0% {
		background-size: 100%;
	}
	50% {
		background-size: 120%;
	}
	100% {
		background-size: 100%;
	}
}
#home-contact-section .narrower-section:after {
	content: '';
	position: absolute;
	z-index: 1;
	top: 0;left: 0;
	width: 100%;height: 100%;
	background: linear-gradient(0deg, transparent 0%, rgba(26, 17, 17, 0.5) 100%);
}
#home-contact-section #home-contact-form-wrapper {
	padding: 68px 34px;
	background-color: rgba(252, 242, 230, 0.7);
  	backdrop-filter: blur(2px);
  	-webkit-backdrop-filter: blur(2px);
	clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
}
#home-contact-section .small-section {
	margin-top: 34px;
}
#home-contact-section .small-section {
	max-width: 1280px;
}
/* home-contact-details */
.bm-row-contact-details > * {
	border-top: 1px solid var(--light-color);
	border-right: none
}
.bm-row-contact-details > *:last-child {
	border-bottom: 1px solid var(--light-color);
}
/*------------------------------------*\
    ABOUT PAGE
\*------------------------------------*/
.single-page-header,
.single-page-clear-section,
.single-page-section {
	padding-top: 34px;
	padding-bottom: 34px;
}
.single-page-header {
	background: linear-gradient(0deg, var(--secondary-color-3) 0%, var(--secondary-color-2) 100%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 150px 100%, 0% calc(100% - 50px));
}
.hero-container {
	max-width: 980px;
}
.hero-container p {
	font-size: 20px;
}
.clipped {
	clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 25px, 100% 100%, 50px 100%, 0% calc(100% - 25px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 50px) 0%, 100% 25px, 100% 100%, 50px 100%, 0% calc(100% - 25px));
}
.clipped-bottom-left {
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	-webkit-clip-path: ppolygon(0% 0%, 100% 0%, 100% 100%, 150px 100%, 0% calc(100% - 50px));
}
#about-us-hero-section .coimosa-wireframe-watermark {
	position: absolute;
	z-index: -1;
	bottom: -100px;
	right: 0;
	width: 600px !important;
	height: auto;
	object-fit: contain;
	opacity: 0.1 !important;
}
#about-us-mision-vision-values-section img {
	position: relative;
	height: 300px;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}
#about-us-why-us-section {
	padding-bottom: 0 !important;
	padding-top: 17px;
}
#about-us-why-us-section-image {
	display: none;
	/* position: relative;
	z-index: 1;
	right: unset;
	bottom: unset;
	margin-bottom: -34px;
	width: 100%;
	height: auto;
	object-fit: contain; */
}
#about-us-latest-project .coimosa-wireframe-watermark {
	position: absolute;
	z-index: -1;
	bottom: calc(100% - 300px) !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 300px !important;
	height: auto;
	object-fit: contain;
	opacity: 0.4 !important;
}
#about-us-latest-project .owl-dots {
	margin-top: 17px;
	display: flex;
	justify-content: flex-end;
	gap:  0 17px;
}
#about-us-latest-project .owl-dots .owl-dot {
	padding: 17px 0 !important;
	height: 2px;
	display: block;
	max-width: 45px;
	width: 100%;
}
#about-us-latest-project .owl-dots .owl-dot span {
	display: block;
	max-width: 45px;
	width: 100%;
	height: 2px;
	background-color: var(--primary-color-2);
	border-radius: 1.5px;
	transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
#about-us-latest-project .owl-dots .owl-dot.active span {
	background-color: var(--secondary-color-3);
}
#about-us-project-details {
	display: flex;
	margin-top: 34px;
	align-items: flex-start;
	justify-content: center;
	gap: 34px 17px;
	flex-wrap: wrap;
}
#about-us-project-details .home-project-detail-option {
	display: block;
	text-align: center;
	transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}
#about-us-project-details .home-project-detail-option i {
	font-size: 34px;
	margin-bottom: 17px;
	color: var(--secondary-color-2)
}
#about-us-project-details .home-project-detail-option span {
	display: block;
	text-align: center;
	font-size: 11px;
	font-weight: 500;
	color: var(--primary-color-2);
}
#about-us-latest-project .button {
	margin-top: 34px;
}
#meet-the-team .bm-row img {
	width: 100%;
	height: 270px;
	object-fit: cover;
	object-position: center center;
	border-radius: var(--button-border-radius);
	overflow: hidden;
}
#meet-the-team .bm-row span {
	display: block;
}
#meet-the-team .bm-row span:first-of-type {
	margin-top: 17px;
	font-weight: 700;
}
#meet-the-team .bm-row span:last-of-type {
	font-size: 15px;
}
/*------------------------------------*\
    ARCHIVE & SINGLE PROJECTS PAGE
\*------------------------------------*/
#hero-archive-projects-section {
	background:linear-gradient(0deg, var(--primary-color-2) 0%, var(--secondary-color-2) 100%);
}
#hero-archive-projects-section .coimosa-wireframe-watermark {
	position: absolute;
	z-index: -1;
	bottom: -100px;
	right: 0;
	width: 600px !important;
	height: auto;
	object-fit: contain;
	opacity: 0.05 !important;
}
.as-project-financing-detail {
	display: flex;
	gap: 17px;
	align-items: center;
	margin-bottom: 17px;
	border: 1px solid var(--light-color);
	border-radius: var(--button-border-radius);
	padding: 17px 34px;
}
.as-project-financing-detail i {
	font-size: 40px;
	color: var(--secondary-color);
}
.as-project-financing-detail span {
	font-size: 18px;
	font-weight: 700;
}
#as-project-features .small-section {
	padding-left: 17px;
	padding-right: 17px;
}
.project-blue-print,
.project-blue-print-2 {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.project-blue-print {
	display: block;
	height: 300px;
}
.project-blue-print-2 {
	display: none;
}
#project-land-dimensions {
	margin-top: 34px;
}
#project-land-dimensions li {
	padding: 4.25px 0;
	font-weight: 700;
	font-size: 18px;
}
#project-services-amenities {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 34px 17px;
	list-style: none;
	padding: 0 0 85px;
	margin: 0;
}
#project-services-amenities li {
	width: 95px;
	position: relative;
}
#project-services-amenities li span {
	display: block;
	width: 100%;
	text-align: center;
}
#project-services-amenities li span:nth-child(1) {
	font-size: 30px;
	margin-bottom: 17px;
	color: var(--secondary-color-3);
}
#project-services-amenities li span:nth-child(2) {
	display: block;
	width: 100%;
	text-align: center;
	font-family: 'Outfit', sans-serif;
	font-weight: 700;
	font-size: 16px;
	color: var(--tertiary-color);
}
.project-image-slider .item {
	border-radius: var(--button-border-radius);
	overflow: hidden;
}
.project-image-slider img {
	width: 100%;
	height: 500px;
	object-fit: cover;
	object-position: center center;
}
#google-map {
	position: relative;
	z-index: 2;
	top: unset;
	margin-top: -34px;
	margin-left: -17px;
	margin-right: -17px;
	left: unset;
	width: calc(100% + 34px);
	height: 400px;
}
/*------------------------------------*\
    SERVICES PAGE
\*------------------------------------*/

/*------------------------------------*\
    CONTACT PAGE
\*------------------------------------*/
#google-maps-contact-page {
	display: block;
	width: 100%;
	height: 1000px;
	position: relative;
	z-index: -1;
}

/*------------------------------------*\
    FOOTER
\*------------------------------------*/
.footer {
	padding: 0 17px;
}
.footer-container {
	max-width: 1604px;
	border-radius: var(--button-border-radius);
	overflow: hidden;
	position: relative;
	display: block;
	margin: 0 auto 50px auto;
	clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
}
.footer-content {
	position: relative;
	width: 100%;
	padding: 17px 17px;
	background-color: var(--primary-color-2);
	color: var(--tertiary-color);
}
.footer-content img,
.footer-content p,
.footer-content span,
.footer-content li a {
	opacity: 0.5;
}
.footer ul {
	padding-left: 0;
	padding-right: 0;
	list-style: none;
}
.footer ul li {
	padding: 5px 0;
}
.footer-content li:hover a {
	opacity: 1;
}
.footer-copyright {
	width: 100%;
	padding: 17px 34px;
	background-color: var(--secondary-color-3);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: -0.5px;
	color: var(--primary-color-2);
}
#coimosa-footer-logo {
	width: 250px;
	height: auto;
	object-fit: contain;
}
.copyright {
	display: block;
	width: 100%;
	padding-left: 0;
	text-align: center;
}
.copyright > span {
	display: block;
	text-align: center;
	padding-bottom: 17px;
}
.terms-and-policy-links {
	display: flex;
	gap: 0 17px;
	flex-wrap: wrap;
	justify-content: center;
}
.terms-and-policy-links a {
	display: block;
	white-space: unset;
	padding: 8.5px 0;
}
.terms-and-policy-links a:first-of-type {
	content: '';
	border-right: none;
	padding-right: 0px;
	margin-right: 0px;
}
.boostmonitor {
	display: block;
	position: relative;
	margin: 0 auto;
	padding-top: 17px;
}
.boostmonitor svg {
	width: 120px;
	height: auto;
	object-fit: contain;
}
/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Inter';
	src:url('fonts/Inter/Inter-VariableFont_opsz\,wght.ttf');
}
@font-face {
	font-family:'Inter-Italic';
	src:url('fonts/Inter/Inter-Italic-VariableFont_opsz\,wght.ttf');
}
@font-face {
	font-family:'Outfit';
	src:url('fonts/Outfit/Outfit-VariableFont_wght.ttf');
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
.bm-dnone {
	display: none !important;
}
.bm-dblock {
	display: block !important;
}
.bm-center {
	margin-left: auto;
	margin-right: auto;
}
@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {
	.bm-sm-dnone {
		display: none;
	}	
	.bm-sm-dblock {
		display: block;
	}
}
@media only screen and (min-width:768px) {
	/* resposive */
	.bm-md-dnone {
		display: none !important;
	}	
	.bm-md-dblock {
		display: block !important;
	}
	.bm-md-left {
		margin-left: inherit;
	}
	/* Misc */
	.bm-col-container {
		padding: 34px;
	}
	h1.main-heading {
		font-size: 60px;
	}
	h1.secondary-heading {
		font-size: 40px;
	}
	h2.main-heading {
		font-size: 40px;
	}
	h2.secondary-heading {
		font-size: 35px;
	}
	h2.tertiary-heading {
		font-size: 30px;
	}
	.clipped {
		clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
		-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	}
	/* misc */
	.pretitle {
		font-size: 50px;
	}
	/* Header */
	.logo img {
		width: 250px;
	}
	/* Hero section */
	#home-hero-container {
		
	}
	.hero-slide-data {
		padding: 150px 100px;
	}
	#home-hero-content h1 {
		font-size: 60px;
		text-align: left;
	}
	#home-hero-content p {
		font-size: 20px;
		text-align: left;
	}
	#home-hero-content .button {
		margin-left: 0;
		margin-right: 0;
	}
	#home-hero-content .owl-dots {
		transform: rotate(90deg);
		gap: 17px;
		left: -30px;
		top: 40%;
	}
	#home-hero-content .owl-dot {
		width: 50px;
		height: 3px;
	}
	.hero-scroll-arrow {
		right: 50px;
		bottom: 50px;
	}
	.coimosa-wireframe-watermark {
		right: 100px !important;
		bottom: -100px !important;
		transform: none;
		width: 400px !important;
	}
	/* home about us */
	#home-about-us-section {
		margin-top: -200px;
		padding-top: 255px;
	}
	#home-about-us-section h2 {
		font-size: 50px;
	}
	.home-about-us-services {
		margin-top: 0;
		padding-top: 0;
	}
	.home-about-us-services > * {
		border-right: 1px solid var(--light-color);
		border-bottom: none;
	}
	#meet-the-team .bm-row img {
		height: 400px;
	}
	/* home projects */
	#home-projects-wrapper {
		padding-top: 102px;
		padding-bottom: 102px;
	}
	#home-projects-wrapper .coimosa-wireframe-watermark {
		bottom: 0px !important;
		right: 0px !important;
		transform: translateX(0px) !important;
		width: 300px !important;
		height: auto;
		object-fit: contain;
		opacity: 0.05 !important;
	}
	#home-project-details {
		justify-content: center;
		gap: 34px;
	}
	.home-project-detail-option span {
		font-size: 15px;
	}
	/* Home contact section */
	#home-contact-section {
		padding-top: 102px;
		padding-bottom: 102px;
	}
	#home-contact-section #home-contact-form-wrapper {
		padding: 68px 68px;
		clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 0% 100%);
		-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 0% 100%);
	}
	/* home-contact-details */
	.bm-row-contact-details > * {
		border-top: 1px solid var(--light-color);
		border-right: 1px solid var(--light-color);
	}
	.bm-row-contact-details > *:last-child {
		border-bottom: none;
	}
	.bm-row-contact-details > *:nth-child(2),
	.bm-row-contact-details > *:nth-child(4) {
		border-right: none;
	}
	/* about us */
	.single-page-header,
	.single-page-clear-section,
	.single-page-section {
		padding-top: 64px;
		padding-bottom: 85px;
	}
	#about-us-mision-vision-values-section img {
		height: 600px;
	}
	/* footer */
	.footer-content {
		padding: 50px 17px;
	}
	#about-us-why-us-section-image {
		display: block;
		position: absolute;
		z-index: 1;
		right: 0;
		bottom: 0;
		margin-bottom: 0px;
		height: 600px;
		width: auto;
		object-fit: contain;
	}
	#about-us-latest-project .coimosa-wireframe-watermark {
		bottom: 0px !important;
		right: 0px !important;
		transform: translateX(0px) !important;
		width: 300px !important;
		height: auto;
		object-fit: contain;
		opacity: 0.3 !important;
	}
	#about-us-project-details  {
		justify-content: center;
		gap: 34px;
	}
	#about-us-project-details .home-project-detail-option span {
		font-size: 15px;
	}
	/* project */
	#project-services-amenities {
		gap: 34px 34px;
	}
	#project-services-amenities li {
		width: 140px;
	}
	#project-services-amenities li span:nth-child(1) {
		font-size: 40px;
	}
	#project-services-amenities li span:nth-child(2) {
		font-size: 18px;
	}
	.project-image-slider img {
		height: 600px;
	}
	#google-map {
		position: absolute;
		z-index: 2;
		top: 0;
		left: 0;
		margin-top: 0;
		margin-left: 0;
		margin-right: 0;
		width: 50%;
		height: 100%;
	}
	.project-blue-print {
		display: none;
		height: 100%;
	}
	.project-blue-print-2 {
		display: block;
	}
}
@media only screen and (min-width:1024px) {
	/* resposive */
	.bm-lg-dnone {
		display: none;
	}	
	.bm-lg-dblock {
		display: block;
	}
	/* misc */
	h1.main-heading {
		font-size: 80px;
	}
	h1.secondary-heading {
		font-size: 60px;
	}
	h2.main-heading {
		font-size: 50px;
	}
	h2.secondary-heading {
		font-size: 40px;
	}
	h2.tertiary-heading {
		font-size: 30px;
	}
	/* hero section */
	.hero-slide-data {
		padding: 150px 200px;
	}
	#home-hero-content h1 {
		font-size: 80px;
		text-align: left;
	}
	#home-hero-content p {
		font-size: 20px;
		text-align: left;
	}
	#home-hero-content .owl-dots {
		transform: rotate(90deg);
		gap: 17px;
		left: 0px !important;
		top: 40%;
	}
	/* home projects */
	#home-featured-image-container .owl-stage-outer {
		clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
		-webkit-clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 50px, 100% 100%, 150px 100%, 0% calc(100% - 50px));
	}
	/* home-contact-details */
	.bm-row-contact-details > * {
		border-top: 1px solid var(--light-color);
		border-right: 1px solid var(--light-color);
	}
	.bm-row-contact-details > *:nth-child(2) {
		border-right: 1px solid var(--light-color);
	}
	.bm-row-contact-details > *:nth-child(4) {
		border-right: none;
	}
	/* footer */
	.copyright {
		width: fit-content;
		padding-left: 102px;
	}
	.copyright span {
		text-align: left;
		padding: 0;
	}
	.terms-and-policy-links {
		gap: 0;
	}
	.terms-and-policy-links a {
		padding: 0;
	}
	.terms-and-policy-links a:first-of-type {
		content: '';
		border-right: 1px solid var(--primary-color-2);
		padding-right: 17px;
		margin-right: 17px;
	}
	.boostmonitor {
		padding: 0;
		margin: 0;
	}
	/* about us */
	#about-us-why-us-section-image {
		display: block;
		position: absolute;
		z-index: 1;
		right: 0;
		bottom: 0;
		margin-bottom: 0px;
		height: 700px;
		width: auto;
		object-fit: contain;
	}
}
@media only screen and (min-width:1140px) {
	/* header */
	.header-nav {
		display: block;
	}
}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    WORD SPLIT EFFECTS
\*------------------------------------*/
.animate-words,
.animate-letters,
.animate-all {
	display: block;
	position: relative;
	white-space: pre-wrap;
}
.word-wrapper,
.letter-wrapper,
.text-wrapper {
	display: inline-block;
	overflow: hidden;
	position: relative;
	vertical-align: top;
}
.word,
.letter,
.text {
	display: inline-block;
	position: relative;
	transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
	will-change: transform, opacity;
    opacity: 0;
}
.word.from-top,
.letter.from-top,
.text.from-top {
	transform: translateY(-100%);
}
.word.from-bottom,
.letter.from-bottom,
.text.from-bottom {
	transform: translateY(100%);
}
.word.from-left,
.letter.from-left,
.text.from-left {
	transform: translateX(-100%);
}
.word.from-right,
.letter.from-right,
.text.from-right {
	transform: translateX(100%);
}
.word.animate,
.letter.animate,
.text.animate {
	transform: translate(0, 0);
    opacity: 1;
}
/*------------------------------------*\
    ANIMATE EFFECTS
\*------------------------------------*/
.animate-parent {
	overflow: hidden;
}
.animate-effect {
	opacity: 0;
}
.animate-from-top {
	transform: translateY(-34px);
	transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-from-bottom {
	opacity: 0;
	transform: translateY(34px);
	transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-from-left {
	opacity: 0;
	transform: translateX(-34px);
	transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-from-right {
	opacity: 0;
	transform: translateX(34px);
	transition: 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.animate-from-top.active {
	opacity: 1;
	transform: translateY(0px);
}
.animate-from-bottom.active {
	opacity: 1;
	transform: translateY(0px);
}
.animate-from-left.active {
	opacity: 1;
	transform: translateX(0px);
}
.animate-from-right.active {
	opacity: 1;
	transform: translateX(0px);
}
/*------------------------------------*\
    CAROUSEL NAV AND DOTS
\*------------------------------------*/
#project-image-slider .owl-item {
	opacity: 0;
	transition: 1s ease-in-out;
}
#project-image-slider .owl-item.active {
	opacity: 1;
}
#project-image-slider .owl-nav {
	position: relative;
	display: block;
	max-width: 300px;
	width: 100%;
	margin: 17px auto;
}
#project-image-slider .owl-nav .owl-prev,
#project-image-slider .owl-nav .owl-next {
	display: flex;
	width: 50px;
	height: 50px;
	background-color: var(--secondary-color-3);
	color: var(--tertiary-color);
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}
#project-image-slider .owl-nav .owl-prev {
	position: absolute;
	left: 0;
}
#project-image-slider .owl-nav .owl-next {
	position: absolute;
	right: 0;
}
#project-image-slider .owl-dots {
	display: flex;
	gap: 10px;
	justify-content: center;
	margin-top: 38px;
}
#project-image-slider .owl-dots .owl-dot {
	width: 10px;
	height: 10px;
	background-color: var(--secondary-color-3);
	border-radius: 50%;
}
#project-image-slider .owl-dots .owl-dot.active {
	background-color:var(--primary-color-2)
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
