@font-face {
  font-family: 'Graphie Bold';
  src: url('fonts/Graphie-Bold.otf') format('opentype');
}
.flex-display {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.flex-column {
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}
.flex-row {
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
}
.button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  width: 315px;
  height: 72px;
  outline: none;
  border: none;
  text-decoration: none;
}
.button-red {
  background-color: #900c0c;
}
.button-red:hover {
  background-color: #4e15a4;
}
.button-purple {
  background-color: #4e15a4;
}
.button-purple:hover {
  background-color: #900c0c;
}
.button .caption {
  display: block;
  margin: auto;
  color: white;
  font-family: 'Roboto';
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .button {
    width: 290px;
    height: 66px;
  }
  .button .caption {
    font-size: 16px;
  }
}
h2,
h3,
h4 {
  font-family: 'Graphie Bold';
  color: black;
  text-align: center;
  text-transform: uppercase;
}
h2 {
  font-size: 80px;
}
@media (max-width: 800px) {
  h2 {
    font-size: 30px;
  }
}
h3 {
  font-size: 55px;
}
@media (max-width: 800px) {
  h3 {
    font-size: 30px;
  }
}
h4 {
  font-size: 28px;
}
@media (max-width: 800px) {
  h4 {
    font-size: 20px;
  }
}
.card-girl {
  background-image: url("/img/card-girl.png");
}
.card-people {
  background-image: url("/img/card-people.png");
}
.card-man {
  background-image: url("/img/card-man.png");
}
.citation {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  border-left: 20px solid #fee934;
  border-right: 20px solid #fee934;
  position: relative;
}
.citation:after,
.citation:before {
  position: absolute;
  top: 0;
  content: ' ';
  display: block;
  height: calc(100% - 40px);
  width: 33px;
  border-bottom: 20px solid #fee934;
  border-top: 20px solid #fee934;
}
.citation:after {
  right: 0;
}
.citation:before {
  left: 0;
}
.citation .inside {
  width: calc(100% - 106px);
  height: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0 35px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
}
.citation .inside .quotes {
  background-image: url("/img/quotes.png");
  width: 42px;
  height: 33px;
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  margin: -5px auto auto auto;
}
.citation .inside .text {
  font-family: 'Roboto';
  font-weight: 300;
  font-size: 20px;
  margin: auto;
  text-align: center;
  line-height: 36px;
}
.citation .inside .label {
  height: 32px;
  width: 166px;
  background-image: url("/img/citation-label-entrepreneur.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: contain;
  margin: auto auto -8px auto;
}
@media (max-width: 800px) {
  .citation {
    border-width: 15px;
  }
  .citation:after,
  .citation:before {
    width: 27px;
    height: calc(100% - 30px);
    border-width: 15px;
  }
  .citation .inside {
    width: calc(100% - 30px);
    padding: 0;
  }
  .citation .inside .quotes {
    width: 35px;
    height: 27px;
  }
  .citation .inside .label {
    width: 144px;
    height: 29px;
  }
  .citation .inside .text {
    font-size: 16px;
    line-height: 33px;
  }
}
.partner-map-wrap {
  position: relative;
}
.partner-map-wrap .partner-map {
  background-image: url("/img/map.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  top: -70px;
  width: 100%;
  height: 1626px;
  z-index: 1;
}
.partner-map-wrap .content-on-map {
  position: relative;
  z-index: 2;
}
.video-button-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.video-button-wrap .video-button {
  position: relative;
  z-index: 11;
  max-width: 100px;
  min-width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
  background: #fee934;
  transition: 0.25s ease-in-out;
}
.video-button-wrap .video-button svg polygon {
  fill: white;
}
.video-button-wrap .video-button:hover {
  background: #4e15a4;
}
@media (max-width: 800px) {
  .video-button-wrap .video-button {
    height: 50px;
    max-width: 50px;
    min-width: 50px;
  }
}
.link-arrow {
  height: 30px;
  width: 30px;
  border: 2px solid #78909c;
  border-radius: 50%;
  background: url("/img/arrow_g.png") center no-repeat;
  background-size: 18px;
  transition: 0.25s;
}
.link-arrow:hover {
  border-color: #900c0c;
  background-image: url("/img/arrow_r.png");
}
.link-arrow-prev {
  transform: rotate(180deg);
}
