/* GLOBAL */

body {
	font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4 {
	font-family: 'Raleway', sans-serif;
}

a, a:active, a:focus{

	outline: none; /* Works in Firefox, Chrome, IE8 and above */ 

}

a:hover {
	color: initial;
	text-decoration: none;
}

p {
	margin-bottom: 0.25rem;
}

.nopadding {
	padding: 0;
}

.general-link-container {
	text-align: center;
	margin-top: 1.5rem;
}

/* .general-link {
	font-family: 'Raleway', sans-serif;
	font-size: .8rem;
	color: #696969;
	background-color: #f0f0f0;
	border-bottom: 2px solid #e0e0e0;
	padding: 0.5rem 1rem;
	font-weight: 500;
} */

.general-link {
	background-color: transparent;
	border: 1px solid #a7a5a5;
	padding: 0.75rem 1rem;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	font-size: .8rem;
	color: #696969;
	font-weight: 500;
}


.white-link  {
	text-align: left;
}

.double-bordered {
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0
}

.top-bordered {
	border-top: 1px solid #e0e0e0;
}

.bottom-bordered {
	border-bottom: 1px solid #e0e0e0;
}

/* NAV */

nav {
	background-color: #fff;
	padding: 0 100px;
	height: 70px;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #d7d7d7;
	z-index: 99;
	position: sticky;
	top: 0;
}

.nav-links {
	margin-left: 7rem;
}

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

.nav-links-resp {
	top: 70px;
	position: fixed;
	transform: translateY(-10%);
	left: 0;
	right: 0;
	background-color: #f0f0f0;
	padding: 0.25rem 50px;
	border-bottom: 1px solid #d7d7d7;
	transition: transform 200ms ease-out, opacity 100ms ease-out;
	z-index: 55;
	opacity: 0;
	visibility: hidden;
}

.nav-links-resp-normal {
	transform: translateY(0);
	opacity: 1;
	visibility: visible;
}

.nav-menu-logo:hover {
	cursor: pointer;
}

.nav-links-resp ul li{
	display: block;
}

.nav-links-resp ul {
	margin: 0;
	padding: 0 0.5rem;
}

.nav-links-resp ul li a {
	font-weight: 500;
	font-family: 'Raleway', sans-serif;
	color: #781441;
	display: block;
	padding: 1.25rem 0;
	border-bottom: 1px solid #e0e0e0;
	font-size: 16px;
}

.nav-links-resp ul li:last-child a {
	border-bottom: 0;
}

.nav-menu-logo {
	margin-left: auto;
	border-radius: 50%;
	background-color: #f3f3f3;
	position: relative;
	height: 50px;
	width: 50px;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.open-nav-menu {
	position: absolute;
	transition: transform 250ms ease-out;
	background-image: url("../images/menu.png");
	background-size: 100%;
	height: 20px;
	width: 20px;
}

.close-nav-menu {
	position: absolute;
	transform: translateY(50px);
	transition: transform 250ms ease-out;
	background-image: url("../images/close.png");
	background-size: 100%;
	height: 20px;
	width: 20px;
}

.open-nav-menu-translated {
	transform: translateY(-50px);
}

.close-nav-menu-normal {
	transform: translateY(0);
}


.nav-links a {
	color: #781441;
	height: 70px;
	display: flex;
	align-items: center;
	padding: 0 1.5rem;
	font-weight: 500;
	font-family: 'Raleway', sans-serif;
}

.nav-links a:hover {
	background-color: rgba(0,0,0,0.02)
}

.nav-logo img {
	height: 60px;
}

nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

nav ul li {
	display: inline-block;
}

.nav-menu-opened {
	background-color: #efefef;
}

.nav-links-resp-visible {
	display: block;
}

/* HEADER */

#header .carousel-item.active {
	display: flex;
	opacity: 1;
}

#header .carousel-item.active .header-big {
	opacity: 1;
	transform: translateY(0);
}

#header .carousel-item {
	align-items: center;
	height: 700px;
}

#header .carousel-item .header-big {
	opacity: 0;
	transform: translateY(-15%);
	transition: opacity 300ms ease-out, transform 150ms ease-out ;
}

#header img {
	object-fit: cover;
	height: 100%;
	filter: brightness(60%);
	object-position: top;
}

.header-big {
	position: absolute;
	left: 10%;
	max-width: 500px;
	border-bottom: 2px solid #fff;
	border-top: 2px solid #fff;
	padding: 2rem 1rem;
	background-color: transparent;
	max-height: 50%;
}

