/* Start Variables */

:root {
  --main-color: #f48522;
  --sec-color: #5a575b;
  --fucking-font: "Dancing Script", cursive;
  --innen-space: 8px;
  --section-spacing: 40px;
  --fixed-section-padding: 100px;
  --contentTransitionDuration: 600ms;
  --contentTransitionBezier: cubic-bezier(0.83, 0.39, 0.21, 0.96);
  --main-transition: 0.6s;
}
@media (max-width: 992px) {
  :root {
    --fixed-section-padding: 20px;
  }
}
/* Fonts */
@font-face {
  font-family: "LIBRARY 3 AM soft";
  src: url(/fonts/Library\ 3\ am\ soft.otf);
}
/* End Variables */
/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  /* background-image: url(/images/bakcground.png); */
}

html[dir="rtl"] body {
  font-family: "Lato", sans-serif;
}

::selection {
  background-color: var(--main-color);
  color: #fff;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

h2 {
  font-size: 24px;
  margin: var(--innen-space);
  text-align: center;
  cursor: context-menu;
}

@media (min-width: 776px) {
  h2 {
    font-size: 30px;
  }
}

@media (min-width: 968px) {
  h2 {
    font-size: 45px;
  }
}

.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}

/* Start Compinen */

.section-spac {
  margin-top: var(--section-spacing);
  margin-bottom: var(--section-spacing);
}

/* End Compinen */

/* Small */

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

/* Medium */

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

/* Larg */

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* End Global Rules */

/* Start Pre Loader */
body,
html {
  height: 100%;
}

.loader {
  display: inline-block;
  width: 30px;
  height: 30px;
  position: relative;
  border: 4px solid #fff;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}

.loader-wrapper {
  width: 100%;
  height: 100vh !important;
  position: absolute;
  top: 0;
  height: 0;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 555555;
}

.mBtn {
  display: block;
  text-align: start;
  padding: 15px 40px;
  border: 1px solid var(--main-color);
  background-color: transparent;
  color: #fff;
  width: fit-content;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  margin: auto;
  margin-top: 60px;
}

@media (max-width: 992px) {
  .mBtn {
    margin-top: 20px;
  }
}

.mBtn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  z-index: -11;
  background-color: var(--main-color);
  transition: var(--main-transition);
}
.mBtn:hover::before {
  top: 0;
}

/* Start Header */

.fixed-header {
  position: fixed;
  padding: var(--fixed-section-padding);
  padding-bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 555;
}

.header-left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.header-left .logo img {
  width: 110px;
}
@media (max-width: 992px) {
  .header-left .logo img {
    width: 60px;
  }
}

.burger-menu {
  display: flex;
  flex-direction: column;
  width: fit-content;
  cursor: pointer;
  justify-content: center;
  width: 100%;
}
.burger-menu span {
  width: 35px;
  height: 3px;
  background-color: #fff;
  margin: 3px 0;
  transition: var(--main-transition);
  pointer-events: none;
}

.burger-menu.activ span {
  max-width: 100% !important;
  margin: 0px 0;
  display: inline;
  background-color: var(--main-color);
}
.burger-menu.activ span:first-child {
  transform: rotate(-45deg);
}
.burger-menu.activ span:nth-child(2) {
  display: none;
}
.burger-menu.activ span:last-child {
  transform: rotate(45deg);
  margin: -3px 0;
}

nav {
  position: absolute;
  left: -100%;
  transition: var(--main-transition);
  top: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translatex(-50%);
  letter-spacing: 5px;
  z-index: -55;
  transition: var(--main-transition);
  background-color: #000000ad;
  text-align: start;
}

nav.activ {
  left: 50%;
}
nav li {
  color: #fff;
  font-weight: bold;
  font-size: 2.5rem;
  padding: 0 20px;
  cursor: pointer;
  margin-bottom: 5px;
  position: relative;
}
html[dir="rtl"] nav li {
  letter-spacing: 1.7px;
}
nav li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--main-color);
  z-index: -5;
  transition: var(--main-transition);
}
html[dir="rtl"] nav li::before {
  right: 0;
}
nav li:hover::before {
  width: 100%;
}
.lang {
  font-size: 1.3rem;
  background-color: var(--main-color);
  /* padding: 10px 15px; */
}

@media (max-width: 992px) {
  .lang {
    font-size: 0.8rem;
    padding: 8px 8px;
  }
}

