@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-brand: #E51E1E;
  --color-blue: #004476;
  --color-brand-light: #FFF3F3;
  --color-dark: #1C1C1C;
  --color-dark-2: #222629;
  --color-white: #fff;
  --color-hover-bg: #f8faff;
  --color-brand-light-bg: #EEEEEE;
  --grey: #707070;
  --color-body-bg: #F9F5ED;
  --color-body-text: #898989;
  --white: #ffffff;
  --color-border: #D6D6D6;
  --card-hover-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  --body-font: "Manrope", sans-serif;
  --monda: "Monda", serif;
  --transition: all .3s ease-in-out;
  --radius: 1.875rem;
}

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

html {
  font-size: 100%;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--color-white);
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  color: var(--color-body-text);
  font-weight: 400;
}

.size-24 {
  width: 1.5rem;
  height: 1.5rem;
}

.size-20 {
  width: 1.25rem;
  height: 1.25rem;
}

.size-60 {
  width: 3.75rem;
  height: 3.75rem;
}

.round {
  border-radius: var(--radius);
}

.fs-15 {
  font-size: 0.937rem;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.border {
  border-color: var(--color-border) !important;
}

.water__text {
  font-size: 6.37rem;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.03);
}

.ff-monda {
  font-family: var(--monda);
}

.round {
  border-radius: var(--radius);
}

.text-gray {
  color: #525252 !important;
}

.text-muted {
  color: #6E6E6E !important;
}

.text-yellow {
  color: var(--yellow) !important;
}

.bg-yellow {
  background-color: var(--yellow) !important;
}

.bg-primary {
  background-color: var(--color-brand) !important;
}

.text-primary {
  color: var(--color-brand) !important;
}

.text-gray {
  color: #656565 !important;
}

.text-warning {
  color: var(--red) !important;
}

.text-dark {
  color: var(--color-dark) !important;
}

.text-dark2 {
  color: var(--color-dark-2) !important;
}

.text-justify {
  text-align: justify;
}

.bg-light {
  background-color: var(--color-brand-light-bg) !important;
}

.bg-gradient {
  background: #EBF6FF !important;
}

.transition {
  transition: all 0.3s ease-in-out;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-14 {
  font-size: 14px;
}

.round {
  border-radius: var(--radius);
}

.text-blue {
  color: var(--color-blue);
}

.link {
  color: var(--color-brand);
  text-decoration: none;
  cursor: pointer;
  word-wrap: break-word;
}
.link:hover {
  color: var(--color-dark);
  text-decoration: underline;
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--color-dark);
}
a:hover {
  color: var(--color-brand);
}

b, strong {
  font-weight: 600;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease-in-out;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
}
.btn.sm {
  padding: 0.75rem 1.5rem;
}
@media (max-width: 575px) {
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 13px;
  }
}

.btn-primary {
  border-color: var(--color-brand);
  background: var(--color-brand);
  color: var(--color-white);
}
.btn-primary:hover {
  border-color: var(--color-dark);
  background: var(--color-dark);
  color: var(--color-white);
}
.btn-primary:focus {
  background-color: var(--color-dark);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--color-dark);
}
.btn-white svg {
  width: 1.75rem;
  height: 1.75rem;
  margin-right: 0.75rem;
  color: var(--color-brand);
}
.btn-white:hover {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
  color: var(--white);
}
.btn-white:hover svg {
  color: var(--white);
}
.btn-white:focus {
  background-color: var(--color-dark);
  border-color: var(--color-dark);
  color: var(--white);
}
.btn-white:focus svg {
  color: var(--white);
}

.btn-outline-white {
  border: 2px solid var(--color-white);
  background-color: transparent;
  color: var(--color-white);
}
.btn-outline-white:hover {
  background-color: var(--color-white);
  border-color: var(--color-white);
  color: var(--color-dark);
}

