/*
Theme Name: Colegio de Tecnicos
Theme URI: https://marugarcia.tk
Version: 1.0
Author: @marugarcia
Author URI: maru.garciam@gmail.com
*/

/*

Guia:

1. Framework
2. Buttons
3. Forms
4. Title
5. Colors
6. Header
7. Pages
8. Archives
9. Singles
10. Footer
11. Feed
12. Extras
13. Modals

*/


html{
	scroll-behavior: smooth;
}

body {
	background: #fff;
	color: #121212;
	font-size: 18px;
	font-weight: 400;
	font-family: 'Barlow', sans-serif;
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
}


.wow {
	visibility: hidden;
}

.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-weight: 700;	
	line-height: 1.2em;
}

h1 { font-size: 48px; }
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: 72px; }
	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;
}

/* 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: 1440px;
		padding: 0 50px;
	}
}



/* Columns */

@media screen and (min-width: 992px){
	.col-lg-5-2{
		-ms-flex: 0 0 20%;
	    flex: 0 0 20%;
	    max-width: 20%;
	}
}

/* Keyframes */

@keyframes bounce {
	0% {
		transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-moz-transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, -100%);
		-webkit-transform: translate(-50%, -100%);
		-moz-transform: translateY(-50%, -100%);
	}
	100% {
		transform: translate(-50%, 0);
		-webkit-transform: translate(-50%, 0);
		-moz-transform: translate(-50%, 0);
	}          
}

@keyframes dropDown {
    0% {
        transform: scaleY(0);
    }
    80% {
        transform: scaleY(1.1);
    }
    100% {
        transform: scaleY(1);
    }
}


/* Colors */


.text-primary{
	color: #0AAF9C !important;
}
.text-secondary{
	color: #ED6926 !important;
}

.bg-primary{
	background: #0AAF9C !important;
}
.bg-secondary{
	background: #ED6926 !important;
}
.bg-light {
	background-color: #f5f5f5 !important;
}
.bg-gray{
	background: #f8f8f8;
}
.bg-dark {
	background: #3F3F3F !important;
}

/* Buttons */

.btn{
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 145px;
	padding: 0 20px;
	font-size: 17px;
	font-weight: 500;
	line-height: 42px;
    border-width: 2px;
	border-radius: 50px;
	overflow: hidden;
}

.btn.focus,
.btn:focus,
.btn:not(:disabled):not(.disabled).active:focus,
.btn:not(:disabled):not(.disabled):active:focus{
	box-shadow: none !important;
}

.btn-block {
	display: block;
}

@media screen and (min-width: 992px){
	.btn-sm{
		line-height: 28px;
	}
	.btn-lg{
		line-height: 52px;
	}
}


.btn .arrow{
	display: inline-block;
    width: 17px;
    height: 18px;
    background: url('assets/img/icons/icon-arrow-btn.svg') no-repeat center;
    background-size: contain;
    margin-left: 10px;
}

.btn.btn-outline-primary .arrow,
.btn:hover .arrow {
	filter: invert(48%) sepia(75%) saturate(2886%) hue-rotate(142deg) brightness(98%) contrast(92%);
}

.btn:after {
   content: '';  
  	position: absolute;
  	top: 0;
  	left: 0;
  	transform: scaleX(0);
	transform-origin: 0 50%;
	width: 100%;
	height: 100%;
	border-radius: inherit;
 	background: #0AAF9C url('assets/img/icons/icon-arrow-btn.svg') no-repeat;
 	background-position: center;
  	transition: all 0.3s;
}

.btn:hover:after {
   transform: scaleX(1);
  
}

.btn-primary{
    background: #0AAF9C;
    border-color: #0AAF9C;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:not([disabled]):not(.disabled):active {
	color: #0AAF9C;
	background: #0AAF9C;
	border-color:#0AAF9C;
}

.btn-outline-primary{
    color: #0AAF9C;
    border-color: #0AAF9C;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:not([disabled]):not(.disabled):active{
	color: #0AAF9C;
	background: transparent;
	border-color: #0AAF9C;
}

.btn-light {
	background: #fff;
    color: #0AAF9C;
    border-color: #fff;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:not([disabled]):not(.disabled):active {
	color: #fff;
	background: #0AAF9C;
	border-color: #fff;
}

.btn-secondary{
    background: #0B5D64;
    border-color: #0B5D64;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:not([disabled]):not(.disabled):active {
	background: #0B5D64;
	border-color: #0B5D64
}