html[dir="rtl"] .lang .rtl {
  display: none;
}
.lang .ltr {
  display: none;
}
html[dir="rtl"] .lang .ltr {
  display: block;
}
.header-left h1 {
  width: fit-content;
  color: #fff;
}
.header-left h1:first-letter {
  color: var(--main-color);
}

.fixed-header .contact a {
  background-color: var(--main-color);
  padding: 15px 30px;
  border-radius: 3px;
}

@media (max-width: 992px) {
  .header-left h1 {
    font-size: 1.3rem;
  }
  .header-left {
    gap: 10px;
  }
  .burger-menu span {
    width: 15px;
    height: 3px;
    margin: 2px 0;
  }
  .fixed-header .contact a {
    padding: 5px 15px;
  }
}

.fixed-footer {
  position: fixed;
  padding: var(--fixed-section-padding);
  padding-top: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  z-index: 99999;
}

.fixed-footer p {
  color: #fff;
}

ul.social {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

ul.social i {
  font-size: 1.3rem;
}

@media (max-width: 992px) {
  ul.social {
    gap: 10px;
  }
  ul.social i,
  .fixed-footer p {
    font-size: 0.8rem;
  }
}

/* Section */
section {
  height: 100vh;
  position: relative;
  z-index: 1000;
  background-image: url(/images/bakcground.png);
}

.section-content h1 {
  text-transform: capitalize;
  margin: 0 0 60px;
}
@media (max-width: 992px) {
  .section-content h1 {
    margin: 0 0 20px;
  }
}

/* Start Landing */

/* Slid */

.landing {
  background-image: url(/images/landing1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  z-index: -2222;
}

@media (max-width: 992px) {
  .landing {
    background-image: url(/images/landing1-1.jpg);
  }
}

.landing .txt {
  max-width: 600px;
  word-break: break-word;
  text-align: start;
}

.landing h1 {
  text-align: start;
  margin: 0;
  color: #fff;
}
.landing .multi-txt,
.landing .multi-txt2 {
  font-family: "LIBRARY 3 AM soft";
  color: var(--main-color);
  font-size: 70px;
}
html[dir="rtl"] .landing .multi-txt,
.landing .multi-txt2 {
  font-family: "Lato", sans-serif;
  font-family: "Playfair Display", serif;
}
.typed-cursor {
  font-size: 60px;
  color: #777;
}
@media (max-width: 992px) {
  .landing .txt {
    width: 300px;
    left: 5%;
  }
  .landing .multi-txt {
    font-size: 35px;
    word-break: break-all;
    margin-bottom: 50px;
  }
  .typed-cursor {
    font-size: 40px;
  }
}

/* End Landing */

/* Start About */
.section-content {
  width: 100%;
  height: 100%;
  text-align: center;
  transform: translate3d(0, 0, 0);
  margin: auto;
  color: #fff;
  transition: transform var(--main-transition) 0.5s linear;
  transform: translateY(-60px);
}

section.active .section-content {
  transform: translateY(00px);
}

.section-content p {
  letter-spacing: 1.2px;
  line-height: 24px;
  font-size: 1rem;
  max-width: 100%;
  text-align: start;
}

.about .more {
  position: absolute;
  background-color: #000;
  top: 50%;
  left: 50%;
  width: calc(100vw - 200px);
  height: calc(100vh - 350px);
  padding: 50px;
  text-align: start;
  z-index: 99999999;
  transition: var(--main-transition);
  transform: translate(-999%, -50%);
  /* display: none; */
}
.about .more .bottom {
  /* position: absolute; */
  bottom: 0;
  left: 0;
  background: var(--main-color);
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 1.8rem;
  cursor: pointer;
}
.about .more.show {
  transform: translate(-50%, -50%);
}

@media (max-width: 992px) {
  .about .more {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
    overflow: scroll;
    z-index: 999999999999;
  }
  .about .more .bottom {
    font-size: 1rem;
    padding: 5px;
  }
}

/* End About */
/* Start Services */

.services .boxing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  /* justify-items: center; */
  margin-top: 60px;
  margin-bottom: 60px;
  gap: 40px;
}
.services .box {
  height: 0;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 20px;
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  transition: height 0.6s 1s;
  width: 250px;
}

section.active .box {
  height: 100%;
}
.services .box:hover > p {
  margin-bottom: 20px;
}

.services .box:hover .on-hover {
  bottom: 0;
}
.services img {
  width: 90px;
}
.services p {
  transition: var(--main-transition);
}
.services h3 {
  font-size: 1.5rem;
  margin-top: 20px;
}
.services .on-hover {
  position: absolute;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  padding: 12px 5px;
  text-align: start;
  transition: var(--main-transition);
  transition-delay: 0.1s;
}
.services .on-hover p,
.services .on-hover h3 {
  font-size: 0.9rem;
  padding: 0px;
  margin: 0;
}
.services .on-hover h3 {
  font-weight: bold;
  font-size: 1rem;
  text-align: start;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .services .boxing {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0px;
    margin-bottom: -10px;
    row-gap: 10px;
    column-gap: 10px;
  }
  .services .box {
    gap: 15px;
    padding: 10px 20px;
    width: unset;
    text-align: center;
  }
  .services img {
    width: 35px;
  }
  .section-content p {
    font-size: 0.7rem;
    line-height: 15px;
    
  }
  .services .box:hover > p {
    margin-bottom: 0px;
  }
  .services .box:hover .on-hover {
    display: none;
  }
  .section-content .box p {
    text-align: center;
  }
}

.services .more1 {
  position: absolute;
  background-color: #000;
  top: 50%;
  left: 50%;
  width: calc(100vw - 200px);
  height: calc(100vh - 350px);
  padding: 50px;
  text-align: start;
  z-index: 99999999;
  transition: var(--main-transition);
  transform: translate(-999%, -50%);
}
.services .inner-boxing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-content: space-around;
}

