* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: 0.2s;
}

body {
  font-family: "Raleway", sans-serif;
  background-image: url("/img/bg.jpg");
}

.site-container {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(8, auto);
  grid-template-areas: "logo logo gallery gallery gallery gallery gallery lang-select lang-select" "logo logo gallery gallery gallery gallery gallery lang-select lang-select" "main-text main-text gallery gallery gallery gallery gallery menu menu" "main-text main-text gallery gallery gallery gallery gallery menu menu" "main-text main-text gallery gallery gallery gallery gallery menu menu" ". . gallery gallery gallery gallery gallery . ." ". . . . . . . social-icons social-icons" "footer footer footer footer footer footer footer footer footer";
}

.logo {
  grid-area: logo;
}
.logo img {
  width: 80%;
  padding: 25px;
}
.logo img:hover {
  transform: scale(1.15) translate(0%, 0%);
}

.lang-select {
  grid-area: lang-select;
  display: flex;
  gap: 2rem;
  margin: auto;
}
.lang-select .divider {
  user-select: none;
}
.lang-select .lang-opt:hover {
  transform: scale(1.4) translate(0%, 0%);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  margin: auto;
}

.gallery {
  grid-area: gallery;
}
.gallery:hover {
  transform: scale(1.1) translate(0%, 0%);
}
.gallery:hover + .left-main-text {
  transform: scale(0.5) translate(-60%, -20%);
}
.gallery .gallery-img-container {
  position: relative;
  margin: 30px;
}
.gallery .gallery-img-container img {
  width: 100%;
}
.gallery .gallery-img-container .g-btn-left {
  position: absolute;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}
.gallery .gallery-img-container .g-btn-right {
  position: absolute;
  bottom: 10px;
  left: 10px;
  cursor: pointer;
}
.gallery .gallery-img-container .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  user-select: none;
}

.main-text {
  grid-area: main-text;
  font-size: 4.5rem;
  font-weight: 600;
  z-index: 999;
  text-transform: uppercase;
  margin: 30px 0px 0px 25px;
  color: rgb(42, 128, 155);
}
.main-text p:hover {
  transform: scale(1.15) translate(3%, 0%);
}
.main-text span {
  color: rgb(114, 115, 118);
}

.menu {
  grid-area: menu;
  letter-spacing: 0.25rem;
  margin-right: 1rem;
  padding-top: 40px;
}
.menu ul {
  list-style-type: none;
  text-align: right;
  display: flex;
  flex-direction: column;
}
.menu ul li {
  display: list-item;
  text-align: -webkit-match-parent;
}
.menu ul li a {
  text-transform: uppercase;
  float: right;
  text-decoration: none;
  color: black;
  font-size: 2rem;
  font-weight: 400;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.menu ul li a:after {
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  background: black;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.menu ul li a:hover:after {
  width: 100%;
  left: 0;
}

.social-icons {
  grid-area: social-icons;
  text-align: right;
  margin-right: 1rem;
}
.social-icons a {
  text-decoration: none;
}
.social-icons a .fb-icon, .social-icons a .ig-icon {
  margin-right: 0.3rem;
  margin-left: 0.3rem;
}
.social-icons a .fb-icon:hover, .social-icons a .ig-icon:hover {
  transform: scale(1.3);
  cursor: pointer;
}

footer {
  width: 100%;
  height: auto;
  text-align: center;
  margin: 1.5rem 0 0 0;
  grid-area: footer;
}
footer > p {
  margin-top: 20px;
}
footer .footer-contact-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}
footer .footer-contact-box a {
  color: black;
}
footer .footer-contact-box span {
  height: 2.5rem;
  width: 1px;
  background-color: black;
}
@media only screen and (max-width: 768px) {
  footer {
    width: 100vw;
    font-size: 0.8rem;
  }
  footer .footer-contact-box-left {
    width: 40%;
  }
  footer .footer-contact-box-right {
    width: 40%;
  }
}

@media only screen and (max-width: 768px) {
  .site-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(9, auto);
    grid-template-areas: "mobile-menu mobile-menu mobile-menu mobile-menu mobile-menu" "logo logo lang-select lang-select lang-select" "logo logo lang-select lang-select lang-select" "gallery gallery gallery gallery gallery" "gallery gallery gallery gallery gallery" "gallery gallery gallery gallery gallery" "gallery gallery gallery gallery gallery" "main-text main-text main-text main-text main-text" "social-icons social-icons social-icons social-icons social-icons" "footer footer footer footer footer";
  }
  .logo {
    text-align: center;
  }
  .logo img {
    width: 80%;
    padding: 0;
  }
  .lang-select {
    padding-right: 10px;
  }
  .mobile-menu {
    grid-area: mobile-menu;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-container nav {
    display: none;
  }
  .mobile-menu-container nav ul {
    list-style-type: none;
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  .mobile-menu-container nav ul a {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 2rem;
    color: black;
  }
  .menu {
    display: none;
  }
  .gallery {
    margin: auto;
    width: 95%;
  }
  .gallery:hover {
    transform: scale(1) translate(0, 0);
  }
  .gallery:hover + .left-main-text {
    transform: scale(1) translate(0, 0);
  }
  .main-text {
    font-size: 2.3rem;
    text-align: center;
    margin: 0;
    padding: 1rem 0;
  }
  .main-text p:hover {
    transform: scale(1) translate(0, 0);
  }
  .social-icons {
    text-align: center;
    margin-right: 0;
    padding: 1rem 0;
  }
}

/*# sourceMappingURL=index.css.map */