.header-big-title {
	font-family: Raleway;
	font-weight: 500;
	font-size: 2.5rem;
	color: #fff;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	margin-bottom: 0.5rem;
}

.header-big-text {
	font-size: 1.3rem;
	color: #e0e0e0;
}

#header .carousel-indicators {
	transform: translateX(-50%);
	margin-bottom: 0;
	background-color: #fff;
	border-top-right-radius: 0.5rem;
	border-top-left-radius: 0.5rem;
	padding: 0 0.5rem;
	left: 50%;
	margin-right: 0;
	margin-left: 0;
	right: initial;
}

#header .carousel-indicators li {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: rgba(0,0,0,0.5)
}

/* MAIN SECTION */

#main-section {
	background-color: #fff;
	padding: 2.5rem 0 4rem 0;
}

.main-element-title {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'Raleway', sans-serif;
	font-size: 2.5rem;
	text-transform: uppercase;
	font-weight: 600;
	color: #781441;
}

.main-element-subtitle {
	font-size: 1.5rem;
	text-transform: uppercase;
	font-weight: 300;
	color: #777;
	text-align: center;
}

.main-element-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: #781441;
	margin: 0 0.5rem;
}

.main-element-separator {
	width: 50px;
	height: 2px;
	background-color: #333;
	border-radius: 0.5rem;
	margin: 1rem auto;
}

.main-element-text {
	font-size: 18px;
	font-weight: 300;
}

/* GENERAL SECTION */

.general-section {
	position: relative;
	background-color: #f9f9f9;
}

