/*
Theme Name: CFO
Theme URI: https://bellop.io
Version: 1.0
Author: bellop.io
Author URI: https://bellop.io
*/

:root,
[data-bs-theme=light]{

	/* Defaults */
	--header-min-height: 64px;	
	--header-fixed-min-height: 64px;

	/* Colors */
	--bs-heading-color: inherit; /* H1, H2 colors */

    --bs-body-color: #020923; /* Deep blue */
    --bs-body-bg: #FAFAFA; /* White */

    --bs-primary: #FF5A2E;
    --bs-primary-rgb: 255,90,46;

    --bs-secondary: #395874;
    --bs-secondary-rgb: 57,88,116;

    --bs-white: #FAFAFA; /* White */
    --bs-white-rgb: 250,250,250;

    --bs-light: #F9EFED; /* Off White */
    --bs-light-rgb: 249,239,237;

    
    --bs-dark: #020923; /* Deepblue*/
    --bs-dark-rgb: 2,9,35;

    --bs-beige: #EDDCD2; /* Beige */

	/* Links */
    --bs-link-color: #0d6efd;
    --bs-link-color-rgb: 13,110,253;
    --bs-link-decoration: underline;
    --bs-link-hover-color: #0a58ca;
    --bs-link-hover-color-rgb: 10,88,202;

    /* BS Borders */
    --bs-border-width: 1px;
    --bs-border-radius: 20px;

}

@media screen and (min-width:1200px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 64px;
		--header-fixed-min-height: 64px;
	}
}

/* Utilities */


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

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

.has-primary-background-color, .bg-primary{ 
	background: var(--bs-primary) !important; 
}

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

.has-white-background-color, .bg-white{
	background: var(--bs-white) !important; 
}

.has-dark-background-color, .bg-dark{
	background: var(--bs-dark) !important; 
}

.has-black-background-color, .bg-black{
	background: var(--bs-black) !important; 
}

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


/* 3. Structure */

html{
	scroll-behavior: smooth;
	scroll-padding-top: 50px;
}

body{
	font-size: 16px;
	font-weight: 400;
	font-family: 'Helvetica Neue', Helvetica, sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}

body.header-fixed{
	padding-top: var(--header-min-height);
}


a{
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6{
	font-family: "Canela", serif;
	font-weight: 400;
}

h1 { font-size: 30px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

@media screen and (min-width: 992px) {
	h1 { font-size: 34px; }
	h2 { font-size: 30px; }
	h3 { font-size: 26px; }
	h4 { font-size: 22px; }
	h5 { font-size: 20px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 700;
}


.ratio-4x3 {
	aspect-ratio: 4 / 3;	
}
.ratio-4x3 img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 4. Structure > Framework */

.main {
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
}

.container,
.container-fluid{
	width: 100%;
	max-width: 100%;
}
.container{
	max-width: 1600px;
	 --bs-gutter-x: 2rem;
}
.container-fluid{
	max-width: 1920px;
}

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
	.container{
		padding: 0 50px;
	}
}

@media screen and (min-width: 1440px){
	.container,
	.container-fluid{
		padding: 0 70px;
	}
}

/* Keyframes */

@keyframes dropDown{
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounce {
	0% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}
	50% {
		transform: translate(0, -100%);
		-webkit-transform: translate(0, -100%);
		-moz-transform: translateY(0, -100%);
	}
	100% {
		transform: translate(0, 0);
		-webkit-transform: translate(0, 0);
		-moz-transform: translate(0, 0);
	}          
}

/* Structure > extras */


.overh{
	overflow: hidden;
}

#pageloader{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--bs-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2em;
	transition: opacity 0.5s ease-in-out;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
}
#pageloader.show{
	opacity: 1;
	pointer-events: all;
}

.grecaptcha-badge{
	opacity:0;
}


/* Components > buttons */

