* {
  padding: 0;
  margin: 0;
}

@font-face {
  font-family: "Ando-Custom";
  src: url("../font/Cormorant-VariableFont_wght.ttf") format("truetype");
}
@keyframes fromRight {
  from {
    transform: translateX(3rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromLeft {
  from {
    transform: translateX(-3rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fromTop {
  from {
    transform: translateY(-3rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fromBottom {
  from {
    transform: translateY(3rem);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes lpbg {
  from {
    transform: translateY(-10%);
    transform-origin: center center;
  }
  to {
    transform: translateY(0);
    transform-origin: center center;
  }
}
@keyframes lpbgM {
  from {
    transform: translateX(-70%);
    transform-origin: center center;
  }
  to {
    transform: translateX(-10%);
    transform-origin: center center;
  }
}
body {
  font-family: "Ando-Custom", sans-serif;
}

#home {
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  overflow: hidden;
  position: relative;
}
#home .bg {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  transition: 2s;
  opacity: 0;
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: auto;
}
#home .bg.active {
  opacity: 1;
  animation: lpbg 10s;
}
#home .textContainer {
  border-left: 1px solid rgba(255, 255, 255, 0.7);
  z-index: 1001;
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  color: white;
  width: 30vw;
  box-sizing: border-box;
  padding: 2rem;
  transition: 0.5s;
}
#home .textContainer ::-moz-selection {
  background-color: rgba(0, 0, 0, 0.8);
}
#home .textContainer ::selection {
  background-color: rgba(0, 0, 0, 0.8);
}
#home .textContainer > * {
  filter: drop-shadow(0 0 5px black);
  transition: 0.3s;
}
#home .textContainer .subTitle {
  font-size: 1.95rem;
  margin-bottom: 1.3rem;
}
#home .textContainer .text {
  display: none;
  font-size: 1.3rem;
  line-height: 1.56rem;
}
#home .textContainer .text.active {
  display: block;
  animation: fromRight 2s;
}
#home .textContainer .lpBtns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.3rem;
}
#home .textContainer .lpBtns .contactButton {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  padding: 0.5rem 2rem;
  border: 1px solid white;
  transition: 0.5s;
  cursor: pointer;
}
#home .textContainer .lpBtns .contactButton:hover {
  border-radius: 10px;
}
#home .textContainer .lpBtns .textCounter {
  font-size: 1.3rem;
  animation: fromRight 2s;
}
#home.hide .textContainer {
  width: 0;
  height: 0;
  overflow: hidden;
  right: -50vw;
}

.codeB {
  display: none;
}

nav {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  box-sizing: border-box;
  padding: 2rem;
  color: white;
  text-align: center;
}
nav .logo {
  width: 160px;
  height: auto;
  padding-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}
nav .navItems {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
nav .navItems .navBtn {
  font-size: 1.3rem;
  padding: 0.65rem 0;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.5s;
  border-right: 1px solid transparent;
  border-left: 1px solid transparent;
}
nav .navItems .navBtn:hover {
  color: white;
}
nav .navItems .navBtn.active {
  color: white;
}
nav .social {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
}
nav .social .socialItem {
  filter: grayscale(1);
  transition: 0.5s;
}
nav .social .socialItem img {
  height: 30px;
  width: auto;
}
nav .social .socialItem:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}
nav .social .socialItem.mobile {
  display: none;
}
nav #closeAll {
  position: absolute;
  bottom: -0.8rem;
  right: -0.5rem;
  cursor: pointer;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 0.5rem;
}

.mobileNav {
  display: none;
}

section {
  color: rgba(255, 255, 255, 0.7);
}

#portfolio, #clients, #contact, #gallery {
  width: calc(100vw - 227px - 5rem);
  height: calc(100vh - 10rem);
  position: fixed;
  top: 5rem;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.5s;
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
}
#portfolio.hide, #clients.hide, #contact.hide, #gallery.hide {
  width: calc(100vw - 227px - 5rem);
  right: -100vw;
}
#portfolio .picContainer, #clients .picContainer, #contact .picContainer, #gallery .picContainer {
  width: 20%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}
