@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
html,
body {
  height: 100%;
}

body {
  font-family: "Raleway";
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  font-style: normal;
  color: #fff;
  background: #282828;
}

html {
  scroll-behavior: smooth;
}

a,
input,
button {
  font-family: "Raleway";
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.no-scroll {
  overflow: hidden;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.header__logo {
	width: 96px;
	height: 60px;
	flex-shrink: 0;
	position: relative;
}

.header__logo img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__logo_link {
  max-width: 120px;
  width: 120px;
  max-height: 60px;
  height: 60px;
  display: block;
  position: relative;
  overflow: hidden;
}
.header__logo_img {
  position: absolute;
  top: 3px;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.header__list, .menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__list_item, .menu-item {
  position: relative;
}
.header__list_item::after, .menu-item::after {
  position: absolute;
  content: "";
  bottom: -2px;
  right: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background: #fff;
  transition: width 0.3s;
  margin: 0 auto;
}
.header__list_item:hover::after, .menu-item:hover::after {
  width: 100%;
}
.header__list_item_link, .menu-item a {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 21px;
}
.header__list_item_link_active, .current-menu-item a {
  color: #415a77;
}
.header__btn {
  height: 42px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 21px;
  border-radius: 4px;
  background: #33415c;
  padding: 10px 20px;
}
.header__burger, .header__burger_close {
  display: none;
}

.hero {
  background: rgba(40, 40, 40, 0.6);
  position: relative;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero__inner {
  min-height: 800px;
  display: flex;
  align-items: center;
}
.hero__row {
  width: 100%;
}
.hero__title {
  font-size: 84px;
  font-weight: 700;
  line-height: 110px;
	text-align: center;
  margin-bottom: 20px;
}
.hero__text {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
	text-align: center;
  margin-bottom: 50px;
}
.hero__btn {
  height: 50px;
  max-width: 210px;
  width: 100%;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 21px;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.15);
  padding: 0 20px;
	margin: 0 auto;
}

.home_info__inner {
  padding: 100px 0;
  position: relative;
}
.home_info__bg {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  width: 340px;
  height: 340px;
  margin: auto 0;
  z-index: -1;
}
.home_info__text {
  max-width: 880px;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.home_info__text + .home_info__text {
  margin-top: 20px;
}
.home_info__text_big{
    font-size: 21px;
    font-weight: 500;
    line-height: 28px;
}
.home_info__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 10px 0 20px;
}
.home_info__item {
  padding-left: 20px;
  position: relative;
}
.home_info__item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background: #fff;
  margin: auto 0;
}

.choose {
  padding: 100px 0;
  background: #303030;
}
.choose__inner {
  position: relative;
}
.choose__inner::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  left: 0;
  width: 320px;
  height: 320px;
  transform: rotate(45deg);
  background: url("../img/circle-object.png") no-repeat center;
  background-size: cover;
  margin: 0 auto;
  z-index: 0;
}
.choose__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 50px;
}
.choose__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 60px 40px;
  position: relative;
  z-index: 2;
}
.choose__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
  border-left: 1px solid #fff;
  padding-left: 20px;
}
.choose__item_title {
  font-size: 21px;
  font-weight: 500;
  line-height: 24px;
}
.choose__item_title + .choose__item_title{
    margin-top: 20px;
}
.choose__item_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: auto;
}
.choose__item_number {
  font-family: "Open Sans";
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
}

