/*
Theme Name: Dante Alighieri
Theme URI: dev-site.ar/dante
Version: 1.0
Author: @marugarcia
Author URI: maru.garciam@gmail.com

*/

/***/
.btn-edit-page{
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 99999;
    
    background: #000;
    color: #fff;
    padding: 10px 14px;
    border-radius: 50px;
    
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    
    display: flex;
    align-items: center;
    gap: 6px;

    box-shadow: 0 5px 20px rgba(0,0,0,.2);
    transition: .2s;
}

.btn-edit-page:hover{
    transform: translateY(-2px);
    background: #333;
     color: #fff;
}

:root,
[data-bs-theme=light]{

	/* Defaults */
	--header-min-height: 65px;	

	/* Colors */
	--bs-heading-color: inherit; /* H1, H2 colors */

    --bs-body-color: #111827;
    --bs-body-bg: #fff;
    --bs-emphasis-color: #4B5563;

    --bs-primary:  #5AB6EB;
	--bs-primary-rgb: 90,182,235; 


    --bs-secondary: #EFD948; 
	--bs-secondary-rgb: 239,217,72; 

    --bs-white: #fff;

    --bs-light: #FCF9E0;
    --bs-light-rgb: 252,249,224;


    --bs-dark: #191919;
    --bs-dark-rgb: 25,25,25;


    --bs-black: #000;

	--bs-gray: #cacaca; 

	/* 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;
}



@media screen and (min-width:1200px){
	:root,
	[data-bs-theme=light]{
		--header-min-height: 72px;
		--header-fixed-min-height: 72px;
	}
}

html{
	scroll-behavior: smooth;
}

body {
	font-size: 16px;
	font-weight: 400;
	font-family: "Open Sans", sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
	font-variation-settings: "wdth" 75;
}

body:has(.header.fixed){
	padding-top: var(--header-min-height);
}

@media screen and (min-width:992px){
	body {
		font-size: 18px;
	}
}

/* Animate */

@keyframes dropDown{
    0% {transform: scaleY(0);}
    80% {transform: scaleY(1.1);}
    100% {transform: scaleY(1);}
}
@keyframes bounce{
	0% { transform: translate(0, 0); }
	50% { transform: translate(0, -100%); }
	100% { transform: translate(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); }
}

.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.fadeIn {
	animation-duration: 1.3s;
	transform: translate3d(0, 8px, 0);
}
.wow.is-visible{
	visibility: visible;
	animation-play-state: running;
}

.fadeIn { animation-name: fadeIn; }
.fadeInRight { animation-name: fadeInRight; }
.fadeInUp { animation-name: fadeInUp; }
.fadeInLeft { animation-name: fadeInLeft; }

.overh {
	overflow: hidden;
}

*:focus {
	outline: none !important;
}

a,
a:hover,
a:focus {
	color: inherit;
	text-decoration: none;
	transition: 0.3s all;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Roboto Slab", serif;
	font-weight: 400;
	line-height: 1.2em;
	/*letter-spacing: -0.03em;*/
}

h1 { font-size: 30px; }
h2 { font-size: 24px; }
h3 { font-size: 30px; }
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: 24px; }
	h3 { font-size: 30px; }
	h4 { font-size: 20px; }
	h5 { font-size: 19px; }
	h6 { font-size: 18px; }
}

b, strong {
    font-weight: 600;
}

.fw-500{
	font-weight: 500;
}
.fw-600{
	font-weight: 600;
}


/* Framework */

.main {
	width: 100%;
	min-height: 80vh;
	background: #fff;
	overflow: hidden;
}

.container{
	width: 100%;
	max-width: 100%;
}
@media screen and (min-width: 992px) {
	.container{
		max-width: 1600px !important;
		padding: 0 70px;
	}
}


/* Columns */

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}


/* Components > forms */

/*.grecaptcha-badge{
	opacity:0;
}*/

.form-control {
	border: solid 1px #F3F4F6;
	border-radius: 30px;
	min-height: 50px;
}

.form-control:focus{
	border-color: #5AB6EB;
    box-shadow: 0 0 0 .25rem #635f5a30;
}

/* Components > buttons */