/*------- DOWN ARROW LIST STYLES ---------------*/
.check__list {
  padding-left: 0;
}
.check__list > li {
  position: relative;
  list-style-type: none;
  padding-left: 2rem;
}
.check__list > li::before {
  content: var(--check_icon);
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  top: 0.25rem;
  left: 0;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

@media (max-width: 1200px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 991px) {
  html {
    font-size: 87.5%;
  }
}
@media (max-width: 575px) {
  .container {
    max-width: calc(100% - 1.5rem);
  }
}
@media (min-width: 2000px) {
  .container-fluid {
    max-width: 1920px;
  }
}
.whatsapp__btn {
  bottom: 5rem;
  right: 4rem;
  z-index: 1020;
  background: rgba(255, 255, 255, 0.3019607843);
  width: 5.25rem;
  height: 5.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .whatsapp__btn {
    bottom: 2rem;
    right: 1.5rem;
    width: 4rem;
    height: 4rem;
  }
  .whatsapp__btn svg {
    width: 3rem;
    height: 3rem;
  }
}

.navbar {
  transition: all 0.3s ease-in-out;
}
.navbar .navbar-brand img {
  max-height: 4rem;
}
@media (max-width: 991px) {
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
}
.navbar .nav-item .nav-link {
  font-size: 13px;
  color: var(--color-dark);
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item .nav-link:hover {
  color: var(--color-brand);
}
.navbar .nav-item.active .nav-link {
  color: var(--color-brand);
}
.navbar .dropdown {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.navbar .dropdown .dropdown-menu {
  background-color: var(--color-white);
  position: absolute;
  top: 96%;
  min-width: max-content;
  transition: all 0.3s ease;
  transform: scaleY(0);
  opacity: 0;
  padding: 0.75rem;
  visibility: hidden;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}
.navbar .dropdown .dropdown-menu .dropdown-item {
  color: var(--color-dark);
  font-size: 14px;
  display: block;
  font-weight: 500;
  padding: 0.75rem 1rem;
  position: relative;
  white-space: pre-line;
}
.navbar .dropdown .dropdown-menu .dropdown-item:hover, .navbar .dropdown .dropdown-menu .dropdown-item:focus, .navbar .dropdown .dropdown-menu .dropdown-item:active {
  color: var(--white);
  background-color: var(--color-brand);
}
.navbar .dropdown .dropdown-menu .dropdown-item:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.navbar .dropdown .dropdown-menu.show {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.navbar .dropdown:hover > .nav-link {
  color: var(--color-white);
}
.navbar .btn__lang img {
  width: 1.5rem;
  height: 1.5rem;
}

.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2rem;
  height: 2rem;
  border-radius: 3px;
  background-color: #363636;
  color: var(--white);
}
.social__links li a svg {
  width: 1rem;
  height: 1rem;
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--brand);
  color: var(--white);
}
.social__links li a:hover svg, .social__links li a:focus svg {
  fill: white;
}
.social__links li:not(:first-child) {
  margin-left: 0.5rem;
}
.social__links.header li a {
  width: 1.5rem;
  height: 1.5rem;
}
.social__links.header li a svg {
  width: 13px;
  height: 13px;
}

@media (min-width: 992px) {
  .navbar .dropdown .dropdown-menu {
    display: block;
  }
  .navbar .dropdown:hover .dropdown-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background-color: var(--color-white);
    z-index: 99999;
    padding-bottom: 1rem;
    border-radius: 0% 0 1rem 1rem;
  }
  .sideNav .content {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding: 0.5rem 0;
  }
  .navbar .navbar-brand img {
    max-height: 3.5rem;
  }
  .sideNav .content {
    max-width: 100%;
  }
}
@media (min-width: 2000px) {
  .navbar.fixed-top .container, .navbar.fixed-top .container-fluid {
    max-width: 1920px;
  }
}
.navbar-toggler svg {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.icon-close {
  display: none;
}

/* when menu is open */
.navbar-toggler.active .icon-bars {
  display: none;
}

.navbar-toggler.active .icon-close {
  display: inline;
}

.site__footer {
  background: #001D33;
  padding: 3rem 0 0 0;
}
.site__footer .svg__set__white {
  color: #ADADAD;
  font-weight: 500;
}
.site__footer .svg__set__white .icon {
  width: 1.5rem;
}
.site__footer .svg__set__white svg {
  width: 1.125rem;
  height: 1.125rem;
}
.site__footer .svg__set__white svg path {
  stroke: var(--white);
}
.site__footer .svg__set__white.location svg {
  width: 1.45rem;
  height: 1.45rem;
}
.site__footer a {
  color: #ADADAD;
  font-weight: 500;
  text-transform: capitalize;
}
.site__footer a:hover {
  text-decoration: underline;
  opacity: 0.75;
  color: var(--color-white);
  text-decoration: underline;
  text-decoration-style: dotted;
}
@media (min-width: 768px) {
  .site__footer .link__box {
    width: max-content;
  }
}
.site__footer .lead-lg {
  color: var(--white);
  font-weight: 600;
  position: relative;
}
@media (max-width: 575px) {
  .site__footer .lead-lg {
    margin-bottom: 1rem;
  }
}
.site__footer .copyright__wrapper {
  background-color: #F2F2F2;
}
@media (max-width: 991px) {
  .site__footer .logo img {
    max-height: 5rem;
    width: auto;
  }
}

.social__list a {
  background-color: color-mix(in oklab, var(--color-dark) 15%, transparent);
  width: 2.25rem;
  height: 2.25rem;
}
.social__list a svg {
  width: 1rem;
  height: 1rem;
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-brand);
  color: var(--white);
  z-index: 99;
  display: none;
}
.backTop:hover {
  background-color: var(--color-dark);
}
.backTop.show {
  display: inline-flex;
}

.landing__nav {
  height: 8.5rem;
}
@media (max-width: 991px) {
  .landing__nav {
    height: 7rem;
  }
  .landing__nav .logo {
    max-height: 5rem;
  }
}
@media (max-width: 767px) {
  .landing__nav .logo__box {
    border: 0 !important;
  }
}

.main__layout__wrapper .item__box {
  height: calc(100dvh - 8.5rem);
  max-height: 1080px;
  min-height: 800px;
}
.main__layout__wrapper .item__box .btn-primary {
  border-width: 2px;
}
.main__layout__wrapper .item__box .btn-primary:hover, .main__layout__wrapper .item__box .btn-primary:active, .main__layout__wrapper .item__box .btn-primary:focus {
  background-color: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}
@media (max-width: 991px) {
  .main__layout__wrapper .item__box {
    height: calc(100dvh - 7rem);
  }
}
@media (max-width: 575px) {
  .main__layout__wrapper .item__box {
    height: 500px;
    min-height: auto;
  }
}

.header__wrapper {
  height: 800px;
}
@media (max-width: 991px) {
  .header__wrapper {
    height: 600px;
  }
}

.bottom__info__wrapper {
  position: relative;
  margin-top: -10rem;
  z-index: 100;
}
.bottom__info__wrapper .description {
  color: #D6D6D6;
}

.bottom__info__box {
  box-shadow: 0px 5px 50px 2px rgba(0, 0, 0, 0.0705882353);
  max-width: 740px;
  border-radius: 1.625rem 1.625rem 0 0;
}

.product__card {
  background-color: var(--color-white);
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.0705882353);
  border: 1px solid #EEEEEE;
  transition: all 0.3s ease-in-out;
}
.product__card .description {
  color: #707070;
  font-family: var(--manrope);
  font-weight: 400;
}
.product__card .btn__box::before {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #D6D6D6;
  display: block;
  position: absolute;
  top: 0;
  left: 10%;
}
.product__card .btn__box .link {
  font-family: var(--manrope);
  font-weight: 800;
  color: var(--color-brand);
}
.product__card .btn__box .link svg path {
  stroke: var(--color-brand);
}
.product__card .btn__box .link:hover {
  background-color: color-mix(in oklab, var(--color-brand) 5%, transparent);
}
.product__card:hover {
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  transform: translateY(-5px);
}