#portfolio .picContainer .portImg, #clients .picContainer .portImg, #contact .picContainer .portImg, #gallery .picContainer .portImg {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1s;
  cursor: pointer;
}
#portfolio .picContainer .portImg:hover, #clients .picContainer .portImg:hover, #contact .picContainer .portImg:hover, #gallery .picContainer .portImg:hover {
  transform: scale(1.2);
}
#portfolio .picContainer .galTitle, #clients .picContainer .galTitle, #contact .picContainer .galTitle, #gallery .picContainer .galTitle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 1.3rem;
  border-top: 1px solid transparent;
  transition: 0.5s;
}
#portfolio .picContainer:hover .galTitle, #clients .picContainer:hover .galTitle, #contact .picContainer:hover .galTitle, #gallery .picContainer:hover .galTitle {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 0, 0, 0.8);
}

@keyframes loader {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.loader {
  width: calc(100vw - 227px - 5rem);
  height: calc(100vh - 10rem);
  position: fixed;
  top: 5rem;
  right: -100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
}
.loader.active {
  right: 0;
  opacity: 1;
  animation: loader 0.2s;
}
.loader img {
  filter: grayscale(0);
  height: 100px;
  width: auto;
}

#termeni {
  width: calc(100vw - 227px - 5rem);
  height: calc(100vh - 10rem);
  position: fixed;
  top: 5rem;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
#termeni.hide {
  width: 0;
  height: 0;
  right: -50vw;
}
#termeni .tcNav {
  display: flex;
  justify-content: space-around;
  width: 100%;
  position: sticky;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
#termeni .tcNav .tcBtn {
  cursor: pointer;
  margin: 0.5rem 0;
  font-size: 1.3rem;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
}
#termeni .tcNav .tcBtn:hover, #termeni .tcNav .tcBtn.active {
  color: white;
  transform: scaleX(1.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
#termeni .gdprContainer, #termeni .cookieContainer, #termeni .faqContainer {
  box-sizing: border-box;
  padding: 2rem;
  font-size: 1.3rem;
  display: none;
}
#termeni .gdprContainer > *, #termeni .cookieContainer > *, #termeni .faqContainer > * {
  margin: 0.5rem 0;
}
#termeni .gdprContainer .subTitle, #termeni .cookieContainer .subTitle, #termeni .faqContainer .subTitle {
  text-decoration: underline;
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
}
#termeni .gdprContainer .desc, #termeni .cookieContainer .desc, #termeni .faqContainer .desc {
  margin-left: 1rem;
}
#termeni .gdprContainer .desc.st, #termeni .cookieContainer .desc.st, #termeni .faqContainer .desc.st {
  margin-left: 0;
  font-weight: bold;
  padding-top: 2rem;
}
#termeni .gdprContainer.active, #termeni .cookieContainer.active, #termeni .faqContainer.active {
  display: block;
  animation: fromBottom 0.5s;
}

#clients {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  padding: 2rem;
}
#clients .sTitle {
  margin-bottom: 2rem;
  font-size: 2rem;
}
#clients .sDesc {
  font-size: 1.3rem;
  margin: 1.3rem 0;
}
#clients .sDesc#clientsFdb {
  transition: 0.5s;
}
#clients .sDesc#clientsFdb.success {
  margin-top: 1.3rem;
  animation: fromBottom 0.5s;
  cursor: pointer;
  text-decoration: underline;
}
#clients form {
  margin-top: 1.3rem;
  display: flex;
  font-family: "Ando-Custom", sans-serif;
}
#clients form input[type=text] {
  font-size: 1.3rem;
  margin-right: 1rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 0 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.5s;
  font-family: "Ando-Custom", sans-serif;
}
#clients form input[type=text]::-moz-placeholder {
  color: rgba(255, 255, 255, 0.7);
}
#clients form input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
#clients form input[type=text]:focus, #clients form input[type=text]:hover {
  outline: none;
  border-radius: 10px;
}
#clients form input[type=submit] {
  font-family: "Ando-Custom", sans-serif;
  margin-left: 1rem;
  color: rgba(255, 255, 255, 0.7);
  background-color: transparent;
  font-size: 1.3rem;
  padding: 0.5rem 2rem;
  border: 1px solid white;
  transition: 0.5s;
  cursor: pointer;
}
#clients form input[type=submit]:hover {
  border-radius: 10px;
}

#contact {
  display: flex;
}
#contact .contactLeft {
  width: 50%;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