.reviews {
  padding: 100px 0;
  position: relative;
}
.reviews::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 300px;
  height: 80px;
  border-bottom-left-radius: 20px;
  background: #303030;
  z-index: -2;
}
.reviews::before {
  position: absolute;
  content: "";
  top: 0;
  right: 210px;
  width: 50px;
  height: 50px;
  border-top-right-radius: 20px;
  background: #282828;
  z-index: -1;
}
.reviews__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 50px;
}
.reviews__swiper {
  width: 100%;
  padding-bottom: 80px;
}
.reviews__slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 12px;
  background: #303030;
  padding: 20px;
  position: relative;
}
.reviews__slide_text {
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.reviews__slide_box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews__slide_name {
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
}
.reviews__slide_sl {
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}
.reviews__slide_qq {
  position: absolute;
  bottom: 20px;
  right: 20px;
  max-width: 42px;
  width: 42px;
  max-height: 42px;
  height: 42px;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #33415c;
}
.reviews .swiper-button-next::after,
.reviews .swiper-button-prev::after {
  color: #fff;
  font-size: 18px;
}
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
  bottom: 0;
  top: auto;
}
.reviews .swiper-button-next,
.reviews .swiper-button-prev {
  right: 0;
  left: 0;
  margin: 0 auto;
}
.reviews .swiper-button-next {
  right: -60px;
}
.reviews .swiper-button-prev {
  left: -60px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #303030;
  padding: 20px 0;
}
.footer__copywriting {
  font-family: "Open Sans";
  font-size: 14px;
  font-weight: 400px;
  line-height: 18px;
}

.head_page {
  background: rgba(40, 40, 40, 0.6);
  padding: 100px 0;
  position: relative;
}
.head_page__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.head_page__title {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
  line-height: 84px;
  text-transform: uppercase;
  text-align: center;
}

.about_us {
  background: #303030;
  padding: 100px 0;
}
.about_us__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}
.about_us__columns {
  width: 100%;
}
.about_us__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 30px;
}
.about_us__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.about_us__text span{
    font-size: 21px;
    font-weight: 700;
}
.about_us__text + .about_us__text {
  margin-top: 20px;
}

.about_us__text + .about_us__title {
	margin-top: 20px;
}

.about_us__img {
  width: 100%;
  max-height: 450px;
  height: 100vh;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.about_us__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about_founder {
  padding: 100px 0;
}
.about_founder__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}
.about_founder__columns {
  width: 100%;
}
.about_founder__columns:nth-child(1) {
  max-width: 450px;
}
.about_founder__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 30px;
}
.about_founder__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}
.about_founder__text + .about_founder__text {
  margin-top: 20px;
}
.about_founder__img {
  width: 100%;
  max-height: 450px;
  height: 100vh;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.about_founder__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.our_partners {
  border-top: 1px solid #303030;
  padding: 100px 0;
}
.our_partners__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 15px;
}
.our_partners__subtitle {
  font-size: 42px;
  font-weight: 500;
  line-height: 54px;
  text-align: center;
  margin-bottom: 30px;
}
.our_partners__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}
.our_partners__items {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 40px;
  margin-top: 50px;
}
.our_partners__item {
  max-width: 120px;
  width: 120px;
  max-height: 120px;
  height: 120px;
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.our_partners__item_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.services {
  padding: 100px 0;
}
.services__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 50px;
}
.services__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}
.services__columns {
  width: 100%;
}
.services__tabs {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.services__tabs_btns {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.services__tabs_btn {
  height: 42px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 18px;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  padding: 0 20px;
  cursor: pointer;
}
.services .mixitup-control-active {
  background: #fff;
  color: #282828;
}
.services__text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
}
.services__text + .services__text {
  margin-top: 10px;
}
.services__btns {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.services__btn {
  height: 42px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 18px;
  border-radius: 4px;
  background: #33415c;
  padding: 0 30px;
  cursor: pointer;
}
.services__subtitle {
  height: 42px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 18px;
  border-bottom: 1px solid #fff;
  padding: 0 20px;
  margin-bottom: 20px;
}
.services__form {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #303030;
  padding: 30px 20px 20px;
  margin-top: 20px;
}

#wpcf7-f6-o1 form, #wpcf7-f58-o1 form, #wpcf7-f59-o2 form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.wpcf7-spinner{
  display: none !important;
}

.services__form_title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 21px;
  margin-bottom: 15px;
}
.services__input {
  height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 18px;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  padding: 0 10px;
}
.services__input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.services__input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.services__textarea {
  min-height: 120px;
  max-height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 18px;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  resize: none;
  padding: 0 10px;
}
.services__textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.services__textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.services__form_btn {
  height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 18px;
  border: none;
  border-radius: 4px;
  background: #33415c;
  cursor: pointer;
}