@media (min-width: 992px) {
  .right__aligned__banner {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 50vw;
    height: 100%;
    object-fit: cover;
  }
}
.process__wrapper .nav-pills {
  width: 450px;
}
.process__wrapper .nav-pills .nav-link {
  color: var(--color-white);
  border-radius: 0 1rem 1rem 0;
}
.process__wrapper .nav-pills .nav-link .arrow {
  right: 2rem;
}
.process__wrapper .nav-pills .nav-link:not(:last-child)::after {
  content: "";
  width: 80%;
  height: 1px;
  background-color: #858585;
  display: block;
  position: absolute;
  bottom: 0%;
  left: 1.5rem;
}
.process__wrapper .nav-pills .nav-link.active {
  background-color: var(--color-white);
  color: var(--color-dark);
}
.process__wrapper .nav-pills .nav-link.active span:nth-child(1) {
  color: var(--color-brand);
}
.process__wrapper .nav-pills .nav-link.active .arrow path {
  stroke: var(--color-dark);
}
.process__wrapper .nav-pills .nav-link.active::after {
  background-color: #fff;
}
@media (max-width: 991px) {
  .process__wrapper .nav-pills {
    width: 100%;
    justify-content: center !important;
    gap: 0.5rem;
  }
  .process__wrapper .nav-pills .nav-link {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1960784314);
  }
  .process__wrapper .nav-pills .nav-link::after {
    content: none !important;
  }
  .process__wrapper .nav-pills .nav-link span:nth-child(2) {
    display: none;
  }
  .process__wrapper .nav-pills .nav-link .arrow {
    transform: rotate(90deg) !important;
    top: auto !important;
    bottom: 1rem !important;
    right: 3.25rem !important;
    display: none;
  }
}
@media (max-width: 991px) and (max-width: 575px) {
  .process__wrapper .nav-pills .nav-link {
    width: 5rem;
    height: 5rem;
    padding: 1rem !important;
  }
}
.process__wrapper .process__step__content {
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  max-width: 486px;
}
.process__wrapper .process__step__content .check__list {
  margin-bottom: 0;
}
.process__wrapper .process__step__content .check__list li:not(:last-child) {
  margin-bottom: 1rem;
}
@media (max-width: 575px) {
  .process__wrapper {
    width: calc(100% + 4rem);
    margin-left: -2rem !important;
    border-radius: 0% !important;
  }
}