#contact .contactLeft img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contact .contactRight {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
}
#contact .contactRight form {
  width: 75%;
  display: flex;
  flex-direction: column;
}
#contact .contactRight form .sForm {
  margin: 0.5rem 0;
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
}
#contact .contactRight form .sForm.gdprCheckbox {
  justify-content: flex-start;
}
#contact .contactRight form .sForm.gdprCheckbox label {
  margin-left: 0.5rem;
}
#contact .contactRight form .sForm .sFormSub {
  display: flex;
  flex-direction: column;
  width: 49%;
}
#contact .contactRight form .sForm .sFormSub.single {
  width: 100%;
}
#contact .contactRight form .sForm .sFormSub input:not([type=submit]), #contact .contactRight form .sForm .sFormSub textarea {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  padding: 0.26rem;
  transition: 0.5s;
  padding: 0.2rem 0.5rem;
}
#contact .contactRight form .sForm .sFormSub input:not([type=submit]):focus, #contact .contactRight form .sForm .sFormSub input:not([type=submit]):hover, #contact .contactRight form .sForm .sFormSub textarea:focus, #contact .contactRight form .sForm .sFormSub textarea:hover {
  outline: none;
  border-radius: 10px;
}
#contact .contactRight form .sForm .cBtn {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.3rem;
  padding: 0.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: 0.5s;
  cursor: pointer;
  font-family: "Ando-Custom", sans-serif;
}
#contact .contactRight form .sForm .cBtn:hover {
  border-radius: 10px;
}
#contact .contactRight .formStatus {
  position: absolute;
  top: -100%;
  left: 50%;
  transition: 0.5s;
}
#contact .contactRight .formStatus.success {
  background-color: greenyellow;
  color: rgba(0, 0, 0, 0.8);
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 1.3rem;
  font-size: 1.3rem;
}
#contact .contactRight .formStatus.fail {
  background-color: rgb(255, 157, 157);
  color: rgba(0, 0, 0, 0.8);
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  padding: 1.3rem;
  font-size: 1.3rem;
}

