@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
html {
  font-size: 10px;
}

body {
  overflow-x: hidden;
  background-color: #fcfcfc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  outline: none;
  border: none;
}

*:focus, *:focus-visible {
  outline: none;
}

a, a:visited, a:hover, a:active {
  text-decoration: none;
  color: #222;
}

.glass {
  background: rgba(248, 251, 255, 0.39);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 156, 196, 0.1);
  backdrop-filter: blur(10.4px);
  -webkit-backdrop-filter: blur(10.4px);
}

.container {
  position: relative;
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.navbar {
  position: fixed;
  background-color: transparent;
  background-color: #fcfcfc;
  width: 100%;
  top: 0;
  left: 0;
  padding: 3rem 0;
  border-bottom: 0.2rem solid transparent;
  transition: top 0.2s ease-in-out, padding 0.2s ease-in-out, border 0.2s ease-in-out;
  z-index: 500;
}
.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}
.navbar.scrolled {
  padding: 1rem 0;
}
.navbar.border-bottom {
  border-bottom: 0.2rem solid #7caeee;
}
.navbar .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  cursor: pointer;
}
.navbar .logo img {
  width: auto;
  height: 5rem;
}
.navbar .logo span {
  font-size: 1.8rem;
  font-weight: 400;
  color: #3e70c2;
  font-style: italic;
  transition: color 0.2s ease-in-out;
}
.navbar .logo span.mobile {
  display: none;
}
@media only screen and (max-width: 550px) {
  .navbar .logo span {
    display: none;
  }
  .navbar .logo span.mobile {
    display: block;
  }
}
.navbar .logo:hover span {
  color: #1c4992;
}
.navbar .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  flex-shrink: 0;
}
.navbar .menu .nav-mobile {
  display: none;
  width: 3.1rem;
  height: 3rem;
  background-color: transparent;
}
.navbar .menu .nav-mobile:hover .inner {
  background-color: #1c4992;
}
.navbar .menu .nav-mobile:hover .inner::before, .navbar .menu .nav-mobile:hover .inner::after {
  background-color: #1c4992;
}
.navbar .menu .nav-mobile.mobile .inner {
  background-color: transparent;
}
.navbar .menu .nav-mobile.mobile .inner::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar .menu .nav-mobile.mobile .inner::after {
  transform: rotate(-45deg);
  top: 0;
}
.navbar .menu .nav-mobile .inner {
  position: relative;
  width: 3rem;
  height: 0.2rem;
  background-color: #3e70c2;
  transition: background-color 0.2s ease-in-out;
}
.navbar .menu .nav-mobile .inner::before {
  content: "";
  position: absolute;
  top: -0.9rem;
  left: 0;
  width: 3rem;
  height: 0.2rem;
  background-color: #3e70c2;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
}
.navbar .menu .nav-mobile .inner::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  left: 0;
  width: 3rem;
  height: 0.2rem;
  background-color: #3e70c2;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, top 0.2s ease-in-out;
}
@media only screen and (max-width: 990px) {
  .navbar .menu .nav-mobile {
    display: block;
  }
}
.navbar .menu .buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 990px) {
  .navbar .menu .buttons {
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 2rem;
    top: 6rem;
    right: 0;
    padding: 4rem 2rem 8rem 8rem;
    background-color: #fcfcfc;
    transition: height 0.4s ease-in-out, padding 0.4s ease-in-out;
    overflow: hidden;
  }
  .navbar .menu .buttons:not(.mobile) {
    height: 0;
    padding: 0;
  }
  .navbar .menu .buttons.mobile {
    height: 100vh;
  }
}
.navbar .menu .buttons .menu-item {
  cursor: pointer;
  font-size: 1.6rem;
  color: #222;
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  flex-shrink: 0;
}
.navbar .menu .buttons .menu-item.active {
  background-color: #3e70c2;
  color: #fcfcfc;
}
.navbar .menu .buttons .menu-item:hover {
  background-color: #c5d9f1;
}
.navbar .menu .buttons .menu-item:hover.active {
  background-color: #7caeee;
  color: #fcfcfc;
}