.btn{
	min-width: 150px;
	--bs-btn-padding-x: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 700;
	border-radius: 100px;
	text-transform: uppercase;
	letter-spacing: 1.4px;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

.btn-block{
	width: 100%;
}

@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: 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-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: var(--bs-green);
    --bs-btn-hover-color: var(--bs-light);
    --bs-btn-hover-border-color: var(--bs-green);

    --bs-btn-active-bg: var(--bs-green);
    --bs-btn-active-color: var(--bs-light);
    --bs-btn-active-border-color: var(--bs-green);
}

/* btn arrow */
.btn-arrow{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding-left: 30px;
	padding-right: 50px;
	overflow: hidden;
	cursor: pointer;
	transition: all .6s cubic-bezier(0.23, 1, 0.32, 1);
}
.btn-arrow:hover{
	padding-left: 50px;
	padding-right: 30px;
}
.btn-arrow::before,
.btn-arrow::after{
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
	height: 10px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none'%3E%3Cpath fill='%23fff' d='M7.102 5.25H0V4.083h7.102L3.835.817 4.667 0l4.666 4.667-4.666 4.666-.832-.816L7.102 5.25Z'/%3E%3C/svg%3E") no-repeat center / contain;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='none'%3E%3Cpath fill='%23fff' d='M7.102 5.25H0V4.083h7.102L3.835.817 4.667 0l4.666 4.667-4.666 4.666-.832-.816L7.102 5.25Z'/%3E%3C/svg%3E") no-repeat center / contain;
	transition: all .8s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-arrow::before{
	left: -30px;
}
.btn-arrow::after{
	right: 25px;
}
.btn-arrow:hover::before{
	left: 25px;
}
.btn-arrow:hover::after{
	right: -30px;
}


/***/
.card {
	padding: 32px 24px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(6px);
	border-radius: 40px;
	border: none;
	color: inherit;
	height: 100%;
}


/* Header */

.header {
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background: transparent;
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
}
.header .container{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header .logo{
	display: inline-block;
	max-width: 160px;
	margin: 8px 0;
}

.header.fixed .logo, .header.active .logo{
	opacity: 1;
}

.header.fixed{
	position: fixed;
	background: #fff;
	box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	z-index: 9998;
    -webkit-animation: slideInDown 0.3s ease-out;
    -moz-animation: slideInDown 0.3s ease-out;
    border-bottom: none;
}

.header.fixed .logo{
	max-width: 160px;
}

.header.active{
	background: #fff;
}

/* Header > Navigation */

.header .nav-menu {
	position: relative;
	float: right;
	width: 35px;
	padding: 10px 0;
	cursor: pointer;
	z-index: 21;
	overflow: hidden;
}
.header .nav-menu .menu-line {
	float: right;
    display: block;
    width: 100%;
    height: 3px;
    margin: 3px 0;
    background: var(--bs-primary);
    transition: 0.3s;
    border-radius: 0;
}
.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 .navigation {
	display: none;
	position: absolute;
	top: 60px;
	left: 0;
	width: 100%;
	margin: 0;
	background: #fff;
	text-align: center;
	padding-bottom: 50px;
}

.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 16px;	
	letter-spacing: 0.7px;
	font-weight: 700;
	text-transform: uppercase;
}

.header .navigation .menu li.open-submenu > ul{
	display: block;
}

.header .navigation .menu .menu-contact a{
	background: var(--bs-secondary);
    padding: 8px 25px;    
    border-radius: 100px;
}
.header .navigation .menu .menu-contact a:hover{
	background: var(--bs-primary);
}

@media screen and (min-width: 1200px) {

	.header .nav-menu {
		display: none;
	}

	.header .navigation{
		display: flex;
		align-items: center;
		position: relative;
		top: auto;
		left: auto;
		width: auto;
		background: transparent;
		width: 100%;
		justify-content: end;
		padding: 0;
	}

	.header .navigation .btn {
		position: absolute;
		right: 0;
		max-width: 149px;
		padding: 5px 5px;
	}
	.header .navigation ul,
	.header .navigation ul li {
		position: relative;
		display: inline-block;
		vertical-align: middle;
	}
	.header .navigation ul{
		margin: 0;
	}

	.header .navigation ul li {
		padding-left: 10px;
	}
	.header .navigation .menu > li a {
		padding: 10px 15px;
		font-size: 16px;
	}

	.header .navigation .menu {
		margin-right: 16px;
	}
	.header .navigation .menu li a {
		text-align: left;
	}	

	.header .logo{	
		max-width: 266px;
	}

	.header.fixed{
		min-height: 60px;
	}

	.header .navigation .menu li:not(.menu-contact) a:before{
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--bs-secondary);
        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%;
    } 
	
}



