* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}
html {
	font-size: 62.5%; /* 1rem = 10px */
}
body {
	background: var(--light-beige);
	list-style: none;
	text-decoration: none;
}
:root {
	--red-main: #c50c29;
	--light-beige: #faf8f7;
	--black: #201e1c;
	--light-black: #282623;
	--gray-footer: #383633;
	--menuBackground: #2b2d42;
	--size_p_mobile: 1.6rem;
	--size_t_mobile: 1.7rem;
}
.animationUp {
	animation: fadeInUp;
	animation-duration: 2s;
}
.bounceIn {
	animation: bounceIn;
	animation-duration: 3s;
	animation-iteration-count: 3;
}
.animation_bottom {
	animation: fadeIn;
	animation-duration: 1s;
}
/*
font-family: 'DM Sans', sans-serif;  Contenido general.
font-family: 'Roboto', sans-serif;   Titulos.
*/

/*  Header styles. */
header {
	height: 8rem;
	width: 100%;
	background-color: #c50c29;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}
header .header-logoColegio {
	width: 11rem;
	position: absolute;
	top: 6%;
	left: 4%;
}
header .header-iconMenu {
	position: absolute;
	right: 8%;
	top: 28%;
	width: 4.4rem;
}
.section1-title_h1 {
	text-align: center;
}
.menu,
.submenu {
	list-style: none;
}
.menu {
	position: absolute;
	background-color: #3b3834;
	width: 100%;
	top: 8rem;
	left: 0;
	margin-left: -100%;
	transition: all 0.5s;
}
.menu__link {
	display: block;
	font-family: 'Roboto', sans-serif;
	padding: 3rem 2.9rem;
	color: white !important;
	font-size: 2.1rem; /*No se modifica poque es el menu*/
	text-decoration: none !important;
	height: 8rem;
}
.menu__link:hover {
	background-color: #c50c29;
}
.submenu .menu__item:hover {
	background-color: #444444;
}
.submenu .menu__link:hover {
	background-color: #0000;
}
.submenu {
	height: 0;
	overflow: hidden;
	transition: all 0.3s;
}
.submenu .menu__link {
	background-color: #2e2a26;
	padding-inline-start: 4.5rem;
}
.mostrar {
	margin-left: 0;
	height: 100vh;
	transition: all 0.6s;
	width: 70%;
	overflow: auto;
}
.mostrar img {
	width: 12px;
	position: absolute;
	margin-block-start: 0.7rem;
	margin-inline-start: 0.4rem;
	background-repeat: no-repeat;
}
@media (min-width: 940px) {
	.main-nav {
		position: absolute;
		right: 2%;
	}
	.header-iconMenu {
		display: none;
	}
	.menu {
		position: static;
		margin-left: 0;
		display: flex;
		height: 8rem;
		background-color: #c50c29;
	}
	.container-submenu {
		position: relative;
	}
	.submenu {
		height: 8rem;
		position: absolute;
		top: 8rem;
		width: 24rem;
		overflow: visible;
		opacity: 0;
		visibility: hidden;
	}
	.submenu .menu__link {
		padding-inline-start: 3rem;
	}
	.menu__link:hover {
		background-color: #c50c29;
	}
	.container-submenu:hover .submenu {
		opacity: 1;
		visibility: visible;
	}
}

/* Main styles */
/* Styles section 1 */
.section1 {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: var(--light-beige);
}
.section1 .section1-title {
	width: 90%;
	height: 20%;
	margin: 0 auto;
	font-size: 1.3rem; /*No se modica poque es el titulo generañ*/
	font-family: 'Roboto', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-block-start: 8rem;
}
.section1 .section1-title h1 {
	text-align: center;
	font-style: italic;
	text-shadow: 0 0.5rem 1.6rem rgba(0, 0, 0, 0.25);
}
.section1-title_h1 {
	text-align: center;
}
.section1 .section1-containerImages {
	width: 21.4rem;
	margin: 0 auto;
	perspective: 1000px;
	position: relative;
}
.section1 .section1-containerImages .container-images {
	width: 100%;
	height: 30rem;
	position: absolute;
	animation: rotate 28s infinite linear;
	transform-style: preserve-3d;
	display: flex;
	align-items: center;
}
.section1 .section1-containerImages .container-images:hover {
	animation-play-state: paused;
	cursor: pointer;
}
.section1 .container-images figure {
	width: 100%;
	height: 25rem;
	border-radius: 2rem;
	margin-inline: 1rem;
	position: absolute;
	box-shadow: 0px 0px 10px 0px black;
}
.section1 .container-images figure img {
	background-repeat: no-repeat;
}
.section1 .container-images .carrouselLogo {
	box-shadow: 0px 0px 0px 0px black;
}
.section1 .container-images figure:hover {
	box-shadow: 0px 0px 0px 0px black;
	transform: all 1s;
}
.container-images figure:nth-child(1) {
	transform: rotateY(0deg) translateZ(300px);
}
.container-images figure:nth-child(2) {
	transform: rotateY(45deg) translateZ(300px);
}
.container-images figure:nth-child(3) {
	transform: rotateY(90deg) translateZ(300px);
}
.container-images figure:nth-child(4) {
	transform: rotateY(135deg) translateZ(300px);
}
.container-images figure:nth-child(5) {
	transform: rotateY(180deg) translateZ(300px);
}
.container-images figure:nth-child(6) {
	transform: rotateY(225deg) translateZ(300px);
}
.container-images figure:nth-child(7) {
	transform: rotateY(270deg) translateZ(300px);
}
.container-images figure:nth-child(8) {
	transform: rotateY(315deg) translateZ(100px);
}
.container-images figure:nth-child(9) {
	transform: rotateY(360deg) translateZ(300px);
}
.section1 .section1-containerImages .container-images .logoColegio-Section1 {
	background-color: var(--light-beige);
	box-shadow: 0px 0px 0px 0px black;
}
.section1 .container-images img {
	width: 100%;
	height: 25rem;
	border-radius: 2rem;
	background-repeat: no-repeat;
	transition: all 1s;
}
.container-images img:hover {
	transform: scale(1.2);
}
@keyframes rotate {
	from {
		transform: rotateY(0deg);
	}
	to {
		transform: rotateY(360deg);
	}
}
/* Styles section 2. */
.section2 {
	background: var(--black);
	display: flex;
	flex-direction: column;
	height: 80rem;
	justify-content: space-evenly;
	align-items: center;
	color: var(--light-beige);
	font-family: 'Roboto', sans-serif;
}
.section2-educationL_title {
	padding-bottom: 5px;
}
.section2-educationL,
.section2-emphasis,
.section2-values {
	background: var(--light-black);
	border-radius: 2rem;
	width: 19rem;
	height: 23rem;
	box-shadow: 0 0.5rem 1.6rem 0.5rem rgba(0, 0, 0, 0.25);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5rem;
	align-items: center;
	font-size: var(--size_p_mobile);
}
#section2-educationL {
	height: 27rem;
}

