@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=New+Rocker&display=swap");
* {
  font-family: "Montserrat", sans-serif;
}

#header {
  padding: 10px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  color: #fff;
  transition: all 0.5s ease-in-out;
  z-index: 10;
}
#header.active {
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
#header a {
  text-decoration: none;
  color: #fff;
  display: block;
  line-height: 15px;
}
#header a:hover {
  color: #fff;
  opacity: 0.9;
}

#hero {
  height: 1000px;
  background-image: url("../img/gabbay-hero-horizontal-v4.jpg");
  background-size: initial;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #000;
}
#hero #kudos {
  height: 243px;
  width: 330px;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 51px;
  border-radius: 18px;
  overflow: hidden;
}
#hero #kudos .carousel-item {
  opacity: 0;
  filter: blur(5px);
  transition: all 1s linear;
}
#hero #kudos .carousel-item.active {
  opacity: 1;
  filter: blur(0px);
  transition: all 1s linear;
}
#hero #kudos .carousel-item.blur-out {
  opacity: 0;
  filter: blur(5px);
}
#hero #kudos .carousel-inner .kudos-content {
  height: 243px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-direction: column;
  padding: 30px;
}
#hero #kudos .kudo-name {
  font-size: 14px;
}
@media (max-width: 767.98px) {
  #hero {
    background-image: url("../img/gabbay-hero-vertical-v5.jpg");
    background-size: cover;
    background-position: top !important;
    margin: 0;
    padding: 0;
  }
  #hero #kudos {
    width: 70vw;
    max-width: 100%;
    height: 350px;
    left: 1%;
    transform: translateX(0);
  }
  #hero #kudos .carousel-inner .kudos-content {
    height: 350px;
    padding: 50px;
  }
}
@media (max-width: 575.98px) {
  #hero {
    background-size: cover;
    margin: 0 !important;
    background-position: top !important;
    padding: 0;
  }
  #hero #kudos {
    width: 85vw;
    height: 300px;
    left: 6%;
    top: 40px;
    margin-left: 0;
    transform: translateX(0);
  }
  #hero #kudos .carousel-inner .kudos-content {
    height: 300px;
    padding: 50px;
  }
}
@media (max-width: 399px) {
  #hero {
    background-size: cover;
    margin: 0 !important;
    background-position: top right !important;
    padding: 0;
  }
  #hero #kudos {
    width: 75vw;
    height: 250px;
    left: -1%;
    top: 65px;
    margin-left: 0;
    transform: translateX(0);
  }
  #hero #kudos .carousel-inner .kudos-content {
    height: 250px;
    padding: 20px;
  }
}

#clients {
  padding: 70px 0;
  background-color: #0066FF;
}

#bio {
  padding: 70px 0;
  color: #fff;
  background: #381D2A;
}

#zigzag {
  background: #6600FF;
  color: #fff;
  padding: 70px 0;
}
#zigzag .row:nth-child(2) {
  padding: 10px 0;
}

#awards {
  background: #0066FF;
  color: #fff;
  padding: 70px 0;
}

#services {
  background-color: #6C0E23;
  padding: 70px 0;
}
#services .card {
  background: rgb(150, 161, 145);
  background: linear-gradient(0deg, rgb(150, 161, 145) 0%, rgb(59, 102, 111) 100%);
  border-radius: 1em !important;
}
#services .card .card-body {
  color: #fff;
}

.btn {
  border-radius: 50px;
}

img {
  max-width: 100%;
}

.text-rocker {
  font-family: "New Rocker", cursive !important;
}/*# sourceMappingURL=style.css.map */