.btn{
	--bs-btn-padding-x: 20px;
	--bs-btn-padding-y: 7px;
	--bs-btn-font-weight: 400;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

@media screen and (max-width: 576px){
	.btn-block-mobile{
		width: 100%;
	}
}

.btn-primary{
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
}
.btn-outline-primary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);

    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-primary);

    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-primary);
}

.btn-secondary{
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-color: var(--bs-light);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-color: var(--bs-secondary);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-light);
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
}
.btn-outline-secondary{
    --bs-btn-bg: transparent;
    --bs-btn-color: var(--bs-secondary);
    --bs-btn-border-color: var(--bs-secondary);

    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-secondary);

    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-secondary);
}


/* Btn Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 32px;
    text-align: center;
    z-index: 9999;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}

.btn-float-whatsapp{
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float{
	    width: 70px;
	    height: 70px;
	    font-size: 40px;
	}
}

.btn-loading:before{
	content: '';
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    animation: spinner-border .75s linear infinite;
    -webkit-animation: spinner-border .75s linear infinite;
}

/* Card*/
.card{
	border: none;
	padding: 32px 24px;
	border-top: 7.2px solid #FAFAFA;
	box-shadow: 2.4px 2.4px 14.4px rgba(0, 0, 0, 0.2);
	border-radius: 0px;
}

/* Structure */

.section{
	position: relative;
	padding: 50px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 112px 0;
	}
}

/* Structure > Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	/*min-height: var(--header-min-height);*/
	background: var(--bs-body-bg);
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}
.header .container:has(.menu) {
	min-height: var(--header-min-height);
}
.header .logo{
	display: inline-block;
	max-width: 212.5px;
	padding: 12px 0;
}

.header.fixed{
	position: fixed;
	background: var(--bs-body-bg);
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 999;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
}

/* Top */
.header .top-menu {
	background: var(--bs-white);	
	height: 32px;
	align-content: center;
}
.header .top-menu .container{
	justify-content: flex-end;	
}

.header .top-menu ul.socialmedia {
	gap: 12px;
}
.header .top-menu ul.socialmedia li a{
	font-size: 18px;
	padding: 0;
}

.header.fixed .top-menu{
	display: none;
}


/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 35px;
	padding: 15px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
	display: block;
	width: 100%;
	height: 2px;
	margin: 4px 0;
	background: var(--bs-dark);
	transition: 0.3s;
	border-radius: 6px;
}

body.open-menu .header .nav-menu .menu-line:nth-child(1),
.header .nav-menu.active .menu-line:nth-child(1) { 
	transform: rotate(45deg); width: 40px; margin-top: 14px; 
}
body.open-menu .header .nav-menu .menu-line:nth-child(3),
.header .nav-menu.active .menu-line:nth-child(3) { 
	transform: rotate(-45deg); width: 40px; margin-top: -16px; 
}
body.open-menu .header .nav-menu .menu-line:nth-child(2),
.header .nav-menu.active .menu-line:nth-child(2) { 
	opacity: 0; 
}

.header .navigation {
	display: none;
	position: absolute;
	top: var(--header-min-height);
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: var(--bs-white);
}

body.open-menu .header .navigation,
.header .navigation.active {
	display: block;
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	font-weight: 500;
}
.header .navigation .menu li.active a,
.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	color: var(--bs-primary);
}

.header .navigation .menu li.menu-contact a{
	display: inline-block;
	padding: 7px 20px;
	color: var(--bs-white);
	background: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	transition: 0.3s all;
	font-size: 16px;
	border-radius: 50px;
}

.header .navigation .menu li.menu-contact a:hover{
	background: transparent;
	color: var(--bs-primary);
}