.section2-educationL_title,
.section2-emphasis_title {
	text-align: center;
	padding-block-start: 0.8rem;
}
.section2-educationL_list {
	padding-left: 1.5rem;
}
.section2-values_list {
	font-family: 'DM Sans', sans-serif;
}
.section2-educationL_list {
	font-family: 'DM Sans', sans-serif;
}
.section2-emphasis_man {
	padding: 2rem;
}

/* Styles section 3 */
.section3 {
	font-size: var(--size_p_mobile);
	background: var(--light-beige);
	background: #f9f7f6;
	padding: 20px;
	font-family: 'Roboto', sans-serif;
}
.section3-text {
	background: #fff;
	overflow: hidden;
	border-radius: 1rem;
	box-shadow: 0 0.5rem 1.6rem 0.1rem rgba(0, 0, 0, 0.25);
	padding: 2rem;
	text-align: justify;
}
.section3-text_title {
	background: var(--red-main);
	border-radius: 0.5rem;
	font-size: var(--size_t_mobile);
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	max-width: 22rem;
	height: 2.5rem;
	margin: 0 auto;
	margin-bottom: 2rem;
	box-shadow: 0 0.4rem 0.8rem 0.1rem rgba(0, 0, 0, 0.25);
	color: var(--light-beige);
}
.section3-text_title picture img {
	margin-block-start: 0.3rem;
}
.section3-text_img {
	background: #c4c4c4;
	border-radius: 0.7rem;
	box-shadow: 0 0.5rem 1.6rem 0.1rem rgb(0 0 0 / 25%);
	margin: 0 0 2rem 0;
	width: 100%;
	max-width: 24rem;
}

