@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-.ttf) format('truetype');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-.ttf) format('truetype');
}
* {
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #010202;
  min-width: 350px;
}
.container {
  width: 95%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .container {
    width: 1000px;
  }
}
@media (min-width: 1250px) {
  .container {
    width: 1200px;
  }
}
body > article {
  width: 95%;
  margin: 0 auto;
  margin-top: 105px;
}
@media (min-width: 992px) {
  body > article {
    width: 1000px;
  }
}
@media (min-width: 1250px) {
  body > article {
    width: 1200px;
  }
}
body > article > h2 {
  font-size: 2rem;
  line-height: 40px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
body > article > h2:after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  margin: 15px auto;
  background: #FCCB00;
}
footer {
  margin-top: 75px;
  background: #010202;
  padding: 15px;
  text-align: center;
  color: white;
  font-size: 0.8em;
}
footer a {
  color: white;
}
#navigation {
  position: fixed;
  z-index: 500;
  width: 100%;
  top: 15px;
  transition: top 250ms;
}
#navigation.attached > .container {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}
#navigation > .container {
  background: white;
  transition: box-shadow 500ms;
  display: flex;
  align-items: center;
}
#navigation > .container > a#logo {
  height: 65px;
  margin: 15px;
  flex: 0 0 65px;
  background-image: url(../../logo-icon.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
}
@media (min-width: 576px) {
  #navigation > .container > a#logo {
    flex: 1 0 65px;
  }
}
@media (min-width: 768px) {
  #navigation > .container > a#logo {
    flex: 1 0 200px;
    height: 75px;
    background-image: url(../../logo.svg);
  }
}
@media (min-width: 1250px) {
  #navigation > .container > a#logo {
    flex: 0 0 200px;
  }
}
#navigation > .container > nav {
  flex: 1 0 auto;
  display: none;
}
@media (min-width: 1250px) {
  #navigation > .container > nav {
    display: block;
  }
}
#navigation > .container > nav ul {
  padding-left: 0;
  list-style: none;
  display: flex;
}
#navigation > .container > nav ul li {
  margin-left: 15px;
}
#navigation > .container > nav ul li a {
  padding: 15px 22px;
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}
#navigation > .container > nav ul li a:hover {
  background: rgba(0, 0, 0, 0.05);
}
#navigation > .container > nav ul li.nav-contact > a {
  background: #FCCB00;
  color: black;
}
#navigation > .container > .contacts {
  align-self: stretch;
  padding: 15px 22.5px;
  flex: 1 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}
#navigation > .container > .contacts a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  letter-spacing: 1.1px;
}
#navigation > .container > .contacts a > i.fa {
  color: #FCCB00;
  font-size: 40px;
}
#navigation > .container > .contacts a > span {
  display: none;
}
@media (min-width: 576px) {
  #navigation > .container > .contacts {
    background: rgba(0, 0, 0, 0.05);
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-start;
  }
  #navigation > .container > .contacts a > i.fa {
    color: #FCCB00;
    font-size: 1rem;
  }
  #navigation > .container > .contacts a > span {
    display: inline;
  }
}
#navigation > .container #mobile-menu-toggle {
  background: #FCCB00;
  color: white;
  text-transform: uppercase;
  font-size: 1.75rem;
  padding: 10px;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 64px;
}
#navigation > .container #mobile-menu-toggle > span {
  display: none;
}
@media (min-width: 576px) {
  #navigation > .container #mobile-menu-toggle {
    width: 130px;
  }
  #navigation > .container #mobile-menu-toggle > span {
    display: inline;
  }
}
@media (min-width: 1250px) {
  #navigation > .container #mobile-menu-toggle {
    display: none;
  }
}
#navigation.mobile-menu-expanded {
  top: 0 !important;
  left: 0 !important;
}
#navigation.mobile-menu-expanded > .container {
  padding: 15px;
  display: block;
  min-height: 100vh;
  width: 100%;
}
#navigation.mobile-menu-expanded > .container > a#logo {
  display: block;
  margin: 0;
  height: 65px;
  background-position: 15px;
  background-image: url('../../logo.svg');
}
#navigation.mobile-menu-expanded > .container > nav {
  display: block;
}
#navigation.mobile-menu-expanded > .container > nav > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#navigation.mobile-menu-expanded > .container > nav > ul > li {
  margin-left: 0;
  margin-bottom: 15px;
}
#navigation.mobile-menu-expanded > .container > nav > ul > li > a {
  display: block;
  text-align: center;
  padding: 15px;
}
#navigation.mobile-menu-expanded > .container .contacts {
  margin-top: 15px;
  background: none;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}
