@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

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

body {
  background-color: #f2f3f4;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden !important;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: bolder;
}

span {
  font-family: inherit;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

img {
  -webkit-user-drag: none;
}

.navbar {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
  overflow: hidden;
  background-color: #f2f3f4;
}

.navbar__logo {
  width: 6rem;
}

.navbar__logo:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.navbar__logo:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

@media screen and (max-width: 980px) {
  .navbar__logo {
    width: 5rem;
  }
}

.navbar__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 980px) {
  .navbar__links {
    display: none;
  }
}

.navbar__link {
  font-size: 1rem;
  color: #2e3545;
  margin: 0 .5rem;
  width: 80px;
  text-transform: uppercase;
  text-align: center;
  overflow: hidden;
  position: relative;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.navbar__link span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 100%;
}

.navbar__link span::before {
  content: attr(data-hover);
  position: absolute;
  color: #FF6701;
  top: 100%;
  font-weight: 800;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.navbar__link:hover span {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.navbar__contact {
  font-size: 1rem;
  color: #2e3545;
  border: 1px solid #2e3545;
  padding: .5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.navbar__contact:before {
  content: '';
  width: 150%;
  height: 400%;
  position: absolute;
  top: 200%;
  left: -25%;
  z-index: -1;
  background: #2e3545;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.navbar__contact:hover {
  border-color: #f2f3f4;
  -webkit-box-shadow: 2px 2px 12px #0002;
          box-shadow: 2px 2px 12px #0002;
  color: #f2f3f4;
}

.navbar__contact:hover:before {
  top: -150%;
}

.navbar__contact:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

@media screen and (max-width: 560px) {
  .navbar__contact {
    display: none;
  }
}

.navbar__burger {
  width: 30px;
  height: 30px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar__burger.clicked .navbar__burger-line:nth-child(2) {
  opacity: 0;
}

.navbar__burger.clicked .navbar__burger-line:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.navbar__burger.clicked .navbar__burger-line:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

@media screen and (max-width: 980px) {
  .navbar__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.navbar__burger-line {
  width: 100%;
  height: 2px;
  background-color: #2e3545;
  margin: .2rem 0;
}

.alter {
  position: fixed;
  top: -105%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background-color: #f2f3f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 2rem;
}

.alter.open {
  top: 0;
}

.alter__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.alter__title {
  font-size: 1.8rem;
  color: #2e3545;
  position: relative;
  margin-bottom: 2rem;
}

.alter__title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 13px;
  background-color: #FF6701;
  opacity: .6;
  z-index: -1;
}

.alter__link {
  font-size: 3.5rem;
  font-weight: bolder;
  text-transform: uppercase;
  color: #2e3545;
  opacity: .75;
  margin-bottom: .5rem;
}

.alter__link span {
  display: none;
}

.alter__link:hover, .alter__link:active {
  opacity: 1;
  font-style: italic;
}

.alter__contact {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 2rem;
}

.alter__contact-link {
  color: #2e3545;
  margin-right: 1.5rem;
  font-size: 1.5rem;
}

.alter__contact-link:hover, .alter__contact-link:active {
  color: #FF6701;
}

.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#0008), to(#0008));
  background: linear-gradient(to bottom, #0008, #0008);
}

.hero__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  z-index: -1;
}

.hero__wrapper {
  position: relative;
  right: -1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 965px) {
  .hero__wrapper {
    right: -5%;
  }
}

@media screen and (max-width: 700px) {
  .hero__wrapper {
    right: 0;
  }
}

.hero__title {
  font-size: 7rem;
  color: #f2f3f4;
  position: relative;
  z-index: 1;
  letter-spacing: 2px;
}

@media screen and (max-width: 965px) {
  .hero__title {
    font-size: 5rem;
  }
}

@media screen and (max-width: 560px) {
  .hero__title {
    font-size: 4rem;
  }
}

@media screen and (max-width: 560px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media screen and (max-width: 350px) {
  .hero__title {
    font-size: 2.5rem;
    text-align: center;
  }
}

.hero__cta {
  position: relative;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  overflow: hidden;
  color: #f2f3f4;
  border-color: #f2f3f4;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__cta span {
  font-size: 1rem;
  margin-left: 1rem;
}

.hero__cta:before {
  content: '';
  width: 150%;
  height: 400%;
  position: absolute;
  top: 200%;
  left: -25%;
  z-index: -1;
  background: #f2f3f4;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.hero__cta:hover {
  border-color: #f2f3f4;
  -webkit-box-shadow: 2px 2px 12px #0002;
          box-shadow: 2px 2px 12px #0002;
  color: #2e3545;
}

.hero__cta:hover:before {
  top: -150%;
}

.hero__cta:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

@media screen and (max-width: 560px) {
  .hero__cta {
    font-size: .8rem;
    margin-top: 2rem;
  }
}

.hero__side {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 120px;
  background-color: #f2f3f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5.5rem 0;
}

@media screen and (max-width: 700px) {
  .hero__side {
    display: none;
  }
}

.hero__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hero__social {
  color: #2e3545;
  font-size: 1.4rem;
  margin: .5rem 0;
}

.hero__social:hover {
  color: #FF6701;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.hero__mail {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  color: #2e3545;
  font-size: 1.2rem;
}

.hero__mail:hover {
  color: #FF6701;
}

.hero__scroll-downs {
  width: 34px;
  height: 25px;
}

.hero__mousey {
  width: 3px;
  padding: 6px 11px;
  height: 35px;
  border: 1px solid #2e3545;
  border-radius: 25px;
  opacity: 0.75;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.hero__scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #2e3545;
  -webkit-animation-name: scroll;
          animation-name: scroll;
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
          animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 0;
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
    opacity: 0;
  }
}

.about {
  margin-top: 10vh;
  width: 100%;
  min-height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 1070px) {
  .about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .about .about__image-container {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 80%;
  }
}

.about__image-container {
  width: 550px;
  height: 500px;
  overflow: hidden;
}

@media screen and (max-width: 1110px) {
  .about__image-container {
    width: 500px;
  }
}

.about__image-mask {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about__image {
  height: 100%;
  width: 100%;
  -webkit-transform-origin: left;
          transform-origin: left;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 500px;
  margin-left: 7rem;
}

@media screen and (max-width: 1150px) {
  .about__text {
    margin-left: 3rem;
  }
}

@media screen and (max-width: 1070px) {
  .about__text {
    margin-left: 0;
    text-align: center;
    width: 80%;
    margin-bottom: 3rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.about__cta {
  margin-top: 1.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  width: 14rem;
  padding: 1rem 2rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  overflow: hidden;
  color: #2e3545;
  border-color: #2e3545;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about__cta span {
  font-size: 1rem;
  margin-left: 1rem;
}

.about__cta:before {
  content: '';
  width: 150%;
  height: 400%;
  position: absolute;
  top: 200%;
  left: -25%;
  z-index: -1;
  background: #2e3545;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.about__cta:hover {
  border-color: #f2f3f4;
  -webkit-box-shadow: 2px 2px 12px #0002;
          box-shadow: 2px 2px 12px #0002;
  color: #f2f3f4;
}

.about__cta:hover:before {
  top: -150%;
}

.about__cta:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

@media screen and (max-width: 560px) {
  .about__cta {
    font-size: .8rem;
    margin-top: 2rem;
  }
}

.about__title {
  color: #2e3545;
  font-size: 4rem;
  margin-bottom: 1rem;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

@media screen and (max-width: 600px) {
  .about__title {
    font-size: 3rem;
  }
}

.about__desc {
  color: #2e3545;
  opacity: .75;
  font-size: 1rem;
  line-height: 30px;
  margin: .5rem 0;
  opacity: .75;
}

.three {
  margin-top: 5rem;
  width: 100%;
  min-height: 85vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: hidden;
}

.three__span {
  font-size: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 100px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #2e3545;
}

.three__span.one {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #2e3545;
}

@media screen and (max-width: 900px) {
  .three__span {
    font-size: 4rem;
  }
}

.three__container {
  margin-top: 7rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 3rem;
}

@media screen and (max-width: 1020px) {
  .three__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.three__card {
  position: relative;
  margin: 0 1rem;
  width: 550px;
}

.three__card:nth-child(2) {
  top: 5vh;
}

.three__card:nth-child(3) {
  top: 10vh;
}

@media screen and (max-width: 1020px) {
  .three__card {
    top: 0;
    width: 100%;
    margin: 1rem 0;
  }
  .three__card:last-child {
    min-height: 43vh;
  }
}

.three__title {
  font-size: 2rem;
  color: #2e3545;
  margin-bottom: 1rem;
  font-weight: bolder;
}

.three__desc {
  font-size: 1.2rem;
  color: #2e3545;
  opacity: .75;
  line-height: 30px;
}

.three__no {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 8rem;
  line-height: 0;
  z-index: -1;
  font-weight: bolder;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FF6701;
  opacity: .75;
}

.services {
  margin-top: 4rem;
  width: 100%;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 700px) {
  .services {
    margin-top: 3rem;
    min-height: 30vh;
  }
}

.services__image-container {
  height: 600px;
  -webkit-box-flex: .5;
      -ms-flex: .5;
          flex: .5;
  overflow: hidden;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.services__image-container::after {
  content: 'Zašto mi?';
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #f2f3f4;
  height: 10%;
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #2e3545;
  font-size: 1.1rem;
  text-transform: uppercase;
  font-weight: bolder;
}

@media screen and (max-width: 900px) {
  .services__image-container {
    display: none;
  }
}

.services__image-mask {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.services__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform-origin: left;
          transform-origin: left;
}

.services__container {
  position: relative;
  top: 50px;
  -webkit-box-flex: .5;
      -ms-flex: .5;
          flex: .5;
  margin: 0 3rem;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 900px) {
  .services__container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 4rem 0 0 0;
    padding: 0 1.5rem;
    top: 0;
  }
}

@media screen and (max-width: 700px) {
  .services__container {
    margin: 0 1rem;
  }
}

@media screen and (max-width: 480px) {
  .services__container {
    margin: 0;
    width: 100%;
  }
}

.services__title {
  font-size: 4rem;
  color: #2e3545;
  line-height: 80px;
  margin-bottom: 2rem;
}

@media screen and (max-width: 700px) {
  .services__title {
    font-size: 3rem;
    line-height: 60px;
  }
}

.services__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-height: 40px;
  overflow: hidden;
  margin: 2rem 0;
  -webkit-transition: max-height .3s ease-in-out;
  transition: max-height .3s ease-in-out;
}

.services__card.expand-card {
  max-height: 100%;
  -webkit-transition: max-height .3s ease-in-out;
  transition: max-height .3s ease-in-out;
}

.services__card.expand-card .services__icon {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  color: #FF6701;
}

.services__card-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.2rem;
  color: #2e3545;
  margin-bottom: 1rem;
  cursor: pointer;
  width: 100%;
  border-bottom: 1px solid #0002;
  padding-bottom: 1rem;
  letter-spacing: 1px;
}

.services__icon {
  margin-left: 1rem;
}

.services__card-desc {
  font-size: 1rem;
  color: #2e3545;
  line-height: 28px;
  opacity: .65;
}

.projects {
  margin-top: 2rem;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3rem 5rem;
  overflow: hidden;
}

@media screen and (max-width: 995px) {
  .projects {
    padding: 3rem 1rem;
  }
  .projects .projects__card-inner {
    bottom: 0;
  }
}

.projects__title {
  font-size: 3rem;
  color: #2e3545;
  padding-bottom: 2rem;
}

@media screen and (max-width: 360px) {
  .projects__title {
    font-size: 2rem;
  }
}

.projects__filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-x: auto;
  min-width: 100vw;
}

.projects__filters::-webkit-scrollbar {
  width: 5px;
  background-color: #aaa;
}

.projects__filter {
  font-size: 1rem;
  text-transform: uppercase;
  margin: 0 1rem;
  cursor: pointer;
  padding-bottom: 1.5rem;
  white-space: nowrap;
}

.projects__filter.active {
  color: #FF6701;
}

.projects__filter:first-child {
  margin-left: 0;
}

.projects__filter:last-child {
  padding-right: 1.5rem;
}

.projects__container {
  width: 100%;
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 990px) {
  .projects__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.projects__card {
  width: 300px;
  height: 300px;
  position: relative;
  border: 1px solid #0002;
  overflow: hidden;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

.projects__card:hover .projects__card-inner {
  bottom: 0;
}

.projects__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.projects__card-inner {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #2e3545;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.projects__card-title {
  font-size: 1rem;
  color: #f2f3f4;
  font-weight: 500;
}

.numbers {
  width: 100%;
  min-height: 40vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.numbers__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: .08;
}

@media screen and (max-width: 800px) {
  .numbers__line {
    display: none;
  }
}

.numbers__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 980px) {
  .numbers__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.numbers__card {
  margin: 2rem 5rem;
}

.numbers__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.numbers__circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 180px;
  height: 180px;
}

.numbers__circle {
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(160deg);
          transform: translate(-50%, -50%) rotate(160deg);
}

.numbers__no {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FF6701;
  font-size: 3rem;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.numbers__subtitle {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 400;
  color: #2e3545;
}

.numbers__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2e3545;
}

.contact {
  width: 100%;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3rem 0;
}

@media screen and (max-width: 980px) {
  .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 2rem;
}

@media screen and (max-width: 980px) {
  .contact__row {
    width: 100%;
  }
}

.contact__subtitle {
  color: #FF6701;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
}

.contact__title {
  color: #2e3545;
  font-size: 4rem;
}

@media screen and (max-width: 700px) {
  .contact__title {
    font-size: 3rem;
    line-height: 60px;
    margin: 1rem 0;
  }
}

.contact__desc {
  font-size: 1.2rem;
  color: #2e3545;
  opacity: .75;
  margin-bottom: 2rem;
}

.contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.contact__input {
  width: 100%;
  height: 30px;
  margin-bottom: 1.5rem;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #2e35458f;
  font-size: 1.2rem;
  color: #2e3545;
  padding: 0 .2rem;
}

.contact__input:focus {
  border-color: #FF6701;
}

.contact__message {
  width: 100%;
  height: 150px;
  margin-bottom: 2rem;
  background-color: transparent;
  outline: none;
  border: none;
  border-bottom: 1px solid #2e35458f;
  font-size: 1.2rem;
  color: #2e3545;
  padding: .2rem;
  resize: none;
}

.contact__sub {
  outline: none;
  border: none;
  background-color: #FF6701;
  font-size: 1rem;
  color: #f2f3f4;
  padding: 1rem 4rem;
  margin-left: auto;
  cursor: pointer;
}

.contact__sub:hover {
  background-color: #2e3545;
}

.contact__sub:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.footer {
  margin-top: 5rem;
  width: 100%;
  min-height: 40vh;
  background-color: #2e3545;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.footer__container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 10rem;
}

@media screen and (max-width: 830px) {
  .footer__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    padding-bottom: 8rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 3.5rem;
}

.footer__row:first-child {
  margin-left: 0;
}

.footer__row:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1135px) {
  .footer__row {
    margin: 0 2rem;
  }
}

@media screen and (max-width: 950px) {
  .footer__row {
    margin: 0 1rem;
  }
}

@media screen and (max-width: 830px) {
  .footer__row {
    margin: 1rem 0;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer__logo {
  width: 8rem;
}

.footer__logo:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.footer__title {
  font-size: 1.2rem;
  color: #f2f3f4;
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer__text {
  font-size: 1rem;
  color: #f2f3f4;
  opacity: .75;
  margin-bottom: .5rem;
}

.footer__link {
  font-size: 1rem;
  color: #f2f3f4;
  opacity: .75;
  margin-bottom: .5rem;
}

.footer__link:hover {
  color: #FF6701;
  opacity: 1;
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.footer__down {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 15%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10rem;
  border-top: 1px solid #ffffff42;
}

@media screen and (max-width: 950px) {
  .footer__down {
    padding: 0 2rem;
  }
}

@media screen and (max-width: 480px) {
  .footer__down {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 10%;
  }
}

.footer__rights {
  font-size: 1rem;
  color: #f2f3f4;
  opacity: .75;
}

.footer__bixtep {
  color: #f2f3f4;
  opacity: .75;
}

.footer__bixtep span {
  color: #FF6701;
}

.footer__bixtep:hover {
  opacity: 1;
}

.footer__map {
  height: 250px;
  width: 250px;
  overflow: hidden;
  border-radius: 4px;
  margin-left: 5rem;
  border: 1px solid #FF6701;
}

@media screen and (max-width: 1040px) {
  .footer__map {
    width: 400px;
    margin-left: 2rem;
  }
}

@media screen and (max-width: 980px) {
  .footer__map {
    width: 100%;
    margin-left: 0;
    margin-top: 3rem;
  }
}
