* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body { 
  background: var(--bg-color) !important;
  overflow-x: hidden; 
}
body.no-scroll { overflow: hidden; }

@-moz-document url-prefix() {
  html, .inner, .cabinet-nav {
    scrollbar-width: thin;
    scrollbar-color: #D5D5D5 #F1F1F1;
  }
}

html::-webkit-scrollbar, .inner::-webkit-scrollbar
.cabinet-nav::-webkit-scrollbar {
  width: 5px; 
}

html::-webkit-scrollbar-thumb, .inner::-webkit-scrollbar-thumb
.cabinet-nav::-webkit-scrollbar-thumb {
  background: #E6E6E6; 
  height: 87px;
  border-radius: 3px;
}

:root {
  --dark-blue: #17144A;
  --dark-purple: #45436E;
  --light-blue: #218BFA;
  --light-gray: #A8A8A8;
  --black-100: #262626;
}

.Container {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
}

.content, .content1 {
  display: flex;
  width: 100%;
  max-width: 1236px; 
}
.content1 { flex-direction: column; }

.glass {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    inset -2px -2px 4px rgba(255, 255, 255, 0.07),
    inset 2px 2px 4px rgba(255, 255, 255, 0.09),
    inset 0 0 6px rgba(255, 255, 255, 0.05);
}

.main-header {
  position: absolute;
  top: 30px;
  z-index: 1002;
}