.general-section img {
	/* object-fit: cover;
	max-height: 350px;
	width: 100%;
	object-position: 0 -60px; */
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.general-element {
	padding: 3.5rem 3.5rem 5rem 3.5rem;
}

.general-title {
	font-size: 1.9rem;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	color: #781441;
}

.general-subtitle {
	font-weight: 300;
	color: #777;
	font-size: 1.3rem;
	margin-bottom: 2rem;
}

.general-text {
	font-size: 15px;
	color: #555;
	line-height: 1.8;
}

.general-text p {
	margin-bottom: 1rem;
}

body .general-section:nth-child(2n+1) {
	/*background-color: #f5f5f5;*/
}

.hidden-unique-section {
	position: absolute;
	top: 0;
	right: 0%;
	width: 50%;
	height: 100%;
	background: transparent url('../images/unique-col.jpg') center right no-repeat;
	background-size: 100%;
}

/* CIRCLES */

.circles-section {
	
}

.circles-section a {
	color: #333;
}

.circles-section-container {
	width: 100%;
	text-align: center;
	padding: 2.5rem 0 4rem 0;
}

.circles-elements-container {
	margin-top: 2.5rem;
}

.circle-element {
	display: flex;
}

.circle-element-img {
	height: 100px;
	width: 100px;
	border-radius: 50%;
	background-color: #d9d9d9;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
}

.circle-element-img img {
	height: 32px;
	width: 32px;
}

.circle-element-title {
	font-family: Raleway;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: left;
}

.circle-element-content {
	background-color: #f9f9f9;
	margin-left: 50px;
	z-index: 0;
	padding-left: 70px;
	border-top-right-radius: 4rem;
	border-bottom-right-radius: 4rem;
	padding-right: 30px;
	display: flex;
	align-items: center;
	width: calc(100% - 50px);
	height: 100px;
}

/* NEWS */

.new-section{
	padding: 2.5rem 0 2.5rem 0;
	background-color: #fff;
}

.new-section-container .general-title {
	text-align: center;
}

.new-element-container {
	padding: 2rem 2rem .75rem 2rem;
}

.new-element-title {
	font-family: 'Raleway', sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
}

.new-element-date {
	font-weight: 300;
	color: #777;
	font-size: 1.1rem;
	margin-right: 5px;
}

.new-element-separator {
	display: flex;
	margin: 0.75rem 0 1.5rem 0;
}

.new-element-separator div {
	height: 15px;
	width: 15px;
	border-radius: 50%;
	background-color: #e0e0e0;
	margin-left: 0.25rem; 
}

.new-element-separator div:first-child {
	margin-left: 0;
}

.new-element-image {
	text-align: center;
	margin: 0.5rem 0;
}

.new-element-image {
	font-weight: 300;
}

.new-element-image img {
	width: 100%;
	max-width: 600px;
}

.new-element {
	background-color: #f9f9f9;
	padding: 1.5rem 2rem;
}



.new-element-button a {
	font-family: Raleway;
	font-size: 1rem;
	font-weight: 500;
	display: inline-block;
	background-color: #e7e7e7;
	border-radius: 7rem;
	padding: 0.5rem 2rem;
	color: inherit;
}

.new-element-button {
	text-align: center;
}

.new-element-category {
	font-weight: 300;
	color: #777;
	margin-left: 5px;
}

.new-element-category a {
	color: inherit;
	text-decoration: underline;
}

.new-element-category a:hover {
	color: rgba(0,0,0,0.8);
}

.new-element .general-text {
	color: #555;
	font-weight: 500;
}

.news-cat-section .main-element-title {
    margin-bottom: 2rem;
}

.news-cat-section .circle-element-icon img {
    transform: rotate(180deg);
}

.news-cat-section .circle-element-content {
	margin-left: 30px;
	height: 65px;
}

.news-cat-section .circle-element-img {
	height: 65px;
	width: 65px;
}

.news-cat-section .circle-element {
	max-width: 600px;
	margin: 0 auto;
}

.new-element-cat-img {
	margin-right: 3px;
}

.new-element-cat-img img {
	height: 18px;
	width: 18px;
}

.new-general-container {
	display: flex;
}

.new-element-side {
	background-color: #f0f0f0;
}

.new-element-side img {
	height: 100%;
	width: 300px;
	object-fit: contain;
}

.news-cat-section .circle-element-content {
	padding-left: 50px;
}

.news-cat-section-numb {
	font-size: 1.1rem;
	font-weight: 600;
}

.news-cat-section-text {
	font-size: 0.75rem;
}

.news-cat-section .circle-element-img {
	flex-direction: column;
}

/* CATEGORIAS */

.cat-section .new-general-container {
	margin-bottom: 2rem;
}

.cat-section .new-general-container:last-child {
	margin-bottom: 0;
}

/* PAGINACION */

nav.cat-pagination {
	border: 0;
	height: auto;
	margin: 2rem 0; 
}



.pagination .page-item {
	margin-right: 5px;
	width: 35px;
	text-align: center;
}

.pagination .page-item:last-child {
	margin-right: 0;
}

.pagination .page-link {
	color: #333;
	background-color: #f9f9f9;
	border: 0;
	border-bottom: 2px solid #dee2e6;
	font-weight: 500;
}

.pagination .page-link:hover {
    text-decoration: none;
    background-color: #e9ecef;
    border-bottom: 2px solid #333;
}

.page-item.active .page-link {
    color: #fff;
    background-color: #781441;
	border-bottom: 2px solid #781441;
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: none;
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
	border-radius: 0;
}

.page-item:first-child .page-link img {
	height: 12px;
	width: 12px;
	transform: rotate(90deg)
}

.page-item:last-child .page-link img {
	height: 12px;
	width: 12px;
	transform: rotate(-90deg)
}

/* NOTICIA EXTENDIDA */

.new-element-full-img {
	text-align: center;
	font-weight: 300;
}

.new-element-full .general-text img {
	max-width: 100%;
	margin-bottom: 0.25rem; 
}

.new-element-full .general-text {
	margin-bottom: 2rem;
	border-bottom: 1px solid #e0e0e0;
}

.new-element-bottom-cat {
	text-align: right;
	font-size: 1.15rem;
}

/* FOOTER */

footer {
	background-color: #292929;
	padding-top: 2.5rem;
	text-align: center;
	color: #717171;
}

.footer-container {
	display: inline-block;
	text-align: left;
}

.footer-data ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-weight: 300;
}

.footer-data ul li {
	margin-bottom: 0.3rem;
	font-size: 0.9rem;
}

.footer-title {
	font-family: 'Raleway', sans-serif;
	text-transform: uppercase;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	font-weight: 500;
}

