.custom-select-box {
  position: relative;
  font-family: "Montserrat", sans-serif;
}
.custom-select-box .select-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px;
  font-size: 20px;
  line-height: 24.38px;
  font-weight: 700;
  background-color: #73D8E2;
  border-radius: 16.8px 37.8px 37.8px 16.8px;
  cursor: pointer;
  width: 100%;
  border: none;
    font-family: "Montserrat", sans-serif;
}
.custom-select-box .select-trigger .arrow {
  transform: rotate(90deg);
  margin-right: 7px;
}
.custom-select-box .select-trigger:hover {
  border-color: #555;
}
.custom-select-box .select-trigger.active {
  border-radius: 16.8px 37.8px 0 0;
}
.custom-select-box .select-trigger.active .arrow {
  transform: rotate(270deg);
}
.custom-select-box .select-trigger .arrow {
  transition: transform 0.3s;
}
.custom-select-box .options {
  position: absolute;
  top: calc(100% - 3px);
  left: 0;
  width: 100%;
  background-color: #73D8E2;
  border-radius: 0 0 37.8px 16.8px;
  display: none;
  flex-wrap: wrap;
  padding: 24px 26px 40px;
  z-index: 10;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  column-gap: 50px;
}
.team-archive .team-filters .custom-select .options{
  top: calc(100% - 3px);
}
.custom-select-box .options.active {
  display: flex;
}
.custom-select-box .column {
  flex: 1;
}
.custom-select-box .option {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  line-height: 21.94px;
  margin-bottom: 33px;
  display: flex;
  align-items: center;
  column-gap: 50px;
  text-align: left;
}
.custom-select-box.style-md .option{
  font-weight: 500;
}
.custom-select-box.style-md .option:hover{
  font-weight: 700;
}
.custom-select-box .option.selected {
  color: #fff;
}
.custom-select-box .option .arrow {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  position: relative;
  flex-shrink: 0;
}
.custom-select-box .option .arrow:after {
  content: "";
  width: 5.76px;
  height: 11.51px;
  background-image: url("/wp-content/themes/mcrn/img/Vector.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  display: block;
}
.team-archive .team-filters .custom-select-box {
    position: relative;
    margin-right: 20%;
    font-family: "Montserrat", sans-serif;
}
#section-vacancy .section__text{
    margin-bottom: 20px;
}
.section-hero .hero__text .showMobile{
  display: none;
}
.hero-area .hero-image__author.__author_2{
 /* display: none;*/
}
.team-archive .team-filters .custom-select .select-trigger{
    font-family: "Montserrat", sans-serif;
}
.section-reviews .reviews-item__video-link svg{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.section-blog{
  margin-top: 30px;
}
.section-reviews {
    margin-bottom: 60px;
}
.section-reviews .reviewsSwiper .swiper-wrapper {
    align-items: end;
}
.vacancy__body .btn{
  max-width: 100%;
}


.service_office_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 20px;
    line-height: 24.38px;
    font-weight: 700;
    background-color: #73D8E2;
    color: #000;
    border-radius: 24px;
    cursor: pointer;
    width: 100%;
    border: none;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 24px;
}
.service_office_list_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: center;
}
.service_office_list_box .service_office__link {
  font-weight: 600;
  font-size: clamp(0.75rem, 0.58vw + 0.595rem, 1.063rem);
  color: #000;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  text-transform: uppercase;
  cursor: pointer;
  margin: 0 auto;
  width: 100%;
}
.service_office_list_box .service_office__link.__no_active {
  font-size: 0.8rem;
  width: 80%;
  height: 48px;
  justify-content: center;
}
.service_office_list_box .service_office__arrow {
  height: 36px;
  width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s;
}
.service_office_list_box .service_office__arrow.__active {
  transform: rotate(90deg);
}
.service_office_list_box .service_office__link.__no_active .service_office__arrow{
  display: none;
}