.header .navigation .menu li .sub-menu{
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header .navigation .menu li.open-submenu > ul{
	display: block;
}

.header .navigation .language{
	display: inline-flex;
	gap: 10px;
}
.header .navigation .language li a{
	position: relative;
	font-size: 12px;
	text-transform: uppercase;
}
.header .navigation .language li a:after{
	content: '';
    position: absolute;
    top: 0;
    right: -5px;
    width: 1px;
    height: 100%;
    background: var(--bs-body-color);
}
.header .navigation .language li:last-child a:after{
	content: none;
}
.header .navigation .language li.current-lang a{
	font-weight: bold;
}



@media screen and (min-width: 1200px) {
	.header .container{
		padding: 0 32px;
	}
	.header .nav-menu {
		display: none;
	}

	.header .logo{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 3;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		background: transparent;
	}
	.header .navigation ul,
	.header .navigation ul li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
	}
	.header .navigation ul{
		margin: 0;
	}

	.header .navigation .menu {
		width: 100%;
		padding-left: 60px;
	}

	.header .navigation .menu li:not(.menu-contact) a {
		padding: 18px 15px;
	}

	/*.header.fixed .navigation .menu li:not(.menu-contact) a{
		padding: 14px 15px;
	}*/

	.header .navigation .menu li a {
		font-size: 18px;
	}
	
	.header .navigation .menu li.menu-contact{
		position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
	}
	


	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: var(--header-min-height);
		left: 0;
		width: 150px;
		background: var(--bs-white);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
		animation: dropDown 300ms ease-in-out forwards;
    	transform-origin: top center;
	}
	.header .navigation ul li:hover > .sub-menu{
		display: block;
	}
	.header .navigation .menu li .sub-menu li{
		display: block;
		margin: 0;
	}
	.header .navigation .menu li .sub-menu li a{
		display: block;
		padding: 10px 15px;
		font-size: 15px;
		color: var(--bs-dark);
		border-bottom: 1px solid #eee;
	}
	.header .navigation .menu li .sub-menu li:last-child a{
		border-bottom: 0;
	}
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{
		background: var(--bs-primary);
		color: var(--bs-white);
		border-bottom-color: var(--bs-primary); 
	}

	.header .navigation .menu li .sub-menu li ul{
		top: 0;
		left: 150px;
		width: 200px;
	}
	.header .navigation .menu li .sub-menu li ul ul{
		left: 200px;
	}

	/* Fixed */
	.header.fixed{
		min-height: var(--header-fixed-min-height);
	}
	.header.fixed .navigation .menu li .sub-menu{
		top: var(--header-fixed-min-height);
	}

	.header .navigation .language{
		margin-left: 12px;
	}
	
}

@media screen and (max-width: 1199px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	}
	.header .navigation .menu li.active a,
	.header .navigation .menu li a:hover{
		background: var(--bs-primary);
		color: var(--bs-white);
	}

	.header .navigation ul li.open-submenu > ul{
		background: rgba(0,0,0,0.05);
	}
	.header .navigation ul li ul li a{
		padding-top: 6px;
		padding-bottom: 6px;
		font-size: 16px;
	}
	.header .top-menu{
		display: none;
	}

	.header .navigation .menu li.menu-contact{
		margin-top: 10px;
	}

	.header .navigation .language li a{
		font-size: 16px;
	}
	.header .navigation .language li a:after{
		content: none;
	}
	.header .navigation .current-lang {
		display: none;
	}
}


/* Components > Forms */

label{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 8px;
}
.bg-primary label,
.bg-dark label{
	color: var(--bs-white);
}

.required{
	color: #ff0000;
}

.form-select,
.form-control{
	line-height: 1.8em;
	border-radius: 100px;
}

.form-select:focus,
.form-control:focus{
    box-shadow: none !important;
    border-color: var(--bs-dark);
}
textarea.form-control{
	border-radius: 32px;
	resize: none;
}

/* Form checkbox */

.form-check{
	display: inline-block;
}

.form-check-input:focus{
	box-shadow: none;
}
.form-check-input:checked{
	background-color: var(--bs-dark);
	border-color: var(--bs-dark);
}

input[type="checkbox"] ~ label,
input[type="radio"] ~ label{
	margin: 0;
	font-weight: 400;
}

