/*
Theme Name: Multidecor Custom Template
Author: Aprilred
*/


/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Root variables
 * 3.0 - Page Designs
 * 4.0 - Forms Design
 * 5.0 - Media Queries
 */


/**
 * 1.0 - Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */

html {
	font-family: "Roboto", sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
	background-color: var(--clr-base);
}
body {
	position: relative;
	max-width: 1600px;
	margin: 0 auto;
}

header {
	max-width: 1600px;
	margin: 0 auto;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h2 {
	font-weight: inherit;
	margin: 0;
	padding: 0;
}

h1 {
	font-weight: inherit;
	margin: 0;
	padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	visibility: visible;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	visibility: hidden;
	height: 0;
}

[hidden],
template {
	visibility: hidden;
}

a {
	background-color: inherit;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: 700;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}



figure {
	margin: 0;
}

hr {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

code,
kbd,
pre,
samp {
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

select {
	text-transform: none;
}


button,
input,
select,
textarea {
	max-width: 100%;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
	opacity: .5;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input[type="checkbox"],
input[type="radio"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 0.4375em;
	padding: 0;
}

input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button,
input[type="time"]::-webkit-inner-spin-button,
input[type="time"]::-webkit-outer-spin-button,
input[type="datetime-local"]::-webkit-inner-spin-button,
input[type="datetime-local"]::-webkit-outer-spin-button,
input[type="week"]::-webkit-inner-spin-button,
input[type="week"]::-webkit-outer-spin-button,
input[type="month"]::-webkit-inner-spin-button,
input[type="month"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"] {
	-webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #d1d1d1;
	margin: 0 0 1.75em;
	min-width: inherit;
	padding: 0.875em;
}

fieldset > :last-child {
	margin-bottom: 0;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
	vertical-align: top;
	resize: vertical;
}

optgroup {
	font-weight: bold;
}

/**
 * 2.0 - Root Variables
 *
 * Setting up the fonts, colors, default sizes etc.
 * 
 */

 :root {
	/* colors */
	--clr-white: hsl(220, 37%, 100%);
	/*--clr-base: hsl(210, 67%, 99%);*/
	--clr-base: #f8ffff;
	/*--clr-base-dark: hsl(218deg 100% 97.06%);*/
	--clr-base-dark: #deeded;
	--clr-text: #2a3132;
	--clr-grey: #2a3132;
	--clr-brand-middle: #00939e;

	--header-height: 0;
 }

 /* Header */


 .site {
	width: 100%;
	background-color: var(--clr-base-base-dark);
	color: var(--clr-text);
 }

 .site-inner {
	width: 100%;
	background-color: var(--clr-base-dark);
 }

 .mobile-header-menu {
	display: none;
  }

  .mobile-menu {
	display: none;
  }

  .menu-icon {
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	background-color: transparent;
	position: relative;	
}

.menu-icon:hover i {
	color: var(--clr-brand-middle);
}

.menu-icon i {
	font-size: 22px;
	color: #fff;
}

 .header-top {
	width: 100%;
	max-width: 1600px;
	height: 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background-color: var(--clr-base);
	border-top: none;
	padding: 4px;
	margin: 0 auto;
 }

 .header-contact {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 4px;
	margin-left: 40px;
	line-height: 15px;
 }

 .header-contact p {
	margin: 0;
	padding: 0;
	font-size: 16px;
	letter-spacing: 1.5px;
	font-weight: 500;
	color: var(--clr-brand-middle);
	font-family: "Poppins", sans-serif;
 }

 .header-contact p a {
	color: inherit;
	text-decoration: none;
 }

 .header-contact p a:hover {
	text-decoration: underline;
 }

 .header-lang {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	margin-right: 40px;
 }

 .header-lang a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1px 3px;
 }

 .header-lang a.selected {
	border-radius: 6px;
	border: 1px solid var(--clr-brand-middle);
 }

 .header-lang .flag {
	width: 30px;
	height: 30px;
	object-fit: contain;
 }

 header {
	width: 100%;
	background: transparent;
 }

.header-middle {
	width: 100%;
	height: 250px;
	margin: 0;
	margin-top: 50px;
	padding: 0;
	background: radial-gradient(circle, #30a4ae 0%, #018996 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	border-top-right-radius: 6px;
	border-top-left-radius: 6px;
}

.header-middle .logo {
	width: 100%;
	height: 100%;
	padding-top: 30px;
	background-size: auto;
	background-repeat: no-repeat;
	background-position: center center;
	margin-bottom: -30px;
}

.header-bottom {
	position: sticky;
	position: -webkit-sticky;
	left: 0;
	z-index: 10000;
	top: 50px;
}

.header-bottom a {
	text-decoration: none;
}

.header-bottom a i {
	color: #fff;
	font-size: 50px;
}

.header-bottom nav {
	padding: 10px 20px;
	margin: auto 0;
	background-color: var(--clr-brand-middle);
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	gap: 40px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

.main-navigation {
	position: relative;
}

.main-navigation button {
	display: none;
}


nav ul{
	display: flex;
	align-items: center;
	justify-content: flex-start;
	list-style: none;
	gap: 20px;
}


nav ul li {
	font-family: "Poppins", sans-serif;
	font-size: 18px;
	color: #fff;
	background-color: transparent;
	text-transform: uppercase;
	letter-spacing: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/*nav ul li a::after {
	content: url(genericons/sort-down-solid.svg);
	display: inline-block;
	padding-left: 20px;
	width: 15px;
} */

nav ul li a {
	text-decoration: none;
	color: inherit;
	padding: 7px 30px;
	border-radius: 6px;
}

nav ul li a:hover {
	background-color: var(--clr-base);
	color: var(--clr-brand-middle);

}

nav .socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding-right: 40px;
}

nav .socials .fa-facebook{
	color: #1877F2;
	font-size: 35px;
}

nav .socials .fa-whatsapp {
	color: #25D366;
	font-size: 35px;
}

nav .socials a:nth-child(1) {
	width: 33px;
	height: 33px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}



/* Footer */

footer {
	height: 100px;
	background: radial-gradient(circle, #30a4ae 0%, #018996 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	border-bottom-left-radius: 6px;
	border-bottom-right-radius: 6px;
}

/* Site Content*/

.site-content {
	flex-grow: 1; 
}

/* Home page */

.home-page-container {
	width: 100%;
	padding-left: 40px;
	padding-right: 40px;
	background-color: inherit;
}

.offers-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	border-radius: 6px;
	background-color: #fff;
	gap: 2%;
	padding: 2%;
}

.offer-img {
	width: 100%;
	border-radius: 6px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.offer-img img {
	width: 100%;
	height: 100%;
	border-radius: 6px;
	object-fit: cover;
	cursor: pointer;
	cursor: -webkit-zoom-in;
	/*transition: transform 1s ease-in;*/
	display: block;

}

/* .offer-img img:hover {
	transform: scale(1.05);
} */

@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
  }

.offer-img .fullscreen {
	position: fixed;
	top: 0;
	left: 0;
	opacity: 1;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background-color: rgb(25 25 25 / 0.5);
	z-index: 99999;
	/*animation: fadeIn 1s;*/
}

.offer-img .fullscreen:hover {
	/*transform: none;*/
	cursor: -webkit-zoom-out;
}

.home-title {
	font-family: "Poppins", sans-serif;
	font-weight: 200;
	font-size: 22px;
	background-color: var(--clr-brand-middle);
	color: #fff;
	margin-bottom: 40px;
	margin-top: 50px;
	margin-left: -40px;
	padding: 7px 30px;
	width: fit-content;
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}

.grid-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.grid-element {
	background-color: #fff;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 6px;
}

.grid-element:hover {
	background-color: var(--clr-brand-middle);
	cursor: pointer;
}

.grid-element:hover .element-title h2{
	color: #fff;
}

.grid-element:hover > .arrow:after {
	color: var(--clr-base);
}

.element-title h2{
	font-size: 18px;
	font-weight: 600;
	color: var(--clr-brand-middle);
	font-family: "Poppins", sans-serif;
}

.list {
	counter-reset: list-number;
}

.arrow {
	width: 100px;
	height: 100px;
	position: relative;
	color: #fff;
	z-index: 998;
	padding: 10px;
}

.arrow:after {
	counter-increment: list-number;
  	content: counter(list-number);
	position: absolute;	
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 999;
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 25px;
	font-weight: 600;
	margin-left: -10px;
}

.arrow img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}


.element-title {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding: 5px 10px 10px 0;
}

.contact-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.contact-info p {
	font-size: 20px;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	padding-bottom: 5px;
	letter-spacing: 1.2px;
	color: var(--clr-brand-middle);
}

.contact-info p a {
	color: inherit;
	text-decoration: none;
}

.contact-info p a:hover {
	text-decoration: underline;
}

.colleagues-flex-container {
	display: grid;
	width: 80%;
	margin: 20px auto;
	grid-template-columns: repeat(2, 50%);
}

.colleague-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	text-align: center;
	padding-bottom: 15px;
}

.colleague-card img {
	border: 2px solid var(--clr-brand-middle);
	border-radius: 8px;
	width: 80px;
}

.colleague-card .text {
	font-family: "Poppins", sans-serif;
	font-size: 14px;
	color: var(--clr-brand-middle);
}

.colleague-card .text a {
	color: inherit;
	text-decoration: none;
}

.colleague-card .text a:hover {
	text-decoration: underline;
}

.contact-directions {
	width: 100%;
	font-family: 'Poppins', sans-serif;
	font-size: 22px;
	color: var(--clr-brand-middle);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 30px;
}

.contact-directions h3 {
	font-size: 22px;
	font-weight: 300;
}

.contact-directions div {
	min-height: 70%;
	width: 80%;
	border: 2px solid var(--clr-brand-middle);
	border-radius: 8px;
	letter-spacing: 1.2px;
	font-weight: 300;
	font-size: 14px;
	padding: 20px;
}



.contact-map p {
	font-size: 22px;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	padding-bottom: 20px;
	letter-spacing: 1.5px;
	color: var(--clr-brand-middle);
}

.contact-map {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}

.img-container {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	min-height: 100vh;
	height: auto;
	background-color: var(--clr-base);
}

.img-flex-container {
	width: 100%;
	height: auto;
	display: grid;
	margin-top: 50px;
	grid-template-columns: 1fr 1fr;
	background-color: var(--clr-base-dark);
	padding: 3%;
	gap: 3%;
}

.img-flex-container .clickable img {
	cursor: -webkit-zoom-in;
}

.img-flex-container .fullscreen {
	position: fixed;
	top: 50px;
	left: 0;
	width: 100vw;
	height: calc(100vh - 50px);
	z-index: 99999;
}

.img-flex-container .fullscreen img {
	width: 100%;
	height: auto;
	object-fit: contain;
	animation: fadeIn 1s;
}

.img-flex-container .fullscreen:hover img {
	transform: none;
	cursor: -webkit-zoom-out;
}

.img-single-container {
	width: 100%;
	height: 100vh;
	display: grid;
	margin-top: 50px;
	margin-bottom: 2%;
	grid-template-columns: 1fr;
	background-color: var(--clr-base-dark);
	padding: 1%;
}

.img-container img {
	width: 100%;
	height: 80%;
	object-fit: contain;
}

.img-container .img-container-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	padding: 5px;
	background: var(--clr-brand-middle);
	color: #fff;	
}

.img-container .img-container-nav button {
	font-size: 16px;
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	border: none;
	background-color: transparent;
	margin-left: 40px;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 7px 30px;
	border-radius: 6px;
}

.img-container .img-container-nav button:hover {
	background-color: #fff;
	color: var(--clr-brand-middle);
}

/* Other Pages */

.custom-page-container {
	padding: 50px;
	min-height: 500px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	font-family: "Poppins", sans-serif;
	color: var(--clr-brand-middle);
}

.page-title {
	padding-bottom: 50px;
}

.page-featured-img {
	width: 100%;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.page-featured-img img {
	width: 60%;
	height: 100%;
	object-fit: contain;
}

/* Media Queries */

@media screen and (min-width: 1023px) and (max-width: 1200px) {


	.grid-container {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.header-middle {
		height: 200px;
	}

	 .header-middle .logo {
		background-size: auto 180%;
	 }

	 .header-bottom nav {
		padding: 10px 20px;
		margin: auto 0;
		background-color: var(--clr-brand-middle);
		display: flex;
		align-items: center;
		gap: 40px;
	}
	
	nav ul{
		display: flex;
		align-items: center;
		justify-content: flex-start;
		list-style: none;
		gap: 40px;
	}
	
	nav ul li {
		font-family: var(--ff-accent);
		font-size: 18px;
		letter-spacing: 1px;
	}

	.element-title h2 {
		font-size: 16px;
	}

	.header-top {
		height: 50px;
	 }
	
	.header-bottom {
		top: 50px;
	}
	
	 .header-contact {
		flex-wrap: wrap;
	 }
	
	 .header-contact p {
		font-size: 13px;
		letter-spacing: 1;
		font-weight: 500;
		line-height: 7px;
	 }

	 .page-featured-img img {
		width: 80%;
		height: 100%;
		object-fit: contain;
	}

}

@media screen and (min-width: 768px) and (max-width: 1023px) {

	.header-top {
		height: 60px;
	 }

	.header-middle {
		height: 200px;
	}

	 .header-middle .logo {
		background-size: auto 150%;
	 }
	
	 .header-bottom {
		top: 60px;
	 }

	
	 .header-contact {
		flex-wrap: wrap;
	 }
	
	 .header-contact p {
		font-size: 13px;
		letter-spacing: 1;
		font-weight: 500;
		padding-top: 5px;
	 }


	.grid-container {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.header-lang {
		padding-top: 5px;
	}


	.header-contact {
		padding-top: 5px;
	}

	.header-contact p{
		font-size: 12px;
		letter-spacing: 1px;
		line-height: 7px;
	}

	nav ul {
		gap: 10px;
		justify-content: center;
		flex-wrap: wrap;
	}

	nav ul li {
		font-size: 15px;
		letter-spacing: 1px;
	}

	.element-title h2 {
		font-size: 16px;
	}

	.page-featured-img img {
		width: 80%;
		height: 100%;
		object-fit: contain;
	}
}

@media screen and (max-width: 767px) {
	/* Header */


	.header-top {
		height: 80px;
		padding-top: 10px;
		padding-bottom: 10px;
		border: none;
	}

	.header-contact {
		flex-direction: column;
		align-items: flex-start;
		margin-left: 10px;
	}

	.header-contact p {
		font-size: 12px;
		letter-spacing: 1.5px;
		line-height: 8px;
	}

	.header-contact p:first-child {
		display: none;
	}

	.header-contact .mobile-hidden {
		display: none;
	}
	
	 .header-lang {
		margin-right: 10px;
	 }

	 .header-middle {
		height: 200px;
	}
	
	 .header-middle .logo {
		background-size: contain;
	 }

	.header-bottom {
		top: 80px;
	 }

	 .mobile-header-menu {
		display: block;
	  }
	
	.main-navigation button {
		display: block;
		width: 50px;
		height: 50px;
		background-color: transparent;
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		border: none;
	}

	.main-navigation button:hover {
		background-color: var(--clr-base);
		color: var(--clr-brand-middle);
		border-radius: 8px;
	}

	.main-navigation button i {
		font-size: 32px;
	}

	.header-bottom nav {
		padding: 5px 0 5px 30px;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	nav ul {
		display: none;
	}

	.mobile-menu {
		position: absolute;
		top: 60px;
		left: 0;
		width: 100%;
		background-color: var(--clr-brand-middle);
		padding: 2rem;
	}

	.mobile-menu ul {
		list-style: none;
	}

	.mobile-menu ul li {
		padding-bottom: 10px;
	}

	.mobile-menu ul li a {
		color: #fff;
		font-size: 16px;
		font-family: "Poppins", sans-serif;
		letter-spacing: 1px;
		text-transform: uppercase;
		padding: 10px;
		border-radius: 8px;
	}

	.mobile-menu ul li a:hover {
		background-color: var(--clr-base);
		color: var(--clr-brand-middle);
	}


	.grid-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}


	.site-content {
		padding: 0;
	}

	.offer-img {
		width: 100%;
		padding: 5px;
	}
	
	.offer-img img {
		width: 100%;
		height: auto;
		border-radius: 6px;
		object-fit: cover;
		cursor: pointer;
		cursor: -webkit-zoom-in;
		transition: transform 0.5s ease;
	}

	.offer-img .fullscreen {
		top: 0;
		left: 0;
		width: 100vw;
		height: auto;
		z-index: 99999;
	}

	.home-page-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.home-title {
		font-size: 18px;
		margin-top: 20px;
		margin-bottom: 20px;
		margin-left: -20px;
		padding: 5px 20px;
	}

	.element-title  h2{
		font-size: 16px;
	}

	.contact-info {
		padding-top: 30px;
	}

	.contact-info p {
		font-size: 14px;
	} 


	.page-featured-img img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}

}

