@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@600;800&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;600&display=swap);
.approach {
  height: 100%;
}
.approach h1,
.approach h2,
.approach h3,
.approach h4,
.approach h5,
.approach h6 {
  color: #fff;
}
.approach li,
.approach p,
.approach a,
.approach span {
  color: #fff;
}
.approach h1 {
  font-size: 2.5em;
}
@media (max-width: 1200px) {
  .approach h1 {
    font-size: 2em;
  }
}
.approach h2 {
  font-size: 1.8em;
}
@media (max-width: 1200px) {
  .approach h2 {
    font-size: 1.3em;
  }
}
@media (max-width: 991px) {
  .approach hr.short {
    width: auto;
  }
}
.approach .approach-content {
  position: relative;
  z-index: 5;
}
.approach .approach-content .approach-item {
  width: 80%;
  margin-top: 30px;
}
.approach .approach-content .approach-item hr {
  margin-bottom: 2em;
}
.approach .approach-content .approach-item i {
  font-size: 2em;
  line-height: 1;
  margin-left: 3px;
  height: 30px;
  width: 30px;
  transition: all 0.2s ease;
}
.approach .approach-content .approach-item a:hover i {
  transform: rotate(90deg);
  transition: all 0.4s ease;
}
.approach .background-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
}
@media (max-width: 1200px) {
  .approach .background-image {
    background-size: cover;
  }
}

.overlay-dark::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #243060;
  mix-blend-mode: multiply;
  opacity: 1;
  z-index: 1;
}

.btn {
  text-transform: uppercase;
  border-right: 4px solid #E72370;
}
.btn:hover, .btn:focus {
  color: #fff;
  background: #243060;
}
.btn:active {
  background: #243060;
}

.btn-primary {
  color: #243060;
  background: #fff;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.175);
}

.btn-dark {
  color: #fff;
  background: #243060;
  box-shadow: 0 1rem 1.5rem rgba(0, 0, 0, 0.175);
}
.btn-dark:hover {
  color: #243060;
  background: #fff;
  border-right: 4px solid #243060;
}

.bg-dark .btn-primary {
  color: #243060;
}
.bg-dark .btn-primary:hover {
  color: white;
  background: #E72370;
  border-right: 4px solid #fff;
}

.btn i {
  color: #fff;
  margin-left: 2px;
  font-size: 1.1em;
  line-height: 1em;
  transition: all 0.3s ease;
}
.btn i:hover i {
  margin-left: 6px;
}

.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
  background-color: #E72370;
  border-color: #E72370;
}

.btn.active {
  background-color: #243060;
  color: #fff;
}

.hover-indent {
  transition: all 0.3s ease;
}
.hover-indent:hover {
  padding-left: 40px;
}

.card {
  border: none;
  transition: transform 0.3s cubic-bezier(0.6, 1, 0.22, 1) 0s;
  background: none;
}
.card .card-label {
  top: 30px;
  z-index: 2;
}
.card .card-label img {
  height: 40px;
}
.card .card-label h6 {
  font-size: 0.8rem;
}
.card .card-label div:first-child {
  border-radius: 0 5px 0 0;
}
.card .card-label div:last-child {
  border-radius: 0 0 5px 0;
}
.card:hover {
  transform: translate3d(0px, -3px, 10px);
}
.card .card-img-top {
  background-size: cover;
  background-position: center center;
}
.card .card-body .card-title {
  font-family: "Poppins", sans-serif;
  color: #243060;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.6;
  max-width: 80%;
}
.card .card-body .card-date {
  color: #E72370;
  line-height: 1.6;
  font-size: 0.7em;
  font-weight: bold;
}

.card-img-overlay {
  z-index: 2;
}

