/* @font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway-Thin.woff2") format("woff2"), url("../../fonts/Raleway-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway-Medium.woff2") format("woff2"), url("../../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway-SemiBold.woff2") format("woff2"), url("../../../fonts/Raleway-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway-Light.woff2") format("woff2"), url("../../fonts/Raleway-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway-Regular.woff2") format("woff2"), url("../../fonts/Raleway-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway-Bold.woff2") format("woff2"), url("../../fonts/Raleway-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway-ExtraBold.woff2") format("woff2"), url("../../fonts/Raleway-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../../fonts/Raleway-Black.woff2") format("woff2"), url("../../fonts/Raleway-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
} */

@font-face {
    font-family: 'Allura';
    src: url('../../fonts/Allura-Regular.woff2') format('woff2'),
        url('../../fonts/Allura-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}




* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Raleway", sans-serif;
}

.max-width {
  width: 100%;
  max-width: 1365px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1600px) {
  .max-width {
    max-width: 1140px;
  }
}

header {
  position: relative;
  width: 100%;
  font-family: "Raleway", sans-serif;
}
header .nav-wrapper {
  background-color: #fff;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .nav-wrapper .hamburger {
  display: none;
}
header .nav-wrapper .hamburger .hamburger-menu {
  color: white;
  font-size: 2.3rem;
  position: absolute;
  right: 25px;
  top: 45px;
  display: none;
}
header .nav-wrapper .hamburger .hamburger-menu:hover {
  color: #ba7802;
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .hamburger .hamburger-menu {
    display: block;
  }
}
header .nav-wrapper .logo-link {
  display: flex;
  align-items: center;
  min-width: 130px;
  height: 130px;
}
header .nav-wrapper .logo-link .logo {
  display: block;
  width: 100%;
  max-width: 130px;
}
@media only screen and (max-width: 1250px) {
  header .nav-wrapper .logo-link .logo {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
  }

  header .nav-wrapper .logo-link{
    margin-left: 0;
    padding: 15px;
  }
}
header .nav-wrapper .logo-link .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
header .nav-wrapper .nav-list {
  position: relative;
  width: 40%;
  list-style: none;
  visibility: visible;
  opacity: 1;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
header .nav-wrapper .nav-list .dropdown {
  min-width: max-content;
  position: absolute;
  list-style: none;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  top: 36px;
  /* right: -115px; */
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  border-radius: 3px;
  box-shadow: 0 5px 20px;
  visibility: hidden;
  opacity: 0;
  transition: all ease-in-out 0.25s;
  z-index: 2;
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .nav-list .dropdown {
    right: 0;
  }
}
header .nav-wrapper .nav-list .dropdown li {
  padding: 10px 0;
}
header .nav-wrapper .nav-list .dropdown li a {
  font-family: "Raleway", sans-serif;
  letter-spacing: 0.3px;
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.5s ease-in-out;
}
header .nav-wrapper .nav-list .dropdown li a:hover {
  color: #ba7802;
}
header .nav-wrapper .nav-list .show {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .nav-list {
    position: absolute;
    top: 232px;
    right: 70px;
    width: 250px;
    height: 100%;
    background-color: #ba7802;
    visibility: hidden;
    opacity: 0;
    transition: all ease-in-out 0.25s;
    transform-origin: right;
    transform: scaleX(0);
  }
}
header .nav-wrapper .nav-list #services {
  margin-left: 100px;
}
@media screen and (max-width: 1550px) {
  header .nav-wrapper .nav-list #services {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .nav-list #services {
    margin: 6px 0 6px 0;
  }
}
header .nav-wrapper .nav-list .submenu-item-space {
  margin-left: 100px;
}
@media screen and (max-width: 1550px) {
  header .nav-wrapper .nav-list .submenu-item-space {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .nav-list .submenu-item-space {
    margin: 6px 0 6px 0;
  }
}
header .nav-wrapper .nav-list .nav-links {
  position: relative;
  letter-spacing: -1px;
  z-index: 1;
  color: rgb(0, 0, 0);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: end;
}
header .nav-wrapper .nav-list .nav-links .nav-item {
  text-decoration: none;
  color: rgb(0, 0, 0);
  position: relative;
  transition: all 0.5s ease-in-out;
  white-space: nowrap;
}
header .nav-wrapper .nav-list .nav-links .nav-item:hover {
  color: #ba7802;
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .nav-list .nav-links .nav-item:hover {
    color: black;
  }
}
header .nav-wrapper .nav-list .nav-links .active::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #ba7802;
  bottom: -23px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}