.btn-secondary:after {
	width: 100%;
	height: 100%;
	background: #0B5D64 url('assets/img/icons/icon-arrow-btn.svg') no-repeat;
	background-position: center;
}


.btn-outline-secondary{
    background: transparent;
    color: #0B5D64;
    border-color: #0B5D64;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:not([disabled]):not(.disabled):active {
	background: #0B5D64;
	border-color: #0B5D64
}

/* Header */

.header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 60px;
	background: transparent;
	transition: 0.3s all;
	z-index: 999;
}
.header .container .wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border-radius: 0px;
	padding: 0 20px;
}


.header .logo{
	display: inline-block;
	max-width: 263px;
	margin: 10px 0;
}

.header.fixed{
	position: fixed;
	background: rgba(255,255,255, 1);
	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;
}
.header.relative {
	position: relative;
}

/* 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: #000;
	transition: 0.3s;
	border-radius: 6px;
}
.header .nav-menu.active .menu-line:nth-child(1) { transform: rotate(45deg); width: 40px; margin-top: 14px; }
.header .nav-menu.active .menu-line:nth-child(3) { transform: rotate(-45deg); width: 40px; margin-top: -16px; }
.header .nav-menu.active .menu-line:nth-child(2) { opacity: 0; }

.header .navigation {
	display: none;
	position: absolute;
	top: 78px;
	left: 0;
	width: 100%;
	margin: 0;
	text-align: center;
	background: #fff;
}
.header .navigation.active {
	display: block;
	top: 64px;
}
.header .navigation ul {
	position: relative;
	margin: 15px 0;
}
.header .navigation .menu li a {
	display: block;
	position: relative;
	padding: 12px 12px;
	font-size: 18px;
}

.header .socialmedia li {
    display: inline-flex;
    vertical-align: middle;
    position: relative;
    margin-right: 8px;
}
.header .socialmedia li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.header .navigation ul li.current-menu-item a,
.header .navigation ul li a:hover{
	color: #0AAF9C;
}
.header .navigation ul li ul{
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
}
.header .navigation ul li.open-submenu > ul{
	display: block;
	background: #ededed;
    border-bottom: solid 1px #121212;
}


/* Has Child */
.header .navigation .menu li.menu-item-has-children > a{
	padding-right: 0;
	position: relative;
}
.header .navigation .menu li.menu-item-has-children > a:before{
	content: '';
    width: 14px;
    height: 8px;
    background: url(assets/img/icons/icon-arrow-dropdown.svg) no-repeat center;
    background-size: contain;
    position: absolute;
    right: 7px;
    top: calc( 50% - 4px);
    transition: all 0.3s;
}
.header .navigation .menu li.menu-item-has-children:hover > a:before,
.header .navigation .menu li.menu-item-has-children.open-submenu > a:before{
	transform: rotate(-90deg);
}

@media screen and (min-width: 1200px) {

	.header {
		min-height: 90px;
	}

	.header .container .wrap{ 
		border-radius: 50px;
	}
	.header:not(.fixed):not(.relative) .container .wrap {
		margin-top: 15px;
	}


	.header .logo {
		max-width: 263px;
		margin: 15px 0;
	}

	.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 > ul > li a {
		padding: 34.5px 15px;
		font-size: 15px;
	}

	.header .navigation .menu {
		margin-right: 16px;
	}
	.header .navigation .menu li a {
		text-align: left;
		padding: 24px 12px;
	}

	.header .navigation .menu li .sub-menu{
		display: none;
		position: absolute;
		top: 76px;
		left: 0;
		width: 200px;
		background: #121212;
		color: #fff;
		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: #fff;
	}
	.header .navigation .menu li .sub-menu li:last-child a{
		border-bottom: 0;
	}
	.header .navigation .menu li .sub-menu li.current-menu-item > a,
	.header .navigation .menu li .sub-menu li a:hover{
		background: #0AAF9C;
		color: #fff;
	}

	.header.fixed{
		min-height: 74px;
	}
	.header.fixed .logo{
		margin: 16px 0;
	}

	.header .navigation .menu li.menu-item-has-children > a{
		padding-right: 30px;
	}
}

/*@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: #0AAF9C;
		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 */

/* Module > Accordion */

.module-accordion .item{
	position: relative;
	padding: 20px 0;
}