.subfooter {
	margin-top: 2.5rem;
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.subfooter a {
	color: #717171;
}

/* PROFESSIONALS */

.professionals-list {
	padding: 2.5rem 0;
	overflow: hidden;
}

.professionals-small-img img{
	width: 100%;
	border-radius: .3rem;
}

.professionals-small-container {
	display: block;
	/* background-color: #e7e7e7; */
	padding: 1rem;
	border-radius: .5rem;
	margin: 1.5rem 0;
	transition: box-shadow 250ms ease-out;
	border: 1px solid #cfcfcf;
}

.professionals-small-container:hover {
	cursor: pointer
}

.professionals-small-container:hover {
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.professionals-small-name {
	margin: 0.75rem 0 0 0;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 1.3rem;
	color: #781441;
}

.professionals-small-area {
	font-weight: 300;
	color: #781441;
	border-bottom: 1px solid #b8b8b8;
	padding-bottom: 0.75rem;
	margin-bottom: 0.75rem;
	font-size: 14px;
}

.professionals-small-link {
	font-family: 'Raleway', sans-serif;
	font-weight: 300;
	font-size: 14px;
	color: #781441;
	text-align: center;
}

.professionals-data-container {
	width: 100%;
	transform: translateX(10%);
	display: none;
	transition: transform 300ms ease-out, opacity 300ms ease-out;
	opacity: 0;
}

.professionals-data-container.data-container-visible {
	display: block;
}

.professionals-data-container.data-container-visible-animate {
	opacity: 1;
	transform: translateX(0);
}

.row-container.row-container-hidden {
	display: none;
}

.professionals-list .container {
	display: flex;
}

.professionals-list {
	background-color: #f9f9f9;
}

.professionals-data-back {
	margin: 0 auto;
	margin-bottom: 2rem;
}

.professionals-data-back a {
	font-family: Raleway;
	font-size: 1rem;
	font-weight: 500;
	display: block;
	background-color: #e7e7e7;
	border-radius: 7rem;
	padding: 0.5rem 2rem;
}

.professionals-data-back a:hover {
	cursor: pointer;
}

.professionals-data-back img {
	width: 30px;
	margin-right: 10px;
}

/* PROFESSIONAL */

.professional-data-main img {
	width: 100%;
}

.professional-data-name {
	font-family: Raleway;
	font-size: 2.5rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #781441;
}

.professional-data-element {
	border-bottom: 1px solid #dedede;
	padding: 0 1rem 1rem 1rem;
	margin-bottom: 1.5rem;
}

.professional-data-element-title {
	font-family: Raleway;
	font-weight: 500;
	text-transform: uppercase;
}

.professional-data-element-content {
	font-size: 1.2rem;
	font-weight: 300;
}

.professional-data-cv-title {
	font-family: Raleway;
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 1rem;
	color: #781441;
}

.professional-data-cv-text {
	font-size: 18px;
	font-weight: 300;
	padding: 0 1rem;
}

/* FULL CIRCLES SECTION */

.full-circles-section .circles-section-container {
	padding: 2.5rem 0;
}

.full-circles-section .circles-elements-container {
	margin-top: 0;
}

.circles-section.full-circles-section {
	background-color: #f9f9f9;
}

.full-circles-section .circle-element-content {
	width: 100%;
	background-color: #ededed;
	transition: box-shadow 400ms ease-out;
}

.full-circles-section .circle-element {
	margin-top: 2.5rem;
	position: relative;
	z-index: 5;
	margin-bottom: 0;
}

.full-circles-section .circles-elements-container .row div[class^="col"]:first-child .circle-element {
	margin-top: 0;
}

.full-circles-section .circle-element:hover {
	cursor: pointer;
}

.circle-element-icon {
	position: absolute;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	right: 20px;
}

.circle-element-icon img {
	height: 32px;
}

.circle-element-icon img {
	height: 32px;
	transition: transform 200ms ease-out;
}

.circle-element-toggled .circle-element-icon img {
	transform: rotate(-180deg);
}

.circle-element-toggled .circle-element-content {
	box-shadow: inset 0px -2px 0px 0px #ddd;
}

.circles-padding {
	padding: 0 65px;
}

.circle-element-more {
	font-size: 18px;
	font-weight: 300;
	text-align: left;
	max-width: 800px;
	margin: 0 auto;
	background-color: #ededed;
	padding: 1rem 1.5rem;
	transform: translateY(-10%);
	display: none;
	transition: transform 300ms ease-out, opacity 500ms ease-out;
	opacity: 0;
}

.circle-element-more-visible {
	display: block;
}

.circle-element-more-visible-animate {
	opacity: 1;
	transform: translateY(0);
}

.circle-element-more-recommended-title {
	font-family: Raleway;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 0.9rem;
	margin-bottom: 0.5rem;
}

.circle-element-more-recommended {
	border-bottom: 1px solid #ddd;
	padding-bottom: 0.5rem;
	margin-bottom: 0.5rem;
}

.circle-element-more-recommended-prof {
	display: inline-block;
	margin-right: 1.5rem;
}

.circle-element-more-recommended-prof img {
	height: 128px;
	border-radius: 0.5rem;
}

.recommended-prof-name {
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	margin-top: 0.25rem;
}

/* CONTACT SECTION */ 

.contact-section {
	background-color: #f9f9f9;
	padding: 2rem 0;
}

.contact-section .main-element-title {
	margin-bottom: 2rem;
}

.contact-area-more-element {
	border-bottom: 1px solid #dedede;
	padding: 0 1rem 1rem 1rem;
	margin-bottom: 1.5rem;
}

.contact-area-more-title {
	font-family: Raleway;
	font-weight: 500;
	text-transform: uppercase;
}

.contact-area-more-content {
	font-size: 1.2rem;
	font-weight: 300;
}

.contact-area-container {
	margin-bottom: 2.5rem;
}

.contact-form {
	max-width: 500px;
	margin: 0 auto;
	margin-top: 1.5rem;
}

.contact-form .form-control {
	font-size: 18px;
	font-weight: 300;
	border:0;
	background-color: #fcfcfc;
	border-radius: 0;
	box-shadow: 0px 1px 0px 0px #ededed;
}

.contact-form .form-control:focus {
	box-shadow: none;
	box-shadow: 0px 2px 0px 0px #dedede;
}

/* TEAM */

#team-section {
	padding: 2.5rem 0;
}

#team-section img {
	max-width: 1200px;
	object-position: center center;
	display: block;
	margin-left: auto;
	margin-right: auto;
	height: auto;
}

