/*
Theme Name: MDG
Theme URI: https://dev-site.ar/marugarcia/
Version: 1.0
Author: @marugarcia
Author URI: https://dev-site.ar/marugarcia/
*/

:root{
   
	/* Defaults */
	--header-min-height: 65px;
	--header-fixed-min-height: 65px;

	/* Colors */
    --bs-body-color: #03446D;
    --bs-body-bg: #FFF; 

    --bs-primary: #126294; 
    --bs-secondary: #126294; 

    --bs-gray: #f5f5f5;
    --bs-light: #F8F8F8; 
    --bs-dark: #1A1C41;

    --bs-light-rgb: 238, 243, 244;

    --bs-white: #fff;

	/* 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-color: #5C0018;
    --bs-border-radius: 20px;

	/* BS Form */
    --bs-box-shadow: none;
}

@media screen and (min-width:992px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 72px;
	}
}



* {
	scroll-margin-top: 100px;
}

/* Animations */

/* Utilities */

.text-body{
	color: var(--bs-body) !important;
}
.text-light{
	color: #fff !important;
}
.text-primary, .has-primary-color{ 
	color: var(--bs-primary) !important; 
}
.text-secondary, .has-secondary-color{ 
	color: var(--bs-secondary) !important; 
}

.bg-primary, 
.has-primary-background-color{ 
	background: var(--bs-primary) !important; 
}

.bg-secondary, 
.has-secondary-background-color{ 
	background: var(--bs-secondary) !important; 
}


.bg-white, 
.has-white-background-color{
	background: var(--bs-white) !important; 
}

.bg-dark,
.has-dark-background-color{
	background: var(--bs-dark) !important; 
}

.bg-black, 
.has-black-background-color{
	background: var(--bs-black) !important; 
}

.bg-gray{
	background: var(--bs-gray) !important;
}

/* 3. Structure */

html{
	scroll-behavior: smooth;
}

body{
	font-size: 16px;
	font-weight: 400;
	 font-family: "Helvetica", sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}


a{
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}
/*a:hover{
	text-decoration: underline;
}*/


h1, h2, h3, h4, h5, h6{
	font-weight: 700;
	line-height: 1em;
}

b, strong {
    font-weight: 600;
}


/* 4. Structure > Framework */

.main {
	width: 100%;
	min-height: 80vh;
	overflow: hidden;
}

.container{
	width: 100%;
	max-width: 100%;
}
.container{
	max-width: 1600px;
}
.container-fluid{
	max-width: 1920px;
}

/*
[class^="col-"]{
	padding-left: 15px;
	padding-right: 15px;
}*/

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
	.col-md-7-2 {
        width: calc(100% / 7); 
        flex: 0 0 calc(100% / 7);
        max-width: calc(100% / 7);
    }
}


@media screen and (min-width: 1440px){
	.container,
	.container-fluid{
		padding: 0 70px;
	}
}

/* Structure > extras */

.overh{
	overflow: hidden;
}


/* Keyframes */
@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);
	}          
}

@keyframes dropDown {
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}


@keyframes fadeInUp {
  from { opacity: 0; -webkit-transform: translate3d(0, 20%, 0); transform: translate3d(0, 20%, 0);}
  to {opacity: 1;  -webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0); }
}
@keyframes fadeInLeft {
  from {opacity: 0;-webkit-transform: translate3d(-20%, 0, 0);transform: translate3d(-20%, 0, 0);}
  to { opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}

@keyframes fadeInRight {
  from {opacity: 0;-webkit-transform: translate3d(20%, 0, 0);transform: translate3d(20%, 0, 0);}
  to {opacity: 1;-webkit-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);}
}

/* Components > buttons */

