@import 'menu.css';
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --main-color: #ce7828;
  --background-color: #e3e3e3FF;
  --background-button: #AAAAAA88;
  --background-color-transparent: #e3e3e300;
  --text-color: #1e1e1eFF;
  --circle-size: 5rem;
  --duration: 0.5s;
  --timing: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
  width: 0;
  height: 0;
}

body {
  background-color: var(--background-color);
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
body .pict-container {
  position: absolute;
  right: 0;
  width: 40%;
  height: 100%;
  padding: 0;
  z-index: 0;
  opacity: 1;
}
body .pict-container .picture {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
}
body .pict-container .picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body .pict-container .picture .ME {
  opacity: 1;
  z-index: 2;
  position: absolute;
}
body .pict-container .picture .BW {
  opacity: 0.5;
  z-index: 1;
  filter: grayscale(100%);
}
body .pict-container .fade {
  position: absolute;
  background-image: linear-gradient(90deg, var(--background-color) 0%, var(--background-color-transparent) 100%);
  height: 100%;
  width: 300px;
  z-index: 3;
  padding: 0;
}
@media screen and (max-width: 1200px) {
  body .pict-container {
    width: 100%;
  }
  body .pict-container .fade {
    width: 100%;
    background-image: linear-gradient(0deg, var(--background-color) 30%, var(--background-color-transparent) 80%);
  }
}

.navbar-container {
  position: absolute;
  width: 100vw;
  height: 200px;
  background-image: linear-gradient(180deg, var(--background-color) 0%, var(--background-color-transparent) 100%);
  z-index: 2;
}
.navbar-container .navbar {
  max-width: 2000px;
  margin: 0 auto;
  display: flex;
}
.navbar-container .navbar .title {
  font-family: "Montserrat";
  font-size: 20px;
  font-weight: 400;
  margin: 50px auto 0 100px;
  color: var(--text-color);
  text-decoration: none;
}
.navbar-container .navbar ul {
  margin: 50px 100px 0 auto;
  list-style-type: none;
  font-family: "Montserrat";
}
.navbar-container .navbar ul li {
  display: inline;
  margin-left: 50px;
  cursor: pointer;
  color: var(--text-color);
  font-weight: 400;
  position: relative;
  font-size: 20px;
}
.navbar-container .navbar ul li a {
  text-decoration: none;
  color: var(--text-color);
}
.navbar-container .navbar ul li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
.navbar-container .navbar ul li:hover::after,
.navbar-container .navbar ul li :focus::after {
  opacity: 1;
  transform: translate3d(0, 0.2em, 0);
}
.navbar-container .navbar .button {
  display: none;
}
@media screen and (max-width: 1200px) {
  .navbar-container .navbar .title {
    margin: 30px auto 0 10vw;
  }
  .navbar-container .navbar ul {
    display: none;
  }
  .navbar-container .navbar .button {
    display: block;
    margin: 26px 10vw 0 auto;
  }
}

.info-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  max-width: 2000px;
  z-index: 1;
  left: 50%;
  transform: translate(-50%);
}
.info-container .info {
  width: 750px;
  margin-left: 100px;
}
.info-container .info h1 {
  color: var(--text-color);
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  margin: 0 0 20px 0;
}
.info-container .info h1 strong {
  font-weight: 800;
  font-size: 48px;
}
.info-container .info h2 {
  color: var(--main-color);
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  margin: 0 0 20px 0;
}
.info-container .info p {
  color: var(--text-color);
  text-align: justify;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  font-size: 22px;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .info-container .info {
    width: 80vw;
    margin-left: 10vw;
    margin-top: 30vh;
  }
  .info-container .info h1 {
    font-size: 24px;
  }
  .info-container .info h1 strong {
    font-size: 28px;
  }
  .info-container .info h2 {
    font-size: 26px;
  }
  .info-container .info p {
    font-size: 16px;
  }
}
@media screen and (max-width: 700px) {
  .info-container .info h1 {
    font-size: 16px;
  }
  .info-container .info h1 strong {
    font-size: 20px;
  }
  .info-container .info h2 {
    font-size: 18px;
  }
  .info-container .info p {
    font-size: 12px;
  }
}

.social-container {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 2000px;
  bottom: 0;
  z-index: 2;
}
.social-container .social {
  margin-left: 100px;
  margin-bottom: 50px;
  display: flex;
}
.social-container .social a {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0;
  padding: 0;
}
.social-container .social a svg {
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.social-container .social a svg path {
  fill: var(--text-color);
  transition: fill 0.2s ease-in-out;
}
.social-container .social a svg .text path {
  fill: var(--background-color);
  z-index: 2;
}
.social-container .social a svg:hover path {
  fill: var(--main-color);
}
.social-container .social a svg:hover .text path {
  fill: var(--background-color);
}
.social-container .social a:first-child {
  margin-right: 50px;
}
@media screen and (max-width: 1200px) {
  .social-container .social {
    margin-bottom: 30px;
    margin-left: 10vw;
  }
  .social-container .social a svg {
    width: 30px;
    height: 30px;
  }
}

.settings {
  display: flex;
  position: absolute;
  bottom: 50px;
  right: 50px;
  background-color: var(--background-button);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  width: 70px;
  height: 70px;
  border-radius: 35px;
  z-index: 2;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out;
}
.settings .close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}
.settings .close svg {
  width: 40px;
  height: 40px;
}
.settings .close svg path {
  fill: var(--text-color);
}
.settings .open {
  width: 250px;
  height: 180px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  display: none;
  flex-direction: column;
}
.settings .open .close-button {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1;
}
.settings .open .close-button svg {
  width: 35px;
  height: 35px;
}
.settings .open .close-button svg path {
  fill: var(--text-color);
}
.settings .open .mode-select {
  display: flex;
  justify-content: center;
  gap: 30px;
  width: calc(100% - 40px);
  height: 70%;
  margin: 0 20px;
  font-family: "Montserrat";
  border-bottom: 1px solid var(--text-color);
}
.settings .open .mode-select div {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.settings .open .mode-select div svg {
  width: 65px;
  height: 65px;
}
.settings .open .mode-select div svg path {
  fill: var(--text-color);
}
.settings .open .mode-select div p {
  margin-bottom: 0;
  color: var(--text-color);
}
.settings .open .language {
  display: flex;
  width: 100%;
  height: 30%;
  font-family: "Montserrat";
}

@media screen and (max-width: 1200px) {
  ul {
    display: none;
  }
  svg {
    display: block;
  }
}/*# sourceMappingURL=home.css.map */