.companies {
  position: relative;
  transition: all 0.3s ease;
}
.companies:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.companies::before {
  transform: scaleX(0);
  transform-origin: bottom right;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #E0F1F7;
  z-index: -1;
  transition: transform 0.2s ease;
}
.companies .companies-logo {
  padding-left: 20px;
  max-height: 80px;
}
.companies .companies-description {
  transition: transform 0.3s cubic-bezier(0.6, 1, 0.22, 1) 0s;
  color: #6E6E6E;
}
.companies .companies-icon {
  padding-right: 20px;
  color: #E72370;
  font-size: 1.5em;
}
.companies:hover .companies-description {
  transform: translate3d(10px, 0px, 10px);
}
.companies:hover .companies-icon {
  padding-right: 15px;
  transition: all 0.8s ease;
}

.subtitle {
  color: #E72370 !important;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
}

.bold {
  font-weight: 800;
}

.bolder {
  font-weight: 600;
}

.light {
  font-weight: 300;
}

.large {
  font-size: 3.5em;
}
@media (max-width: 1920px) {
  .large {
    font-size: 3em;
  }
}
@media (max-width: 992px) {
  .large {
    font-size: 2.5em;
  }
}

.sub {
  font-size: 0.85em;
  line-height: 2.2;
  color: #6c757d;
}

.sub-sub {
  font-size: 0.75em;
}

@media all and (max-width: 767px) {
  .text-center-xs {
    text-align: center !important;
  }
}
a,
a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: none;
}

.bg-dark a {
  color: #fff;
}

.bg-primary a:hover,
.bg-dark a:hover,
.image-bg a:hover {
  color: #fff;
  opacity: 0.9;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.image-bg h1,
.image-bg h2,
.image-bg h3,
.image-bg h4,
.image-bg h5,
.image-bg h6 {
  color: #fff;
}
.bg-primary li,
.bg-primary p,
.bg-primary a,
.bg-primary span,
.bg-dark li,
.bg-dark p,
.bg-dark a,
.bg-dark span,
.image-bg li,
.image-bg p,
.image-bg a,
.image-bg span {
  color: #fff;
}

a:hover {
  color: #c21559;
  text-decoration: none;
}

.two-columns {
  -moz-column-count: 2;
       column-count: 2;
}

p.lead {
  font-size: 1.25rem;
}

hr.short {
  height: 3px;
  background-color: #E72370;
  opacity: 1;
  width: 120px;
}

footer {
  position: relative;
  overflow: hidden;
  font-size: 0.75em;
  color: #fff;
}

.logo-footer {
  max-width: 300px;
  height: auto;
}

.footer-cta {
  font-weight: bold;
  font-size: 2rem;
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #243060;
}
.footer-cta a {
  display: block;
  text-decoration: underline;
}
@media (max-width: 1218px) {
  .footer-logos {
    margin: 30px 0;
  }
}

@media (max-width: 950px) {
  .footer-second {
    margin-bottom: 100px;
  }
}
@media (max-width: 565px) {
  .footer-second {
    margin-bottom: 250px;
  }
  .footer-second .text-end {
    text-align: left !important;
  }
}

.footer-partof {
  height: 100px;
  line-height: 100px;
}
.footer-partof i {
  color: #E72370;
}
.footer-partof:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100px 0 0 100px;
  border-color: transparent transparent transparent #243060;
}

.footer-certificates {
  height: 60px;
  width: 80px;
  border: 1px solid #6c757d;
}
.footer-certificates img {
  max-height: 100%;
  max-width: 100%;
}

.scroll-up {
  position: absolute;
  top: 0px;
  right: 10%;
  translate: 0px -100%;
  background: #E0F1F7;
  padding: 5px;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  z-index: 9;
  transition: all 0.4s ease;
}
.scroll-up i {
  font-size: 1.2em;
  color: #243060;
}
.scroll-up:hover {
  height: 50px;
}

.footer-shadow {
  box-shadow: 5px 10px 20px 10px rgba(0, 0, 0, 0.1);
}

.form-control {
  color: #000;
  font-weight: 600;
}

.form-floating > .form-control,
.form-floating > .form-select {
  border: 2px solid #C5CBFB;
  height: calc(3.5rem + 14px);
}
.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  box-shadow: 0 0 0.1rem #E0F1F7;
}

.form-floating > .form-select {
  height: calc(3.5rem + 25px);
  color: #000;
  font-weight: 600;
}

