/***
    The new CSS reset - version 1.11.2 (last updated 15.11.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" element is excluded, otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Fix mobile Safari increase font-size on landscape mode */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu,
summary {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
  box-sizing: border-box;
}

/* reset default text opacity of input placeholder */
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
  box-sizing: border-box;
}

/* Remove details summary webkit styles */
::-webkit-details-marker {
  display: none;
}

html,
body {
  color: #312B2B;
  font-family: "Rubik", sans-serif;
  background-color: #fbfafa;
  overflow-x: hidden;
}

.container {
  margin: 0 auto;
  max-width: 1300px;
  padding: 0 10px;
}

.button {
  background-color: #312b2b;
  color: #ffffff;
  max-width: 200px;
  height: 54px;
  padding: 16px 50px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  text-wrap: nowrap;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  background-color: #161414;
  transform-style: preserve-3d;
}
.button:hover:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateZ(-1px) translate(-50%, 0);
  width: 100%;
  height: 50%;
  background-color: #08195d;
  opacity: 0.38;
  filter: blur(10px);
  z-index: -1;
}

.header-hero_wrapper {
  background-image: url("./../assets/images/contact-us_bg.png");
  background-size: cover;
  position: relative;
}
.header-hero_wrapper.contact {
  height: 761px;
}
.header-hero_wrapper.contact .header .nav__logo-container {
  color: #fff;
}
.header-hero_wrapper.contact .header .nav__logo-container .logo img {
  filter: brightness(0) invert(1);
}
.header-hero_wrapper.contact .hamburger-menu > div {
  background-color: #fff;
}
.header-hero_wrapper.contact .nav__links-mobile {
  background-color: #292828;
}
.header-hero_wrapper.contact .nav__links-mobile .logo img {
  filter: brightness(0) invert(1);
}
.header-hero_wrapper:not(.cookies-page):not(.privacy-page):not(.terms-page):not(.contact) {
  background-image: url("./../assets/images/hero-section.png");
  background-size: cover;
  aspect-ratio: 1920/908;
}
.header-hero_wrapper:not(.cookies-page):not(.privacy-page):not(.terms-page):not(.contact) .header .nav__logo-container {
  color: "Rubik", sans-serif;
}
.header-hero_wrapper:not(.cookies-page):not(.privacy-page):not(.terms-page):not(.contact) .header .nav__logo-container .logo img {
  filter: none;
}

.none {
  display: none !important;
}

a:hover {
  opacity: 0.6;
}

.select-menu-wrapper {
  border-radius: 10px;
  background-color: white;
}
.select-menu-wrapper .select-menu {
  position: relative;
  width: 100%;
  max-width: 406px;
  border-radius: 10px;
}
.select-menu-wrapper .select-menu__selected {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border: 1px solid #7d7c85;
  width: 100%;
  height: 58px;
  padding: 19px 23px 20px 22px;
  border-radius: 10px;
}
.select-menu-wrapper .select-menu .select-menu__value {
  font-size: 14px;
  color: #292828;
}
.select-menu-wrapper .select-menu__options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: white;
  border-radius: 10px;
  z-index: 1;
  overflow-y: auto;
  display: none;
}
.select-menu-wrapper .select-menu__option {
  padding: 14px 10px 12px 21px;
  font-size: 14px;
  color: #292828;
  cursor: pointer;
}
.select-menu-wrapper .select-menu__option:hover, .select-menu-wrapper .select-menu__option.active {
  font-weight: 700;
  background-color: rgba(34, 33, 33, 0.19);
  font-weight: bold;
}
.select-menu-wrapper.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select-menu-wrapper.open .select-menu__icon {
  transform: rotate(180deg);
}
.select-menu-wrapper.open .select-menu__options {
  padding-top: 4px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  display: block;
}

.careers__form,
.contact-us__form {
  display: none;
}

.careers__form.active,
.contact-us__form.active {
  display: block;
}

.bold {
  font-weight: 700;
}

.underline {
  text-decoration: underline;
}

.section-title {
  font-size: clamp(1.875rem, 0.536rem + 3.571vw, 3.75rem);
  line-height: 1.2;
}

.filter-white {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(251deg) brightness(106%) contrast(102%);
}

.filter-light-gray {
  filter: brightness(0) saturate(100%) invert(28%) sepia(5%) saturate(2603%) hue-rotate(206deg) brightness(90%) contrast(81%);
}

.image-zoom {
  overflow: hidden;
  position: relative;
}
.image-zoom img {
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
}
.image-zoom:hover img {
  transform: scale(1.4);
}