.btn{	
	--bs-btn-padding-x: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 400;
	--bs-btn-border-radius: 100px;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

@media screen and (max-width: 576px){
	.btn-block-mobile{
		width: 100%;
	}
}


/* */
/* See More */
.see-more{
	display: inline-flex;
	font-weight: 600;
	align-items: center;
}
.see-more:after{
	content: '';
	display: inline-flex;
	width: 22px;
	height: 13px;
	background-image: url("data:image/svg+xml,%3Csvg width='22' height='13' viewBox='0 0 22 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.8103 0.894531L14.77 1.90299L19.1837 6.18147H0V7.60772H19.1835L14.77 11.8861L15.8103 12.8945L22 6.89453L15.8103 0.894531Z' fill='%2303446D'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	background-size: contain;
	margin-left: 10px;
	transition: margin 0.3s ease;
}

article:hover .see-more,
.see-more:hover{
	color: var(--bs-primary);
}
article:hover .see-more:after,
.see-more:hover:after{
	margin-left: 14px; 
	filter: brightness(0) saturate(100%) invert(30%) sepia(92%) saturate(458%) hue-rotate(159deg) brightness(94%) contrast(99%);
}


/* Btn Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    line-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;
	    line-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;
}



/* 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: 20px;
	height: 20px;
	padding: 0;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
}

.modal .btn-close:hover{
	opacity: 1;
}

.modal .btn-close:focus{
	outline: none;
	box-shadow: none;
}

@media screen and (min-width: 992px) {
	.modal .btn-close{
		top: 0;
		right: -40px;
	}
}

#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);
}

@media screen and (min-width: 992px) {
	#modalVideo .btn-close{
		top: 0;
		right: -40px;
	}
}

/* Components > Socialmedia */

.socialmedia h4{
	font-size: 18px;
	line-height: 24px;
}

ul.socialmedia,
.socialmedia ul{
	display: inline-flex !important;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 0;
}

.socialmedia li{
	display: inline-block;
	vertical-align: middle;
}
.socialmedia li a{
	display: block;
	font-size: 26px;
}
.socialmedia li a:hover{
	color: var(--bs-primary);
}

@media screen and (min-width: 992px){	
	.socialmedia{
		justify-content: flex-start;
	}
	.socialmedia li a{
		font-size: 21px;
	}
}



/* Components > Sliders */

/* Slider */

.slider {
	position: relative;
}
.slider .dots {
	position: absolute;
	width: 100%;
	z-index: 10;
	bottom: 40px;
}
.slider .dots .slick-dots { width: 100%; padding: 0; margin: 0; text-align: center; }
.slider .dots .slick-dots li { display: inline-block; vertical-align: top; margin: 10px 6px; }
.slider .dots .slick-dots li button{
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
	text-indent: -9999px;
	background: #A8D9E9;
	border: none;
	border-radius: 50%;
	overflow: hidden;
	-webkit-appearance: none;
	cursor: pointer;
	opacity: 1;
}
.slider .dots .slick-dots li.slick-active button { 
	background: #0096DC; 
	opacity: 1;
}


@media screen and (min-width: 992px){
	.slider .dots .slick-dots li button{
		width: 10px;
		height: 10px;
	}
}

.slider .arrows button {
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	width: 16px;
	height: 34px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
	z-index: 3;
	opacity: 1;
}
.slider .arrows button:hover {
	opacity: 1;
}
.slider .arrows button:focus {
	outline: 0;
}
.slider .arrows button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/img/icons/icon-arrow-back.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows button.slick-next {
	left: auto;
	right: 0;
}
.slider .arrows button.slick-next:after{
	background-image: url('assets/img/icons/icon-arrow-next.svg');
}

@media screen and (min-width: 768px) {
	.slider .arrows button {
		width: 17px;
		height: 34px;
	}
	.slider .arrows button {
		top: calc(50% - 20px);
	}		
}


.slider .arrows.circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
}
.slider .arrows.circle button{
	top: -50px;
	left: 0;
	width: 40px;
	height: 40px;
}

.slider .arrows.circle button:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('assets/img/icons/icon-arrow-circle-back.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows.circle button.slick-next {
	right: 0;
	left: auto;
}
.slider .arrows.circle button.slick-next:after{
	background-image: url('assets/img/icons/icon-arrow-circle-next.svg');
}

@media screen and (min-width: 992px) {
	
	.slider .arrows.circle button{
		top: -80px;
		left: auto;
		right: 60px;
	}
	.slider .arrows.circle button.slick-next {
		right: 0;
	}
}
/* Components > 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);
}



/* Components > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}


.title h1{
	font-size: 42px;
	margin-bottom: 15px;
	font-weight: 400;
}
.title h2{
	font-size: 38px;
	margin-bottom: 15px;
}
.title h3{
	font-size: 36px;
	margin-bottom: 15px;
}
.title h4{
	font-size: 26px;
}
.title span{
	color: var(--bs-primary);
}
.title p{
	margin: 0;
	margin-top: 16px;
}
.title .description {
	font-size: 18px;
}

.title.max-width{
	max-width: 780px;
}
.title.max-width-lg{
	max-width: 740px;
}

.title.max-width-xl{
	max-width: 850px;
}

.title .btn {
	margin-top: 15px;
}

.title.d-lg-flex .description{
	max-width: 470px;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 72px;
	}
	.title h2{
		font-size: 52px;
	}
	.title h3{
		font-size: 44px;
	}
	.title p.subtitle{
		font-size: 24px;
	}

	.title .btn {
		margin-top: 35px;
	}
	.title .description {
		font-size: 21px;
	}

}

/* Components > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 25% 0;
	background: #000 no-repeat center;
	background-size: cover;
	border-radius: 20px;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	width: 60px;
	height: 60px;
	font-size: 22px;
	line-height: 60px;
	text-align: center;
	background: var(--bs-light);
	color: #000;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	mix-blend-mode: lighten;
}

.video-player:hover .play,
.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: 992px){

	.video-player .play{
		top: calc(50% - 42px);
		left: calc(50% - 42px);
		width: 85px;
		height: 85px;
		font-size: 38px;
		line-height: 85px;
	}
}


/* 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;
	}
}


/* Structure */

.section{
	position: relative;
	padding: 50px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}
}

