@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz,wght@6..12,200;6..12,300;6..12,400;6..12,500;6..12,600;6..12,700;6..12,800;6..12,900;6..12,1000&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
.allHidden {
  overflow: hidden;
}

header {
  width: 100%;
  max-width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 85;
}

.header_container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 0;
}
@media (min-width: 1280px) {
  .header_container {
    padding: 22px 56px 22px 30px;
  }
}

.header_logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.header_logo:hover {
  text-decoration: none;
}
.header_logo span {
  font-size: 17px;
  line-height: 1;
  color: #A2A2A2;
  font-style: italic;
  padding-left: 9px;
  display: none;
}
@media (min-width: 576px) {
  .header_logo span {
    display: inline-block;
    animation: fadeInLeft 1s;
  }
}

nav {
  width: 100%;
  max-width: 320px;
  position: fixed;
  top: 80px;
  right: 0;
  bottom: 0;
  overflow: hidden auto;
  background-color: #FFFFFF;
  box-shadow: -10px 0 8px rgba(73, 171, 208, 0.05);
  animation: fadeInRight 0.8s;
  display: none;
}
@media (min-width: 1280px) {
  nav {
    max-width: 100%;
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    overflow: visible;
    background-color: transparent;
    box-shadow: none;
    animation: none;
  }
}
nav ul {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1280px) {
  nav ul {
    flex-direction: row;
    justify-content: flex-end;
  }
  nav ul:hover ~ span {
    color: #CC0000;
  }
}
nav ul:has(.now) ~ span {
  color: #CC0000;
  font-weight: 500;
}
nav ul:has(.now) ~ span i path {
  fill: #CC0000;
}
nav ul li {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
@media (min-width: 1280px) {
  nav ul li span:has(i) {
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
nav ul li.now > span {
  color: #CC0000;
}
@media (min-width: 1280px) {
  nav ul li:hover > ul {
    display: block;
  }
}
@media (min-width: 1280px) {
  nav ul li:hover > span i {
    transform: translate(8px, 8px) rotate(90deg);
    transition: 0.4s;
  }
}
nav ul li:hover > span i path {
  fill: #CC0000;
}
nav ul li.active > ul {
  display: block;
}
nav ul li.active > ul ~ span {
  color: #CC0000;
}
nav ul li.active > ul ~ span i {
  transform: translate(8px, 8px) rotate(90deg);
  transition: 0.4s;
}
nav ul li.active > ul ~ span i path {
  fill: #CC0000;
}
nav ul li span {
  cursor: pointer;
  font-size: 17px;
  line-height: 1.5;
  color: #737373;
  padding: 21px 12px;
  border-bottom: 1px solid #DDDDDD;
  text-transform: capitalize;
  display: flex;
}
@media (min-width: 1280px) {
  nav ul li span {
    border-bottom: 0;
    padding: 10px 16px;
    flex-direction: row;
  }
}
nav ul li span:hover {
  color: #CC0000;
}
nav ul li span:hover path {
  fill: #CC0000;
}
nav ul li span i {
  display: block;
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  transform: translateY(-2px);
}
@media (min-width: 1280px) {
  nav ul li span i {
    margin-right: 0;
  }
}
nav ul li span i svg {
  width: 100%;
  height: 100%;
}
nav ul li span i svg path {
  stroke: none;
  fill: #737373;
}
nav ul li ul {
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.6s;
  display: none;
}
@media (min-width: 1280px) {
  nav ul li ul {
    position: absolute;
    width: 260px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
    background-color: #FFFFFF;
  }
}
nav ul li ul li span i {
  display: block;
}
nav ul li ul:has(.now) ~ span {
  border-left: 2px solid #CC0000;
}
@media (min-width: 1280px) {
  nav ul li ul:has(.now) ~ span {
    border-left: 0;
  }
}
@media (min-width: 1280px) {
  nav .level_1 {
    align-items: center;
  }
}
@media (min-width: 1280px) {
  nav .level_1 > li > span i {
    display: none;
  }
}
@media (min-width: 1280px) {
  nav .level_1 > li:last-of-type span {
    font-size: 15px;
    line-height: 1.5;
    color: #FFFFFF;
    background-color: #CC0000;
    padding: 6px 20px;
    margin-left: 38px;
    border-radius: 50px;
    border: 1px solid #CC0000;
  }
  nav .level_1 > li:last-of-type span:hover {
    color: #CC0000;
    background-color: #FFFFFF;
  }
}
nav .level_1 > li.now span {
  color: #CC0000;
  border-left: 2px solid #CC0000;
}
@media (min-width: 1280px) {
  nav .level_1 > li.now span {
    border-left: 1px solid transparent;
  }
}
@media (min-width: 1280px) {
  nav .level_1 > li.now[data-now=contact] span {
    color: #FFFFFF;
    background-color: #CC0000;
  }
}
@media (min-width: 1280px) {
  nav .level_1 > li.now[data-now=contact]:hover span {
    color: #CC0000;
    border: 1px solid #CC0000;
    background-color: #FFFFFF;
  }
}
@media (min-width: 1280px) {
  nav .level_2 {
    top: 100%;
    left: 0;
  }
}
nav .level_2 li span {
  padding: 10px 30px;
}
@media (min-width: 1280px) {
  nav .level_2 li span {
    padding: 10px 20px;
  }
}
@media (min-width: 1280px) {
  nav .level_2 li:has(.now) > span {
    border-left: 2px solid #CC0000;
  }
}
nav .level_3 {
  background-color: #F5F5F5;
}
@media (min-width: 1280px) {
  nav .level_3 {
    top: 0;
    left: 100%;
    background-color: #FFFFFF;
  }
}
nav .level_3 li span {
  border-bottom: 0;
  padding: 10px 46px;
}
@media (min-width: 1280px) {
  nav .level_3 li span {
    padding: 10px 20px;
  }
}
nav .level_3 li.now span {
  color: #CC0000;
  border-left: 0;
}

.header_toggler {
  width: 80px;
  height: 80px;
  cursor: pointer;
  background-color: #CC0000;
  position: relative;
}
@media (min-width: 1280px) {
  .header_toggler {
    display: none;
  }
}
.header_toggler::before {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-aspect-ratio: 1/1;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: all 0.4s;
  content: "";
}
.header_toggler:hover {
  opacity: 0.95;
}
.header_toggler:active {
  transform-origin: right top;
  transform: scale(0.95);
}

header.off nav {
  display: none;
}
@media (min-width: 1280px) {
  header.off nav {
    display: block;
  }
}
header.off .header_toggler::before {
  width: 30px;
  margin-top: -15px;
  margin-left: -15px;
  background-image: url(../images/header/header_ham.svg);
}

header.on nav {
  display: block;
}
header.on .header_toggler::before {
  width: 20px;
  margin-top: -10px;
  margin-left: -10px;
  background-image: url(../images/header/header_close.svg);
}

/* breadcrumbs */
/* div#linkBlock {
  margin-right: 0;
  &.breadcrumbs {
    width: 100%; max-width: 1480px; margin: 0 auto;
    text-align: right;
    padding: 30px 15px; 
    @media (min-width: 768px) {
      padding: 30px 20px;
    }
    @media (min-width: 992px) {
      padding: 30px 40px;
    }
    a {
      font-size: 15px; line-height: 1.5; margin-bottom: 5px;
      color: #000; font-weight: 400;
      -webkit-text-transform: capitalize;
      text-transform: capitalize;
      &:not(:last-of-type) {
        &::after {
          padding: 0 5px;
          content: '/';
        }
      }
      &:hover {
        color: #999;
        text-decoration: none;
        &::after {
          color: #000;
        }
      }
      &:last-of-type {
        cursor: default;
        color: #CC0000;
        &:hover {
          color: #CC0000;
        }
      }
    }
  }
}

.caseStudyTop {
  width: 100%; max-width: 1480px; margin: 0 auto;
  text-align: left;
  padding: 30px 15px; 
  margin-top: -80px; padding-bottom: 15px;
  -webkit-pointer-events: none;
  pointer-events: none;
  @media (min-width: 768px) {
    padding: 30px 20px;
  }
  @media (min-width: 992px) {
    padding: 30px 40px;
  }
} */
/* footer */
#htmlBottomBlock {
  font-family: "Poppins", sans-serif;
}
@media (min-width: 1400px) {
  #htmlBottomBlock .nav-menu > div {
    padding: 0 8px;
  }
}
#htmlBottomBlock .nav-menu h1 {
  font-size: 13px;
  line-height: 1.15;
  color: #00CC99;
  font-weight: 400;
  padding-top: 10px;
}
#htmlBottomBlock .nav-menu h1 span {
  font-weight: 400;
}
#htmlBottomBlock .nav-menu .li {
  font-family: "Poppins", sans-serif;
  line-height: 1.5;
  list-style: disc inside;
  color: rgb(153, 153, 153);
  padding-left: 24px;
  text-indent: -19px;
}
#htmlBottomBlock .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
#htmlBottomBlock .row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
#htmlBottomBlock .row .col-auto {
  flex: 0 0 auto;
  width: auto;
}
#htmlBottomBlock .mt-3 {
  margin-top: 3px !important;
}
@media (min-width: 1200px) {
  #htmlBottomBlock .px-xl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (min-width: 992px) {
  .max-h-lg-350 {
    max-height: 350px;
  }
}
@media (min-width: 1600px) {
  .mr-1600-60 {
    margin-right: 60px;
  }
}/*# sourceMappingURL=header.css.map */