.module-accordion .item .question{
	position: relative;
	display: block;
	font-size: 18px;
	font-weight: 700;
	padding: 20px 30px;
	padding-right: 80px;
	box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.25);
	border-radius: 50px;

}

.module-accordion .item .question:before {
    content: '';
    background: #0AAF9C;
    width: 50px;
    height: 50px;
    position: absolute;
    right: 20px;
    top: calc(50% - 25px);
    border-radius: 50%;
}
.module-accordion .item .question:after {
    content: '';
    position: absolute;
    top: calc(50% - 10px);    
    right: 28px;
    width: 35px;
    height: 20px;
    background: url('assets/img/icons/icon-arrow-accordion.svg') no-repeat center;
	background-size: contain;
    line-height: 20px;
    transform: rotate(-180deg);
    transition: all 0.3s;

}
.module-accordion .item .question[aria-expanded="true"]{
	background: #0A2F44;
	color: #fff;
}
.module-accordion .item .question[aria-expanded="true"]:after{
	content: '';
	transform: rotate(0);
}
.module-accordion .item .question[aria-expanded="true"]:before {
	background: transparent;
}

.module-accordion .item .answer{
	margin-top: 15px;
	font-size: 16px;
	padding: 30px 20px;
}

.module-accordion .item .answer a{
	color:  #0AAF9C;
	text-decoration: underline;
}

.module-accordion .item .answer a.btn{
	background: #0AAF9C;
	color: #fff;
	padding: 5px 25px;
	border-radius: 30px;
}

.module-accordion .item .answer a.btn:hover {
	background:#0A2F44;
}


@media screen and (min-width: 992px) {
	.module-accordion .item .question{
		font-size: 30px;
		padding: 20px 80px;
	}
	.module-accordion .item .answer{
		padding: 30px 50px;
		font-size: 18px;
	}
}


/* Filter */

.filter{
    padding: 15px 0;
}

.filter ul {
    white-space: nowrap;
    overflow: auto;
    text-align: center;
    margin: 0;
    background: #F6F5F5;
    padding: 15px 0;
    border-radius: 50px;
}
.filter ul li{
    display: inline-block;
    vertical-align: middle;
    margin: 5px;
}
.filter ul li a{
    display: block;
    border-radius: 50px;
    color: #000;
    font-size: 15px;
    text-transform: uppercase;
    padding: 5px 15px;
}
.filter ul li a.active,
.filter ul li a:hover{
    color: #fff;
    background: #0AAF9C;

}


/* Vias */

.vias li {
	display: flex;
	justify-content: flex-start;
	margin-bottom: 10px;
}
.vias .icon {
	min-width: 28px;
}
.vias .icon-address {
	display: inline-block;
	background: url('assets/img/icons/icon-address.svg') no-repeat center;
	background-size: contain;
	width: 18px;
	height: 22px;
}

.vias .icon-phone {
	display: inline-block;
	background: url('assets/img/icons/icon-phone.svg') no-repeat center;
	background-size: contain;
	width: 20px;
	height: 21px;
}

.vias .icon-mail {
	display: inline-block;
	background: url('assets/img/icons/icon-mail.svg') no-repeat center;
	background-size: contain;
	width: 20px;
	height: 21px;
}

.vias .icon-hours {
	display: inline-block;
	background: url('assets/img/icons/icon-hours.svg') no-repeat center;
	background-size: contain;
	width: 20px;
	height: 21px;
}


/* Modules > Title */

.title{
	position: relative;
	margin-bottom: 30px;
}

.title h3{
	font-size: 34px;
}
.title h4{
	font-size: 22px;
}
.title b{
	font-weight: bold;
}
/*.title span{
	color: #ff0000;
}*/
.title p{
	margin: 0;
	margin-top: 16px;
}
.title .icon{
	margin-bottom: 15px;
}
.title .subtitle{
	margin: 0;
	font-size: 16px;
}
.title .btn{
	margin-top: 50px;
}
.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: 50px;
	}
	.title h3{
		font-size: 50px;
	}
	.title h4{
		font-size: 30px;
	}
	.title p{
		margin-top: 32px;
	}

}
@media screen and (max-width: 991px){
	.title br{
		display: none;
	}
}


/* Modules > Banner */

