html {
  scroll-behavior: smooth;
  scroll-padding-top: -300px;
  overflow-x: hidden;
}

body {
  max-width: 1920px;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
}

* {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  overflow: hidden;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f2f2f2;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #423730;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #423730;
}

/***************************************************************/
/*** ERROR PAGE ************************************************/
/***************************************************************/
.error404 {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #423730;
}
.error404 section > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.error404 section > div * {
  color: #b7a895;
}
.error404 section > div #e404 {
  margin-bottom: 30px;
  font-size: var(--fs-h1);
}

.width {
  padding: 0 5%;
  margin: 0 auto;
}

h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  text-align: left;
  color: #423730;
  max-width: 20ch;
  margin-bottom: 41px;
}

a {
  text-decoration: underline;
  color: #f2f2f2;
  transition: all 0.5s linear;
  text-underline-offset: 4px;
}
a:hover {
  color: #423730;
}

a,
p,
span {
  font-family: "Lato", sans-serif;
}

span {
  display: inline-block;
}

p:not(:last-of-type) {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 12px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 10px 0;
  z-index: 99;
  transition: all 0.5s linear;
  background-color: #3b3b3b;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
}
header .width .logo {
  width: 50px;
  display: block;
  /* color: #f2f2f2;
  transition: all 0.5s linear; */
}

header .width .logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;

}
header .width .logo:hover {
  color: #423730;
}

#references {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px 50px;
  padding: 150px 5%;
}
#references .card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 10px;
  flex-direction: column;
  border-radius: 16px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  max-height: 80vh;
  min-height: 600px;
}
#references .card .top {
  width: 100%;
  height: 500px;
}
#references .card .top iframe {
  width: 100%;
  height: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
#references .card .bottom {
  width: 100%;
  padding: 24px 60px 24px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
#references .card .bottom p:first-of-type {
  font-weight: bold;
  font-size: 20px;
}
#references .card .bottom p a {
  position: absolute;
  right: 0px;
  bottom: 0px;
  transition: all 0.5s linear;
  background-color: #f2f2f2;
  padding: 10px;
}
#references .card .bottom p a img {
  width: 40px;
  height: 40px;
  transition: all 0.5s linear;
}
#references .card .bottom p a:hover img {
  transform: scale(1.1);
}

footer {
  padding-top: 30px;
  padding-bottom: 30px;
  transition: all 1s linear;
  border-top: 1px solid #f4f4f4;
  background-color: #3b3b3b;
  overflow: hidden;
  position: relative;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 1;
  position: relative;
  width: 100%;
}
footer .container * {
  color: #f4f4f4;
}
footer .container a {
  transition: all 0.5s linear;
  text-align: right;
  font-size: 18px;
}
footer .container a:hover {
  text-decoration: underline;
  color: #695d4d;
}

/******************************/
@media only screen and (max-width: 1440px) {
  #references {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 100px 50px;
    padding: 150px 5%;
  }
}
@media only screen and (max-width: 992px) {
  #references {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 10px;
    padding: 150px 5%;
  }
}
@media only screen and (max-width: 768px) {
  #references {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px 10px;
    padding: 150px 5%;
  }
}/*# sourceMappingURL=style.css.map */