/*
Theme Name: Alianza Ceibo
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: 81px;
	--header-fixed-min-height: 61px;	

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

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

	--bs-primary: #254D4F;
	--bs-primary-rgb: 33,77,79;

	--bs-secondary: #c26c31;
	--bs-secondary-rgb: 194,108,49;

    --bs-white: #fff;
    --bs-light: #f2f6f8;

	--bs-black: #000;
    --bs-dark: #151515;
	--bs-gray: #626262;


	--bs-green: #009e13; 
	--bs-blue :#0080ff;
	--bs-yellow : #ffea3f;
	--bs-red: #820f00;

	/* 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: #fc3f50;*/
    --bs-border-radius: 50px;

}



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

/* Animate */

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

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


.bg-green{
	background-color: var(--bs-green);
}
.bg-blue{
	background-color: var(--bs-blue);
}
.bg-yellow{
	background-color: var(--bs-yellow);
}
.bg-red{
	background-color: var(--bs-red);
}

/* 3. Structure */

html{
	scroll-behavior: smooth;
}

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

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


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

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

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

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

b, strong {
    font-weight: 700;
}

*,
*::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: 80vh;
	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;
	}
}

/* Keyframes */

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

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

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

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

/* Structure > extras */

.animated{
	will-change: opacity, transform;
}

.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{
	min-width: 150px;
	--bs-btn-padding-x: 30px;
	--bs-btn-padding-y: 10px;
	--bs-btn-font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;
	letter-spacing: 2px;
	border-radius: 4px;
	border-width: 2px;
}
.btn i{
	vertical-align: -1px;
	font-size: 18px;
	margin-right: 6px;
}

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

    --bs-btn-hover-bg: var(--bs-yellow);
    --bs-btn-hover-color: var(--bs-black);
    --bs-btn-hover-border-color: var(--bs-yellow);

    --bs-btn-active-bg: var(--bs-yellow);
    --bs-btn-active-color: var(--bs-black);
    --bs-btn-active-border-color: var(--bs-yellow);
}

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

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

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


/* Btn Float */

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

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

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

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


/* Structure */

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

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

.fix-background {
	background: #000 no-repeat center;
	background-size: cover;
	background-attachment: fixed !important;
}

.bg-overlay:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
    background:rgba(0, 0, 0, 0.5);
}


/* Structure > Header */

.header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: var(--header-min-height);
	background:transparent;
	transition: 0.3s all;
	z-index: 999;
	align-content: center;
	color: var(--bs-white);
}
.header .container{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header .logo{
	display: inline-block;
	max-width: 100px;
}

.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;
    color: var(--bs-body-color);
}

.header.active{
	background: var(--bs-white);
}
.header:not(.fixed):not(.active) .logo{
	filter: invert(1);
}

body.home .header:not(.fixed):not(.active){
	position: relative;
	background: var(--bs-black);
}

/* Header > Navigation */

.header .nav-menu {
    position: relative;
    float: right;
    width: 42px;
    height: 35px;
    padding: 0;
    cursor: pointer;
    z-index: 21;
    overflow: hidden;
    background: var(--bs-secondary);

    display: flex;
    align-items: center;
    justify-content: center;
}

.header .nav-menu .menu-line {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--bs-white);
    transition: 0.3s ease;
}
.header .nav-menu .menu-line:nth-child(1) { transform: translateY(-6px); }
.header .nav-menu .menu-line:nth-child(2) { transform: translateY(0); }
.header .nav-menu .menu-line:nth-child(3) { transform: translateY(6px); }

.header .nav-menu.active .menu-line:nth-child(1) {
    transform: rotate(45deg);
}
.header .nav-menu.active .menu-line:nth-child(2) {
    opacity: 0;
}
.header .nav-menu.active .menu-line:nth-child(3) {
    transform: rotate(-45deg);
}

.header .navigation {
	display: none;
	position: absolute;
	top: var(--header-min-height);
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
}
.header .navigation.active {
	display: block;
	background: var(--bs-primary);
	color: var(--bs-white);
}
.header .navigation .menu {
	position: relative;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 10px 12px;
	font-size: 14px;
	text-transform: uppercase;	
	font-weight: 700;
	letter-spacing: 1px;
}