.banner{
	position: relative;
	display: flex;
	align-items: center;
	padding: 50px 0;
	height: 75vh;
	min-height: 400px;
	background: #0B5D64 no-repeat center;
	background-size: cover;
	overflow: hidden;
}
.banner .title{
	margin: 0;
	color: #fff;
	margin-top: 50px;
}
.banner .title .subtitle {
	font-weight: 400;
	font-size: 21px;
	text-transform: none;
}


@media screen and (min-width: 992px){
	.banner{
		height: 90vh;
		max-height: 600px;
	}
	.banner .title .subtitle {
		font-size: 32px;
	}
}

/* Framework */

.section{
	position: relative;
	padding: 50px 0;
}

@media screen and (min-width: 992px){
	.section{
		padding: 100px 0;
	}
}

/* Module > Presentation */
.presentation .slider .slide{
	padding: 25px 0;
	height: 80vh;
	min-height: 600px;
	background:  #0B5D64 no-repeat bottom;
	background-size: cover;
	display: flex;
	align-items: center;
}

.presentation .title {
	color: #fff;
	margin-bottom: 0;
	margin-top: 80px;
}
.presentation .title .subtitle {
	font-size: 24px;
	font-weight: 400;
}

.presentation .arrows button{
	filter: invert(1);
}

@media screen and (min-width: 992px) {
	.presentation .slider .slide{
		height: calc(100vh - 95px);
		max-height: 855px;
		padding: 50px 0;
	}

	.presentation .title {
		padding: 0;
	}
	.presentation .title .subtitle {
		font-size: 60px;
	}

    .presentation .title h1{
        font-size: 60px;
        line-height: 60px;
    }

    .presentation .title p {
    	font-size: 21px;
		line-height: 27px;
    }

}

/* Module > Video Player */

.video-player{
	position: relative;
}
.video-player .play{
	display: none;
	position: absolute;
	top: calc(50% - 35px);
	left: calc(50% - 35px);
	width: 70px;
	height: 70px;
	font-size: 30px;
	line-height: 72px;
	text-align: center;
	background: rgba(255,255,255,0.4);
	color: #fff;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
}
.video-player.active .play,
.video-player:hover .play{
	background: #0AAF9C;
	color: #fff;
}
.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% - 50px);
		left: calc(50% - 50px);
		width: 100px;
		height: 100px;
		font-size: 40px;
		line-height: 104px;
	}
	.video-player .play i{
		margin-left: 5px;
	}
}

/* Pagination */

.pagination {
	justify-content: center;
	width: 100%;
	padding: 50px 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;
	color: #000;
}
.pagination .page-numbers:hover{
	text-decoration: underline;
}
.pagination .page-numbers.current{
	font-weight: bold;
}

@media screen and (min-width: 992px) {
	.pagination .page-numbers {
		font-size: 22px;
	}
}

/* Pages */

.page.home .links .items {
	margin-top: -50px;
}
.page.home .links .items article  {
	background: #fff;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	min-height: 175px;
	padding: 25px 15px;
	text-align: center;
	transition: all 0.3s ease;
}
.page.home .links .items article:hover {
    transform: translateY(-5px);
}

.page.home .links .items article .icon {
	margin-bottom: 10px;
}
.page.home .links .items article h2{
	font-weight: 400;
	font-size: 24px;
}

@media screen and (min-width: 992px){
	.page.home .links .items {
		height: 110px;
	}
	.page.home .links .items article {
		padding: 30px;	
		margin-top: -80px;
	}
}

/*@media screen and (max-width: 991px){
	.page.home .links .items article br {
		display: none;
	}
}*/

.page.home .featured article .thumbnail {
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: 20px;
	width: 100%;
	height: 100%;
}

.page.home .featured article .thumbnail img {	
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: all 0.3s;
}
.page.home .featured article:hover .thumbnail img{
	transform: scale(1.02);
	-webkit-transform: scale(1.02);
}

.page.home .explore .slider {
	padding-top: 80px;
}
.page.home .explore .slider .slick-list{
	padding:0 10% 0 0 !important;	
}
.page.home .explore .slider .slick-slide{
	margin-right: 20px;
}

.page.home .explore .items article .thumbnail{
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    overflow: hidden;
}
.page.home .explore .items article .thumbnail:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 10px;
	background: #0B5D64;
	mix-blend-mode: multiply;
	transition: all 0.3s;
}

.page.home .explore .items .slick-current article .thumbnail:before{
	background: rgba(0, 0, 0, 0.40);
}