@media screen and (max-width: 1199px){
	.header .navigation.active {
		display: block;

	}
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
	}
	.header .navigation .menu li.active a,
	.header .navigation .menu li:not(.menu-contact).current-menu-item a,
	.header .navigation .menu li a:hover{
		background: var(--bs-primary);
		color: #fff;
	}

	.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;
	}
}


/* Modules > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}
.title h1{
	font-size: 32px;
}
.title h3{
	font-size: 32px;
}
.title h2.small{
	font-size: 21px;
}
.title h4{
	font-size: 28px;
}
.title span {
	color: var(--bs-primary);
}

.title p:not(.subtitle){
	margin: 0;
	margin-top: 5px;
}
.title .icon{
	margin-bottom: 15px;
}
.title .subtitle{
	display: inline-block;
	padding: 4px 24px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 16px;
    letter-spacing: 1.2px;
    border-radius: 100px;
}

.title .description{
	font-size: 18px;
}
.title .btn{
	margin-top: 20px;
}

.title.max-width{
	max-width: 610px;
}
.title.max-width-lg{
	max-width: 890px;
}

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 50px;
	}
	.title h1{
		font-size: 72px;
	}
	.title h2 {
		font-size: 54px;
	}
	.title h3{
		font-size: 60px;
	}
	.title h3.small{
		font-size: 32px;
	}
	.title h4{
		font-size: 32px;
	}
	.title p:not(.subtitle){
		margin-top: 15px;
	}

	.title .description{
		font-size: 24px;
	}

	.title .btn{
		margin-top: 30px;
	}

}

/* Framework */

.section{
	position: relative;
	padding: 50px 0;
	background-repeat: no-repeat;
	background-size: cover;
}

@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}	
}


/* Module > Video Player */

.video-player{
	position: relative;
	width: 100%;
	padding: 30% 0;
	background: #f1f1f1 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: #080808;
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: #080808;
	color: #fff;
}
.video-player .play:hover{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
}
.video-player .play i{
	margin-left: 4px;
}

.video-player.allowed{
	cursor: pointer;
}
.video-player.allowed .play{
	display: block;
}

/* Module > Presentation */

.presentation  {
	position: relative;
	min-height: 80vh;
	display: flex;
	align-items: center;
}

.presentation .title {
	position: relative;
}
.presentation .title .circle{
	content: '';
	position: absolute;
	top: -100px;
	left: -100px;
	width: 204px;
	height: 204px;
	border-radius: 50%;
	background: rgba(248, 229, 53, 0.6);
}
.presentation  .title .subtitle{	
	background: rgba(90, 182, 235, 0.1);	
	color: var(--bs-primary);	
}

@media screen and (max-width: 768px) { 
	.presentation {
		align-items: flex-start;
		padding: 20px 0;
	}
	.presentation .title .circle{
		top: -50px;
		left: -50px;
		width: 100px;
		height: 100px;
	}
		
}


.separator{
	content: '';
	display: block;
	width: 95px;
	height: 4px;
	background: var(--bs-secondary);
	margin: 0 auto;
	margin-bottom: 50px;
}


/* Page > Home */

.page.home .about:after{
	content: '';
	width: 100%;
	height: 96px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1439' height='96' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%235AB6EB' d='m1520.64 48.107-89.56-14.287C1341.52 19.533 1162.39-9.04 983.265.514 804.14 9.711 625.014 57.93 445.888 67.126 266.762 76.68 87.636 48.106-1.927 33.82L-91.49 19.533v171.441h1612.13V48.107Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M1439 96H0V0h1439z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
	position: absolute;
	top: -96px;
	left: 0;
}
.page.home .about:before{
	content: '';
	width: 100%;
	height: 96px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1439' height='96' fill='none'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath fill='%235AB6EB' d='M-81.643 47.893 7.92 62.18c89.563 14.287 268.689 42.86 447.815 33.306 179.125-9.197 358.251-57.415 537.377-66.612 179.128-9.554 358.248 19.02 447.818 33.306l89.56 14.287V-94.974H-81.643V47.893Z'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h1439v96H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
	position: absolute;
	bottom: -90px;
	left: 0;
}
.page.home .about .items article .icon img{
	filter: drop-shadow(0px 10px 15px rgba(0,0,0,0.1))
			drop-shadow(0px 4px 6px rgba(0,0,0,0.1));
}