.industry__card {
  border-bottom: 5px solid #C01919;
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.0705882353);
}

.accordion .accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion .accordion-item .accordion-button {
  background-color: var(--color-white);
  color: var(--color-dark);
  box-shadow: none;
}
.accordion .accordion-item .accordion-button::after {
  background-image: var(--accodion-angle-down);
}
.accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: var(--accodion-angle-up);
  transform: none;
}
.accordion .accordion-item .accordion-body {
  color: #898989;
}

.alert-danger {
  color: #C01919;
  background-color: #FFEBEB;
  border-color: #FFEBEB;
}

.about__led__display__wrapper {
  position: relative;
  z-index: 99;
}
@media (min-width: 992px) {
  .about__led__display__wrapper {
    margin-top: -10rem;
  }
}
.about__led__display__wrapper .thumbnail {
  border: 15px solid var(--color-white);
}

.info__card {
  box-shadow: 0px 5px 0px 0px #C01919;
  border: 1px solid rgba(0, 0, 0, 0.0509803922);
  border-radius: var(--radius);
  background-color: var(--color-white);
  padding: 0 2rem 1rem 2rem;
  transition: all 0.25s ease-in-out;
}
.info__card .icon__box {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: 10px solid #F2F2F2;
  outline-offset: -9px;
  margin-top: -2.5rem;
  transition: all 0.25s ease-in-out;
}
.info__card .icon__box svg {
  width: 2.25rem;
  height: 2.25rem;
}
.info__card .description {
  color: #707070;
}
.info__card:hover {
  box-shadow: 0px 5px 0px 0px var(--color-dark);
  transform: translateY(-5px);
}
.info__card:hover .icon__box {
  outline-color: var(--color-white);
}

.contact__form {
  box-shadow: 0px 4px 8px 2px rgba(0, 0, 0, 0.1019607843);
  background: #FFFFFF;
}
.contact__form .form-select, .contact__form .form-control {
  height: 4.5rem;
  border-radius: 0.625rem;
  border: 1px solid #D6D6D6;
  color: var(--color-dark);
  padding: 1rem 1.5rem;
  font-weight: 600;
}
.contact__form .form-select::placeholder, .contact__form .form-control::placeholder {
  color: #898989;
}/*# sourceMappingURL=style.css.map */