.page.home .explore .items article .thumbnail img{
	aspect-ratio:  0.9/1;
	object-fit: cover;
    transition: 0.3s all;
}
/*.page.home .explore .items article:hover .thumbnail img{
    transform: scale(1.1);
	-webkit-transform: scale(1.1);
}*/
.page.home .explore .items .item{
	position: relative;
}
.page.home .explore .items .item .data {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 10px;
	color: #fff;
	overflow: hidden;
	opacity: 0;
	transition: 0.3s all;
}

.page.home .explore .items .slick-current article .data{
	opacity: 1;
}

.page.home .explore .items .item .data h2{
	position: relative;
	display: inline-block;
	background: #121212;
	color: #fff;
	padding: 10px 20px;
	border-radius: 0 50px 50px 0;
}

.page.home .explore .items .item .data h2:before {
    content: '';
    background: #121212;
    width: 100px;
    height: 100%;
    position: absolute;
    left: -80px;
    top: 0;
}

@media screen and (max-width: 991px) {
	.page.home .explore .items{
		margin-top: 50px;
	}
	.slider .arrows.circle button {
		top: 30px;
	}
}
@media screen and (min-width: 992px) {
	.page.home .explore .slider .slick-list{
		padding:0 30% 0 0 !important;	
	}
	
	.page.home .explore .items article .thumbnail img{
		aspect-ratio:  1.7/1;
	}

	.page.home .explore .items .item .data {
		padding: 80px;
	}
}


.page.home .partners .items article{
    /*display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 10px 50px;*/
}
.page.home .partners .items article img {
	aspect-ratio: 3 / 1;
	object-fit: contain;
	transition: all 0.3s;
	text-align: center;
	padding: 5px 80px;
}

.page.home .partners .items article img:hover {
	transform: scale(0.98);
}


/* Page > Advice */

.page.advice .content .vias .icon {
	filter: invert(48%) sepia(75%) saturate(2886%) hue-rotate(142deg) brightness(98%) contrast(92%);
}


.page.advice .content .items article .data {
	padding: 0 25px;
}
.page.advice .content .items article .title {
	background: #0A2F44 ;
	color: #fff;
	border-radius: 50px;
	text-align: center;
	padding: 15px 40px;
	margin-bottom: 20px;
}

.page.advice .content .items article .title h2 {
	font-size: 24px;
	margin-bottom: 0;
}

/***/

.page.authorities .president article .thumbnail img{
	aspect-ratio: 0.75 / 1;
	object-fit: cover;
	width: 100%;
	border-radius: 10px;
}

.page.authorities .president article .data {
	border-radius: 10px;
	background: #FFF;
	box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.25);
	padding: 25px 30px;
}

.page.authorities .president article .data .subtitle {
	display: inline-block;
	background: #0B5D64;
	border-radius: 20px;
	padding: 5px 15px;
	color: #fff;
	margin-bottom: 35px;
}
.page.authorities .president article .see-more {
	display: flex;
    align-items: center;
    justify-content: center;
	width: 66px;
	height: 66px;
	background: #0AAF9C ;
	border-radius: 50%;
	cursor: pointer;
	margin-top: 50px;
	transition: all 0.3s;
}

.page.authorities .president article .see-more:hover {
	background: #0A2F44 ;
}

.page.authorities .president article .see-more[aria-expanded="true"]{
	transform: rotate(-180deg);
	background: #0A2F44 ;
}

@media screen and (min-width: 992px){
	.page.authorities .president article .data {
		padding: 45px 80px;
	}
	.page.authorities .president article .data h2 {
		font-size: 45px;
	}

	.page.authorities .president article p{
		font-size: 18px;
	}
}

.page.authorities .team .title .subtitle {
	background: #0AAF9C;
	color: #fff;
	display: inline-block;
	border-radius: 50px;
	padding: 10px 30px;
}
.page.authorities .team .items article .thumbnail {
	aspect-ratio: 1 / 1;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 14px;
}
.page.authorities .team .items article .thumbnail img{
	aspect-ratio: 1 / 1;
	object-fit: cover;
	width: 100%;
}

.page.authorities .team .items article .data {
	background: #0B2E44;
	color: #fff;
	text-align: center;
	border-radius: 10px;
	padding: 15px 20px;
}

.page.authorities .team .items article .data h2 {
	font-size: 20px;
}

/* Page > Contact */

.page.contact .locations .vias .icon {
	filter: invert(48%) sepia(75%) saturate(2886%) hue-rotate(142deg) brightness(98%) contrast(92%);
}

