@font-face {
  font-family: 'Proxima Nova';
  src: local('ProximaNova-Light'),
        url('assets/fonts/ProximaNova/ProximaNova-Light.woff2');
  font-weight: 300;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: local('Proxima Nova Regular'), local('ProximaNova-Regular'),
        url('assets/fonts/ProximaNova/ProximaNova-Regular.woff2');
  font-weight: 400;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Proxima Nova';
  src: local('Proxima Nova Bold'), local('ProximaNova-Bold'),
        url('assets/fonts/ProximaNova/ProximaNova-Bold.woff2');
  font-weight: 700;
  font-style: normal;
	font-display: swap;
}
@font-face {
  font-family: 'Oswald';
  src: local('Oswald SemiBold'), local('Oswald-SemiBold'),
        url('assets/fonts/Oswald/Oswald-SemiBold.woff2');
  font-weight: 600;
  font-style: normal;
	font-display: swap;
}

/* === general === */
body {
  background: #fff;
}
main {
  padding-top: 70px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Proxima Nova', sans-serif;
  font-style: normal;
  line-height: normal;
  color: #333;
}
.container {
  margin: 0 auto;
  max-width: 100%;
  width: 1220px;
  height: 100%;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
section {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}
h1,h2,h3,h4 {
  font-weight: 700;
}
h1 {
  margin-bottom: 50px;
  color:rgba(26, 26, 26, 1);
  text-transform: uppercase;
  font-size: 40px;
}
h2 {
  font-size: 36px;
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 20px;
}
img {
  display: block;
}
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 16px;
  box-sizing: content-box;
  border-radius: 10px;
  background: #FFB200;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  white-space: nowrap;
  transition: 0.4s;
}
.btn:hover {
  cursor: pointer;
  background: #4c76ff;
}
p {
  color:rgba(27, 27, 27, 1);
  font-size: 16px;
}
.h2--title {
  display: flex;
  gap: 20px;
  align-items: baseline;
}
.h2--title::before {
  content: "";
  display: block;
  width: 30px;
  min-width: 30px;
  height: 40px;
  background: url("assets/imgs/h2-title-before.svg") no-repeat center center/cover;
}

/* === header === */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
}
header .container {
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
}
.lang-switcher { 
  position: relative; 
  display: inline-block;
}
.lang-current {
  cursor: pointer; 
  display: flex; 
  align-items: center; 
  gap: 12px;
  user-select: none;
}
.lang-current .arrow { 
  transition: transform .2s;
}
.lang-switcher.open .arrow { 
  transform: rotate(180deg); 
}
.lang-menu {
  position: absolute; 
  top: 100%; 
  right: 0; 
  margin-top: 4px;
  border: 1px solid #ccc; 
  border-radius: 6px; 
  background: #fff;
  min-width: 100%; 
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  display: none; 
  overflow: hidden;
}
.lang-switcher.open .lang-menu { 
  display: block; 
}
.lang-menu a {
  display: block;
  padding: 8px 14px;
  text-decoration: none;
  color: #333; white-space: nowrap;
}
.lang-menu a:hover { 
  background: #f2f2f2; 
}
.lang-menu a.active { 
  font-weight: bold; 
  background: #f7f7f7; 
}


/* === hero === */

.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero__box {
  display: flex;
  gap: 30px;
}
.hero__col-1 {
  width: 550px;
}
.hero__h4 {
  margin-bottom: 49px;
  position: relative;
}
.hero__h4 span {
  font: inherit;
  color: rgba(255, 255, 255, 1);
  position: relative;
  z-index: 2;
}
.hero__h4--line {
  height: 80px;
  width: 100vw;
  position: absolute;
  z-index: 1;
  right: -75px;
  top: -16px;
  display: flex;
  justify-content: flex-end;
}
.hero__h4--line::before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  right: 900px;
  position: absolute;
  top: 0;
  background: #01b8c0;
}
.hero__ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero__li {
  position: relative;
  padding-left: 45px;
}
.hero__li::before {
  content: "";
  display: block;
  width: 30px;
  height: 29px;
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
  background: url(assets/imgs/hero-li.svg) no-repeat;
}
.hero__col-2 {
  padding-top: 50px;
  width: calc(100% - 580px);
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-bottom: 15px;
}
.hero--img {
  position: relative;
  z-index: 2;
}
.hero--arrow {
  position: absolute;
  bottom: 0;
  left: 0;
}


/* === results === */

