@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@700&display=swap');

* {
    box-sizing: border-box;
}

html {
    font-family: 'Raleway', sans-serif;
    background-color: white;
    font-size: 100%;
}

body {
    color: black;
    margin: 0;
}

main {
    margin: 0 auto;
}

header {
    display: flex;
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #5b5656;
    padding: 0 5vw;
    box-shadow: 0 2px 0 rgba(0, 0, 0, 0.4);
    z-index: 1;
}

nav {
    flex: 90%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar a {
    color: #f2f2f2;
    padding: 14px 16px;
    text-decoration: none;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
}

.navbar .hamburger {
    display: none;
}

.hero {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
    width: 100%;
    height: 100vh;
    padding: 0 40px;
    overflow: hidden;
    background-size: cover;
    background: linear-gradient(125deg, #00FF57 0%, #010033 40%, #460043 70%, #F0FFC5 100%), linear-gradient(55deg, #0014C9 0%, #410060 100%), linear-gradient(300deg, #FFC700 0%, #001AFF 100%), radial-gradient(135% 215% at 115% 40%, #393939 0%, #393939 40%, #849561 calc(40% + 1px), #849561 60%, #EED690 calc(60% + 1px), #EED690 80%, #ECEFD8 calc(80% + 1px), #ECEFD8 100%), linear-gradient(125deg, #282D4F 0%, #282D4F 40%, #23103A calc(40% + 1px), #23103A 70%, #A0204C calc(70% + 1px), #A0204C 88%, #FF6C00 calc(88% + 1px), #FF6C00 100%);
    background-blend-mode: overlay, screen, overlay, overlay, normal;
}

#hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: 400%;
    line-height: 1;
    color: #f9f871;
    margin: 0;
}

.hero h2 {
    color: white;
}

#hero-link {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.hero a {
    font-size: 120%;
    text-decoration: none;
    color: white;
    background-color: #0083ff;
    padding: 20px 40px;
    border-radius: 50px;
    text-shadow: none;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

#img-div {
    height: 90%;
}

.hero img {
    margin-top: 70px;
    height: 100%;
}

.content {
    max-width: 90%;
    margin: 0 auto;
}

.content h1 {
    margin-top: 40px;
    font-size: 200%;
    text-align: center;
}

.steps-div,
.steps-item,
.plus-div,
.plus-item,
#faq-div,
.plans-div {
    display: flex;
    flex-direction: row;
}

.steps-items,
.plus-items {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.steps-item,
.plus-item {
    flex: 1;
    background-color: #eee;
    position: relative;
    margin: 5px 0;
    padding: 0 10px;
}

.steps-items .steps-item:not(:last-child):before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #2c3e50 transparent transparent transparent;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
}

.steps-icon,
.plus-icon {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.steps-text h2,
.plus-text h2 {
    margin-bottom: 0;
}

.steps-text p,
.plus-text p {
    color: #5b5656;
    margin-top: 10px;
}

#steps-img,
#plus-img,
#faq-img {
    display: flex;
    align-items: flex-start;
}

#steps-img img {
    width: 26vw;
    object-fit: contain;
    margin-left: 3vw;
}

#plus-img img {
    width: 22.5vw;
    object-fit: contain;
    margin-right: 3vw;
}

#faq-img img {
    width: 25.5vw;
    object-fit: contain;
    margin-left: 3vw;
}

.plans-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    background-color: #eee;
    text-align: center;
    width: 33%;
    margin: 10px;
    padding: 10px;
}

.plans-col {
    padding: 20px 30px;
}

.plans-col h2 {
    width: 100%;
    margin-top: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #e30046;
}

.plans-col p span {
    font-size: 300%;
}

.plans-col ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.plans-col ul span {
    margin-right: 10px;
}

li {
    margin-bottom: 15px;
}

.plans-col a {
    text-decoration: none;
    color: white;
    background-color: #0083ff;
    padding: 15px 30px;
    border-radius: 5px;
}

.fa-stack {
    color: #0083ff;
}

.accordion {
    display: flex;
    flex: 90%;
    background-color: #eee;
    color: #444;
    font-family: inherit;
    font-size: 100%;
    cursor: pointer;
    margin: 5px 0;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
}

.active,
.accordion:hover {
    background-color: #ccc;
}

.accordion:after {
    content: '\002B';
    display: flex;
    flex: 10%;
    justify-content: flex-end;
    align-items: center;
    color: #777;
    font-family: sans-serif;
    font-weight: bold;
}

.active:after {
    content: "\2212";
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

footer {
    text-align: center;
    background-color: #5b5656;
    padding: 10px;
    line-height: 0.2;
}

@media only screen and (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }

    .navbar a {
        display: none;
    }

    .navbar a.hamburger {
        float: right;
        display: block;
    }

    .navbar.mobile {
        position: relative;
        flex-direction: column;
    }

    .navbar.mobile a {
        float: none;
        display: block;
        text-align: center;
        width: 100%;
    }

    .navbar.mobile a.hamburger {
        position: absolute;
        right: 0;
        top: 0;
        width: auto;
    }

    .hero {
        flex-direction: column;
        padding: 0 10px;
    }

    #hero-text {
        width: 100%;
    }

    #img-div {
        display: none;
    }

    .steps-div,
    #faq-div,
    .plans-div {
        flex-direction: column;
    }

    .plus-div {
        flex-direction: column-reverse;
    }

    .plans-col,
    #steps-img img,
    #plus-img img,
    #faq-img img {
        width: 90vw;
    }

    .plans-col {
        margin: 5px 0;
    }

    #steps-img img,
    #plus-img img,
    #faq-img img {
        margin: 0;
        margin-top: 10px;
    }
}

@media only screen and (min-width: 769px) {
    body {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 992px) {
    body {
        font-size: 1.2rem;
    }
}
