html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  box-sizing: border-box;
  margin: 0;
  font-family: 'Quicksand', sans-serif;
}

body .fixed {
  display: block;
  position: fixed;
  background-color: lightgray;
  z-index: 999;
  padding: 15px 10px;
  left: 0;
  top: 80%;
  border-radius: 0 30px 30px 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.fixed a {
  text-decoration: none;
}

.fixed span {
  font-size: 0;
  font-weight: bold;
  transition: 0.3s all ease;
}

.fixed i {
  transition: 0.3s all ease;
  color: rgb(33, 172, 33);
}

.fixed:hover span {
  font-size: 1em;
}

.fixed:hover i {
  font-size: 0;
}

.main-nav-holder {
  position: relative;
}

.main-nav-holder .logo {
  width: 150px;
  margin: 0 10px;
}

.mobile-hamburger {
  position: absolute;
  top: 50%;
  right: 20px;
  padding: 5px 10px;
  color: lightgray;
  border: 1px solid lightgray;
  border-radius: 5%;
  transform: translateY(-50%);
  cursor: pointer;
}

.mobile-hamburger i {
  font-size: 3em;
}

.mobile-holder {
  height: 0;
  transition: all 0.5s ease;
}

.mobile-holder .mobile-items {
  display: none;
  justify-content: space-evenly;
  padding: 10px;
}

.mobile-holder .mobile-items a {
  text-decoration: none;
  text-transform: uppercase;
  color: rgb(77, 77, 77);
  font-family: 'Open Sans Condensed', sans-serif;
}

.visible {
  height: 50px;
}

section {
  padding: 20px 50px;
  margin: 20px 0;
  text-align: center;
}

#lightgallery {
  padding: 5% 0 0 0;
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#lightgallery div {
  width: 50%;
  transition: all 0.2s ease-in;
  margin: 15px;
}

#lightgallery a {
  width: 100%;
  height: 190px;
  display: flex;
  margin: 5px;
  background-size: cover;
  background-position: center;
}

#lightgallery a {
    width: 40%;
}

#lightgallery div a {
    width: 100%;
}

#lightgallery div:nth-child(1) a {
    background-image: url('../img/gallery/1/1.webp') !important;
}
#lightgallery div:nth-child(2) a {
    background-image: url('../img/gallery/2/7.webp') !important;
}
#lightgallery div:nth-child(3) a {
    background-image: url('../img/gallery/3/1.webp') !important;
}
#lightgallery div:nth-child(4) a {
    background-image: url('../img/gallery/4/2.webp') !important;
}
#lightgallery div:nth-child(5) a {
    background-image: url('../img/gallery/5/2.webp') !important;
}

#lightgallery .project-image {
  width: 100%;
  display: none;
}

h1 {
  font-size: 1.7em;
}

h1,
h2,
p {
  text-align: center;
}

footer {
  position: relative;
  min-height: 150px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 10px 15px;
  background: #000000;
  color: #fff;
}

.footer__column {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  list-style: none;
  margin: 20px 0;
}

.footer__column ul {
  list-style: none;
  padding: 0;
}

.footer__column .fa-linkedin-in {
  font-size: 34px;
}

.wrapper {
  display: none;
}

.icon-item {
  list-style: none;
}

.blue-icon {
  color: blue;
}

.blue-icon:nth-child(1) a:hover:before {
  background: white !important;
}

.blue-icon .icon-link::before {
  background-color: #fff;
}

.blue-icon .icon-link:hover {
  color: blue;
}

.icon-link {
  display: inline-flex;
  font-size: 3rem;
  text-decoration: none;
  color: var(--color-icon);
  width: 6rem;
  height: 6rem;
  transition: 0.5s linear;
  position: relative;
  z-index: 1;
  margin: auto;
}

.icon-link:hover {
  color: #fff;
}

.icon-link i {
  margin: auto;
}

.icon-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 6rem;
  height: 6rem;
  background: #ff8401;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0);
  transition: 0.3s cubic-bezier(0.95, 0.32, 0.37, 1.21);
}

.icon-link:hover::before {
  transform: scale(1);
}

@keyframes imageAnimation {
  0% {
    opacity: 0;
    animation-timing-function: ease-in;
  }

  8% {
    opacity: 1;
    animation-timing-function: ease-out;
  }

  17% {
    opacity: 1;
  }

  25% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.no-cssanimations .cb-slideshow li span {
  opacity: 1;
}