/* Form files */

.input-file-group{
	position: relative;
	display: block;
	padding: 30px 15px;
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	text-align: center;
	background-color: var(--bs-body-bg);
	border: var(--bs-border-width) dashed var(--bs-border-color);
	border-radius: 15px;
	cursor: pointer;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.input-file-group input{
	opacity: 0;
	width: 0;
}

.input-file-group .files{
	max-height: 100px;
	overflow: auto;
}
.input-file-group .files span{
	display: block;
	font-size: 12px;
	text-transform: uppercase;
}
.input-file-group:hover,
.input-file-group:focus{
	border-color: var(--bs-dark);
}


/* Form Light */
.form.light .form-control{
	background: transparent;
	border-color: var(--bs-light);
	color: var(--bs-light);
}

.form.light .form-control::placeholder{
	color: var(--bs-light);
}

.form.light .btn{
	min-width: 244px;
}

.form.light select option{
	color: var(--bs-body-color);
}

/* Forms > Show password */

.show_password{
	position: absolute;
	bottom: 0;
	right: 15px;
	padding: 15px;
}
.show_password.active,
.show_password:hover{
	color: #f58426;
}

/* Components > modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .btn-close{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 30px;
	height: 30px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 20px;
		right: -50px;
	}
}

#modalVideo .modal-content{
	background-color: #000;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
}

/* Components > tables */

@media screen and (max-width: 767px){
	.table-responsive{
		white-space: nowrap;
		overflow: auto;
	}
	.table-responsive .table{
		white-space: normal;
	}
}

/* Components > socialmedia */

.socialmedia h4{
	font-size: 18px;
	line-height: 24px;
}

ul.socialmedia{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin: 0;
	padding: 0;
	gap: 5px;
	list-style: none;
}
ul.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
ul.socialmedia li a{
	display: block;
	font-size: 26px;
	padding: 5px;
}
ul.socialmedia li a:hover{
	color: var(--bs-primary);
}

@media screen and (min-width: 992px){	
	ul.socialmedia{
		justify-content: flex-start;
	}
	ul.socialmedia li a{
		font-size: 18px;
	}
}


/* Components > Slider > Swiper */

.slider{
	position: relative;
}

.swiper:has(.swiper-pagination){
    padding-bottom: 60px;
}
.swiper-pagination {
	bottom: 0;
}
.swiper-pagination-bullet{
	background: #ccc;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background:var(--bs-dark);
}

.swiper-button-prev,
.swiper-button-next{
	position: absolute;
	width: 45px;
	height: 45px;
    color: transparent;
}

.swiper-button-prev::after{
  content:'';
  position:absolute;
  inset:0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7069 17.293L8.41394 13H17.9999V11H8.41394L12.7069 6.70697L11.2929 5.29297L4.58594 12L11.2929 18.707L12.7069 17.293Z'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
          mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.7069 17.293L8.41394 13H17.9999V11H8.41394L12.7069 6.70697L11.2929 5.29297L4.58594 12L11.2929 18.707L12.7069 17.293Z'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
  background-color: currentColor;
}
.swiper-button-next::after {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2931 6.70703L15.5861 11L6.00006 11L6.00006 13L15.5861 13L11.2931 17.293L12.7071 18.707L19.4141 12L12.7071 5.29303L11.2931 6.70703Z'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
          mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.2931 6.70703L15.5861 11L6.00006 11L6.00006 13L15.5861 13L11.2931 17.293L12.7071 18.707L19.4141 12L12.7071 5.29303L11.2931 6.70703Z'/%3E%3C/svg%3E") no-repeat center / 24px 24px;
  background-color: currentColor;
}


/* Circle arrows */

.circle.swiper-button-prev,
.circle.swiper-button-next{
	width: 56px;
	height: 56px;
}
.circle.swiper-button-next,
.circle.swiper-button-prev{
	background-color: transparent;
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
}
.circle.swiper-button-next:hover,
.circle.swiper-button-prev:hover{
	border-color: var(--bs-primary);
}

.swiper-button-prev, .swiper-button-next{ color: var(--bs-dark); }
.swiper-button-prev:hover, .swiper-button-next:hover{ color:#EA856E; }


.slider:has(.arrows.bottom){
	padding-bottom: 60px;
}
.arrows.bottom .circle.swiper-button-next,
.arrows.bottom .circle.swiper-button-prev{
	top: auto;
	bottom: 0;
}
.arrows.bottom .circle.swiper-button-prev {
	right: 75px;
	left: auto;
}

.slider:has(.arrows.bottom) .swiper-pagination{
	width: 50%;
	text-align: left;
}

@media screen and (min-width: 992px){
	.slider:has(.arrows.bottom){
		padding-bottom: 80px;
	}
}




/* Categories Filter */

.categories-filter ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    gap: 16px;
}
.categories-filter ul li a {
    display: block;
    padding: 8px 22px;
    border: solid 1px var(--bs-primary);
    border-radius: 50px;
    position: relative;
}
.categories-filter ul li a.active,
.categories-filter ul li a:hover{
	background: var(--bs-primary);
	color: var(--bs-white);
}


/* Components > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}

.title h1,
.title h2,
.title h3,
.title h4,
.title h5{
	margin: 0;
}

.title h1{
	font-size: 44px;
}
.title h2{
	font-size: 36px;
}
.title h3{
	font-size: 34px;
}
.title h4{
	font-size: 26px;
}
.title h5{
	font-size: 21px;
}
.title span{
	color: var(--bs-primary);
}
.title p:not(.subtitle){
	margin: 0;
	margin-top: 8px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	text-transform: uppercase;
	font-size: 16px;
	color: var(--bs-primary);
	margin-bottom: 8px;
	font-weight: 500;
}

.title .description {
	font-size: 17px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid #262626;
}

.title.max-width-sm{
	max-width: 555px;
}

.title.max-width{
	max-width: 765px;
}
.title.max-width-lg{
	max-width: 992px;
}

.title p:not(.subtitle) span{
	color: inherit;
	font-size: 20px;
}

.bg-primary .title span,
.bg-primary .title .subtitle{
	color: var(--bs-white);
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 66px;
	}
	.title h2{
		font-size: 60px;
	}
	.title h3{
		font-size: 48px;
	}
	.title h4{
		font-size: 48px;
	}
	.title h5{
		font-size: 28px;
	}
	.title p:not(.subtitle){
		font-size: 18px;
		margin-top: 8px;
	}

	.title p:not(.subtitle) span{
		font-size: 22px;
	}

	.title .description {
		font-size: 19px;
	}
	.title .btn{
		margin-top: 25px;
	}

}

/* Components > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 no-repeat center;
	background-size: cover;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	font-size: 24px;
	line-height: 60px;
	text-align: center;
	background: var(--bs-primary);
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: var(--bs-primary);
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}
/*@media screen and (min-width: 1200px){

	.video-player .play{
		top: calc(50% - 28px);
		left: calc(50% - 28px);
		width: 56px;
		height: 56px;
		font-size: 24px;
		line-height: 58px;
	}
	.video-player .play i{
		margin-left: 5px;
	}
}*/

/* Components > Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 60px 0 0;
	text-align: center;
}
.pagination .screen-reader-text {
	display: none;
}
.pagination .page-numbers {
	display: inline-block;
	vertical-align: middle;
	padding: 6px 12px;
	font-size: 18px;
}
.pagination .page-numbers:hover{
	color: var(--bs-primary);
}
.pagination .page-numbers.current{
	font-weight: bold;
	color: var(--bs-primary);
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}


/* Components > Share */

.share  {
	margin: 40px 0;
    padding: 20px 0;
    border-top: solid 1px #36373A;
    border-bottom: solid 1px #36373A;
}
.share ul {
	display: flex;
	align-items: center;
	margin: 0;
}
.share ul li a{
	display: block;
	padding: 8px;
	font-size: 26px;
	color: var(--bs-primary);
}
.share ul li a:hover{
	color: var(--bs-secondary);
}

@media screen and (min-width: 992px){
	.share ul li a{
		font-size: 32px;
	}
}

/* Components > Errors */

.errors {
	text-align: center;
	padding: 30px 0;
}
.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60dvh;
}

