@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

.header {
  background: var(--white);
  box-shadow: 2px 5px 21px rgba(0, 0, 0, 0.15);
}
.header__wrapper {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0 18px;
}
.climate_policy_governance {
  margin-right: 15px;
}
.financial_stability_policy {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  transition: var(--transition);
}
.financial_stability_policy:hover {
  transition: var(--transition);
  color: var(--orange);
}
@media (max-width: 767px) {
  .financial_stability_policy {
    font-size: 19px;
  }

  .financial_stability_policy img {
    margin-right: 5px;
  }

  .digital_society_policy {
    position: absolute;
    opacity: 0;
    top: 65px;
    left: 100vw;
    background: var(--white);
    height: 100vh;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: calc(100% + 20px);
    transition: var(--transition);
  }
  .digital_society_policy.active {
    opacity: 1;
    left: 0;
    text-align: center;
    transition: var(--transition);
    z-index: 100;
    overflow-y: scroll;
  }
}
.healthcare_technology_policy {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px 30px;
}
@media (max-width: 1024px) {
  .healthcare_technology_policy {
    gap: 5px 15px;
  }
}
@media (max-width: 767px) {
  .healthcare_technology_policy {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px 0;
  }
}
.public_policy_governance {
  font-weight: 500;
  transition: var(--transition);
}
.public_policy_governance:hover {
  transition: var(--transition);
  color: var(--orange);
}
.header__link_active {
  line-height: var(--lh-common-plus);
  color: var(--orange);
}
.header__btn-wrapper {
  display: inline-flex;
}
@media (max-width: 767px) {
  .header__btn-wrapper {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__btn {
    padding: 5px 10px !important;
    font-size: 14px !important;
  }
}

.header-burger {
  display: none;
}
@media (max-width: 767px) {
  .header-burger {
    display: inline-flex;
    margin-left: 20px;
    position: relative;
    width: 35px;
    height: 14px;
    align-items: center;
    justify-content: end;
  }
  .header-burger:before, .header-burger:after {
    content: "";
    background-color: var(--black);
    position: absolute;
    height: 2px;
    transition: var(--transition);
  }
  .header-burger:before {
    width: 35px;
    top: 0;
    transition: var(--transition);
  }
  .header-burger:after {
    width: 25px;
    bottom: 0;
    transition: var(--transition);
  }
}
.header-burger__line {
  background-color: var(--black);
  width: 30px;
  height: 2px;
  transition: var(--transition);
}

.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: 5;
  background: rgba(0, 0, 0, 0.71);
}