.section.corner:before{
	position: absolute;
    top: 0;
    left: 0;
    content: '';
    height: 0px;
    width: 0;
    border-top: 320px solid #000;
    border-right: 475px solid transparent;
    border-left: 0;
    border-bottom: 0;
}
.section.corner.secondary:before{
    border-top: 320px solid rgba(165, 209, 123, 0.2);
}
.section.corner.primary:before{
    border-top: 320px solid rgba(168, 217, 233, 0.3);
}



/* Structure > Header */

/* Header */

.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);	
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 220px;
}

.header.fixed{
	background: #fff;
	position: fixed;
	min-height: var(--header-fixed-min-height);
	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;
}

.header.active{
	background: #fff;
}
.header.active .logo,
.header.fixed .logo {
	background: url('assets/img/logo-color.png') no-repeat left center;
    background-size: contain;
}
.header.active .logo img,
.header.fixed .logo img{
	opacity: 0;
}

.header:not(.fixed):not(.active) {
	border-bottom: solid 1px #fff;
}
.header:not(.fixed):not(.active) li a {
	color: #fff;
}

/* 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-body-color);
	transition: 0.3s;
	border-radius: 6px;
}
.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header:not(.fixed):not(.active) .nav-menu .menu-line {
	background: #fff;
}

.header .navigation {
	display: none;
	position: absolute;
	top: var(--header-min-height);
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: #fff;
}
.header .navigation.active {
	display: block;
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 16px;
}

.header .navigation ul li.menu-contact a{
	display: inline-block;
    padding: 5px 19px;
    text-align: center;
    background: var(--bs-body-color);
    border: 1px solid var(--bs-body-color);
    color: #fff;
    border-radius: 100px;
}
.header .navigation ul li.menu-contact a:hover{
    background: transparent;
    text-decoration: none;
    background: var(--bs-primary);
    border-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 .menu li .sub-menu li a{
	text-transform: uppercase;
}

.header .navigation .menu-item-has-children > a:after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M7.3977 7.66292C7.17802 7.88259 6.82192 7.88259 6.60225 7.66292L0.867387 1.92804C0.64772 1.70837 0.64772 1.35227 0.867387 1.13259L1.13256 0.867393C1.35222 0.647718 1.70838 0.647718 1.92805 0.867393L6.99997 5.93934L12.0719 0.867393C12.2916 0.647718 12.6477 0.647718 12.8674 0.867393L13.1326 1.13259C13.3522 1.35227 13.3522 1.70837 13.1326 1.92804L7.3977 7.66292Z' fill='%23000'/%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	filter: brightness(0) saturate(100%) invert(17%) sepia(35%) saturate(3630%) hue-rotate(182deg) brightness(97%) contrast(98%);
	/*filter: invert(16%) sepia(19%) saturate(7031%) hue-rotate(319deg) brightness(74%) contrast(119%);
	*/
	background-size: contain;
    margin-left: 4px;
    background-position: center center;    
    transition: transform 0.3s;
}

.header:not(.fixed):not(.active) .navigation .menu-item-has-children > a:after{
	filter: invert(1);
}