.errors .smile {
	margin: 0;
	font-size: 50px;
	transform: rotate(90deg);
	color: var(--bs-primary);
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}



/*
	Modules
*/

/* Module > Presentation */

.presentation{
	position: relative;
	display: flex;
	align-items: center;
	height: calc(100vh - var(--header-min-height));
	min-height: 600px;
	padding: 30px 0;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
}

.presentation .slider .slide{
	display: flex;
	align-items: center;
	height: calc(100vh - var(--header-min-height));
	min-height: 600px;
	padding: 30px 0;
	background:  #eee no-repeat bottom;
	background-size: cover;
}

.presentation .title {
	max-width: 800px;
	color: var(--bs-white);
	z-index: 4;
}
.presentation .title p {
	max-width: 690px;
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	left: calc(50% - 12px);
	bottom: 20px;
	width: 24px;
	height: 33px;
	background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
	background-size: contain;
	animation: bounce 3s infinite;
	z-index: 3;
}

.presentation video{
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

/*.presentation:before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	background: linear-gradient(0deg, rgba(2, 9, 35, 0.6), rgba(2, 9, 35, 0.6)), linear-gradient(270deg, rgba(2, 9, 35, 0) 0%, rgba(2, 9, 35, 0.6) 100%);
	background-blend-mode: screen, normal;
}*/

@media screen and (min-width: 992px) {
    .presentation .title p:not(.subtitle){
    	font-size: 20px;
    }
}

@media screen and (max-width: 800px) {
	.presentation .title h1 br {
		display: none;
	}
}


/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--bs-dark);
	padding: 50px 0;
	min-height: 350px;
	overflow: hidden;
}
.banner .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.banner .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.banner .title{
	position: relative;
	max-width: 650px;
	margin: 0;
	color: var(--bs-white);
	z-index: 2;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    left: calc(50% - 10px);
    bottom: 5%;
    width: 45px;
    height: 25px;
    background: url('assets/img/icons/icon-arrow-down.svg') no-repeat center;
    background-size: contain;
    animation: bounce 3s infinite;
    z-index: 3;
}