.footer {
  background: var(--black);
}
.footer__wrapper {
  padding: 46px 0 56px;
}
@media (max-width: 991px) {
  .footer__wrapper {
    padding: 30px 0 35px;
  }
}
.footer__navigation-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 41px;
}
.footer__logo-link {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  transition: var(--transition);
}
@media (max-width: 991px) {
  .footer__logo-link {
    font-size: 32px;
    line-height: 38px;
  }
}
.footer__logo-link:hover {
  transition: var(--transition);
  color: var(--orange);
}
.footer__links-wrapper {
  gap: 5px 5px;
}
@media (max-width: 610px) {
  .footer__links-wrapper {
    width: 100%;
    margin-top: 10px;
  }
}
.footer__link {
  line-height: var(--lh-common-plus);
  transition: var(--transition);
}
@media (max-width: 610px) {
  .footer__link {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.footer__link:hover {
  transition: var(--transition);
  color: var(--orange);
}
.footer__link_active {
  color: var(--orange) !important;
}
.footer__info-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .footer__info-wrapper {
    margin-bottom: 30px;
    gap: 15px;
  }
}
@media (max-width: 610px) {
  .footer__info-wrapper {
    gap: 0;
  }
}
.footer__info-item {
  width: calc(33.3333333333% - 20px);
  background: var(--white);
  padding: 10px 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .footer__info-item {
    width: calc(50% - 30px);
    flex: 1 1 auto;
    padding: 10px 20px;
  }
}
@media (max-width: 610px) {
  .footer__info-item {
    width: 100%;
    justify-content: start;
    padding: 5px 20px;
  }
  .footer__info-item:first-of-type {
    padding-top: 10px;
  }
  .footer__info-item:last-of-type {
    padding-bottom: 10px;
  }
}
.footer__info-img-wrapper {
  margin-right: 30px;
}
@media (max-width: 991px) {
  .footer__info-img-wrapper {
    margin-right: 15px;
  }
}
@media (max-width: 610px) {
  .footer__info-img-wrapper {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 610px) {
  .footer__info-img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.footer__title-link {
  font-weight: 500;
  line-height: var(--lh-common-plus);
  margin-bottom: 3px;
  transition: var(--transition);
}
.footer__title-link:hover {
  transition: var(--transition);
  color: var(--orange);
}
.footer__description {
  color: var(--grey);
  line-height: var(--lh-common-plus);
}
.footer__links-title {
  margin-bottom: 31px;
}
.footer__links-list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer__list-item {
  margin-bottom: 15px;
  width: 25%;
  padding-right: 15px;
}
@media (max-width: 767px) {
  .footer__list-item {
    width: 50%;
  }
}
.footer__list-link {
  transition: var(--transition);
}
.footer__list-link:hover {
  transition: var(--transition);
  color: var(--orange);
}

.footer-copyrights {
  text-align: center;
  padding: 4px 0;
}

:root {
  --black: #000000;
  --orange-gradient: linear-gradient(89.77deg, #ff7a00 0.2%, #ffb039 99.82%);
  --orange: #ff7a00;
  --white: #ffffff;
  --dark-white: #f8f9fb;
  --blue: #107cca;
  --grey: #797979;
  --light-grey: #aebcd1;
  --grey-rgba: rgba(222, 210, 210, 0.46);
  --purple-grey: #e6edfe;
  --transition: ease-in-out 0.2s;
  --fz-common: 18px;
  --lh-common: 22px;
  --lh-common-plus: 24px;
  --section-mb: 70px;
}
@media (max-width: 991px) {
  :root {
    --fz-common: 16px;
    --lh-common: 21px;
    --lh-common-plus: 22px;
    --section-mb: 60px;
  }
}
@media (max-width: 767px) {
  :root {
    --fz-common: 15px;
    --lh-common: 20px;
    --lh-common-plus: 21px;
    --section-mb: 50px;
  }
}

h1 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  color: var(--black);
}
@media (max-width: 991px) {
  h1 {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

h2 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  color: var(--black);
}
@media (max-width: 991px) {
  h2 {
    font-size: 22px;
    line-height: 36px;
  }
}
@media (max-width: 767px) {
  h2 {
    line-height: 32px;
  }
}

h3 {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: var(--fz-common);
  line-height: var(--lh-common-plus);
  color: var(--black);
}
@media (max-width: 991px) {
  h3 {
    font-size: 18px;
    line-height: 20px;
  }
}

.font-weight-medium {
  font-weight: 500;
}

* {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: var(--fz-common);
  line-height: var(--lh-common);
  color: var(--black);
}

/*растяжка по экрану*/
html,
body {
  height: 100%;
}

body {
  overflow-x: hidden;
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

.main {
  flex: 1 1 auto;
}

/*end растяжка по экрану*/
.wrapper {
  width: 1110px;
  margin: 0 auto;
}
@media (max-width: 1130px) {
  .wrapper {
    width: 100%;
    padding: 0 15px;
  }
}

body.no-scroll {
  overflow: hidden;
}

.btn {
  padding: 11px 22px 12px;
  font-weight: 600;
  font-size: var(--fz-common);
  line-height: var(--lh-common);
  border-radius: 20px;
  box-shadow: 3px 4px 15px rgba(0, 0, 0, 0.1);
  background: var(--white);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 767px) {
  .btn {
    padding: 8px 20px;
  }
}

.btn-orange {
  background: var(--orange-gradient);
  color: var(--white);
}

.text-orange {
  color: var(--orange);
}

.text-white {
  color: var(--white);
}

/*content*/
.main-banner {
  background-image: url("../../img/sos-express-locksmiths1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.main-banner__wrapper {
  padding: 87px 0 201px;
  text-align: center;
}
@media (max-width: 991px) {
  .main-banner__wrapper {
    padding: 70px 0;
  }
}
@media (max-width: 767px) {
  .main-banner__wrapper {
    padding: 50px 0;
  }
}
.ai_ethics_policy {
  margin-bottom: 15px;
}
.main-banner__title {
  max-width: 65%;
  margin: 0 auto 30px;
}
@media (max-width: 767px) {
  .main-banner__title {
    max-width: 100%;
    padding: 0 15px;
  }
}
.social_media_policy {
  margin-bottom: 45px;
  display: inline-flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 60px;
}
@media (max-width: 767px) {
  .social_media_policy {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.climate_science_policy {
  display: inline-flex;
  align-items: center;
}
.renewable_energy_governance {
  margin-right: 10px;
  width: 20px;
  height: 16px;
}
.financial_technology_policy {
  font-weight: 400;
}

.cases {
  margin: -110px auto var(--section-mb);
  width: 100%;
}
@media (max-width: 991px) {
  .cases {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cases {
    margin-top: 30px;
  }
}
.cases__wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 991px) {
  .cases__wrapper {
    justify-content: center;
    gap: 30px;
  }
}
@media (max-width: 410px) {
  .cases__wrapper {
    flex-direction: column;
    gap: 15px 0;
  }
}
.cases__item-wrapper {
  filter: drop-shadow(2px 4px 18px rgba(0, 0, 0, 0.15));
  max-width: calc(25% - 22px);
}
@media (max-width: 991px) {
  .cases__item-wrapper {
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 410px) {
  .cases__item-wrapper {
    max-width: 100%;
  }
}
.space_technology_policy {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  padding: 33px 15px;
  border-radius: 5px;
  background-color: var(--white);
  text-align: center;
}
@media (max-width: 767px) {
  .space_technology_policy {
    padding: 15px 10px;
  }
}
@media (max-width: 410px) {
  .space_technology_policy {
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
}
.space_technology_policy:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 10px;
  z-index: -1;
  width: 100%;
  border-radius: 0 0 5px 5px;
  background-color: var(--orange);
}
.cases__img-wrapper {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .cases__img-wrapper {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
  }
}
@media (max-width: 410px) {
  .cases__img-wrapper {
    margin: 0 20px 0 10px;
  }
}
@media (max-width: 767px) {
  .marine_ecology_governance {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.urban_planning_policy {
  text-align: center;
  line-height: var(--lh-common-plus);
}
@media (max-width: 410px) {
  .urban_planning_policy {
    text-align: left;
  }
}

.text-block {
  margin-bottom: var(--section-mb);
}
.text-block__wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
}
.text-block__wrapper_vertical {
  flex-direction: column;
}
@media (max-width: 991px) {
  .text-block__wrapper_vertical .text-block__text-wrapper {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .text-block__wrapper_vertical .text-block__text-wrapper {
    margin-bottom: 0;
  }
}
.text-block__list-wrapper {
  background: linear-gradient(90deg, #ffffff 0%, #b8bfc7 64.58%, rgba(255, 255, 255, 0) 100%);
  position: relative;
  margin-top: 12px;
}
@media (max-width: 767px) {
  .text-block__list-wrapper {
    margin-top: 0;
  }
}
.text-block__list-wrapper:after {
  content: "";
  background-image: url("../../img/8d1ccaec74b74051ad21a2e5df34ce191.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: -58%;
  z-index: -1;
}
@media (max-width: 1300px) {
  .text-block__list-wrapper:after {
    right: -53%;
  }
}
@media (max-width: 1199px) {
  .text-block__list-wrapper:after {
    right: -48%;
  }
}
@media (max-width: 1024px) {
  .text-block__list-wrapper:after {
    right: -39%;
  }
}
@media (max-width: 991px) {
  .text-block__list-wrapper:after {
    right: -57%;
  }
}
@media (max-width: 860px) {
  .text-block__list-wrapper:after {
    right: -50%;
  }
}
@media (max-width: 767px) {
  .text-block__list-wrapper:after {
    content: none;
  }
}
.text-block__list {
  width: 60%;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
@media (max-width: 991px) {
  .text-block__list {
    gap: 15px 0;
    width: 70%;
  }
}
@media (max-width: 767px) {
  .text-block__list {
    width: 100%;
  }
}
.text-block__list-item {
  display: inline-flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 480px) {
  .text-block__list-item {
    width: 100%;
  }
}
.text-block__list-img-wrapper {
  background: var(--purple-grey);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  min-width: 80px;
  min-height: 80px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
@media (max-width: 991px) {
  .text-block__list-img-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
  }
}
@media (max-width: 767px) {
  .text-block__list-img-wrapper {
    width: 45px;
    height: 45px;
    min-width: 45px;
    min-height: 45px;
  }
}
@media (max-width: 991px) {
  .text-block__list-img {
    width: 50%;
    height: 50%;
  }
}
.text-block__list-text {
  font-weight: 500;
  line-height: var(--lh-common-plus);
  padding-right: 5px;
}
.text-block__text-wrapper {
  width: 60%;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .text-block__text-wrapper {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .text-block__text-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }
}
.text-block__subtitle {
  margin-bottom: 15px;
}
.text-block__title {
  margin-bottom: 15px;
}
.text-block__text-item {
  padding: 0 0 24px 10px;
  border-left: 1px solid var(--blue);
  margin-bottom: 22px;
}
.text-block__img-wrapper {
  width: 40%;
  padding-left: 65px;
}
@media (max-width: 991px) {
  .text-block__img-wrapper {
    width: 50%;
    padding-left: 45px;
  }
}
@media (max-width: 767px) {
  .text-block__img-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.text-block__img {
  max-width: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.our-numbers {
  background-image: url("../../img/9m8cndjn2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.our-numbers__wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 64px 0;
}
@media (max-width: 991px) {
  .our-numbers__wrapper {
    padding: 30px 0;
  }
}
.our-numbers__text-wrapper {
  width: 50%;
  display: inline-flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .our-numbers__text-wrapper {
    width: 100%;
    align-items: center;
    margin-bottom: 30px;
  }
}
.our-numbers__title {
  margin: 12px 0 15px;
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
}
@media (max-width: 991px) {
  .our-numbers__title {
    text-align: center;
    font-size: 22px;
    line-height: 28px;
  }
}
.our-numbers__text {
  line-height: var(--lh-common-plus);
}
@media (max-width: 991px) {
  .our-numbers__text {
    text-align: center;
  }
}
.our-numbers__numbers-wrapper {
  width: 50%;
  padding-left: 30px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
}
@media (max-width: 991px) {
  .our-numbers__numbers-wrapper {
    width: 100%;
    padding-left: 0;
  }
}
.our-numbers__nuber-item {
  width: 50%;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  padding: 0px 26px;
}
@media (max-width: 1100px) {
  .our-numbers__nuber-item {
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .our-numbers__nuber-item {
    width: 100%;
    margin-bottom: 15px;
  }
}
.our-numbers__number-num {
  font-weight: 700;
  font-size: 48px;
  line-height: 59px;
  background: linear-gradient(89.77deg, #ff7a00 0.2%, #ffb039 99.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .our-numbers__number-num {
    font-size: 42px;
    line-height: 50px;
  }
}
@media (max-width: 480px) {
  .our-numbers__number-num {
    font-size: 38px;
    line-height: 42px;
    margin-bottom: 0;
  }
}
.features {
  position: relative;
  margin-bottom: var(--section-mb);
}
.features:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 415px;
  background: var(--orange);
  z-index: -1;
}
.features__wrapper {
  padding-top: 50px;
}
@media (max-width: 991px) {
  .features__wrapper {
    padding-top: 30px;
  }
}
.features__title {
  text-align: center;
  width: 380px;
  margin: 0 auto 30px;
  max-width: 100%;
}
.features__items-wrapper {
  display: inline-flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 30px 0;
}
@media (max-width: 480px) {
  .features__items-wrapper {
    gap: 20px 0;
  }
}
.features__item {
  display: inline-flex;
  flex-direction: column;
  width: calc(33.3333333333% - 20px);
  background: var(--white);
  box-shadow: 5px 4px 14px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  padding: 21px 20px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 991px) {
  .features__item {
    padding: 15px;
  }
}
@media (max-width: 767px) {
  .features__item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .features__item {
    width: 100%;
  }
}
.features__item-title {
  line-height: var(--lh-common-plus);
  margin-bottom: 17px;
}
@media (max-width: 480px) {
  .features__item-title {
    margin-bottom: 7px;
  }
}
.features__item-img-wrapper {
  background: var(--white);
  border: 0.5px solid #19be6f;
  box-sizing: border-box;
  box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 10px;
}
.first-feature {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.first-feature__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.first-feature__title:after {
  content: "";
  border-top: 1px solid var(--white);
  height: 1px;
  width: 56px;
  display: inline-block;
  margin-left: 15px;
}
.first-feature__text-wrapper {
  margin-bottom: 13px;
}
.first-feature__text {
  font-size: var(--fz-common);
  line-height: var(--lh-common);
  font-weight: 400;
  text-align: left;
}

.locations {
  background-image: url("../../img/9m8cndjn1.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin-bottom: var(--section-mb);
}
.locations__wrapper {
  width: 100%;
  padding: 64px 0 117px;
  position: relative;
}
@media (max-width: 991px) {
  .locations__wrapper {
    padding: 30px 0;
  }
}
.locations__title {
  text-align: center;
  width: 352px;
  margin: 0 auto 65px;
}
@media (max-width: 991px) {
  .locations__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 410px) {
  .locations__title {
    width: 100%;
    margin-bottom: 20px;
  }
}
.locations__items-wrapper {
  width: 70%;
}
@media (max-width: 767px) {
  .locations__items-wrapper {
    width: 100%;
  }
}
.locations__list {
  width: 100%;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.locations__list-item {
  width: 50%;
  margin-bottom: 21px;
  z-index: 1;
}
@media (max-width: 410px) {
  .locations__list-item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.locations__list-link {
  display: inline-flex;
  align-items: center;
  padding-right: 10px;
}
.locations__list-link:hover .locations__link-text {
  color: var(--orange);
}
.locations__list-link:hover .locations__list-img {
  display: none;
}
.locations__list-link:hover .locations__list-img_active {
  display: inline-block;
}
.locations__list-img {
  display: inline-block;
}
.locations__list-img_active {
  display: none;
}
.locations__link-text {
  margin-left: 10px;
  line-height: var(--lh-common-plus);
}
.locations__map-wrapper {
  width: 40%;
  height: auto;
  position: absolute;
  right: 0;
  top: 52px;
  bottom: 55px;
}
@media (max-width: 767px) {
  .locations__map-wrapper {
    display: none;
  }
}
.locations__map-img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.pricelist {
  margin-bottom: var(--section-mb);
}
.pricelist__title {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .pricelist__title {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .pricelist__title {
    margin-bottom: 15px;
  }
}
.pricelist__text {
  line-height: var(--lh-common-plus);
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .pricelist__text {
    margin-bottom: 30px;
  }
}
.pricelist__items-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 767px) {
  .pricelist__items-wrapper {
    justify-content: center;
    gap: 20px 20px;
  }
}
.pricelist__item {
  display: inline-flex;
  flex-direction: column;
  width: calc(33.3333333333% - 20px);
  background: var(--orange-gradient);
  text-align: center;
  padding: 30px 16px 50px;
  box-shadow: 5px 4px 24px rgba(0, 0, 0, 0.13);
  border-radius: 5px;
}
@media (max-width: 991px) {
  .pricelist__item {
    padding: 20px 10px 30px;
  }
}
@media (max-width: 767px) {
  .pricelist__item {
    width: calc(50% - 10px);
    min-width: 280px;
    max-width: 100%;
  }
}
.pricelist__item-title {
  line-height: var(--lh-common-plus);
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .pricelist__item-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pricelist__item-title {
    margin-bottom: 15px;
  }
}
.pricelist__item-price {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 38px;
  margin-top: auto;
}
@media (max-width: 991px) {
  .pricelist__item-price {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .pricelist__item-price {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 20px;
  }
}
.pricelist__item-text {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 14px;
}
@media (max-width: 991px) {
  .pricelist__item-text {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .pricelist__item-text {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 5px;
  }
}
.pricelist__item-text:last-of-type {
  margin-bottom: 38px;
}
@media (max-width: 767px) {
  .pricelist__item-text:last-of-type {
    margin-bottom: 20px;
  }
}
.pricelist__item-btn {
  background: #ffffff;
  box-shadow: 2px 4px 21px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  padding: 8px 40px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.text {
  margin-bottom: var(--section-mb);
}
.text__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  margin-bottom: 30px;
}
.text__text {
  line-height: var(--lh-common-plus);
}
.text__text:not(:last-of-type) {
  margin-bottom: 20px;
}

.testimonials {
  margin-bottom: var(--section-mb);
}
.testimonials__title {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 991px) {
  .testimonials__title {
    margin-bottom: 30px;
  }
}
.testimonials__items-wrapper {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.testimonials__item {
  background: var(--white);
  box-shadow: 3px 4px 26px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  display: inline-flex;
  flex-direction: column;
  padding: 30px 30px 45px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .testimonials__item {
    padding: 15px 15px 25px;
  }
}
.testimonials__header {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}
.testimonials__img-wrapper {
  margin-right: 20px;
  height: 65px;
  width: 65px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .testimonials__img-wrapper {
    width: 50px;
    height: 50px;
  }
}
.testimonials__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials__name {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}
@media (max-width: 767px) {
  .testimonials__name {
    font-size: 22px;
    line-height: 24px;
  }
}
.testimonials__position {
  color: var(--orange);
  line-height: var(--lh-common-plus);
}
.testimonials__text {
  line-height: 26px;
}
.testimonials .swiper-pagination {
  position: initial;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .testimonials .swiper-pagination {
    margin-top: 30px;
  }
}
.testimonials .swiper-pagination-bullet {
  background: rgba(222, 210, 210, 0.46);
  border-radius: 15px;
  width: 40px;
  height: 10px;
  opacity: 1;
}
@media (max-width: 991px) {
  .testimonials .swiper-pagination-bullet {
    width: 25px;
    height: 7px;
  }
}
.testimonials .swiper-pagination-bullet-active {
  background: #ff7a00;
  border-radius: 15px;
}

.conversion-banner {
  background: var(--orange-gradient);
  margin-bottom: var(--section-mb);
}
.conversion-banner__wrapper {
  padding: 63px 0;
  display: inline-flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .conversion-banner__wrapper {
    padding: 30px 0 35px;
  }
}
@media (max-width: 610px) {
  .conversion-banner__text-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.conversion-banner__title {
  font-weight: 600;
  font-size: 36px;
  line-height: 44px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .conversion-banner__title {
    font-size: 34px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .conversion-banner__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.conversion-banner__text {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
}
@media (max-width: 991px) {
  .conversion-banner__text {
    font-size: 22px;
    line-height: 25px;
  }
}
@media (max-width: 767px) {
  .conversion-banner__text {
    font-size: 18px;
    line-height: 24px;
  }
}
.conversion-banner__btn {
  padding: 10px 45px;
}
@media (max-width: 767px) {
  .conversion-banner__btn {
    padding: 8px 20px;
  }
}

.articles {
  margin-bottom: var(--section-mb);
  min-height: 500px;
}
.articles__title {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .articles__title {
    margin-bottom: 30px;
  }
}
.articles__items-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .articles__items-wrapper {
    justify-content: space-evenly;
  }
}
.articles__item {
  width: calc(33.3333333333% - 20px);
}
@media (max-width: 991px) {
  .articles__item {
    width: calc(50% - 20px);
    margin-bottom: 30px;
  }
  .articles__item:last-of-type {
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .articles__item {
    width: calc(50% - 10px);
    min-width: 280px;
    max-width: calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
  }
}
.articles__img-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
}
.articles__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.articles__img-text {
  position: absolute;
  bottom: 0;
  left: 15px;
  background: var(--orange);
  padding: 6px 60px 3px;
  line-height: var(--lh-common-plus);
}
.articles__link {
  display: inline-block;
  margin-bottom: 20px;
  transition: var(--transition);
}
@media (max-width: 991px) {
  .articles__link {
    margin-bottom: 10px;
  }
}
.articles__link:hover {
  transition: var(--transition);
  color: var(--orange);
}
.articles__date-wrapper {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.articles__date-img-wrapper {
  margin-right: 10px;
  width: 20px;
  height: 20px;
}
.articles__date-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.articles__date-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
}

.faq {
  margin-bottom: var(--section-mb);
}
.faq__wrapper {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.faq__title {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 37px;
}
@media (max-width: 991px) {
  .faq__title {
    margin-bottom: 20px;
  }
}
.faq__section {
  display: inline-flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: calc(50% - 15px);
}
@media (max-width: 767px) {
  .faq__section {
    width: 100%;
  }
}
.faq__item {
  background: var(--dark-white);
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
  padding: 1px;
  transition: var(--transition);
}
.faq__item[open] {
  padding: 1px;
  background: var(--white);
  transition: var(--transition);
}
.faq__item[open] .faq__question {
  color: var(--blue);
  padding-bottom: 28px;
}
@media (max-width: 991px) {
  .faq__item[open] .faq__question {
    padding-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .faq__item[open] .faq__question {
    padding-bottom: 10px;
  }
}
.faq__item[open] .faq__question:after {
  color: var(--blue);
  transform: rotate(45deg);
  transition: var(--transition);
}
.faq__question {
  font-weight: 500;
  font-size: 20px;
  line-height: var(--lh-common-plus);
  padding: 30px;
  display: inline-flex;
  align-items: center;
  width: 100%;
}
@media (max-width: 991px) {
  .faq__question {
    font-size: 18px;
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .faq__question {
    padding: 15px;
    font-size: 16px;
  }
}
.faq__question::marker {
  content: none;
}
.faq__question:before {
  content: "?";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin-right: 15px;
  border-radius: 50%;
  background: var(--orange-gradient);
  color: var(--white);
}
.faq__question:after {
  content: "+";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  margin-left: auto;
  color: var(--light-grey);
  font-weight: 100;
  font-size: 28px;
  transition: var(--transition);
}
.faq__answer {
  padding: 0 30px 37px 83px;
  line-height: var(--lh-common-plus);
}
@media (max-width: 991px) {
  .faq__answer {
    padding-bottom: 20px;
    padding-left: 73px;
  }
}
@media (max-width: 767px) {
  .faq__answer {
    padding-bottom: 15px;
    padding-left: 71px;
    font-size: 15px;
  }
}

.partners {
  margin-bottom: var(--section-mb);
  width: 100%;
}
.partners__wrapper {
  width: 100%;
  display: inline-flex;
  flex-direction: column;
}
.partners__title {
  text-align: center;
  margin-bottom: 77px;
}
@media (max-width: 991px) {
  .partners__title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .partners__title {
    margin-bottom: 30px;
  }
}
.partners__items {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.partners__image-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.partners__img {
  margin: 0 auto;
}

.werkgebied {
  padding: 80px 0 0;
  margin-bottom: var(--section-mb);
}
@media (max-width: 991px) {
  .werkgebied {
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .werkgebied {
    padding-top: 50px;
  }
}
.werkgebied__title {
  margin-bottom: 50px;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  .werkgebied__title {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .werkgebied__title {
    margin-bottom: 30px;
  }
}
.werkgebied__list {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 30px;
}
@media (max-width: 767px) {
  .werkgebied__list {
    gap: 10px 20px;
  }
}
@media (max-width: 480px) {
  .werkgebied__list {
    gap: 10px 0;
  }
}
.werkgebied__list-item {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: calc(33.3333333333% - 20px);
  box-shadow: 9px 4px 31px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  background: var(--white);
  text-align: center;
}
@media (max-width: 767px) {
  .werkgebied__list-item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .werkgebied__list-item {
    width: 100%;
  }
}
.werkgebied__link {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  padding: 22px;
  font-weight: 500;
  line-height: var(--lh-common-plus);
  background: var(--white);
}
@media (max-width: 767px) {
  .werkgebied__link {
    padding: 15px;
  }
}
.werkgebied__link:hover {
  background: var(--orange-gradient);
  color: var(--white);
}

.dashed-services {
  margin-bottom: var(--section-mb);
}
.dashed-services__item-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 23px;
  position: relative;
}
@media (max-width: 480px) {
  .dashed-services__item-wrapper {
    gap: 15px 0;
  }
}
.dashed-services__item-wrapper:before {
  content: "";
  width: 100%;
  position: absolute;
  top: 135px;
  height: 1px;
  border-top: 1px dashed #dedede;
}
@media (max-width: 991px) {
  .dashed-services__item-wrapper:before {
    content: none;
  }
}
.dashed-services__item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 18px);
  padding: 20px 20px 13px;
  box-shadow: 5px 5px 20px #f7f8fc;
  border-radius: 10px;
  background: var(--white);
}
@media (max-width: 991px) {
  .dashed-services__item {
    width: calc(50% - 12px);
  }
}
@media (max-width: 480px) {
  .dashed-services__item {
    width: 100%;
    flex-direction: row;
    align-items: center;
  }
}
.dashed-services__img-wrapper {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .dashed-services__img-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .dashed-services__img-wrapper {
    min-width: 50px;
    width: 50px;
    min-height: 50px;
    height: 50px;
    margin-right: 15px;
    margin-bottom: 0;
  }
}
.dashed-services__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.dashed-services__dot {
  margin-bottom: 5px;
  width: 10px;
  height: 10px;
  background: var(--orange);
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 480px) {
  .dashed-services__dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    min-height: 10px;
    margin-bottom: 0;
  }
}
.dashed-services__text {
  text-align: center;
  line-height: var(--lh-common-plus);
}
@media (max-width: 480px) {
  .dashed-services__text {
    text-align: left;
    margin-left: 15px;
  }
}

/*end content*/