#navigation.mobile-menu-expanded > .container .contacts > div {
  margin-bottom: 15px;
}
#navigation.mobile-menu-expanded > .container .contacts > div i.fa {
  font-size: 1rem;
}
#navigation.mobile-menu-expanded > .container .contacts > div span {
  display: inline !important;
}
#navigation.mobile-menu-expanded #mobile-menu-toggle {
  position: fixed;
  top: 15px;
  right: 15px;
}
body > header {
  height: 80vh;
  min-height: 600px;
  background: url('../../hero-image-blur.jpg') no-repeat center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
body > header > div {
  width: 95%;
  margin: 0 auto;
  text-align: center;
  padding-top: 100px;
}
@media (min-width: 992px) {
  body > header > div {
    width: 1000px;
  }
}
@media (min-width: 1250px) {
  body > header > div {
    width: 1200px;
  }
}
@media (min-width: 576px) {
  body > header > div {
    padding-left: 45px;
    text-align: left;
  }
}
body > header > div h1 {
  color: #010202;
  text-shadow: 0 0 2px #FCCB00;
  font-size: 3.3rem;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  body > header > div h1 {
    font-size: 5rem;
  }
}
body > header > div h1 > span {
  color: black;
  margin-top: 25px;
  display: block;
  text-transform: none;
  font-weight: 300;
}
body > header > div a {
  -webkit-appearance: none;
  border: none;
  background: #FCCB00;
  transition: background-color 250ms;
  color: white;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  padding: 20px 30px;
  cursor: pointer;
}
@media (min-width: 400px) {
  body > header > div a {
    display: inline;
  }
}
body > header > div a:hover {
  background-color: #ffd730;
}
#what-we-do > div {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 45px;
  grid-template-rows: auto auto;
}
@media (max-width: 576px) {
  #what-we-do > div {
    justify-items: center;
  }
  #what-we-do > div > .service {
    max-width: 315px;
  }
}
@media (min-width: 576px) {
  #what-we-do > div {
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
  }
}
@media (min-width: 768px) {
  #what-we-do > div {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
  }
}
@media (min-width: 992px) {
  #what-we-do > div {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 45px;
  }
}
#what-we-do > div > .service {
  display: flex;
  flex-direction: column;
  background: #010202;
  color: white;
}
#what-we-do > div > .service > .service__image {
  height: 175px;
  position: relative;
}
#what-we-do > div > .service > .service__image > .reference-prev,
#what-we-do > div > .service > .service__image > .reference-next {
  position: absolute;
  top: 0;
  display: flex;
  height: 100%;
  width: 33%;
  z-index: 100;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 250ms;
}
#what-we-do > div > .service > .service__image > .reference-prev:hover,
#what-we-do > div > .service > .service__image > .reference-next:hover {
  opacity: 1;
}
#what-we-do > div > .service > .service__image > .reference-prev > svg,
#what-we-do > div > .service > .service__image > .reference-next > svg {
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.6));
}
#what-we-do > div > .service > .service__image > .reference-prev.reference-prev,
#what-we-do > div > .service > .service__image > .reference-next.reference-prev {
  left: 0;
  align-items: center;
  justify-content: flex-start;
}
#what-we-do > div > .service > .service__image > .reference-prev.reference-next,
#what-we-do > div > .service > .service__image > .reference-next.reference-next {
  right: 0;
  align-items: center;
  justify-content: flex-end;
}
#what-we-do > div > .service > .service__image > div {
  width: 100%;
  height: 100%;
  position: relative;
}
#what-we-do > div > .service > .service__image > div > div {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1250ms;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: white;
}
#what-we-do > div > .service > .service__image > div > div.active {
  transition: opacity 500ms;
  opacity: 1;
}
#what-we-do > div > .service > .service__title {
  line-height: 2em;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  padding: 15px 5px;
}
#what-we-do > div > .service .service__desc {
  flex: 1 0 100px;
  text-align: center;
  line-height: 2em;
  padding: 15px;
  padding-top: 0;
}
#what-we-do > div > .service .service__link {
  text-align: right;
  margin-bottom: 15px;
  margin-right: 15px;
}
#what-we-do > div > .service .service__link > a {
  color: white;
  font-size: 20px;
  line-height: 28px;
  text-decoration: none;
}
#what-we-do > div > .service .service__link > a > span {
  text-decoration: underline;
}
#what-we-do > div > .service .service__link > a svg {
  vertical-align: middle;
}
#about-us > div {
  width: 875px;
  max-width: 95%;
  margin: 0 auto;
  text-align: center;
  line-height: 2em;
}
#about-us .profile {
  margin-top: 30px;
}
#about-us .profile img {
  width: 128px;
  height: 128px;
  border-radius: 100%;
}
#about-us .profile strong {
  font-size: 1.2em;
}
#about-us .profile q {
  display: block;
  margin-bottom: 15px;
}
#reference {
  margin-top: 45px;
}
#reference img {
  max-width: 100%;
  transition: transform 250ms;
}
#reference img:hover {
  transform: scale(1.1);
}
#reference #reference-filter {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#reference #reference-filter button {
  -webkit-appearance: none;
  background: white;
  border: 2px solid #FCCB00;
  color: #FCCB00;
  transition: background-color 250ms, border-color 250ms;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  padding: 5px 8px;
  cursor: pointer;
}
#reference #reference-filter button:hover {
  border-color: #ffd730;
}
#reference #reference-filter button.active {
  background: #FCCB00;
  color: white;
}
#reference #reference-filter button.active:hover {
  background: #ffd730;
}
#reference #reference-filter button.all {
  border-color: #010202;
}
#reference #reference-filter button.all.active {
  background-color: #010202;
}
#reference #reference-filter button,
#reference #reference-filter span {
  margin-right: 11.25px;
  margin-bottom: 11.25px;
}
#reference #reference-masonry {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
#reference #reference-masonry > a {
  flex: 0 0 calc(33% - 20px);
}
@media (min-width: 768px) {
  #reference #reference-masonry > a {
    flex: 0 0 calc(25% - 20px);
  }
}
@media (min-width: 992px) {
  #reference #reference-masonry > a {
    flex: 0 0 calc(20% - 20px);
  }
}
#reference #reference-masonry > a > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
#reference #reference-more {
  margin-top: 15px;
  text-align: center;
}
#reference #reference-more > button {
  -webkit-appearance: none;
  border: none;
  background: #FCCB00;
  transition: background-color 250ms;
  color: white;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 20px 30px;
  cursor: pointer;
}
#reference #reference-more > button:hover {
  background-color: #ffd730;
}
#reference #reference-more > span {
  font-size: 1.5rem;
}
#contact-us > div {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
@media (min-width: 768px) {
  #contact-us > div {
    flex-direction: row;
  }
}
#contact-us > div a {
  text-decoration: none;
}
#contact-us > div a:hover {
  color: #FCCB00 !important;
}
#contact-us > div > .left {
  flex: 4;
}
#contact-us > div > .left a {
  color: #010202;
}
#contact-us > div > .left .socials {
  margin-top: 35px;
  display: flex;
  gap: 22.5px;
}
#contact-us > div > .left .socials a {
  text-decoration: none;
}
#contact-us > div > .left .socials a i {
  font-size: 3.5rem;
}
#contact-us > div > .left .contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#contact-us > div > .left .contacts a {
  font-size: 1.3rem;
}
#contact-us > div > .right {
  flex: 6;
}
#contact-us .contactsaa {
  width: 875px;
  max-width: 95%;
  margin: 45px auto 60px auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
