/*
Theme Name: Lab Garelli Andreani
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: 65px;	

	/* Colors */
	--bs-heading-color: inherit; 

    --bs-body-color: #082879;
    --bs-body-bg: #fff;

	--bs-primary: #067ECD; 
	--bs-primary-rgb: 6,126,205; /*rgba(6, 126, 205, 1)*/

	--bs-secondary: #038FCB;
	--bs-secondary-rgb: 3,143,203; /*rgba(3, 143, 203, 1)*/

    --bs-white: #fff;

    --bs-light: #EDF0F5;
    --bs-light-rgb: 237, 240, 245; /*rgba(237, 240, 245, 1)*/

	--bs-black: #000;

    --bs-dark: #082879;
    --bs-dark-rgb: 8, 40, 121; /*rgba(8, 40, 121, 1)*/

	--bs-gray: #4B4B4B;

	/* 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: #067ECD; 
    --bs-border-radius: 24px;

}

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

	.header.fixed {
		--header-min-height: 70px;
	}
}
/* Animate */

@keyframes bounce{
	0% { transform: translate(0, 0); }
	50% { transform: translate(0, -100%); }
	100% { transform: translate(0, 0); }
}
@keyframes dropDown{
    0% {transform: scaleY(0);}
    80% {transform: scaleY(1.1);}
    100% {transform: scaleY(1);}
}
@keyframes slideInDown{
	from {transform: translate3d(0, -100%, 0);visibility: visible;}
	to {transform: translate3d(0, 0, 0);}
}
@keyframes fadeIn{
  from { opacity: 0; transform: translate3d(0, 10px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInUp{
	from { opacity: 0; transform: translate3d(0, 40px, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInLeft{
	from { opacity: 0; transform: translate3d(-40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInRight{
	from { opacity: 0; transform: translate3d(40px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes zoomInUp {
	from { opacity: 0.8; transform: scale(1.15,1.15) rotate(.01deg); }
	to { opacity: 1; transform: scale(1, 1) rotate(.01deg); }
}

@keyframes zoomIn {
	from { opacity: 0.5; transform: scale(1.05,1.05) rotate(.01deg); }
	to { opacity: 1; transform: scale(1, 1) rotate(.01deg); }
}

.wow{
	visibility: hidden;
	opacity: 0;
	animation-duration: 1s;
	animation-fill-mode: both;
	animation-timing-function: cubic-bezier(.25, .1, .25, 1);
	animation-play-state: paused;
	will-change: opacity, transform;
}
.wow.slow{
	animation-duration: 6s;
}
.wow.fadeIn{
	animation-duration: 1.3s;
	transform: translate3d(0, 8px, 0);
}
.wow.is-visible{
	visibility: visible;
	animation-play-state: running;
}

.fadeIn{ animation-name: fadeIn; }
.fadeInUp{ animation-name: fadeInUp; }
.fadeInLeft{ animation-name: fadeInLeft; }
.fadeInRight{ animation-name: fadeInRight; }
.zoomInUp{ animation-name: zoomInUp; }
.zoomIn{ animation-name: zoomIn; }

/* 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; 
}

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

/* 3. Structure */

html{
	scroll-behavior: smooth;
}

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

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

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

h1, h2, h3, h4, h5, h6{
	font-weight: 400;
	line-height: 1.1em;
}

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;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

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

/* 4. Structure > Framework */

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

.container,
.container-fluid{
	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%;
	}
}

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

/* 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{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 0;
	padding-left: 20px;
	padding-right: 40px;
	overflow: hidden;
	cursor: pointer;
	transition: all .6s cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 100px;
}

.btn:hover{
	padding-left: 40px;
	padding-right: 20px;
}

.btn::before,
.btn::after{
	content: '';
	position: absolute;
	top: 50%;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	transform: translateY(-50%);
	background-color: var(--bs-white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath fill='%23067ECD' d='M10.795 7.318H.705A.675.675 0 0 1 .2 7.113.706.706 0 0 1 0 6.6c0-.207.067-.378.2-.515a.675.675 0 0 1 .504-.205h10.09L6.246 1.231a.712.712 0 0 1-.213-.507.695.695 0 0 1 .208-.51A.663.663 0 0 1 6.738 0a.688.688 0 0 1 .5.218l5.746 5.872a.701.701 0 0 1 .216.51.696.696 0 0 1-.216.508L7.232 12.98a.684.684 0 0 1-.5.22.66.66 0 0 1-.492-.222.698.698 0 0 1-.21-.503c0-.192.07-.36.21-.504l4.555-4.653Z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 14px;
	transition: all .8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn::before{left: -30px;}
.btn::after{right: 8px;}
.btn:hover::before{left: 8px;}
.btn:hover::after{right: -30px;}

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



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

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

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

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

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

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

    --btn-arrow-color: var(--bs-white);
}

.btn.btn-outline-primary::before,
.btn.btn-outline-primary::after{
	background-color: var(--bs-primary);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath fill='%23FAFAFA' d='M10.795 7.318H.705A.675.675 0 0 1 .2 7.113.706.706 0 0 1 0 6.6c0-.207.067-.378.2-.515a.675.675 0 0 1 .504-.205h10.09L6.246 1.231a.712.712 0 0 1-.213-.507.695.695 0 0 1 .208-.51A.663.663 0 0 1 6.738 0a.688.688 0 0 1 .5.218l5.746 5.872a.701.701 0 0 1 .216.51.696.696 0 0 1-.216.508L7.232 12.98a.684.684 0 0 1-.5.22.66.66 0 0 1-.492-.222.698.698 0 0 1-.21-.503c0-.192.07-.36.21-.504l4.555-4.653Z'/%3E%3C/svg%3E");
}


.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-dark{
    --bs-btn-bg: var(--bs-dark);
    --bs-btn-color: var(--bs-white);
    --bs-btn-border-color: var(--bs-dark);

    --bs-btn-hover-bg: var(--bs-dark);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-border-color: var(--bs-dark);

    --bs-btn-active-bg: var(--bs-dark);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-dark);

    --btn-arrow-color: var(--bs-secondary);
}

.btn.btn-dark::before,
.btn.btn-dark::after{
	background-color: var(--bs-dark);
	border: solid 1px var(--bs-white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath fill='%23FAFAFA' d='M10.795 7.318H.705A.675.675 0 0 1 .2 7.113.706.706 0 0 1 0 6.6c0-.207.067-.378.2-.515a.675.675 0 0 1 .504-.205h10.09L6.246 1.231a.712.712 0 0 1-.213-.507.695.695 0 0 1 .208-.51A.663.663 0 0 1 6.738 0a.688.688 0 0 1 .5.218l5.746 5.872a.701.701 0 0 1 .216.51.696.696 0 0 1-.216.508L7.232 12.98a.684.684 0 0 1-.5.22.66.66 0 0 1-.492-.222.698.698 0 0 1-.21-.503c0-.192.07-.36.21-.504l4.555-4.653Z'/%3E%3C/svg%3E");
}

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

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

    --bs-btn-active-bg: transparent;
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-white);

    --btn-arrow-color: var(--bs-primary);
}

/** See More*/

.see-more .arrow{
	display: inline-block;
	vertical-align: middle;
	content: '';
	width: 7px;
	height: 12px;
	margin-left: 10px;
	background-color: var(--bs-dark);
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12'%3E%3Cpath d='M.877.5c.1 0 .178.03.256.108l4.944 4.945c.054.054.08.096.091.124a.315.315 0 0 1 .023.125.315.315 0 0 1-.023.124.403.403 0 0 1-.09.125l-4.97 4.969c-.077.077-.145.1-.225.096a.366.366 0 0 1-.26-.12.334.334 0 0 1-.11-.257c0-.1.03-.178.11-.256l4.68-4.681L.598 1.095C.519 1.017.497.95.5.87A.368.368 0 0 1 .622.608.333.333 0 0 1 .877.5Z'/%3E%3C/svg%3E") no-repeat center / contain;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='12' viewBox='0 0 7 12'%3E%3Cpath d='M.877.5c.1 0 .178.03.256.108l4.944 4.945c.054.054.08.096.091.124a.315.315 0 0 1 .023.125.315.315 0 0 1-.023.124.403.403 0 0 1-.09.125l-4.97 4.969c-.077.077-.145.1-.225.096a.366.366 0 0 1-.26-.12.334.334 0 0 1-.11-.257c0-.1.03-.178.11-.256l4.68-4.681L.598 1.095C.519 1.017.497.95.5.87A.368.368 0 0 1 .622.608.333.333 0 0 1 .877.5Z'/%3E%3C/svg%3E") no-repeat center / contain;
	transition: all .3s;
}
.see-more:hover .arrow{
	margin-left: 20px;
}

.see-more:hover{
	color: var(--bs-primary);
}
.see-more:hover .arrow{
	background: var(--bs-primary);
}

/* Buttons Float */

.btn-float{
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
    z-index: 9999;
    border-radius: 25px;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
}
.btn-float-edit{
	left: 30px;
	right: auto;
	bottom: 15px;
    padding: 10px 15px;
    font-weight: 500;
    color: #fff;
    background: rgba(0,0,0,0.75);
    opacity: 0.95;
}
.btn-float-edit:hover{
    background: var(--bs-primary);
    color: #fff;
}

.btn-float-whatsapp{
    width: 50px;
    height: 50px;
	border-radius: 50%;
	font-size: 32px;
    color: #fff;
    background: #25D366;
}
.btn-float-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width:768px){
	.btn-float-whatsapp{
	    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;
}


/* Cards*/
.card {
	position: relative;
	border-radius: 24px;
	box-shadow: 2px 2px 4px rgba(68, 73, 100, 0.08);
	border: none;
	padding: 20px;
}

.card a{
	position: absolute;
	inset: 0;
	z-index: 1;
}

/* Structure */

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

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

/* Structure > Header */

.header{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: #fff;
	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: 170px;
}

.header.fixed{
	position: fixed;
	background: var(--bs-white);
	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 > 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;
}
.header.active .nav-menu .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header.active .nav-menu .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header.active .nav-menu .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: var(--bs-white);
}
.header.active .navigation {
	display: block;
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 18px;
	color: var(--bs-gray);
}
.header .navigation .menu li.current-menu-item a,
.header .navigation .menu li a:hover{
	color: var(--bs-primary);
}

.header .navigation .menu li.btn a{	
	color: var(--bs-white);
	padding: 0;
}

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


@media screen and (min-width: 1200px) {

	.header .logo {
		max-width: 220.5px;
	}

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		width: 100%;
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: 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 {
		width: 100%;
		padding-right: 220.5px;
		display: flex;
        justify-content: center;
        gap: 24px;
	}

	.header .navigation .menu li:not(.btn) a {
		padding: 10px 0;
	}


	.header .navigation .menu li a {
		font-size: 16px;
	}

	.header .navigation .menu li a {
		text-align: left;
	}

	.header .navigation .menu li.btn {
		position: absolute;
		right: 0;
	}
	.header .navigation .menu li.btn a{	
		padding: 0;
	}

	/* 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.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;
	}	

}

@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 .navigation .menu li.btn{
		margin-top: 5px;
	}
}


/* Components > Forms */

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

.required{
	color: #ff0000;
}

.form-select,
.form-control{
	line-height: 1.8em;
	background: rgba(250, 250, 250, 0.1);
	border: 1px solid #FAFAFA;
	border-radius: 100px;
	color: var(--bs-white);
}

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

.form-select:focus,
.form-control:focus{
	background: rgba(1, 1, 1, 0.1);
	color: var(--bs-white);
    box-shadow: none !important;
    border-color: var(--bs-primary);
}
textarea.form-control{
	color: var(--bs-white);
	border-radius: 20px;
}

/* 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;
}


[type=search]::-webkit-search-cancel-button {
    cursor: pointer;
    filter: brightness(10)
}


/* 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);
}

/* 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: 24px;
	}
}



/* Components > Slider  */

.slider{
	position: relative;
}

.slider .swiper.overflow{
	overflow: visible;
}

/* Swiper Continuous */
.swiper[data-continuous="true"] .swiper-wrapper {
	transition-timing-function: linear !important;
}
.swiper[data-continuous="true"] .swiper-slide {
	flex-shrink: 0;
}

/*Swiper Equal height */
.swiper[data-equal-height="true"] .swiper-wrapper {
    align-items: stretch;
}
.swiper[data-equal-height="true"] .swiper-slide {
    height: auto;
    display: flex;
}

/**/

.slider:has(.swiper-pagination){
    padding-bottom: 60px;
}
.swiper-pagination {
	bottom: 0;
}
.swiper-pagination.left {
    left: 0;
    width: fit-content;
}
.swiper-pagination-bullet{
	background: var(--bs-dark);
	opacity: 0.2;
}
.swiper-pagination-bullet-active {
	opacity: 1;
}
.swiper-button-next,
.swiper-button-prev{
	position: absolute;
	width: 48px;
	height: 48px;
    color: var(--bs-dark);
    background: transparent;
}

.swiper-button-next svg,
.swiper-button-prev svg{
    display: none;
}

.swiper-button-prev::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: currentColor;

	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M12.008 4.687c.085 0 .159.026.241.108a.337.337 0 0 1 .108.249c0 .087-.026.16-.108.243l-6.361 6.361h13.41c.121 0 .197.036.26.1a.322.322 0 0 1 .097.252c0 .12-.034.192-.096.253a.339.339 0 0 1-.261.099H5.888l6.355 6.355c.082.081.11.158.111.25v.001a.301.301 0 0 1-.055.185l-.052.061a.31.31 0 0 1-.242.107.344.344 0 0 1-.256-.114L4.801 12.25a.416.416 0 0 1-.091-.125v-.001a.316.316 0 0 1-.023-.124c0-.048.008-.087.023-.122v-.001a.41.41 0 0 1 .09-.125l6.951-6.95a.348.348 0 0 1 .257-.114Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;

	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M12.008 4.687c.085 0 .159.026.241.108a.337.337 0 0 1 .108.249c0 .087-.026.16-.108.243l-6.361 6.361h13.41c.121 0 .197.036.26.1a.322.322 0 0 1 .097.252c0 .12-.034.192-.096.253a.339.339 0 0 1-.261.099H5.888l6.355 6.355c.082.081.11.158.111.25v.001a.301.301 0 0 1-.055.185l-.052.061a.31.31 0 0 1-.242.107.344.344 0 0 1-.256-.114L4.801 12.25a.416.416 0 0 1-.091-.125v-.001a.316.316 0 0 1-.023-.124c0-.048.008-.087.023-.122v-.001a.41.41 0 0 1 .09-.125l6.951-6.95a.348.348 0 0 1 .257-.114Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;
}
.swiper-button-next::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: currentColor;

	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M11.995 4.69c.071 0 .133.017.195.06l.061.053 6.948 6.948a.414.414 0 0 1 .091.125v.001a.314.314 0 0 1 .024.124.31.31 0 0 1-.024.122v.001a.41.41 0 0 1-.09.125l-6.955 6.948c-.091.09-.17.117-.253.117-.08 0-.153-.025-.236-.11l-.005-.006-.052-.06a.3.3 0 0 1-.056-.183c0-.065.014-.122.056-.182l.052-.06 6.361-6.361H4.702c-.122 0-.194-.036-.255-.096-.062-.061-.096-.134-.096-.256s.034-.195.095-.256h.001c.06-.06.133-.095.255-.096h13.41l-6.355-6.355a.347.347 0 0 1-.106-.185l-.005-.067c-.001-.09.025-.164.105-.244l.001-.001a.313.313 0 0 1 .243-.107Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;

	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill='%23050A45' stroke='%23050A45' d='M11.995 4.69c.071 0 .133.017.195.06l.061.053 6.948 6.948a.414.414 0 0 1 .091.125v.001a.314.314 0 0 1 .024.124.31.31 0 0 1-.024.122v.001a.41.41 0 0 1-.09.125l-6.955 6.948c-.091.09-.17.117-.253.117-.08 0-.153-.025-.236-.11l-.005-.006-.052-.06a.3.3 0 0 1-.056-.183c0-.065.014-.122.056-.182l.052-.06 6.361-6.361H4.702c-.122 0-.194-.036-.255-.096-.062-.061-.096-.134-.096-.256s.034-.195.095-.256h.001c.06-.06.133-.095.255-.096h13.41l-6.355-6.355a.347.347 0 0 1-.106-.185l-.005-.067c-.001-.09.025-.164.105-.244l.001-.001a.313.313 0 0 1 .243-.107Z'/%3E%3C/svg%3E")
		no-repeat center / 24px 24px;
}

.circle.swiper-button-next,
.circle.swiper-button-prev{
	background-color: var(--bs-white);
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
    background-size: 12px 20px;
}

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

.swiper-button-next.bottom,
.swiper-button-prev.bottom{
    top: auto;
    bottom: 0;
}
.swiper-button-prev.bottom {
    left: auto;
    right: 60px;
}
:is(.bg-dark, .bg-primary) :is(.circle.swiper-button-next, .circle.swiper-button-prev) {
	color: var(--bs-white);
	border-color: var(--bs-white);
	background: var(--bs-dark);
}
:is(.bg-dark, .bg-primary) :is(.circle.swiper-button-next:hover, .circle.swiper-button-prev:hover) {
	background: var(--bs-white);
	border-color: var(--bs-white);	
}
.bg-primary :is(.circle.swiper-button-next:hover, .circle.swiper-button-prev:hover) {
	color: var(--bs-primary);
}
.bg-dark :is(.circle.swiper-button-next:hover, .circle.swiper-button-prev:hover) {
	color: var(--bs-dark);
}

:is(.bg-dark, .bg-primary) .swiper-pagination-bullet {
	background: var(--bs-white);
}


/* 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: 30px;
}
.title h2{
	font-size: 28px;
}
.title h3{
	font-size: 28px;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}
.title p:not(.ssubtitle){
	margin: 0;
	margin-top: 8px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	margin: 0;
	text-transform: uppercase;
	font-size: 16px;
	margin-bottom: 12px;
}

.title .description {
	font-size: 17px;
}
.title.lined{
	padding-bottom: 15px;
	border-bottom: 1px solid var(--bs-dark);
}
.title.max-width{
	max-width: 500px;
}
.title.max-width-md{
	max-width: 570px;
}
.title.max-width-lg{
	max-width: 992px;
}

.fs-18{
	font-size: 17px !important;
}
.fs-16{
	font-size: 16px !important;
}
@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 52px;
	}
	.title h2{
		font-size: 42px;
	}
	.title h3{
		font-size: 42px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p{
		font-size: 20px;
		margin-top: 24px;
	}
	.title p.pretitle{
		margin-top: 0;
		margin-bottom: 16px;
	}

	.title .description {
		font-size: 20px;
	}
	.title .btn{
		margin-top: 40px;
	}
	.fs-18{
		font-size: 18px !important;
	}
}

/* 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;
}


/* 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 */

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

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



/*
	Modules
*/

/* Module > Presentation */

.presentation .slider .slide{
	position: relative;
	display: flex;
	align-items: center;
	height: calc(100svh - var(--header-min-height));
	min-height: 600px;
	padding: 30px 0;
	background: var(--bs-dark) no-repeat bottom;
	background-size: cover;
}
.presentation .slider .slide .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.presentation .slider .slide .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.presentation .container{
	position: relative;
	z-index: 2;
}

.presentation .title {
	max-width: 680px;
	color: var(--bs-white);
}
.presentation .title p{
	max-width: 600px;
}

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

.presentation .swiper-button-prev, 
.presentation .swiper-button-next {
	border:none;
}
.presentation .swiper-button-prev {left: 8px;}
.presentation .swiper-button-next {right: 8px;}

.presentation .slider{
	padding-bottom: 0;
}
.presentation .swiper-pagination{
	bottom: 20px;
}
.presentation .swiper-pagination-bullet{
	background: var(--bs-white);
}

@media screen and (min-width: 992px) {
	.presentation .slider .slide{
		max-height: 855px;
		padding: 50px 0;
	}
	.presentation .arrow-down{
		left: 70px;
		bottom: 50px;
	}
	.presentation .swiper-pagination{
		bottom: 80px;
	}
}

@media screen and (max-width: 576px) {
	.presentation .swiper-button-prev, 
	.presentation .swiper-button-next {
		display: none;
	}
}



/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	background-color: var(--bs-dark);
	padding: 50px 0;
	min-height: 350px;
	height: calc(100svh - var(--header-min-height));
	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;
	color: var(--bs-white);
	z-index: 2;
}

.banner .arrow-down{
    display: block;
    position: absolute;
    left: 20px;
    bottom: 20px;
    width: 35px;
    height: 38px;
    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;
    }

	.banner .arrow-down{
	    left: 70px;
	}
}


/* 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);
}


/* Module > Indications */
.module-indications{
	min-height: 500px;
	align-content: center;
}
.module-indications .title {
	max-width: 620px;
}
.module-indications .title h3{
	max-width: 500px;
	margin: 0 auto;
}

@media screen and (min-width: 992px) {
	.module-indications{
		min-height: 650px;
	}
	.module-indications .title .btn{
		margin-top: 80px;
	}
}

/* Modules > Faqs */

.module-accordion .items{

}
.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: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 > Contact */

.module-contact .vias .card{
	text-align: center;
	transition: all 0.3s ease;
}

.module-contact .vias .card h4{
	font-size: 16px;
	text-transform: uppercase;
	color: var(--bs-primary);
}

.module-contact .vias .card:hover{
	background: var(--bs-dark);
	color: var(--bs-white);
}
.module-contact .vias .card:hover h4{
	color: var(--bs-white);
}

.page.contact .module-contact .vias .card:hover{
	background: var(--bs-primary);
}
.page.contact  .module-contact .vias .card:hover .icon img{
	filter: brightness(0) saturate(100%) invert(13%) sepia(98%) saturate(3069%) hue-rotate(208deg) brightness(82%) contrast(102%);

}



/* Module > Coverage */

.module-coverage .swiper {
	align-items: center;
}
.module-coverage .swiper .swiper-slide article{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

@media screen and (max-width: 576px) {
	.module-coverage .swiper-button-prev, 
	.module-coverage .swiper-button-next {
		display: none;
	}

	.module-coverage .swiper-pagination{
		width: 100%;
		text-align: center;
	}

	.module-coverage .swiper .swiper-slide article{
		min-height: 80px;
	}
}


/*
	Pages
*/


/* Page > Home */

.page.home .links .items .card{
	height: 262px;
	background: linear-gradient(0deg, rgba(18, 89, 204, 0.4), rgba(18, 89, 204, 0.4)), #082879;
	background-blend-mode: multiply, normal;
	color: var(--bs-white);
	justify-content: space-between;
	transition: all 0.3s ease;
}
.page.home .links .items .card .icon{
	text-align: right;
}
.page.home .links .items .card h2{
	font-size: 18px;
}
.page.home .links .items .card:hover{
	background: var(--bs-primary);
	transform: translateY(-2px);
}

.page.home .links .items .card:hover .icon img{
	filter: brightness(0) saturate(100%) invert(15%) sepia(68%) saturate(2472%) hue-rotate(213deg) brightness(78%) contrast(108%);
}

@media screen and (min-width: 992px) {
	.page.home .links .items .card h2{
		font-size: 24px;
	}
}

@media screen and (max-width: 576px) {
	.page.home .feed-services article .image img{
		aspect-ratio: 0.75 / 1;
		object-fit: cover;
	}
}

/* Page > About */

.page.about .banner .title{
	max-width: 670px;
}

.page.about .values .items article h4{
	font-size: 32px;
}

.page.about .facilities .title{
	max-width: 620px;
}

.page.about .facilities .title p{
	max-width: 520px;
}

/* Page > Indications */
.page.indications .index {
	color: var(--bs-primary);
	text-transform: uppercase;
	font-size: 20px;
}

.page.indications .alphabet-items{
	display: flex;
	gap: 18px;
}
.page.indications .alphabet-items a:hover{
	text-decoration: underline;
	text-underline-offset: 5px;
}

.page.indications .letter-title{
	color: var(--bs-primary);
	font-size: 32px;
}

/* Pages > Contact */

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

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

@media screen and (min-width: 992px){
	#map{
		height: 600px;
	}
}

/* Pages > Thanks */

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

/* 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;
	min-height: 80svh;
}

.page.page-404 .content .number{
	font-size: 300px;
}
.page.page-404 .content .title h1{
	font-size: 32px;
}
.page.page-404 .content .title p{
	max-width: 610px;
}

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


/*
	CPT Feed
*/

/* Feed > General */

.feed article{
	position: relative;
}
.feed article a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.feed article .thumbnail{
	display: block;
	aspect-ratio: 1.6 / 1;
	width: 100%;
	height: 100%;
	background-color: #eee;
	overflow: hidden;
}
.feed article .thumbnail img{
	aspect-ratio: 1.6 / 1;
	object-fit: cover;
	width: 100%;
	transition: 0.3s all;
}
.feed article:hover .thumbnail img{
    transform: scale(1.1);
}

/* Feed > Services */

.feed-services article{
	position: relative;
	border-radius: 24px;
	overflow: hidden;
}
.feed-services article::before{
	content: '';
	position: absolute;
	inset: 0;
	transition: all 0.3s ease;
	z-index: 1;
	background-color: transparent;
}
.feed-services article:hover::before{
	background-color: rgb(22 32 91 / 40%);
}
.feed-services article a{
	position: absolute;
	inset: 0;
	z-index:4;
}
.feed-services article .data{
	position: absolute;
	inset: 0;
	color: var(--bs-white);
	padding: 24px;
	align-content: end;
	z-index: 3;
}
.feed-services article .image img{
	aspect-ratio: 0.92 / 1;
	object-fit: cover;
}

.feed-services article .data h2{
	font-size: 21px;
}
.feed-services article:hover .btn{
	padding-left: 40px;
	padding-right: 20px;
}
.feed-services article:hover .btn::before{left: 8px;}
.feed-services article:hover .btn::after{right: -30px;}

@media screen and (min-width: 992px) {
	.feed-services article .data h2{
		font-size: 32px;
	}
	.feed-services article .data p{
		font-size: 20px;
	}
}

/* Feed > Indications */
.feed-indications article {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background: #FAFAFA;
	box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
	transition: all 0.3s ease;
}
.feed-indications article .title h2{
	font-size: 24px;
	color: var(--bs-primary);
}
.feed-indications article:hover{
	background: var(--bs-primary);
	color: var(--bs-white);
}
.feed-indications article:hover h2{
	color: var(--bs-white);
}


.feed-indications article:hover .see-more .arrow{
	background: var(--bs-white);
}

/* Single > Indications */


@media screen and (min-width:992px){
	.single.indications .content .title {
		max-width: 70%;
	}
}
.single.indications .content table  tbody tr:nth-of-type(even) {
	background-color: #fff;
}
.single.indications .content table  tbody tr:nth-of-type(odd) {
	background-color: #EDF0F5;
}

.single.indications .content table tbody td {
	padding: 15px;
	width: auto !important;
	color: #004883;
}

.single.indications .content article table img,
.single.portfolio .content article table img {
	display: none;
}



/* Structure > Footer */
.footer {
	font-size: 14px;
}

.footer .widgets{
	padding: 50px 0;
	text-align: center;
}
.footer .widgets h4{
	color: var(--bs-primary);
	margin: 0;
	font-size: 14px;
	line-height: 14px;
	font-weight: 400;
	text-transform: uppercase;
}
.footer .widgets .logo{
	display: block;
	min-width: 230px;
	width: 230px;
	margin: 0 auto 30px;
}

.footer .widgets .menu{
	position: relative;
	margin: 0 0 30px;
	font-size: 16px;
}
.footer .widgets .menu li:not(.btn) a{
	display: block;
	padding: 3px;
}

.footer .widgets .menu li:not(.btn) a:hover{
	color: var(--bs-primary);
}

.footer .widgets .menu .btn {
	margin-top: 12px;
}
.footer .widgets .row.border-top {
	padding: 40px 0;
}


@media screen and (min-width: 992px){
	.footer .widgets{
		padding: 80px 0 40px 0;
	}
}

@media screen and (min-width: 1200px){
	.footer .widgets{
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0;
	}

	.footer .widgets .menu {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 48px;
		width: 100%;
		padding-right: 230px;
		margin: 0;
	}

	.footer .widgets .menu .btn {
		position: absolute;
		right: 0;
		margin-top: 0;
	}
}


/* Extras */
