@font-face {
  font-family: "Halvar Breit Md";
  src: url("../fonts/HalvarBreit-Md.woff2") format("woff2"), url("../fonts/HalvarBreit-Md.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Halvar Breit Rg";
  src: url("../fonts/HalvarBreit-Bd.woff2") format("woff2"), url("../fonts/HalvarBreit-Bd.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  font: 400 1.04vw/140% "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.7);
  background: #13343F;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (max-width: 1024px) {
  body {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
  body.overflow {
    overflow: hidden;
  }
}

img {
  max-width: 100%;
  max-height: 100%;
}

main {
  flex: 1;
}

h1 {
  text-align: center;
  margin: 0 0 1.1vw;
  color: #F5F5F5;
  letter-spacing: 0.025em;
  font: 700 6.7vw/1.1 "Ubuntu", sans-serif;
}
@media (max-width: 1024px) {
  h1 {
    font-size: 76px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 38px;
  }
}

h2 {
  text-transform: uppercase;
  letter-spacing: 0.095em;
  margin: 0 0 5.7vw;
  color: #fff;
  font: 700 5vw/1.2 "Halvar Breit Rg", sans-serif;
}
@media (max-width: 768px) {
  h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
  }
}

h3 {
  text-align: center;
  margin: 0 0 5vw;
  font: 500 3.42vw/1.3 "Ubuntu", sans-serif;
  color: #fff;
}
@media (max-width: 768px) {
  h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
}

h4 {
  color: #fff;
  font: 500 3.42vw/1.3 "Ubuntu", sans-serif;
  margin: 0 0 0.6vw;
}
@media (max-width: 768px) {
  h4 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
  }
}

.btn {
  text-transform: uppercase;
  background: #F3F3F3;
  border-radius: 40px;
  color: #000;
  padding: 0.79vw 1.8vw;
  text-decoration: none;
  font: 500 1vw "Ubuntu", sans-serif;
  border: 2px solid #F3F3F3;
  display: inline-flex;
  transition: all 0.5s ease;
}
@media (max-width: 1024px) {
  .btn {
    font-size: 10px;
    padding: 7px 17px;
  }
}
@media (max-width: 768px) {
  .btn {
    font-size: 13px;
  }
}
.btn:hover {
  background: transparent;
  color: #fff;
}
.btn-black {
  background: #13343F;
  border: 2px solid #13343F;
  color: #fff;
}
.btn-black:hover {
  color: #13343F;
}

p {
  margin: 0;
}
p:not(:last-child) {
  margin-bottom: 0.8vw;
}
@media (max-width: 768px) {
  p:not(:last-child) {
    margin-bottom: 10px;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
}

.white-bg {
  background: #F3F3F3;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
  border-radius: 50px 0 0 50px;
  color: #13343F;
  padding: 7.3vw 5vw 4.4vw 7.3vw;
}
@media (max-width: 768px) {
  .white-bg {
    padding: 30px 10px;
    border-radius: 15px;
  }
}

.header {
  background: #242424;
  position: relative;
  z-index: 5;
}
.header-container {
  height: 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 89.6%;
}
@media (max-width: 1024px) {
  .header-container {
    height: 60px;
    padding: 0 15px;
    max-width: 100%;
  }
}
.header__left {
  display: flex;
  align-items: center;
}
.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-right: 1.9vw;
  color: #F5F5F5;
  text-transform: uppercase;
  font: 500 0.95vw "Halvar Breit Md", sans-serif;
}
@media (max-width: 1024px) {
  .header__logo {
    font-size: 10px;
    margin-right: 10px;
  }
}
.header__logo img {
  display: flex;
  margin-right: 2.4vw;
}
@media (max-width: 1024px) {
  .header__logo img {
    margin-right: 10px;
    max-width: 35px;
  }
}
@media (max-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.header__menu ul li:not(:last-child) {
  margin-right: 1.9vw;
}
@media (max-width: 1024px) {
  .header__menu ul li:not(:last-child) {
    margin-right: 10px;
  }
}
.header__menu ul li a {
  font: 500 0.95vw "Halvar Breit Md", sans-serif;
  color: #F5F5F5;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  display: flex;
}
@media (max-width: 1024px) {
  .header__menu ul li a {
    font-size: 10px;
  }
}
.header__menu ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 2px;
  background: #F5F5F5;
  transition: all 0.5s ease;
}
.header__menu ul li a:hover:before {
  width: 100%;
  left: 0;
}
.header__right {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .header__right .btn {
    display: none;
  }
}
.header__lang {
  list-style: none;
  margin: 0 20px 0 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .header__lang {
    margin-right: 15px;
  }
}
.header__lang select {
  border: 1px solid #FFFFFF;
  border-radius: 40px;
  font: 500 1vw "Ubuntu", sans-serif;
  padding: 0.79vw 1.8vw 0.79vw 2.8vw;
  cursor: pointer;
  text-align: right;
  color: #fff;
  background: url("../img/select-arrow.svg") center left 1.5vw/0.85vw no-repeat transparent;
  outline: none;
  appearance: none;
  text-transform: capitalize;
}
.header__lang select option {
  color: #13343F;
}
@media (max-width: 1024px) {
  .header__lang select {
    font-size: 10px;
    padding: 7px 17px 7px 25px;
    background: url("../img/select-arrow.svg") center left 11px/8px no-repeat transparent;
  }
}