.main-header-content {
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.logo {
  display: flex;
  width: 165px; height: 55px;
  img {
    width: 100%;
    object-fit: contain;
  }
}

.header-actions-cont {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 25px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  > a:first-child {
    background: linear-gradient(97.31deg, #2487FC -1.92%, #05ACE3 74.24%);
    border-radius: 28px;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 14px 'Firago Regular';
    line-height: 17px;
    width: 115px; height: 55px;
  }
  &::after, &::before {
    content: '';
    background: rgba(255,255,255,0.1);
    height: 26px; width: 1px;
    position: absolute;
    top: 17px;
  }
  &::after { left: 140px; }
  &::before { right: 44px; }
}

.media {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: -5px;
}

.language-change {
  position: relative;
  a, span {
    color: white;
    cursor: pointer;
    text-decoration: none;
    font: 14px 'Firago Regular';
    line-height: 18px;
  }
}

.language-list {
  background: var(--light-blue);
  border-radius: 10px;
  display: none;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  position: absolute;
  top: 140%; left: -15px;
  margin: 0; padding: 15px 0;
  width: 50px;
  li { display: flex; justify-content: center; }
}

.menu {
  display: flex;
  gap: 10px;
  a {
    color: white;
    text-decoration: none;
    font: 14px 'Firago Regular';
    line-height: 18px;
    padding: 10px;
    transition: all 0.3s ease;
    &:hover, &.active { color: #06ACE4; }
  }
}
header .menu { margin-left: auto; }

.menu-toggle {
  background: transparent;
  border: none;
  color: var(--light-blue);
  display: none;
  font-size: 30px;
}

.dropdownMenu {
  background: var(--dark-blue);
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  position: fixed;
  width: 100%; height: 0;
  overflow-y: auto; 
  overflow-x: hidden;
  z-index: 2000;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
  hr {
    border-color: rgba(255, 255, 255, 0.4);
    margin: 30px 0;
    opacity: 1;
  }
}

.dropdownMenu.visible, .dropdownMenu.visible1 { transform: scaleY(1); height: calc(100vh - 120px); top: 120px; }
.dropdownMenu.visible { top: 120px; }

.mob-link {
  color: white;
  text-decoration: none;
  font: 14px 'Firago Medium';
  line-height: 18px;
  padding: 10px 0;
}

.banner {
  position: relative;
  z-index: 1001;
  img {
    width: 100%; height: 700px;
    object-fit: cover;
  }
  &::after {
    content: '';
    background: linear-gradient(135.48deg, rgba(15, 12, 63, 0.83) 23.83%, rgba(69, 67, 110, 0.5) 50.95%, 
    rgba(69, 67, 110, 0.843421) 73.28%, var(--dark-purple) 98.13%);
    position: absolute;
    inset: 0;
  }
}

header {
  background: var(--dark-blue);
  height: 120px;
  position: fixed;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
} 

.header-content {
  display: flex;
  align-items: center;
  gap: 49px;
}

main, .about-us, .currprod-cont {
  background: url('../images/main-bg.png') no-repeat center center / cover;
  position: relative;
  &::after {
    content: '';
    background: linear-gradient(135.48deg, #0F0C3F 23.83%, rgba(69, 67, 110, 0.9) 63.42%, 
    rgba(69, 67, 110, 0.4) 98.13%);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  > * { position: relative; z-index: 2; }
}

.service-grid {
  padding: 90px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  color: unset;
  text-decoration: none;
  padding: 30px;
  > img {
    border-radius: 20px;
    width: 100%; height: 187px;
    object-fit: cover;
    margin-bottom: 25px;
  }
  p:nth-child(2) {
    color: white;
    font: 16px 'Firago Medium';
    line-height: 21px;
    margin-bottom: 10px;
  }
  p:last-child {
    color: var(--light-gray);
    display: -webkit-box;
    font: 14px 'Firago Regular';
    line-height: 19px;
    margin-bottom: 0;
  }
}

.water-engineering {
  display: flex;
  align-items: flex-start;
  gap: 55px;
  padding: 75px 0;
}

.engineering-left {
  width: 600px;
  position: relative;
  > img {
    border-radius: 20px;
    width: 100%; height: 500px;
    object-fit: cover;
  }
}

.play {
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  color: var(--light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  width: 58px; height: 58px;
  position: absolute;
  z-index: 2;
  top: 21px; right: 28px;
  i { margin-left: 2px; }
}

.play::before {
  content: '';
  background: rgba(255, 255, 255, 0.9);
  border-radius: 100%;
  position: absolute;
  top: 0; left: 0;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  height: 100%; width: 100%;
  -webkit-animation: gloosy-pulse 1.5s linear .5s infinite both;
  animation: gloosy-pulse 1.5s linear .5s infinite both;
  pointer-events: none;
  z-index: -1;
}

@-webkit-keyframes gloosy-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

@keyframes gloosy-pulse {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(2.5);
    transform: scale(2.5);
    opacity: 0;
  }
}

.engineering-right {
  color: white;
  width: calc(100% - 655px);
  > p:first-child {
    font: 30px 'Campton Medium';
    line-height: 35px;
    margin-bottom: 20px;
  }
  > div {
    font: 14px 'Firago Regular';
    line-height: 17px;
    margin-bottom: 30px;
  }
}

.learn-more {
  border-radius: 24px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px 'Firago Regular';
  line-height: 19px;
  width: 135px; height: 48px;
  transition: all 0.3s ease;
  &:hover { background: rgba(241, 241, 241, 0.3); }
}

.media-preview {
  background: rgba(255, 255, 255, 0.051);
  border-radius: 20px; 
  margin: 90px 0 100px;
  display: flex;
  align-items: flex-start;
  position: relative;
  > div { width: 50%; }
  > div:first-child { padding: 30px 50px 30px 37px; }
  > div:last-child { padding: 30px 37px 30px 50px; }
  &::after {
    content: '';
    background: rgba(255, 255, 255, 0.15);
    width: 1px; height: 100%;
    top: 0; left: 50%;
    position: absolute;
  }
}

.media-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  span {
    color: white;
    font: 20px 'Firago Medium';
    line-height: 24px;
  }
  a { width: 165px; }
}

.news-swiper { width: 100%; padding-bottom: 50px !important; }
.news-slide {
  color: unset;
  text-decoration: none;
  width: 100% !important;
  > img:first-child {
    border-radius: 20px;
    width: 100%; height: 350px;
    object-fit: cover;
    margin-bottom: 13px;
  }
  .intro, .name {
    color: white;
    display: -webkit-box;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .name {
    font: 16px 'Firago Medium';
    line-height: 20px;
    max-height: 40px;
    margin-bottom: 10px;
  }
  .intro {
    font: 14px 'Firago Regular';
    line-height: 19px;
  }
}

.date {
  color: var(--light-gray);
  display: flex;
  align-items: center;
  gap: 4px;
  font: 14px 'Firago Regular';
  line-height: 19px;
  margin-bottom: 11px;
}

.swiper1 .swiper-pagination-bullet {
  background: #A6D1FC;
  border-radius: 4px;
  width: 8px; height: 8px;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper1 .swiper-pagination-bullet-active { background: #208BF8; }

.blog-prev {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  > img {
    border-radius: 10px;
    width: 180px; height: 105px;
    object-fit: cover;
  }
  > div { width: calc(100% - 210px); }
  .name { 
    color: white;
    font: 14px 'Firago Regular';
    line-height: 19px;
    margin-bottom: 0;
  }
  &:last-child { 
    border-bottom: none; 
    margin-bottom: 0;
  }
}

.newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 775px;
  margin: 0 auto 115px;
  > p:first-of-type {
    color: white;
    font: 20px 'Firago Medium';
    line-height: 24px;
    margin-bottom:45px ;
  }
  > div {
    display: grid;
    grid-template-columns: 600fr 150fr;
    gap: 15px;
    width: 100%;
    > * { 
      border: none; 
      color: white; 
      border-radius: 25px;
      font: 14px 'Firago Regular';
      line-height: 19px;
      height: 50px; 
    }
    input {
      background: rgba(255, 255, 255, 0.04);
      padding-left: 30px;
      &:focus { outline: none; }
    }
    button {
      transition: all 0.3s ease;
      &:hover { background: rgba(241, 241, 241, 0.302); }
    }
  }
}

.user-cont { 
  padding: 80px 20px; 
  .content1 { 
    max-width: 1320px; 
    > p {
      color: var(--black-100);
      text-align: center;
      font: 30px 'Firago Medium';
      line-height: 35px;
      margin-bottom: 70px;
    }
  }
}

.user-swiper-cont {
  display: flex;
  align-items: center;
  gap: 35px;
}

.user-swiper { width: calc(100% - 150px); }
.user-slide {
  display: flex !important;
  width: calc(7%) !important;
  img {
    width: 100%; height: 28px;
    object-fit: contain;
  }
}

.prev-btn, .next-btn {
  background: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0px 6px 15px 0px rgba(0, 0, 0, 0.15);
  color: #4DA2F9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 40px; height: 40px;
  transition: all 0.3s ease;
  &:hover {
    background: #4DA2FB;
    color: white;
  }
}

footer {
  background: var(--dark-blue);
  padding: 100px 20px 95px !important;
}

.footer-top {
  border-bottom: 1px solid #495457;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 55px;
  margin-bottom: 30px;
}

.footer-logo {
  max-width: 240px;
  > a {
    display: flex;
    width: 165px; height: 32px;
    margin-bottom: 23px;
    img {
      width: 100%; height: 100%;
      object-fit: contain;
    }
  }
  > p {
    color: #99A1AF;
    font: 16px 'Firago Medium';
    line-height: 19px;
    margin-bottom: 0;
  }
}

.footer-menu {
  font: 16px 'Firago Medium';
  line-height: 19px;
  > p { color: white; margin-bottom: 25px; }
  div { display: flex; flex-direction: column; gap: 15px; }
  a { color: #99A1AF; text-decoration: none; }
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.creator, .copyright {
  color: var(--light-gray);
  font: 14px 'BPG Arial';
  line-height: 19px;
}

.footer-media {
  display: flex;
  gap: 12px;
  a {
    background: #303091;
    border-radius: 10px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px; height: 33px;
  }
}

.contact-page {
  background: linear-gradient(61.2deg, #F6F6F6 32.26%, rgba(255, 255, 255, 0.8) 102.58%);
  padding: 106px 20px;
  .content { 
    align-items: flex-start;
    max-width: 1190px;
    gap: 10px;
  }
}

.contact-left {
  width: calc(100% - 650px);
  > p:first-child {
    color: var(--black-100);
    font: 30px 'Firago Medium';
    line-height: 35px;
    margin-bottom: 40px;
  }
  > p:nth-child(2) {
    color: #515151;
    font: 14px 'Firago Regular';
    line-height: 19px;
    margin-bottom: 35px;
  }
}

.contact-form {
  background: white;
  border-radius: 20px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 30px 25px;
  width: 640px;
  input, textarea {
    background: #FBFBFB;
    border: 1px solid #F1F1F1;
    border-radius: 15px;
    color: var(--light-gray);
    font: 14px 'Firago Regular';
    line-height: 19px;
    padding-left: 20px;
    height: 50px; width: 100%;
    &:focus { outline: none; }
  }
  textarea {
    padding-top: 20px;
    resize: none;
    height: 190px;
    margin-bottom: 25px;
  }
  button {
    background: linear-gradient(91.32deg, var(--dark-blue) 1%, var(--dark-purple) 99%);
    border: none;
    border-radius: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font: 14px 'Firago Regular';
    line-height: 19px;
    width: 235px; height: 48px;
    transition: all 0.3s ease;
    position: relative;
    > * { position: relative; z-index: 2; }
    &::after {
      content: '';
      background: var(--dark-purple);
      border-radius: 24px;
      position: absolute;
      inset: 0; opacity: 0;
      transition: all 0.3s ease;
    }
    &:hover::after { opacity: 1; }
  }
}

.fullname {
  display: flex;
  gap: 19px;
  margin-bottom: 20px;
  input { width: calc(50% - 9.5px); }
}

.contact-info {
  padding-left: 40px;
  position: relative;
  &::before {
    content: '';
    background: var(--dark-purple);
    border-radius: 4px;
    width: 7px; height: 100%;
    position: absolute;
    left: 0;
  }
  > .contact-item { margin-bottom: 20px; }
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  span {
    color: var(--light-gray);
    font: 14px 'Firago Regular';
    line-height: 19px;
  }
  a {
    color: #515151;
    text-decoration: none;
    font: 16px 'Firago Medium';
    line-height: 20px;
  }
}

.phones-mails {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  margin-bottom: 30px;
  > div {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.contact-page .footer-media a { background: #F9BF3F; }

.page-head {
  background: url('../images/page-head.png') no-repeat center center / cover;
  position: relative;
  padding: 200px 20px 95px;
  &::after {
    content: '';
    background: linear-gradient(135.48deg, rgba(15, 12, 63, 0.83) 23.83%, rgba(69, 67, 110, 0.5) 50.95%, 
    rgba(69, 67, 110, 0.843421) 73.28%, var(--dark-purple) 98.13%);
    position: absolute;
    inset: 0;
    z-index: 1;
  }
  > * { position: relative; z-index: 2; }
  .title {
    color: white;
    font: 30px 'Firago Medium';
    line-height: 35px;
    margin-bottom: 0;
  }
  .msg {
    color: var(--light-gray);
    font: 14px 'Firago Regular';
    line-height: 19px;
    margin: 20px 0 0;
  }
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  a {
    color: white;
    text-decoration: none;
    font: 12px 'Firago Regular';
    line-height: 16px;
  }
  i { color: white; font-size: 7px; }
}

.newsletter-inner {
  background: linear-gradient(-6deg, var(--dark-blue) 48.83%, rgba(23, 20, 74, 0.9) 114.8%, 
  rgba(23, 20, 74, 0.5) 128.62%);
  position: relative;
  padding: 75px 20px;
  &::after {
    content: '';
    background: rgba(255, 255, 255, 0.2);
    width: 100%; max-width: 1236px;
    height: 1px;
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
  }
}

.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 25px;
  > span {
    color: white;
    font: 20px 'Firago Medium';
    line-height: 24px;
  }
}

.newsletter-inner div {
  border-radius: 15px;
  position: relative;
  width: 600px; height: 50px;
  input {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-radius: 15px;
    color: white;
    font: 14px 'Firago Regular';
    line-height: 19px;
    padding: 0 75px 0 20px;
    width: 100%; height: 100%;
    &:focus { outline: none; }
  }
  button {
    background: linear-gradient(91.32deg, var(--dark-blue) 1%, var(--dark-purple) 99%);
    border: none;
    border-radius: 15px;
    position: absolute;
    right: 0; top: 0;
    width: 65px; height: 50px;
  }
}

.about-us {
  padding-top: 170px;
  .page-nav { margin-bottom: 45px; }
}

.main-water-engineering {
  gap: 38px;
  padding: 0 !important;
  margin-bottom: 70px;
  .engineering-right { width: calc(100% - 638px); }
  .engineering-left > img { height: 525px; }
}

.about-pdf {
  border-radius: 20px;
  color: unset;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 30px;
  p:first-child {
    color: white;
    font: 20px 'Firago Medium';
    line-height: 24px;
    margin-bottom: 25px;
  }
  div {
    display: flex;
    align-items: center;
    gap: 15px;
    font: 14px 'Firago Regular';
    line-height: 19px;
    span { text-decoration: underline; }
  }
}

.vision-text {
  display: flex;
  gap: 42px;
  margin-bottom: 100px;
  > div {
    border-radius: 20px;
    color: white;
    padding: 40px 55px 35px 40px;
    width: calc(50% - 21px);
    div {
      font: 14px 'Firago Regular';
      line-height: 17px;
    }
  }
  p:first-child {
    font: 30px 'Campton Medium', 'Firago Medium';
    line-height: 35px;
    margin-bottom: 20px;
  }
}

.important-dates {
  display: flex;
  flex-direction: column;
  align-items: center;
  > p {
    color: white;
    font: 20px 'Firago Medium';
    line-height: 24px;
    margin-bottom: 38px;
    text-align: center;
  }
}

.dates-grid {
  color: white;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 130px;
  row-gap: 65px;
  width: 100%;
  position: relative;
  z-index: 1;
  direction: rtl;
  margin-bottom: 130px;
  &::before {
    content: '';
    background: linear-gradient(90deg, #2089F8 0%, #04ABE3 100%);
    width: 1px; height: 100%;
    position: absolute;
    left: 50%; top: 0;
  }
}

.dates-item {
  border-bottom: 1px solid var(--brand-grey);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  position: relative;
  transition: all 0.3s ease;
  > p {
    font: 30px 'Firago Medium';
    line-height: 35px;
    margin-bottom: 0;
  }
  div {
    border-radius: 20px;
    font: 16px 'Firago Medium';
    line-height: 20px;
    padding: 20px 40px;
    width: 100%;
    p { max-width: 450px; margin: 0; }
  }
  &::after {
    content: '';
    background: linear-gradient(180deg, #2287FA 0%, #02AEE1 100%);
    border-radius: 50%;
    width: 11px; height: 11px;
    position: absolute;
    top: 0; left: -70px;
  }
}

.dates-item:nth-child(2n)::after { left: unset; right: -71px; }

.dates-item:nth-child(2) { margin-top: 115px; }
.dates-item:nth-child(2n+1) {
  align-items: flex-end;
  margin-top: -115px;
  div p { text-align: end; margin-right: auto; }
}
.dates-item:nth-child(1) { margin-top: 0; }

.currprod-cont {
  padding: 160px 20px 130px;
  &::after { background: linear-gradient(180deg, #17144A 0%, rgba(23, 20, 74, 0.89) 100%); }
  .page-nav { margin-bottom: 30px; }
} 

.curr-head {
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding: 43px 30px;
  margin-bottom: 40px;
  > span {
    color: white;
    font: 30px 'Firago Medium';
    line-height: 35px;
  }
}

.go-back {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font: 14px 'Firago Regular';
  line-height: 19px;
  display: flex;
  align-items: center;
  gap: 11px;
  transition: all 0.3s ease;
  &:hover {
    color: white;
    gap: 21px;
  }
}

.prod {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 40px;
}

.prod-left {
  width: 600px;
  .text {
    color: white;
    font: 16px 'Firago Medium';
    line-height: 20px;
    margin-bottom: 25px;
    * { font-family: 'Firago Medium' !important; }
  }
}

.video-cont {
  width: 100%; height: 325px;
  position: relative;
  img {
    border-radius: 20px;
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .play {
    right: unset;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
  }
}

.prod-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: calc(100% - 660px);
}

.prod-right a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  img {
    border-radius: 20px;
    width: 100%; height: 118px;
    object-fit: cover;
  }
  div {
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: 16px 'Firago Medium';
    line-height: 20px;
    padding: 29px 20px;
    width: 100%;
    transition: all 0.3s ease;
    i { 
      font-size: 12px;
      color: var(--light-blue); 
    }
  }
}

.prod-right a:hover div { padding-right: 12px; }

.materials > p:first-child {
  color: white;
  font: 16px 'Firago Medium';
  line-height: 20px;
  margin-bottom: 30px;
}

.pdfs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 35px;
  a {
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    width: 100%; 
    > span {
      font: 20px 'Firago Medium';
      line-height: 24px;
    }
    div {
      display: flex;
      align-items: center;
      gap: 12px;
      font: 14px 'Firago Regular';
      line-height: 19px;
    }
  }
}

.news-cont {
  background: var(--dark-blue);
  padding: 70px 20px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 27px 30px;
  margin-bottom: 55px;
}

.news-item {
  color: unset;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  img {
    border-radius: 20px 20px 0 0;
    width: 100%; height: 250px;
    object-fit: cover;
  }
}
.news-item:hover .more { color: var(--light-blue); }

.news-details {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0 0 20px 20px;
  padding: 30px;
  .head {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 11px;
    span {
      color: var(--light-gray);
      font: 12px 'Firago Regular';
      line-height: 15px;
    }
  }
  .title {
    color: white;
    font: 16px 'Firago Medium';
    line-height: 20px;
    margin-bottom: 10px;
    display: -webkit-box;
    height: 60px;
    overflow: hidden;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  .intro {
    color: white;
    display: -webkit-box;
    height: 51px;
    overflow: hidden;
    font: 14px 'Firago Regular';
    line-height: 17px;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 30px;
  }
}

.tag {
  background: linear-gradient(92.75deg, #2585FC 3.14%, #02B0E1 96.86%);
  border-radius: 15px;
  color: white;
  font: 12px 'Firago Regular';
  line-height: 15px;
  padding: 7px 12px;
}

.more {
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  font: 14px 'Firago Regular';
  line-height: 17px;
  transition: all 0.3s ease;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  button {
    background: transparent;
    border: 1px solid rgba(166, 209, 252, 0.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font: 14px 'Firago Regular';
    line-height: 18px;
    width: 38px; height: 38px;
    transition: all 0.3s ease;
    &:hover, &.active {
      background: var(--light-blue);
      border-color: var(--light-blue);
    }
  }
}

.pagination1 button { 
  color: var(--light-gray); 
  &:hover, &.active { color: white; }
}

.proj-head {
  background: #F1F1F1;
  margin-top: 120px;
  padding: 43px 20px;
  .content { justify-content: space-between; flex-wrap: wrap; gap: 15px; }
  .page-nav {
    margin-bottom: 0;
    > * { color: #515151; }
  }
  .go-back { color: var(--black-100); }
}

.project-cont { padding: 40px 20px 140px; }
.project-page {
  align-items: flex-start;
  gap: 50px;
}

.curr-proj {
  width: calc(100% - 440px);
  .title {
    color: var(--black-100);
    font: 30px 'Firago Medium';
    line-height: 36px;
    margin-bottom: 30px;
  }
  > img:first-of-type {
    border-radius: 0 0 20px 20px;
    width: 100%; height: 500px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  hr {
    border-color: #BAB9C9;
    opacity: 1;
    margin: 50px 0 30px;
  }
}

.curr-proj .details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  > div {
    color: var(--light-gray);
    display: flex;
    align-content: center;
    gap: 8px;
    font: 14px 'Firago Regular';
    line-height: 19px;
    i { color: #02B0E1; font-size: 19px; }
  }
}

.curr-proj .text {
  color: black;
  font: 18px 'Firago Regular';
  line-height: 28px;
  margin-bottom: 28px;
  * { font-family: 'Firago Regular'; }
}

.achievements {
  display: flex;
  flex-direction: column;
  gap: 35px;
  padding-left: 45px;
  position: relative;
  &::after {
    content: '';
    background: var(--dark-purple);
    border-radius: 3px;
    width: 5px; height: calc(100% - 20px);
    position: absolute;
    top: 15px; left: 0;
  }
}

.achievements > div {
  p {
    color: var(--black-100);
    font: 30px 'Firago Medium';
    line-height: 36px;
    margin-bottom: 21px;
  }
  div {
    border: 1px solid rgba(69, 67, 110, 0.231);
    border-radius: 16px;
    font: 14px 'Firago Regular';
    line-height: 19px;
    padding: 24px 30px 30px 20px;
    position: relative;
    * { font-family: 'Firago Regular' !important; }
    &::after {
      content: '';
      background: #F9BF3F;
      border-radius: 50%;
      width: 11px; height: 11px;
      position: absolute;
      top: 50%; left: -49px;
      transform: translateY(-50%);
      z-index: 1;
    }
  }
}

.media-share > p:first-child {
  color: var(--black-100);
  font: 16px 'Firago Medium';
  line-height: 20px;
  margin-bottom: 20px;
}

.share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  > div {
    display: flex;
    gap: 15px;
    div {
      background: rgba(23, 20, 74, 0.3);
      border-radius: 10px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      width: 44px; height: 44px;
      transition: all 0.3s ease;
      &:hover { background: var(--dark-purple); }
    }
  }
  .go-back { color: var(--black-100); }
}

.other-projects {
  width: 390px;
  > p {
    color: var(--black-100);
    font: 20px 'Firago Medium';
    line-height: 24px;
    margin-bottom: 20px;
  }
  > div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.other-projects .news-item {
  > img { height: 200px; }
  .news-details {
    background: white;
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
    padding: 25px;
  }
  .title { 
    color: var(--black-100); 
    height: 40px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
  }
  .intro {
    color: var(--light-gray);
    height: 34px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    margin-bottom: 0;
  }
}

.blog-cont { padding: 40px 20px 100px; }
.blog-list {
  background: rgba(132, 132, 132, 0.051); 
  border-radius: 20px;
  padding: 50px 50px 60px 40px;
  margin-bottom: 50px;
  hr {
    border-color: white;
    margin: 40px 0;
    opacity: 1;
    &:last-child { display: none; }
  }
}

.blog-item {
  color: unset;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 40px;
  > img:first-child {
    border-radius: 10px;
    width: 181px; height: 108px;
    object-fit: cover;
  }
  > i { 
    color: #99A1AF;
    font-size: 20px;
    margin-left: auto;
    transition: all 0.3s ease;
  }
  &:hover > i { color: var(--light-blue); }
}

.blog-item .desc {
  max-width: calc(100% - 400px);
  p {
    color: var(--black-100);
    font: 14px 'Firago Regular';
    line-height: 17px;
    margin-bottom: 0;
  }
}

.calc-head {
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.3) 0%, rgba(243, 232, 255, 0.3) 100%);
  padding: 150px 20px 55px;
  .content1 {
    align-items: center;
  }
  .page-nav > * { color: var(--black-100); }
  p:nth-child(2) {
    color: #101828;
    font: 30px 'Firago Medium';
    line-height: 35px;
    margin-bottom: 15px;
  }
  p:last-child {
    color: var(--dark-blue);
    font: 16px 'Firago Regular';
    line-height: 22px;
    margin-bottom: 0;
    text-align: center;
  }
}

.calc-cont { padding: 40px 20px 80px; }
.calculators {
  background: white;
  border-radius: 20px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 50px 43px 60px;
  > p {
    color: var(--black-100);
    font: 20px 'Firago Medium';
    line-height: 24px;
    margin-bottom: 40px;
  }
}

.calc-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.calc-card {
  background: white;
  border: 1px solid #E8E8ED;
  border-radius: 20px;
  color: #1E2939;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  font: 16px 'Firago Medium';
  line-height: 22px;
  padding: 30px 54px 30px 30px;
  transition: all 0.3s ease;
  &:hover { background: #FBFBFB; }
}

.calc-page { padding: 190px 20px 130px; }
.page-title {
  color: #1E2939;
  font: 30px 'Firago Medium';
  line-height: 35px;
  margin-bottom: 15px;
  text-align: center;
}

.page-title1 {
  color: #1E2939;
  font: 14px 'Firago Regular';
  line-height: 19px;
  margin-bottom: 40px;
  text-align: center;
}

.calc-filter {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 40px;
}

.calc-filter > div:first-child {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.calc-filter .decor {
  background: #E5E7EB;
  box-shadow: 0px 0px 15px 0px #22D3EE66;
  width: 100%; height: 6px;
}

.calc-filt {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  position: relative;
  > div {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  > div:first-child {
    border: 3px solid #D1D5DC;
    border-radius: 50%;
    width: 48px; height: 48px;
  }
  > div:last-child {
    border: 2px solid #E5E7EB;
    box-shadow: 0px 2px 4px -2px #0000001A;
    border-radius: 10px;
    color: var(--black-100);
    font: 14px 'Firago Regular';
    line-height: 17px;
    padding: 10px;
    width: 100%; height: 70px;
  }
  &::after {
    content: '';
    background: linear-gradient(90deg, #04AEE2 0%, #2486FB 100%);
    border-radius: 3px;
    position: absolute;
    width: 100%; height: 6px;
    left: 0; bottom: -46px;
    opacity: 0;
    transition: all 0.3s ease;
  }
}

.calc-filt:hover, .calc-filt.active {
  > div:first-child {
    background: var(--light-blue);
    border-color: #4DA2FB;
  }
  > div:last-child {
    background: var(--light-blue);
    border-color: var(--light-blue);
    color: white;
  }
  &::after { opacity: 1; }
}
.calc-filt.active > div:last-child { background: linear-gradient(97.31deg, #2487FC -1.92%, #05ACE3 74.24%); }