.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 .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 {
		
	}
	.header .navigation .menu {
		display: flex;
		gap: 40px;
	}
	
	.header .navigation .menu > li {
		padding: 20px 0;
	}
	.header.fixed .navigation .menu > li {
		padding: 10px 0;
	}
	.header .navigation .menu li a {
		font-size: 14px;
		position: relative;
	}

	.header .navigation .menu > li > a:after{
		content: '';
	    position: absolute;
	    bottom: 0;
	    left: 50%;
	    width: 0;
	    height: 2px;
	    background: rgba(255, 255, 255, 1.0);
	    transition: 0.3s all;
	}

	.header.fixed .navigation .menu > li > a:after{
		background: var(--bs-body-color);
	}
	.header .navigation ul > li.current-menu-item > a:after,
	.header .navigation ul > li > a:hover:after{
		left: 0;
		width: 100%;
	}

	.header .navigation .socialmedia {
		margin-left: 25px;
	}
	.header .navigation .socialmedia li a{
		font-size: 20px;
	}



	/* Submenu */

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: var(--header-min-height);
		left: 0;
		width: 220px;
		background: rgba(27,22,28,0.95);
		box-shadow: 0 5px 5px 0 rgba(0,0,0,0.1);
		animation: dropDown 300ms ease-in-out forwards;
    	transform-origin: top center;
    	text-align: left;
	}
	.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: 11px;
		color: #c8c8c8;
		border-bottom: 1px solid rgba(255, 255, 255, 0.06);		
	}
	/*.header .navigation .menu li .sub-menu li:last-child a{
		border-bottom: 0;
	}*/
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{		
		color: var(--bs-white);
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);	
		background: rgba(27, 22, 28, 0.95);
	}


	

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

}

@media screen and (max-width: 1199px){
	.header .navigation{
		box-shadow: 0 2px 5px 0 rgba(0,0,0,0.1);
		text-align: left;
	}
	.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;
	}
}


/* Components > Forms */

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

.required{
	color: #ff0000;
}

.form-select,
.form-control{
	line-height: 1.8em;
}

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

/* Form checkbox */

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

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

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

/* Form files */

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

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

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

/* Components > Slider > Swiper */

.swiper:has(.swiper-pagination){
    padding-bottom: 20px;
}
.swiper-pagination {
	bottom: 0;
}
/*.swiper-pagination-bullet{
	background: var(--bs-primary);
	opacity: 0.3;
}
.swiper-pagination-bullet-active {
	opacity: 1;
}*/

.swiper-pagination-bullet { 
	border-radius: 4px; 
	box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
	height: 7px; 
	transition: all 0.27s cubic-bezier(0, 0, 0.58, 1) 0s; 
	width: 7px;
	border: solid 1px transparent;
	background: rgba(255, 255, 255, 0.8);
}

.swiper-pagination-bullet-active { 
	background: transparent; 
	transform: scale(1.5);
	border: solid 1px #fff;
}


.swiper-button-next,
.swiper-button-prev{
	position: absolute;
	width: 45px;
	height: 45px;
    color: transparent;
    background-image: url('assets/img/icons/icon-arrow-prev.svg');
    background-repeat: no-repeat;
    background-position: center;
   	background-size: contain;
}
.circle.swiper-button-next,
.circle.swiper-button-prev{
	border: 1px solid var(--bs-dark);
	border-radius: 50%;
}
.swiper-button-next { background-image: url('assets/img/icons/icon-arrow-next.svg'); }

.swiper-button-prev:after,
.swiper-button-next:after{
	content: none;
}


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

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

.title h1{
	text-transform: uppercase;
	font-size: 36px;
	letter-spacing: 5px;
	font-weight: 600;
}
.title h2{
	font-size: 36px;
}
.title h3{
	font-size: 32px;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-weight: 600;
}
.title h4{
	font-size: 22px;
}
.title h5{
	font-size: 20px;
}
.title span{
	color: var(--bs-primary);
}
.title p{
	margin: 0;
	margin-top: 8px;
}

.title .btn{
	margin-top: 20px;
}
.title .subtitle{
	margin: 0;
	font-weight: 600;
	text-transform: uppercase;
	font-size: 15px;
}

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

@media screen and (min-width: 992px){
	.title{
		margin-bottom: 80px;
	}
	.title h1{
		font-size: 36px;
	}
	.title h2{
		font-size: 48px;
	}
	.title h3{
		font-size: 36px;
	}
	.title h4{
		font-size: 24px;
	}
	.title h5{
		font-size: 22px;
	}
	.title p{
		margin-top: 12px;
	}

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

}