@media screen and (min-width: 992px){
	.banner{
		min-height: 400px;
	}

	.banner .title p:not(.subtitle) {
    	font-size: 21px;
    }
}


/* Module > Tab Menu */

.module-tabs .tabs {
	min-height: 55px;
	/*box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
}
.module-tabs .tabs ul {
    margin: 0 -15px;
    padding: 0 15px;
    white-space: nowrap;
    overflow: auto;
    display: flex;
    justify-content: center;
    border-bottom: solid 1px #CACACA;
}
.module-tabs .tabs ul li a {
    display: block;
    padding: 15px 12px;
    position: relative;
}
.module-tabs .tabs ul li a.active,
.module-tabs .tabs ul li a:hover{
	color: var(--bs-primary);
}

.module-tabs .tabs ul li a:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--bs-primary);
    transition: 0.3s all;
}
.module-tabs .tabs ul li.current-menu-item a:before,
.module-tabs .tabs ul li a.active:before,
.module-tabs .tabs ul li a:hover:before{
    left: 10%;
    width: 80%;
}
.module-tabs .tabs.fixed{
	position: fixed;
	top: 70px;
	width: 100%;
	z-index: 1;
	box-shadow: 0px 5px 5px 0 rgb(0 0 0 / 0.05);
}


/* Modules > Accordion */
.module-accordion .items .item{
	position: relative;
	margin-bottom: 3px;
	border-bottom: solid 1px var(--bs-primary);
	padding: 20px 0;
}
.module-accordion .items .item .question{
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 600;
	padding-right: 50px;
}
.module-accordion .items .item .question:after {
    content: '+';
    position: absolute;
    top: calc(50% - 10px);
    right: 0px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.module-accordion .items .item .question[aria-expanded="true"]:after{
	content: '-';
}
.module-accordion .items .item .answer{
	margin-top: 15px;
}
.module-accordion .items .item .answer a {
	text-decoration: underline;
}
.module-accordion .items .item .answer a:hover {
	color: var(--bs-primary);
}
.module-accordion .items .item .answer .data {
	max-width: 980px;
}
@media screen and (min-width: 992px) {
	.module-accordion .items .item .question:after {
		right: 20px;
	}
}

/* Module > Clients */
.module-clients .swiper .swiper-slide article{
    display: flex;
    align-items: center;
    justify-content: center;
}
.module-clients .swiper .swiper-slide article img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
}
.module-clients .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  -o-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

/* Module > Contact */

.module-contact .title a{
	color: var(--bs-primary);
	text-decoration: underline;	
}


/* Modules > Image & Text */
.module-img-txt .title p {
	max-width: 650px;
}


@media (min-width: 768px){

	.module-img-txt .title{
		margin-bottom: 0;
	}

	.module-img-txt .image{
	    overflow: hidden;       
	}

  	.module-img-txt .image img{
    	width: 100%;
    	height: 100%;
    	object-fit: cover;       
    	display: block;
  	}

  	.module-img-txt .image.max-width {
  		max-width: 90%;
  		margin: 0 auto;
  	}
}


/*
	Pages
*/

/* Page > Home */

.page.home .services .image img{
	max-height: 610px;
	object-fit: cover;
}
.page.home .services .buttons .btn{
	min-width: 216px;
}

.page.home .services-items .nav li a{
	position: relative;
	display: block;
	text-align: center;
	padding: 20px 5px;
	gap: 20px;
	border-top: 6.5px solid transparent;
	transition: all 0.3s ease;
	height: 100%;
}
.page.home .services-items .nav li a:hover{
	background: #FAFAFA;
	border-top: 6.5px solid var(--bs-primary);
	box-shadow: 2.19724px 2.19724px 13.1834px rgba(0, 0, 0, 0.3);
	transform: scale(1.02);
}
.page.home .services-items .nav li a:hover h5{
	color: var(--bs-primary);
}

.page.home .services-items .nav li .title{
	position: initial;
}

.page.home .services-items .slider {
	visibility: hidden;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	margin-top: 0; 
	transition: opacity .3s ease, max-height .3s ease, margin-top .3s ease;
	
}
.page.home .services-items .slider.slider-open {
	visibility: visible;
	opacity: 1;
	max-height: 1200px;
	overflow: visible;
	margin-top: 3rem; 
	/*margin-bottom: 50px;*/
}
.page.home .services-items:has(.slider.slider-open) {
	padding-bottom: 0 !important;
}

.page.home .services-items article .title h2{
	font-size: 36px;
}
.page.home .services-items article .title h2 br{
	display: none;
}

.page.home .services-items article .title p{
	max-width: 675px;
	margin: 24px 0;
}

.page.home .services-items article .title p:has(strong){
	margin-bottom: 10px;
}

.page.home .services-items article .description ul {
	margin: 0;
	padding-left: 1.2rem;
}
.page.home .services-items article .description ul li{
	padding: 5px 0;
}
.page.home .services-items article .description ul li::marker{
	color: var(--bs-primary);
}
.page.home .services-items article .image img{
	aspect-ratio: 1.27 / 1;
	object-fit: cover;
}

.page.home .services-items .slider .arrows{
	position: absolute;
	bottom: 0;
	right: 20px;
}
.slider:has(.arrows.bottom) .swiper-pagination{
	left: 20px;
}

.slider:not(.slider-open){
	padding: 0;
}

.services-items .navigation .column {
	position: relative;
	margin-top: 80px;
}
.services-items .navigation .column .swiper-button{
	top: -25px;
}
.services-items .navigation .column .swiper-button-prev{
	left: auto; right: 80px;
}

@media screen and (min-width: 992px){
	.page.home .services-items .nav{
		justify-content: center;
	}
	.page.home .services-items .nav li a{
		padding: 20px 14px 40px 14px;
	}

	.page.home .services-items .nav li .btn{
		position: absolute;
		bottom: 35px;
		left: 50%;
		transform: translateX(-50%);
	}

	.page.home .services-items .slider .arrows{
		right: 70px;
	}
	.slider:has(.arrows.bottom) .swiper-pagination{
		left: 70px;
	}

}

.page.home .how .title p{
	max-width: 712px;
	margin-left: auto;
	margin-right: auto;
}
.page.home .how .title p:not(:has(span)){
	max-width: 665px;
}

@media screen and (min-width: 992px){
	.page.home .proposition .title h3 {
		font-size: 56px;
	}
}
@media screen and (max-width: 991.99px){
	.page.home .proposition .title br{
		display: none;
	}
}

.page.home .success .title{
	max-width: 560px;
	margin: 0 auto;
}


.page.home .who .title p{
	max-width: 736px;
	margin-left: auto;
	margin-right: auto;
}


@media screen and (max-width: 765px){
	.page.home .who .title h3 br {
		display: none;
	}
}


.page.home .story .title {
	max-width: 614px;
	/*margin-left: auto;
	margin-right: auto;*/
}

/* Pages > Contact */

.page.contact #map{
	position: relative;
	background-color: #eee;
	width: 100%;
	height: 400px;
}
.page.contact .map .maparea{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#map .leaflet-control-attribution {
    display: none;
}

