@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');

:root {
    --main-gradient: linear-gradient(42deg, rgba(148,27,128,1) 0%, rgba(162,25,91,1) 62%);
  }

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 1.2em;
}

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

p, li {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #212121;
    line-height: 1.8em;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

h2 {
    line-height: 1.5em;
    margin-bottom: 25px;
}

.slide {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (min-width: 769px) {
    .slide {
        padding-top: 100px;
    }   
}

.gradient {
    background: var(--main-gradient);
    padding-top: 50px;
    padding-bottom: 50px;
    color: #fff !important; 
}

.gradient p, li {
    color: #fff !important; 
}

.punchline {
    font-size: 3rem;
    text-transform: uppercase;
}

@media (min-width: 769px) {
    .punchline {
        font-size: 6rem;
    }   
}

.header-logo {
    width: 250px;
    margin: 0 auto;
    background-color: #fff;
    margin-top: 50px;
    margin-bottom: 50px;
}

.header-hero {
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
    position: relative;
}

@media (min-width: 769px) {
    .header-hero {
        padding-top: 150px;
        padding-bottom: 150px;
    }   
}

.hero-header-icon {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    opacity: 0.5;
    animation: iconRotate 50s ease 0s infinite normal forwards;
}

@keyframes iconRotate {
    0% {
      transform: rotate(0);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

.text-bg {
    background: var(--main-gradient);
    padding: 5px;
    color: #fff !important;
}

.btn-white {
    border: none;
    padding: 15px;
    background-color: #fff;
    border-radius: 40px;
    margin-top: 15px;
    transition: all 0.25s ease-in-out;
    color: #a3195b;
}

.btn-white:hover {
    padding-left: 35px;
    padding-right: 35px;
}

.btn-color {
    border: none;
    padding: 15px;
    background-color: var(--main-gradient);
    border-radius: 40px;
    margin-top: 15px;
    transition: all 0.25s ease-in-out;
    color: #fff;
}

footer {
    background-color: #f3f3f3;
    padding-top: 100px;
    padding-bottom: 100px;
}

footer a {
    margin-right: 25px;
    color: #3f3f3f;
    text-decoration: none;
    font-weight: 300;
    transition: all 0.25s ease-in-out;
}

footer a:hover {
    color: #a3195b;
}