.results {
  padding-top: 20px;
  padding-bottom: 20px;
}
.results--bg {
  position: absolute;
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
  top: 0;
}
.results--bg-1 {
  right: calc(50% - 5px);
}
.results--bg-2 {
  left: calc(50% - 5px);
  transform: rotate(180deg);
}
.results--h2 {
  margin-bottom: 35px;
  color: #fff;
}
.results__box {
  display: flex;
  flex-wrap: wrap;
}
.results__item {
  position: relative;
  width: 25%;
  padding: 35px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.results__item--h4,
.results__item--h4 .result-count {
  text-align: center;
  color: rgba(0, 224, 232, 1);
  font-size: 64px;
  font-weight: 600;
  line-height: 105%;
  text-transform: uppercase;
}
.results__item--h4 small {
  padding-left: 5px;
  font-size: 24px;
  color: rgba(0, 224, 232, 1);
}
.results__item--h4 span:not(.result-count) {
  color: #FFF;
  font-family: "Proxima Nova";
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  display: block;
  height: 40px;
  max-width: 280px;
}
.results__item:nth-child(5)::after,
.results__item:nth-child(6)::after,
.results__item:nth-child(7)::after,
.results__item:nth-child(8)::after {
  content: "";
  display: block;
  width: 81.4%;
  height: 1px;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 9.3%;
  opacity: 0.2;
}
.results__item:nth-child(1)::before,
.results__item:nth-child(2)::before,
.results__item:nth-child(3)::before,
.results__item:nth-child(5)::before,
.results__item:nth-child(6)::before,
.results__item:nth-child(7)::before {
  content: "";
  display: block;
  width: 1px;
  height: 50.6%;
  background: #FFF;
  position: absolute;
  right: -0.5px;
  top: 29%;
  opacity: 0.2;
} 
.results__item:nth-child(5)::before,
.results__item:nth-child(6)::before,
.results__item:nth-child(7)::before {
  top: 20%;
}
.results--p {
  margin-bottom: 10px;
  color: #fff;
}
.results.results-2 {
  padding-bottom: 105px;
}
.results-2 .results--h2 {
  margin-bottom: 25px;
}

/* === who-need === */

.who-need {
  padding: 80px 0;
}
.who-need__box {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.who-need__item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  width: calc(33% - 10px);
  border: 1px solid rgba(237, 237, 237, 1);
}
.who-need__item--img {
  display: block;
}
.who-need__item--icon {
  position: absolute;
  top: 50px;
  left: calc(50% - 50px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(1, 183, 191, 1);
}
.who-need__item__content {
  padding: 20px 15px 30px 15px;
}
.who-need__item__content h3 {
  margin-bottom: 10px;
  color: rgba(51, 51, 51, 1);
  letter-spacing: -2%;
}
.who-need__item__content p {
  color: rgba(85, 85, 85, 1)
}

.map {
  position: relative;
  height: 700px;
}
.map iframe {
  position: absolute;
  width: 100%;
}
.map .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.map__tab {
  width: 580px;
  height: 330px;
  background: rgba(255, 255, 255, 1);
  border-radius: 20px;
  padding: 5px 25px 10px 25px;
}
.map__tab--img {
  margin-left: -20px;
}
.map__tab--a {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}
.map__tab--a strong {
  font-weight: 700;
}
.map__tab--a svg {
  margin-right: 14px;
}

.footer {
  padding: 40px 0;
}
.copyright {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgba(85, 85, 85, 1);
}



@media (min-width: 1600px){
  .hero__bg {
    width: 100%;
  }
}
@media (max-width: 1220px){
  main {
    padding-top: 60px;
  }
  .header {
    height: 60px;
  }
  .header__logo {
    margin-right: auto;
    padding-right: 10px;
    width: 200px;
  }
  .header__logo__p {
    gap: 3px;
    font-size: 12px;
  }
  .header__logo__svg-2 {
    width: 120px;
  }
  .header__item__btn {
    margin-left: auto;
    font-size: 14px;
    padding: 10px 12px;
  }
}
@media(max-width: 1180px){
  main {
    padding-top: 0;
  }
   .container {
    padding: 0 15px;
  }
  h1 {
    margin-bottom: 30px;
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
    line-height: 100%;
  }
  h3,
  h4 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
    line-height: 140%;
  }
  .btn {
    font-size: 16px;
  }
  .btn-2 {
    font-size: 14px;
    padding: 15px 20px;
  }
  .h2--title {
    gap: 10px;
  }
  .h2--title::before {
    width: 20px;
    height: 30px;
    min-width: 20px;
  }
   .results {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .results__item {
    width: 50%;
  }
  .results__item--h4 {
    font-size: 34px;
  }
  .results__item--h4 .result-count {
    font-size: 40px;
  }
  .results__item::after {
    content: "";
    display: block;
    width: 82%;
    height: 1px;
    background: #FFF;
    position: absolute;
    top: 0;
    left: 9%;
    opacity: 0.2;
  }
  .results__item:nth-child(2n-1):before {
    display: none;
  }
  .results__item:nth-child(2n):before {
    content: "";
    display: block;
    width: 1px;
    height: 50.6%;
    background: #FFF;
    position: absolute;
    left: -0.5px;
    right: auto;
    top: 29%;
    opacity: 0.2;
  }
  .results__item:nth-child(1):after,
  .results__item:nth-child(2):after {
    display: none;
  }
  .results__item--h4 span:not(.result-count) {
    height: auto;
    font-size: 14px;
  }
  .results__item--h4 span:not(.result-count) br {
    display: none;
  }
  .who-need__item {
    width: calc(50% - 10px);
  }
}
@media(max-width: 880px){
  .hero__box {
    flex-direction: column;
  }
  .hero__col-1,
  .hero__col-2 {
    width: 100%;
  }
  .hero__h4 {
    max-width: 600px;
  }
  .hero__h4--line::before {
    display: none;
  }
  .hero__h4--line {
    right: -30px;
  }
  .hero--img {
    width: 100%;
    height: auto;
  }
  .hero--arrow {
    max-height: 100%;
    left: -100px;
  }
  .hero__h4--line {
    background: #01B7BF;
    height: calc(100% + 40px);
    top: -20px;
    right: -15px;
    width: 100vw;
  }
  .hero__h4--line svg {
    display: none;
  }
  .map__tab {
    max-width: 100%;
    height: auto;
  }
}
@media(max-width: 480px){
  main {
    padding-top: 30px;
  }
  .header {
    height: 40px;
  }
  .header .container {
    padding-top: 15px;
  }
  .who-need__item {
    width: 100%;
  }
}