:root{
  --color-text-link: #19181E;
  --color-text-title: #1F2327;
  --bgc-btn: #00A6E6;
  --color-btn-text: #fff;
  --hover-btn: #0687ba;
}
*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  max-width: 100%;
}
button{
  cursor: pointer;
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  height: auto;
}
a{
  text-transform: none;
  text-decoration: none;
  transition: color 0.3s ease;
}
.container{
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
}
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  background-color:#E5EFFE;
  overflow-x: hidden;
}
main{
  position: relative;
  z-index: 1;
}

/*Start NavBar */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #E5EFFE;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 999;
  padding: 27px 0;
}
.navbar.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}
.wrapper_nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wrapper_navigation{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.menu_nav li{
  display: inline;
}
.logo{
  height: 54px;
  width: auto;
}
.menu ul{
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 40px;
}
.link{
  color: var(--color-text-link);
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  position: relative;
}
.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%;
}
.apply-button{
  background-color: var(--bgc-btn);
  color: var(--color-btn-text);
  text-transform: uppercase;
  font-weight: 700;
  padding: 17px 30px;
  border-radius: 10px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: inline-block;
  width: 223px;
  display: flex;
  justify-content: center;
}
.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: 99px;
}
.container_full{
  width: 95%;
  padding: 0 2rem;
}
.image-grid .model{
  margin-bottom: -5px;
}
.content{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.main_title{
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: var(--color-text-title);
  margin-bottom: 50px;
}
.partherns{
  background: url("../img/bg-second2.webp");
  padding: 180px 0;
}
.model_second{
  width: 500px;
}
.parther_wrapper{
  display: flex;
  align-items: center;
}
.parthert_left{
  width: 60%;
}
.parthers_right{
  width: 50%;
}
.section-subtitle{
  color: var(--color-btn-text);
  font-size: 40px;
}
.partherns h3{
  text-align: left;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
.parthers_text{
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 35px;
}
.parthers_grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.apply-button.w-100{
  width: auto;
}
.link_privacy__main{
  text-decoration: underline;
}
.parthers_item{
  background: #1d3c56;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  border-radius: 20px;
}
.parthers_number{
  font-size: 48px;
  line-height: 58px;
  font-weight: 700;
  color: var(--bgc-btn);
  letter-spacing: -1px;
}
.parthers_text__number{
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-btn-text);
}
.highlight{
  color: var(--color-btn-text);
  background-color: var(--bgc-btn);
  margin-top: 10px;
  font-style: italic;
  font-weight: 700;
  padding: 5px;
}
.main_text{
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  color: var(--color-text-link);
  font-weight: 500;
  margin-bottom: 30px;
}
.main_text.last{
  margin-bottom: 60px;
}
.text-content{
  width: 75%;
}
.text-content h1{
  width: 90%;
}
.bold{
  font-style: italic;
  font-weight: 700;
}
.link.mobile{
  display: none;
}
.cross_line{
  display: none;
}

.services{
  padding: 120px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.services_title{
  font-size: 40px;
  color: var(--color-text-title);
  font-weight: 700;
  line-height: 52px;
  text-align: center;
  margin-bottom: 16px;
}
.services_text{
  font-size: 18px;
  line-height: 24px;
  color: var(--color-text-link);
  font-weight: 500;
  text-align: center;
  margin-bottom: 60px;
  width: 970px;
}

.warpper__services__title{
  display: flex;
  justify-content: center;
}
.warpper__services__title h2{
  width: 70%;
}
.icon{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.opportunities_text{
  font-size: 20px;
  color: var(--color-text-link);
  font-weight: 500;
  line-height: 25px;
}
.model{
  width: 460px;
}

.apply.flex{
  display: flex;
  align-items: center;
}
.line_right{
  padding-right: 16px;
}
.sum{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--color-text-title);
}
.border{
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.chat-section{
  position: relative;
}


.message_icon_first{
  max-width: 201px;
  position: absolute;
  top: 15vw;
  left: 0;
}
.message_icon_second{
  max-width: 124px;
  position: absolute;
  right: 3vw;
  top: 9vw;
}
.chat-detail-title{
  font-size: 20px;
  color: var(--color-text-link);
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 16px;
}
.chat-section .warpper__services__title{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.highlight_second{
  color: var(--bgc-btn);
}
.chat-detail-list>li{
  margin-bottom: 12px;
}
.chat-detail-list .last{
  margin-bottom: 0;
}
.chat-detail-list li::before {
    content: '';
    background-image: url('/img/Polygon\ 1.svg');
    background-size: contain;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
.dream__wrapper{
  display: flex;
  gap: 30px;
}
.dream__item{
  width: 33.3%;
}
.dream__text{
  font-size: 16px;
  line-height: 23px;
  font-weight: 500;
  color: var(--color-text-link);
  margin-bottom: 24px;
}
.dream__wraper__icon{
  display: flex;
  align-items: center;
  gap: 16px;
}
.dream__operator_name{
  color: var(--color-text-title);
  opacity: .5;
  font-size: 12px;
  font-weight: 500;
}
.dream_opearator_vacansies{
  font-size: 16px;
  color: var(--color-text-title);
  letter-spacing: 0.32px;
  font-weight: 600;
}
.dream__icon{
  width: 60px;
}
.wrapper_btn{
  display: flex;
  justify-content: center;
}
.chat-operator{
  color: var(--color-text-title);
  opacity: 0.5;
  font-size: 12px;
}
.name_operator{
  color: var(--color-text-title);
  font-size: 16px;
  font-weight: 500;
}

/* End First Section */

/* Start FAQ Section */
.container.small{
  max-width: 990px;

}
.faq-section {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding:160px 0;
}
.faq-heading {
  text-align: center;
  margin-bottom: 60px;
  font-size: 48px;
  color: var(--color-text-title);
  font-weight: 700;
  line-height: 58px;
}

.faq-item {
  margin-bottom: 10px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ffffff;
  transition: padding 0.3s ease;
  padding: 20px 32px;
  margin-bottom: 24px;
}

.faq-question {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-title);
  line-height: 25px;
  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;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--color-text-title);
  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 {
  transform: rotate(45deg);
}

.faq-item.active .faq-toggle-icon::before {
  transform: rotate(-45deg);
}

.faq-item.active .faq-toggle-icon::after {
  transform: rotate(-45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  position: relative;
}
.faq-answer p{
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  color: var(--color-text-link);
}
.wrapper_main__chat{
  padding: 120px 0;
}
.wrapper_main__chat{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-item.active .faq-answer {
  max-height: 200px; 
  opacity: 1;
  margin-top: 27px;
}
.wrapper_icon{
  display: none;
}
.wrappper_bread{
  display: flex;
  align-items: center;
  color: var(--color-text-link);
  text-transform: uppercase;
  line-height: 20px;
  font-size: 12px;
  margin-bottom: 56px;
}
.height{
  padding-top: 92px;
}
.height_left{
  width: 50%;
}
.height_right{
  width: 62%;
  margin-top: 50px;
}
.money__icon{
  max-width: 50px;
}
.height__wrapper{
  display: flex;
  gap: 50px;
}
.wrapper_icon__main{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.height_small__wrapper{
  display: flex;
  gap: 30px;
  align-items: center;
}
.height__title{
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  color: var(--color-text-title);
  margin-bottom: 16px;
}
.height__text{
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: var(--color-text-link);
  margin-bottom: 60px;
}
.height___main_text{
  font-size: 14px;
  color: var(--color-text-title);
  font-weight: 400;
  line-height: 18px;
}
.height__icon svg{
  width: 100px;
}
.now{
  padding: 90px 0;
  background: url("../img/bg-second2.webp");
}
.now__wrapper{
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.now__title{
  font-size: 40px;
  color: #fff;
  line-height: 52px;
  text-align: center;
}
.model_third{
  margin-bottom: -5px;
}
.now__text{
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 25px;
  margin-bottom: 24px;
}
.bold_height{
  font-size: 16px;
  font-weight: 700;
  line-height: 23px;
}
/* End FAQ Section */

/* Start Footer */
footer{
  background: url("../img/bg-second2.webp") no-repeat center;
  background-size: cover;
}
.menu_footer{
  list-style: none;
}
.wrapper_footer{
  display: flex;
  justify-content: space-between;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 60px;
}
.wrapper_left{
  display: flex;
  gap: 150px;
}
.right_footer{
  display: flex;
  gap: 100px;
}
.link_footer{
  color: var(--color-btn-text);
  font-size: 16px;
  font-weight: 500;
  position: relative;
}
.menu_footer li{
  margin-bottom: 24px;
}
.link_footer::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: var(--color-btn-text);
  transition: width .2s ease-in-out;
}
.link_footer:hover::after{
  width: 100%;
}
.link_footer.last{
  margin-bottom: 0;
}
.footer_title{
  font-size: 20px;
  color: var(--color-btn-text);
  font-weight: 700;
  margin-bottom: 4px;
}
.footer_text{
  color: var(--color-btn-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  margin-bottom: 23px;
}
/* End Footer */
.copy_text{
  color: var(--color-btn-text);
  font-size: 16px;
  color: var(--color-btn-text);
  font-weight: 500;
  text-align: center;
}

.copyright{
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255, 0.2);
}
.error_title{
  text-align: center;
  font-size: 300px;
  color: #00A6E6;
}
.error_description{
  font-size: 64px;
  font-weight: 700;
  color: var(--color-text-link);
  text-align: center;
  margin-bottom: 40px;
}

.error_page{
  padding-top: 172px;
  padding-bottom: 273px;
}
.privacy{
  padding-top: 134px;
  padding-bottom: 160px;
}
.privacy__nav{
  display: none !important;
}
.privacy_title{
  font-size: 48px;
  margin-bottom: 16px;
}
.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;
}
.wraper_footer_logo{
  width: 77px;
}
.link_privacy{
  text-decoration: underline;
  color: #2245FF;
}
.title_privacy_second{
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-text-link);
}
.swing {
  animation: swing 3s ease-in-out infinite alternate;
  transform-origin: center bottom;
}
/* 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: #00A6E6;
  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 */

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.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);
}

.cases {
    padding: 64px 20px;
    background: #eef4ff;
  }

  .cases-head {
    max-width: 920px;
    margin: 0 auto 28px;
    text-align: center;
  }

  .cases-head h2 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
  }

  .cases-head p {
    color: #354356;
    font-size: clamp(14px, 1.4vw, 18px);
  }

  .cases-wrap {
    max-width: 1160px;
    margin: 24px auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
  }

  .cases-nav {
    appearance: none;
    border: 0;
    background: transparent;
    border-radius: 999px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    border: 1px solid  rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform .2s ease;
  }
  .cases-nav svg{
    width: 6px;
    height: 12px;
  }
  .cases-nav:hover { transform: scale(1.1); }

  .swiper-slide,
  .case-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
  }

  .swiper-slide img,
  .case-card img {
    width: 100%;
    height: auto;
    transition: transform .5s ease, filter .4s ease;
  }

  .swiper-slide::after,
  .case-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
    z-index: 1;
  }

  .swiper-slide::before,
  .case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .4s ease;
    pointer-events: none;
    z-index: 2;
  }

  .swiper-slide::before,
  .case-card::before {
    background: no-repeat center/40px 40px url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%220%200%2040%2040%22%20fill%3D%22none%22%3E%0A%20%20%3Cpath%20d%3D%22M15.3333%2019.5H23.6666%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M19.5%2023.6667V15.3333%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M19.1666%2034.9999C27.9111%2034.9999%2035%2027.9111%2035%2019.1666C35%2010.4221%2027.9111%203.33325%2019.1666%203.33325C10.4221%203.33325%203.33331%2010.4221%203.33331%2019.1666C3.33331%2027.9111%2010.4221%2034.9999%2019.1666%2034.9999Z%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%20%20%3Cpath%20d%3D%22M36.6666%2036.6666L33.3333%2033.3333%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%0A%3C%2Fsvg%3E");
  }

  .swiper-slide:hover img,
  .case-card:hover img {
    transform: scale(1.05);
  }

  .swiper-slide:hover::after,
  .case-card:hover::after {
    opacity: 0.5;
    background: #000;
  }

  .swiper-slide:hover::before,
  .case-card:hover::before {
    opacity: 1;
  }

  /* Lightbox */
  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease, visibility .5s ease;
    z-index: 1001;
  }

  .lightbox-open .navbar {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease;
  }

  .lightbox[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
  }

  .lightbox .lb-prev,
  .lightbox .lb-next {
    display: none;
  }

  .lightbox-content {
    position: relative;
    animation: zoomIn .4s ease forwards;
  }

  @keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
  }

  .lb-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  }

  .lb-close {
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: transparent;
    padding: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .2s ease;
  }

  .lb-close svg {
    width: 44px;
    height: 44px;
  }

  .lb-close:hover {
    transform: scale(1.05);
  }

  /* Growth Section */
  .growth-section {
    padding-top: 120px;
  }

  .growth-section .container {
    max-width: 1180px;
  }

  .growth-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
  }

  .growth-title {
    font-size: 40px;
    line-height: 1.1;
    color: var(--color-text-title);
    font-weight: 700;
    margin-bottom: 24px;
  }

  .growth-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(15, 15, 15, 0.7);
  }

  .growth-category + .growth-category {
    margin-top: 72px;
  }

  .growth-category__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-title);
    text-align: center;
    margin-bottom: 32px;
  }

  .growth-grid {
    display: grid;
    gap: 24px;
  }

  .growth-grid--youtube {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .growth-grid--other {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .growth-item {
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.65);
    position: relative;
  }

  .growth-grid--youtube .growth-item {
    aspect-ratio: 54/47;
  }

  .growth-grid--other .growth-item {
    aspect-ratio: 32 / 11;
  }

  .growth-item img {
    width: 100%;
    height: 100%;
  }

  @media (max-width: 1024px) {
    .growth-section {
      padding: 100px 0;
    }

    .growth-title {
      font-size: 32px;
    }

    .growth-category__title {
      font-size: 24px;
    }
  }

  @media (max-width: 768px) {
    .growth-header {
      margin-bottom: 48px;
    }

    .growth-description {
      font-size: 16px;
    }

    .growth-category + .growth-category {
      margin-top: 48px;
    }
  }

  @media (max-width: 576px) {
    .growth-section {
      padding: 80px 0;
    }

    .growth-title {
      font-size: 32px;
    }

    .growth-grid--youtube,
    .growth-grid--other {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .growth-grid--other .growth-item {
      aspect-ratio: 16 / 5;
    }
  }

/* Start Media style */
@media (max-width: 1440px){
  .container{
    max-width: 1170px;
    width: 100%;
  }
  .menu ul{
    gap: 30px;
  }
  .content{
    gap: 30px;
  }
  .recruitment{
    padding-top: 100px;
  }
  .wrapper_footer{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .wrapper_footer{
    gap: 80px;
  }
  .wrapper_left{
    gap: 80px;
  }
  .right_footer{
    gap: 115px;
  }
  .privacy{
    padding-top: 135px;
    padding-bottom: 147px;
  }
  .message_icon_first{
    max-width: 200px;
  }

}


@media (max-width: 1230px) {
  .container{
    padding: 0 40px;
  }
  .hamburger {
    display: flex;
  }
  .menu_nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 100px;
    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: url('../img/main-bg.webp') no-repeat center;
    background-size: cover;
    align-items: flex-start;
    overflow-y: hidden;
    padding: 60px 40px;
  }
  
  .link.mobile{
    display: block;
  }
  .menu ul{
    padding: 60px 40px;
  }
  .apply.flex{
    display: none;
  }
  .partherns{
    padding: 120px 0;
  }
  .apply{
    display: none;
  }
  .text-content h1{
    width: 100%;
  }
  .parther_wrapper{
    flex-direction: column-reverse;
    justify-self: center;
    align-items: center;
    gap: 80px;
  }
  .recruitment{
    padding-top: 190px;
  }
  .height_right{
    width: 100%;
  }
  .height__wrapper{
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .height_left{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .parthers_right{
    width: 100%;
  }
  .parthert_left{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .now{
    padding: 80px 0;
  }
  .now__title{
    text-align: left;
    margin-bottom: 16px;
  }
  .now__text{
    margin-bottom: 40px;
  }
  .now__wrapper{
    flex-direction: column;
    gap: 0;
  }
  .apply.mobile{
    display: block;
    color: var(--color-btn-text);
  }
  .menu_nav.show {
    display: flex;
    transform: translateY(0);
  }
  .dream__wrapper{
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .dream__item{
    width: 48%;
  }
  .dream__item.last{
    width: 100%;
  }
  .content{
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .text-content{
    width: 100%;
  }
  .cross_line{
    width: 100px;
    height: 100px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .line_bottom{
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #fff;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .line_top{
    width: 2px;
    height:100px;
    position: absolute;
    background-color: #fff;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .services_item{
    width: 40%;
  }
  .services_item.last{
    width: 50%;
  }
  .services{
    padding: 80px 0;
  }
  .height{
    padding-top: 80px;
  }
  .height_right{
    margin-top: 0;
  }
  .chat-title{
    font-size: 48px;
  }
  .navbar{
    background: url("../img/bg_small.webp") no-repeat center;
    background-size: cover;
  }
  .wrapper_main__chat{
    padding: 80px 0;
  }
  .privacy__nav{
    display: block !important;
  }
  .services_title{
    font-size: 40px;
  }
}
@media(max-width:1163px){

  .opportunities_title{
    font-size: 48px;
  }
  .faq-section{
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .faq-heading{
    font-size: 48px;
    margin-bottom: 60px;
  }
  .faq-item{
    padding-top: 30px;
    padding-left: 24px;
    padding-bottom: 26px;
  }
  .wrapper_footer{
    gap: 0;
  }
  .wrapper_left{
    gap:90px;
  }
  .right_footer{
    gap: 50px;
  }
  .chat-section .services_title,
  .chat-section .services_text
  {
    text-align: left;
  }
  .warpper__services__title h2{
    width: 100%;
  }
}
@media(max-width:960px){

  .wrapper_left{
    flex-direction: column;
    justify-content: flex-start;
  }
  .right_footer{
    flex-direction: column-reverse;
    justify-content: flex-start;
    gap: 20px;
  }
  .link_footer.last{
    margin-bottom: 0;
  }
  .menu_footer li:last-child{
    margin-bottom: 0;
  }
  .error_page{
    padding-top: 180px;
    padding-bottom: 260px;
  }
  .error_title{
    font-size: 260px;
  }
  .error_description{
    font-size: 48px;
    margin-bottom: 40px;
  }
  .menu_nav{
    top:80px;
  }
  .message_icon_first{
    top: 11vw;
  }
  .model{
    width: 237px;
  }

}
@media (max-width: 769px) {
  .container{
    padding: 0 33px;
  }
  .recruitment{
    padding-top: 190px;
  }
  .navbar{
    padding: 13px 0;
  }
  .highlight.block{
    margin-top: 9px;
  }
  .main_title{
    margin-bottom: 16px;
  }
  
  .main_text.last{
    margin-bottom: 40px; 
  }
  .services_title{
    font-size: 40px;
    margin-bottom: 16px;
  }
  .services_text{
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 40px;
  }
  .services_item {
    width: 100%;
  }
  .services_item.last{
    width: 100%;
  }
  .opportunities_title{
    margin-bottom: 16px;
  }
  .opportunities_text{
    font-size: 18px;
    line-height: 25px;
  }

  .copyright{
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255, 0.2);
  }
  .dream__item{
    width: 43%
  }
  .message_icon_first{
    top: 38vw;
  }
  .privacy{
    padding-top: 135px;
    padding-bottom: 120px;
  }
  .privacy_title{
    font-size: 32px;
  }
  .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: 50px;
    line-height: 58px;
  }
}
@media (max-width: 672px) {
  .services_title{
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .services_text{
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 40px;
  }

  .opportunities_title{
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 28px;
  }
  .opportunities_text{
    font-size: 16px;
    line-height: 22px;
  }
  .form_title{
    font-size: 24px;
    line-height: 32px;
  }
  .services{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .services_title{
    margin-bottom: 16px;
  }
  .services_text{
    margin-bottom: 40px;
  }
  .faq-section{
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .menu_nav{
    top: 80px;
  }
  .popup-form {
    width: 90%; 
    max-height: 85vh;
  }
}
@media (max-width: 525px) {
  .container{
    padding: 0 15px;
  }
  .navbar{
    padding: 5px 0;
  }
  .recruitment{
    padding-top: 150px;
  }
  .main_title{
    font-size: 32px;
    line-height: 40px;
  }
  .main_text{
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 16px;
  }
  .wrapper_main__chat{
    padding: 60px 0;
  }
  .highlight{
    padding: 0;
  }
  .steps-grid{
    grid-template-columns: repeat(1, 1fr);
  }
  .height__wrapper{
    gap: 11px;
  }
  .height{
    padding-top: 60px;
  }
  .height__title{
    font-size: 24px;
    line-height: 32px;
  }
  .dream__item{
    width: 100%;
  }
  .height__text{
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 24px;
  }
  .height___main_text{
    font-size: 14px;
    line-height: 20px;
  }
  .bold_height{
    font-size: 14px;
  }
  .height_small__wrapper{
    gap: 16px;
  }
  .partherns h3{
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  .parthers_text{
    font-size: 16px;
    color: #fff;  
  }
  .parther_wrapper{
    gap: 60px;
  }
  .parthers_number{
    font-size: 32px;
  }
  .parthers_item{
    padding: 30px 10px;
  }
  .parthers_text__number{
    font-size: 16px;
    text-align: center;
    line-height: 19px;
  }
  .partherns{
    padding: 60px 0;
  }
  .faq-heading{
    font-size: 24px;
    margin-bottom: 40px;
  }
  .faq-item{
    padding-top: 24px;
    padding-left: 16px;
    padding-bottom: 24px;
  }
  .faq-question{
    font-size: 16px;
  }
  .wrapper_footer{
    flex-direction: column;
    gap: 24px;
  }
  .right_footer{
    flex-direction: column;
    gap: 56px;
  }
  .wraper_footer_logo{
    width: 90px;
  }
  .wrapper_left{
    gap: 35px;
  }
  .wrapper_footer{
    padding: 60px 0;
  }
  .copyright{
   padding: 16px 0;
  }
  .error_page{
    padding-top: 140px;
    padding-bottom: 195px;
  }
  .error_title{
    font-size: 140px;
    font-weight: 700;
  }
  .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;
  }
  .now{
    padding: 60px 0;
  }
  .now__title{
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    line-height: 32px;
  }
  .now__text{
    font-size: 16px;
    line-height: 23px;
    margin-bottom: 40px;
  }
  .services_title{
    text-align: left;
  }
  .services_text{
    text-align: left;
  }
  .privacy_text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 40px;
  }
  .popup-form{
    padding: 60px 15px;
  }
  .menu_nav{
    top: 62px;
  }
  .message_icon_first{
    top: 32vw;
  }
}
/* End Media style */