.contact_us {
  padding: 100px 0;
}
.contact_us__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}
.contact_us__columns {
  width: 100%;
}
.contact_us__title {
  font-size: 21px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 30px;
}
.contact_us__socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.contact_us__social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 16px;
}
.contact_us__social_icon {
  max-width: 21px;
  width: 21px;
  max-height: 21px;
  height: 21px;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact_us__form form{
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.contact_us__input {
  height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 18px;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  padding: 0 10px;
}
.contact_us__input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.contact_us__input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.contact_us__textarea {
  min-height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 18px;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  resize: none;
  padding: 0 10px;
}
.contact_us__textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.contact_us__textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.contact_us__btn {
  height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 18px;
  border: none;
  border-radius: 4px;
  background: #33415c;
  cursor: pointer;
}
.contact_us__small_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 14px;
  margin-top: 15px;
}
.contact_us__map {
  width: 100%;
  height: 550px;
  border-radius: 4px;
}

@media (max-width: 1260px) {
  .hero__inner {
    min-height: 600px;
  }
  .services__row {
    gap: 50px;
  }
}
@media (max-width: 1023px) {
  .home_info__inner,
  .choose,
  .reviews {
    padding: 80px 0;
  }
  .choose__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .choose__inner::after {
    top: 0;
    bottom: auto;
  }
  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #282828;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 110;
  }
  .header__burger {
    width: 32px;
    height: 32px;
    display: block;
    outline: none;
    border: none;
    background: transparent;
    position: relative;
    cursor: pointer;
  }
  .header__burger_line {
    position: absolute;
    width: 21px;
    height: 1px;
    background: #fff;
  }
  .header__burger_line:nth-child(1) {
    top: 8px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .header__burger_line:nth-child(2) {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .header__burger_line:nth-child(3) {
    bottom: 8px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .header__burger_close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    display: block;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  .header__burger_close_line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 21px;
    height: 1px;
    background: #fff;
    margin: auto;
  }
  .header__burger_close_line:nth-child(1) {
    transform: rotate(45deg);
  }
  .header__burger_close_line:nth-child(2) {
    transform: rotate(-45deg);
  }
  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    background: #282828;
    z-index: 100;
  }
  .header__menu.active {
    display: flex;
  }
  .header__list, .menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header__list_item_link, .menu-item a {
    font-size: 21px;
    line-height: 24px;
  }
  .header__btn {
    margin-left: auto;
  }
  .head_page__title {
    font-size: 42px;
    line-height: 64px;
  }
  .about_us,
  .about_founder,
  .our_partners {
    padding: 80px 0;
  }
  .about_us__row {
    flex-direction: column-reverse;
    gap: 50px;
  }
  .about_us__img {
    max-height: 400px;
  }
  .about_founder__columns:nth-child(1) {
    max-width: none;
  }
  .about_founder__row {
    flex-direction: column;
    gap: 50px;
  }
  .about_founder__img {
    max-width: 400px;
    width: 100%;
    max-height: 400px;
    margin: 0 auto;
  }
  .about_founder__title {
    text-align: center;
  }
  .our_partners__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .our_partners__item {
    margin: 0 auto;
  }
  .our_partners__subtitle {
    font-size: 38px;
    line-height: 48px;
  }
  .services,
  .contact_us {
    padding: 80px 0;
  }
  .services__row {
    flex-direction: column;
  }
  .contact_us__row {
    flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 767px) {
  .home_info__inner,
  .choose,
  .reviews,
  .services,
  .contact_us {
    padding: 60px 0;
    overflow: hidden;
  }
  .choose__items {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
  .choose__inner::after {
    bottom: 0;
    margin: auto;
  }
  .hero__inner {
    min-height: 500px;
  }
  .hero__title {
    font-size: 54px;
    line-height: 64px;
  }
  .reviews::after {
    width: 150px;
    height: 50px;
  }
  .reviews::before {
    right: 100px;
    width: 30px;
    height: 30px;
  }
  .head_page {
    padding: 60px 0;
  }
  .head_page__title {
    font-size: 38px;
    line-height: 48px;
  }
  .about_us,
  .about_founder,
  .our_partners {
    padding: 60px 0;
  }
  .about_us__columns:nth-child(2) {
    display: none;
  }
  .our_partners__subtitle {
    max-width: 260px;
    width: 100%;
    font-size: 32px;
    line-height: 38px;
    margin: 0 auto;
  }
  .our_partners__items {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .our_partners__item {
    max-width: 100px;
    width: 100px;
    max-height: 100px;
    height: 100px;
  }
  .contact_us__map {
    height: 400px;
  }
}
.grecaptcha-badge{
 display: none !important;   
}
.pricing {
  padding: 100px 0;
}
.pricing__items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}
.pricing__item {
  font-family: "Open Sans";
  max-width: 410px;
  width: 100%;
  border: 1px solid #303030;
  border-radius: 12px;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);
  background: #333333;
  padding: 60px 24px 24px;
  position: relative;
  overflow: hidden;
}
.pricing__item::before {
  position: absolute;
  content: "";
  right: 10px;
  bottom: 100px;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  background: rgba(48, 48, 48, 0.6);
  z-index: -1;
}
.pricing__box {
  margin-bottom: 30px;
}
.pricing__price {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  text-align: center;
  margin-bottom: 5px;
}
.pricing__title {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
  text-align: center;
  border-bottom-right-radius: 20px;
  background: #33415c;
  padding: 10px 32px 10px 20px;
}
.pricing__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.pricing__list_item {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
}
.pricing__list_item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background: #fff;
  margin: auto 0;
}
.pricing__text_note {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 18px;
  font-style: italic;
  text-align: center;
}
.pricing__btn {
  height: 48px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 21px;
  outline: none;
  border: none;
  border-radius: 100px;
  background: #33415c;
  padding: 0 30px;
  margin: 0 auto;
  cursor: pointer;
}

.popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  z-index: 1000;
}
.popup.active {
  display: flex;
}
.popup__inner {
  max-width: 600px;
  width: 100%;
  border: 1px solid #282828;
  border-radius: 12px;
  background: #282828;
  padding: 80px 40px 40px;
  position: relative;
}
.popup__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 24px;
  height: 24px;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
}
.popup__close::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 24px;
  transform: rotate(45deg);
  background: #fff;
  margin: auto;
}
.popup__close::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 24px;
  transform: rotate(-45deg);
  background: #fff;
  margin: auto;
}
.popup__input {
  height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 18px;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  padding: 0 10px;
}
.popup__input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.popup__input::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.popup__textarea {
  min-height: 120px;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  line-height: 18px;
  outline: none;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  resize: none;
  padding: 0 10px;
}
.popup__textarea::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.popup__textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.2);
  line-height: 18px;
}
.popup__btn {
  height: 42px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 18px;
  border: none;
  border-radius: 4px;
  background: #33415c;
  cursor: pointer;
}
.popup__file {
  outline: none;
  border: none;
  background: transparent;
  padding: 20px 0;
}

