:root{
  --color-text-link: black;
  --color-text-title: #0D0A0B;
  --bgc-btn: #FF4F69;
  --color-btn-text: #fff;
  --hover-btn: #f96e83;
  --accent-color: #FF4F69;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  max-width: 100%;
}
.mb-20{
    margin-bottom: 10px;
}
html, body{
  overflow-x: hidden;
  box-sizing: border-box;
}
button{
  cursor: pointer;
}
.link_privacy{
  color: #1155CC;
  text-decoration: underline;
}
.content{
  display: grid;
  grid-template-columns: 0.65fr 0.75fr;
  column-gap: 50px;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  height: auto;
}
.bread_text{
  font-size: 12px;
  color: #4C4F52;
  text-transform: uppercase;
}
a{
  text-transform: none;
  text-decoration: none;
  transition: color 0.3s ease;
}
.container{
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  position: relative;
}
main{
  position: relative;
  z-index: 1;

}
.no-scroll {
  overflow: hidden;
}
/*Start NavBar */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
  padding: 14px 0;
  border-bottom: 1px solid rgba(25, 24, 30, 0.10);
}
.navbar__white{
  background: #fff;
  transition: background 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.wrapper_nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.wrapper_line__top{
  position: absolute;
  top: 0;
  right: 0;
}
.line_bg{
  position: absolute;
}
.services_title span,
.main_title span{
  color: var(--accent-color);
}
.logo{
  width: 178px;
}
.menu ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 24px;
}
.first__line {
  background: url("../img/line_right.svg") no-repeat right top;
  background-size: contain;
  width: 300px;
  height: 600px; 
  position: absolute;
  right: 0;
  top: 0;
}
.link{
  color: var(--color-text-link);
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  position: relative;
}
.heart_job_3{
  display: none;
}
.heart_rec_2{
  display: none;
}
.link::after{
  content: '';
  width: 0%;
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  background-color: var(--color-text-link);
  transition: width 0.3s ease-in-out;
}
.link:hover::after{
  width: 100%;
}
.text_social{
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 24px;
}
.recruitment{
  background-color: rgb(247,251,255);
}
.recruitment_social{
  display: flex;
  gap: 40px;
}
.joy{
  width: 54px;
}
.charm{
  width: 175px;
}
.apply-button{
  background-color: var(--accent-color);
  color: var(--color-btn-text);
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 29px 13px 29px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  overflow: hidden;
  display: inline-block;
  border-radius: 60px;
  box-shadow: 0px 4px 4.2px 0px rgba(251, 45, 131, 0.20);;
}
.wrapper_grid{
  display: flex;
  gap: 105px;
  align-items: center;
}
.wrapper_line_services_top{
  position: absolute;
  left: 0;
  top: 0;
}
.telegram__icon{
  position: absolute;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  background-image: url(../img/telegram.svg);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
.wrapper_lang{
  display: flex;
  align-items: center;
}
.language-selector{
  position: relative;
    display: flex;
    width: 80px;
    justify-content: center;
}


.language-selector__current{
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  background: none;
}
.language-code {
  font: 700 16px / 21px "Inter", sans-serif;
}
.language-arrow {
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  width: 8px;
  height: 8px;
}
.language-selector__list {
  position: absolute;
  top: 228%;
  left: 0;
  z-index: 1001;
  width: 120px;
  max-width: 100%;
  padding: 10px;
  list-style: none;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  opacity: 0;

}
.language-selector__list.open{
  opacity: 1;
}
.language-selector__option{
  text-align: center;
  margin-bottom: 10px;
}
.submit{
  background-color: var(--bgc-btn);
  color: var(--color-btn-text);
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 40px;
  border-radius: 10px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  border: none;
  width: 260px;
}
.submit::after{
  background-color: var(--hover-btn);
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  transition: width 0.3s ease, left 0.3s ease;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.apply-button::after{
  background-color: var(--hover-btn);
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 100%;
  transition: width 0.3s ease, left 0.3s ease;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.apply-button:hover::after{
  width: 100%;
}
.submit:hover::after{
  width: 100%;
}
.apply.mobile{
  display: none;
}
.hamburger {
  display: flex;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 29px;
  height: 29px;
  cursor: pointer;
}
.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #19181E;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.apply-button.mobile{
  display: none;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -5px);
}
/* End NavBar */

/* Start First Section */
.recruitment{
  padding-top: 200px;
  padding-bottom: 73px;
  position: relative;
}
.heart{
  position: absolute;
  animation: smoothWobble 5s infinite ease;
}
@keyframes smoothWobble {
  0%, 100% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(20deg);
  }
}
.heart_1{
  left: 0;
  bottom: 0;
  width: 119px;
}
.heart_2{
  width: 119px;
  left: 35%;
  top: 50px;
}
.heart_3{
  bottom: 0;
  right: 0;
  width: 61px;
}
.heart_4{
  bottom: 20vw;
  left: 20vw;
  width: 11px;
}
.heart_5{
  bottom: 24vw;
  right: 0;
  width: 100px;
}
.heart_6{
  top: 0;
  right: 0;
}
.heart_rec_1{
  top: -2%;
  left: 0%;
}
.heart_rec_2{
  right: 0%;
  bottom: 10%;
}
.heart_rec_3{
  bottom: -2vw;
  left: -4vw;
  width: 36px;  
}
.heart_rec_4{
  top: -2vw;
  right: -1vw;
  width: 76px;
}
.heart_rec_5{
  bottom: -2vw;
  right: -1vw;
  width: 26px;
}
.heart_404_4{
  width: 110px;
  height: 95px;
}
.heart_job_1{
  top: 0;
  left: -4%;
  width: 46px;
}
.heart_job_2{
  bottom: 0;
  left: 10%;
}
.heart_job_3{
  bottom: 0;
  right: 0;
}
.container_full{
  width: 95%;
  padding: 0 2rem;
}

