html {
  box-sizing: border-box;
}

:root,
:before,
:after {
  --main-text-color: #fff;
  --second-text-color: #171717;
  --border-color: #ffffff1A;
  --button-border-color: #ffffff1A;
  --our-work-slides: 5;
  --second-heading: 3.5rem;
  --text-liner-gradient: linear-gradient(110deg, #BE6CFF 0.01%, #2377FF 49.8%, #70E0FF 99.59%);
  --background-liner-gradient: linear-gradient(90deg, #3A4ECB 0%, #7435BF 100%);
  --main-background: #171717;
  --header-background: #171717;
  --footer-background: transparent;
  --fields-color: #2377FF;
  --burger-color: linear-gradient(110deg, #BE6CFF 0.01%, #2377FF 49.8%, #70E0FF 99.59%);
  --button-arrow-background: white;
  --button-header-background: linear-gradient(110deg, #BE6CFF 0.01%, #2377FF 49.8%, #70E0FF 99.59%);
  --right-button-gradient-bg: linear-gradient(90deg, #17171780 0%, #17171700 100%);
  --left-button-gradient-bg: linear-gradient(270deg, #17171799 0%, #17171700 100%);
  --star-icon-color: #FFCE00;
}

body {
  font-family: var(--font-family-body);
  margin: 0;
  color: var(--main-text-color);
}

*,
::after,
::before {
  box-sizing: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-headline);
  font-size: 6rem;
  font-weight: 400;
  line-height: 100%;
}

h2,
h3,
h4,
h5,
h6 {
  font-size: 3.5rem;
  line-height: 100%;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  text-decoration: none;
}

button,
input,
optgroup,
select,
textarea {
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

.max-container {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.carusel-slider.carusel-type-logo {
  padding: 4.56rem var(--container-space);
}

.carusel-slider.carusel-type-awards {
  padding: 5rem var(--container-space);
}

@media (max-width: 1200px) {

  .carusel-slider.carusel-type-logo,
  .carusel-slider.carusel-type-awards {
    padding: 4rem var(--container-space);
  }
}

@media (max-width: 992px) {

  .carusel-slider.carusel-type-logo,
  .carusel-slider.carusel-type-awards {
    padding: 2.5rem var(--container-space);
  }

}

/* Map */
.map-countries-svg path {
  stroke: #171717;
  fill: #414141;
  fill-opacity: 0.8;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
}

.map-countries-svg path.country {
  fill: #0053D9;
}

.map-countries-svg path.country.country-soon {
  fill: #5C9AFF;
}

/* End Map */