/* Components > Video Player */

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

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

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

/* Components > Pagination */

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

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


/* Components > Share */

.share  {
}
.share ul {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
}
.share ul li a{
	display: block;
	padding: 8px;
	font-size: 26px;
	color: var(--bs-gray);
}
.share ul li a:hover{
	color: var(--bs-secondary);
}

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

/* Components > Errors */

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

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



/*
	Modules
*/

/* Module > Presentation */

.presentation {
	background: var(--bs-dark);
  	width: 100vw;
  	margin-left: calc(50% - 50vw);
}

.video-wrapper {
  	position: relative;
  	width: 100%;
  	padding-top: 56.25%; /* 16:9 */
}

.video-wrapper iframe {
  	position: absolute;
  	inset: 0;
  	width: 100%;
  	height: 100%;
  	border: 0;
}



/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	background: var(--bs-dark) no-repeat;
    background-size: cover;
	padding: 50px 0;
	min-height: 350px;
	overflow: hidden;
	padding-top: 120px;
}
.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,
.banner article{
	position: relative;	
	z-index: 2;
}

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

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

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


/* Icon Title */
.icon-title {
	display: inline-flex;
	align-items: center;
	gap: 20px;
}
.icon-title .icon-right{
	transform: rotateX(180deg);
}


/* Intro */
.intro{
	position: relative;	
	background-color: var(--bs-dark);
	padding: 50px 0;
	min-height: 350px;
	color: var(--bs-white);
	padding-top: 120px;
}

.intro .title {
	max-width: 680px;
	margin: 0 auto;
}

/* Maintenance  Alert */
.maintenance-alert{
	background: #FEBD00;
	transition: all 0.3s;
}

.maintenance-alert.fixed{
	position: fixed;
	width: 100%;
	top: var(--header-fixed-min-height);
	z-index: 9;
}

/* Module > Stats */

