/*
Theme Name: DNA Digital 360º
Theme URI: https://github.com/julianosill
Author: Juliano Sill
Author URI: https://github.com/julianosill
Description: Theme exclusively developed for DNA Digital 360º.
Version: 1.1
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700;800&family=Open+Sans:wght@300;400;700&display=swap');

:root {

	/* colors */
	--blue: #0075BC;
	--green: #0CA276;
	--red: #D65432;
	--yellow: #FFCB31;

	--transition: all ease-in-out .2s;

}

::-webkit-scrollbar {
	background: transparent;
	height: 10px;
	width: 10px;
}

::-webkit-scrollbar-thumb {
	background-color: #999;
	border: 3px solid #FFF;
	border-radius: 12px;
	cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
	background-color: #333;
}


/* reset */

* {
	box-sizing: border-box;
	font-family: 'Montserrat', Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
}

html {
	color: #333;
	font-size: 20px;
}

	@media (max-width: 1280px) {
		html { font-size: 18px; }
	}

body[data-expanded="true"] {
	overflow: hidden;
}

a { text-decoration: none; }

ul { list-style: none; }


/* containers  */

.site-container {
	margin: 0 auto;
	width: 83.33333333333333%;
	max-width: 1920px;
}

	@media (max-width: 1280px) {
		.site-container { width: 90%; }
	}

.flex {
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}


/* typography */

h1, h2, h3, h4, h5, h6 {
	line-height: 1.25;
}

	h1 { font-size: 2.4rem; }
	h2 { font-size: 2.1rem; }
	h3 { font-size: 1.6rem; }
	h4 { font-size: 1.3rem; }
	h5 { font-size: 1rem; }
	h6 { font-size: 0.9rem; }

		/* media queries */

		@media (max-width: 1440px) {
			h1 { font-size: 2.2rem; }
			h2 { font-size: 1.9rem; }
			h3 { font-size: 1.5rem; }
		}

		@media (max-width: 1280px) {
			h1 { font-size: 2.1rem; }
		}

p {
	color: #666;
	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
}

	p strong, p em {
		font-family: 'Open Sans', Helvetica, Arial, sans-serif;
	}

	p a {
		box-shadow: 0 1px 0 var(--blue);
		color: var(--blue);
		display: inline-block;
		font-family: 'Open Sans', Helvetica, Arial, sans-serif;
		line-height: 1.25;
		font-size: 1rem;
		transition: all ease .2s;
	}

		p a:hover {
			box-shadow: 0 2px 0 var(--blue);
		}


