/* Resetting default margin and padding for all elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Header styles */
header {
    background-color: #000;
    color: #fff;
    padding: 20px;
}

/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #fff;
    margin: 0 20px;
    transition: color 0.3s ease-in-out;
}

nav a:hover {
    color: #f68526;
}

/* Main content container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Section styles */
section {
    padding: 40px 0;
}

/* Footer styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

.button:hover {
    background-color: #fff;
    color: #000;
}

/* Forms */
form {
    max-width: 600px;
    margin: 0 auto;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    nav a {
        margin: 10px 0;
    }
}

/* Responsive menu styles */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 20px;
}

.logo img {
  width: 80px; /* Adjust width as needed */
  height: auto; /* Maintain aspect ratio */
}

.menu {
    list-style: none;
    display: flex;
}

.menu li {
    margin: 0 15px;
}

.menu a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease-in-out;
}

.menu a:hover {
    color: #f68526;
}

/* Mobile styles */
@media only screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        margin-top: 20px;
    }
}

/* WELCOME */

.welcome-section {
    text-align: center;
    padding: 350px 0;
    background: url('../img/bg-1.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

.welcome-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    margin-top: 20px;
	font-weight: 500;
}


/* Changing Slogan Section styles */
.changing-slogan {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
	font-weight: 500;
	padding: 10px 0 0 0;
}

.slogan-text {
    display: none;
    animation: fadeInOut 5s infinite; /* Adjust the duration as needed */
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
    }

    35%, 65% {
        opacity: 1;
    }
}

/* Description Section styles */
.description-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 200px 0 200px 0;
    font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

.button-find {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 22px 50px 20px 50px;
    background-color: #000;
    color: #f68526;
    text-decoration: none;
    border-radius: 35px;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
	font-weight: 500;
}

.button-find:hover {
    background-color: #f68526;
    color: #fff;
}

.button-landing {
	padding: 50px 0 0 0;
}

.services-slogan-section {
    text-align: center;
    padding: 50px 0;
    background: #fff;
}

.services-slogan-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    margin-top: 20px;
	font-weight: 500;
	color: #000
}

/* Grid Section styles */
.grid-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns and their width as needed */
    grid-template-rows: repeat(4, 1fr); /* Adjust the number of rows and their height as needed */
    gap: 20px; /* Adjust the gap between grid items as needed */
    padding: 50px; /* Adjust the padding as needed */
    flex-direction: column;
    align-items: center; /* Center content vertically */

}

.grid-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
	font-weight: 900;
	color: #f68526;
}

.grid-section h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
	font-weight: 500;
	padding: 0 0 0 0;
}

.grid-section p {
    font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	padding: 10px 0 25px 0;
}

.grid-item {
    padding: 20px; /* Adjust the padding for each grid item as needed */
    text-align: left;
}

.grid-item img {
    width: 80%;
    height: auto;
}

/* Responsive styles for smaller screens */
@media only screen and (max-width: 768px) {
    .grid-section {
        grid-template-columns: 1fr; /* Display a single column on smaller screens */
    }
}

.grid-section-color {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns and their width as needed */
    grid-template-rows: repeat(3, 1fr); /* Adjust the number of rows and their height as needed */
    gap: 20px; /* Adjust the gap between grid items as needed */
    padding: 50px; /* Adjust the padding as needed */
    flex-direction: column;
    align-items: center; /* Center content vertically */
	background-color: #f68526

}

.grid-section-color h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
	font-weight: 900;
	color: #fff;
}

.grid-section-color h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
	font-weight: 500;
	padding: 0 0 0 0;
	color: #fff;
}

.grid-section-color p {
    font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	padding: 10px 0 25px 0;
	color: #fff;
}

/* Responsive styles for smaller screens */
@media only screen and (max-width: 768px) {
    .grid-section-color {
        grid-template-columns: 1fr; /* Display a single column on smaller screens */
    }
}

