* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.logo{
  max-width: 200px;
}

h2 {
  color: #29256a;
  font-size: 30px;
  font-weight: bold;
  line-height: 35px;
}

p {
  color: black;
  font-size: 1rem;
  line-height: 19px;
  font-weight: 400;
  text-align: justify;
}

h4 {
  color: #0059FF;
  font-size: 12px;
  line-height: 14px;
  font-weight: bold;
  margin-bottom: 6px;
}

a.btn {
  color: #0059FF;
  padding: 14px 51px;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  border-radius: 7px;
  border: 2px solid #0059FF;
  background: #fff;
}

.svg {
  position: absolute;
  width: 0;
  height: 0;
}

.clipped {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-clip-path: url(#my-clip-path);
  clip-path: url(#my-clip-path);
}

header {
  height: 100px;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
}

header .inner {
  max-width: 1920px;
  width: 100%;
  padding: 0 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 1rem;
}

header .inner span {
  width: 1px;
  height: 26px;
  margin: 0 30px;
  background-color: black;
}

.main__page {
  width: 100%;
  max-width: calc(1000px + 2 * 34px);
  padding: 0 34px;
  margin: 0 auto;
}

.mp__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 150px;
}

.mp__lead h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
}

.mp__lead h4 {
  margin-bottom: 34px;
}

.mp__lead p {
  max-width: calc(850px + 2 * 34);
  text-align: justify;
}

/* Main article block */

.main__page .articleTile {
  margin-bottom: 100px;
}

.main__page .articleTile h2 {
  margin-bottom: 26px;
}

.main__page .articleTile p {
  margin-bottom: 1rem;
}

.main__page .articleTile iframe {
  margin-bottom: 28px;
}

.articleTile {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.articleTile.flip .tile__image {
  order: 1;
  padding: 0 0 0 3rem;
}

.articleTile .tile__image {
  width: 50%;
  padding: 0 3rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.articleTile .tile__image h2,
.articleTile .tile__image h4 {
  display: none;
}

.articleTile .tile__image .imge {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.articleTile .tile__text {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 2rem 0;
}

.articleTile iframe {
  width: 100%;
  max-width: 360px;
}

@media screen and (max-width: 768px) {
  header {
    background-color: white;
  }
  .articleTile {
    flex-direction: column;
  }

  .mp__lead {
    margin-bottom: 75px;
  }

  .articleTile .tile__image {
    width: 100%;
    height: 280px;
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
    padding: 0;
  }

  .articleTile .tile__image .clipped {
    width: 100%;
  }

  .articleTile.flip .tile__image {
    padding: 0;
    order: 0;
  }

  .articleTile .tile__text {
    width: 100%;
  }

  .articleTile .tile__text h2,
  .articleTile .tile__text h4 {
    display: none;
  }

  .articleTile .tile__image h2,
  .articleTile .tile__image h4 {
    display: block;
    text-align: center;
  }

  .articleTile iframe {
    width: 100%;
    max-width: 100%;
  }

  .articleTile .tile__text .btn {
    margin: 0 auto;
  }

  .main__page .articleTile {
    margin-bottom: 54px;
  }
}

.embeded-video{
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}

.embeded-video iframe{
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}