.section3-container_img {
	display: flex;
	justify-content: center;
}

.section3-text_title {
	display: flex;
	align-items: center;
}

.section3-text_p {
	font-family: 'DM Sans', sans-serif;
	line-height: 2.5rem;
	font-style: italic;
}

/* Styles section 4 */
.section4 {
	width: 100%;
	background: var(--black);
	padding: 2rem;
}
.section4-title {
	background: var(--red-main);
	width: 75%;
	padding-inline: 1rem;
	height: 2.5rem;
	max-width: 22rem;
	border-radius: 0.5rem;
	margin: 0 auto;
	display: flex;
	justify-content: space-around;
	align-items: center;
	color: var(--light-beige);
	font-family: 'Roboto', sans-serif;
	font-size: 1.4rem; /*Se mantine*/
}
.section4-title img {
	margin-block-start: 0.3rem;
}
.section4-content {
	width: 100%;
	height: auto;
	font-size: var(--size_p_mobile);
	font-family: 'DM Sans', sans-serif;
	border-radius: 1rem;
	background: var(--light-black);
	box-shadow: 0 0.5rem 1.6rem 0.1rem rgba(0, 0, 0, 0.25);
	margin: 0 auto;
	margin-block-start: 2rem;
	padding: 2rem;
	color: var(--light-beige);
	line-height: 2.5rem;
}
.section4-content ul {
	padding-inline-start: 4rem;
	padding-block-end: 2rem;
}
.section4-container-image {
	display: flex;
	justify-content: center;
}
.section4-container-image .section4-image-desktop,
.image-desktop {
	width: 0;
	height: 0;
}

/* Prefooter styles */
.pre_footer {
	font-size: var(--size_p_mobile);
	font-family: 'DM Sans', sans-serif;
	font-style: italic;
	background: #dedede;
	padding: 2rem;
	text-align: center;
}

.buttom-footer {
	width: 100%;
	font-size: 1.5rem; /*Se mantine*/
	text-align: center;
	position: absolute;
	color: var(--black);
	margin-block-start: 2rem;
	opacity: 70%;
}
.buttom-footer p {
	background-color: #faa406;
	width: 15rem;
	margin: 0 auto;
	border-radius: 0.5rem;
}
/* Footer styles. */
.footer {
	font-size: var(--size_p_mobile);
	font-family: 'DM Sans', sans-serif;
	background-color: var(--black);
	color: var(--light-beige);
	display: flex;
	flex-direction: column;
	height: 112rem;
	align-content: center;
	justify-content: space-evenly;
}
.footer-container_2p {
	display: block;
}
.footer-container picture img {
	filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.85));
}
.footer-container {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.footer-container_p {
	padding-top: 1rem;
	padding-right: 1rem;
	text-align: center;
}
.footer-social {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	height: 20rem;
	padding: 5rem ​0 0 0;
}

.footer-image picture {
	display: flex;
	justify-content: center;
}
.footer-container_linkmaps {
	font-weight: bold;
	color: var(--light-beige);
}
.footer-container_linkmaps:hover {
	color: var(--red-main);
}
.address {
	text-decoration: none !important;
}
.footer-social_title {
	background: var(--red-main);
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	width: 19.2rem;
	margin-top: 5rem;
	text-align: center;
	border-radius: 0.5rem;
	box-shadow: 0 0.4px 1rem 0.3rem rgba(0, 0, 0, 0.25);
}
.footer-social_icons {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.25));
}
.footer-social_icons > img {
	width: 9rem;
}
/* Footer styles (credits) */
.footer-creditsDevelops {
	width: 100%;
	font-family: 'DM Sans', sans-serif;
	font-size: var(--size_p_mobile);
	color: var(--light-beige);
	background: var(--gray-footer);
	height: 7.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}
.footer-creditsDevelops p {
	text-align: center;
	width: 100%;
	padding: 0 5%;
}
.footer-creditsDevelops p > a {
	color: var(--light-beige);
	text-decoration: revert;
	transition: all 1s ease;
}
.footer-creditsDevelops p > a:hover {
	transition-property: color;
	transition-duration: 500ms;
	color: var(--red-main);
}