.mobile-menu-open {
  width: 26px;
  height: 18px;
  border: 0;
  position: relative;
  background: transparent;
  display: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .mobile-menu-open {
    display: block;
  }
}
.mobile-menu-open span, .mobile-menu-open:before, .mobile-menu-open:after {
  content: "";
  position: absolute;
  left: 0;
  height: 3px;
  background: #fff;
  width: 100%;
  top: 50%;
  margin-top: -1.5px;
  transition: all 0.5s ease;
  border-radius: 4px;
}
.mobile-menu-open:before {
  top: 0;
  margin: 0;
}
.mobile-menu-open:after {
  top: auto;
  margin: 0;
  bottom: 0;
}
.mobile-menu-open.active span {
  opacity: 0;
}
.mobile-menu-open.active:before {
  transform: rotate(50deg);
  top: 50%;
}
.mobile-menu-open.active:after {
  transform: rotate(-50deg);
  top: 50%;
}

.mobile-menu {
  border-top: 1px solid #fff;
  top: 60px;
  height: calc(100% - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #242424;
  padding: 15px;
  position: fixed;
  left: 0;
  width: 100%;
  transform: translateY(calc(-100% - 60px));
  transition: transform 0.5s ease;
  z-index: 4;
}
.mobile-menu.active {
  transform: translateY(0);
}
.mobile-menu .header__menu {
  display: block;
}
.mobile-menu .header__menu ul {
  display: block;
  margin-bottom: 40px;
}
.mobile-menu .header__menu ul li {
  text-align: center;
}
.mobile-menu .header__menu ul li:not(:last-child) {
  margin-bottom: 15px;
}
.mobile-menu .header__menu ul li a {
  display: inline;
  font-size: 12px;
}
.mobile-menu a.btn {
  font-size: 14px;
  padding: 10px 27px;
}

.head-section {
  height: calc(100vh - 5vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  padding-bottom: 5vw;
  position: relative;
  margin-bottom: 10.1vw;
}
@media (max-width: 1024px) {
  .head-section {
    height: calc(100vh - 60px);
  }
}
@media (max-width: 768px) {
  .head-section {
    margin-bottom: 50px;
  }
}
.head-section__descr {
  font-size: 1.88vw;
  line-height: 1.1;
  color: #F5F5F5;
  max-width: 58%;
  margin: 0 auto;
  text-align: center;
  font-family: "Ubuntu", sans-serif;
}
@media (max-width: 1024px) {
  .head-section__descr {
    font-size: 18px;
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .head-section__descr {
    max-width: 100%;
    padding: 0 15px;
    font-size: 16px;
  }
}
.head-section__descr p {
  margin: 0;
}
.head-section__to-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6.5vw;
}
.head-section__to-bottom img {
  display: flex;
  width: 3.3vw;
}
@media (max-width: 768px) {
  .head-section__to-bottom img {
    width: 30px;
  }
}

.projects {
  padding-left: 5.2vw;
  margin-bottom: 6.3vw;
}
@media (max-width: 768px) {
  .projects {
    padding-right: 5.2vw;
    margin-bottom: 50px;
  }
}
.projects__wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .projects__wrap {
    display: block;
  }
}
.projects__img {
  min-width: 36.7vw;
  width: 36.7vw;
  margin-right: 8.7vw;
}
@media (max-width: 768px) {
  .projects__img {
    min-width: 1px;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.projects__img img {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .projects__img img {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }
}
.projects__info {
  max-width: 37vw;
}
@media (max-width: 768px) {
  .projects__info {
    max-width: 100%;
  }
}
.projects__descr {
  margin-bottom: 1.8vw;
}
@media (max-width: 768px) {
  .projects__descr {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .projects .btn {
    display: flex;
    margin: 0 auto;
    width: max-content;
  }
}

.students {
  padding-left: 5.2vw;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 6vw;
}
@media (max-width: 768px) {
  .students {
    padding-right: 5.2vw;
    margin-bottom: 50px;
  }
}
.students__title {
  margin: 0 0 5.1vw;
  font-weight: 500;
  font-size: 3.34vw;
  line-height: 3.84vw;
  max-width: 30vw;
}
@media (max-width: 768px) {
  .students__title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
    max-width: 100%;
    line-height: 1.2;
  }
}
.students__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .students__list {
    display: block;
  }
}
.students__list li {
  font-weight: 500;
  font-size: 1.26vw;
  flex-basis: 45%;
  display: flex;
  align-items: center;
  margin-bottom: 2.8vw;
  padding-right: 5vw;
}
@media (max-width: 1024px) {
  .students__list li {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .students__list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.students__list li img {
  display: flex;
  width: 2.9vw;
  min-width: 2.9vw;
  margin-right: 2vw;
}
@media (max-width: 768px) {
  .students__list li img {
    width: 20px;
    min-width: 20px;
    margin-right: 10px;
  }
}

.numbers {
  margin-bottom: 6.4vw;
}
@media (max-width: 768px) {
  .numbers {
    margin-bottom: 50px;
  }
}
.numbers__container {
  padding: 0 5.2vw;
}
.numbers__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 768px) {
  .numbers__list {
    display: block;
  }
}
.numbers__list li {
  width: 30%;
  font-weight: 500;
  font-size: 1.24vw;
  line-height: 140%;
  font-family: "Ubuntu", sans-serif;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
@media (max-width: 768px) {
  .numbers__list li {
    width: 100%;
    font-size: 12px;
  }
  .numbers__list li:not(:last-child) {
    margin-bottom: 20px;
  }
}
.numbers__list li span {
  display: block;
  margin-bottom: 0.4vw;
  color: #fff;
  font-weight: 700;
  font-size: 5vw;
  line-height: 1.2;
  letter-spacing: 0.095em;
  text-transform: uppercase;
  font-family: "Halvar Breit Rg", sans-serif;
}
@media (max-width: 768px) {
  .numbers__list li span {
    margin-bottom: 5px;
    font-size: 24px;
  }
}
.numbers--2 .numbers__title {
  margin-bottom: 1.2vw;
}
.numbers__descr {
  max-width: 34vw;
  margin: 0 auto 5vw;
}
@media (max-width: 768px) {
  .numbers__descr {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

.results {
  padding-left: 5.2vw;
  margin-bottom: 6.4vw;
}
@media (max-width: 768px) {
  .results {
    padding-right: 5.2vw;
    margin-bottom: 50px;
  }
}
.results .white-bg {
  padding-right: 5.2vw;
  color: #13343F;
  padding-bottom: 7vw;
}
@media (max-width: 768px) {
  .results .white-bg {
    padding: 30px 10px;
  }
}
.results__title {
  color: #13343F;
}
.results__info {
  padding-left: 8.6vw;
}
@media (max-width: 768px) {
  .results__info {
    padding: 0;
  }
}
.results__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .results__item {
    display: block;
  }
}
.results__item:not(:last-child) {
  margin-bottom: 5.4vw;
}
@media (max-width: 768px) {
  .results__item:not(:last-child) {
    margin-bottom: 25px;
  }
}
.results__item:nth-child(odd) {
  flex-direction: row-reverse;
}
.results__item:nth-child(odd) .results__info {
  padding-left: 0;
  padding-right: 8.6vw;
}
@media (max-width: 768px) {
  .results__item:nth-child(odd) .results__info {
    padding: 0;
  }
}
.results__img {
  min-width: 37vw;
  width: 37vw;
}
@media (max-width: 768px) {
  .results__img {
    min-width: 1px;
    width: 100%;
    margin-bottom: 15px;
  }
}
.results__img img {
  display: flex;
  width: 100%;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .results__img img {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
  }
}
.results__heading {
  margin: 0 0 0.4vw;
  font-style: normal;
  font: 500 3.35vw/1.3 "Ubuntu", sans-serif;
}
@media (max-width: 768px) {
  .results__heading {
    font-size: 18px;
    text-align: center;
    margin-bottom: 10px;
  }
}

.team {
  padding-left: 5.2vw;
}
@media (max-width: 768px) {
  .team {
    padding-right: 5.2vw;
    margin-bottom: 25px;
  }
}
.team__wrap {
  display: flex;
  flex-wrap: wrap;
  width: 82vw;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .team__wrap {
    width: 100%;
  }
}
.team__item {
  flex-basis: 21.6vw;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 6vw;
}
@media (max-width: 768px) {
  .team__item {
    flex-basis: calc(50% - 15px);
  }
}
.team__photo {
  width: 100%;
  height: 30.6vw;
  margin-bottom: 2.2vw;
}
@media (max-width: 768px) {
  .team__photo {
    height: 206px;
    margin-bottom: 15px;
  }
}
.team__photo img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.team__name {
  font-weight: 500;
  font-size: 1.9vw;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 0.2vw;
}
@media (max-width: 768px) {
  .team__name {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.team__prof {
  display: block;
  margin-bottom: 0.5vw;
}
@media (max-width: 768px) {
  .team__prof {
    font-size: 12px;
    margin-bottom: 10px;
    line-height: 1.1;
  }
}
.team__soc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.team__soc li:not(:last-child) {
  margin-right: 0.9vw;
}
@media (max-width: 768px) {
  .team__soc li:not(:last-child) {
    margin-right: 8px;
  }
}
.team__soc li a {
  display: flex;
}
.team__soc li a img {
  display: flex;
  width: 2vw;
}
@media (max-width: 768px) {
  .team__soc li a img {
    width: 15px;
  }
}

.jobs {
  padding: 0 5.2vw;
  font-family: "Ubuntu", sans-serif;
  margin-bottom: 3.5vw;
}
@media (max-width: 768px) {
  .jobs {
    margin-bottom: 50px;
  }
}
.jobs__title {
  margin-bottom: 1.9vw;
}
@media (max-width: 768px) {
  .jobs__title {
    margin-bottom: 15px;
  }
}
.jobs__descr {
  max-width: 27vw;
  font-size: 1.26vw;
  margin-bottom: 2.5vw;
}
@media (max-width: 768px) {
  .jobs__descr {
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .jobs__link {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }
}
.jobs__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3.8vw;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .jobs__wrap {
    margin-top: 10px;
    display: block;
  }
}
.jobs__item {
  flex-basis: calc(50% - 2.6vw);
  border: 0.34vw solid #F3F3F3;
  border-radius: 1.2vw;
  padding: 1.9vw 7vw 1.9vw 2.5vw;
  margin-bottom: 2.5vw;
  position: relative;
  cursor: pointer;
}
@media (max-width: 768px) {
  .jobs__item {
    border-radius: 10px;
    border: 2px solid #f3f3f3;
    padding: 10px 30px 10px 15px;
  }
}
.jobs__item svg {
  position: absolute;
  top: 3vw;
  right: 2vw;
  width: 3.6vw !important;
  height: auto !important;
  transition: transform 0.5s ease;
}
.jobs__item svg path {
  transition: stroke 0.5s ease;
}
@media (max-width: 768px) {
  .jobs__item svg {
    width: 20px !important;
    top: 13px;
    right: 10px;
  }
}
.jobs__item.active {
  background: #F3F3F3;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  color: #13343F;
}
.jobs__item.active .jobs__heading {
  color: #13343F;
  margin-bottom: 2.4vw;
}
.jobs__item.active svg {
  transform: rotate(180deg);
}
.jobs__item.active svg path {
  stroke: #13343F !important;
}
.jobs__heading {
  font-weight: 500;
  font-size: 3.35vw;
  line-height: 1.2;
  font-family: "Ubuntu", sans-serif;
  margin: 0;
  color: #fff;
}
@media (max-width: 768px) {
  .jobs__heading {
    font-size: 16px;
  }
}
.jobs__content {
  display: none;
}
.jobs__content h6 {
  font-weight: 500;
  font-size: 1.66vw;
  font-family: "Halvar Breit Md", sans-serif;
  margin: 0 0 1.7vw;
  text-transform: uppercase;
  line-height: 1.1;
}
@media (max-width: 768px) {
  .jobs__content h6 {
    font-size: 10px;
    margin-bottom: 10px;
  }
}
.jobs__content ul {
  list-style: none;
  margin: 0 0 2.5vw;
  padding: 0;
}
@media (max-width: 768px) {
  .jobs__content ul {
    margin-bottom: 10px;
  }
}
.jobs__content ul li {
  font-weight: 400;
  font-size: 1.25vw;
  line-height: 125%;
  color: rgba(19, 52, 63, 0.7);
  position: relative;
  padding-left: 2.8vw;
}
@media (max-width: 768px) {
  .jobs__content ul li {
    font-size: 10px;
  }
}
.jobs__content ul li:not(:last-child) {
  margin-bottom: 1.7vw;
}
.jobs__content ul li:before {
  content: "";
  width: 1.46vw;
  height: 1.46vw;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../img/list-marker.svg") center center/cover;
}
.jobs__content a {
  text-transform: uppercase;
  background: #13343F;
  border-radius: 40px;
  color: #fff;
  padding: 0.79vw 1.8vw;
  text-decoration: none;
  font: 500 1vw "Ubuntu", sans-serif;
  border: 2px solid #13343F;
  display: inline-flex;
  transition: all 0.5s ease;
}
@media (max-width: 1024px) {
  .jobs__content a {
    font-size: 10px;
    padding: 7px 17px;
  }
}
@media (max-width: 768px) {
  .jobs__content a {
    font-size: 9px;
    display: flex;
    margin: 20px auto 0;
    width: max-content;
  }
}
.jobs__content a:hover {
  background: transparent;
  color: #13343F;
}

.projects {
  padding-left: 5.2vw;
  margin-bottom: 6.3vw;
}
@media (max-width: 768px) {
  .projects {
    padding-right: 5.2vw;
    margin-bottom: 50px;
  }
}
.projects__wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .projects__wrap {
    display: block;
  }
}
.projects__img {
  min-width: 36.7vw;
  width: 36.7vw;
  margin-right: 8.7vw;
}
@media (max-width: 768px) {
  .projects__img {
    min-width: 1px;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.projects__img img {
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .projects__img img {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }
}
.projects__info {
  max-width: 37vw;
}
@media (max-width: 768px) {
  .projects__info {
    max-width: 100%;
  }
}
.projects__descr {
  margin-bottom: 1.8vw;
}
@media (max-width: 768px) {
  .projects__descr {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .projects .btn {
    display: flex;
    margin: 0 auto;
    width: max-content;
  }
}

.partners {
  padding: 0 5.2vw;
  margin-bottom: 8.7vw;
}
@media (max-width: 768px) {
  .partners {
    margin-bottom: 50px;
  }
}
.partners__title {
  margin-bottom: 8vw;
}
@media (max-width: 768px) {
  .partners__title {
    margin-bottom: 25px;
  }
}
.partners__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .partners__list {
    display: block;
  }
}
.partners__list li {
  width: 30%;
  min-width: 30%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .partners__list li {
    width: 100%;
    min-width: 100%;
    align-items: center;
  }
  .partners__list li:not(:last-child) {
    margin-bottom: 25px;
  }
}
.partners__list li img {
  display: flex;
  margin: 0 auto 2.5vw;
}
@media (max-width: 1024px) {
  .partners__list li img {
    max-height: 70px;
  }
}
@media (max-width: 768px) {
  .partners__list li img {
    max-height: 40px;
    margin: 0 auto 5px;
    max-width: 120px;
  }
}
.partners__list li span {
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.3vw;
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 768px) {
  .partners__list li span {
    font-size: 12px;
  }
}

.footer {
  background: #F3F3F3;
  padding: 4.9vw 5.2vw;
  color: #13343F;
  font-family: "Ubuntu", sans-serif;
  font-size: 1.25vw;
}
@media (max-width: 768px) {
  .footer {
    font-size: 12px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.footer__col-1 {
  margin-right: 6.5vw;
}
@media (max-width: 768px) {
  .footer__col-1 {
    margin-right: 0;
  }
}
.footer__col-2 {
  margin-right: 1.4vw;
}
@media (max-width: 768px) {
  .footer__col-2 {
    margin-right: 0;
  }
}
.footer__col-3 {
  margin-top: -0.3vw;
  margin-right: 8.5vw;
}
@media (max-width: 768px) {
  .footer__col-3 {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .footer__col-4 {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .footer__copy {
    display: none;
  }
}
.footer__copy--mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer__copy--mobile {
    display: block;
  }
}
.footer__number {
  margin-bottom: 2.8vw;
}
@media (max-width: 768px) {
  .footer__number {
    margin-bottom: 15px;
  }
}
.footer__number a {
  text-decoration: none;
  color: #13343F;
}
.footer__number:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer__ur {
    display: none;
  }
}
.footer__ur--mobile {
  display: none;
}
@media (max-width: 768px) {
  .footer__ur--mobile {
    display: block;
    margin-bottom: 15px;
  }
}
.footer__ur a {
  color: #13343F;
}
.footer__ur a:hover {
  text-decoration: none;
}
.footer__address {
  margin-bottom: 2.8vw;
}
@media (max-width: 768px) {
  .footer__address {
    margin-bottom: 15px;
  }
}
.footer__wrap {
  display: flex;
}
@media (max-width: 768px) {
  .footer__wrap {
    display: block;
    text-align: center;
  }
}
.footer__soc {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
@media (max-width: 768px) {
  .footer__soc {
    justify-content: center;
  }
}
.footer__soc li:not(:last-child) {
  margin-right: 1vw;
}
@media (max-width: 768px) {
  .footer__soc li:not(:last-child) {
    margin-right: 15px;
  }
}
.footer__soc li a {
  display: flex;
}
.footer__soc li a img {
  width: 2vw;
}
@media (max-width: 768px) {
  .footer__soc li a img {
    width: 25px;
  }
}
.footer__q-title {
  margin-bottom: 2vw;
  padding-left: 0.9vw;
}
@media (max-width: 768px) {
  .footer__q-title {
    padding-left: 0;
    margin-bottom: 5px;
  }
}

.sm {
  align-items: flex-start;
  padding: 0 5.2vw;
  background-position: center right 50%;
}
.sm .head-section__title {
  color: #13343F;
  font-size: 3.7vw;
}
@media (max-width: 768px) {
  .sm .head-section__title {
    font-size: 18px;
  }
}
.sm .head-section__descr {
  margin: 0 0 1.1vw;
  text-align: left;
  color: #13343F;
  font-size: 1.28vw;
  max-width: 40%;
}
@media (max-width: 768px) {
  .sm .head-section__descr {
    padding: 0;
    font-size: 12px;
    margin-bottom: 15px;
    max-width: 57%;
  }
}

.what-we-do {
  padding: 0 5.2vw;
  margin-bottom: 6.4vw;
}
@media (max-width: 768px) {
  .what-we-do {
    margin-bottom: 50px;
  }
}
.what-we-do .numbers__title {
  text-align: left;
}
.what-we-do .numbers__descr {
  margin-left: 0;
}
.what-we-do__item {
  cursor: default;
}
.what-we-do__item .jobs__content {
  color: #13343F;
  display: block;
}
@media (max-width: 768px) {
  .what-we-do__item .jobs__content h6 {
    font-size: 14px;
  }
}

.timeline {
  padding: 0 5.2vw;
  margin-bottom: 6.4vw;
  font-family: "Ubuntu", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .timeline {
    margin-bottom: 50px;
  }
}
.timeline strong {
  font-weight: 600;
  color: #fff;
}

/*# sourceMappingURL=style.css.map */