@media (min-width: 991px) {
  .services .inner-box {
    justify-self: center;
  }
}
.services .more1 .bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--main-color);
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 1.8rem;
  cursor: pointer;
}
.services .more1 h3 {
  margin-bottom: 20px;
  color: var(--main-color);
}
.services .more1 p {
  margin-left: 10px;
  margin-bottom: 10px;
}
.services .more1.show {
  transform: translate(-50%, -45%);
}

@media (max-width: 992px) {
  .services .more1 {
    width: 100%;
    height: 100%;
    padding: 10px 20px;
  }
  .services .inner-boxing {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
  }
  .services .more1 .bottom {
    font-size: 1rem;
    padding: 5px;
  }
  .services .more1 h3 {
    font-size: 1rem;
    margin: 0;
    margin-bottom: 10px;
  }
  .services .more1 p {
    margin-bottom: 5px;
  }
}

/* End Services */

/* Start Team */
.team .section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  place-items: center;
  gap: 40px;
}
.team h1,
.team p {
  text-align: start;
}
.team .txt {
  padding-left: 20px;
  border-left: 2px solid var(--main-color);
  width: 100%;
  overflow: hidden;
  /* width: 0%; */
  transition: 0.7s 0.8s linear;
}

html[dir="rtl"] .team .txt {
  padding: 0 20px 0 0;
  border-left: 0;
  border-right: 2px solid var(--main-color);
}


.team a {
  margin-right: unset;
  margin-left: unset;
}

@media (min-width: 991px) {
  .team #team-btn {
    display: none;
  }
}

.team .right-align {
  display: flex;
}

.team .right-align img {
  width: 170px;
  border-radius: 50%;
  margin-right: -60px;
  transition: var(--main-transition);
}



@media (max-width: 992px) {
  .team .section-content {
    gap: 10px;
    grid-template-columns: 1fr auto;
  }
  .team .right-align {
    display: none;
    flex-direction: column;
  }
  .team .txt {
    padding-left: 10px;
  }
  .team h1,
  .team p {
    width: 100%;
  }
  #teamBtn {
    display: none;
  }
}

.team .img-holder {
  position: relative;
  margin-right: -99px;
  transition: var(--main-transition);
}

.team .img-holder.active {
  margin-right: 0;
}

@media (max-width: 992px) {
 
  .team .info {
    display: none;
  }
  .team img {
    border: 5px solid var(--main-color);
  }
}

@media (min-width: 991px) {

  .team .info {
    position: absolute;
    background-color: var(--main-color);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: -55;
    top: 50%;
    left: 50%;
    transform: translate(-36%, -42%);
  }
  
  .team .info h1 {
    font-size: 1rem;
    margin: 0;
    margin-bottom: 10px;
  }
  .team img {
    z-index: 999999;
    position: relative;
    transform: translateY(20px);
  }
  .team .img-holder:hover > img {
    transform: translate(-40px, 180px);
  }
  .team .img-holder:hover > .info {
    z-index: 5555555;
  }
  .team .img-holder:hover > img {
    z-index: 9999999;
  }
  .team .social {
    gap: 10px;
    display: flex;
    padding-top: 10px;
  }
  
}