.hero {
  position: relative;
  background-image: url("./assets/img/wavy-dashed-bottom.svg"), linear-gradient(180deg, rgba(0, 0, 0, 0) 99.9%, rgb(255, 255, 255) 99.9%), url("./assets/img/hero.jpg");
  background-size: auto, cover, cover;
  background-position: bottom center, 50% 50%, 50% 50%;
  background-repeat: no-repeat;
  height: 100vh;
  width: 100%;
}
.hero .container {
  height: 100%;
  position: relative;
}
.hero .desc {
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  padding: 4rem;
  text-align: right;
}
.hero .desc span {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.hero .desc span h1 {
  font-family: "Ubuntu", "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
  font-size: 4.5rem;
  color: #fcfcfc;
  text-shadow: 0.1rem 0.1rem 0.1rem rgb(0, 0, 0);
}
.hero .desc span p {
  font-size: 2rem;
  color: #fcfcfc;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 1.4rem;
  text-shadow: 0.1rem 0.1rem 0.1rem rgb(0, 0, 0);
}
.hero .desc span a {
  display: inline-block;
  font-size: 1.8rem;
  color: #fcfcfc;
  font-weight: 400;
  line-height: 1.4;
  font-style: italic;
  margin-top: 1.4rem;
  border-radius: 1rem;
  padding: 1.2rem 2.4rem;
  background-color: #3e70c2;
  transition: background-color 0.2s ease-in-out;
}
.hero .desc span a:hover {
  background-color: #7caeee;
}

.offer h2 {
  padding-top: 3rem;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 300;
  color: #222;
}
.offer .offer-brief {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 6rem;
  justify-content: center;
}
.offer .offer-brief .offer-item {
  background-color: #e5f0ff;
  width: calc(50% - 1.5rem);
  padding: 3rem;
  border-radius: 1.5rem;
}
@media only screen and (max-width: 990px) {
  .offer .offer-brief .offer-item {
    width: 90%;
    margin: auto;
  }
}
.offer .offer-brief .offer-item .header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media only screen and (max-width: 550px) {
  .offer .offer-brief .offer-item .header {
    flex-direction: column;
  }
}
.offer .offer-brief .offer-item .header img {
  width: 9rem;
  height: auto;
}
.offer .offer-brief .offer-item .header h3 {
  font-size: 3rem;
  font-family: "Ubuntu", "Poppins", sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 550px) {
  .offer .offer-brief .offer-item .header h3 {
    text-align: center;
  }
}
.offer .offer-brief .offer-item p {
  margin-top: 2rem;
  font-size: 1.8rem;
  text-align: center;
}
@media only screen and (max-width: 550px) {
  .offer .offer-brief .offer-item p {
    text-align: left;
  }
}

.about, .contact {
  margin-top: 10rem;
}
.about h2, .contact h2 {
  padding-top: 3rem;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 300;
  color: #222;
}
.about.contact, .contact.contact {
  margin-top: 20rem;
}
.about.contact h2, .contact.contact h2 {
  margin-bottom: 10rem;
}
.about.contact .wrapper .description, .contact.contact .wrapper .description {
  max-width: 500px;
  width: 100%;
}
.about.contact .wrapper .description p:nth-child(2), .contact.contact .wrapper .description p:nth-child(2) {
  margin: 0;
}
.about.contact .wrapper .description .adress, .contact.contact .wrapper .description .adress {
  display: block;
  margin-top: 2rem;
}
.about .wrapper, .contact .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 3rem;
  margin-top: 6rem;
}
.about .wrapper.reverse, .contact .wrapper.reverse {
  flex-direction: row-reverse;
}
.about .wrapper .map, .contact .wrapper .map {
  margin-top: 10rem;
}
.about .wrapper .map iframe, .contact .wrapper .map iframe {
  width: 100%;
  height: 30rem;
  border-radius: 2rem;
  box-shadow: 0 0 4.5rem -1.2rem rgba(0, 0, 0, 0.75);
}
@media only screen and (max-width: 990px) {
  .about .wrapper, .contact .wrapper {
    flex-direction: column;
  }
}
.about .wrapper .description, .contact .wrapper .description {
  margin-top: 3rem;
  max-width: 55rem;
}
.about .wrapper .description h2, .contact .wrapper .description h2 {
  text-align: left;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 990px) {
  .about .wrapper .description h2, .contact .wrapper .description h2 {
    text-align: center;
  }
}
@media only screen and (max-width: 990px) {
  .about .wrapper .description, .contact .wrapper .description {
    max-width: 90%;
    margin-bottom: 5rem;
  }
}
.about .wrapper .description .left a, .contact .wrapper .description .left a {
  color: #3e70c2;
  transition: color 0.2s ease-in-out;
}
.about .wrapper .description .left a:hover, .contact .wrapper .description .left a:hover {
  color: #7caeee;
}
.about .wrapper .description a, .contact .wrapper .description a {
  font-size: 1.8rem;
  line-height: 1.7;
  display: inline-block;
}
.about .wrapper .description a p, .contact .wrapper .description a p {
  display: inline;
  color: #3e70c2;
  transition: color 0.2s ease-in-out;
}
.about .wrapper .description a p:hover, .contact .wrapper .description a p:hover {
  color: #7caeee;
}
.about .wrapper .description p, .contact .wrapper .description p {
  font-size: 1.8rem;
  line-height: 1.7;
  text-align: justify;
  margin: 2rem 0;
  color: #222;
}
.about .wrapper .description p strong, .contact .wrapper .description p strong {
  font-weight: 700;
}
.about .wrapper .description p.left, .contact .wrapper .description p.left {
  text-align: left;
}
.about .wrapper .portrait, .about .wrapper .place, .contact .wrapper .portrait, .contact .wrapper .place {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .wrapper .portrait img, .about .wrapper .place img, .contact .wrapper .portrait img, .contact .wrapper .place img {
  width: 100%;
  max-width: 45rem;
  height: auto;
  box-shadow: 0 0 4.5rem -1.2rem rgba(0, 0, 0, 0.75);
  border-radius: 1.5rem;
}

.details {
  margin-top: 20rem;
  margin-bottom: 10rem;
}
.details .accordion {
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  justify-content: space-around;
  flex-direction: row-reverse;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .details .accordion {
    display: block;
    width: 100%;
  }
}
.details .accordion .accordion-column {
  width: 50%;
  max-width: 45rem;
}
@media only screen and (max-width: 768px) {
  .details .accordion .accordion-column {
    margin: auto;
    max-width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .details .accordion .accordion-column {
    width: 90%;
  }
  .details .accordion .accordion-column .column-media {
    display: none;
  }
}
.details .accordion .accordion-media-margin {
  display: block;
  width: 100%;
}
.details .accordion .accordion-list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.details .accordion .accordion-media,
.details .accordion .accordion-media-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.details .accordion .accordion-media .accordion-media-entry,
.details .accordion .accordion-media .accordion-media-entry-mobile,
.details .accordion .accordion-media-mobile .accordion-media-entry,
.details .accordion .accordion-media-mobile .accordion-media-entry-mobile {
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.details .accordion .accordion-media .accordion-media-entry.active,
.details .accordion .accordion-media .accordion-media-entry-mobile.active,
.details .accordion .accordion-media-mobile .accordion-media-entry.active,
.details .accordion .accordion-media-mobile .accordion-media-entry-mobile.active {
  display: block;
  opacity: 1;
}
.details .accordion .accordion-media .accordion-media-entry img,
.details .accordion .accordion-media .accordion-media-entry-mobile img,
.details .accordion .accordion-media-mobile .accordion-media-entry img,
.details .accordion .accordion-media-mobile .accordion-media-entry-mobile img {
  width: 100%;
  max-width: 45rem;
  height: auto;
  box-shadow: 0 0 4.5rem -1.2rem rgba(0, 0, 0, 0.75);
  border-radius: 1.5rem;
}
.details .accordion .accordion-media.accordion-media-mobile,
.details .accordion .accordion-media-mobile.accordion-media-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .details .accordion .accordion-media.accordion-media-mobile,
  .details .accordion .accordion-media-mobile.accordion-media-mobile {
    display: flex;
    margin-top: 6rem;
  }
}
.details .accordion .accordion-media.accordion-media,
.details .accordion .accordion-media-mobile.accordion-media {
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .details .accordion .accordion-media.accordion-media,
  .details .accordion .accordion-media-mobile.accordion-media {
    display: none;
  }
}
.details .accordion .accordion-header {
  position: relative;
  font-weight: 300;
  font-size: 3.5rem;
  margin-bottom: 3.2rem;
  color: #222;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .details .accordion .accordion-header {
    display: block;
    text-align: center;
  }
}
.details .accordion-dark {
  color: #222;
}
.details .accordion-item {
  color: #3e70c2;
}
.details .accordion-item__button {
  cursor: pointer;
}
.details .accordion-item__button--header:hover {
  color: #222;
}
.details .accordion-item__button--header {
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
  margin: 0;
  font-size: 2.3rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .details .accordion-item__button--header {
    display: block;
    text-align: center;
  }
}
.details .accordion-item__desc {
  color: #222;
  overflow: hidden;
  display: none;
  font-size: 1.7rem;
  font-weight: 400;
}
.details .accordion-item__desc--text {
  margin: 0;
  padding: 1.6rem 0;
}

.footer {
  margin-top: 10rem;
  background-color: #b7c0ca;
  padding-top: 20rem;
  padding-bottom: 10rem;
  position: relative;
  background-image: url("./assets/img/wavy-dashed-top.svg"), linear-gradient(0deg, rgba(0, 0, 0, 0) 99%, rgb(255, 255, 255) 99%);
  background-size: cover, cover;
  background-position: top center, 50% 50%;
  background-repeat: no-repeat;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 990px) {
  .footer .container {
    flex-direction: column;
  }
}
.footer .container .sitemap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 470px) {
  .footer .container .sitemap {
    flex-direction: column;
  }
}
.footer .container .sitemap a {
  font-size: 1.6rem;
  color: #222;
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
  flex-shrink: 0;
}
@media only screen and (max-width: 550px) {
  .footer .container .sitemap a {
    padding: 0.5rem 1rem;
  }
}
.footer .container .sitemap a:hover {
  background-color: #c5d9f1;
}
.footer .container .copyright {
  flex-shrink: 0;
}
.footer .container .copyright p {
  font-size: 1.6rem;
  line-height: 2;
  color: #222;
  text-align: right;
}
@media only screen and (max-width: 990px) {
  .footer .container .copyright p {
    text-align: center;
  }
}
.footer .container .copyright p a {
  color: #3e70c2;
  transition: color 0.2s ease-in-out;
}
.footer .container .copyright p a:hover {
  color: #1c4992;
}/*# sourceMappingURL=style.css.map */