@keyframes bigGallery {
  0% {
    width: 0;
    height: 0;
  }
  5% {
    width: 5px;
    height: 5px;
  }
  50% {
    width: calc(100vw - 227px - 5rem);
    height: 5px;
  }
  100% {
    width: calc(100vw - 227px - 5rem);
    height: 100%;
  }
}
.galleryContainer {
  position: fixed;
  top: 50%;
  transform: translateY(calc(-50% - 1px));
  right: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  transition: 0.5s;
  z-index: 2005;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.galleryContainer.active {
  width: calc(100vw - 227px - 5rem);
  animation: bigGallery 1s;
}
.galleryContainer .galUp {
  display: flex;
  justify-content: space-between;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 2rem;
}
.galleryContainer .galUp .closeGallery {
  cursor: pointer;
}
.galleryContainer .galMid {
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
}
.galleryContainer .galMid .midLeft, .galleryContainer .galMid .midRight {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  transition: 1s;
  padding: 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.galleryContainer .galMid .midLeft.hide, .galleryContainer .galMid .midRight.hide {
  opacity: 0.1;
}
@keyframes mainImg {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.galleryContainer .galMid .midMain {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.galleryContainer .galMid .midMain .mainGalImage {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: 100%;
  animation: mainImg 1s;
}
.galleryContainer .galDown {
  height: 150px;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: visible;
  display: flex;
}
.galleryContainer .galDown .thumb {
  height: 100%;
  width: auto;
  cursor: pointer;
  transition: 0.5s;
}
.galleryContainer .galDown .thumb.active {
  margin: 0 1rem;
}

@media only screen and (max-width: 768px) {
  #termeni .tcNav {
    flex-direction: column;
  }
  #termeni .tcNav .tcBtn {
    margin: 0.5rem 2rem;
  }
  #termeni .tcNav .tcBtn:hover, #termeni .tcNav .tcBtn.active {
    color: white;
    transform: scaleX(1);
    border-bottom: 1px solid transparent;
  }
  #termeni .gdprContainer .subTitle, #termeni .cookieContainer .subTitle, #termeni .faqContainer .subTitle {
    margin-top: 0rem;
  }
  .galleryContainer.active {
    margin-top: 1.8rem;
    width: 100vw;
    height: calc(100vh - 3.5rem);
    animation: none;
  }
  .galleryContainer .galMid .midLeft, .galleryContainer .galMid .midRight {
    padding: 1rem;
  }
  .galleryContainer .galMid .midMain .mainGalImage {
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    -o-object-fit: contain;
       object-fit: contain;
  }
  .galleryContainer .galDown {
    height: 75px;
  }
  #portfolio, #clients, #contact, #gallery, #termeni {
    width: 100vw;
    top: 3.5rem;
    height: calc(100vh - 3.5rem);
  }
  #portfolio .picContainer, #clients .picContainer, #contact .picContainer, #gallery .picContainer, #termeni .picContainer {
    width: 50%;
  }
  #portfolio form, #clients form, #contact form, #gallery form, #termeni form {
    width: 100%;
    flex-direction: column;
    font-family: "Ando-Custom", sans-serif;
  }
  #portfolio form input[type=password], #clients form input[type=password], #contact form input[type=password], #gallery form input[type=password], #termeni form input[type=password] {
    margin-right: 0;
    padding: 0.5rem 0;
  }
  #portfolio form input[type=submit], #clients form input[type=submit], #contact form input[type=submit], #gallery form input[type=submit], #termeni form input[type=submit] {
    margin-top: 1rem;
    margin-left: 0;
  }
  .loader {
    width: 100vw;
    top: 3.5rem;
    height: calc(100vh - 3.5rem);
  }
  #contact .contactLeft {
    width: 100vw;
    height: 50%;
  }
  #contact .contactRight {
    width: 100%;
    height: auto;
  }
  #contact .contactRight form {
    width: 80%;
    margin: 2rem 0;
  }
  #contact .contactRight form .sForm {
    margin: 0 0;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #contact .contactRight form .sForm .sFormSub {
    width: 100%;
    margin: 0.5rem 0;
  }
  #clients form input[type=text] {
    width: calc(100% - 2rem - 2px);
    padding: 0.5rem 1rem;
  }
  nav {
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    top: 3.5rem;
    left: -100%;
    transform: translateY(0);
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.5s;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    z-index: 1003;
  }
  nav .social {
    width: 50vw;
  }
  nav .social .socialItem {
    filter: grayscale(0);
  }
  nav .social .socialItem img {
    height: 30px;
  }
  nav .social .socialItem.mobile {
    display: block;
  }
  nav .social .socialItem.desktop {
    display: none;
  }
  nav.active {
    left: 0;
  }
  nav .logo {
    display: none;
  }
  nav .navItems .navBtn {
    text-align: center;
  }
  nav .navItems .navBtn.active {
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    border-left: 1px solid rgba(255, 255, 255, 0.7);
  }
  nav #closeAll {
    display: none;
  }
  .mobileNav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 3.5rem;
    background-color: rgba(0, 0, 0, 0.8);
    box-sizing: border-box;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 1001;
  }
  .mobileNav .logo {
    height: 100%;
    width: auto;
  }
  .mobileNav .hamburger {
    width: 40px;
    height: 100%;
    position: relative;
    cursor: pointer;
  }
  .mobileNav .hamburger .line {
    background-color: rgba(255, 255, 255, 0.7);
    height: 4px;
    width: 100%;
    border-radius: 5px;
    position: absolute;
    left: 0;
    z-index: 1002;
    transition: 0.5s;
  }
  .mobileNav .hamburger .line.one {
    top: 0;
  }
  .mobileNav .hamburger .line.two {
    top: 50%;
    transform: translateY(-50%);
  }
  .mobileNav .hamburger .line.three {
    top: 100%;
    transform: translateY(-100%);
  }
  .mobileNav .hamburger.active .line.one {
    top: 50%;
    transform: translateY(-50%);
  }
  .mobileNav .hamburger.active .line.one.rotate {
    transform: rotate(45deg);
  }
  .mobileNav .hamburger.active .line.two {
    opacity: 0;
  }
  .mobileNav .hamburger.active .line.three {
    top: 50%;
    transform: translateY(-50%);
  }
  .mobileNav .hamburger.active .line.three.rotate {
    transform: rotate(-45deg);
  }
  #home .bg {
    top: 0;
    left: -10vw;
    width: auto;
    height: 120vh;
    -o-object-fit: fill;
       object-fit: fill;
    transform: translateX(-10%);
  }
  #home .bg.active {
    animation: lpbgM 10s;
  }
  #home .textContainer {
    width: 100vw;
    right: 0;
    bottom: 3rem;
    text-align: center;
    border-left: 0;
    color: rgba(255, 255, 255, 0.7);
  }
  #home .textContainer .lpBtns {
    justify-content: center;
  }
}/*# sourceMappingURL=style.css.map */