/* End Team */

/* Start Portfolio */
.portfolio .boxing {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.portfolio .img-holder {
  width: 170px;
  height: 350px;
  margin-right: 120px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  transform: rotate(0deg);
  position: relative;
  transition: 0.8s 0.5s linear;
}

.portfolio .img-holder:first-child img {
  object-position: -30px;
}

.portfolio.active .img-holder {
  transform: rotate(45deg);
}

.portfolio .img-holder::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, #0000004a 0%, rgba(255, 0, 0, 0) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.portfolio img {
  height: 100%;
  object-fit: cover;
  top: -1px;
  left: -15px;
  position: relative;
  transform: rotate(0);
  transition: 0.8s 1s linear;
  transform: rotate(-45deg);
}

.portfolio .box span {
  font: 600 20px Roboto, sans-serif;
  position: absolute;
  bottom: 0;
  left: 25px;
  transform-origin: left;
  color: var(--secondaryColor);
  z-index: 1;
  transform: rotate(-90deg);
  white-space: nowrap;
  border-left: 3px solid var(--main-color);
  padding-left: 20px;
}
@media (max-width: 992px) {
  .portfolio .boxing {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .portfolio .txt {
    width: 100%;
    /* text-align: start; */
  }
  .portfolio .mBtn {
    margin-top: 0;
    display: none;
  }
  .portfolio .img-holder {
    width: 70px;
    height: 140px;
    margin-right: 13px;
    margin-left: 0px;
    justify-items: center;
  }
  .portfolio .box span {
    font-size: 12px;
    left: 15px;
  }
}

/* End Portfolio */
/* Start contact */


.contact .boxing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.contact .left-align {
  border: 1px solid #333;
  padding: 60px 0px;
  flex-basis: 50%;
  position: relative;
  overflow: hidden;
}
.contact .left-align::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  transition: var(--main-transition) 0.5s linear;
}
section.active .left-align::before {
  left: -100%;
}

.contact .left-align .box {
  margin-bottom: 20px;
  font-size: 1rem;
}
.contact .left-align .box  p {
  text-align: center;
}
.contact .left-align h4 {
  color: var(--main-color);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.contact .left-align a {
  font-size: 1.3rem;
}

@media (min-width: 991px) {
  .contact .left-align a {
    font-size: inherit;
  }
}

.right-align form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;

  max-width: 100%;
}

.right-align input:focus,
.right-align textarea:focus {
  border: 1px solid var(--main-color);
  text-align: center;
}

.right-align input,
.right-align textarea {
  background-color: transparent;
  text-align: center;
  margin: 10px;
  outline: none;
  padding: 12px 6px;
  transition: var(--main-transition);
  color: #fff;
  outline: none;
  border: none;
  border-bottom: 1px solid #333;
}

.right-align textarea {
  flex-basis: 100%;
  margin-bottom: 30px;
}
.right-align form input {
  margin-bottom: 30px;
}
.right-align button {
  width: 50%;
  border: 1px solid #333;
  text-align: center;
}

@media (max-width: 992px) {
  .contact .boxing {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 13px;
    height: 100%;
  }
  .right-align form {
    justify-content: center;
    margin: 0;
    /* margin-bottom: 40px; */
  }
  .contact .left-align {
    padding: 5px;
    display: flex;
    border: 1px solid #333;
    flex-basis: unset;
    gap: 20px;
  }
  .right-align form input {
    margin: 1px 5px;
    width: 120px;
  }

  .right-align textarea {
    height: 110px;
    margin-bottom: 0;
  }
  .right-align button {
    margin: 15px 0 0;
    border: 1px solid #333;
    padding: 7px !important;
  }
  .contact .left-align .box {
    margin: 0;
  }
  .contact .left-align .box h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
  }
  .contact .left-align .box p,
  .contact .left-align .box a {
    font-size: 0.9rem;
  }
  .contact h1 {
    margin: 0;
  }
}

/* End contact */

/* FullPage Js */

#fp-nav ul {
  right: 110px;
  position: relative;
}
html[dir="rtl"] #fp-nav ul {
  right: -100px;
}
#fp-nav ul li a span {
  background-color: #fff;
}

.fp-watermark a {
  color: #141414 !important;
  background-color: transparent;
}

.fp-warning,
.fp-watermark {
  z-index: -9999999;
  position: absolute;
  bottom: 0;
}


@media (max-width: 992px) {
  #fp-nav ul {
    display: none;
  }
}