/* colors */

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

	/* buttons */
	.blue-btn { background-color: var(--blue); }
		.blue-btn:hover { color: var(--blue); }
	.green-btn { background-color: var(--green); }
		.green-btn:hover { color: var(--green); }
	.red-btn { background-color: var(--red); }
		.red-btn:hover { color: var(--red); }
	.blue-btn:hover, .green-btn:hover, .red-btn:hover { background-color: #f5f5f5; }
	.bg-white-btn:hover { background-color: #fff; }


/* components */

.sr-only {
	/* screen reader only */
	position: absolute;
   width: 1px;
   height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

img {
	max-width: 100%;
	height: auto;
}

	figcaption {
		color: #333;
		font-size: 0.65rem;
		margin-top: 0.75rem;
	}

	/* buttons */

	.button {
		-webkit-align-items: center;
		align-items: center;
		color: #fff;
		display: flex;
		font-size: 0.9rem;
		padding: 1rem;
		text-align: left;
		transition: var(--transition);
		width: fit-content;
	}

		.button-icon {
			font-size: 0.85rem;
			margin: 0 0.5rem 0 0;
			transition: var(--transition);
		}

		.button:hover {
			cursor: pointer;
			transform: scale(1.025);
		}

		.button:hover .button-icon { margin: 0 0.75rem 0 0;}

	.btn-small {
		font-size: 0.75rem;
		padding: 0.5rem 0.75rem;
	}

		.btn-small .button-icon {
			font-size: 0.6rem;
			margin: 0 0.25rem 0 0;
		}

		.btn-small:hover .button-icon { margin: 0 0.5rem 0 0; }

	.button.mobile-show, .btn-small.mobile-show { display: none; }

		/* media queries */

		@media (max-width: 1440px) {

			.button { 
				font-size: 0.8rem;
				padding: 0.8rem;
			}

				.button-icon {
					font-size: 0.75rem;
					position: relative;
					top: 0.05rem;
				}
			
			.btn-small {
				font-size: 0.70rem;
				padding: 0.4rem 0.65rem;
			}

		}

		@media (max-width: 768px) {
			.button.mobile-hide, .btn-small.mobile-hide { display: none; }
			.button.mobile-show, .btn-small.mobile-show { display: flex; }
		}

	/* scroll-to-top */

	.scroll-to-top {
		bottom: 0.75rem;
		opacity: 0;
		position: fixed;
		right: 0.75rem;
		transition: var(--transition);
		visibility: hidden;
	}

		.scroll-to-top.show {
			opacity: 1;
			visibility: visible;
		}

		.scroll-to-top-button {
			background-color: var(--green);
			border: none;
			color: #fff;
			cursor: pointer;
			display: block;
			font-size: 1rem;
			padding: 0.5rem 0.75rem;
			transition: var(--transition);
		}

			.scroll-to-top-button:hover {
				background-color: var(--blue);
				transform: scale(1.05);
			}

		@media (max-width: 1024px) {
			.scroll-to-top.show {
				display: none;
				opacity: 0;
				visibility: hidden;
			}
		}


/* header */

.site-header {
	background-color: #fff;
	box-shadow: 0px 6px 12px hsla(0, 0%, 0%, 0.08);
	height: 140px;
	position: fixed;
	top: 0;
	transition: var(--transition);
	width: 100%;
	z-index: 1;
}

.site-header .flex {
	-webkit-align-items: center;
	align-items: center;
	height: 100%;
}

	.header-logo {
		font-size: 0;
	}

		.header-logo-img {
			height: auto;
			transition: var(--transition);
			max-height: 3rem;
			max-width: 100%;
		}

			.header-logo-img:hover {
				animation: 500ms ease-in-out pop;
			}

	/* nav-menu */

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

	.nav-menu-list {
		display: flex;
		font-size: 0.9rem;
		font-weight: 300;
		line-height: 0;
		gap: 0.5rem;
	}

		.nav-menu-list > .menu-item {
			position: relative;
		}

			.nav-menu-list > .menu-item > a {
				color: #333;
				padding: 0.5rem 0.75rem;
				transition: var(--transition);
			}

				.nav-menu-list > .menu-item:hover > a {
					color: #fff;
				}

				/* background colors */
				.nav-menu-list > .menu-item:nth-of-type(1):hover > a { background-color: var(--blue); }
				.nav-menu-list > .menu-item:nth-of-type(2):hover > a { background-color: var(--green); }
				.nav-menu-list > .menu-item:nth-of-type(3):hover > a { background-color: var(--red); }
				.nav-menu-list > .menu-item:nth-of-type(4):hover > a { background-color: var(--green); }
				.nav-menu-list > .menu-item:nth-of-type(5):hover > a { background-color: var(--yellow); }

		/* nav-menu-dropdown */

		.sub-menu {
			background-color: #fff;
			box-shadow: 0px 4px 12px hsla(0, 0%, 0%, 0.1);
			font-weight: 400;
			max-height: 80vh;
			opacity: 0;
			padding: 0.5rem 0;
			overflow-y: auto;
			position: absolute;
			top: 2rem;
			transition: var(--transition);
			visibility: hidden;
			width: 16rem;
		}

			.menu-item:hover .sub-menu,
			.menu-item:focus .sub-menu
			.menu-item:active .sub-menu {
				opacity: 1;
				visibility: visible;
				top: 1rem;
			}

			.sub-menu .menu-item a {
				color: #333;
				display: block;
				font-size: 0.75rem;
				line-height: 1.5;
				padding: 0.5rem 1rem;
				transition: var(--transition);
			}

				/* hover colors */
				
				.sub-menu .menu-item:nth-of-type(4n+1):hover a { color: var(--red); }
				.sub-menu .menu-item:nth-of-type(4n+2):hover a { color: var(--blue); }
				.sub-menu .menu-item:nth-of-type(4n+3):hover a { color: var(--green); }
				.sub-menu .menu-item:nth-of-type(4n+4):hover a { color: var(--yellow); }

	/* media queries */

	@media (max-width: 1280px) {
		.header-logo-img { max-height: 2.75rem; }
		.nav-menu-list {
			font-size: 0.85rem;
			font-weight: 400;
		}
	}

	/* sticky-header */

	@media (min-width: 1025px) {

		.sticky-header {
			height: 80px;
		}

			.sticky-header .header-logo-img {
				max-height: 2rem;
			}

			.sticky-header .nav-menu-list {
				font-size: 0.7rem;
				font-weight: 400;
				gap: 0.25rem;
			}

				.sticky-header .nav-menu-item	> a {
					padding: 0.4rem 0.7rem;
				}

				.sticky-header .nav-menu-dropdown {
					padding: 0.25rem 0;
				}

					.sticky-header .nav-menu-dropdown-item a {
						font-size: 0.7rem;
						padding: 0.8rem;
					}
	
	}

	/* mobile nav-menu */

	@media (max-width: 1024px) {

		.site-header {
			height: 80px;
		}

			.header-logo-img {
				height: 2.5rem;
			}
			
			.nav-menu-toggle {
				background: url('assets/images/layout/menu.png') center left no-repeat;
				background-size: auto 100%;
				border: none;
				cursor: pointer;
				display: block;
				height: 2rem;
				position: absolute;
				right: 2rem;
				top: 22px;
				transition: var(--transition);
				width: 2rem;
				z-index: 99;
			}

				.nav-menu-toggle[aria-expanded="true"] {
					background-position: right;
				}

			.nav-menu {
				background-color: hsla(0, 0%, 100%, 0.75);
				-webkit-backdrop-filter: blur(10px);
				backdrop-filter: blur(10px);
				box-shadow: 0 0 2rem hsla(0, 0%, 0%, 0.1);
				height: 100%;
				min-width: 50%;
				padding: 4rem 1rem 1rem;
				position: fixed;
				right: -100%;
				top: 0;
				text-align: right;
				z-index: 89;
				transform: translateX(100%);
				transition: var(--transition);
			}

				.nav-menu > div {
					height: 100%;
					overflow-y: auto;
				}

				.nav-menu[data-visible="true"] {
					right: 0;
					transform: translateX(0);
				}

				.nav-menu-list {
					display: block;
					font-size: 1.1rem;
					font-weight: 400;
					height: 100%;
					overflow: scroll;
				}

					.nav-menu-list > .menu-item > a {
						background-color: transparent;
						display: block;
						margin: 1rem 0;
						padding: 1rem 1rem;
					}

					.nav-menu-list > .menu-item.menu-item-has-children > a {
						margin-bottom: 0.5rem;
					}
					
						.nav-menu-list > .menu-item > a::before {
							background-color: hsla(0, 0%, 0%, 0.05);
							top: -1.5rem;
							content: " ";
							display: block;
							height: 2px;
							position: relative;
							width: auto;
						}

							.nav-menu-list > .menu-item:first-of-type > a::before {
								display: none;
							}

				.menu-item .sub-menu {
					background-color: transparent;
					box-shadow: none;
					font-weight: 400;
					max-height: 100%;
					opacity: 1;
					padding: 0;
					position: relative;
					top: 0;
					visibility: visible;
					width: initial;
				}

					.menu-item:hover .sub-menu,
					.menu-item:focus .sub-menu
					.menu-item:active .sub-menu {
						top: 0;
					}

					.sub-menu .menu-item {
						margin: 0.25rem 0;
					}

						.sub-menu .menu-item a {
							font-size: 0.9rem;
						}
	}

/* welcome */

.welcome-section {
	background-image: url('assets/images/layout/background-welcome.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 140px;
	overflow: hidden;
	padding: 4rem 0;
}

	@media (min-width: 1920px) {
		.welcome-section { background-image: url('assets/images/layout/background-welcome-2x.jpg'); }
	}

	.welcome-section .flex {
		-webkit-align-items: center;
		align-items: center;
	}

		.welcome-container {
			left: 8.333333333333333%;
			position: relative;
			width: 60%;
		}

			.welcome-heading {
				font-weight: 800;
				letter-spacing: -0.05rem;
			}

			.welcome-text {
				font-weight: 400;
				margin: 2.5rem 0 3.5rem;
				padding: 0 5% 0 0;
			}

			.welcome-buttons {
				display: flex;
				-webkit-flex-wrap: wrap;
				flex-wrap: wrap;
				gap: 1rem;
			}

		.welcome-image {
			right: -8.333333333333333%;
			position: relative;
			top: 0.5rem;
			transition: var(--transition);
			width: 64%;
		}

			.welcome-image img {
				width: 100%;
			}

		/* media queries */

		@media (max-width: 1440px) {
			.welcome-text { margin: 2rem 0; }
		}

		@media (max-width: 1280px) {

			.welcome-container { 
				left: 5%;
				width: 70%;
			}

			.welcome-image {
				right: -5%;
			}

		}

		@media (max-width: 1024px) {

			.welcome-section {
				background-image: url('assets/images/layout/background-welcome---mobile.jpg');
				margin-top: 80px;
				overflow: visible;
				padding: 3rem 0 0;
			}

				.welcome-section .flex {
					display: block;
				}

					.welcome-container {
						width: 90%;
					}

					.welcome-image {
						margin-top: 2rem;
						right: 12%;
						top: 2rem;
						width: 105%;
					}

		}


/* about */

.about-section {
	background-image: url('assets/images/layout/background-about.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding: 5rem 0;
}

	@media (min-width: 1920px) {
		.about-section { background-image: url('assets/images/layout/background-about-2x.jpg'); }
	}

	.about-container {
		width: 40%;
	}

		.about-header {
			margin: 0 0 5rem;
		}

			.about-heading {
				color: var(--blue);
			}

				.about-heading::after {
					background-color: #999;
					content: " ";
					display: block;
					height: 0.2rem;
					margin: 1rem 0 0;
					width: 6rem;
				}

		.about-container .flex {
			-webkit-align-items: flex-start;
			align-items: flex-start;
		}

			.about-text .button {
				margin-top: 2rem;
			}

			.about-google-trusted {
				margin: 0 0 0 2rem;
				width: 6rem;
			}

	.about-data {
		background-color: #fff;
		box-shadow: 3px 6px 12px rgba(0,0,0,0.1);
		display: flex;
		-webkit-flex-direction: column;
		flex-direction: column;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		padding: 2.5rem;
		width: 50%;
	}

		.about-numbers {
			margin: 0 0 2rem;
		}

			.about-numbers-heading::after {
				background-color: var(--green);
				content: " ";
				display: block;
				height: 0.1rem;
				margin: 1rem 0 0;
				width: 3rem;
			}

			.about-numbers-list {
				text-align: center;
				margin: 1.5rem 0 0;
			}

				.about-tours-counter {
					font-size: 1.6rem;
					font-weight: 700;
					letter-spacing: -0.025rem;
				}

					.about-tours-counter-plus {
						font-size: 75%;
					}

				.about-tours-description {
					color: #666;
					font-size: 0.8rem;
					font-weight: 300;
					text-transform: uppercase;
				}

		.about-certifications {
			margin: 2rem 0 0;
		}

			.about-certifications-heading::after {
				background-color: var(--yellow);
				content: " ";
				display: block;
				height: 0.1rem;
				margin: 1rem 0 0;
				width: 3rem;
			}

			.about-certifications-list {
				-webkit-flex-wrap: wrap;
				flex-wrap: wrap;
				margin: 1.5rem 0 0;
			}

				.about-certifications-list img {
					height: 5rem;
					width: auto;
				}
			
				.about-profile-button {
					background-color: var(--blue);
					color: #fff;
					display: flex;
					-webkit-flex-direction: column;
					flex-direction: column;
					font-size: 0.75rem;
					-webkit-justify-content: center;
					justify-content: center;
					padding: 0 1.25rem;
					text-align: center;
					transition: var(--transition);
				}

					.about-profile-button .profile-icon {
						display: block;
						font-size: 1rem;
						margin: 0 0 0.5rem;
						transition: var(--transition);
					}

					.about-profile-button:hover {
						background-color: #f5f5f5;
						color: var(--blue);
						transform: scale(1.05);
					}

	/* clients-logos */

	.clients-logos {
		border-top: 2px solid #ddd;
		padding: 2.5rem 0 0;
		margin-top: 5rem;
		text-align: center;
	}

		.clients-logos-heading {
			color: var(--green);
			font-weight: 400;
		}

			.clients-logos-heading::after {
				background-color: #999;
				content: " ";
				display: block;
				height: 0.1rem;
				margin: 1rem auto 0;
				width: 3rem;
			}

		.clients-logo-list {
			-webkit-align-items: center;
			align-items: center;
			display: flex;
			-webkit-flex-wrap: wrap;
			flex-wrap: wrap;
			gap: 2rem 3rem;
			-webkit-justify-content: center;
			justify-content: center;
			margin: 2.5rem 0 0;
		}

			.clients-logo-item {
				filter: grayscale(100%);
				opacity: 0.75;
				transition: var(--transition);
				width: 6rem;
			}

				.clients-logo-item:hover {
					filter: grayscale(0);
					opacity: 1;
				}

		.clients-logos .button {
			margin: 2.5rem auto 0;
		}

	/* media queries */

	@media (max-width: 1440px) {
		.about-container { width: 42.5%; }
			.about-google-trusted { margin: 0 0 0 1.5rem; }
		.about-certifications-list img { height: 4.5rem; }
		.about-profile-button { padding: 0 1rem; }
		.clients-logo-item { width: 5rem; }
	}

	@media (max-width: 1280px) {
		.about-container { width: 45%; }
			.about-header { margin: 0 0 4rem; }
			.about-data { width: 48%; }
				.about-tours-counter { font-size: 1.5rem; }
				.about-certifications-list img { height: 4.25rem; }
				.about-profile-button { padding: 0 0.75rem; }
	}

	@media (max-width: 1024px) {

		.about-section {
			background-image: url('assets/images/layout/background-about---mobile.jpg');
			padding: 5rem 0 4rem;
		}

			.about-section > .flex { display: block; }
				.about-container { width: 100%; }
					.about-header { margin: 0 0 3rem; }
					.about-google-trusted { width: 5rem; }

			.about-data {
				box-shadow: 4px 8px 22px rgba(0,0,0,0.1);
				margin-top: 4rem;
				width: 100%;
			}

	}

	@media (max-width: 480px) {

		.about-numbers-list {
			-webkit-flex-direction: column;
			flex-direction: column;
			gap: 1rem;
			text-align: left;
		}

		.about-certifications-list {
			gap: 1.5rem 1rem;
		}

			.about-profile-button {
				-webkit-align-items: center;
				align-items: center;
				-webkit-flex-direction: row;
				flex-direction: row;
				padding: 0.75rem;
				width: 100%;
			}

				.about-profile-button .profile-icon {
					margin: 0 0.75rem 0 0;
				}

	}


/* benefits */

.benefits-section {
	background-color: #eee;
	padding: 5rem 0;
	text-align: center;
}

	.benefits-header {
		margin: 0 0 5rem;
	}

		.benefits-heading {
			color: var(--red);
		}

			.benefits-heading::after {
				background-color: #999;
				content: " ";
				display: block;
				height: 0.2rem;
				margin: 1rem auto 0;
				width: 6rem;
			}

	/* benefist-list */

	.benefits-list {
		display: flex;
		gap: 3rem;
		-webkit-justify-content: space-between;
		justify-content: space-between;
		margin-top: 5rem;
	}

		.benefits-item {
			-webkit-flex: 1;
			flex: 1;
			position: relative;
		}

			.benefits-item:hover {
				animation: 500ms ease-in-out jump;
			}

			.benefits-icon-container {
				background-color: #fff;
				border-radius: 100%;
				box-shadow: 3px 3px 12px rgba(0,0,0,0.1);
				box-sizing: border-box;
				font-size: 2.5rem;
				height: 7rem;
				margin: 0 auto;
				transition: var(--transition);
				width: 7rem;
			}

				/* colors */
				.benefits-item:nth-of-type(1) .benefits-icon-container { color: var(--blue); }
				.benefits-item:nth-of-type(2)  .benefits-icon-container { color: var(--green); }
				.benefits-item:nth-of-type(3) .benefits-icon-container { color: var(--red) }
				.benefits-item:nth-of-type(4) .benefits-icon-container { color: var(--yellow); }

				.benefits-icon {
					position: relative;
					transform: translateY(-50%);
					top: 48%;
				}

			.benefits-item-heading {
				color: #333;
				margin: 1.5rem 0 0.75rem 0;
			}

			.benefits-item-text {
				font-size: 0.75rem;
				font-weight: 400;
			}

	/* media queries */

	@media (max-width: 1024px) {
		
		.benefits-section { padding: 4rem 0; }
		.benefits-header { margin: 0 0 3rem; }

			.benefits-list {
				-webkit-flex-wrap: wrap;
				flex-wrap: wrap;
				margin-top: 3.5rem;
			}

				.benefits-item {
					-webkit-flex: calc(50% - 3rem);
					flex: calc(50% - 3rem);
				}

					.benefits-icon-container {
						font-size: 1.75rem;
						height: 5rem;
						width: 5rem;
					}

					.benefits-item-text { font-size: 0.8rem; }

	}

	@media (max-width: 520px) {
		.benefits-list {
			-webkit-flex-direction: column;
			flex-direction: column;
		}
	}


/* tour */

.tour-presentation {
	margin-bottom: 5rem;
}

	.tour-img {
		background-color: #eee;
		background-image: url('assets/images/layout/mockup-tour.jpg');
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		width: 41.66666666666667%;
	}

	@media (min-width: 1920px) {
		.tour-img { background-image: url('assets/images/layout/mockup-tour-2x.jpg'); }
	}

	.tour-content {
		padding: 0 8.333333333333333%;
		width: 58.33333333333333%;
	}

		.tour-header {
			margin: 5rem 0;
		}

			.tour-heading {
				color: var(--green);
			}

				.tour-heading::after {
					background-color: #999;
					content: " ";
					display: block;
					height: 0.2rem;
					margin: 1rem 0 0;
					width: 6rem;
				}

		.tour-text p {
			margin: 0.5rem 0 0 0;
		}

	.tour-iframe {
		height: 70vh;
		width: 100%;
	}

	/* possibilities */

	.possibilities-section {
		padding: 5rem 0;
	}

		.possibilites-header {
			margin: 0 0 3rem;
		}

			.possibilities-heading {
				color: var(--blue);
				width: 20%;
			}

				.possibilities-heading::after {
					background-color: #999;
					content: " ";
					display: block;
					height: 0.2rem;
					margin: 1rem 0 0;
					width: 6rem;
				}

			.possibilites-intro {
				width: 70%;
			}

		/* examples */

		.possibilities-buttons {
			width: 20%;
		}

			.select-filter-button {
				-webkit-align-items: center;
				align-items: center;
				background: none;
				border: none;
				display: flex;
				font-size: 0.75rem;
				margin: 0 0 1rem;
				padding: 0.5rem;
				transition: var(--transition);
				text-align: left;
				width: 100%;
			}

				.select-filter-button .fa-icon {
					font-size: 0.9rem;
					margin: 0 0.5rem 0 0;
					transition: var(--transition);
				}

				/* colors */
				.select-filter:nth-of-type(4n+1) .fa-icon { color: var(--red); }
				.select-filter:nth-of-type(4n+2) .fa-icon { color: var(--blue); }
				.select-filter:nth-of-type(4n+3) .fa-icon { color: var(--green); }
				.select-filter:nth-of-type(4n+4) .fa-icon { color: var(--yellow); }

				.select-filter-button:hover,
				.select-filter-button.selected {
					color: #fff;
					cursor: pointer;
				}

				.select-filter-button.selected {
					cursor: default;
				}

					.select-filter-button:hover .fa-icon,
					.select-filter-button.selected .fa-icon {
						color: #fff;
					}

			.possibilities-buttons .button {
				margin-top: 2rem;
			}

		.possibilities-container {
			width: 70%;
		}

			.possibilities-image {
				margin: 0 0 2rem 0;
			}

			.possibilities-item-heading {
				margin: 0 0 1.5rem 0;
			}

				.possibilities-item-heading::after {
					content: " ";
					display: block;
					height: 0.1rem;
					margin: 1rem 0 0;
					width: 6rem;
				}

			.possibilities-item-text {
				font-size: 0.8rem;
				font-weight: 400;
			}

		/* colors  */
		
		.select-filter:nth-of-type(4n+1) .select-filter-button:hover,
		.select-filter:nth-of-type(4n+1) .select-filter-button.selected,
		.select-content:nth-of-type(4n+1) .possibilities-item-heading::after {
			background-color: var(--red);
		}

		.select-filter:nth-of-type(4n+2) .select-filter-button:hover,
		.select-filter:nth-of-type(4n+2) .select-filter-button.selected,
		.select-content:nth-of-type(4n+2) .possibilities-item-heading::after {
			background-color: var(--blue);
		}

		.select-filter:nth-of-type(4n+3) .select-filter-button:hover,
		.select-filter:nth-of-type(4n+3) .select-filter-button.selected,
		.select-content:nth-of-type(4n+3) .possibilities-item-heading::after {
			background-color: var(--green);
		}

		.select-filter:nth-of-type(4n+4) .select-filter-button:hover,
		.select-filter:nth-of-type(4n+4) .select-filter-button.selected,
		.select-content:nth-of-type(4n+4) .possibilities-item-heading::after {
			background-color: var(--yellow);
		}

	/* media queries */

	@media (max-width: 1440px) {
		.possibilities-heading, .possibilities-buttons { width: 22.5%; }
	}

	@media (max-width: 1024px) {

		.tour-header { margin: 3rem 0; }

		.tour-presentation {
			display: block;
			margin-bottom: 4rem;
		}

			.tour-img {
				background-image: url('assets/images/layout/mockup-tour---mobile.jpg');
				height: 40vh;
				width: 100%;
			}

			.tour-content {
				padding: 0 5%;
				width: 100%;
			}

		.tour-iframe { height: 60vh; }

		.possibilities-section { padding: 4rem 0; }
		.possibilities-heading, .possibilities-buttons { width: 25%; }
		.possibilites-intro, .possibilities-container { width: 65%; }

	}

	@media (max-width: 768px) {

		.tour-img { height: 30vh; }

		.possibilites-header {
			-webkit-flex-direction: column;
			flex-direction: column;
		}

			.possibilities-heading {
				margin: 0 0 2rem;
				width: 100%;
			}

			.possibilites-intro { width: 100%; }

			.possibilities-examples {
				-webkit-flex-direction: column;
				flex-direction: column;
				gap: 2rem;
			}

				.possibilities-buttons {
					order: 2;
					width: 100%;
				}

					.possibilities-buttons-list {
						display: flex;
						-webkit-flex-wrap: wrap;
						flex-wrap: wrap;
						gap: 0.5rem;
					}

						.select-filter-button {
							font-size: 0.7rem;
							margin: 0;
						}

							.select-filter-button .fa-icon {
								font-size: 0.75rem;
							}

						.possibilities-container {
							order: 1;
							width: 100%;
						}

							.possibilities-image {
								margin: 0 0 1.5rem 0;
							}
							
							.possibilities-item-heading::after {
								margin: 0.5rem 0 0;
							}

				.possibilities-examples .button {
					order: 3;
				}

	}

	@media (max-width: 480px) {
		.tour-img { height: 30vh; }
		.possibilities-buttons-list {
			-webkit-flex-direction: column;
			flex-direction: column;
		}
	}


/* quote */

.quote-section {
	background-color: #eee;
	background-image: url('assets/images/layout/background-quote.jpg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 5rem 0;
}

	.quote-content {
		width: 60%;
	}

		.quote-heading {
			color: var(--blue);
			margin: 0 0 2rem;
		}

		.quote-text {
			font-size: 0.9rem;
			font-weight: 400;
			margin: 0 0 3rem;
		}

	/* media queries */

	@media (max-width: 1024px) {

		.quote-section {
			background-image: url('assets/images/layout/background-quote---mobile.jpg');
			padding: 3rem 0;
		}

		.quote-content { width: 70%; }
	}

	@media (max-width: 580px) {
		.quote-section { background-image: url('assets/images/layout/background-quote---mobile-580.jpg'); }
		.quote-content { width: 100%; }
	}


/* published tours */

.published-section {
	margin-top: 140px;
	text-align: center;
}

	/* header */

	.published-header {
		background-color: #eee;
		padding: 5rem 0 2.5rem;
	}

		.published-heading {
			color: var(--red);
			margin-bottom: 2.5rem;
		}

			.published-heading::after {
				background-color: #999;
				content: " ";
				display: block;
				height: 0.2rem;
				margin: 1rem auto 0;
				width: 6rem;
			}

		.published-intro {
			font-size: 0.7rem;
			font-weight: 400;
		}

		/* search-form */

		.search-form-container {
			margin: 2.5rem auto 0;
			max-width: 14rem;
		}

			.search-input {
				background: none;
				border: none;
				border-bottom: 0.1rem solid #ccc;
				color: #333;
				font-family: 'Open Sans', Helvetica, Arial, sans-serif;
				transition: var(--transition);
				width: 100%;
			}

				.search-input:hover,
				.search-input:active,
				.search-input:focus {
					border-color: var(--blue);
					outline: none;
				}

			.search-button {
				background: none;
				border: none;
				color: #666;
				cursor: pointer;
				font-size: 1rem;
				margin: 0 0 0 0.25rem;
				padding: 0 0.25rem;
				transition: var(--transition);
			}

				.search-button:hover {
					color: var(--green);
				}

	/* media queries */

	@media (max-width: 1024px) {
		.published-section { margin-top: 80px; }
	}

	@media (max-width: 768px) {
		.published-header { padding: 2.5rem 0; }
	}

	/* published tours category */

	.category .published-header {
		padding: 5rem 0 7.5rem;
	}

	.published-tour-category {
		background-color: #666;
		background-position: center center;
		background-size: cover;
		margin-top: -4rem;
		padding: 3rem;
		position: relative;
	}

		.published-category-heading {
			color: #fff;
			text-transform: uppercase;
		}

		/* media queries */

		@media (max-width: 768px) {
			.category .published-header { padding: 2.5rem 0 5rem; }
			.published-tour-category {
				margin-top: -3rem;
				padding: 2rem;
			}
		}

	/* published tours list */

	.published-tours-container {
		border-bottom: 0.1rem solid #ddd;
		padding: 5rem 0 3rem;
	}

		.published-list {
			justify-content: space-around;
			flex-wrap: wrap;
		}

			.publish-item {
				background-color: #F5F5F5;
				margin-bottom: 2rem;
				transition: var(--transition);
				width: 30%;
			}

				.publish-item:hover {
					background-color: #fbfbfb;
					transform: scale(1.025);
				}

				.published-thumb {
					height: auto;
					margin-bottom: 1rem;
					width: 100%;
				}

				.published-item-title {
					color: #333;
					margin-bottom: 0.75rem;
					padding: 0 1rem;
					transition: var(--transition);
				}

				.publish-item:hover .published-item-title {
					transform: scale(1.05);
				}

					.publish-item:nth-of-type(4n+1):hover .published-item-title { color: var(--red); }
					.publish-item:nth-of-type(4n+2):hover .published-item-title { color: var(--blue); }
					.publish-item:nth-of-type(4n+3):hover .published-item-title { color: var(--green); }
					.publish-item:nth-of-type(4n+4):hover .published-item-title { color: var(--yellow); }

					.published-item-title::after {
						content: " ";
						display: block;
						height: 0.1rem;
						margin: 0.75rem auto 0;
						width: 3rem;
					}

						.publish-item:nth-of-type(4n+1) .published-item-title::after { background-color: var(--red); }
						.publish-item:nth-of-type(4n+2) .published-item-title::after { background-color: var(--blue); }
						.publish-item:nth-of-type(4n+3) .published-item-title::after { background-color: var(--green); }
						.publish-item:nth-of-type(4n+4) .published-item-title::after { background-color: var(--yellow); }

					.published-item-description p {
						font-size: 0.7rem;
						font-weight: 400;
						padding: 0 0 1.5rem;
					}

		/* media queries */

		@media (max-width: 1024px) {
			.published-tours-container { padding: 3rem 0 2rem; }
				.publish-item { width: 45%; }
		}

		@media (max-width: 480px) {
			.publish-item { width: 100%; }
		}

	/* empty list */

	.empty-list {
		padding: 3rem 0 1rem;
	}

		.empty-list .button {
			margin: 2rem auto 0;
		}


/* pagination */

.pagination {
	color: #666;
	font-size: 0.75rem;
	margin: 3rem 0 2rem;
}

	.page-numbers {
		background-color: #999;
		color: #fff;
		display: inline-block;
		margin: 0.25rem;
		padding: 0.4rem 0.7rem;
		transition: var(--transition);
	}

		.page-numbers:nth-child(4n+1) { background-color: var(--blue); }
		.page-numbers:nth-child(4n+2) { background-color: var(--green); }
		.page-numbers:nth-child(4n+3) { background-color: var(--red); }
		.page-numbers:nth-child(4n+4) { background-color: var(--yellow); }

		.page-numbers:hover {
			background-color: #333;
		}

		.page-numbers.current {
			background-color: #ccc;
		}


/* footer */

.footer {
	background-color: #fff;
	padding: 5rem 0 2rem;
}

	.footer-header {
		margin: 0 0 2rem;
	}

		.footer-heading {
			color: #333;
		}

			.footer-heading::after {
				background-color: var(--yellow);
				content: " ";
				display: block;
				height: 2px;
				margin: 1rem 0 0;
				width: 3rem;
			}

	/* consultants */

	.consultants {
		width: 30%;
	}

		.consultants-list {
			display: flex;
			-webkit-flex-direction: column;
			flex-direction: column;
			gap: 1rem;
		}

			.consultants-item {
				background-color: #eee;
				transition: var(--transition);
			}

				.consultants-item:hover {
					background-color: var(--green);
					transform: scale(1.025);
				}

				.consultants-item a {
					-webkit-align-items: center;
					align-items: center;
					display: flex;
				}

					.whatsapp-icon {
						background-color: #e5e5e5;
						color:#25D366;
						font-size: 2.5rem;
						margin-right: 1rem;
						padding: 0.75rem 1rem;
						transition: var(--transition);
					}

						.consultants-item:hover .whatsapp-icon {
							background-color: #25D366;
							color:#fff;
						}

					.consultants-name {
						color: #333;
						line-height: 1;
						margin-top: 0.25rem;
						transition: var(--transition);
					}
	
					.consultants-role {
						color: #999;
						font-size: 0.7rem;
						font-weight: 300;
						transition: var(--transition);
					}
	
					.consultants-item:hover .consultants-name,
					.consultants-item:hover .consultants-role {
						color: #fff
					}

	/* company infos */

	.company-footer {
		width: 30%;
	}

		.footer-logo {
			margin: 0 0 2rem;
		}

			.footer-logo-img {
				height: auto;
				max-height: 6rem;
				max-width: 18rem;
				width: 100%;
			}

				.footer-logo-img:hover {
					animation: 400ms ease-in-out pop;
				}

		.contact-infos-list .flex {
			-webkit-align-items: center;
			align-items: center;
			-webkit-justify-content: left;
			justify-content: left;
		}

			.contact-infos-icon {
				font-size: 1rem;
				margin: 0 0.5rem 0 0;
			}

			.contacts-infos-phone,
			.contacts-infos-mail {
				color: #333;
				font-size: 0.85rem;
				margin: 0 0 0.5rem;
			}

				.contacts-infos-phone a {
					color: #333;
					transition: var(--transition);
				}

					.contacts-infos-phone:hover a {
						color: #25D366
					}

			.contacts-infos-address {
				margin: 1.5rem 0 0;
			}

				.contact-infos-address-text {
					color: #666;
					font-size: 0.7rem;
					font-weight: 400;
					line-height: 1.5;
					transition: var(--transition);
				}

					.contacts-infos-address:hover .contact-infos-address-text {
						color: var(--red);
					}

	/* social media */

	.social-media {
		width: 20%;
	}

		.social-media .footer-heading::after {
			background-color: var(--green);
		}

		.social-media-text {
			font-size: 0.7rem;
			font-weight: 400;
		}

		.social-media-list {
			font-size: 2rem;
			gap: 1.5rem;
			-webkit-justify-content: left;
			justify-content: left;
			margin: 1rem 0 0;
		}

			.social-media-item {
				transition: var(--transition);
			}

				.social-media-item:hover {
					transform: scale(1.05);
				}

				.social-media-item a {
					color: #333;
				}

				/* colors */
				.social-media-item.instagram:hover a { color: var(--red); }
				.social-media-item.facebook:hover a { color: var(--blue); }

	/* copyright */

	.footer-copyright {
		color: #999;
		font-family: 'Open Sans', sans-serif;
		font-size: 0.55rem;
		margin: 5rem 0 0;
		text-align: center;
	}

	/* media queries */

	@media (max-width: 1440px) {

		.whatsapp-icon {
			font-size: 2.25rem;
			padding: 0.5rem 0.75rem;
		}

		.consultants-name {
			font-size: 0.9rem;
			line-height: 1;
		}

	}

	@media (max-width: 1280px) {
		.consultants { width: 32.5%; }
		.social-media-text { font-size: 0.8rem; }

	}

	@media (max-width: 1024px) {

		.footer { padding: 4rem 0 2rem; }

		.footer > .flex {
			-webkit-flex-wrap: wrap;
			flex-wrap: wrap;
			gap: 4rem;
		}

			.consultants {
				width: 100%;
			}

				.consultants-list {
					-webkit-flex-direction: row;
					flex-direction: row;
				}

					.consultants-item {
						-webkit-flex: 1;
						flex: 1;
					}

			.company-footer { width: auto; }

				.footer-logo-img { width: 90%; }

			.social-media {
				-webkit-flex: 1;
				flex: 1;
				width: 100%;
			}

		.footer-copyright {
			margin: 4rem 5% 0;
			text-align: left;
		}

	}

	@media (max-width: 640px) {

		.footer > .flex {
			-webkit-flex-direction: column;
			flex-direction: column;
			gap: 4rem;
		}

			.consultants-list {
				-webkit-flex-direction: column;
				flex-direction: column;
			}

	}


/* animations */

@keyframes pop {
	0% { transform: scale(1); }
	50% {
		filter: brightness(115%);
		transform: scale(1.025);
	}
	100% { transform: scale(1); }
}

@keyframes jump {
	0% { transform: translateY(0); }
	50% {
		filter: brightness(115%);
		transform: translateY(-0.5rem);
	}
	100% { transform: translateY(0); }
}

/* selector */

.select-content {
	height: 0;
	opacity: 0;
	overflow: hidden;
	transition: all ease .2s;
	transform: translateX(1rem);
	visibility: hidden;
}

	.select-content.selected {
		height: auto;
		opacity: 1;
		transform: translateY(0);
		visibility: visible;
	}