@keyframes fadeInOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutOpacity {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.js-marquee {
  display: flex;
  gap: 100px;
}

.modal {
  display: none;
  align-items: center;
  position: fixed;
  z-index: 3;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(251, 250, 250, 0.7);
}

/* Modal Content / Box */
.modal-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  border-radius: 25px;
  background-color: #fbfafa;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid black;
  max-width: 500px;
  justify-content: space-between;
}
.modal-content a {
  text-decoration: none;
  font-weight: 700;
}
.modal-content .modal-title {
  font-weight: 700;
  font-size: 24px;
}

.modal-content .buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.modal-content .buttons button {
  padding: 10px;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
  text-wrap: nowrap;
  transition: all 0.3s;
}
.modal-content .buttons button#cookiesAccept:hover {
  transform: translateY(5px);
  box-shadow: 1px 2px 1px 1px;
}

.header {
  padding: 30px 0;
}

.header__nav-desktop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-container .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}
.nav__logo-container .company-name {
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}

.nav__logo a {
  font-weight: 700;
  display: block;
}

.nav__logo img {
  display: block;
  max-height: 46.6px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav__link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3333;
}

.nav__link.button {
  position: relative;
  z-index: 1;
}
.nav__link.button:hover {
  opacity: 1;
}

.header__content {
  margin-top: 160px;
  text-align: left;
}

.header__title {
  font-size: 24px;
  margin-bottom: 13px;
}

.header__content h1 {
  max-width: 586px;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 40px;
}

.header__description {
  max-width: 586px;
  font-size: 14px;
  line-height: 24px;
}

.header__nav-mobile {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}

.nav__links-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fbfafa;
  padding: 20px 0;
  z-index: 1;
}

.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  z-index: 10;
}

.hamburger-menu div {
  width: 2rem;
  height: 0.25rem;
  background: #312B2B;
  border-radius: 10px;
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.hamburger-menu.active div:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger-menu.active div:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active div:nth-child(3) {
  transform: rotate(-45deg);
}

.header__nav-mobile.active .nav__links-mobile {
  display: flex;
}

@media (max-width: 992px) {
  .header__content {
    margin-top: 72px;
  }
  .header__nav-desktop {
    display: none;
  }
  .header__nav-mobile {
    display: flex;
  }
}
.hero-section {
  position: relative;
  display: flex;
  margin-top: 136px;
}

.hero-section .container {
  width: 100%;
}

.hero-section .hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 295px;
}

.hero-section .hero-content .row {
  display: flex;
  align-items: center;
}

.hero-section .hero-content .row .leading-innovation {
  font-size: clamp(1.938rem, 1.134rem + 4.018vw, 4.75rem);
  font-weight: 700;
  margin-right: 12px;
  text-transform: uppercase;
  text-align: right;
}