#contact-us .contactsaa > div {
  flex: 0 0 100%;
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  #contact-us .contactsaa > div {
    flex: 0 0 50%;
  }
}
#contact-us .contactsaa > div a {
  color: black;
  text-decoration: none;
}
#contact-us .contactsaa > div a i {
  color: #FCCB00;
}
@media (max-width: 768px) {
  #contact-us .form form {
    max-width: 400px;
    margin: 0 auto;
  }
}
#contact-us .form form > .inputs {
  display: flex;
  flex-wrap: wrap;
}
#contact-us .form form > .inputs > div {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  padding: 15px;
}
@media (min-width: 768px) {
  #contact-us .form form > .inputs > div {
    flex: 0 0 50%;
  }
}
#contact-us .form form label {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}
#contact-us .form form label span {
  line-height: 2.5em;
}
#contact-us .form form label input,
#contact-us .form form label textarea {
  width: 100%;
  padding: 14px 8px;
  margin-bottom: 15px;
  appearance: none;
  border: 2px solid #FCCB00;
}
#contact-us .form form label input:focus,
#contact-us .form form label textarea:focus {
  outline-width: 0 !important;
  box-shadow: inset 0 0 5px #FCCB00;
}
#contact-us .form form label textarea {
  flex: 1 0 auto;
  margin-bottom: 0;
  min-height: 100px;
}
#contact-us .form form > .inputs > div > label:last-child > input {
  margin-bottom: 0;
}
#contact-us .form form .submit {
  text-align: center;
  margin-top: 30px;
}
#contact-us .form form .submit button {
  -webkit-appearance: none;
  border: none;
  background: #FCCB00;
  transition: background-color 250ms;
  color: white;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  padding: 20px 30px;
  cursor: pointer;
}
#contact-us .form form .submit button:hover {
  background-color: #ffd730;
}
#partners {
  margin-bottom: 45px;
  padding-bottom: 15px;
}
#partners > div {
  margin-top: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
#partners img {
  height: 64px;
  opacity: 0.5;
  transition: 250ms;
}
#partners img:hover {
  opacity: 1;
}
#partners::-webkit-scrollbar {
  height: 8px;
  background-color: white;
  border-radius: 10px;
}
#partners::-webkit-scrollbar-thumb {
  background: rgba(100, 100, 100, 0.1);
  border-radius: 10px;
}
/*# sourceMappingURL=base.css.map */