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

/* Remove default margin and padding */
html {
  margin-top: 0px !important;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
li,
figure,
figcaption,
blockquote,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
button,
input {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

body {
  font-family: 'Open Sans', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

:focus {
  outline: none;
}

@font-face {
  font-family: "Exo_2_bold";
  src: url("../assets/fonts/Exo_2/static/Exo2-Bold.ttf") format("truetype");
}

@font-face {
  font-family: "Exo_2";
  src: url("../assets/fonts/Exo_2/static/Exo2-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Open_Sans_bold";
  src: url("../assets/fonts/Open_Sans/OpenSans-Bold.ttf") format("truetype");
}

/*burger_nav*/
.burger{
  display: none;
}
.burger_navigation{
  background-color: white;
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  border-bottom: 2px solid #ededed;
  padding-top: 30px;
  padding-bottom: 30px;
}
.burger_wrapper{
  width: 0;
  height: 0;
  position: fixed;
  top: 0;
  left: -100%;
  z-index: -1;
  visibility: none;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.burger_wrapper_active{
  width: 100% !important;
  height: 100% !important;
  z-index: 999 !important;
  left: 0 !important;
  visibility: visible;
  transition: all ease-in-out 0.3s;
}
.burger_shadow{
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.burger_nav_items{
  width: 0;
  height: 0;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 105px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  padding-top: 70px;
  padding-right: 50px;
  visibility: none;
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.burger_nav_items_active{
  transition: all ease-in-out 0.3s;
  width: 40% !important;
  height: 100% !important;
  z-index: 1001 !important;
}
#menu-burger_menu{
  display: flex;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 30px;
  padding-left: 50px;
  position: relative;
  max-width: 350px;
  width: 100%;
}
.burger_nav_list{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  padding-left: 50px;
}
.current-menu-item a {
  font-family: 'Open_Sans_bold' !important;
  font-size: 18px;
  color: #FFC212;
}
.burger_nav_container{
  max-width: 1310px;
  width: 100%;
  margin: auto;
}
.burger_nav_header{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 50px;
  padding-right: 50px;
}
.burger_close{
  width: 220px;
  position: relative;
  cursor: pointer;
}
.burger_close_left{ 
  width: 40px;
  height: 3px;
  background-color: #000;
  margin-bottom: 5px;
  transition: all ease-in-out 0.3s;
}
.burger_close_left_active{
  transform: rotate(40deg);
  transition: all ease-in-out 0.3s;
} 
.burger_close_right{
  width: 40px;
  height: 3px;
  background-color: #000;
  margin-bottom: 5px;
  transition: all ease-in-out 0.3s;
}
.burger_close_right_active{
  transform: rotate(-40deg);
  margin-top: -6.5px;
  transition: all ease-in-out 0.3s;
}
.burger_close_bottom{
  width: 40px;
  height: 3px;
  background-color: #000;
  transition: all ease-in-out 0.3s;
}
.burger_close_bottom_active{
  display: none;
  transition: all ease-in-out 0.3s;
}

/*thank_modal*/
.thank_modal {
  position: fixed;
  z-index: 1003;
  top: calc(50% - 172.5px);
  left: calc(50% - 212.5px);
  max-width: 425px;
  width: 100%;
  height: 345px;
  margin: auto;
  background-color: #fff;
  border-top: 5px solid #ffd355;
  border-radius: 30px;
  text-align: center;
}
.thank_modal_shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1003;
  display: none;
}
.thank_modal_show {
  display: block;
}
.modal_close {
  position: absolute;
  right: 27px;
  top: 20px;
  cursor: pointer;
}
.modal_img {
  width: 70px;
  height: 70px;
  margin: auto;
  margin-top: 55px;
}
.modal_title {
  margin-top: 30px;
}
.modal_title p {
  font-size: 32px;
  font-family: 'Open_Sans_bold' !important;
  line-height: 38px;
  color: #303030;
}
.modal_text {
  max-width: 301px;
  width: 100%;
  margin: auto;
  margin-top: 20px;
}
.modal_text p {
  font-size: 18px;
  font-weight: normal;
  line-height: normal;
  color: #303030;
  font-family: "Open Sans", sans-serif;
}

/*form modal*/
.contact_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1002;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.contact_modal_show {
  display: flex;
}

.contact_form::-webkit-scrollbar {
  width: 5px;
  background-color: #EDEDED;
}

.contact_form::-webkit-scrollbar-thumb {
  background-color: #A9A9A9;
}

.contact_form {
  max-width: 1210px;
  width: 100%;
  max-height: 799px;
  height: 95%;
  margin: auto;
  border-radius: 30px;
  text-align: center;
  background-color: #ffd355;
  padding-top: 5px;
  overflow-y: auto;
}
.contact_form_container {
  padding: 65px 85px 6px 85px;
  background-color: #f5f5f5;
  position: relative;
  border-radius: 30px;
  border: 2px solid #EDEDED;
  height: auto;
}
.modal_close_contact {
  position: absolute;
  right: 50px;
  top: 40px;
  cursor: pointer;
}
.contact_form_title {
  max-width: 739px;
  width: 100%;
  margin: auto;
  margin-bottom: 40px;
}
.contact_form_title h3 {
  font-size: 32px;
  font-family: 'Open_Sans_bold';
  line-height: 42px;
  color: #303030;
}
.contact_form_text {
  max-width: 709px;
  width: 100%;
  margin: auto;
  margin-bottom: 65px;
}
.contact_form_text p {
  font-size: 18px;
  line-height: normal;
  color: #303030;
  font-weight: normal;
  font-family: 'Open Sans', sans-serif;
}
.form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Open Sans', sans-serif;
  padding-bottom: 65px;
}
.input_field {
  width: calc(50% - 15px);
  text-align: left;
  margin-bottom: 23px;
  position: relative;
}
.error-message {
  color: #FF6565;
  font-size: 12px;
  line-height: normal;
  font-weight: 600;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.error {
  border: 2px solid #FF6565 !important;
}
.input_field p {
  font-size: 16px;
  line-height: normal;
  font-weight: normal;
  color: #303030;
}
.input_field p span {
  color: #ff6565;
}
.input_field input {
  margin-top: 7px;
  width: 100%;
  border-radius: 30px;
  border: 2px solid #ededed;
  background-color: #fff;
  padding: 17px 25px;
  font-size: 16px;
  line-height: normal;
  font-weight: normal;
  color: #000;
}
.input_field input::placeholder {
  font-size: 16px;
  line-height: normal;
  font-weight: normal;
  color: #a9a9a9;
}
.input_file {
  width: calc(50% - 15px);
  position: relative;
}
.input_file p {
  text-align: left;
  font-size: 16px;
  line-height: normal;
  font-weight: normal;
  color: #303030;
}
.input_file input[type="file"] {
  display: none;
}
.file_block {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  text-align: center;
  border: 2px dashed #e3e3e3;
  margin-top: 7px;
}
.download_img {
  padding-top: 25px;
  width: 53px;
  height: 53px;
  margin: auto;
  margin-bottom: 30px;
}
.download_img_text {
  padding-top: 29px;
}
.download_img_text p {
  font-size: 16px;
  line-height: normal;
  color: #303030;
  font-weight: 600;
  text-align: center !important;
}
.download_img_text p span {
  color: #ffbd12;
}
.download_img_formats {
  max-width: 279px;
  margin: auto;
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
  margin-top: 14px;
}
.download_img_formats p {
  font-size: 12px;
  color: #919191;
  line-height: normal;
  font-weight: normal;
  text-align: center;
}
.textarea_field {
  width: calc(50% - 15px);
  text-align: left;
}
.textarea_field input {
  width: 100%;
  border-radius: 30px;
  outline: none;
  border: none;
}
.letter {
  width: 100%;
  height: 131px;
  border: 2px solid #ededed;
  border-radius: 20px;
  padding: 17px 24px;
  margin-top: 7px;
  resize: none;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #000;
}
.letter::placeholder {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #a9a9a9;
  line-height: normal;
  font-weight: normal;
}
.submit_btn input {
  background-color: #ffc212;
  height: 50px;
  font-size: 18px;
  line-height: normal;
  font-weight: 600;
  margin-top: 13px;
  cursor: pointer;
}

/*header*/

/*header*/
header {
  width: 100%;
  background-color: white;
  position: relative;
}

.content_container {
  max-width: 1610px;
  width: 100%;
  margin: auto;
}
.navigation_container {
  background-color: white;
  z-index: 1001;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px solid #ededed;
  display: block;
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1610px;
  width: 100%;
  margin: auto;
  padding: 20px 40px;
}
.nav_container {
  max-width: 958px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: flex;
  width: 100%;
}
.menu li a {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
}
.menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.menu-item-72{
  padding-left: 40px;
  border-left: 1px solid #8b8b8b;
  line-height: 40px;
}
.menu-item-71{
  margin-left: -20px;
  line-height: 40px;
}
.trp-language-switcher-container a {
  font-size: 18px;
  color: #8b8b8b;
  line-height: normal;
  font-weight: normal;
}
.current-language-menu-item a {
  font-family: 'Open_Sans_bold' !important;
  color: #ffc212 !important;
}

.nav_btn button {
  border: 2px solid #ffc212;
  height: 46px;
  width: 220px;
  background-color: #fff;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #303030;
  border-radius: 30px;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
  font-family: 'Open_Sans_bold' !important;
}
.nav_btn_burger button {
  border: 2px solid #ffc212;
  height: 46px;
  width: 220px;
  background-color: #fff;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  color: #303030;
  border-radius: 30px;
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.nav_btn button:hover {
  background-color: #FFD355;
  border: 2px solid #FFD355;
}
.nav_btn button:active {
  background-color: #FFC212;
  border: 2px solid #FFC212;
}
.hero {
  width: 100%;
  height: 680px;
  background-image: url("../assets/vacancies/vacancies_hero_bg.jpg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-top: 87px;
}
.hero_shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    140deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.3225665266106442) 75%,
    rgba(0, 0, 0, 0.011642156862745057) 100%
  );
  z-index: 1;
}
.hero_content {
  max-width: 1210px;
  width: 100%;
  margin: auto;
  padding-top: 135px;
  position: relative;
  z-index: 2;
}
.hero_title h1 {
  font-size: 61px;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  font-family: 'Exo_2';
  text-transform: uppercase;
}
.hero_title h1 span {
  font-family: 'Exo_2_bold';
  color: #ffc212;
}
.hero_subtitle {
  font-size: 34px;
  font-weight: 400;
  line-height: auto;
  color: #fff;
  margin-top: 40px;
}
.hero_text {
  max-width: 590px;
  margin-top: 42px;
}
.hero_text p {
  color: #fafafa;
  font-size: 20px;
  font-weight: normal;
  line-height: 32px;
}

/*vacancies*/
.vacancies{
  position: relative;
}
.vacancies_container {
  max-width: 1310px;
  width: 100%;
  margin: auto;
  margin-bottom: 92px;
  position: relative;
  text-align: center;
}
.switch-field {
  display: flex;
  top: 86px;
  left: 0;
  z-index: 12;
  margin-bottom: 36px;
  overflow: hidden;
  background-color: #fff;
  padding-bottom: 30px;
}
.switch-field input {
  position: absolute !important;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  width: 1px;
  border: 0;
  overflow: hidden;
  transition: all ease-in-out .3s;
}
.switch-field label {
  background-color: #fff;
  width: 302px;
  height: 80px;
  color: #000;
  font-size: 24px;
  text-align: center;
  font-family: 'Open_Sans_bold';
  transition: all 0.1s ease-in-out;
  line-height: 24px;
  padding-top: 20px;
  text-transform: uppercase;
  transition: all ease-in-out .3s;
}
.switch-field label:hover {
  cursor: pointer;
}

.switch-field input:checked + label {
  box-shadow: none;
  width: 302px;
  height: 80px;
  background-image: url("../assets/vacancies/vacancies_nav_bg.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  transition: all ease-in-out .3s;
}
.nav_country {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav_country img {
  margin-right: 15px;
}

.vacancies_title {
  margin-top: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.vacancies_title p {
  font-size: 46px;
  font-family: 'Open_Sans_bold';
  line-height: 160%;
  color: #303030;
}
.vacancies_title p span {
  color: #ffc212;
}
.vacancy_items {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: calc(384px * 3 + 60px);
  width: 100%;
  margin: auto;
  margin-bottom: 90px;
}
.vacancy_item {
  max-width: 384px;
  width: 100%;
  height: 560px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  transition: all ease-in-out .3s;
  cursor: pointer;
  border: 2px solid #EDEDED;
}
.vacancy_item:hover .vacancy_img img {
  transform: scale(1.1); /* Increase the scale on hover */
}
.vacancy_item:hover .vacancy_hover_shadow {
  opacity: 1;
  visibility: visible;
}
.vacancy_img img {
  max-width: 384px !important;
  width: 100% !important;
  transition: all ease-in-out .3s;
  border-radius: 30px;
}
.vacancy_item_top_shadow{
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 139px; 
   background: rgb(0,0,0);
   background: linear-gradient(180deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 83%);
   border-radius: 30px;
   transition: all ease-in-out .3s;
}
.vacancy_item_bottom_shadow{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 254px; 
    border-radius: 30px;
    background: rgb(0,0,0);
    background: linear-gradient(0deg, rgba(0,0,0,0.927608543417367) 0%, rgba(0,0,0,0) 83%);
    transition: all ease-in-out .3s;
}
.vacancy_hover_shadow{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    border-radius: 30px;
    transition: all ease-in-out .3s;
    opacity: 0;
    visibility: hidden;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 41.38%, rgba(0, 0, 0, 0) 100%);
}
.vacancy_img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 30px;
  height: 100%;
}
.vacancy_cont {
  width: 100%;
  height: 100%;
  padding: 35px 39px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 10;
  border-radius: 30px;
}
.location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 50px;
  border: 2px solid #fff;
  padding: 11px 11px;
}
.location img {
  width: 17px;
  height: 17px;
  margin-right: 4px;
}
.location p {
  text-transform: uppercase;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 18px;
}
.vacancy_name {
  margin-bottom: 27px;
  text-align: left;
}
.vacancy_name p {
  color: #fff;
  font-size: 22px;
  line-height: auto;
  font-family: 'Open_Sans_bold';
}
.vacancy_btn_cont {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.vacancy_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 50px;
  font-size: 18px;
  line-height: normal;
  font-weight:600;
  color: #303030;
  background-color: #ffc212;
  border-radius: 30px;
  font-family: 'Open Sans', sans-serif;
  transition: all ease-in-out 0.3s;
}
.vacancy_btn a:hover {
  background-color: #FFD355;
} 
.vacancy_btn_arrow {
  width: 45px;
  height: 45px;
  border-radius: 100%;
  border: 2px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
}
.vacancy_btn_arrow a {
  line-height: 0px !important;
}
.load_more_vacancies{
  border: none;
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;
  color: #636363;
  cursor: pointer;
}
.load_more_vacancies:hover{
  color: #939393;
}
.load_more_vacancies:hover svg path {
  fill: #939393;
}
.load_more_vacancies:active{
  color: #FFC212;
}
.load_more_vacancies:active svg path {
  fill: #FFC212; 
}
/*oportunities*/
.oportunities {
  width: 100%;
  background: radial-gradient(237.53% 237.32% at 58.52% -19.53%, #FFDE86 0%, rgba(255, 211, 95, 0) 100%);
  background-color:  rgba(255, 194, 18, 1); 
  text-align: center;
  padding-top: 100px;
  padding-bottom: 90px;
}
.oportunities h3 {
  margin-bottom: 20px;
  font-size: 46px;
  font-family: 'Open_Sans_bold';
  line-height: auto;
  color: #303030;
}
.oportunities p {
  font-size: 20px;
  color: #303030;
  line-height: normal;
  font-weight: normal;
  margin-bottom: 30px;
  font-family: 'Open Sans', sans-serif;
}
.oportunities_btn{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 30px;
  width: 278px;
  height: 55px;
  margin: auto;
  font-size: 20px;
  font-weight: 600;
  line-height: normal;
  color: #303030;
  transition: all ease-in-out 0.3s;
  font-family: 'Open Sans', sans-serif;
}

.oportunities a:hover {
  background-color: #F5F5F5;
}
.oportunities a:active {
  background-color: #343434;
  color: #fff;
}

.wp-block-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px; 
  width: 100%;
}

.cat-item {
  box-shadow: none;
  width: 302px;
  height: 80px;
  color: #6D6D6D;
  text-align: center;
  transition: all ease-in-out 0.3s;
}
.current-cat{
  width: 302px;
  height: 80px;
  background-image: url(../assets/vacancies/vacancies_nav_bg.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  transition: all ease-in-out 0.3s;
}
.cat-item:hover {
  background-image: url(../assets/vacancies/vacancies_nav_bg.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease-in-out 0.3s;
}
.cat-item a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 15px;
  font-size: 24px;
  text-align: center;
  font-family: 'Open_Sans_bold';
  transition: all 0.1s ease-in-out;
  line-height: 24px;
  text-transform: uppercase;
}
.cat-item-1{
  order: 3
}
.cat-item-2{
  order: 1;
}
.cat-item-3{
  order: 2; 
}
.cat-item-4{
  order: 4; 
}
.cat-item-1 a::before{
  content:url('../assets/la.png'); 
  width: 37px;
  height: 18px;
}
.cat-item-2 a::before{
  content:url('../assets/ua.png'); 
  width: 37px;
  height: 18px;
}
.cat-item-3 a::before{
  content:url('../assets/pl.png'); 
  width: 37px;
  height: 18px;
}

@media(max-width: 1550px){
  .navigation_container {
    display: none;
  }
  .burger{
    display: block;
  }
  .switch-field {
    top: 105px;
  }
  .menu-item-85{
    position: absolute;
    top: 0;
    right: 0;
  }
  .menu-item-86{
    position: absolute;
    top: 0;
    right: 45px;
  }
}
@media(max-width: 1400px){
  .hero_content {
    padding-left: 50px;
    padding-right: 50px;
  }
  .contact_form {
    margin: 50px 50px;
  }
}
@media(max-width: 1268px){
  .cat-item a {
    font-size: 20px;
    line-height: 22px;
  }
  .cat-item {
    max-width: 200px;
    width: 100%;
    height: 60px;
  }
  .current-cat {
    background-image: none;
    background-color: #000;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
@media(max-width: 1250px){
  .vacancies_container {
    padding-left: 50px;
    padding-right: 50px;
  }
  .vacancy_items {
    max-width: 798px;
    width: 100%;
    margin: auto;
    margin-bottom: 90px;
  }
}
@media(max-width: 980px){
  .oportunities {
    padding-left: 50px;
    padding-right: 50px;
  }
  .oportunities h3 {
    max-width: 500px;
    width: 100%;
    margin: auto;
    margin-bottom: 45px;
    line-height: 58px;
  }
  .contact_form_container {
    padding: 90px 50px 0px 50px;
  }
}
@media(max-width: 1000px){
  .burger_nav_logo{
    margin-right: 50px;
    margin-left: 50px;
  }
}
@media(max-width: 960px){
  .hero {
    margin-top: 0px;
    height: auto;
    padding-bottom: 60px;
  }
  .hero_content {
    padding-top: 145px;
  }
  .wp-block-categories {
    max-width: 440px;
    width: 100%;
    margin: auto;
  }
  .switch-field {
    padding-bottom: 15px;
    position: unset;
    padding-bottom: 0px;
    margin-top: 20px;
  }
  .current-cat {
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
  }
  .vacancy_items {
    margin-bottom: 60px;
  }
  .vacancies_container {
    margin-bottom: 60px;
  }
}
@media(max-width: 900px){
  .vacancy_items {
    max-width: 384px;
    width: 100%;
    margin: auto;
    margin-bottom: 50px;
  }
}
@media(max-width: 850px){
  .burger_nav_items_active {
    width: 60% !important;
  }
  .input_field {
    width: 100%;
  }
  .input_file {
    width: 100%;
  }
  .textarea_field {
    width: 100%;
  }
  .contact_form_text p br {
    display: none;
  }
}
@media(max-width: 680px){
  #menu-burger_menu {
    padding-left: 20px;
  }
  .hero_content {
    padding-top: 95px;
  }
  .burger_nav_header {
    padding-left: 20px;
    padding-right: 20px;
  }
  .burger_nav_logo {
    max-width: 180px;
    width: 100%;
    height: 30px;
    margin-left: 0px;
    margin-right: 0px;
  }
  .burger_nav_logo img{
    max-width: 180px;
    width: 100%;
    height: 30px;
    object-fit: contain;
  }
  .nav_btn_burger{
    max-width: 150px;
    width: 100%;
  }
  .nav_btn_burger button{
    max-width: 150px;
    width: 100%;
    font-size: 14px;
  }
  .burger_close {
    width: 40px;
  }
  .burger_navigation {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .burger_nav_items {
    margin-top: 50px;
  }
  .burger_nav_items_active{
    width: 100% !important;
  }
  .burger_close_right_active {
    margin-top: -7px;
  }
}
@media(max-width: 620px){
  .vacancies_container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .hero {
    height: auto;
    padding-bottom: 60px;
  }
  .hero_title h1 {
    font-size: 38px;
    line-height: 42px;
  }
  .hero_text p {
    font-size: 16px;
  }
  .hero_subtitle {
    margin-top: 10px;
  }
  .hero_text {
    margin-top: 20px;
  }
  .hero_content {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .oportunities {
    width: 100%;
    background: rgb(255, 222, 134);
    background: radial-gradient(circle, rgba(255, 222, 134, 1) 0%, rgba(255, 211, 95, 1) 62%);
    text-align: center;
    padding-top: 35px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .oportunities h3 {
    font-size: 36px;
    line-height: 44px;
    margin-bottom: 30px;
  }
  .oportunities a {
    font-size: 16px;
  }
  .vacancies_title p {
    font-size: 32px;
  }
  .contact_form {
    margin: 20px 20px;
  }
  .contact_form_container {
    padding: 90px 20px 0px 20px;
  }
  .contact_form_text p br {
    display: none;
  }
}
@media (max-width: 450px) {
  .thank_modal {
    max-width: 90%;
    left: calc(50% - 45%);
  }
}
@media(max-width: 460px){
  .cat-item {
    max-width: 130px;
    width: 100%;
    height: 60px;
  }
  .cat-item a {
    font-size: 14px;
    line-height: 16px;
  }
  .switch-field {
    margin-top: 30px;
  }
  .cat-item a {
    gap: 10px;
  }
  .switch-field {
    margin-top: 10px;
  }
  .vacancies_title {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
@media(max-width: 420px){
  .vacancy_item {
    height: 500px;
  }
  .vacancy_img{
    width: 100%;
    height: 500px;
  }
  .vacancy_img img {
    height: 500px !important;
    width: 100% !important;
    object-fit: cover;
    border-radius: 30px;
  }
  .vacancy_cont {
    padding: 25px 20px;
  }
  .vacancy_btn a {
    font-size: 16px;
    padding: 15px 45px;
    white-space: nowrap;
  }
  .vacancy_btn_cont {
    justify-content: space-between;
  }
}