/* Pages > Thanks */

.page.page-thanks .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

/* Pages > Internal */

.page.internal .content .title{
	text-align: center;
}
.page.internal .content article {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* Pages > Page 404 */

.page.page-404 .content,
.page.page-maintenance .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

.page.page-maintenance .content{
	min-height: 100vh;
}


/* Structure > Footer */

.footer a:hover{
	color: var(--bs-primary);
}

.footer .widgets{
	padding: 50px 0;
	border-top: solid 1px #383D51;
}
.footer .widgets h4{
	margin: 0;
	font-size: 15px;
	line-height: 28px;
	font-weight: 600;
	text-transform: uppercase;
}
.footer .widgets .logo{
	display: block;
	width: 212.5px;
	margin: 0 auto 30px;
}

.footer .widgets .menu{
	margin-bottom: 30px;
}
.footer .widgets .menu li a{
	display: block;
	margin-bottom: 12px;
}

.footer .copyright {
	border-top: solid 1px #383D51;
	padding-top: 32px;
	margin-top: 80px;
}
.footer .copyright p{
	margin: 0;
	font-size: 14px;
}


@media screen and (min-width: 1200px){
	.footer .container{
		padding: 0 32px;
	}
	.footer .widgets{
		padding: 80px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}
	.footer .widgets .menu {
		padding-left: 12px;
	}
	.footer .widgets .menu li{
		display: inline-block;
		font-size: 18px;
	}

	.footer .menu li.menu-contact{
		position: absolute;
		right: 85px;
		top: -2px;
	}

	.footer .widgets .menu li:not(.menu-contact) a{
		padding: 0 15px;
	}
	.footer .menu li.menu-contact a{
		padding: 7px 20px;
		color: var(--bs-white);
		background: var(--bs-primary);
		border: solid 1px var(--bs-primary);
		transition: 0.3s all;
		font-size: 16px;
		border-radius: 50px;
	}

	.footer ul.socialmedia{
		gap: 10px;
	}

	.footer ul.socialmedia li a{
		padding: 0;
	}
	
}