.header-shape {
  width: 850px;
  position: absolute;
  bottom: -150px;
  right: -100px;
  pointer-events: none;
  z-index: 1;
}

.header {
  height: 850px;
}
.header h1,
.header h2,
.header h3,
.header h4,
.header h5,
.header h6 {
  color: #fff;
}
.header li,
.header p,
.header a,
.header span {
  color: #fff;
}
.header .header-content {
  bottom: 0;
  z-index: 5;
  position: absolute;
  width: auto;
}
@media (max-width: 768px) {
  .header {
    height: 750px;
  }
}
@media (max-width: 1750px) {
  .header {
    height: 950px;
  }
}

.header-sub {
  height: 550px;
}

.header-sub-sub {
  height: 450px;
}

.header-title {
  position: relative;
  z-index: 5;
}

.overlay-gradient-left::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: transparent linear-gradient(90deg, #243060 0%, rgba(13, 30, 54, 0) 60%) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  opacity: 1;
  z-index: 1;
}

.header .background-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
@media all and (max-width: 1400px) {
  .header .background-image {
    background-image: url("/video/backup.jpg");
  }
}

@media all and (max-width: 990px) {
  .overlay-header:before {
    width: 100%;
  }
}
.scroll-down {
  position: absolute;
  bottom: 0;
  background: #E0F1F7;
  padding: 5px;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  transition: all 0.4s ease;
}
.scroll-down i {
  font-size: 1.2em;
  color: #243060;
}
.scroll-down:hover {
  height: 50px;
}

