/* POLICES */
/*******************************/
@import url("https://fonts.googleapis.com/css2?family=BBH+Bartle&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap");
/* VARIABLES */
/*******************************/
/* MIXINS (@include)*/
/*******************************/
/* GENERAL */
/*******************************/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, white, #4fc3f7);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  overflow-x: hidden;
}

body.sroll {
  overflow: hidden;
}

.logo {
  font-family: "BBH Bartle", sans-serif;
  text-decoration: none;
  color: black;
}

.logo1 {
  font-size: 25px;
  padding: 20px;
}

h1,
h2 {
  font-size: clamp(25px, 4vw, 40px);
  text-align: center;
}

.title-container p {
  font-size: clamp(13px, 2vw, 20px);
  text-align: center;
}

h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 16px;
}

section {
  width: 100vw;
  padding: 50px 10px 0;
}

.btn {
  text-decoration: none;
  width: 150px;
  background-color: #235789;
  border: none;
  color: white;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  padding: 12px 10px;
  border-radius: 5px;
  transition: 0.2s;
  margin: auto;
}
.btn:hover {
  background-color: #3d6c98;
  transition: 0.2s;
  cursor: pointer;
}

/* HEADER */
/*******************************/
header {
  width: 100vw;
  height: 120px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
header nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header nav a {
  text-decoration: none;
  color: black;
  margin: 20px;
  font-size: 16px;
  transition: opacity 0.2s;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
header nav a:hover {
  opacity: 0.5;
  transition: opacity 0.2s;
}
header .menu,
header .closer {
  width: 40px;
  height: 30px;
  position: absolute;
  right: 50px;
  bottom: 10px;
  display: none;
  cursor: pointer;
}

/* SECTION CARDS */
/*******************************/
.cards-container {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.cards-container .card {
  width: 100%;
  width: 400px;
  height: 170px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  padding: 15px;
  display: flex;
  align-items: center;
}
.cards-container .card span {
  font-size: 30px;
  margin-right: 20px;
  align-self: flex-start;
}
.cards-container .card p {
  margin-top: 5px;
}

/* SECTION CONTACT */
/*******************************/
form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 80%;
  min-width: 260px;
  max-width: 400px;
  margin: auto;
  padding-top: 50px;
}
form .form-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  width: 100%;
}
form .form-item label {
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
}
form .form-item input,
form .form-item select,
form .form-item textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: solid 1px;
  outline: none;
  background-color: white;
  resize: none;
  font-size: 16px;
}
form .form-item input::-moz-placeholder, form .form-item select::-moz-placeholder, form .form-item textarea::-moz-placeholder {
  font-size: 14px;
}
form .form-item input::placeholder,
form .form-item select::placeholder,
form .form-item textarea::placeholder {
  font-size: 14px;
}
form .form-item input:focus,
form .form-item select:focus,
form .form-item textarea:focus {
  border: solid 2px;
}

.popup {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  width: 75%;
  margin: auto;
  text-align: center;
  background: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

.popup.show {
  opacity: 1;
  transform: translateY(0);
  transition: 0.3s;
}

/* CLIENTS */
/*******************************/
.clients {
  padding: 0;
  height: 100vh;
}
.clients h2 {
  font-size: 20px;
}

.alert {
  width: 100vw;
  height: auto;
  padding: 20px;
  text-align: center;
  background-color: #15b097;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

.password {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 300px;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
}
.password p {
  margin-top: 10px;
  text-align: center;
}

/* MENTIONS */
/*******************************/
.mentions {
  min-height: 100vh;
}
.mentions h4 {
  padding: 20px 0 10px;
  font-size: 20px;
}
.mentions h2 {
  text-align: left;
  font-size: 20px;
  padding: 40px 0 15px;
}

/* FOOTER */
/*******************************/
footer {
  width: 100vw;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
}
footer span {
  margin-bottom: 15px;
  text-align: center;
}
footer span a {
  color: black;
}

/* MEDIA QUERIES */
/*******************************/
@media screen and (max-width: 580px) {
  header nav {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
  }
  header nav a {
    color: white;
  }
  header nav.open {
    display: block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #333333;
    transition: 0.2s ease-in-out;
  }
  header .menu {
    display: block;
  }
  .logo1 {
    margin: 0 auto;
    padding: 20px 0;
  }
  .popup {
    left: 0;
    right: 0;
    width: 90%;
    margin: auto;
  }
}/*# sourceMappingURL=style.css.map */