.heading {
  font-size: 3rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 4rem;
  text-transform: capitalize; }
  @media only screen and (max-width: 48em) {
    .heading {
      font-size: 2.6rem; } }
  .heading span {
    color: #EB3D00; }
  .heading__primary {
    position: relative; }
    .heading__primary::after {
      position: absolute;
      bottom: -20px;
      left: 0;
      content: " ";
      width: 12rem;
      padding: 2px;
      background: linear-gradient(to right, #EB3D00, rgba(235, 61, 0, 0.1)); }
    .heading__primary.heading--centered {
      text-align: center; }
      .heading__primary.heading--centered::after {
        position: relative;
        display: block;
        margin: 0 auto;
        background: linear-gradient(to right, rgba(235, 61, 0, 0.1), #EB3D00, rgba(235, 61, 0, 0.1)); }

.paragraph {
  font-size: 1.4rem;
  color: #fff;
  line-height: 180%;
  display: inline-block; }
  .paragraph__semibold {
    font-weight: 600; }
  .paragraph__bold {
    font-weight: 700; }
  .paragraph__italics {
    color: #EB3D00; }

* {
  margin: 0;
  padding: 0; }

*,
*::before,
*::after {
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #eee;
  min-height: 100vh; }

a,
a:hover,
a:focus,
a:active,
a:visited {
  text-decoration: none; }

section {
  width: 100vw; }

.main {
  overflow: hidden; }

.main-breadcrumb {
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center; }
  .main-breadcrumb__heading {
    width: 70%;
    text-align: center; }
    @media only screen and (max-width: 62.5em) {
      .main-breadcrumb__heading {
        width: 85%; } }
    @media only screen and (max-width: 48em) {
      .main-breadcrumb__heading {
        width: 92%; } }
    @media only screen and (max-width: 31.25em) {
      .main-breadcrumb__heading {
        width: 97%; } }
  .main-breadcrumb h1 {
    font-size: 6rem;
    font-weight: 700; }
    @media only screen and (max-width: 56.25em) {
      .main-breadcrumb h1 {
        font-size: 5rem; } }
    @media only screen and (max-width: 48em) {
      .main-breadcrumb h1 {
        font-size: 4.6rem; } }
    @media only screen and (max-width: 37.5em) {
      .main-breadcrumb h1 {
        font-size: 4rem; } }
    @media only screen and (max-width: 31.25em) {
      .main-breadcrumb h1 {
        font-size: 3.6rem; } }

.button:hover {
  color: #EB3D00; }

.button__main {
  font-weight: 700;
  font-size: 1.4rem;
  color: #EB3D00;
  letter-spacing: 0.15em;
  border: 2px solid #EB3D00;
  border-radius: 10rem;
  padding: 1.8rem 3.2rem;
  text-align: center;
  margin: 0 auto;
  text-transform: uppercase;
  position: relative;
  overflow: hidden; }
  .button__main, .button__main:after, .button__main:before {
    transition: all 0.3s; }
  .button__main:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 1px;
    content: ".";
    color: transparent;
    background: #EB3D00;
    height: 100%;
    text-align: left;
    margin: auto;
    opacity: 0; }
  .button__main:hover:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;
    width: 100%; }
  .button__main:hover {
    color: #fff;
    z-index: 1; }
  .button__main--primary {
    border-color: #fff;
    color: #fff; }
    .button__main--primary:after {
      background: #fff; }
    .button__main--primary:hover {
      color: #EB3D00;
      z-index: 1; }

.button__primary {
  font-size: 1.2rem;
  color: #EB3D00;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 180%;
  margin: 2rem 0; }
  .button__primary svg {
    transform: translateX(13px);
    transition: all 0.3s ease-out; }
  .button__primary:hover svg {
    transform: translateX(16px); }

.faq {
  padding: 7rem 0;
  background: #121212; }
  .faq__accordion {
    margin-top: 10rem; }
  .faq__card {
    background: #121212;
    border: none;
    border-radius: 0; }
  .faq__header {
    background-color: transparent;
    border-top: 1px solid #1A1A1A !important;
    border-bottom: 1px solid #1A1A1A !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer; }
    .faq__header:hover .faq__btn-link {
      color: #EB3D00 !important; }
    .faq__header--left {
      display: flex;
      align-items: center; }
  .faq__btn-link {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 700; }
    @media only screen and (max-width: 48em) {
      .faq__btn-link {
        font-size: 1.6rem; } }
    .faq__btn-link:hover {
      color: #EB3D00; }
  .faq .px-5 {
    margin-left: 5rem !important; }
    @media only screen and (max-width: 48em) {
      .faq .px-5 {
        margin-left: 2rem !important; } }

.arrow-left {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 8px solid #EB3D00;
  transform: rotate(180deg);
  margin-right: 5rem; }
  @media only screen and (max-width: 48em) {
    .arrow-left {
      margin-right: 2rem; } }

.plus {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: linear-gradient(#EB3D00, #EB3D00), linear-gradient(#EB3D00, #EB3D00);
  background-position: center;
  background-size: 50% 2px, 2px 50%;
  /*thickness = 2px, length = 50% (25px)*/
  background-repeat: no-repeat;
  transition: all 0.5s; }

.alt {
  background: linear-gradient(#EB3D00, #EB3D00), linear-gradient(#121212, #121212);
  background-position: center;
  background-size: 50% 2px,2px 50%;
  /*thickness = 2px, length = 50% (25px)*/
  background-repeat: no-repeat;
  transition: all 0.5s; }

.footer {
  padding: 3rem 10rem;
  background-color: #1A1A1A; }
  @media only screen and (max-width: 62.5em) {
    .footer {
      padding: 1.5rem 7rem; } }
  @media only screen and (max-width: 31.25em) {
    .footer {
      padding: 1rem 3rem; } }
  .footer__items:nth-child(2) {
    justify-content: space-around; }
    .footer__items:nth-child(2) div:nth-child(2) {
      display: none; }
      @media only screen and (max-width: 48em) {
        .footer__items:nth-child(2) div:nth-child(2) {
          display: block; } }
    @media only screen and (max-width: 48em) {
      .footer__items:nth-child(2) {
        justify-content: flex-start;
        margin: 1.5rem 0; } }
  .footer__items:last-child {
    justify-content: flex-end; }
    @media only screen and (max-width: 48em) {
      .footer__items:last-child {
        justify-content: flex-start; } }
  .footer a.footer__company {
    color: #EB3D00; }
  .footer a {
    color: #fff;
    font-size: 1.4rem;
    text-transform: capitalize;
    margin: 1rem 1.1rem; }
    .footer a:last-child {
      text-transform: unset; }
    @media only screen and (max-width: 68.75em) {
      .footer a {
        font-size: 1.3rem; } }
    .footer a span {
      font-weight: 700; }

.header {
  width: 100%;
  background-color: #fff; }

.navigation {
  width: 100%;
  background-color: #fff;
  font-family: "Open Sans", sans-serif;
  position: fixed;
  z-index: 111;
  -webkit-box-shadow: 0px 11px 15px -2px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 11px 15px -2px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 11px 15px -2px rgba(0, 0, 0, 0.12); }
  .navigation__bar {
    display: flex;
    justify-content: space-between; }
    .navigation__bar.--active::before {
      display: none;
      content: "";
      position: fixed;
      width: 100vw;
      height: 100vh;
      background: rgba(0, 0, 0, 0.8);
      top: 0;
      left: 0;
      z-index: 990; }
      @media only screen and (max-width: 48em) {
        .navigation__bar.--active::before {
          display: block; } }
  .navigation__brand {
    display: flex;
    align-items: center;
    padding: 1rem 0; }
    .navigation__brand img {
      width: 8rem; }
      @media only screen and (max-width: 30em) {
        .navigation__brand img {
          width: 7rem; } }
    .navigation__brand h3 {
      text-transform: uppercase;
      font-size: 2rem;
      color: #EB3D00;
      font-weight: 600; }
      @media only screen and (max-width: 30em) {
        .navigation__brand h3 {
          font-size: 1.8rem; } }
  .navigation__nav {
    height: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    align-items: center;
    margin-right: 3rem;
    transition: all 0.5s; }
    @media only screen and (max-width: 68.75em) {
      .navigation__nav {
        margin-right: 1rem; } }
    @media only screen and (max-width: 48em) {
      .navigation__nav {
        height: fit-content;
        width: 100%;
        background: #fff;
        flex-direction: column;
        text-align: right;
        align-items: flex-start;
        z-index: 999; } }
  .navigation__item {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative; }
    .navigation__item:focus-within > .navigation__subNav,
    .navigation__item:hover > .navigation__subNav {
      opacity: 1;
      visibility: visible;
      transform: translateY(21px); }
      @media only screen and (max-width: 48em) {
        .navigation__item:focus-within > .navigation__subNav,
        .navigation__item:hover > .navigation__subNav {
          transform: translateY(0); } }
    @media only screen and (max-width: 48em) {
      .navigation__item {
        height: unset;
        width: 100%;
        flex-direction: column; } }
  .navigation__link {
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    color: #000;
    padding: 2rem 2rem;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    position: relative;
    transition: all 0.5s;
    border: none;
    background: #fff; }
    .navigation__link svg {
      margin-top: 3px;
      margin-left: 3px; }
    @media only screen and (max-width: 68.75em) {
      .navigation__link {
        font-size: 1.6rem;
        padding: 1.4rem 1.8rem; } }
    @media only screen and (max-width: 48em) {
      .navigation__link {
        width: 100%;
        padding: 1.6rem 3.8rem;
        font-size: 1.8rem; } }
    @media only screen and (max-width: 30em) {
      .navigation__link {
        padding: 1rem 1.2rem 1rem 3rem; } }
    .navigation__link:focus {
      outline: none; }
    .navigation__link:after {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      width: 0%;
      content: ".";
      color: transparent;
      background: #EB3D00;
      height: 3px;
      transition: all 0.5s; }
      @media only screen and (max-width: 48em) {
        .navigation__link:after {
          left: 0;
          top: 0;
          right: unset;
          margin: auto;
          width: 4px;
          background: #EB3D00;
          height: 0%; } }
    .navigation__link:hover {
      color: #EB3D00; }
      .navigation__link:hover svg path {
        transition: all 0.5s;
        fill: #EB3D00; }
      @media only screen and (max-width: 48em) {
        .navigation__link:hover {
          font-weight: 700; } }
      .navigation__link:hover:after {
        width: 100%; }
        @media only screen and (max-width: 48em) {
          .navigation__link:hover:after {
            height: 100%;
            width: 4px; } }
  .navigation__subNav {
    position: absolute;
    top: 100%;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    transform: translateY(70px);
    opacity: 0;
    visibility: hidden;
    background-color: #fff;
    box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
    transition: all 0.5s; }
    @media only screen and (max-width: 48em) {
      .navigation__subNav {
        display: none;
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        top: 0;
        box-shadow: 0 0 0;
        width: 100%; }
        .navigation__subNav.--active {
          display: block; } }
    .navigation__subNav:before {
      content: "";
      width: 0px;
      height: 0px;
      border-left: 15px solid transparent;
      border-right: 15px solid transparent;
      border-bottom: 22px solid #fff;
      position: absolute;
      margin: -22px 0px 0px 112px; }
      @media only screen and (max-width: 48em) {
        .navigation__subNav:before {
          display: none; } }
  .navigation__subItem {
    display: flex;
    align-items: center;
    width: 32rem;
    text-align: center; }
    @media only screen and (max-width: 48em) {
      .navigation__subItem {
        width: unset;
        text-align: left;
        align-items: flex-start; } }
  .navigation__subLink {
    font-size: 1.6rem;
    color: #1A1A1A;
    font-weight: 400;
    padding: 1.5rem 2rem;
    width: 100%;
    position: relative;
    transition: all 0.5s;
    text-align: left; }
    @media only screen and (max-width: 68.75em) {
      .navigation__subLink {
        font-size: 1.6rem;
        padding: 1.4rem 1.8rem; } }
    @media only screen and (max-width: 48em) {
      .navigation__subLink {
        width: 100%;
        padding: 2rem 3.8rem;
        border-bottom: 1px solid #eee; } }
    @media only screen and (max-width: 30em) {
      .navigation__subLink {
        padding: 1.2rem 1.2rem 1.2rem 3.2rem; } }
    .navigation__subLink:after {
      position: absolute;
      bottom: 0;
      left: 0;
      top: 0;
      margin: auto;
      width: 4px;
      content: ".";
      color: transparent;
      background: #EB3D00;
      height: 0%;
      transition: all 0.5s; }
    .navigation__subLink:hover {
      color: #EB3D00; }
      .navigation__subLink:hover:after {
        height: 100%; }
  @media only screen and (max-width: 68.75em) {
    .navigation__options {
      padding: 1.4rem 1.8rem; } }
  @media only screen and (max-width: 48em) {
    .navigation__options {
      padding: 2rem 3.8rem;
      text-align: left;
      margin-top: 4rem; } }
  @media only screen and (max-width: 30em) {
    .navigation__options {
      padding: 1.2rem 1.2rem 1.2rem 3rem; } }
  .navigation__options h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1.6rem;
    display: none; }
    @media only screen and (max-width: 48em) {
      .navigation__options h4 {
        display: block; } }
  .navigation__options a {
    margin: 0 1.6rem; }
    @media only screen and (max-width: 68.75em) {
      .navigation__options a {
        margin: 0 1rem; } }
    @media only screen and (max-width: 48em) {
      .navigation__options a:nth-child(2) {
        margin: 0; }
      .navigation__options a:last-child {
        margin-left: 2.2rem; } }

#navigationNav {
  display: flex;
  align-items: center;
  background: #fff;
  transition: all 0.5s; }
  @media only screen and (max-width: 48em) {
    #navigationNav {
      transform: translateX(100%);
      margin-right: 0rem;
      margin-left: 0rem;
      padding-top: 5rem;
      position: fixed;
      top: 0;
      right: 0;
      overflow-y: scroll;
      flex-direction: column;
      height: 100vh;
      width: 60vw;
      text-align: right;
      align-items: flex-start;
      z-index: 999; }
      #navigationNav.--active {
        transform: translateX(0px); } }
  @media only screen and (max-width: 37.5em) {
    #navigationNav {
      width: 75vw; } }
  @media only screen and (max-width: 30em) {
    #navigationNav {
      width: 78vw; } }

/* MENU */
.hamburger-menu-wrapper {
  padding: 10px;
  display: none; }
  @media only screen and (max-width: 48em) {
    .hamburger-menu-wrapper {
      display: inline-block; } }

.hamburger-menu-wrapper.bounce-effect {
  animation: bounce 0.3s ease 1; }

.hamburger-menu {
  border: 0;
  margin: 0 auto;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: 41px;
  height: 36px;
  font-size: 0;
  text-indent: -9999px;
  cursor: pointer;
  z-index: 9999;
  cursor: pointer;
  background: transparent; }

.hamburger-menu:focus {
  outline: none; }

.hamburger-menu span {
  display: block;
  position: absolute;
  top: 17px;
  left: 5px;
  right: 5px;
  height: 3px;
  background: #EB3D00; }

.hamburger-menu span:before,
.hamburger-menu span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #EB3D00;
  content: ""; }

.hamburger-menu span:before {
  top: -8px; }

.hamburger-menu span:after {
  bottom: -8px;
  width: 77%; }

.hamburger-menu span:before,
.hamburger-menu span:after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s; }

.hamburger-menu span:before {
  transition-property: top, transform; }

.hamburger-menu span::after {
  transition-property: bottom, transform; }

.hamburger-menu.active span {
  background: none; }

.hamburger-menu.active span:before {
  top: 0;
  transform: rotate(225deg); }

.hamburger-menu.active span:after {
  bottom: 0;
  transform: rotate(135deg); }

.hamburger-menu.active span:before,
.hamburger-menu.active span:after {
  width: 100%;
  transition-delay: 0s, 0.3s; }

@keyframes bounce {
  0% {
    transform: rotate(0); }
  45% {
    transform: rotate(15deg); }
  90% {
    transform: rotate(-7deg); }
  100% {
    transform: rotate(0); } }

.popover__wrapper {
  position: relative;
  cursor: pointer; }

.popover__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  transform: translate(0, 20px);
  position: absolute;
  left: -63px;
  top: 250%;
  width: 15rem;
  background-color: white;
  padding: 1rem;
  border-radius: 3px;
  color: black;
  -webkit-box-shadow: 0px 6px 15px 3px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0px 6px 15px 3px rgba(0, 0, 0, 0.22);
  box-shadow: 0px 6px 15px 3px rgba(0, 0, 0, 0.22); }
  .popover__content .paragraph {
    color: #000;
    font-weight: 600; }

.popover__content:before {
  position: absolute;
  content: "";
  right: calc(50% - 10px);
  top: -8px;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
  transition-duration: 0.3s;
  transition-property: transform;
  -webkit-box-shadow: 0px 4px 16px -5px rgba(0, 0, 0, 0.22);
  -moz-box-shadow: 0px 4px 16px -5px rgba(0, 0, 0, 0.22);
  box-shadow: 0px 4px 16px -5px rgba(0, 0, 0, 0.22); }

.popover__wrapper:hover .popover__content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97); }

.product-features {
  padding: 7rem 0;
  background-color: #1A1A1A;
  text-align: center; }
  .product-features.--left {
    text-align: left; }
  .product-features__services {
    margin-top: 5rem; }
  .product-features__item {
    margin: 3rem 0; }
    @media only screen and (max-width: 62.5em) {
      .product-features__item {
        text-align: center !important; } }
    .product-features__item.--center {
      text-align: center; }
    .product-features__item.--left {
      text-align: left; }
    .product-features__item.--right {
      text-align: right; }
    .product-features__item img {
      width: 5rem; }
    .product-features__item h4 {
      font-size: 1.6rem;
      font-weight: 600;
      text-transform: uppercase;
      color: #fff;
      margin: 1.8rem 0; }
  @media only screen and (max-width: 62.5em) {
    .product-features__imgSection {
      display: none; } }
  .product-features__img {
    width: 100%; }
    .product-features__img img {
      width: 100%; }

.service-info {
  padding: 7rem 0;
  background-color: #1A1A1A; }
  .service-info h2 {
    font-weight: 700;
    font-size: 4.5rem;
    margin-bottom: 5rem; }
    .service-info h2 span {
      color: #EB3D00; }

.companyStatement-section {
  padding: 7rem 0;
  position: relative;
  width: 100%; }
  @media only screen and (max-width: 48em) {
    .companyStatement-section {
      text-align: center; } }
  .companyStatement-section::before {
    content: "";
    background-color: #000;
    opacity: 0.8;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 0; }
  .companyStatement-section h2 {
    font-size: 3.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 120%; }
    @media only screen and (max-width: 62.5em) {
      .companyStatement-section h2 {
        font-size: 3rem; } }
    @media only screen and (max-width: 31.25em) {
      .companyStatement-section h2 {
        font-size: 2.6rem; } }
  .companyStatement-section p {
    font-size: 1.6rem;
    line-height: 180%;
    color: #fff; }
  .companyStatement-section__btn {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start; }
    @media only screen and (max-width: 48em) {
      .companyStatement-section__btn {
        margin-top: 3rem; } }

.companyStatement2-section {
  position: relative;
  background-color: #000; }
  @media only screen and (max-width: 48em) {
    .companyStatement2-section {
      padding: 7rem 0; } }
  .companyStatement2-section::after {
    content: "";
    background: url("../../img/bg2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1; }
  @media only screen and (max-width: 576px) {
    .companyStatement2-section__container {
      max-width: 540px !important; } }
  .companyStatement2-section__text {
    padding: 0 7rem;
    width: 80%; }
    .companyStatement2-section__text.--cancel-padding {
      padding: 0; }
    @media only screen and (max-width: 75em) {
      .companyStatement2-section__text {
        width: 90%; } }
    @media only screen and (max-width: 68.75em) {
      .companyStatement2-section__text {
        width: 100%;
        padding: 0 5rem; } }
    @media only screen and (max-width: 62.5em) {
      .companyStatement2-section__text {
        width: 100%;
        padding: 0 3rem; } }
  .companyStatement2-section h2 {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem; }
    @media only screen and (max-width: 56.25em) {
      .companyStatement2-section h2 {
        font-size: 3.1rem; } }
  .companyStatement2-section img {
    width: 100%; }

.about-headng-section.main-breadcrumb {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../img/abstract-art-blur-circle.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh; }

.aboutUs-section {
  background: #1A1A1A;
  padding: 7rem 0; }
  .aboutUs-section h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #EB3D00; }
  .aboutUs-section__container {
    display: inline-block;
    margin-top: 3rem; }
  .aboutUs-section .row {
    margin-bottom: 2rem; }

.coreValues-section {
  background: #121212;
  padding: 7rem 0; }
  .coreValues-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 2rem 0; }
  .coreValues-section__block {
    background: #1A1A1A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2rem;
    color: #EB3D00;
    cursor: pointer;
    transition: all 0.3s; }
    .coreValues-section__block:hover {
      background: #EB3D00; }
      .coreValues-section__block:hover p {
        color: #fff; }
      .coreValues-section__block:hover svg .cls-1 {
        stroke: #fff;
        color: #fff; }
    .coreValues-section__block img,
    .coreValues-section__block svg {
      width: 6rem; }
      @media only screen and (max-width: 61.9375em) and (min-width: 48em) {
        .coreValues-section__block img,
        .coreValues-section__block svg {
          width: 5rem; } }
      @media only screen and (max-width: 30em) {
        .coreValues-section__block img,
        .coreValues-section__block svg {
          width: 5rem; } }
    .coreValues-section__block p {
      display: inline-block;
      font-size: 2rem;
      font-weight: 600;
      margin-top: 2rem; }
      @media only screen and (max-width: 61.9375em) and (min-width: 48em) {
        .coreValues-section__block p {
          font-size: 1.6rem; } }
      @media only screen and (max-width: 30em) {
        .coreValues-section__block p {
          font-size: 1.4rem; } }

.management-section {
  background: #1A1A1A;
  padding: 7rem 0; }
  .management-section__card {
    position: relative;
    margin-right: 1.6rem;
    margin-top: 2.2rem; }
    .management-section__card img {
      width: 100%;
      height: 80%;
      object-fit: cover;
      background-color: #ffffff; }
    .management-section__card:last-child {
      margin-right: auto; }
  .management-section__block {
    padding: 1rem 2rem;
    background-color: #000;
    width: 85%;
    margin-top: -3rem;
    z-index: 1;
    position: relative; }
    .management-section__block p {
      font-size: 1.6rem;
      line-height: 140%; }
    .management-section__block p:first-child {
      font-weight: 700;
      color: #EB3D00; }

.pioneer-section {
  position: relative;
  background-color: #000;
  z-index: -1; }
  @media only screen and (max-width: 48em) {
    .pioneer-section {
      height: 82rem; } }
  .pioneer-section::after {
    content: "";
    background: url("../../img/bg2.png");
    background-position: left;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1; }
  .pioneer-section__row {
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 48em) {
      .pioneer-section__row {
        display: block; } }
  .pioneer-section__container {
    padding-right: 15rem;
    padding-top: 7rem;
    padding-bottom: 7rem; }
    @media only screen and (max-width: 62.5em) {
      .pioneer-section__container {
        padding-right: 5rem;
        padding-top: 5rem;
        padding-bottom: 5rem; } }
    .pioneer-section__container h1 {
      font-size: 4.5rem;
      font-weight: 700;
      color: #fff; }
      .pioneer-section__container h1 span {
        color: #EB3D00; }
  .pioneer-section__image {
    background: #1A1A1A;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: absolute;
    right: 0;
    height: 100%; }
    @media only screen and (max-width: 48em) {
      .pioneer-section__image {
        display: block; } }
    .pioneer-section__image img {
      width: 105%;
      height: 45rem;
      position: absolute;
      object-fit: cover;
      margin-left: -2rem; }
      @media only screen and (max-width: 48em) {
        .pioneer-section__image img {
          width: 100%;
          height: unset; } }
  .pioneer-section__btn {
    display: inline-flex;
    justify-content: flex-start;
    margin-top: 3rem; }

.thrive-section {
  background: #1A1A1A;
  padding: 7rem 0; }
  .thrive-section__block {
    display: flex; }
  .thrive-section__img {
    margin-right: 2rem; }
    .thrive-section__img img {
      width: 7.5rem;
      height: 7.5rem; }
  .thrive-section__content h4 {
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.4rem; }

.contact-headng-section.main-breadcrumb {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../img/contact-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh; }

.worldwide-section {
  padding: 7rem 0;
  background: #121212;
  text-align: center; }
  .worldwide-section__img {
    width: 100%;
    margin-top: 7rem; }
    .worldwide-section__img img {
      width: 100%; }

.map-contact-section__row {
  display: flex; }
  @media only screen and (max-width: 48em) {
    .map-contact-section__row {
      flex-direction: column; } }

.map-contact-section__map {
  flex: 1 1 60%; }
  .map-contact-section__map iframe {
    width: 100%; }

.map-contact-section__contact {
  flex-basis: 40%;
  position: relative;
  background-color: #EB3D00;
  padding: 4rem 8rem;
  display: flex;
  align-items: center;
  justify-content: center; }
  @media only screen and (max-width: 56.25em) {
    .map-contact-section__contact {
      padding: 4rem 4rem; } }
  @media only screen and (max-width: 48em) {
    .map-contact-section__contact {
      text-align: center; } }
  .map-contact-section__contact::after {
    content: "";
    background: url("../../img/bg2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1; }
  .map-contact-section__contact h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3.6rem; }

.map-contact-section__item {
  margin-bottom: 2.6rem;
  display: flex; }
  @media only screen and (max-width: 48em) {
    .map-contact-section__item {
      flex-direction: column; } }
  .map-contact-section__item div:first-child {
    margin-right: 2rem; }
    @media only screen and (max-width: 48em) {
      .map-contact-section__item div:first-child {
        margin-right: unset;
        margin-bottom: 1.4rem; } }

.map-contact-section__details {
  display: flex;
  flex-direction: column; }
  .map-contact-section__details h3 {
    font-size: 2rem;
    font-weight: 700; }

.content-service-headng-section.main-breadcrumb {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../img/content-service-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh; }

.health-service-headng-section.main-breadcrumb {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../img/health-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh; }

.home-service-headng-section.main-breadcrumb {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../img/home-service-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh; }

.landing-section {
  height: 80vh;
  width: 100vw;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../img/images/alexandru-acea-GhwCef9VRr4-unsplash.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center; }
  .landing-section__heading {
    width: 60%;
    margin: 0 auto;
    text-align: center; }
    @media only screen and (max-width: 37.5em) {
      .landing-section__heading {
        width: 80%; } }
    @media only screen and (max-width: 31.25em) {
      .landing-section__heading {
        width: 95%; } }
    .landing-section__heading h1 {
      font-weight: 700;
      font-size: 6rem;
      color: #fff; }
      @media only screen and (max-width: 56.25em) {
        .landing-section__heading h1 {
          font-size: 4.8rem; } }
      @media only screen and (max-width: 37.5em) {
        .landing-section__heading h1 {
          font-size: 4.2rem; } }
      @media only screen and (max-width: 31.25em) {
        .landing-section__heading h1 {
          font-size: 3.6rem; } }
      .landing-section__heading h1 span {
        color: #EB3D00; }

.brand-section {
  background-color: #121212; }
  .brand-section__images {
    padding: 7rem 0;
    justify-content: center;
    align-items: center; }
    @media only screen and (max-width: 56.25em) {
      .brand-section__images {
        padding: 4.2rem 0; } }
    @media only screen and (max-width: 31.25em) {
      .brand-section__images {
        padding: 2rem 0; } }
    .brand-section__images img {
      margin: 1.2rem 0;
      width: 15.2rem; }
      @media only screen and (max-width: 31.25em) {
        .brand-section__images img {
          width: 15rem; } }

.whoWeAre-section {
  background-color: #1A1A1A;
  padding: 7rem 0; }

.serviceWeProvide-section {
  background-color: #121212;
  padding: 7rem 0;
  text-align: center; }
  .serviceWeProvide-section__row {
    margin-top: 10rem; }
  .serviceWeProvide-section__block {
    width: 100%; }
    .serviceWeProvide-section__block img {
      width: 100%;
      height: 22.3rem;
      object-fit: cover; }
  .serviceWeProvide-section__content {
    background-color: #000;
    padding: 3rem;
    text-align: left; }
    .serviceWeProvide-section__content h3 {
      font-weight: 600;
      font-size: 2rem; }
    .serviceWeProvide-section__content p {
      margin: 3rem 0; }
  @media only screen and (max-width: 48em) {
    .serviceWeProvide-section__col:last-child {
      margin-top: 3rem; } }
  .serviceWeProvide-section__col {
    margin-top: 5rem; }
  .serviceWeProvide-section__btn {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 7rem; }

.ourTechnologies-section {
  padding: 7rem 0;
  position: relative;
  background-color: #000; }
  @media only screen and (max-width: 48em) {
    .ourTechnologies-section__techs {
      margin-top: 3.6rem; } }
  .ourTechnologies-section img {
    width: 9.9rem; }
  .ourTechnologies-section::after {
    content: "";
    background: url("../../img/bg2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1; }

.theBest-section {
  background-color: #121212;
  padding: 7rem 0; }
  .theBest-section h3 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0; }
  .theBest-section img {
    width: 7.5rem; }

.quote-section img {
  width: 100%;
  height: 60rem;
  object-fit: cover; }
  @media only screen and (max-width: 48em) {
    .quote-section img {
      height: 45rem; } }
  @media only screen and (max-width: 37.5em) {
    .quote-section img {
      height: 34rem; } }

.quote-section__container {
  position: relative;
  background-color: #000; }
  .quote-section__container::after {
    content: "";
    background: url("../../img/bg2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.5;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: 1; }

.quote-section__row {
  display: flex;
  flex-wrap: wrap; }

.quote-section__block {
  height: 100%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  @media only screen and (max-width: 37.5em) {
    .quote-section__block {
      padding: 3rem; } }
  @media only screen and (max-width: 31.25em) {
    .quote-section__block {
      padding: 2rem; } }

.quote-section__quoteSign {
  font-size: 12rem;
  color: #EB3D00;
  line-height: 100%; }
  @media only screen and (max-width: 31.25em) {
    .quote-section__quoteSign {
      line-height: 50%;
      font-size: 10rem; } }

.quote-section__quote {
  font-style: italic;
  font-size: 2rem;
  line-height: 180%; }
  @media only screen and (max-width: 31.25em) {
    .quote-section__quote {
      font-size: 1.6rem;
      margin-top: -1rem; } }

@media only screen and (max-width: 31.25em) {
  .quote-section__bottom {
    margin-top: 2rem; } }

.quote-section__bottom p {
  font-size: 2rem;
  font-weight: 600; }
  @media only screen and (max-width: 31.25em) {
    .quote-section__bottom p {
      font-size: 1.6rem; } }
  .quote-section__bottom p span {
    font-weight: 400;
    font-style: italic; }

.quote-section__bottom button {
  background: #EB3D00;
  padding: 0.6rem 1.5rem;
  border: none;
  border-radius: 3rem; }
  @media only screen and (max-width: 31.25em) {
    .quote-section__bottom button {
      padding: 0.2rem 1.2rem;
      border-radius: 1.4rem; } }
  .quote-section__bottom button svg {
    width: 2.33rem; }
    @media only screen and (max-width: 31.25em) {
      .quote-section__bottom button svg {
        width: 1.6rem; } }

.statement-section.companyStatement-section {
  background: url("../../img/blank-business-composition-computer.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

.service-statement-section.companyStatement-section {
  background: url("../../img/red-notebook-on-computer.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }

.mobile-service-headng-section.main-breadcrumb {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../../img/mobile-service-image.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh; }

.mdm-company .companyStatement2-section__text {
  padding: 0; }