.text_main{
  color: var(--accent-color);
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.text_main.center{
  text-align: center;
  margin-bottom: 8px;
}
.main_title{
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
  color: var(--color-text-title);
  margin-bottom: 16px;
}
.main_text{
  font-size: 16px;
  line-height: 20px;
  color: var(--color-text-link);
  font-weight: 400;
  margin-bottom: 20px;
  text-align: center;
}
.text-content .main_text{
  width: 80%;
}
.text_bold{
  font-size: 24px;
  color: var(--color-text-title);
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
}
.text_main{
  font-size: 18px;
}
.main_text.last{
  margin-bottom: 40px;
}
.img_wrapper{
  display: flex;
  justify-content: center;
}
.text-content{
  width: 100%;
  display: flex;
  margin-top: 40px;
  align-items: flex-start;
  flex-direction: column;
}
.link.mobile{
  display: none;
}
.content .item_text{
  margin-bottom: 40px;
}
.cross_line{
  display: none;
}
.image-grid{
  position: relative;
}

.oparator__icon{
  width: 40px;
}
.services{
  padding: 150px 0;
  background: url('../img/second_bg.webp') no-repeat 0 0;
  background-size: cover;
  margin-top: -5px;
  position: relative;
  overflow: hidden;
}
.wrapper_line_services_right{
  position: absolute;
  right: 0;
  bottom: 0;
}
.services_title{
  font-size: 40px;
  color: #fff;
  font-weight: 500;
  line-height: 50px;
  margin-bottom: 8px;
}

.services_text{
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-bottom: 40px;
}
.wrapper__rating{
  display: flex;
  flex-wrap: wrap;
}
.text_rating{
  width: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 27px;
}
.text_rating span{
  background: var(--accent-color);
  padding: 2px 5px;
  border-radius: 10px;
}
.item_title{
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
  color: var(--color-text-link);
  margin-bottom: 12px;
}
.item_text{
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-text-link);
}
.wrapper--title{
  position: relative;
  margin-bottom: 53px;

}
.chat-title{
  font-size: 64px;
  color: var(--color-text-title);
}
.chat-description{
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--color-text-link);
}
.chat-detail-title{
  font-size: 20px;
  color: var(--color-text-link);
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 16px;
}
.wrapper_btn{
  display: flex;
  justify-content: center;
}
.contact{
  background: url("../img/second_bg.webp") no-repeat 0 0;
  background-size: cover;
  padding: 70px 0;
}
.contact__title{
  width: 70%;
}
.wrapper_contact{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact__title{
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
}
.border-radius{
  border-radius: 20px;
}
.chat-operator{
  color: var(--color-btn-text);
  opacity: 0.5;
  font-size: 12px;
}
.link.mobile{
  display: none;
}
.name_operator{
  color: var(--color-btn-text);
  font-size: 16px;
  font-weight: 500;
}
.container_full{
  width: 100%;
  max-width: 1770px;
  margin: 0 auto;
}
.swiper_container{
  position: relative;
}
.swiper-button-prev{
  position: static;
  margin-top: 0;
}
.wrapper_navigation{
  display: flex;
  position: absolute;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.swiper-pagination{
  position: static;
  width: auto !important;
}
.swiper-button-next,
.swiper-button-prev
{
  background: #fff;
  border-radius: 50%;
  position: static;
  margin-top: 0;
  width: 30px;
  height: 30px;
  position: relative;
  box-shadow: 0px 7px 10.5px rgba(0, 0, 0, 0.10);
}
.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 0;
  font-family: none;
}
.swiper-button-next svg, .swiper-button-prev svg{
  width: 6px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: color 0.3s ease;
  color: #0F0F0F
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FB2D83;
}
.swiper-button-next:hover svg, .swiper-button-prev:hover svg{
  color: #FB2D83;
}
.wrapepr_btn{
  display: flex;
  justify-content: center;
  align-items: center;
}
/* End First Section */

/* Start FAQ Section */
.faq-answer {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  position: relative;
}
/* End FAQ Section */

/* Start Footer */
footer{
  background: url('../img/second_bg.webp') no-repeat 0 0;
  background-size: cover;
}
.menu_footer{
  list-style: none;
}
.wrapper_left{
  display: flex;
  justify-content: space-between;
}
.footer{
  padding-top: 80px;
}
.footer_text span{
  font-weight: 600;
  color: var(--accent-color);
}
.right_footer{
  display: flex;
  gap: 252px;
}
.link_footer{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.menu_footer li{
  margin-bottom: 24px;
}
.wraper_footer_logo{
  max-width: 178px;
}
.pathers{
  opacity: 0.7;
  transition: opacity .3s ease;
}
.pathers:hover{
  opacity: 1;
}
.link_footer::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: width .2s ease-in-out;
}
.link_footer:hover::after{
  width: 100%;
}
.link_footer.last{
  margin-bottom: 0;
}
.footer_title{
  font-size: 24px;
  color: var(--color-text-title);
  font-weight:600;
  margin-bottom: 2px;
}
.footer_text{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 23px;
}
.social_link{
  display: block;
  background: rgb(49,46,57);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  position: relative;
  margin-top: 40px; 
}
.social_link:hover .social_svg{
  color: var(--accent-color);
}
.social_svg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;  
  transition: color .3s ease;
}
.wrapper_footer{
  margin-bottom: 60px;
}
.menu_footer li:last-child{
  margin-bottom: 0;
}
.slider{
  padding-top: 120px;
  position: relative;
  background-color: rgb(247,251,255);
}
.border_bottom{
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, .2);
}
.slider__title{
  text-align: center;
  font-size: 40px;
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 8px;
}
.slider_text{
  text-align: center;
  max-width: 900px;
  margin-bottom: 80px;
}
.p-60{
  padding-top: 150px;
}
.wrapper_services_text{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vacancy__wrapper{
  display: flex;
  gap: 90px;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}
.wrapper_lady{
  max-width: 435px;
}
.vacancy_left{
  width:60%;
}
.vacancy_left.width-100{
  width: 50%;
}
.img_first{
  margin-top: auto;
  align-self: flex-end;
  margin-bottom: -20px;
}
.heart{
  position: absolute;
}
.contact{
  margin-top: -25px;
  position: relative;

z-index: 2;}
.wrapper_lady{
  position: relative;
}
.heart-1{
  width: 45px;
  top: 60px;
  left: -15px;
}
.none_margin{
  margin-bottom: -8px;
}
.heart-2{
  width: 25px;
  left: 40px;
}
.heart-3{
  width: 45px;
  top: 160px;
}
.heart-4{
  width: 25px;
  bottom: 150px;
}
.heart-5{
  width: 30px;
  bottom: 20px;
}
.heart-6{
  width: 40px;
  right: 0;
  top: 20px;
}
.heart-7{
  width: 42px;
  right: 20px;
  top: 100px;
}
.heart-8{
  width: 40px;
  top: 200px;
  right: 10px;
}
.heart-9{
  width: 45px;
  bottom: 90px;
  right: -40px;
}
.heart-10{
  width: 45px;
  bottom: 40px;
  right: -40px;
}
.line_right__services{
  position: absolute;
  right: 0;
  top: 20%;
}
.vacansy__item{
  padding: 20px 24px;
  padding-top: 20px;
  padding-bottom: 12px;
  padding-left: 45px;
  padding-right: 24px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border-radius: 20px;
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  position: relative;
}
.vacansy__item.last{
  margin-bottom: 0;
}
.vacansy__item:hover{
  background-color: #fff;
  box-shadow: 0px 0px 17.6px 0px rgba(0, 0, 0, 0.10);
}
.card-black{
  background: #332C2F;
}
.card{
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
}
.card-pink{
  background: var(--accent-color);
}
.vacansy_second__title{
  margin-bottom: 36px;
  font-size: 24px;
  font-style: italic;
  font-weight: 600;
  margin-left: 18px;
}
.card{
  display: inline-block;
  position: relative;
  padding: 20px 27px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.8s ease, transform 0.8s ease; 
}
.card-container{
  margin-top: 60px;
  margin-bottom: 100px;
}
.card-black{
  transform: rotate(355deg) translateX(-100px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.card-pink{
  margin-left: 100px;
  transform: rotate(2deg) translateX(100px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
.card-black.visible {
  transform: rotate(355deg) translateX(0);
  opacity: 1;
}
.card-pink.visible {
  transform: rotate(2deg) translateX(0);
  opacity: 1;
}
.svg-text {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 16px;
}
.arrow path {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1s ease;
}
.arrow {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.arrow-1{
  position: absolute;
  bottom: -69px;
  left: 0;
}
.arrow-2{
  position: absolute;
  right: -69px;
  bottom: -2px;
}
.arrow-1.visible, .arrow-2.visible {
  opacity: 1;
}

.arrow-1.visible path, .arrow-2.visible path {
  stroke-dashoffset: 0;
}
.line__mobile__services{
  display: none;
}
.vacansy_second__title{
  margin-left: 24px;
}
.vacansy__item::before{
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url("../img/heart.svg") no-repeat 0 0;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
}
/* End Footer */
.copy_text{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.copyright{
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.error_title{
  text-align: center;
  font-size: 160px;
  color: var(--color-text-link);
}
.error_description{
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-link);
  text-align: center;
  margin-bottom: 40px;
}
.wrappper_bread{
  display: flex;
  align-items: center;
  gap: 4px;
}
.error_page{
  padding-top: 172px;
  padding-bottom: 50px;
}
.privacy{
  padding-top: 134px;
  padding-bottom: 160px;
}
.bottom_left_faq_mobile{
  display: none;
}
.slider_text.center{
  text-align: center;
}
.privacy_title{
  font-size: 48px;
  margin-top: 60px;
  margin-bottom: 16px;
}
.agency{
  padding: 100px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgb(247,251,255);
}
.agency_wrapper{
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.agency_wrapper__text{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.agency_icon{
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.agency_item{
  width: 33.3%;
}
.agency__title{
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #0D0A0B;
}
.agency_text{
  color: #3D3B3C;
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
}
.privacy_text{
  color: var(--color-text-link);
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
  margin-bottom: 40px;
}
.privacy_link{
  text-decoration: underline;
  font-style: italic;
  color: #2245FF;
}
.link_privacy{
  text-decoration: underline;
  color: #2245FF;
}
.title_privacy_second{
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-text-link);
}
.animated-text{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scroll-animated-text{
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scroll-animated-text.visible {
  opacity: 1;
  transform: translateY(0);
}
.tabs-container {
  display: flex;
  gap: 20px;
}
.tab {
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 40px;
  font-size: 24px;
  font-weight: 600;
  line-height: 31px;
  cursor: pointer;
  color: #ffffff;
}
.tab-black {
  background-color: #332C2F;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  width: 50%;
}
.left_sevices{
  width: 60%;
}
.wrapper_grid picture{
  width: 50%;
}
.tab-pink {
  background-color: #FF4F69;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  width: 50%;
}

.tab-content {
  color: #ffffff;
  padding-bottom: 0;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 40px;
  display: flex;
}
.tab-content p{
  max-width: 270px;
  margin-bottom: 75px;
}
.tab.open .tab-content {
  display: flex;
  animation: slideDown 0.3s ease;
  max-height: 500px;
}
.toggle-icon{
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.tab-header .toggle-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.toggle-icon::before,
.toggle-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: transform 0.3s ease;
    transform-origin: center;
}
.toggle-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.tab.open .toggle-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}
.tab img {
    position: absolute;
    top: 0;
    right: 50px;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 202px;
    z-index: -1;
    transform: scale(1.1);
}
.tab.open img {
  opacity: 1;
  transform: scale(1);
}
.our_vacancy{
  padding: 100px 0;
  position: relative;
  background-color: rgb(247,251,255);
}
.our_vacancy__wrapper{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.swiper-pagination-2 .swiper-pagination-bullet{
  background-color: #D9D9D9;
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active
{
  background-color: var(--accent-color);
}
.tabs-container{
  width: 100%;
}
.tab .none_height{
  height: auto;
}
.experience{
  background: url('../img/second_bg.webp') no-repeat 0 0;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}
.experience .slider__title
{
  color: #fff;
}
.experience .slider_text{
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
}
.slider_text_main{
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
  font-style: italic;
  margin-bottom: 12px;
}

.wrapper_operator{
  display: flex;
  align-items: center;
  gap: 12px;
}
.img_operator{
  width: 40px;
  height: 40px;
}
.text_operator{
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}
.text_operator span{
  font-weight: 500;
  font-size: 12px;
}
.faq-section{
  padding: 100px 0;
  background-color: rgb(247,251,255);
}
.faq-heading{
  font-size: 40px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
}
.faq-item {
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  transition: padding 0.3s ease;
  padding: 20px 32px;
  margin-bottom: 24px;
}
.list_model{
  list-style-type: disc !important;
  margin-left: 15px;
}
.list_item{
  list-style-type: inherit;
  position: relative;
  margin-bottom: 12px;
}
.list_item.last{
  margin-bottom: 0;
}
.faq-question {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #0D0A0B;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.faq-toggle-icon{
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  transition: transform 0.3s ease;
  right: -15px;
  padding: 10px;
  background-color: #f5f9ff;
}
.navbar.privacy-color{
  background-color: #f5f9ff;
}
.flex_center{
  display: flex;
  justify-content: center;
}
.apply.flex_center{
  display: flex;
}
.faq-toggle-icon::before, .faq-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
  top: 50%;
  left: 0;
  transform-origin: center;
  transition: transform 0.3s ease;
}
.faq-toggle-icon::before {
  transform: rotate(0deg);
}
.faq-toggle-icon::after {
  transform: rotate(90deg);
}
.faq-item.active .faq-toggle-icon::before {
  transform: rotate(0deg);
}
.faq-item.active .faq-toggle-icon::after {
  transform: rotate(0deg);
}
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 20px;
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  position: relative;
}
.faq-answer p {
  font-size: 16px;
  line-height: 140%;
  font-weight: 400;
  color: var(--color-text-link);
}
.faq-heading{
  margin-bottom: 40px;
}
@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.heart_404_1{
  top: 20%;
  left: 10%;
}
.heart_404_2{
  bottom: 0;
  left: 14%
}
.grid_mobile{
  display: none;
}
.heart_404_3{
  top: 5%;
  left: 0;
}
.heart_404_4{
  right: 0;
  top: 2%;
}
.heart_404_5{
  top: 0;
  left: 50%;
}
.heart_404_6{
  bottom: 0;
  right: 0;
}

/* Pop Up Start */
.popup-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.popup-form, .popup-success {
  max-width: 100%;
  max-height: 100%;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 200;
  padding: 40px 60px;
}
.contact_form{
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.popup-form {
  max-height: 90vh;
  overflow-y: auto;
  width: 570px;
  z-index: 200;
  border-radius: 40px;
}
.form_title{
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text-link);
  text-align: center;
  margin-bottom: 5px;
  line-height: 52px;
}
.form_description{
  color: var(--color-text-link);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 22px;
}
.label{
  font-size: 12px;
  color: var(--color-text-link);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.input{
  background-color: #F6F9FF;
  display: block;
  padding: 12px 20px;
  border: 0;
  width: 100%;
  font-size: 14px;
  color: var(--color-text-link);
  border-radius: 10px;
}
.popup-form {
  width: 570px;
  border-radius: 20px;
}
.apply-button.w-auto{
  width: auto;
}
.popup-success {
  width: 690px;
}
.submit.w-100{
  width: 100%;
}
.popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 24px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup-close::before {
  content: '\00d7'; /* Символ хрестика */
  font-size: 36px;
  cursor: pointer;
}
.disclaimer{
  color: #80828D;
  font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  font-style: italic;
}
.semi_bold{
  font-weight: 400;
}
.error-message{
  display: none;
  color: #FF4747;
  font-size: 12px;
  margin-top: 5px;
  text-align: right;
}
.wrapper__error__main{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}
.wrapper_error .apply-button{
  width: 100%;
}
.wrapper_error{
  width: 45%;
}
.input-error {
  outline: 1px solid #FF4747;
}
.input.error + .error {
  display: block;
}
.popup-overlay {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom-select {
  position: relative;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
  color: var(--color-text-link);
}
.select-header {
  width: 100%;
  background-color: #f6f9ff;
  padding: 12px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: rgb(25, 24, 30, 0.5);
  font-weight: 500;
  transition: border-color 0.3s;
  font-family: 'Montserrat';
}

.select-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  right: 20px;
  width: 20px;
  transition: transform 0.3s ease-in-out;
}
.select-header.active .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}
.select-header img {
  z-index: 10;
  pointer-events: none;
}
.select-options {
  display: block;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  list-style: none;
  background-color: #fff;
  border-radius: 10px;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
  z-index: 10;
}
.selected-text{
  font: 14px/18px 'Montserrat', sans-serif;
}
.select-options li {
  padding: 8px 20px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 14px;
  color: rgb(25, 24, 30, 0.5);
  font-weight: 400;
}
.select-options.show {
  max-height: 200px;
  opacity: 1;
  padding: 10px 0;
}
.select-options li:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.popup-overlay.show {
  display: flex;
  opacity: 1;
}
.popup-form, .popup-success {
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.popup-overlay.show .popup-form,
.popup-overlay.show .popup-success {
    transform: scale(1);
}
footer .apply-button{
  position: relative;
  z-index: 0;
}
/* Pop Up End */
/* Start Media style */
@media (min-width: 1440px){
  .img_first{
    margin-bottom: -40px;
  }
}
@media (max-width: 1440px){
  .container{
    max-width: 1170px;
    width: 100%;
  }
  .menu ul{
    gap: 30px;
  }

  .recruitment{
    padding-top: 180px;
  }
  .wrapper_footer{
    gap: 170px;
  }
  .right_footer{
    gap: 115px;
  }
  .privacy{
    padding-top: 135px;
    padding-bottom: 147px;
  }

}

@media (max-width: 1230px) {
  .container{
    padding: 0 40px;
  }
  .hamburger {
    display: flex;
  }
  .menu_nav {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    border-top: 1px solid rgba(25, 24, 30, 0.10);
    z-index: 1000;
    transform: translateY(-125%);
    transition: all .3s;
    background-color: #f6faff;
    background-size: cover;
    align-items: flex-start;
    overflow-y: hidden;
    padding: 60px 40px;
  }
  .menu ul{
    padding: 60px 40px;
  }
  .apply{
    display: none;
  }
  .apply.mobile{
    display: block;
    color: var(--color-btn-text);
  }
  .menu_nav.show {
    display: flex;
    justify-content: flex-start;
    transform: translateY(0);
    top: 74px;
  }
  .heart_rec_2{
      display: none;
  }
  .content{
    grid-template-columns: 1fr;
    row-gap: 29px;
    justify-items: center;
  }
  .image-grid{
    max-width: 560px;
  }
  .number{
    font-size: 72px;
  }
  .recruitment{
    padding-top: 150px
  }
  .recruitment_social{
    display: none;
  }
  .wrapper_svg.mobile{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .chat-title{
    font-size: 48px;
  }
  .heart_rec_1{
    display: none;
  }
  .heart_rec_3 {
    bottom: -4vw;
    left: 0vw;
  }
  .heart_rec_4{
   display: none;
  }
  .heart_rec_5{
    bottom: 112px;
    right: 54px;
  }
  .apply.block{
    display: block;
  }
  .wrapper_contact{
    flex-direction: column;
    gap: 40px;
  }
  .contact__title{
    text-align: center;
  }
  .vacancy__wrapper{
    gap: 40px;
  }
  .card-container{
    margin-bottom: 10px;
  }
  .card-container{
    margin-top: 10px;
  }
  .wrapper_line_services_top{
    height: 0px;
    top: auto;
    bottom: -100px;

  }
  .wrapper_line_services_top .img{
    height: 500px;
  }
}
@media(max-width:1163px){
  .image-grid{
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .wrapper_footer{
    gap: 0;
  }
  .right_footer{
    gap: 50px;
  }
  .heart_rec_3{
    display: none;
  }
  .heart_5{
    top: 0;
    right: 0;
  }
  .heart_4{
    left: 20%;
    top: auto;
    bottom: 0;
  }
  .img_first{
    width: 100%;
  }
  .heart_6{
   display: none;
  }
  .heart_rec_2{
    bottom: -6%;
  }
  .heart_job_1{
    top: -3%;
    left: 2%;
  }
  .wrapper_grid{
    flex-direction: column-reverse;
    align-items: center;
    gap: 80px;
  }
  .services{
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .wrapper_grid picture{
    max-width: 600px;
  }
  .text-content{
    justify-content: center;
    align-items: center;
  }
  .vacancy__wrapper.flex-revese{
    margin-top: 70px;
  }
  .content .item_text{
    text-align: center;
  }
  .main_title{
    text-align: center;
  }
  .line_right__services{
    display: none;
  }
  .line__mobile__services{
    display: block;
  }
  .line_right__services{
    display: none;
  }
  .line__mobile__services{
    position: absolute;
    right: 0;
    top: 0;
  }
  .slider{
    padding-top: 80px;
  }
  .slider_text{
    margin-bottom: 40px;
  }
  .p-60{
    padding-top: 85px;
  }
  .vacancy__wrapper{
    margin-top: 0;
  }
  .our_vacancy__wrapper{
    flex-direction: column;
    gap: 40px;
  }
  .tabs-container{
    width: 100%;
  }
  .our_vacancy__item{
    width: 100%;
  }
 
  .our_vacancy{
    padding: 80px 0;
  }
}
@media(max-width: 1000px){
  .vacancy__wrapper{
    flex-direction: column;
    align-items: center;
  }
  .vacansy_second__title{
    margin-bottom: 24px;
  }
  .vacancy__wrapper.flex-revese{
    flex-direction: column-reverse;
    align-items: center;
  }
  .vacancy__wrapper.flex-revese{
    margin-top: 60px;
  }
  .faq-section{
    padding: 80px 0;
  }
}
@media(max-width:841px) {
  .grid_mobile{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
  }
  .wraper_footer_logo {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    gap: 10px;
  }
  .grid_mobile.small{
    display: none;
  }
  .wrapper_left{
    display: none;
  }
  .contact__title{
    width: 100%;
  }
  .right_btn_footer{
    grid-column: 1 / 2;
    grid-row: 2 / 2;
    text-align: left;
  }
  .bottom_left_faq_mobile{
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .left_menu{
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .link.mobile{
    display: block;
  }
  .experience{
    padding-top: 80px;
  }
  .right_menu{
    grid-column: 2 / 2;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-self: end;
  }
  .footer_text{
    margin-top: 16px;
  }
  .social_link_wrapper{
    margin-bottom: 60px;
  }
  .footer{
    padding-top: 60px;
  }
  .first__line{
    background: url('../img/right_tablet.svg') right top no-repeat;
    width: 200px;
    height: 300px;
  }
  .wrapper_line_services_top{
    top: auto;
    bottom: 0;
    height: 300px;  
  }
  .menu_footer{
    margin-right: 57px;
  }
  .wrapper_footer{
    margin-bottom: 0;
  }
  .grid_mobile{
    margin-bottom: 60px;
  }
}
@media(max-width:960px){

  .wrapper_left{
    flex-direction: row;
    justify-content: flex-start;
    justify-content: space-between;
  }
  .right_footer{
    justify-content: flex-start;
  }
  .link_footer.last{
    margin-bottom: 0;
  }
  .menu_footer li:last-child{
    margin-bottom: 0;
  }
  .error_page{
    padding-top: 180px;
    padding-bottom: 50px;
  }
  .error_title{
    font-size: 160px;
  }
  .error_description{
    font-size: 24px;
    margin-bottom: 40px;
  }
  .menu_nav{
    top:56px;
  }
  .message_icon_first{
    top: 11vw;
  }
  .services_text{
    margin-bottom: 32px;
  }
  .agency{
    padding: 80px 0;
  }
  .agency_wrapper{
    flex-wrap: wrap;
  }
  .agency_item{
    width: 48%;
  }
  .agency_item.last{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 769px) {
  .container{
    padding: 0 33px;
  }
  .recruitment{
    padding-top: 137px;
  }
  .image-grid{
    width:100%;
  }
  .navbar{
    padding: 13px 0;
  }
  .main_title{
    margin-bottom: 24px;
    text-align: center;
  }
  
  .main_text.last{
    margin-bottom: 32px; 
  }
  .recruitment{
    padding-bottom: 80px;
  }
  .services_title{
    font-size: 40px;
    margin-bottom: 1 6px;
  }
  .services_text{
    font-size: 16px;
    line-height: 120%;
  }
  .copyright{
    padding: 16px 0;
  }
  .message_icon_first{
    top: 38vw;
  }
  .privacy{
    padding-top: 135px;
    padding-bottom: 120px;
  }
  .privacy_title{
    font-size: 32px;
  }
  .agency{
    padding: 60px 0;
  }
  .agency_item{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .title_privacy_second{
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
  }
  .privacy_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
}
@media (max-width: 730px) {
  .main_title{
    font-size: 40px;
    line-height: 50px;
    text-align: center;
  }
  .text-content .main_text{
    text-align: left;
  }
  .text-content .apply-button{
    align-self: center;
  }
  .text-content{

    align-items: flex-start;
  }
  .text_bold{
    text-align: left;
  }
  .heart_404_1{
    top: 0;
    left: 25%;
  }
  .heart_rec_2{
    display: none;
  }
  .text_bold{
    font-size: 16px;
    line-height: 20px;
  }
  .heart_5{
    top: 50vw;
  }
  .heart_6{
    bottom: auto;
    top: 2vw;
    width: 20px;
  }
  .text-content .main_text{
    width: 100%;
  }
  .text_main.center{
    text-align: left;
  }
  .our_vacancy{
    padding: 60px 0;
  }
}
@media (max-width: 672px) {
  .contact__title{
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
  }
  .contact{
    padding: 60px 0;
  }
  .tab-black{
    border-bottom-left-radius: 25px;
    border-top-right-radius: 25px;
  }
  .tab-pink{
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
  }
  .number{
    font-size: 36px;
    line-height: 38px;
  }
  .text_main{
    font-size: 16px;
    line-height: 20px;
  }
  .number_text{
    font-size: 18px;
    line-height: 21px;
  }
  .services_title{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 6px;
  }
  .card-container{
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .services_text{
    font-size: 14px;
    line-height: 20px;
  }
  .our_vacancy__wrapper{
    gap: 24px;
  }
  .wrapper--title{
    margin-bottom: 40px;
  }
  .container_full{
    padding: 0px 20px;
  }
  .our_vacancy .slider__title{
    margin-bottom: 0;
  }
  .main_title{
    font-size: 36px;
    line-height: 42px;
  }
  .grid_mobile.small{
    display: block;
  }
  .grid_mobile.tablet{
    display: none;  
  }
  .social_link_wrapper{
    display: flex;
    justify-content: center;
  }
  .menu_footer li{
    text-align: left;
  }
  .title_graph{
    padding-left: 16px;
  }
  .total{
    font-size: 14px;
  }
  .text_main{
    font-size: 16px;
  }
  .item_title{
    margin-bottom: 8px;
  }
  .faq-section{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .grid_mobile{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }
  .tab-header{
    padding: 16px 24px;
  }
  .tab-header p{
    font-size: 16px;
    line-height: 21px;
  }
  .tab-content p{
    font-size: 14px;
    line-height: 20px;
  }
  .tab img{
    display: none;
  }
  .tab-content p{
    max-width: 100%;
  }
  .tab-content p{
    margin-bottom: 30px;
  }
  .tab.open .tab-content{
    padding: 0 15px;
  }
  .heart-3 {
    left: -9px;
  }
  .tab-header{
    padding-left: 25px;
    padding-right: 25px;
  }
  .tabs-container{  
    gap: 10px;
  }
  .faq-heading{
    font-size: 24px;
  }
  .services{
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .line__mobile__services{
    display: none;
  }
  .wrapper_grid{
    gap: 36px;
  }
  .experience{
    padding-top: 60px;
  }
  .wrapper__rating{
    flex-direction: column;
  }
  .text_rating{
    margin-bottom: 24px;
    width: 100%;
  }
  .wrapper_line_services_right{
    display: none;
  }
  .img_first{
    width: 100%;
  }
  .slider{
    padding-top: 60px;
  }
  .slider__title{
    font-size: 24px;
    line-height: 120%;
  }
  .slider_text{
    font-size: 14px;
    line-height: 130%;
  }
  .card-black{
    transform: rotate(0deg);
  }
  .card-pink{
    transform: rotate(0deg);
  }
  .vacansy_second__title{
    font-size: 16px;
    margin-bottom: 10px;
  } 
  .card-black.visible{
    transform: rotate(0deg) translateX(0);
  }
  .card-black.visible{
    transform: rotate(0deg) translateX(0);
  }
  .card-pink.visible{
    transform: rotate(0deg) translateX(0);
  }
  .heart-5{
    display: none;
  }
  .vacancy__wrapper.flex-revese{
    margin-top: 40px;
  }
  .card-container{
    margin-top: 40px;
  }
  .vacansy__item{
    font-size: 14px;
    line-height: 120%;
    padding-right: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 400;
  }
  .wraper_footer_logo, .right_btn_footer, .left_menu, .right_menu{
    width: 100%;
    justify-content: center;
  }
  .right_btn_footer{
    order: 3;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  .footer_text{
    text-align: center;
  }
  .text_main.center{
    text-align: center;
  }
  .heart_rec_1{
    width: 40px;
    left: auto;
  }
  .wrapper_line__top{
    display: none;
  }
  .heart_job_1{
    width: 30px;
    height: auto;
  }
  .menu_footer{
    margin-right: 0;
  }
  .footer{
    padding-top: 20px;
  }
  .recruitment{
    padding-bottom: 80px;
  }
  .img_wrapper{
    width: 420px;
  }
  .social_link{
    margin-top: 30px;
  }
  .social_link_wrapper{
    margin-bottom: 30px;
  }
  .menu_footer{
    margin-bottom: 40px;
  }
  .footer_text{
    margin-bottom: 16px;
    margin-top: 0;
  }
  .image-grid{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media (max-width: 525px) {
  .container{
    padding: 0 15px;
  }
  .navbar{
    padding: 5px 0;
  }
  .recruitment{
    padding-top: 120px;
  }
  .img_first{
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .main_title{
    font-size: 32px;
    line-height: 38px;
  }
  .main_text{
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 23px;
  }

  .menu_nav.show{
    top: 55px;
  }
  .heart-3{
    top: 130px;
    left: -9px;
  }
  .heart-4 {
    width: 25px;
    bottom: 117px;
    left: -7px;
  }
  .heart-8{
    right: -10px;
    top: 150px;
  }
  .heart-9{
    width: 45px;
    bottom: 173px;
    right: -12px;
  }
  .heart-10{
    right: -24px;
  }
.text-content .main_text{
  font-size: 14px;
  line-height: 19px;
}
  .heart_4{
    width: 20px;
    left: auto;
    right: 20px;
    bottom: -10vw;
  }
  .heart_5{
    display: none;
  }
  .heart_6{
    bottom: 32%;
    right: 10%;
  }
  .wrapper_footer{
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }
  .footer_title{
    text-align: center;
  }
  .menu_footer{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .right_footer{
    flex-direction: column;
    gap: 56px;
  }
  .wrapper_left{
    gap: 35px;
  }
  .img_wrapper{
    width: auto;
  }
  .wrapper_footer{
    padding-top: 0;
  }
  .copyright{
   padding: 16px 0;
  }
  .error_page{
    height: 100vh;
    padding-top: 140px;
  }
  .footer_btn{
    display: flex;
    justify-content: center;
  }
  .bottom_left_faq_mobile{
    display: none;  
  }
  .wrapper_footer{
    margin-bottom: 40px;
  }
  .error_title{
    font-size: 120px;
    font-weight: 700;
  }
  .wrapper_line_services_top{
    top: auto;
    bottom: 0;
    height: 500px;
    display: none;
  }
  .grid_mobile{
    margin-bottom: 40px;
  }
  .error_description{
    font-size: 20px;
    margin-bottom: 40px;
  }
  .privacy{
    padding-top: 90px;
    padding-bottom: 80px;
  }
  .privacy_title{
    font-size: 24px;
    margin-bottom: 12px;
  }
  .title_privacy_second{
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    margin-bottom: 4px;
    line-height: 28px;
  }
  .privacy_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 40px;
  }
  .popup-form{
    padding: 60px 15px;
  }
  .message_icon_first{
    top: 32vw;
  }
  .heart_job_2{    
    bottom: 2%;
    left: 10%;
  }
  .heart_job_3{
    bottom: -4%;
    right: 11px;
  }
  .heart_2{
    top: 0;
  }
  .heart_3{
    bottom: -20px;
  }
  .heart_rec_1{
    top: -10vw;
    left: 5vw;
    width: 30px;
  }
  .heart_404_1,.heart_404_2,.heart_404_3,.heart_404_4,.heart_404_4,.heart_404_5,.heart_404_6{
    display: none;
  }
  @media (max-width: 480px){
    .card{
      max-width: 250px;
    }
  }
}
/* End Media style */