.page.home .education .items .card{
	padding: 40px;
	background: #F4F9FF;
	border: 1px solid #F3F4F6;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
	border-radius: 24px;
}

.page.home .education .items ul {
	padding-left: 1.3rem;
}
.page.home .education .items ul li::marker{
	color: var(--bs-primary);
}

.page.home .levels .items{
	max-width: 1200px;
	margin: 0 auto;
}
.page.home .levels .items article{
	padding: 20px 12px;
	background: #FFFFFF;
	border: solid 1px #E2E8F0;
	text-align: center;
	height: 100%;

}
.page.home .levels .items article .circle{
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
}
@media screen and (min-width: 992px){
	.page.home .levels .items article{
		padding: 32px;
	}
}


.page.home .plida .wrap {
	border-radius: 48px;
	padding: 80px 12px;
}
.page.home .plida .title .subtitle{
	background: var(--bs-secondary);
	color: var(--bs-dark) !important;
}
.page.home .plida .wrap .image img{
	width: 396px;
	filter: drop-shadow(55px -62px 0px rgba(90, 182, 235, 0.1));
}


.page.home .contact .data{
	padding: 48px 48px 64px;
	background: #F9FAFB;
	border: 1px solid #F3F4F6;
	box-shadow: inset 0px 2px 4px 1px rgba(0, 0, 0, 0.05);
	border-radius: 40px;
}

.page.home .contact .map{
	border-radius: 40px;
	overflow: hidden;
}

.page.home .contact .vias h4{	
	font-family: "Open Sans", sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	color: var(--bs-primary);
	letter-spacing: 2.8px;
}

/* Pages > Internal */
.page.internal .content article {
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}

/* Pages > Page 404 */

.page.page-404 .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 80vh;
}

/* Pages > Page Maintenance */

.page.page-maintenance .content{
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-height: 100vh;
}

/* Errors */

.errors {
	text-align: center;
	padding: 30px 0;
}
.errors.error-nologued {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60vh;
}

.errors .smile {
	margin: 0;
	font-size: 50px;
	-webkit-transform: rotate(90deg);
	color: #080808;
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}


/* Footer */

.footer .widgets{
	padding-bottom: 30px;
	text-align: center;
}

.footer .copyright {
	border-top: solid 1px #F3F4F6;
	padding-top: 30px;
	font-size: 14px;
	color: #9CA3AF;
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: 1.2px;
}

@media screen and (min-width: 992px){
	.footer .widgets{
		text-align: left;
	}	
}

/* Socialmedia */
.socialmedia {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.socialmedia li a{
	display: block;
	font-size: 18px;
}
.socialmedia li a:hover{
	transform: translateY(-2px);
}

@media screen and (min-width: 992px){
	.socialmedia li a{
		font-size: 21px;
	}
}


.socialmedia.circle li a{
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--bs-dark);
	color: var(--bs-white);
	text-align: center;
	align-content: center;
}

.socialmedia.circle li a:hover{
	background: var(--bs-primary);
}


/* Components > Slider  */

.slider{
	position: relative;
}


/* Components > Slider > Swiper */

.slider{
	position: relative;
}

.swiper-button-next svg, .swiper-button-prev svg {
	display: none;
}
.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;
}

@media screen and (min-width: 992px){
	.swiper-button-prev {
		left: -70px;
	}
	.swiper-button-next{
		right: -70px;
	}

}

/* 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; }



/*  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;
	}
}

/* Modals > Video */

#modalVideo .modal-content{
	background-color: #080808;
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .btn-close{
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
	filter: brightness(0) invert(1);
}

/* Wahtsapp  */

.button-whatsapp{
	display: flex;
	align-items: center;
	justify-content: center;
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 70px;
    height: 70px;
    color: #fff;
    font-size: 40px;
    text-align: center;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 0 15px 0 rgba(0,0,0,0.1);
    transition: 0.3s all;
    z-index: 9999;
}
.button-whatsapp:hover{
    background: #fff;
    color: #25D366;
}

@media screen and (min-width: 992px) {
	.button-whatsapp{
		right: 30px;
		bottom: 30px;
	}
}