@media only screen and (min-width: 1300px) {
    .header-area .header__menu, .header-area .header__language {
        margin-top: 15px;
    }
}
@media (max-width: 768px) {
  .custom-select-box .select-trigger {
    padding: 7px 12px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 700;
    line-height: inherit;
    letter-spacing: -0.02em;
    color: #ffffff;
  }
  .custom-select-box.style-md .select-trigger {
    padding: 20px 16px 20px 22px;
    border-radius: 74px;
    color: #000;
    text-transform: uppercase;
  }
  .custom-select-box .select-trigger.active {
    border-radius: 18px 18px 0 0;
    padding: 15px 13px 3px 25px;
  }
  .custom-select-box .arrow svg {
    width: 6px;
    height: 11px;
  }
  .custom-select-box:not(.style-md) .arrow svg path {
    fill: #fff;
    stroke: #fff;
  }
  .custom-select-box .options {
    padding: 22px 25px 0 25px;
    border-radius: 0 0 18px 18px;
  }
  .custom-select-box .column {
    margin-right: 0;
  }
  .custom-select-box .option {
    font-size: 16px;
    line-height: 19.5px;
    margin-bottom: 25px;
    text-align: left;
    justify-content: space-between;
  }
  .custom-select-box .option .arrow {
    width: 28px;
    height: 28px;
  }
  .team-archive .team-filters .custom-select-box {
        margin-right: 0;
    }
}

@media only screen and (max-width:640px){
    #content > header{
        height:140px;
    }
    .section-hero{
        margin-bottom: 70px;
    }
    #fn-service_office_list .options{
        position: relative;
        box-shadow: none;
        top: -3px;
    }
    .section-blog .item img,
    .section-service .service-item img {
        border-radius: 30px;
    }
    footer {
        border-radius: 30px 30px 0 0;
    }
    .section-reviews .container {
        padding: 0 20px;
    }
    #section-reviews .reviewsSwiper {
        overflow: hidden !important;
    }
    .section-blog .blog-swiper-wrapper .swiper-button-prev,
    .section-reviews .swiper-button-prev {
        left: 10px;
    }
    .section-blog .blog-swiper-wrapper .swiper-button-next,
    .section-reviews .swiper-button-next {
        right: 10px;
    }
    .blogSwiper {
        margin: 0 30px;
    }
    .section-blog .item {
        padding: 0 10px;
    }
    #section-vacancy .section__text{
      margin-bottom: 20px;
    }
    #section-partners .section__text{
      margin-bottom: 24px;
    }
    .section-team .team__swiper {
      margin-bottom: 20px;
    }    
    .section-reviews .reviewsSwiper .swiper-wrapper{
      align-items: start;
    }
    .section-team .btn{
      margin-top: 0;
    }
    .section-hero .hero__text .hideMobile{
      display: none;
    }
    .section-hero .hero__text .showMobile{
      display: block;
    }
    .hero-area .hero-image__author.__author_2{
      display: flex;
    }
    .section-hero .hero-image__author div.hero-image__position{
      font-size: 12px;
      font-weight: 400;
    }
    .section-team .team__item img {
        max-width: 170px;
    }
    .section-team .team__swiper .teamSwiper{
      padding: 0 20px;
    }
    body .teamSwiper .swiper-button-next, body .teamSwiper .swiper-button-prev {
        margin-top: -15%;
    }
    .section-reviews{
      margin-bottom: 40px;
    }
    .section-partners,
    .section-news {
      margin-bottom: 20px;
    }
    .section-blog {
      margin-top: 0;
  }
  .section-partners .partners__swiper .swiper-slide{
    justify-content: center;
  }
  .section-hero .hero-image__flover_1,
  .section-hero .hero-image__flover_2 {
    height: 135px;
    width: 135px;
    left: -50px;
    background-size: contain;
    z-index: 200;
}
.section-hero .hero-image__img.__hero_image_2{
  padding-top: 23px;
}
.section-hero .hero-image__flover_2 {
    right: -41px;
    bottom: inherit;
    left: inherit;
    top: -10px;
}
    .section-hero .hero__text {
        padding-bottom: 0;
    }
  
    




}
@media only screen and (max-width:500px){
  .section-vacancy .vacancy__body .btn {
      max-width: calc(100% - 40px);
  }
  .section-vacancy .vacancy__body {
      margin: 0 0 100px 0;
  }
  .section-vacancy .vacancy__body .btn {
    height: 54px;
  }
}

@media only screen and (max-width:400px){
  .section-vacancy .vacancy__body .btn {
      max-width: calc(100% - 20px);
  }
}




