@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
body {
    font-family: "Open Sans", sans-serif;
    color: #515A63;
    position: relative;
}
h1,h2,h3,h4,h5,h6, .raleway {
    font-family: "Raleway", serif;
}
* {
    box-sizing: border-box;
    outline: none;
}
label.error {
    display: none!important;
}
.error {
    border-color: red!important;
}
.valid {
    border-color: green!important;
}
button, a {
    cursor: pointer;
    transition: .3s;
}
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
p {
    margin-top: 0;
}
.flex {
    display: flex;
}
.row.flex::before, .row.flex::after {
    display: none;
}
.flex.center {
    align-items: center;
}
.box {
    margin-bottom: -30px;
}
.box > div {
    margin-bottom: 30px;
}
.container {
    width: 100%;
    max-width: 1180px;
}

.header_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.top_nav {
    display: flex;
    gap: 40px;
}

.top_nav a {
    transition: .3s;
    font-size: 12px;
    color: #515A63;
    text-transform: uppercase;
    font-weight: 600;
}

.top_nav a:hover {
    text-decoration: underline;
    color: #333;
}
.top_nav .active a {
    text-decoration: underline;
    color: #333;
}

a {
    text-decoration: none;
}

header {
    padding: 20px 0;
    transition: .3s;
    background-color: #fff;
    position: fixed;
    z-index: 1000;
    left: 0;
    width: 100%;
    top: 0;
}
.intro_section {
    position: relative;
}
.intro_section_bg {
    background-image: url(../img/bg_intro.jpg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
}
.intro_section {
    min-height: 100vh;
    min-height: 100dvh;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 120px;
}

.intro_section .container {
    position: relative;
    z-index: 100;
}

.intro_desc_wrp {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.intro_desc_wrp h1 {
    margin: 0;
    color: #fff;
    font-size: 70px;
    text-transform: uppercase;
    font-weight: 900;
}

.intro_desc_wrp h1 span {
    color: #F19500;
}

.after_h1 {
    margin: 0;
    margin-top: 20px;
    font-family: 'Raleway',sans-serif;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.intro_desc {
    margin: 0;
    margin-top: 30px;
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}
.services_section {
    padding: 120px 0;
}

.services_items {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.service_item {
    display: flex;
    align-items: center;
    gap: 40px;
}

.service_img {
    background-position: center;
    background-size: cover;
    height: 350px;
    flex: 1;
}

.service_desc {
    flex: 1;
}

.service_item:nth-child(odd) .service_img {
    order: 2;
}

.service_item:nth-child(odd) .service_desc {
    padding-right: 10px;
}

.service_desc h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 14px;
    color: rgba(0,0,0,.8);
}

.service_desc h2 span {
    color: #F19500;
}

.service_desc p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.button {
    border: none;
    display: inline-flex;
    text-decoration: none;
    transition: .3s;
    font-size: 12px;
    color: #fff;
    font-weight: bold;
    padding: 9px 25px;
    line-height: 1;
    background-color: #F19500;
    border-radius: 100px;
    cursor: pointer;
}

.button:hover {
    opacity: .5;
}
.customer_logo_holder {
    height: 140px;
    background-color: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px;
}
.partners_clients {
    background-color: rgba(217, 217, 217, 0.2);
    padding: 120px 0;
    overflow: hidden;
}

.section_title {
    margin: 0;
    margin-bottom: 100px;
    font-size: 44px;
    color: #515A63;
    font-weight: 900;
    text-transform: uppercase;
}

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

.section_title span {
    color: #F19500;
}

.label_lined {
    position: relative;
    text-align: center;
    margin: 80px 0;
}

.label_lined::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #515A63;
    opacity: .5;
    top: 50%;
    position: absolute;
    left: 0;
}

.label_lined span {
    position: relative;
    z-index: 100;
    background-color: #f7f7f7;
    padding: 0 30px;
    font-size: 26px;
    color: #515A63;
    display: inline-block;
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 900;
}

.customer_logo_holder img {
    width: 80%;
    height: 90%;
    object-fit: cover;
    object-position: center;
    transition: .3s;
}
.customer_logo_holder:hover img {
    width: 85%;
} 
.swiper_wrp {
    position: relative;
    margin-left: -60px;
    width: calc(100% + 120px);
    padding: 0 60px;
}

.go_prev, .go_next {
    position: absolute;
    cursor: pointer;
    transition: .3s;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    transition: .3s;
}

.go_prev {
    left: 0;
}

.go_next {
    right: 0;
}

.go_prev:hover, .go_next:hover {
    filter: brightness(0);
}
.header_fixed header {
    padding: 16px 0;
    box-shadow: 0px 0px 10px #cccccc;
}
.contact_section {
    padding: 125px 0;
}
.contact_items {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.contact_item {
    position: relative;
    width: 100%;
}

.contact_item::after {
    content: '';
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    max-width: 120px;
    background-color: #D9D9D9;
    bottom: -47px;
}

.contact_item:last-child::after {
    display: none;
}

.contact_items h3 {
    margin: 0;
    font-family: 'Open Sans',sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #515A63;
    margin-bottom: 18px;
}

.contact_items p {
    margin: 0;
    font-size: 14px;
    color: #515A63;
    line-height: 1.4;
}

.contact_section  iframe {
    width: 100%;
    height: 100%;
    min-height: 250px;
}

.divider {
    width: calc(100% - 140px);
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.divider::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
    opacity: .9;
    top: 50%;
    position: absolute;
}

.divider div {
    position: relative;
    z-index: 100;
    background-color: #fff;
    display: inline-block;
    padding: 0 10px;
}
.form_section {
    padding: 110px 0;
}
.after_h2 {
    margin-bottom: 45px;
    text-align: center;
    line-height: 1.5;
    font-size: 14px;
    color: #515A63;
}

.section_title + .after_h2 {
    margin-top: -70px;
}
.wpcf7-form {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    margin: 0;
    gap: 25px 45px;
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
}

.input_el {
    width: 100%;
}

.input_el:nth-child(2) {
    width: calc(60% - 46px);
}

.input_el:nth-child(3) {
    width: 40%;
}

.input_el p {
    margin: 0;
    margin-bottom: 6px;
    color: #515A63;
    font-size: 14px;
}

.input_el p span {
    color: #F19500;
}

.input_el input, .input_el textarea {
    background: none;
    border: none;
    width: 100%;
    height: 48px;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 16px;
    color: #333;
}

.input_el textarea {
    height: 150px;
    resize: none;
    padding-top: 14px;
    padding-bottom: 12px;
}

.wpcf7-form .pressing {
    margin: 40px 0;
}

.pressing {
    position: relative;
    margin: 0;
    cursor: pointer;
    font-size: 14px;
    color: #515A63;
    padding-left: 24px;
}

.pressing::before {
    content: '';
    display: block;
    position: absolute;
    transition: .3s;
    width: 16px;
    height: 16px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    left: 0;
    top: 0px;
}

.pressing.pressed::before {
    border-color: #f19500;
    border-width: 5px;
}
footer {
    padding: 52px 0;
    background-color: #515A63;
}

.footer_logo {
    max-width: 100%;
    height: auto;
    display: block;
}

.foott {
    margin: 0;
    margin-top: 55px;
    color: #D9D9D9;
    font-size: 12px;
    line-height: 1.5;
}

.footer_navs {
    max-width: 275px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.footer_navs ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer_navs ul a {
    font-size: 14px;
    color: #FFFFFF;
}

.footer_navs ul a:hover {
    text-decoration: underline;
}

.footer_text_last {
    margin-bottom: 30px;
    font-size: 12px;
    color: #fff;
    line-height: 1.46;
}

.footer_soc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 337px;
    width: 100%;
}

.footer_soc a {
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 14px;
    gap: 14px;
}

.footer_soc a:hover {
    text-decoration: underline;
}
.open_nav {
    display: none;
}
body.menu_opened::before {
    content: '';
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: black;
    z-index: 1000;
    opacity: .63;
}

.heading_section {
    background-position: center;
    background-size: cover;
    padding-bottom: 50px;
    padding-top: 140px;
    position: relative;
}

.heading_section h1 {
    color: #fff;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 39px;
}

.heading_section .container {
    position: relative;
    z-index: 100;
}

.heading_section::before {
    content:'';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: black;
    opacity: .4;
}

.heading_section .after_h1 {
    font-weight: normal;
    font-family: 'Open Sans',sans-serif;
    text-transform: inherit;
    line-height: 1.6;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}
.content_section {
    padding: 90px 0;
}

.content p {
    line-height: 1.6;
    margin-bottom: 30px;
}

.content {
    position: relative;
}

.content h2 {
    margin-bottom: 30px;
}

.content ul {
    padding-left: 22px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 11px;
    list-style-type: disc;
    line-height: 1.6;
}
.person_section {
    padding: 90px 0;
}

.content_section + .person_section {padding-top: 0;margin-top: -60px;}

.people_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.people_flex h2 {
    width: 100%;
    margin: 0;
}

.people_card {
    width: calc(50% - 16px);
    display: flex;
    gap: 30px;
}

.people_card_img {
    flex: none;
    width: 180px;
    background-position: top center;
    background-size: cover;
    border-radius: 20px;
    min-height: 170px;
}

.people_card_desc {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 14px 0;
}

.people_card_desc p {
    font-family: 'Raleway',sans-serif;
    font-weight: bold;
    font-size: 20px;
    margin: 0;
}

.people_card_desc span {
    opacity: .6;
    display: block;
    margin-top: 6px;
    margin-bottom: 30px;
    flex: 1;
}

.people_card_desc ul {
    display: flex;
    flex-direction: column;
    gap: 11px;
}
header + .section:not(.intro_section,.heading_section) {
    margin-top: 83px;
    border-top: 1px solid #dedede;
    padding-top: 70px;
}

.countries_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
}

.country_card {
    width: calc(33.333% - 20px);
}

.country_card h3 {
    text-transform: uppercase;
    font-weight: bold;
    color: #333;
}

.country_card p {
    line-height: 1.5;
}

.country_card ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.country_card b {
    padding-right: 5px;
}
.top_nav a {
    position: relative;
}

.top_nav a::after {
    content: '';
    display: block;
    position: absolute;
    transition: .3s;
    height: 2px;
    background-color: #F19500;
    width: 100%;
    bottom: -4px;
    opacity: 0;
}

.top_nav a:hover::after {
    opacity: 1;
}

.top_nav a:hover {
    text-decoration: none;
}
.career_wrp {
    display: flex;
    gap: 10px;
}

.career_left {
    background-color: #f2f2f2;
    padding: 15px;
    flex: none;
    width: 290px;
}

.career_switcher {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 90px;
}

.career_switcher li {
    background-color: #fff;
    padding: 12px 10px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.4;
    cursor: pointer;
    transition: .3s;
}

.career_switcher li.active {
    background-color: #F19500;
    color: #fff;
}

.career_right {
    background-color: #f2f2f2;
    padding: 40px;
    flex: 1;
}

.career_content_item > :nth-child(1) {
    margin-top: 0;
}

.content a {
    color: #F19500;
    text-decoration: underline;
}

.content a:hover {
    text-decoration: none;
}

.career_content_item {
    display: none;
}

.career_content_item.active {
    display: block;
}
.section.not_foud {
    padding-bottom: 190px;
    padding-top: 150px!important;
}

.section.not_foud h1 {
    color: black;
    font-size: 90px;
    line-height: 1;
    margin: 0;
}

.section.not_foud p {
    margin: 20px 0;
    font-size: 21px;
}
.current_page_item a::after {
    opacity: 1!important;
}
.dis {
    pointer-events: none;
    opacity: .6;
}
.wpcf7-not-valid {
    border-color: red!important;
}

.wpcf7-not-valid-tip {
    font-size: 11px;
    margin-top: 5px;
}
.wpcf7 form.sent .wpcf7-response-output {
    width: 100%;
    text-align: center;
    background-color: #46b450;
    color: #fff;
    font-weight: bold;
    padding: 14px 20px;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    width: 100%;
    text-align: center;
}
.foott:last-child {
    margin-top: 10px;
}

.foott a {
    text-decoration: underline;
    color: inherit;
}

.foott a:hover {
    text-decoration: none;
}
.grecaptcha-badge {
    opacity: .000001;
    pointer-events: none;
}



.cookies_wrp,
.cookies_wrp * {
  box-sizing: border-box !important;
}
.cookies_wrp {
  position: fixed;
  z-index: 10000;
  bottom: -250px;
  left: 0;
  width: 100%;
  pointer-events: none;
  padding: 20px;
  z-index: 1000;
  transition: 0.7s ease;
}

.cookies_inner {
  display: flex;
  border-radius: 12px;
  border: 1px solid #dee2ea;
  background: var(--blue-100, #fff);
  box-shadow: 0px 15px 35px -5px rgba(9, 17, 29, 0.15);
  margin: 0 auto;
  max-width: 940px;
  padding: 18px;
  gap: 20px 40px;
}

.cookies_right {
  flex: none;
  width: 210px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookies_right button {
  padding: 0;
  width: 100%;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 6px;
  background: #F19500;
  height: 40px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 13.886px;
  color: #fff;
  border: 1px solid #F19500;
}

.cookies_right button.cookies_secondary {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}

.cookies_right button.cookies_secondary:hover {
  background-color: #000;
  color: #fff;
  opacity: 1;
}

.cookies_right button:hover {
  opacity: 0.7;
}

.cookies_left {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cookies_label {
  margin: 0;
  margin-bottom: 5px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 21.199px;
}

.cookies_desc p {
  color: #414b63;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 0;
  letter-spacing: -0.14px;
}

.cookis_list {
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px 30px;
  margin-bottom: 24px;
  align-items: center;
}

.cookis_list li {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 12.719px;
  letter-spacing: -0.28px;
  min-height: 20px;
  display: flex;
  align-items: center;
}

.cookis_list li.active::before {
  border-width: 6px;
}

.cookis_list li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  transition: 0.3s;
  box-sizing: border-box;
  border: 2px solid #f19501;
}

.cookies_more {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12.719px; /* 105.475% */
  letter-spacing: -0.241px;
  text-decoration-line: underline;
}

.cookies_more:hover {
  text-decoration: none;
}

.cookies_select_wrp {
  display: none;
  flex: 1;
  align-items: flex-end;
}

.cookies_desc {
  flex: 1;
  padding-top: 8px;
}
.selecting_cookies .cookies_button {
  border: 1px solid #F19500;
  background: #F19500;
  color: #fff;
}

.selecting_cookies .cookies_button.cookies_secondary {
  background: #000;
  color: #fff;
}
.show_flex {
  display: flex;
}
.cookies_wrp.opened {
  bottom: 0px;
}

.opened .cookies_inner {
  pointer-events: all;
}
@media screen and (max-width: 991px) {
  .cookies_inner {
    max-width: 570px;
    flex-wrap: wrap;
    padding: 20px;
    gap: 24px;
  }

  .cookies_left {
    width: 100%;
    flex: none;
  }

  .cookies_right {
    width: 100%;
    flex-direction: row;
    gap: 5px;
  }

  .cookies_right button {
    flex: auto;
    width: auto;
    font-size: 12px;
    height: 33px;
  }

  .cookies_right > button:last-child {
    order: 1;
  }

  .cookies_right > button:nth-child(1) {
    order: 3;
  }

  .cookies_right > button:nth-child(2) {
    order: 2;
  }

  .cookies_label {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .cookies_desc {
    padding: 0;
  }

  .cookies_desc p {
    font-size: 14px;
    line-height: 1.4;
  }
  .cookis_list {
    margin-bottom: 15px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 540px) {
  .cookies_right {
    flex-direction: column;
  }

  .cookies_wrp {
    padding: 10px;
  }

  .cookies_inner {
    gap: 17px;
    padding: 18px;
  }

  .cookies_label {
    font-size: 19px;
  }

  .cookies_desc p {
    font-size: 13px;
    line-height: 1.37;
  }

  .cookies_right > button:nth-child(1) {
    order: 1;
  }

  .cookies_right > button:nth-child(2) {
    order: 2;
  }

  .cookies_right > button:nth-child(3) {
    order: 3;
  }

  .cookis_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px 0;
  }

  .cookis_list li {
    font-size: 15px;
  }

  .cookies_more {
    font-size: 14px;
  }
  .cookies_wrp {
    bottom: -480px;
  }
}

.pressing a {
    color: inherit;
    text-decoration: underline;
}
.pressing a:hover {
    text-decoration: none;
}