@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: local(''),
        url('/fonts/roboto-v27-latin-100.woff2') format('woff2'),
        url('/fonts/roboto-v27-latin-100.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local(''),
        url('/fonts/roboto-v27-latin-400.woff2') format('woff2'),
        url('/fonts/roboto-v27-latin-400.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: bold;
    font-weight: 700;
    src: local(''),
        url('/fonts/roboto-v27-latin-700.woff2') format('woff2'),
        url('/fonts/roboto-v27-latin-700.woff') format('woff');
}

html {
    font-size: 10px;
}

body {
    margin: 0;
    background-color: #202020;
    color: #cccccc;
    font-family: 'Roboto', sans-serif;
    font-size: 150%;
}

a {
    color: #cccccc;
    text-decoration: none;
}

[class^='icon-'] {
    display: inline-block;
    width: 16px;
    height: 16px;
}

/* Icons */
.icon-check {
    background-image: url(/images/check.svg);
}

section {

}

    section.dark {
        background-color: #333333;
    }

    section.light {
        background-color: #777777;
    }

    section .two-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        justify-content: center;
    }

    section .container {
        max-width: 110rem;
        margin: 0 auto;
    }

    section .hero {
        display: grid;    
        text-align: center;
        padding-top: 2rem;
    }

        section .hero .hero-title {
            font-weight: 100;
            font-size: 6rem;
            margin: 0 auto 2rem;
            width: min(80%, 50rem);
        }

            section .hero .hero-title .premium-feature {
                background-color: #f6c508;
                color: black;    
                font-size: 50%;
                padding: .5rem;
                position: relative;
                left: 1rem;
                top: -.75rem;
            }

            section .two-cols .hero .hero-title {
                font-size: 3.3rem;
            }

        section .hero .hero-description {
            width: 80%;
            margin: -1rem auto 2rem;
            line-height: 1.75;
        }

    section .header {
        display: grid;
        grid-template-columns: 1fr 3fr;
        grid-template-rows: 5rem;
        padding-top: 0;
    } 

        section .header .logo {
            align-self: center;
            padding: 0;
        }
        
            section .header .logo img {
                height: 2.5rem;
                padding-top: .8rem;
            }
    
    section .hero-image {
        margin: 0 auto;
        max-width: 80%;
        max-height: 40rem;;
        align-self: end;
        overflow: hidden;
    }

        section .hero-image img {
            width: 100%;
        }

        section .two-cols .hero-image {
            max-height: 20rem;
        }

    section.footer {
        background-color: #202020;
    }

        section.footer .container {
            text-align: right;
            padding: 2rem;
        }

.tabs {
    display: flex;
}

.tabs .tab {
    display: flex;
    width: 33.3%;
    height: 5rem;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

    .tabs .tab.register {
        background-color: #f6c508;
        color: black;
    }

.tabs .active {
    background-color: #333333;
}

.pricing {
    padding: 2rem;
}

    .pricing-content {
        display: grid;
        grid-template-columns: 1fr;
    }

        .pricing-row {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
        }

            .pricing-row:nth-child(even) {
                background-color: #444444;
            }

            .pricing-row.pricing-header .pricing-basic,
            .pricing-row.pricing-footer .pricing-basic {
                background-color: #555555;
                padding: 0 !important;
            }

            .pricing-row.pricing-header .pricing-premium,
            .pricing-row.pricing-footer .pricing-premium {
                background-color: #f6c508;
                color: black;
                padding: 0 !important;
            }

        .pricing-basic {
            text-align: center;
            padding: 1rem;
        }

        .pricing-premium {
            text-align: center;
            padding: 1rem;
        }
        
        .pricing-title {
            font-weight: 100;
            font-size: 4rem;
            padding: 1rem 2rem 0 2rem;
        }
        
        .pricing .pricing-offer {
            font-weight: 100;
            font-size: 2.5rem;
            padding: 0 2rem 1rem 2rem; 
        }
        
            .pricing .pricing-offer .pricing-offer-small {
                font-weight: 100;
                font-size: 2rem;
            }

        .pricing-description {
            padding: 1rem;
        }

        .pricing-button {
            display: block;
            padding: 1rem;
            font-weight: 100;
            font-size: 2.5rem;
        }

@media (max-width: 1000px) {
    section .header {
        grid-template-columns: 1fr;
        grid-template-rows: 5rem 5rem;
        padding-left: 0;
        padding-right: 0;
    }

        section .header .logo {
            text-align: left;
            padding-left: 2rem;
        }

    section .hero .hero-image {
        height: min(40rem, 35vw);
    }

        section .two-cols .hero .hero-image {
            height: min(20rem, 17.5vw);
        }
    
    section .hero .hero-title {
        font-size: max(3rem, 6vw);
    }

        section .two-cols .hero .hero-title {
            font-size: max(1.5rem, 3.3vw);
        }
        
    .pricing-title {
        font-size: 4rem;
        font-size: max(2rem, 4vw);
    }
    
    .pricing .pricing-offer,
    .pricing-button {
        font-size: 2.5rem;
        font-size: max(1.5rem, 2.5vw);
    }
}

@media (max-width: 800px) {
    section .two-cols {
        grid-template-columns: 1fr;
    }

    section .two-cols .hero .hero-title {
        font-size: max(3rem, 6vw) !important;
    }

    section .two-cols .hero .hero-image {
        height: min(40rem, 35vw);
    }
    
    section.dark .two-cols .col-2 {
        background-color: #777777;
    }
    
    section.light .two-cols .col-1 {
        background-color: #333333;
    }
    
    .pricing-content {
        grid-template-columns: 1fr;
    }
        
    .pricing .pricing-offer,
    .pricing-button {
        font-weight: 400;
    }
}