.page.contact .locations .col {
	position: relative;
}

.page.contact .locations .vias li {
	justify-content: flex-start;
}

@media screen and (min-width: 992px){
	.page.contact .locations .col .map {
		position: absolute;
		left: 0;
		top: 0;
	}
}

/* Page > qualified */
.page.qualified #professionals .container > .content {
	box-shadow: none !important;
}

/* Pages > Internal */

.page.internal .content{
	
}
.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;
}

/* Feed > Blog */

.feed-blog article .thumbnail {
	display: block;
	aspect-ratio: 4 / 3;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.feed-blog article .thumbnail img {
	background: #efefef;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: all 0.3s;
}

.feed-blog article:hover .thumbnail img{
	transform: scale(1.02);
	-webkit-transform: scale(1.02);
}
.feed-blog article .data {
	padding: 20px 21px;
}
.feed-blog article .data .date{
	font-size: 13px;
}
.feed-blog article .data h2 {
	font-size: 20px;
}

.feed-blog article .data .see-more {
	color: #0AAF9C;
	font-weight: 500;
	transition: all 0.3s;
}

.feed-blog article .data .see-more .arrow{
	display: inline-block;
	vertical-align: middle;
    width: 17px;
    height: 18px;
    background: url('assets/img/icons/icon-arrow-btn.svg') no-repeat center;
    background-size: contain;
    margin-left: 10px;
}
.feed-blog article .data .see-more .arrow {
	filter: invert(48%) sepia(75%) saturate(2886%) hue-rotate(142deg) brightness(98%) contrast(92%);
}

.feed-blog article .data .see-more:hover{
	margin-left: 5px;
}

/* Feed > Benefits */

.feed-benefits article {
	position: relative;
	background: #fff;
	box-shadow: 2px 2px 20px 0px rgba(0, 0, 0, 0.25);
	border-radius: 10px;
	overflow: hidden;
	aspect-ratio: 2.2 / 1 ;
	height: 100%;
	transition: all 0.3s;
}

.feed-benefits article:hover {
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}

.feed-benefits article a {
	display: flex;
	flex-direction: row;
	height: 100%;
}

.feed-benefits article .thumbnail {
	width: 35%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feed-benefits article .data {
	padding: 15px;
	width: 65%;
}

.feed-benefits article .category {
	display: inline-block;
	background: #0B5D64;
	padding: 5px 15px;
	font-size: 14px;
	color: #fff;
	border-radius: 30px;
	margin-bottom: 10px;
}

.feed-benefits article h2 {
	font-size: 17px;
}

@media screen and (min-width: 992px){
	.feed-benefits article {
		aspect-ratio: 2.9 / 1 ;
	}
	.feed-benefits article .data {
		padding: 30px;
	}
	.feed-benefits article .category {
		font-size: 16px;
		margin-bottom: 30px;
	}
	.feed-benefits article h2 {
		font-size: 24px;
	}
}

/* Feed > Courses */

.feed-courses article .thumbnail {
	display: block;
	aspect-ratio: 4 / 3;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.feed-courses article .thumbnail img {
	background: #efefef;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: all 0.3s;
}

.feed-courses article:hover .thumbnail img{
	transform: scale(1.02);
	-webkit-transform: scale(1.02);
}
.feed-courses article .data {
	padding: 20px 15px;
}
.feed-courses article .data .date{
	font-size: 13px;
}
.feed-courses article .data h2 {
	font-size: 18px;
}

/* Feed > Jobs */
.feed-jobs article .thumbnail img {
	aspect-ratio: 1 / 1;
	object-fit: cover;
	transition: all 0.3s;
}

.feed-jobs article:hover .thumbnail img{
	transform: translateY(5px);
}
.feed-jobs article .data {
	padding: 20px 30px;
}
.feed-jobs article .data h2 {
	font-size: 24px;
}


/* Single > General */
.single .top {
	background: #0B5D64;
	height: 110px;
}

.single .content article a {
	color: #0AAF9C;
	text-decoration: underline;
	font-weight: 700;
}
.single .content article a:hover{
	color: #0B5D64;
}

.single .title .line {
	display: block;
	width: 90px;
	height: 8px;
	background: #121212;
	margin-top: 40px;
}

.single .tags {
	margin: 40px 0;
    padding: 20px 0;
    border-top: solid 1px #36373A;
    border-bottom: solid 1px #36373A;
}

.single .tags ul li{
	display: inline-flex;
	border: solid 1px #0AAF9C;
	padding: 10px 24px;
	border-radius: 100px;
	margin-right: 15px;
	color:#0AAF9C;
}
.single .tags ul li:hover {
	background: #0AAF9C;
	color: #fff;
}

.single .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
}

.single  .embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.single  .embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive .embed-responsive-item,.embed-responsive embed,.embed-responsive iframe,.embed-responsive object,.embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}


.embed-responsive-16by9::before {
    padding-top: 50%
}
/*
.embed-responsive-21by9::before {
    padding-top: 42.857143%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}
*/

/* 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: #0AAF9C;
}
.share ul li a:hover{
	color: #00535D;
}

@media screen and (min-width: 992px){
	.share ul li a{
		font-size: 32px;
	}
}

/* Goback */
.goback {
	margin-bottom: 15px;
}

.goback .arrow {
	display: inline-block;
    vertical-align: middle;
    content: '';
    width: 7px;
    height: 11px;
    background: url(assets/img/icons/icon-arrow-goback.svg) no-repeat center;
    background-size: contain;
    transition: transform 0.3s;
    margin-right: 8px;
}

.goback:hover{
	text-decoration: underline;
	margin-left: -5px;
}

/* Single > Benefits */

.single.benefits article h1{
	font-size: 45px;
}


/* Single > Blog */
.single.blog .title h1{
	font-size: 45px;
}

/* Single > Jobs */

.single.jobs .title h1{
	font-size: 45px;
}
.single.jobs .date {
	color: #8f8f8f;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}




/* 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: #004593;
}
@media screen and (min-width: 992px){
	.errors .smile {
		font-size: 80px;
	}
}


/* Footer */

.footer{
	background: #3F3F3F;
	color: #fff;
	font-size: 14px;
}

.footer a:hover{
	color: #0AAF9C;
}

.footer .widgets{
	padding: 30px 0;
	text-align: center;
}
.footer .widgets h4{
	font-size: 18px;
	line-height: 28px;
}
.footer .widgets .logo{
	display: block;
	margin: 0 auto 30px;
}

.footer .widgets .menu{
	margin: 0;
}

.footer .widgets .socialmedia li {
	display: inline-flex;
	margin-right: 15px;
	margin-bottom: 15px;
}

.footer .widgets .socialmedia li a i{
	font-size: 40px;
}
.footer .widgets .socialmedia li a:hover {
	filter: brightness(50);
}

.footer .copyright {

}
.footer .copyright p{
	margin: 0;
}

.footer .vias li {
	justify-content: center;
}

@media screen and (min-width: 768px) {
	.footer .widgets{
		padding: 60px 0;
		text-align: left;
	}
	.footer .widgets .logo{
		margin: 0 0 60px;
	}
	.footer .vias li {
		justify-content: flex-start;
	}
}


/* Slider */

.slider {
	position: relative;
}
.slider .dots {
	position: absolute;
	width: 100%;
	z-index: 10;
}
.slider .dots .slick-dots {
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
}
.slider .dots .slick-dots li {
	display: inline-block;
	vertical-align: top;
	margin: 10px 6px;
}
.slider .dots .slick-dots li button {
	display: block;
	width: 10px;
	height: 10px;
	padding: 0;
    text-indent: -9999px;
	background: #D9D9D9;
    border: 0;
	border-radius: 50%;
    overflow: hidden;
    -webkit-appearance: none;
    cursor: pointer;
}
.slider .dots .slick-dots li.slick-active button {
	background: #0AAF9C;
}

.slider .arrows button {
	position: absolute;
	top: calc(50% - 20px);
	left: -45px;
	width: 15px;
	height: 27px;
	padding: 0;
	line-height: 300px;
	text-align: center;
	font-size: 50px;
	color: #fff;
	background: transparent;
	border: 0;
	border-radius: 50%;
	transition: 0.3s all;
	cursor: pointer;
	overflow: hidden;
}
.slider .arrows button:focus {
	outline: 0;
}
.slider .arrows button:after {
	content: '';
	position: absolute;
	top: 0;
	left: -1px;
	width: 15px;
	height: 27px;
	line-height: 27px;
	color: #000;
	background: url('assets/img/icons/icon-arrow-left.svg') no-repeat center;
	background-size: contain;
}
.slider .arrows button.slick-next {
	left: auto;
	right: -45px;
}
.slider .arrows button.slick-next:after {
	content: '';
	left: 1px;
	background: url('assets/img/icons/icon-arrow-right.svg') no-repeat center;
	background-size: contain;
}

@media screen and (min-width: 768px) {

	.slider .arrows button {
		left: -45px;
		top: calc(50% - 14px);
	}
	.slider .arrows button:after {
		width: 15px;
		height: 27px;
		line-height: 27px;

	}
	.slider .arrows button.slick-next {
		left: auto;
		right: -45px;
	}
}


/* Slider Arrows circle */
.slider .arrows.circle button {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	left: auto;
	right: 80px;
	opacity: 0.5;
	transition: all 0s;
}
.slider .arrows.circle button:after {
	width: 58px;
	height: 58px;
	left: 0;
	background: url('assets/img/icons/icon-circle-left.svg') no-repeat center;
	background-size: contain;	
    right: 0;
}

.slider .arrows button.slick-next:after {
	background: url('assets/img/icons/icon-circle-right.svg') no-repeat center;
	background-size: contain;
	right: 0;
}

.slider .arrows.circle button.slick-next.slick-arrow {
	right: 0 !important;
}

.slider .arrows.circle button:hover {
	filter: invert(48%) sepia(26%) saturate(6112%) hue-rotate(144deg) brightness(100%) contrast(92%);
	opacity: 1;

}

/*  Modals */

.modal{
	z-index: 99999;
}
.modal-backdrop{
	z-index: 9999;
}
.modal .modal-content{
	border: 0;
	border-radius: 0;
}

.modal .close{
	position: absolute;
	top: -50px;
	right: 15px;
	width: 40px;
	height: 40px;
	background: url('assets/img/icons/icon-cross.svg') no-repeat center;
	background-size: contain;
	z-index: 10;
	opacity: 0.5;
	padding: 0;
    border: none;
    filter: invert(1);
}

@media screen and (min-width: 992px) {
	.modal .close{
		top: 20px;
		right: -50px;
	}
}

.modal .close:hover {
	opacity: 1;
}

/* Modals > Video */

#modalVideo .modal-dialog{
    display: flex;
    align-items: center;
	height: 100%;
	margin-top: 0;
}
#modalVideo .modal-content{
	border-radius: 0;
	border: 0;
	box-shadow: 0 0 5px 0 rgba(0,0,0,0.1)
}
#modalVideo .modal-body{
	padding: 0;
}
#modalVideo .close{
	position: absolute;
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 30px;
}