.about-slogan-section {
    text-align: center;
    padding: 50px 0;
	background: url('../img/bg-3.png') no-repeat center center fixed;
    background-size: cover;
	color: #fff;
}

.about-slogan-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    margin-top: 20px;
	font-weight: 500;
	color: #fff;
}

.story-section {
    text-align: left;
    padding: 100px 0;
    background: url('../img/bg-3.png') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

.story-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
	font-weight: 500;
	color: #fff;
}

.story-section h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
	font-weight: 400;
	padding: 10px 0 0 0;
	color: #fff;
}

.story-text {
    padding: 0 50px 0 50px;
	width: 70%;
    height: auto;
}

.values-text h3 {
	padding: 0 50px 0 50px;
	color: #fff;
}

.values-section {
	background: url('../img/bg-3.png') no-repeat center center fixed;
    background-size: cover;
}

.grid-section-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns and their width as needed */
    grid-template-rows: repeat(1, 1fr); /* Adjust the number of rows and their height as needed */
    gap: 20px; /* Adjust the gap between grid items as needed */
    padding: 0 50px 0 50px; /* Adjust the padding as needed */
    flex-direction: column;
    align-items: center; /* Center content vertically */
	background: url('../img/bg-3.png') no-repeat center center fixed;
    background-size: cover;
}

.grid-section-values h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
	font-weight: 900;
	color: #fff;
}

.grid-section-values h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
	font-weight: 500;
	padding: 0 0 0 0;
	color: #fff;
}

.grid-section-values p {
    font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	padding: 10px 0 25px 0;
	color: #fff;
}

.grid-item-custom {
    padding: 20px; /* Adjust the padding for each grid item as needed */
    text-align: center;
}

.grid-item-custom img {
    width: 20%;
    height: auto;
	margin-bottom: 20px;
}

.contacts {
    background: url('../img/bg-2.png') no-repeat center center fixed;
    background-size: cover;
	color: #fff;
	text-align: center;
}

.grid-section-contacts {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns and their width as needed */
    grid-template-rows: repeat(2, 1fr); /* Adjust the number of rows and their height as needed */
    gap: 20px; /* Adjust the gap between grid items as needed */
    padding: 50px; /* Adjust the padding as needed */
    flex-direction: column;
    align-items: center; /* Center content vertically */

}

.grid-section-contacts h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
	font-weight: 900;
	color: #fff;
}

.grid-section-contacts h5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
	font-weight: 500;
	padding: 0 0 0 0;
	color: #fff;
}

.grid-section-contacts p {
    font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	color: #fff;
}

/* Responsive styles for smaller screens */
@media only screen and (max-width: 768px) {
    .grid-section-contacts {
        grid-template-columns: 1fr; /* Display a single column on smaller screens */
    }
}

.grid-item-contacts {
    padding: 20px; /* Adjust the padding for each grid item as needed */
    text-align: center;
	width: 80%;
    height: auto;
	position: relative;
	left: 10%;

}

.icon {
	height: 25px;
	margin: 0 10px 0 0;
}

.mr-top-3 {
	margin-top: 3px;
}

.mr-top-15 {
	margin-top: 15px;
}


.pseudo-flex {
	display: flex;
	justify-content: center;
}

.animate {
    opacity: 0; /* Initially make the elements invisible */
    transform: translateY(20px); /* Move elements 20px down */
    transition: opacity 1.5s ease, transform 1.5s ease; /* Smooth transition effect */
  }
  
  /* When the element comes into view, apply animation */
.animate.show {
    opacity: 1; /* Make the elements visible */
    transform: translateY(0); /* Move elements back to their original position */
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 10px 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  text-align: center;
}

#cookie-banner p {
  width: 50%;
  left: 25%;
  position: relative;
}

#accept-cookie-btn {
  background-color: #2d6474;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  margin-top: 15px;
      transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

#accept-cookie-btn:hover {
  background-color: #1c3145;
}

.policy {
	padding: 50px;
}

.policy h1, h2 {
	margin: 15px;
}