@media screen and (min-width: 1200px) {

	.header .logo {
		max-width: 220px;
	}

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		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 > li a {
		padding: 10px 14px;
		position: relative;
	}

	.header .navigation .menu {
		margin-right: 16px;
	}
	.header .navigation .menu li a {
		text-align: left;
	}

	.header .navigation .menu li:not(.menu-contact) a:before{
		content: '';
		position: absolute;
		bottom: 0;
		left: 50%;
		width: 0;
		height: 1px;
		background: var(--bs-body-color);
		transition: 0.3s all;
	}
	.header .navigation .menu > li:not(.menu-contact).active >  a:before,
    .header .navigation .menu > li:not(.menu-contact).current-menu-item > a:before,
    .header .navigation .menu > li:not(.menu-contact) > a:hover:before{
		left: 10%;
		width: 80%;
	}

	.header:not(.fixed):not(.active) .navigation .menu li:not(.menu-contact) a:before{
		background: #fff;
	}

	.header .navigation ul li.menu-contact a {
		margin-left: 5px;
	}

	/* Submenu */
	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: 44px;
		left: -25px;
		width: 160px;
		padding: 5px 10px;
		background: #fff;
		color: var(--bs-body-color);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
		animation: dropDown 300ms ease-in-out forwards;
    	transform-origin: top center;
    	border-radius: 0 0 12px 12px;
	}
	.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: 5px 0px;
		font-size: 14px;
		color: var(--bs-body-color);
		border-bottom: solid 1px#F8F8F8;
	}
	
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{
		color: var(--bs-primary);
		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;
	}
}

@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: #fff;
	}

	.header .navigation ul li.menu-contact a{
		margin-top: 12px;
	}
	
}


/*
	Modules
*/

/* Module > Presentation */
.presentation{
	position: relative;
	display: flex;
	align-items: center;
	background: var(--bs-primary) no-repeat center;
	background-size: cover;	
	height: 100dvh;
	color: #fff;
	font-weight: 400;
}
.presentation .title{
	position: relative;
	max-width: 760px;
	z-index: 2;
}
.presentation .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.presentation .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.presentation .arrow-down{
	display: block;
	position: absolute;
	left: calc(50% - 20px);
	bottom: 0;
	width: 21px;
	height: 36px;
	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) {	
	.presentation .title p {
		font-size: 18px;
	}
	.presentation .title .subtitle{
		font-size: 30px;
	}

	.presentation .arrow-down{
		bottom: 50px;
	}
}

/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	background: var(--bs-primary) no-repeat center;
	background-size: cover;	
	height: 100dvh;
}

.banner .title{
	position: relative;
	max-width: 580px;
	margin: 0;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    bottom: 5%;
    width: 100%;
    max-width: 1460px;
    margin: 0 auto;
    height: 37px;
    background: url('assets/img/icons/icon-arrow-down.svg') no-repeat left center;
    background-size: contain;
    animation: bounce 3s infinite;
}





/* Page > Home */
.page.home .services .items article{
	padding: 32px 24px;
	min-height: 305px;
	background: #FFF;
	box-shadow: -1px 4px 12px 6px rgba(0, 0, 0, 0.04);
	border-radius: 8px;
}
.page.home .brands .image.rounded img{
	border-radius: 12px;
	aspect-ratio: 1.4 / 1;
	object-fit: cover;
}
@media screen and (min-width: 992px){
	.page.home .brands .image.rounded img{
		aspect-ratio: 0.9 / 1;
	}

	.page.home .brands .title p {
		font-size: 18px;
	}
}	


/* 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 {
	position: relative;
}
.footer a:hover{
	text-decoration: underline;
}
.footer .widgets{
	padding: 30px 0;
	text-align: center;
	font-size: 14px;
}

.footer .widgets .logo{
	display: block;
	width: 187px;
	margin: 0 auto 30px;
}

.footer .copyright {
	border-top: solid 1px #fff;
	padding-top: 30px;
	margin-top: 30px;
}
.footer .copyright p{
	margin: 0;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 50px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}
	
	.footer .menu{
		display: inline-flex;
		align-items: center;
		gap: 20px;
		margin-right: 20px;
	}
}



/* Form */


label{
	font-size: 14px;
	width: 100%;
}

label span {
	width: 70%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	background: transparent;
	border: none;
	border: solid 1px #3A398B;
	border-radius: 30px !important;
	padding: 8px 16px;
	width: 100%;
	font-size: 18px;
	color: #3A398B;
	margin-bottom: 10px;
}

.wpcf7-spinner {
	display: block;
}

form p:has(textarea) {
	width: 100%;
}

input.wpcf7-submit {
    border: 2px solid var(--bs-primary);
    border-radius: 50px;
    background: var(--bs-primary);
    color: rgb(255 255 255);
    line-height: 1;
    padding: 10px 50px;

}

input.wpcf7-submit:hover{
	border-color:  var(--bs-body-color);
	color: var(--bs-body-color);
	background: #FFF;
}

@media screen and (min-width: 992px){
	form{
		display: flex;
		flex-wrap: wrap;
		gap: 0 20px;
	}
	form p:has(.col-md-6) {
	    width: 48%;
	    flex: 0 0 auto;
	}

}