@media screen and (min-width: 992px) {
	#modalVideo .close {
		top: -30px;
		right: -30px;
	}
}


/* Modal Home */

#modalHome .modal-dialog{
	max-width: 600px;
}

/* Form */

label{
	font-size: 16px;
}

label span {
	width: 70%;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	background: transparent;
	border: solid 2px #979797;
	border-radius: 20px !important;
	padding: 8px;
	width: 100%;
	font-size: 18px;
}

button, input[type="button"], input[type="reset"], input[type="submit"] {
    border: solid 2px #0B5D64;
    border-radius: 25px;
    background: #0B5D64;
    color: #fff;
    line-height: 1;
    padding: 10px 50px;
    /*width: 100%;*/
    transition: all 0.3s;
}

button:hover, input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
	border-color: #0B5D64;
	color:#0B5D64;
	background: #fff;
}


.socialmedia .fa-instagram::before {
  content: url('assets/img/icons/icon-instagram.svg');
}
.socialmedia .fa-facebook::before {
  content: url('assets/img/icons/icon-facebook.svg');
}
.socialmedia .fa-whatsapp::before {
  content: url('assets/img/icons/icon-whatsapp.svg');
}
.socialmedia .fa-youtube-play::before {
  content: url('assets/img/icons/icon-youtube.svg');
}

/* Contact button  */

.button-contact{
	display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0px;
    width: 170px;
    height: 45px;
    right: 20px;
    border-radius: 10px 10px 0 0;
    padding: 9px 10px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    background: #0B5D64;
    letter-spacing: -0.36px;
    /* box-shadow: 0 0 15px 0 rgba(0,0,0,0.1); */
    transition: 0.3s all;
    z-index: 88;
}
.button-contact:hover{
	height: 55px;
    background: #0AAF9C;
    color: #101010;
}