.hero-section .hero-content .row .rotated-text {
  font-size: clamp(1.938rem, 1.134rem + 4.018vw, 4.75rem);
  font-weight: 300;
  transform: rotate(270deg);
  text-align: center;
  max-width: 90px;
  height: 90px;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.hero-section .hero-content .row .cutting-edge-technology-solutions {
  font-size: clamp(1.125rem, 0.661rem + 2.321vw, 2.75rem);
  font-weight: bold;
  text-transform: uppercase;
  margin-left: 17px;
}

.hero-section .hero-content .hero-description {
  margin-top: 56px;
  position: relative;
  padding-top: 16px;
  max-width: 524px;
  align-self: flex-end;
}

.hero-section .hero-content .hero-description:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 6px;
  background: linear-gradient(90deg, #66ffb7, #60bd23);
  border-radius: 4px;
}

.slider-container {
  left: 50%;
  top: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  max-width: 848px;
  width: 100%;
  height: 332px;
}

.slider-container .slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 79px 64px 84px 56px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-container .slide.active {
  opacity: 1;
}

.slider-container .slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.slider-container .slide-title {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
}

.slider-container .slide-description {
  margin-top: 34px;
  font-family: "Open sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
}

.slider-container .slider-arrow {
  background-color: rgb(255, 255, 255);
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slider-container .slider-arrow img {
  opacity: 0.35;
}
.slider-container .slider-arrow.slider-prev {
  left: -90px;
}
.slider-container .slider-arrow.slider-next {
  right: -32px;
  transform: translate(100%, -50%);
}

.slider-container .slider-arrow:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}
.slider-container .slider-arrow:hover img {
  opacity: 1;
}

.slider-container .slider-arrow img {
  width: 20px;
  height: 20px;
}

@media (max-width: 992px) {
  .hero-section {
    margin-top: 42px;
    align-items: center;
  }
  .hero-section .container {
    margin-top: 0;
    padding: 10px;
  }
  .slider-container .slide {
    padding: 10px 64px;
  }
  .slider-container .slider-arrow.slider-prev {
    left: 0;
  }
  .slider-container .slider-arrow.slider-next {
    right: 56px;
  }
}
@media (max-width: 460px) {
  .slider-container .slide-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-section .hero-content .row {
    flex-direction: column;
  }
}
.footer {
  height: 469px;
  background-color: #ececec;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 48px;
}
.footer .footer__links {
  font-family: "Open sans", sans-serif;
  max-width: 1300px;
  width: 100%;
  padding: 0 10px;
  margin: 40px auto 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 21px;
}
.footer .footer__links .footer__link {
  padding: 10.5px;
  font-size: 16px;
  line-height: 26px;
}
.footer .footer__legal {
  border-top: 2px solid #4d4b60;
  padding: 24px 32px 0;
  margin: 0 32px;
  max-width: 706px;
  width: 100%;
}
.footer .footer__legal .footer__legal-info {
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  font-weight: 700;
  text-align: right;
  font-size: 16px;
  line-height: 21px;
  opacity: 0.7;
  gap: 8px;
}
.footer .footer__legal .footer__legal-row {
  display: flex;
  gap: 32px;
}

@media (max-width: 992px) {
  .footer {
    height: 600px;
  }
}
@media (max-width: 600px) {
  .footer {
    height: auto;
    justify-content: center;
    flex-direction: column;
  }
  .footer .footer__links {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px 10px;
  }
  .footer .footer__legal .footer__legal-info {
    align-items: center;
    justify-content: center;
  }
  .footer .footer__legal .footer__legal-row {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .footer .footer__legal-row p {
    text-align: center;
  }
  .footer .footer__legal {
    padding: 24px 16px;
    margin: 0;
  }
}
section.contact-us {
  margin-top: 123px;
  position: relative;
  max-width: 1064px;
  width: 100%;
  z-index: 1;
  left: 50%;
  display: flex;
  flex-direction: column;
  transform: translateX(-50%);
  padding: 0 10px;
}
section.contact-us .section-title {
  text-align: left;
  margin-bottom: 40px;
  color: #fff;
  line-height: 52px;
}
section.contact-us .contact-us-content {
  bottom: 0px;
  background-color: #fff;
  padding: 75px 108px;
}
section.contact-us .form-row {
  display: flex;
  gap: 32px;
  margin-bottom: 16px;
}
section.contact-us .form-fields {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
section.contact-us .form-field {
  display: flex;
  flex-direction: column;
}
section.contact-us .form-field.textarea {
  flex: 1;
  display: flex;
  flex-direction: column;
}
section.contact-us .form-field label {
  font-family: "Open sans", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
}
section.contact-us .form-field input,
section.contact-us .form-field textarea {
  width: 100%;
  background-color: #ececec;
  border: none;
  padding: 11px 16px;
  font-size: 16px;
  line-height: 26px;
}
section.contact-us .form-field textarea {
  height: 100%;
  word-wrap: break-word;
}
section.contact-us .consent {
  margin-top: 39px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
section.contact-us .consent .consent-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}
section.contact-us .consent .checkbox-label {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #eceaea;
  position: relative;
  cursor: pointer;
}
section.contact-us .consent .checkbox-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 9px;
  background-image: url("./../assets/images/icons/check-mark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
section.contact-us .consent .consent-checkbox input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
section.contact-us .consent .consent-checkbox input[type=checkbox]:checked + .checkbox-label .checkbox-mark {
  opacity: 1;
}
section.contact-us .consent .consent-description {
  font-size: 14px;
  line-height: 24px;
}
section.contact-us .consent .consent-description .terms-link {
  color: inherit;
  text-decoration: underline;
}
section.contact-us .submit-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  max-width: 200px;
  width: 100%;
}

@media (max-width: 600px) {
  section.contact-us {
    margin-top: 0;
    transform: translate(-50%);
  }
  .header-hero_wrapper.contact {
    height: auto;
  }
  section.contact-us .form-row:not(.consent) {
    flex-direction: column;
    gap: 16px;
  }
  section.contact-us .contact-us-content {
    padding: 75px 20px;
  }
}
.innovative-technology {
  margin-top: 276px;
  padding-bottom: 110px;
}
.innovative-technology .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.section-title {
  font-size: 44px;
  line-height: 56px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 76px;
}

.cards-container {
  max-width: 1064px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
}

.card {
  width: 308px;
  height: 308px;
  background-color: #312b2b;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.card-content {
  padding: 50px 42px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  /* text-align: center; */
  position: relative;
}

.card-title {
  color: white;
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 203px;
  word-wrap: break-word;
}

.card-logo {
  position: absolute;
  top: 32.45px;
  right: 32.45px;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.card-icon {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-icon.top-left {
  top: 24px;
  left: 24px;
}

.card-icon.bottom-right {
  bottom: 24px;
  right: 24px;
}

.card:hover .card-logo,
.card.active .card-logo {
  opacity: 1;
}
.card:hover .card-icon,
.card.active .card-icon {
  opacity: 1;
}

.card:nth-child(1):hover,
.card:nth-child(1).active {
  background-color: #2f92cc;
}

.card:nth-child(2):hover,
.card:nth-child(2).active {
  background-color: #e69c09;
}

.card:nth-child(3):hover,
.card:nth-child(3).active {
  background-color: #39bd42;
}

.card-details {
  padding-top: 34px;
  position: relative;
  display: flex;
  opacity: 1;
  transform: translateY(0);
  flex-direction: column;
  align-items: flex-start;
  max-width: 1064px;
  width: 100%;
  margin-top: 34px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.card-details :before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 6px;
  background: linear-gradient(90deg, #66ffb7, #60bd23);
  border-radius: 4px;
}

.card-details.active {
  opacity: 1;
  transform: translateY(0);
}

.card-details .card-title {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 24px;
  color: #312B2B;
  max-width: 50%;
}

.card-description {
  font-family: #312B2B;
  font-size: 16px;
  line-height: 26px;
}

.key-industries {
  padding: 126px 0;
  background-image: url("../assets/images/key-industries-bg.png");
  background-size: cover;
}
.key-industries .container {
  max-width: 976px;
  width: 100%;
}
.key-industries .section-title {
  font-size: 44px;
  color: #fff;
  line-height: 56px;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 35px;
}

.industries-container {
  display: flex;
  max-width: 956px;
  margin: 0 auto;
  background-color: #fff;
}

.industries-nav {
  gap: 22px;
  padding: 42px 60px 42px 56px;
  flex: 0 1 542px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.industry-title {
  letter-spacing: -0.003rem;
  width: 100%;
  font-size: 24px;
  line-height: 28px;
  font-weight: bold;
  padding: 8px 0;
  cursor: pointer;
  opacity: 0.35;
  position: relative;
}

.industry-title.active {
  opacity: 1;
}

.industry-title.active::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  width: 6px;
  height: 44px;
  background-image: linear-gradient(180deg, #66ffb7, #60bd23);
  border-radius: 4px;
}

.industries-content {
  flex: 0 1 414px;
  background-color: #ececec;
  padding: 50px 34px;
}

.industry-description {
  max-width: 414px;
  display: none;
}

.industry-description.active {
  display: block;
}

.industry-description h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: bold;
  margin-bottom: 16px;
}

.industry-description p {
  font-size: 16px;
  line-height: 26px;
}

.impact-through {
  padding-top: 164px;
  padding-bottom: 449px;
  background-color: #fafafa;
  position: relative;
}
.impact-through.contact-page {
  background-color: #ececec;
}
.impact-through .container {
  max-width: 1064px;
  margin: 0 auto;
}
.impact-through .section-title {
  font-size: clamp(1.125rem, 0.661rem + 2.321vw, 2.75rem);
  margin-bottom: 34px;
  text-align: left;
}
.impact-through .section-description {
  font-family: "Open sans", sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.impact-block {
  max-width: 956px;
  height: 332px;
  color: white;
  background-image: url("../assets/images/impact-through-bg.png");
  background-size: cover;
  padding: 10px 51px 10px 70px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 191px;
}
.impact-block .button {
  position: absolute;
  right: -108px;
  top: 100%;
  transform: translateY(-50%);
  max-width: 347px;
}

.impact-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.security-reliability {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  background-color: #fff;
  padding: 106px 108px 100px;
  width: 100%;
  max-width: 1064px;
  height: 516px;
}

.gradient-line {
  width: 92px;
  height: 6px;
  background-image: linear-gradient(90deg, #66ffb7, #60bd23);
  margin: 44px 0 16px;
}

@media (max-width: 1024px) {
  .impact-block {
    margin-bottom: 0;
  }
  .impact-block .button {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .security-reliability {
    padding: 60px 50px;
  }
}
@media (max-width: 600px) {
  .impact-through {
    padding-top: 72px;
    padding-bottom: 0px;
  }
  .impact-through .section-title {
    line-height: normal;
  }
  .impact-through .impact-block {
    height: auto;
    padding-bottom: 50px;
  }
  .impact-through .security-reliability {
    margin: 72px 0;
    position: static;
    height: auto;
    transform: none;
    padding: 30px 20px;
    background-color: #fff;
  }
  .industries-container {
    flex-direction: column;
  }
  .industries-container .industries-nav,
  .industries-container .industries-content {
    flex: 0;
  }
}

/*# sourceMappingURL=style.css.map */