html[dir="rtl"] #fp-nav.fp-right {
  right: unset;
}
html[dir="rtl"] #fp-nav {
  left: 50px;
}
html[dir="rtl"] #fp-nav ul li .fp-tooltip.fp-right {
  left: 20px;
  right: unset;
}
/* other pages */
.other {
  background-image: url(/images/bakcground.png);
}
.other .header {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 80vh;
}
.other .logo {
  display: block;
  text-align: start;
  padding-top: 40px;
  padding-left: 40px;
}

.other .logo img {
  width: 80px;
}

.other h1 {
  text-align: center;
}

.chosen-lang {
  margin-top: 50px;
  text-align: center;
}
.chosen-lang img {
  transform: none !important;
  width: 90px !important;
  margin: 10px;
}

@media (max-width: 992px) {
  .chosen-lang img{
    width: 65px !important;
  }
}

/* Design */

.design .header {
  background-image: url(/images/landing3.jpg);
}

@media (max-width: 992px) {
  .design .header {
    background-image: url(/images/designS.jpg);
  }
}

.design .txt {
  padding-top: 80px;
  padding-bottom: 50px;
  color: #fff;
}
@media (max-width: 992px) {
  .design .txt  {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.design .txt h1 {
  padding-bottom: 20px;
  font-size: 2rem;
}

.design .txt p {
  line-height: 2.2;
}



.design img.spicial {
  grid-area: 3/ 1 / 5 /1;
  height: 570px;
}
.design img.spicial2 {
  grid-area: 2/ 1 / 4 /5;
}
.design .img-holder {
  padding-right: 0;
  padding-left: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  justify-items: center;
}
.design .logos {
  margin-top: 40px;
}
.design h1 {
  color: #fff;

}
.design img {
  max-width: 100%;
  width: 250px;
  transition: var(--main-transition);
}

.design img:hover {
  transform: scale(1.8);
  z-index: 555555;
}

/* End Grafik */

/* Web */
.web .header {
  background-image: url(/images/landing-websiten.jpeg);
  background-position: 84% 0px;
}
@media (max-width: 992px) {
  .web .header {
    background-image: url(/images/webS.jpg);
  }
}
.web .txt {
  padding-top: 80px;
  padding-bottom: 50px;
  color: #fff;
}
.web .txt h1 {
  padding-bottom: 20px;
  font-size: 2rem;
}

.web .txt p {
  /* padding: 0 150px; */
  line-height: 2.2;
}



.web .work {
  display: grid;
  gap: 70px;
  padding-bottom: 50px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}


@media (max-width: 992px) {
  .web .work {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
}

.web .work .box {
  background-color: #51504f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.web .work img {
  max-width: 100%;
  /* width: 533px; */
  height: 280px;
}
.web .work h3 {
  color: var(--main-color);
  margin: 30px 0;
  text-align: center;
}
/* End Web */

/* Start Foto */
.foto .header {
  background-image: url(/images/landing-foto-L.jpg);
}
@media (max-width: 992px) {
  .foto .header {
    background-image: url(/images/fotogS.jpg);
  }
}


.foto .txt {
  padding-top: 80px;
  padding-bottom: 50px;
  color: #fff;
}
.foto .txt h1 {
  padding-bottom: 20px;
  font-size: 2rem;
}

.foto .txt p {
  /* padding: 0 150px; */
  line-height: 2.2;
}




@media (max-width: 992px) { 
}


.foto img {
  max-width: 100%;
  width: 250px;

  transition: var(--main-transition);
}
.foto img:hover {
  transform: scale(1.1);
  z-index: 555555;
}


@media (min-width: 991px) {
  .foto .sp1 {
    grid-row: 2;
    grid-column: span 2;
    height: 297px;
    width: 100%;
  }
  .foto img:hover {
    transform: scale(1.7);
    z-index: 555555;
  }
}
.foto .work {
  padding-right: 0;
  padding-left: 0;
  padding-top: 80px;
  padding-bottom: 80px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  display: grid;
  align-items: center;
  gap: 40px;
  justify-items: center;
}
/* End Foto */

/* lightgallery-Js */

.lg-outer .lg-item {
  left: 0;
}

.lg-toolbar #lg-download {
  display: none;
}

body:not(.lg-from-hash)
  .lg-outer.lg-start-zoom
  .lg-item.lg-complete
  .lg-object {
  border: none;
}


/*
  TODO: to edit
*/

#toAr {
  display: none;
}