.our_team {
  padding: 100px 0;
}
.our_team__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.our_team__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 50px;
}
.our_team__items {
  max-width: 600px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.our_team__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.our_team__img {
  width: 100%;
  max-height: 400px;
  height: 100vh;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.our_team__item_title {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}
.our_team__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px 30px;
}
.our_team__grid_item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.our_team__grid_item_img {
  max-width: 150px;
  width: 150px;
  max-height: 150px;
  height: 150px;
  border-radius: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}
.our_team__grid_item_title {
  max-width: 200px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  text-align: center;
  margin: 0 auto;
}

@media (max-width: 1341px) {
  .our_team__row {
    flex-direction: column;
    gap: 50px;
  }
  .our_team__items {
    margin: 0 auto;
  }
  .our_team__title {
    text-align: center;
  }
  .our_team__grid {
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 1125px) {
    .our_team__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1023px) {
  .pricing {
    padding: 80px 0;
  }
}
@media (max-width: 915px) {
  .pricing__items {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 864px) {
  .our_team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 650px) {
  .popup__inner {
    max-width: 410px;
    padding: 80px 20px 20px;
  }
  .pricing__item {
    padding: 60px 12px 12px;
  }
}
@media (max-width: 568px) {
  .our_team__items {
    flex-direction: column;
    gap: 30px;
  }
  .our_team__item_title {
    font-size: 21px;
    line-height: 28px;
  }
  .our_team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 468px) {
    .our_team{
        padding: 60px 0;
    }
  .our_team__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.space{
    height: 10px;
}
.contact_us__items{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 30px;
}
.contact_us__subtitle{
    font-size: "18px";
    font-weight:500;
    line-height: 21px;
    margin-bottom: 10px;
    }
.contact_us__text{
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
}
.jobs {
  padding: 100px 0;
}
.jobs__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
.jobs__item_content {
  position: relative;
  z-index: 1;
}
.jobs__item {
  border: 1px solid #303030;
  border-radius: 6px;
  background: #333333;
  box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.1);
  padding: 24px;
  position: relative;
}
.jobs__item::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: url("../img/icons/dot-arrow.png") no-repeat center;
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.jobs__title {
  font-size: 26px;
  font-weight: 500;
  color: #fff;
  line-height: 32px;
  margin-bottom: 10px;
}
.jobs__title span {
  font-size: 18px;
  font-weight: 400;
  line-height: 21px;
}
.jobs__subtitle {
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 20px;
}
.jobs__text {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  position: relative;
}
.jobs__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}
.jobs__btn {
  height: 45px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  line-height: 18px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  background: #33415c;
  padding: 0 30px;
  cursor: pointer;
}

@media (max-width: 1340px) {
  .jobs__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 940px) {
  .jobs__items {
    grid-template-columns: repeat(1, 1fr);
  }
  .jobs__item {
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 678px) {
  .jobs {
    padding: 60px 0;
  }
}
.policy {
  padding: 100px 0;
}
.policy__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  margin-bottom: 30px;
}
.policy__subtitle {
  font-size: 21px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 20px;
}
.policy__subtitle span {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}
.policy__text {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 20px;
}
.policy__text span {
  font-weight: 700;
}
.policy__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 20px 0 50px;
}
.policy__list_item {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 20px;
  position: relative;
}
.policy__list_item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100px;
  background: #fff;
  margin: auto 0;
}
.policy__list_item span {
  font-weight: 700px;
}
.policy__link {
  color: #fff;
}

@media (max-width: 768px) {
  .policy {
    padding: 60px 0;
  }
  .policy__title {
    font-size: 24px;
    line-height: 32px;
  }
  .policy__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .policy__subtitle span {
    font-size: 16px;
    line-height: 21px;
  }
  .policy__text {
    font-size: 16px;
    line-height: 21px;
  }
  .policy__list_item {
    font-size: 16px;
    line-height: 21px;
  }
}
.footer__list{
    display: flex;
   align-items: center;
  justify-content: center;
    gap:10px;
    margin-bottom: 15px;
    }
.footer__link{
 font-size: 14px;
 color:#fff;
}
.our_team__d_items {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-bottom: 80px;
}

.our_team__d_item {
  max-width: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.our_team__d_item_img {
  max-width: 200px;
  width: 100%;
  max-height: 200px;
  height: 100vh;
  border-radius: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto;
}

.our_team__f_item {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 0 auto 50px;
}

.our_team__f_item_img {
  max-width: 300px;
  width: 100%;
  max-height: 300px;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}

@media (max-width: 768px) {
  .our_team__d_items {
    flex-direction: column;
  }
}/*# sourceMappingURL=styles.css.map */