#headerVideo {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
}
@supports (-webkit-touch-callout: none) {
  #headerVideo {
    display: none;
  }
}
@media (max-width: 1700px) {
  #headerVideo {
    height: 100%;
    width: auto;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

.modal-dialog .modal-content {
  border: none;
  border-radius: 0;
}
.modal-dialog .modal-content .modal-header .modal-title {
  margin-bottom: 0;
}
.modal-dialog .modal-content .modal-body {
  padding: 2rem 1rem 1rem 1rem;
}
.modal-dialog .close {
  position: absolute;
  right: 10px;
  top: 0px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .navbar-nav {
    margin-top: 35px;
  }
}

nav.navbar {
  background: #fff;
  padding-top: 10px;
  padding-bottom: 10px;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
}
@media (max-width: 990px) {
  nav.navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
nav.navbar .logo {
  height: 70px;
}
@media (max-width: 1200px) {
  nav.navbar .logo {
    height: 50px;
    transition: all 1s ease;
  }
}
nav.navbar .nav-item {
  height: 65px;
  line-height: 50px;
  margin-bottom: 0;
  padding-left: 12px;
  padding-right: 12px;
  font-size: 14px;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  nav.navbar .nav-item {
    padding-left: 6px;
    padding-right: 6px;
    font-size: 12px;
  }
}
@media (max-width: 1199px) {
  nav.navbar .nav-item {
    height: 60px;
    line-height: 50px;
  }
}
nav.navbar .nav-item a {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  color: #243060;
  font-weight: bold;
}
nav.navbar .nav-item.contact {
  background: #243060;
  border-radius: 5px;
  margin: 0 5px;
  transition: all 0.3s ease;
}
nav.navbar .nav-item.contact a {
  color: #fff;
}
nav.navbar .nav-item.contact:hover {
  background: #161d3b;
}
@media (max-width: 1200px) {
  nav.navbar .nav-item.contact {
    background: transparent;
    border-radius: none;
    margin: 0;
  }
  nav.navbar .nav-item.contact a {
    color: #243060;
  }
  nav.navbar .nav-item.contact:hover {
    background: #243060;
  }
}
nav.navbar .nav-item.active, nav.navbar .nav-item:hover {
  background: #243060;
  border-radius: 5px;
  transition: all 0.3s ease;
}
nav.navbar .nav-item.active a, nav.navbar .nav-item:hover a {
  color: #fff;
}

/*nav.navbar-shrink {
    padding-top: 5px;
    padding-bottom: 5px;

    .logo {
        height: 60px;
        @include transition(.3s);
    }
}*/
nav.navbar .nav-item.nav-item--tools {
  background: rgba(231, 35, 112, 0.1);
  border-radius: 5px;
  margin: 0 5px;
  transition: all 0.3s ease;
}
nav.navbar .nav-item.nav-item--tools a {
  color: #E72370;
}
nav.navbar .nav-item.nav-item--tools:hover, nav.navbar .nav-item.nav-item--tools.active {
  background: #E72370;
}
nav.navbar .nav-item.nav-item--tools:hover a, nav.navbar .nav-item.nav-item--tools.active a {
  color: #fff;
}
@media (max-width: 1200px) {
  nav.navbar .nav-item.nav-item--tools {
    background: transparent;
    border-radius: none;
    margin: 0;
  }
  nav.navbar .nav-item.nav-item--tools a {
    color: #E72370;
  }
  nav.navbar .nav-item.nav-item--tools:hover {
    background: #E72370;
  }
  nav.navbar .nav-item.nav-item--tools:hover a {
    color: #fff;
  }
}

.nav-partof {
  height: 50px;
  line-height: 50px;
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: 999;
}
.nav-partof i {
  color: #E72370;
  transition: all 0.2s ease;
}
.nav-partof:hover i {
  margin-left: 5px;
}
.nav-partof:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0px 0px;
  border-color: #243060 transparent transparent transparent;
}

.navbar-toggler {
  position: relative;
  border: none;
  padding: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  right: 12px;
  top: 10px;
  transform: rotate(135deg);
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  right: 12px;
  top: 10px;
  transform: rotate(-135deg);
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 1000ms, stroke-dashoffset 1000ms;
  stroke: #E72370;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham3 .top {
  stroke-dasharray: 40 130;
}

.ham3 .middle {
  stroke-dasharray: 40 140;
}

.ham3 .bottom {
  stroke-dasharray: 40 205;
}

.ham3.active .top {
  stroke-dasharray: 75 130;
  stroke-dashoffset: -63px;
}

.ham3.active .middle {
  stroke-dashoffset: -102px;
}

.ham3.active .bottom {
  stroke-dasharray: 110 205;
  stroke-dashoffset: -86px;
}

.projects-section h1,
.projects-section h2,
.projects-section h3,
.projects-section h4,
.projects-section h5,
.projects-section h6 {
  color: #fff;
}
.projects-section li,
.projects-section p,
.projects-section a,
.projects-section span {
  color: #fff;
}
.projects-section .approach-content {
  position: relative;
  z-index: 5;
}
.projects-section .background-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
}
@media (max-width: 1200px) {
  .projects-section .background-image {
    background-size: cover;
  }
}

.overlay-dark::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: #243060;
  mix-blend-mode: multiply;
  opacity: 1;
  z-index: 1;
}

.defined-fields ul li {
  padding: 5px 0;
  position: relative;
  font-size: 0.9em;
}
@media (max-width: 1920px) {
  .defined-fields ul li {
    font-size: 0.9em;
  }
}
.defined-fields ul li:after {
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: "";
  background: #ced0ce;
}
.defined-fields ul li:last-child:after {
  background: transparent;
}

.project-item .background-image {
  transition: background-position 0.5s ease-out;
}
.project-item:hover .background-image {
  background-position: 50% 50%;
  transition: background-position 7s ease-out;
}
.project-item.project-item-sm .background-image {
  transition: background-position 0.5s ease-out;
}
.project-item.project-item-sm:hover .background-image {
  background-position: 50% 100%;
  transition: background-position 5s ease-out;
}

.projects-slider .carousel-cell {
  width: 25%;
  margin-right: 24px;
}
@media (max-width: 1200px) {
  .projects-slider .carousel-cell {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .projects-slider .carousel-cell {
    width: 80%;
  }
}
.projects-slider .carousel-cell .card-img-overlay {
  z-index: 2;
}
.projects-slider .carousel-cell .background-image {
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center center;
  opacity: 1;
}
.projects-slider .carousel-cell .background-image:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 1;
  z-index: 1;
}