header .nav-wrapper .nav-list .nav-links .language {
  /* border: 1px solid black; */
  /* border-radius: 50%; */
  padding: 7px 8px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  /* width: 42px; */
  width: 100%;
  height: 42px;
  cursor: pointer;
  border-bottom: 1px solid #ba7802;
}
header .nav-wrapper .nav-list .nav-links .language:hover {
  /* color: #ba7802;
  border: 1px solid #ba7802; */
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .nav-list .nav-links .language:hover {
    /* border: 1px solid #000;
    color: black; */
  }
}
header .nav-wrapper .nav-list .nav-links .language-list {
  position: absolute;
  /* top: 45px; */
  top: 40px;
  /* left: 0; */
  /* width: 42px; */
  width: 55px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: ease-in-out 0.25s;
  z-index: 5;
      border: 1px solid #ba7802;
      background-color: white;
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .nav-list .nav-links .language-list {
    background-color: #ba7802;
    border-radius: 7px;
    padding: 0 120px;
    left: -99.5px;
    box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.4);
    width: 100%;

  }
}
header .nav-wrapper .nav-list .nav-links .language-list li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* border: 1px solid black; */
  /* border-radius: 50%; */
  width: 42px;
  height: 42px;
  /* margin: 10px 0 5px 0; */
  cursor: pointer;
  border-bottom: 1px solid #ba7802;
}

header .nav-wrapper .nav-list .nav-links .language-list li:last-child{
  border-bottom: 0;
}
header .nav-wrapper .nav-list .nav-links .language-list li a {
  text-decoration: none;
  color: black;
  transition: all 0.5s ease-in-out;
}
header .nav-wrapper .nav-list .nav-links .language-list li:hover {
  /* border: 1px solid #ba7802; */
  color: #ba7802;
    transition: all 0.5s ease-in-out;
}
header .nav-wrapper .nav-list .nav-links .language-list li:hover a {
  color: #ba7802;
    transition: all 0.5s ease-in-out;
}
header .nav-wrapper .nav-list .lang {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .nav-wrapper .left {
  margin: 0;
  padding: 18px 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .left {
    float: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: none;
    margin-top: -180px;
    z-index: 2;
    padding-top: 70px;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
  }
}
header .nav-wrapper .left .nav-item {
  margin-left: 100px;
}
@media screen and (max-width: 1610px) {
  header .nav-wrapper .left .nav-item {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .left .nav-item {
    margin: 0;
  }
}
header .nav-wrapper .right {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 0;
  margin: 0;
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .right {
    float: none;
    flex-direction: column;
    border: none;
    justify-content: center;
    align-items: center;
    margin-top: -60.8px;
    padding-top: 70px;
    padding-bottom: 90px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }
}
header .nav-wrapper .right .nav-item {
  margin-right: 100px;
}
@media screen and (max-width: 1610px) {
  header .nav-wrapper .right .nav-item {
    margin-right: 50px;
  }
}
@media screen and (max-width: 1250px) {
  header .nav-wrapper .right .nav-item {
    margin: 0;
  }
}
header .nav-wrapper .active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
header .mobile-nav {
  display: none;
}
@media only screen and (max-width: 1250px) {

  header .nav-list {
    display: none;
  }
  header .logo-link {
    margin: 0 auto;
    width: 110px !important;
    height: 110px !important;
  }
  header .logo-link .logo {
    /* transform: translateY(-12px) scale(0.8); */
  }
  header .mobile-nav {
    /* background-color: #ba7802; */
    background-color: white;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 0px;
    opacity: 0;
    z-index: 3;
    padding: 20px;
    /* padding-top: 50px; */
    padding-top: 20px;
    box-shadow: 0px -5px 20px rgba(0, 0, 0, 0.4);
    /* border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px; */
    transition: all 0.5s ease-in-out;
    height: 100vh;
        transform: translateX(100px);
  }
  header .mobile-nav.open {
    opacity: 1;
    width: 100%;
           transform: translateX(0px);
  }
  header .mobile-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    z-index: 3;
    position: relative;
    border-radius: 7px;
    padding-top: 100px;
  }
  header .mobile-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  header .mobile-list ul li {
    padding: 10px 0;
  }
  header .mobile-list ul li a {
    font-size: 20px;
    text-decoration: none;
    /* color: white; */
    /* color: #ba7802; */
    color: black;
    font-weight: 500;
    letter-spacing: 2px;
  }
  header .mobile-list ul .services-list details summary {
    font-size: 20px;
    /* color: white; */
    /* color: #ba7802; */
    color: black;
    font-weight: 500;
    letter-spacing: 2px;
    list-style: none;
  }
  header .mobile-list ul .services-list details ul {
    padding: 0;
  }
  header .mobile-list ul .services-list details ul li a {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: capitalize;
  }
  header .mobile-list .language {
    /* border: 1px solid white; */
    /* border-radius: 50%;
    padding: 7px 8px; */
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #ba7802;
margin-top: 35px;
  }
  header .mobile-list .language:hover {
    color: #ba7802;
    border: 1px solid #ba7802;
  }
}
@media only screen and (max-width: 1250px) and (max-width: 1250px) {
  header .mobile-list .language:hover {
    border: 1px solid #000;
    color: black;
  }
}
@media only screen and (max-width: 1250px) {
  header .mobile-list .language-list {
    position: absolute;
    left: 90px;
    top: 13px;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
    opacity: 0;
    transition: ease-in-out 0.25s;
    z-index: 5;
  }
  header .mobile-list .language-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    cursor: pointer;
  }
  header .mobile-list .language-list li a {
    text-decoration: none;
    color: #fff;
  }
  header .mobile-list .language-list li:hover {
    border: 1px solid black;
    color: black;
  }
  header .mobile-list .language-list li:hover a {
    color: black;
  }
  header .mobile-list .lang {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .mobile-list .lang:hover .language-list {
    opacity: 1;
  }
  header .hamburger {
    display: block !important;
    position: relative;
    z-index: 99;
    position: absolute;
    right: 0;
    padding: 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
  }
  header .hamburger:hover {
    opacity: 0.7;
  }
  header .hamburger.is-active:hover {
    opacity: 0.7;
  }
  header .hamburger.is-active .hamburger-inner,
  header .hamburger.is-active .hamburger-inner::before,
  header .hamburger.is-active .hamburger-inner::after {
    /* background-color: white; */
    background-color: #ba7802;
  }
  header .hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
  }
  header .hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
  }
  header .hamburger-inner,
  header .hamburger-inner::before,
  header .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #ba7802;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
  }
  header .hamburger-inner::before,
  header .hamburger-inner::after {
    content: "";
    display: block;
  }
  header .hamburger-inner::before {
    top: -10px;
  }
  header .hamburger-inner::after {
    bottom: -10px;
  }
  header .hamburger--3dx .hamburger-box {
    perspective: 80px;
  }
  header .hamburger--3dx .hamburger-inner {
    transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  header .hamburger--3dx .hamburger-inner::before,
  header .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  header .hamburger--3dx.is-active .hamburger-inner {
    background-color: transparent !important;
    transform: rotateY(180deg);
  }
  header .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg);
  }
  header .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg);
  }

  header .mobile-list ul li .socials{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
  header .mobile-list ul li .socials a{
    margin-left: 15px;
        width: 36.38px;
    height: 36.38px;
        display: flex;
    align-items: center;
    justify-content: center;
  }

    header .mobile-list ul li .socials a:first-child{
      margin-left: 0;
    }

  header .mobile-list ul li .socials a.linkedin-footer-icon {

    background-color: black;
    transition: all 0.5s ease-in-out;
}

  header .mobile-list ul li .socials a.linkedin-footer-icon i {
    font-size: 25px;
    color: white;
}
}
.overlay-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 7, 13, 0.3);
  z-index: 1;
}