.module-stats .items article .number {
	font-size: 40px;
	margin-bottom: 0;
}
.module-stats .items article h6{
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

/* Module > Slider > Testimonial */

.module-slider-testimonial article {
	aspect-ratio: 2.85 / 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    background: var(--bs-dark) no-repeat center;
    object-fit: cover;
    width: 100%;
    height: 100%;
    padding: 80px 0;
}

.module-slider-testimonial article blockquote{
	max-width: 620px;
	color: #fff;
	margin-left: auto;
}

/* Module > Slider > Team */

.module-team .swiper article img {
	aspect-ratio: 1.32 / 1;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.module-team .swiper article .data .name{
	text-transform: uppercase;
	font-size: 13px;
	letter-spacing: 2px;
}



/* 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"]{
	
}
.module-accordion .items .item .question[aria-expanded="true"]:after{
	content: '-';
}

.module-accordion .items .item .answer{
	margin-top: 15px;
}

.module-accordion .items .item .answer a {
	text-decoration: underline;
}

.module-accordion .items .item .answer a:hover {
	color: var(--bs-primary);
}

.module-accordion .items .item .answer .data {
	max-width: 980px;
}

@media screen and (min-width: 992px) {
	.module-accordion .items .item .question:after {
		right: 20px;
	}
}





/* Module > Video */

.module-video .video.archive video {
	aspect-ratio: 2 / 1;
	object-fit: cover;
	width: 100%;
}


.module-video .video iframe,
.module-video .video embed,
.module-video .video object{
  width: 100% !important;
  max-width: 100% !important;
  display: block;
}


/* Module > Gallery > Grid */
.module-gallery-grid a {
	display: block;
}
.module-gallery-grid a:hover{
	opacity: 0.5;
}

/* Module > Quote */
.module-quote blockquote{
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.module-quote blockquote h4{
	font-size: 32px;
}

/* Modules > Full Image */

.module-full-img{
	display: flex;
	align-items: center;
	background: var(--bs-dark) no-repeat center;
	color: var(--bs-white);
	background-size: cover;	
	padding: 50px 0;
	height: 90vh;
}


/*
	Pages
*/


/* Page > Home */

.page.home .feed-programs article .icon{
	filter: invert(1);
}
.page.home .feed-programs article:before{
	background: #fff;
}


/* Page > About */

.page.about{

}

/* Page > Alliance */
.page.alliance .quote blockquote{
	color: #fff;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}


/* Pages > Contact */

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

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

/* Pages > Thanks */

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

/* Pages > Internal */

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

/* Pages > Page 404 */

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

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


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


.feed-blog article .data {
	padding: 20px 10px;
	text-align: center;
}
.feed-blog article .data h2{
	font-family: "Istok Web", sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
.feed-blog article .data .excerpt{
	font-size: 13px;
	color: var(--bs-gray);
}

/***/ 

.meta {	
	font-size: 11px;
	text-transform: uppercase;
	color: var(--bs-gray);
	letter-spacing: 2px;
}


.meta .bg-tag{
	color: #eeeeee;
    padding: 0 0.2rem 0 0.2rem;
    border-radius: 0.2rem;
}
.meta .bg-tag.bg-yellow{
	color: var(--bs-body-color);
}

.meta img{
	filter: opacity(0.8);
}
.meta .terms li{
	display: inline-block;
	vertical-align: middle;
}
.meta .terms li a{
	padding: 3px;
	text-transform: uppercase;
	/*background: #cacaca;*/
}


/* Feed > Programs */
.feed-programs article {
	text-align: center;
	padding-bottom: 30px;
}

.feed-programs article h2{
	font-family: "Istok Web", sans-serif;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 3px;
	font-weight: 600;
}

.feed-programs article:hover h2{
	opacity: 0.8;
}

.feed-programs article:before {
	content: '';
	width: 0%;
	height: 2px;
	background: var(--bs-gray);
	position: absolute;
	bottom: 0;
	left: 50%;
	transition: all 0.3s ease;
}


.feed-programs article:hover:before {	
	width: 100%;
	left: 0;
}

/* Feed > Alliance */
.feed-alliance article img {
	transition: all 0.3s ease;
}
.feed-alliance article:hover img{
	transform: scale(1.05) rotate(-0.5deg);
}


/*
	CPT Single
*/

/* CPT > Single */

.single.blog .banner .meta {
	color: #fff;
	font-size: 13px;
}

.single.blog .banner .meta img{
	filter: invert(1);
}

.single.blog .banner .meta p{
	font-size: 13px;
}
.single .content article img{
	max-width: 100%;
	height: auto;
}
.single .content article a{
	color: #000;
}
.single .content article a:hover{
	text-decoration: underline;
}

.single .content article :is(h1, h2, h3, h4, h5, h6){
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #000;
}

.single .content article h2{
	font-size: 24px;
}

.single .content article p:has(.aligncenter){
	text-align: center;
}
.single .content article .wp-caption{
	max-width: 100%;
}

.single .content article.post-content .wp-block-quote{
	border-left: solid 2px var(--bs-dark);
	padding-left: 30px;
}

.wp-block-cover,
.wp-block-image {
	margin: 1em 0;
}
.wp-block-image .aligncenter {
	text-align: center;
}


/* CPT > Single > Blog */

.single.blog .banner{
	display: flex;
	height: 100dvh;
	align-items: flex-end;
}
.single.blog .banner .bg:after{
	content: '';
	background: #000;
	position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 1;
    top: 0;
    left: 0;
}

.single.blog article{
	color: var(--bs-gray);
}


/**/
.single.blog .tags {
	margin: 40px 0;
    padding: 20px 0;
}
.single.blog .tags h4{
	font-weight: 600;
	font-size: 18px;
	line-height: 24px;
}
.single.blog .tags ul{
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
	gap: 16px;
}
.single.blog .tags ul li a{
	display: block;
	background: transparent;
	color: var(--bs-primary);
	border: solid 1px var(--bs-primary);
	border-radius: 20px;
	padding: 5px 20px;
}

.single.blog .tags ul li a:hover{
	background: var(--bs-primary);
	color: var(--bs-white);
}


/* Single > Programs */
.single.programs .banner .icon{
	filter: invert(1);
}
.single.programs .banner .description{
	max-width: 1180px;
	margin: 0 auto;
}

/* Structure > Footer */

.footer {
	position: relative;
}
.footer .widgets{
	padding: 20px 0 0 0;
	text-align: center;
	position: relative;
	z-index: 2;
}

.footer .widgets .logo {
	display: block;
	margin-bottom: 30px;
}

.footer .bg{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.footer .bg img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.footer .copyright {
	padding: 0 0 25px;
}
.footer .copyright p{
	margin: 0;
	font-size: 16px;
}

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

/* Extras */