.flickity-prev-next-button {
  background-color: rgba(231, 35, 112, 0.4);
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}
.flickity-prev-next-button:hover {
  background-color: rgba(231, 35, 112, 0.8);
  border: 3px;
  transition: all 0.3s ease;
}
.flickity-prev-next-button.next {
  right: -25px;
  margin-bottom: 0;
}
.flickity-prev-next-button.next::before {
  font-family: uicons-bold-rounded !important;
  font-weight: 300;
  content: "\f112";
  font-size: 25px;
  line-height: 50px;
  color: #fff;
}
@media (max-width: 1200px) {
  .flickity-prev-next-button.next::before {
    font-size: 20px;
    line-height: 40px;
  }
}
.flickity-prev-next-button.previous {
  left: -25px;
  margin-bottom: 0;
}
.flickity-prev-next-button.previous::before {
  font-family: uicons-bold-rounded !important;
  font-weight: 300;
  content: "\f111";
  font-size: 25px;
  line-height: 50px;
  color: #fff;
}
@media (max-width: 1200px) {
  .flickity-prev-next-button.previous::before {
    font-size: 20px;
    line-height: 40px;
  }
}
@media (max-width: 1200px) {
  .flickity-prev-next-button {
    width: 40px;
    height: 40px;
  }
  .flickity-prev-next-button.next {
    right: -20px;
  }
  .flickity-prev-next-button.previous {
    left: -20px;
  }
}

.customers-section h1,
.customers-section h2,
.customers-section h3,
.customers-section h4,
.customers-section h5,
.customers-section h6 {
  color: #fff;
}
.customers-section li,
.customers-section p,
.customers-section a,
.customers-section span {
  color: #fff;
}
.customers-section .approach-content {
  position: relative;
  z-index: 5;
}
.customers-section .background-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
}
@media (max-width: 1200px) {
  .customers-section .background-image {
    background-size: cover;
  }
}

.defined-fields ul li {
  padding: 5px 0;
  position: relative;
  font-size: 0.9em;
}
@media (max-width: 1920px) {
  .defined-fields ul li {
    font-size: 0.9em;
  }
}
.defined-fields ul li:after {
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  content: "";
  background: #ced0ce;
}
.defined-fields ul li:last-child:after {
  background: transparent;
}

