@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap");
:root {
  --bg: #242943;
  --fc: #020202;
  --theme: #bdcc1d;
  --surface: #ffffff;
  --surface-2: #f6f6f6;
  --border: #e3e3e3;
  --radius: 16px;
}

/*
:root[data-theme="dark"] {
  --bg: #020202;
  --fc: #efefef;
  --theme: #bdcc1d;

  --surface: #111111;
  --surface-2: #1b1b1b;
  --border: #2b2b2b;
}

*/
body {
  background-color: var(--bg);
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0px auto;
}

.navbar {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
}
.navbar .container-fluid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.navbar .navbar-brand {
  margin: 0;
}
.navbar .navbar-brand img {
  display: block;
  height: 60px;
  width: auto;
}
.navbar .navbar-toggler {
  margin-left: auto;
  border-color: rgb(189, 204, 29);
}
.navbar .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(189,204,29,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar .navbar-collapse {
  width: 100%;
  margin-top: 1rem;
}
.navbar .navbar-collapse .navbar-nav {
  align-items: center;
}
.navbar .navbar-collapse .navbar-nav .nav-link {
  text-transform: uppercase;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800px;
  letter-spacing: 3px;
  padding-left: 16px;
  padding-right: 16px;
}
.navbar .logo-right {
  display: none;
}

@media (min-width: 992px) {
  .navbar .navbar-brand {
    margin: 0;
  }
  .navbar .navbar-brand img {
    display: block;
    height: 80px;
    width: auto;
  }
  .navbar .container-fluid {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    align-items: center;
  }
  .navbar .navbar-brand:first-child {
    justify-self: start;
  }
  .navbar .navbar-brand:last-child {
    display: block;
    justify-self: end;
  }
  .navbar .navbar-collapse {
    width: auto;
    margin: 0;
    display: flex !important;
    justify-content: center;
  }
  .navbar .navbar-nav {
    flex-direction: row;
    gap: 2rem;
  }
  .navbar .navbar-toggler {
    display: none;
  }
  .navbar .logo-right {
    display: block;
  }
}
.grid-home .col-lg-6 {
  background-color: #249D8F;
}
.grid-home .col-lg-6:nth-child(2) {
  background-color: #E9C46A;
}
.grid-home .col-lg-6:nth-child(3) {
  background-color: #E76F51;
}
.grid-home .col-lg-6:nth-child(4) {
  background-color: #FDF0D5;
}
.grid-home .col-lg-6 .link-home {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.grid-home .col-lg-6 .link-home .img-fluid {
  position: relative;
  z-index: 0;
  opacity: 0.5;
  filter: grayscale(1);
  transition: all 1s ease-in;
}
.grid-home .col-lg-6 .link-home:hover .img-fluid {
  opacity: 1;
  filter: grayscale(0);
}
.grid-home .col-lg-6 .link-home .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-decoration: none;
  padding: 3rem;
}
.grid-home .col-lg-6 .link-home .overlay h2 {
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
}

footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
footer img {
  max-width: 60% !important;
}
footer .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  list-style: none;
}
footer .social-icons li {
  margin: 0;
  padding: 0;
}
footer .social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.25s ease;
}
footer .social-icons a:hover {
  transform: translateY(-2px);
  background: #f5f5f5;
}
footer .social-icons a img {
  display: block;
  width: 20px;
  height: 20px;
  filter: brightness(0);
  transition: filter 0.25s ease;
}

.bg-over-2 {
  background-color: rgba(255, 255, 255, 0.05);
}

@media (min-width: 992px) {
  .col-home {
    position: relative;
    background: var(--bg);
    z-index: 1;
    box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.45);
    border: 1px solid #000;
  }
}

@media (min-width: 992px) {
  .container-fluid-img {
    margin-top: -15vh;
    position: relative;
    z-index: 0;
  }
}

.btn-theme {
  background-color: var(--theme);
  transition: all 0.25s ease;
  font-weight: 800;
}
.btn-theme:hover {
  background-color: #000;
  color: var(--theme);
}/*# sourceMappingURL=stili.css.map */