#team-section .general-title,#team-section .general-subtitle {
	text-align: center;
}

#team-section .general-text {
	max-width: 1200px;
	margin: 0 auto;
}

#team-section .general-element {
	padding-bottom: 0;
}

.tw-share-btn {
    background-color: #1da1f2;
    display: inline-flex;
    color: #fff;
    font-weight: 600;
    padding: .25rem .75rem .25rem .5rem;
    border-radius: .25rem;
    justify-content: center;
    align-items: center;
}

.fb-share-btn {
    background-color: #1877f2;
    display: inline-flex;
    color: #fff;
    font-weight: 600;
    padding: .25rem .75rem .25rem .5rem;
    border-radius: .25rem;
    justify-content: center;
    align-items: center;
    margin-right: .5rem;
}

.fb-share-btn:hover, .tw-share-btn:hover {
	color: #fff;
}

.fb-share-btn .feather, .tw-share-btn .feather {
    fill: #fff;
    stroke: transparent;
}

.tw-share-btn .feather {
	margin-right: 3px;
}

.share-news-container {
	margin-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 2rem;
}

.share-news-container .new-element-button {
	text-align: left;
	font-weight: 600;
	margin-bottom: 10px;
	font-size: 18px;
}

.back-news-button img {
	width: 30px;
	margin-right: 10px;
}

/* ARCHIVO */
.news-card-archive-year-button {
    display: flex;
    align-items: center;
}

.news-card-archive-year.year-display .news-card-archive-year-button-minus {
    display: block;
}

.news-card-archive-year.year-display .news-card-archive-year-button-plus {
    display: none;
}

.news-card-archive-year .news-card-archive-year-button-plus, .news-card-archive-year .news-card-archive-month-button-plus {
    display: block;
}

.news-card-archive-year .news-card-archive-year-button-minus, .news-card-archive-year .news-card-archive-month-button-minus {
    display: none;
}

.news-card-archive-year-button .feather, .news-card-archive-month-button .feather {
    pointer-events: none;
    margin-left: .25rem;
    width: 18px;
}

.news-card-archive-year .news-card-archive-month-list {
    display: none;
}

ul.news-card-archive-month-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul.news-card-archive-month-list li {
	padding: .25rem .25rem;
	font-size: 16px;
}

ul.news-card-archive-month-list .news-card-archive-month-button {
    display: flex;
    align-items: center;
}

.news-card-archive-year .news-card-archive-new-list {
    display: none;
}

ul.news-card-archive-new-list {
    border-left: 2px solid #e0e0e0;
    list-style: none;
    margin-left: 1rem;
    padding-left: 1rem;
}

.news-card-archive-year.year-display .news-card-archive-month-list {
    display: block;
}

.news-card-archive-year-button:hover, .news-card-archive-month-button:hover {
    cursor: pointer;
}

li.month-display .news-card-archive-new-list {
    display: block;
}

li.month-display .news-card-archive-month-button-plus {
    display: none;
}

li.month-display .news-card-archive-month-button-minus {
    display: block;
}

.news-card-archive-month-button-icon .feather {
    pointer-events: none;
}