.under-header {
  position: relative;
  height: 210px;
}
.under-header.home-header {
  height: 70vh;
  /* height: 630px; */
}
.under-header.hidden {
  display: none;
}
.under-header .button-arrow {
  z-index: 1;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  color: #ba7802;
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}
.under-header .button-arrow:hover {
  color: black;
}
.under-header .button-arrow i {
  font-size: 2rem;
  display: block;
}
.under-header .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: brightness(70%);
  z-index: -1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.under-header .background img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  object-position: center;
  -o-object-position: center;
}
.under-header .background-text {
  height: 100%;
  z-index: 1;
  color: white;
  display: flex;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.under-header .background-text .main-headline,
.under-header .background-text h2,
.under-header .background-text h1 {
  width: 100%;
  font-size: 50px;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .under-header .background-text .main-headline,
  .under-header .background-text h2,
  .under-header .background-text h1 {
    max-width: 80%;
    font-size: 30px;
  }
}
.under-header .background-text p {
  width: 60em;
  font-size: 15px;
  line-height: 30px;
}
@media screen and (max-width: 1000px) {
  .under-header .background-text p {
    max-width: 80%;
  }
}
.under-header .home-page-slider-box {
  position: relative;
  height: 70vh;
}

.lang summary{
  list-style: none;
}

.lang details{
  width: 42px;
}

header .mobile-nav .mobile-logo{
  width: 100%;
  max-width: 100px;
  height: 80px;
  display: block;
  position: absolute;
  top: 10px;
}

header .mobile-nav .mobile-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media only screen and (max-width: 576px){
  header .logo-link{
    height: 80px !important;
  }

  header .nav-wrapper .logo-link .logo{
    height: 80px;
  }
}

header .mobile-list ul li details ul{
  padding-top: 10px !important;
}
header .mobile-list ul li details li{
  padding: 0;
  padding-bottom: 10px;
}

header .mobile-list ul li details li:last-child{
  padding-bottom: 0;
}