.customer-item .background-image {
  transition: background-position 0.5s ease-out;
}
.customer-item:hover .background-image {
  background-position: 50% 50%;
  transition: background-position 7s ease-out;
}
.customer-item.project-item-sm .background-image {
  transition: background-position 0.5s ease-out;
}
.customer-item.project-item-sm:hover .background-image {
  background-position: 50% 100%;
  transition: background-position 5s ease-out;
}
.customer-item.project-item-sm .background-image {
  margin-left: -30px;
  margin-top: -30px;
}
@media (max-width: 1399px) and (min-width: 992px) {
  .customer-item.project-item-sm .background-image {
    margin-left: 0;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .customer-item.project-item-sm .background-image {
    margin-left: -15px;
    margin-top: -15px;
  }
}
@media (max-width: 600px) {
  .customer-item.project-item-sm .background-image {
    margin-top: 0;
    margin-left: 0;
  }
}

.customers-slider .carousel-cell {
  width: 25%;
  height: 200px;
  border: 10px solid transparent;
}
@media (max-width: 1200px) {
  .customers-slider .carousel-cell {
    width: 33.3333333333%;
  }
}
@media (max-width: 767px) {
  .customers-slider .carousel-cell {
    width: 50%;
  }
}
.customers-slider .carousel-cell div {
  background: #fff;
  padding: 12px;
  border-radius: 4px;
  border: 1px solid #E8E9E8;
}
.customers-slider .carousel-cell img {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  max-height: 190px;
  transform: translateX(-50%) translateY(-50%);
}
.customers-slider .carousel-cell .card-img-overlay {
  z-index: 2;
}
.customers-slider .carousel-cell .background-image {
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center center;
  opacity: 1;
}
.customers-slider .carousel-cell .background-image:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 1;
  z-index: 1;
}
.customers-slider .flickity-page-dots {
  bottom: -14px;
  background: #E8E9E8;
  display: inline-flex;
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 15px;
  padding: 10px;
}
.customers-slider .flickity-page-dots .dot {
  background: #dee2e6;
  height: 10px;
  width: 10px;
  margin: 0 4px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.customers-slider .flickity-page-dots .dot.is-selected {
  width: 20px;
}
@media (max-width: 767px) {
  .customers-slider .flickity-page-dots {
    display: none;
  }
}

.bg-secondary .customers-slider .flickity-page-dots {
  background: #fff;
}
.bg-secondary .customers-slider .flickity-page-dots .dot {
  background: #243060;
}

section {
  padding: 6em 0;
  position: relative;
}
@media (max-width: 767px) {
  section {
    padding: 80px 0;
  }
}
section:nth-of-type(1) {
  margin-top: 90px;
}
@media (max-width: 1200px) {
  section:nth-of-type(1) {
    margin-top: 69px;
  }
}

.container.image-bg .row {
  position: relative;
  z-index: 3;
}

.row-full-width {
  margin: 0 -15px;
}
@media (max-width: 1199px) {
  .row-full-width {
    margin: 0;
  }
}

.min-margin {
  margin-top: -100px;
  z-index: 1;
}
@media (max-width: 991px) {
  .min-margin {
    margin-top: 60px;
  }
}

.min-margin-lg {
  margin-top: -146px;
  z-index: 1;
}
@media (max-width: 1200px) {
  .min-margin-lg {
    margin-top: 0;
  }
}

@media (max-width: 1200px) {
  .sidebar.min-margin,
.sidebar.min-margin-lg {
    margin-top: 60px;
  }
}

.custom-container, .container-fluid {
  width: 100%;
  padding-right: 50px;
  padding-left: 50px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .custom-container, .container-fluid {
    width: 100%;
    padding-right: 25px;
    padding-left: 25px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 990px) {
  .custom-container, .container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1400px) {
  .custom-container, .container-fluid {
    width: 100%;
    padding-right: 100px;
    padding-left: 100px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1900px) {
  .custom-container, .container-fluid {
    width: 100%;
    padding-right: 200px;
    padding-left: 200px;
    margin-right: auto;
    margin-left: auto;
  }
}

.custom-container .rounded.bg-white.position-relative.min-margin {
  min-height: 200px;
}
.custom-container .shadow-lg, .custom-container .video-image {
  box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07) !important;
}
@media (max-width: 991px) {
  .custom-container .shadow-lg, .custom-container .video-image {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
  }
}

.page-body h1, .page-body h2, .page-body h3, .page-body h4, .page-body h5, .page-body h6 {
  margin-bottom: 1.5rem;
}
.page-body p {
  margin-bottom: 2rem;
}

.nav-pills .nav-item {
  margin-right: 5px;
}
.nav-pills .nav-item .nav-link {
  border: 1px solid #E72370;
}

.vacancies {
  position: relative;
  transition: all 0.3s ease;
}
.vacancies:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.vacancies::before {
  transform: scaleX(0);
  transform-origin: bottom right;
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0 0 0 0;
  background: #E0F1F7;
  z-index: 0;
  transition: transform 0.2s ease;
}
.vacancies .vacancies-logo {
  padding-left: 20px;
  max-height: 80px;
}
.vacancies .vacancies-description {
  transition: transform 0.3s cubic-bezier(0.6, 1, 0.22, 1) 0s;
  color: #6E6E6E;
}
.vacancies .vacancies-icon {
  padding-right: 20px;
  color: #E72370;
  font-size: 1.5em;
}
.vacancies:hover .vacancies-description {
  transform: translate3d(10px, 0px, 10px);
}
.vacancies:hover .vacancies-icon {
  padding-right: 15px;
  transition: all 0.8s ease;
}

.contact-company-item .bg-white {
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}
.contact-company-item .bg-white:hover {
  transform: translateY(-10px);
}
.contact-company-item .bg-white:hover:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.contact-company-item .bg-white:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: #E72370;
  z-index: 9;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom right;
}
.contact-company-item .bg-white div.page-body {
  color: #243060;
}
.contact-company-item ul li {
  line-height: 200%;
}
.contact-company-item ul li .fad {
  color: #243060;
  margin-right: 0.7rem;
}
.contact-company-item ul li a {
  color: #E72370;
}
.contact-company-item.active .bg-white {
  border-top: 5px solid #E72370;
  transform: translateY(-30px);
}
@media (max-width: 575px) {
  .contact-company-item.active .bg-white {
    transform: translateY(0px);
  }
}
.contact-company-item.active .bg-white:before {
  background: #fff !important;
}

.contact-details {
  z-index: 2;
}

.contact-overlay .background-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-size: 120%;
  background-repeat: no-repeat;
  background-position: center;
  background-position: 50% 50%;
}
@media (max-width: 1200px) {
  .contact-overlay .background-image {
    background-size: cover;
  }
}

