body {
  padding: 0;
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url("/static/img/bg-lines.svg?282375d546ad"), url("/static/img/bg-waves.svg?282375d546ad"), url("/static/img/bg-triangle.svg?282375d546ad");
  background-size: 100%;
}

p, ul, ol, a, input, textarea {
  font-size: 18px;
  line-height: 2rem;
}

a {
  color: #ef4c7f;
  text-decoration: none;
}

textarea {
    line-height: initial;
}

h1, h2, h3, h4, h5 {
    color: #333;
}

h1 {
  font-size: 60px;
  line-height: 120%;
  margin: 10px 0;
}

h2 {
    font-size: 45px;
}

h3 {
    font-size: 38px;
}

h4 {
    font-size: 30px;
}

h5 {
    font-size: 20px;
}

.hero {
    width: 100%;
    min-height: 50vh;
    background-size: cover;
    background-position: center;
    display: flex;
    overflow: hidden;
    position: relative;
    padding-top: 60px;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background-color: #f4f6fc;
    position: relative;
}
.hero .grid {
    align-items: center;
}
.hero.white-txt {
    color: #fff;
}
.hero.white-txt h1, .hero.white-txt h2, .hero.white-txt h3, .hero.white-txt h4, .hero.white-txt h5, .hero.white-txt .rich-text {
    color: #fff;
}
.hero .hero-content {
    display: block;
    width: 100%;
    padding: 0 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}
.hero.fullheight {
    min-height: calc(100vh - 60px);
}
.hero.small {
    min-height: 30vh;
}
.hero.large {
    min-height: 85vh;
}

.container {
  display: block;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box; }
.container.narrow {
    max-width: 900px;
}
.container.thin {
    max-width: 600px;
}

.textcenter {
    text-align: center;
}

.block-wrap {
    padding: 60px 10px;
    box-sizing: border-box;
}
.block-wrap.lightgrey {
    background-color: #f5f5f5;
}
.block-wrap.card .container {
    margin-top: -100px;
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 20px;
    padding: 80px;
    box-sizing: border-box;
    box-shadow: 0 5px 20px 5px rgba(28, 90, 125, 0.25);
}
.block-wrap.dark {
    background-color: #191631;
    color: #fff;
}
.block-wrap.dark p, .block-wrap.dark ul, .block-wrap.dark ol {
    color: #a7a9ac;
}
.block-wrap.dark .cards .item {
    background-color: #242a33;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.75);
}

.grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-right: -20px;
    box-sizing: border-box;
}
.grid .item {
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    margin: 10px;
}
.grid .item img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
.grid .item .item-big-img {
    display: block;
    position: relative;
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -20px;
    margin-bottom: 20px;
    padding: 20px;
    height: 0;
    width: 100%;
    padding-bottom: 70%;
}
.grid .item .item-big-img img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.grid.centeritems {
    align-items: center;
}
.grid.cards .item {
    background-color: #fff;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.grid.two {
    flex: 1 0 50%;
}
.grid.two .item {
    width: calc(50% - 20px);
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  z-index: 5;
  transition: all .2s;
  padding: 0;
  background: #fff;
}
header.head {
    background: none;
}
body.white-nav header.head .logo.black {
    display: none;
}
body.white-nav header.head .logo.white {
    display: block;
}
body.white-nav header.head .main-nav ul li a {
    color: #fff;
}

.brand {
    display: inline-block;
    padding: 10px;
}
.brand .logo {
    max-height: 30px;
    display: block;
    transition: all .2s;
}
.brand .logo.white {
    display: none;
}

footer .social {
    background-color: #f5f5f7;
}
footer .sitemap {
    background-color: #fafafb;
}
footer img {
    margin: 24px;
}
footer .footer-desc {
    display: flex;
    align-items: flex-start;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}
footer ul li {
    display: inline-block;
}
footer ul li a {
    color: #888;
    font-weight: bold;
    display: inline-block;
    padding: 8px;
}
footer ul li a:hover {
    color: #333;
}

@media (max-width: 1080px) {
    h1 {
        font-size: 32px; }
    h2 {
        font-size: 20px; }
    h3 {
        font-size: 18px; }
    h4 {
        font-size: 16px; }
    h5 {
        font-size: 14px; }
    p, ul, ol, a, input, textarea {
        font-size: 14px;
        line-height: 1.4rem;
    }
}

@media (max-width: 720px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 26px;
    }
    h3 {
        font-size: 20px;
    }
    h4 {
        font-size: 18px;
    }
    h5 {
        font-size: 16px;
    }
    p, ul, ol, a, input, textarea {
        font-size: 15px;
        line-height: 1.5rem;
    }
    .hero {
        min-height: 50vh;
        background-image: none !important;
    }
    .hero .item:nth-child(2), .hero video {
        display: none;
    }
    .hero.intro .hero-content {
        text-align: left;
    }
    .hero.small {
        min-height: 30vh;
    }
    .hero.large {
        min-height: 65vh;
    }
    .hero .hero-content {
        padding: 0;
    }
    .grid.two, .grid.three, .grid.four {
        flex: 1 0 100%;
    }
    .grid.two .item, .grid.three .item, .grid.four .item {
        width: 100%;
        margin: 0;
    }
    .block-wrap {
        padding: 20px 10px;
    }
    .block-wrap.card .container {
        margin-top: -40px;
        padding: 15px;
    }
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 830px) {
    .sitemap {
        text-align: center;
    }
    .sitemap img {
        display: block;
        margin: auto;
    }
    .sitemap .footer-desc {
        flex-flow: column;
    }
    .sitemap ul {
        width: 100%;
    }
    .sitemap ul li {
        display: block;
    }
}

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

@media print {
    header,
    footer {
        display: none;
    }
    .hero,
    .hero-content {
        margin: 0;
        padding: 0;
    }
    .hero .item,
    .hero-content .item {
        margin: 0;
        padding: 0;
    }
}