/* Main styles (philosophy) */
/* Styles section 1 (philosophy) */
.philosophy-section1 {
	width: 100%;
	padding: 4rem;
	margin-block-start: 8rem;
}
.philosophy-section1 .section1-container-title {
	max-width: 25rem;
	height: 2.8rem;
	background-color: var(--red-main);
	border-radius: 0.5rem;
	font-size: var(--size_t_mobile);
	font-family: 'Roboto', sans-serif;
	color: var(--light-beige);
	text-align: center;
	padding-block: 0.2rem;
	margin: 0 auto;
	margin-block-end: 2.5rem;
}
.philosophy-section1 .section1-container-text {
	font-size: var(--size_p_mobile);
	font-family: 'DM Sans', sans-serif;
	line-height: 2.5rem;
	text-align: justify;
}
.philosophy-section1 .section1-container-text ul {
	margin-inline-start: 3rem;
	margin-block-end: 1rem;
}
.philosophy-section1 .text-moreInfo,
.text-moreInfo {
	font-size: 1.3rem; /*Se mantiene*/
	text-align: center;
	line-height: 1.3rem; /*Se mantiene*/
	margin-block-end: 2rem;
}
.philosophy-section1 .section1-container-text .section1-container-image {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Styles section 2 (philosophy) */
.philosophy-section2 {
	width: 100%;
	padding: 4rem;
	background-color: var(--light-black);
}
.philosophy-section2 .section2-container-title {
	max-width: 8.3rem;
	height: 2.8rem;
	background-color: var(--red-main);
	border-radius: 0.5rem;
	font-size: var(--size_t_mobile);
	font-family: 'Roboto', sans-serif;
	color: var(--light-beige);
	text-align: center;
	padding-block-start: 0.1rem;
	margin: 0 auto;
	margin-block-end: 2.5rem;
}
.philosophy-section2 .section2-container-text,
.philosophy-section3-p {
	font-size: var(--size_p_mobile);
	color: var(--light-beige);
	font-family: 'DM Sans', sans-serif;
	line-height: 2.5rem;
	text-align: justify;
}
.philosophy-section2 .text-moreInfo {
	font-size: 1.3rem; /*Se mantine*/
	text-align: center;
	line-height: 1.3rem; /*Se mantiene*/
	margin-block-start: 1rem;
}
.philosophy-section2 .section2-container-image {
	width: 100%;
	display: flex;
	justify-content: center;
}
.philosophy-section3 {
	padding: 4rem;
}
.philosophy-section3-title {
	color: var(--light-beige);
	background: var(--red-main);
	width: 8.4rem;
	height: 2.7rem;
	margin: 0 auto 0.9rem auto;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: var(--size_t_mobile);
	font-family: 'Roboto', sans-serif;
}
.philosophy-section3-p {
	color: #201e1c;
	padding: 2rem 0;
}
.text-moreInfo {
	font-family: 'Roboto', sans-serif;
	font-size: 1.3rem; /*Se mantiene*/
	text-align: center;
	line-height: 1.3rem; /*Se mantiene*/
	margin-left: -0.8rem;
}
.section3-container-picture {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Main styles (prg chart) */
/* organization chart styles */
.organizationChart {
	width: 100%;
	margin-block-start: 8rem;
	background-color: #ffffff;
}
.organizationChart section {
	width: 100%;
}
.organizationChart section img {
	width: 100%;
}

/* Main styles (anthem) */
.main-anthem {
	margin-block-start: 8rem;
	padding: 2rem;
	z-index: 99;
	position: relative;
}

#particles-js {
	position: fixed;
	width: 100%;
	height: 100vh;
	z-index: -1;
}

/* Styles section (anthem) */
.main-anthem .title-anthem {
	text-align: center;
	margin-block-end: 0.3rem;
}
.main-anthem .title-anthem h3 {
	font-size: var(--size_t_mobile);
	font-family: 'Roboto', sans-serif;
}
.main-anthem .credits-anthem {
	text-align: center;
}
.main-anthem .text-anthem {
	width: 29rem;
	margin: 0 auto;
	text-align: center;
}
.main-anthem .text-anthem p {
	font-size: var(--size_p_mobile);
	font-family: 'Merienda', cursive; /* Solo exclusiva para el himno */
}
.main-anthem .image-anthem {
	width: 28rem;
	margin: 0 auto;
}

/* Styles section (Why) */
.main-porque {
	padding-top: 8rem;
}
.section1-why {
	display: flex;
	font-family: 'Roboto', sans-serif;
	height: calc(100vh - 8rem);
	flex-direction: column;
	background-attachment: fixed;
	justify-content: space-evenly;
	align-items: center;
	background-image: url(https://images.unsplash.com/photo-1478641300939-0ec5188d3802?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=1504&q=80);
	background-position: center;
	background-size: cover;
	color: white;
}
#section2 {
	position: absolute;
	bottom: 2rem;
}
.section1_h1-why,
.basicFormation-presentation_h1 {
	font-size: 4.8rem; /*Se mantiene*/
	text-align: center;
	padding: 0 1rem;
}
.section1_p-why,
.basicFormation-presentation_p {
	font-size: 2.8rem; /*Se mantiene*/
	font-weight: bold;
	width: 70%;
	text-align: center;
}
.section1-a-why,
.basicFormation-presentation_a {
	height: 4.2rem;
	width: 14rem;
	background: var(--red-main);
	border-radius: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.section1-a-why:hover,
.basicFormation-presentation_a:hover {
	background: transparent;
	border: 3px solid var(--red-main);
	transition-property: Background;
	transition-duration: 500ms;
}
.fa-chevron-down {
	font-size: 1.5rem; /*Se mantiene*/
	margin-right: 0.5rem;
}
.section-knowMore-why,
.basicFormation-presentation_knowMore {
	font-size: 1.7rem; /*Se mantiene*/
	font-weight: bold;
}
.section2-why,
.section3-why,
.section4-why {
	padding: 4rem;
}
.section2-title-why,
.section3-title-why,
.section4-title-why {
	width: 22rem;
	height: 5rem;
	margin: 0 auto;
	border-radius: 0.5rem;
	background: var(--red-main);
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 4rem;
	color: white;
	font-size: var(--size_t_mobile);
	font-weight: bold;
	text-align: center;
	font-family: 'Roboto', sans-serif;
}
.section2-container-p-why,
.section3-container-p-why,
.section4-container-p-why {
	font-size: var(--size_p_mobile);
	font-family: 'DM Sans', sans-serif;
	text-align: justify;
	line-height: 2.5rem;
}
.section1-a-why,
.basicFormation-presentation_a {
	color: var(--light-beige);
	text-decoration: none;
}
.section2-container-picture-why,
.section3-container-picture-why,
.section4-container-picture-why {
	display: flex;
	align-items: center;
	justify-content: center;
}
.section3-title-why,
.section4-title-why {
	height: 3.7rem;
}
.section3-why {
	background: var(--black);
}
.section3-container-p-why {
	color: var(--light-beige);
}
.section3-title-why,
.section4-title-why {
	height: 3.7rem;
}
.section3-why {
	background: var(--black);
}
.section3-container-p-why {
	color: var(--light-beige);
}
.section4-container-picture-why {
	margin-top: 2rem;
}
.section4-container-picture-why {
	margin-top: 2rem;
}

/* Main styles (Basic Formation) */
.basicFormation {
	margin-top: 8rem;
}

/* basicFormation-presentation (Basic Formation) */
.basicFormation-presentation {
	display: flex;
	font-family: 'Roboto', sans-serif;
	height: calc(100vh - 8rem);
	flex-direction: column;
	background-attachment: fixed;
	justify-content: space-evenly;
	align-items: center;
	background-image: url(https://images.unsplash.com/photo-1491841550275-ad7854e35ca6?crop=entropy&cs=srgb&fm=jpg&ixid=Mnw3MjAxN3wwfDF8c2VhcmNofDIxfHxzY2hvb2x8ZW58MHx8fHwxNjE4Nzk1OTI5&ixlib=rb-1.2.1&q=85&q=85&fmt=jpg&crop=entropy&cs=tinysrgb&w=450);
	background-position: center;
	background-size: cover; /* Que no pierda su relación de aspectop */
	color: white;
}

.fa-chevron-down-basiFormation {
	margin-right: 0.5rem;
}
.basicFormation-presentation_h1 {
	padding: 0 3rem;
}

/* Styles section 1 (Basic Formation) */
.basicFormation .basicFormation-section1 {
	padding-block-start: 10rem;
	padding: 4rem;
}
.basicFormation .basicFormation-section1 .section1-title h3 {
	width: 12rem;
	height: 2.5rem;
	background-color: var(--red-main);
	border-radius: 0.5rem;
	color: var(--light-beige);
	font-size: var(--size_t_mobile);
	font-family: 'Roboto', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-block-end: 2rem;
}
.basicFormation .basicFormation-section1 .section1-text p {
	font-size: var(--size_p_mobile);
	font-family: 'DM Sans', sans-serif;
	line-height: 2.5rem;
	text-align: justify;
}
.basicFormation .basicFormation-section1 .section1-image {
	display: flex;
	justify-content: center;
	align-items: center;
}
.basicFormation .basicFormation-section1 .section1-image img {
	width: 24rem;
	border-radius: 2rem;
	margin-block-start: 3rem;
	box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.27);
}

/* Styles section 2 (Basic Formation) */
.basicFormation .basicFormation-section2 {
	padding: 2rem 4rem;
}
.basicFormation .basicFormation-section2 .section2-title h3 {
	width: 15rem;
	height: 2.5rem;
	background-color: var(--red-main);
	border-radius: 0.5rem;
	color: var(--light-beige);
	font-size: var(--size_t_mobile);
	font-family: 'Roboto', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-block-end: 2rem;
}
.basicFormation .basicFormation-section2 .section2-text p {
	font-size: var(--size_p_mobile);
	font-family: 'DM Sans', sans-serif;
	line-height: 2.5rem;
	text-align: justify;
}
.basicFormation .basicFormation-section2 .section2-text ul {
	font-size: 1.5rem; /* Se mantiee */
	font-family: 'DM Sans', sans-serif;
	line-height: 2.5rem;
	text-align: justify;
	padding-inline-start: 3rem;
}
.basicFormation .basicFormation-section2 .section2-text .section2-info {
	font-size: 1.2rem;
	text-align: center;
}
.basicFormation .basicFormation-section2 .section2-image {
	display: flex;
	justify-content: center;
	align-items: center;
}
.basicFormation .basicFormation-section2 .section2-image img {
	width: 24rem;
	border-radius: 2rem;
	margin-block-start: 3rem;
	box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.27);
}

/* Styles section 3 (Basic Formation) */
.basicFormation .basicFormation-section3 {
	padding: 2rem 4rem 4rem 4rem;
}
.basicFormation .basicFormation-section3 .section3-title h3 {
	width: 25rem;
	height: 2.5rem;
	background-color: var(--red-main);
	border-radius: 0.5rem;
	color: var(--light-beige);
	font-size: var(--size_t_mobile);
	font-family: 'Roboto', sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-block-end: 2rem;
}
.basicFormation .basicFormation-section3 .section3-text-bachiller p {
	font-size: var(--size_p_mobile);
	font-family: 'DM Sans', sans-serif;
	line-height: 2.5rem;
	text-align: justify;
}
.basicFormation .basicFormation-section3 .section3-image {
	display: flex;
	justify-content: center;
	align-items: center;
}
.basicFormation .basicFormation-section3 .section3-image img {
	width: 24rem;
	border-radius: 2rem;
	margin-block-start: 3rem;
	box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.27);
}

/*Gallery */
.gallery {
	margin-top: 8rem;
}
.gallery .credits-photographer {
	width: 70%;
	margin: 0 auto;
	margin-block: 10rem 1rem;
	text-align: center;
}
.gallery .credits-photographer .photographer-name {
	font-size: 1.5rem;
}
.gallery .credits-photographer a {
	font-size: 1.2rem;
}
.gallery .credits-photographer a:hover {
	color: var(--red-main);
}
.item {
	transition: 0.5s ease-in-out;
}
.item:hover {
	filter: brightness(80%);
}
.pre-footer-gallery {
	margin: 0;
}
.fancybox img {
	border-radius: 2rem;
}