.grecaptcha-badge {
  display: none;
}

.breadcrumb .breadcrumb-spacer {
  margin: 0 15px;
  color: #E72370;
}
.breadcrumb .breadcrumb-item a {
  color: #243060;
  font-weight: bold;
}
.breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .breadcrumb .breadcrumb-item {
    font-size: 13px;
  }
  .breadcrumb .breadcrumb-item.active {
    color: #fff;
  }
}
.breadcrumb .breadcrumb-item.active {
  font-weight: normal;
  color: #fff;
}

.image-bg .breadcrumb .breadcrumb-item a {
  color: #fff;
}

.downloads a.btn {
  color: #243060;
  background: #fff;
  border: 0 none;
  padding: 0 15px 0 0;
  width: auto;
  position: relative;
  border-radius: 5px 0px 0px 5px;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  text-overflow: ellipsis;
  overflow: hidden;
  text-align: left;
  margin-right: 5px;
  margin-bottom: 5px;
  text-transform: none;
  border-right: 3px solid #E72370;
}
.downloads a.btn:hover {
  color: #fff;
  background-color: #243060;
}
.downloads a.btn:hover i {
  margin-right: 15px;
}
.downloads a.btn i {
  padding: 15px;
  color: #243060;
  height: 100%;
  align-self: start;
  margin-right: 10px;
  margin-left: -3px;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.3s;
}

.flickity-page-dots {
  bottom: -14px;
}
.flickity-page-dots .dot {
  background: #dee2e6;
  height: 4px;
  width: 40px;
  margin: 0;
  border-radius: 0;
}

.bg-white .flickity-page-dots .dot {
  background: #243060;
}

.timeline_area {
  position: relative;
  z-index: 1;
}

.single-timeline-area {
  position: relative;
  z-index: 1;
  padding-left: 180px;
}

@media only screen and (max-width: 575px) {
  .single-timeline-area {
    padding-left: 100px;
  }
}
.single-timeline-area .timeline-date {
  position: absolute;
  width: 180px;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
  justify-content: flex-end;
  padding-right: 60px;
}

@media only screen and (max-width: 575px) {
  .single-timeline-area .timeline-date {
    width: 100px;
  }
}
.single-timeline-area .timeline-date::after {
  position: absolute;
  width: 3px;
  height: 100%;
  content: "";
  background-color: #243060;
  top: 0;
  right: 30px;
  z-index: 1;
}

.single-timeline-area .timeline-date::before {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #E72370;
  content: "";
  top: 50%;
  right: 26px;
  z-index: 5;
  margin-top: -5.5px;
}