.news-card-archive {
	background-color: #f9f9f9;
	padding: 1.25rem 1.75rem;
}

.news-card-archive-year {
	background-color: rgba(0,0,0,0.03);
    padding: 1rem;
}

.news-card-archive h3 {
	font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
	font-weight: 500;
	line-height: 1.5;
}

/* RESPONSIVE */

/* FONT-SIZES */ 

@media (max-width: 1400px) {	
	html {
		font-size: 14px;
	}
}

@media (max-width: 600px) {	
	html {
		font-size: 13px;
	}
}

/* GENERAL */

@media (max-width: 1400px) {
	.general-element {
		padding: 2.5rem 2.5rem 4rem 2.5rem;
	}
}

/* NAVBAR */

@media (max-width: 1400px) {
	nav {
		padding: 0 50px;
	}
	.nav-links {
		margin-left: 4rem;
	}
}

@media (max-width: 1250px) {
	nav {
		padding: 0 25px;
	}
	.nav-links {
		margin-left: 2rem;
	}
	.nav-links a {
		padding: 0 1rem;

	}
}

@media (max-width: 1100px) {
	.nav-links {
		margin-left: 1rem;
	}
}

@media (max-width: 1020px) {
	.nav-links {
		display: none;
	}
	.nav-menu-logo {
		display: flex;
	}
}

@media (max-width: 500px) {
	.nav-logo img {
		height: 50px;
	}
	nav {
		padding: 0 20px 0 10px;
	}
}

@media (max-width: 380px) {
	.nav-logo img {
		height: 45px;
	}
	nav {
		padding: 0 15px 0 5px;
	}
}

/* HEADER */

@media (max-width: 1400px) {	
	#header .carousel-item {
		height: 600px;
	}
}

@media (max-width: 900px) {	
	#header .carousel-item {
		height: 550px;
	}
}

@media (max-width: 700px) {	
	#header .carousel-item {
		height: 500px;
	}
}

@media (max-width: 600px) {	
	#header .carousel-item {
		height: 400px;
	}
	.header-big {
		padding: 1rem 0.5rem;
	}
	.header-big-title {
		font-size: 2rem;
	}
}

@media (max-width: 500px) {	
	#header .carousel-item {
		height: 350px;
	}
}

/* MAIN SECTION */

@media (max-width: 991px) {	
	#main-section {
		padding: 2.5rem 0;
	}
	.main-element-text {
		font-size: 16px;
	}
}

@media (max-width: 530px) {	
	#main-section .main-element-title {
		font-size: 2rem;
	}
}

@media (max-width: 390px) {	
	#main-section .main-element-title {
		display: flex;
		flex-direction: column;
	}
	.main-element-dot {
		display: none;
	}
	#main-section .main-element-subtitle {
		margin-top: 0.5rem;
	}
}

/* CIRCLES SECTION */

@media (max-width: 599px) {
	.circle-element-img {
		height: 75px;
		width: 75px;
	}
	.circle-element-content {
		height: 75px;
		margin-left: 32.5px;
		padding-left: 60px;
	}
}


@media (max-width: 991px) {	
	.circle-element {
		margin-bottom: 1rem;
	}
	.circles-section-container {
		padding: 2.5rem 0 3rem 0;
	}
	.circle-element-content {
		width: 100%;
	}
}

/* NEW */

@media (max-width: 699px) {
	.new-element-container {
		padding: 2rem 0 .75rem 0;
	}
}

@media (max-width: 768px) {	
	/* .new-element-side img {
		height: 100%;
		width: 200px;
		object-fit: contain;
	} */
	.new-general-container-resp {
		flex-direction: column;
	}
	.new-element-side img {
		max-height: 180px;
		width: 100%;
		object-fit: contain;
		display: block;
		margin: 0 auto;
	}
}

@media (max-width: 500px) {	

}

/* PROFESSIONALS */

@media (max-width: 991px) {
	.professional-data-cv-text {
		font-size: 16px;
	}
}

/* AREAS */

@media (max-width: 991px) {
	.circle-element-more {
		font-size: 16px;
	}
}

@media (max-width: 575px) {
	.circle-element-icon img {
		height: 24px;
	}
}

/* CONTACTO */

@media (max-width: 991px) {
	.contact-form .form-control {
		font-size: 16px;
	}
	.contact-area-more-element {
		margin-bottom: 0;
		margin-top: 1.5rem;
	}
}

@media (max-width: 530px) {	
	.contact-section .main-element-title, .circles-section .main-element-title {
		font-size: 2rem;
	}
}