.single-timeline-area .timeline-date p {
  margin-bottom: 0;
  color: #020710;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.single-timeline-area .single-timeline-content {
  position: relative;
  z-index: 1;
  padding: 30px 30px 25px;
  border-radius: 0.25rem;
  margin-bottom: 15px;
  margin-top: 15px;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

@media only screen and (max-width: 575px) {
  .single-timeline-area .single-timeline-content {
    padding: 20px;
  }
}
.single-timeline-area .single-timeline-content .timeline-icon {
  transition-duration: 500ms;
  width: 30px;
  height: 30px;
  background-color: #E72370;
  flex: 0 0 30px;
  text-align: center;
  max-width: 30px;
  border-radius: 50%;
  margin-right: 15px;
}

.single-timeline-area .single-timeline-content .timeline-icon i {
  color: #fff;
  line-height: 30px;
}

.single-timeline-area .single-timeline-content .timeline-text h6 {
  transition-duration: 500ms;
}

.single-timeline-area .single-timeline-content .timeline-text p {
  font-size: 13px;
  margin-bottom: 0;
}

.single-timeline-area .single-timeline-content:hover {
  transform: translateY(-10px);
}

.product-card {
  position: relative;
  transition: all 0.3s ease;
}
.product-card .no-image:before, .product-card .background-image:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: #E72370;
  z-index: 9;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: bottom right;
}
.product-card:hover {
  transform: translateY(-30px);
}
.product-card:hover .no-image:before, .product-card:hover .background-image:before {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.products-overview {
  --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem;
}
@media (max-width: 1399px) {
  .products-overview {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
  }
}

.video-image {
  position: relative;
  background-size: cover;
  background-position: center right;
  border-radius: 4px;
}
.video-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
  opacity: 0.7;
  z-index: 1;
  border-radius: 4px;
}
.video-image.video-image-lg {
  height: 400px;
}

.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  cursor: pointer;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  width: 32px;
  height: 44px;
  border-radius: 50%;
  padding: 24px 14px 13px 28px;
}
.video-play-button img {
  position: relative;
  z-index: 3;
  max-width: 100%;
  width: auto;
  height: auto;
}
.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 24px solid #E72370;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  -webkit-animation: pulse-border 3000ms ease-out infinite;
          animation: pulse-border 3000ms ease-out infinite;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: fade(#E72370, 50%);
}
.video-play-button:hover span {
  border-left: 24px solid #fff;
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.video-play-button-sm {
  width: 28px;
  height: 28px;
  padding: 22px 12px 11px 26px;
}
.video-play-button-sm span {
  border-left: 16px solid #E72370;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
.video-play-button-sm:before {
  width: 50px;
  height: 50px;
  -webkit-animation: pulse-border 5000ms ease-out infinite;
          animation: pulse-border 5000ms ease-out infinite;
}
.video-play-button-sm:after {
  width: 60px;
  height: 60px;
}

.video-play-button-sm:hover span {
  border-left: 16px solid #fff;
}

.facts-and-figures-content {
  --fa-primary-color: #243060;
  --fa-secondary-color: #243060;
  --fa-secondary-opacity: .7;
}
.facts-and-figures-content .facts-and-figures-container {
  margin-top: 140px;
}
.facts-and-figures-content .facts-and-figures-container .facts-and-figures-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  border-radius: 4px;
  padding: 0 2rem 2rem 2rem;
}
.facts-and-figures-content .facts-and-figures-container .facts-and-figures-item .facts-and-figures-icon {
  background-color: #fff;
  border: 5px solid #fff;
  border-radius: 50%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  position: relative;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.07);
}
.facts-and-figures-content .facts-and-figures-container .facts-and-figures-item .facts-and-figures-icon i {
  font-size: 4.5rem;
}
.facts-and-figures-content .facts-and-figures-container .facts-and-figures-item h3 {
  color: #243060;
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0;
  margin-top: 15px;
}
.facts-and-figures-content .facts-and-figures-container .facts-and-figures-item h4 {
  color: #E72370;
  font-size: 1em;
  text-align: center;
  margin-top: 5px;
  font-weight: normal;
}
.facts-and-figures-content .facts-and-figures-container .facts-and-figures-item h4 span {
  font-weight: bold;
}

.unit-conversion-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #243060;
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.unit-conversion-fab:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}
.unit-conversion-fab .unit-conversion-fab__icon {
  color: #E72370;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
}
