/* Variables */
:root {
    --main-bg-color: floralwhite;
}

html, body {
    font-family: 'Avenir', 'Nunito Sans', 'Jost', 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    scroll-behavior: smooth;
    background-color: var(--main-bg-color);
}

/*  MAIN CSS (above the fold)  */

#hero {
    margin: 0;
    height: 180px;
    font-size: 36px;
    padding-top: 30px;
    z-index: 1;
    background-size: cover;
    background: linear-gradient(80deg, rgba(90, 82, 235, 1), rgba(0, 255, 255, 0.5) 100%);
    clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 4vw), 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 4vw), 0 100%);
}


/*img {*/
/*    -webkit-transition: -webkit-transform 1.2s ease-in-out;*/
/*    transition: transform 1.2s ease-in-out;*/
/*}*/

/*#logo img:hover {*/
/*    -webkit-transform: rotate3d(0, -2, 1, 104deg);*/
/*    transform: rotate3d(0, -2, 1, 104deg);*/
/*}*/

.buttons a {
    border-radius: 2px;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 24px;
    margin: 10px 5px 0;

    box-shadow: 1px 1px #888888;
}

#left-button {
    background-color: #3D5DDB;
    color: white;
}

#right-button {
    background-color: #fff;
    color: #637de2;
}


/* SECOND SECTION (main information) */

#second-section {
    display: flex;
    background-color: var(--main-bg-color);
}


.no-line-breaks {
    display: inline-block;
}


/* FEATURES */

#plans {
    /*display: none;*/
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 3em;
    padding-bottom: 15vw;
    background-color: var(--main-bg-color);
    clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 15vw), 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 15vw), 0 100%);
}

#plans section {
    display: block;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /*border-top: 2px solid rgba(0, 0, 0, 0.05);
    border-left: 2px solid rgba(0, 0, 0, 0.05);
    margin-top: -2px;
    margin-left: -2px;*/
}

#plans-table {
    /*width: 100%;*/
    border-collapse: collapse;
    border-style: hidden;
}

#top th {
    padding-left: 25px;
    padding-right: 25px;
    line-height: 10px;
    padding-bottom: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

#top th a {
    line-height: 24px;
}

#plan-basic {
    background-color: lightgrey;
}

#plan-professional {
    background-color: goldenrod;
}

#plan-supreme {
    background-color: lightblue;
}

#plans-table td {
    border: 1px dashed grey;
    padding: 20px;
}

#plans-table .fa-check {
    /*color: #1479de;*/
    color: seagreen;
}

#plans-table .fa-times {
    color: #cccccc;
}

#plans-abbreviated {
    justify-content: center;
    display: none;
    flex-wrap: wrap;
    text-align: center;
    margin-top: 3em;
    padding-bottom: 15vw;
    background-color: var(--main-bg-color);
    clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 15vw), 0 100%);
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% calc(100% - 15vw), 0 100%);
}

#plans-abbreviated div {
    width: 300px;
    margin: auto auto 15px;
}

#plans-abbreviated ul {
    text-align: left;
    list-style: none;
}

#plans-abbreviated li {
    position: relative;
}

#plans-abbreviated li:before {
    display: inline-block;
    padding-right: 10px;
    font-family: FontAwesome, serif;
    content: "\f00c";
    text-align: center;
}

#plan-abbr-basic {
    border: 1px solid black;
    background-color: lightgrey;
    border-radius: 20px;
    padding: 10px 25px 20px;
}

#plan-abbr-professional {
    border: 1px solid black;
    background-color: goldenrod;
    border-radius: 20px;
    padding: 10px 25px 20px;
}

#plan-abbr-supreme {
    border: 1px solid black;
    background-color: lightblue;
    border-radius: 20px;
    padding: 10px 25px 20px;
}

/* FOOTER */

footer {
    margin-top: -15vw;
    background-color: #eee;
    padding-bottom: 20px;
    overflow-x: hidden;
}

#call-to-action {
    padding-top: 5vw;
    width: 42vw;
    margin-left: 58vw;
    /*background-color: orange;*/
}

#call-to-action h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

#get-button {
    background-color: #3D5DDB;
    color: white;
}

#call-to-action .buttons {
    margin-top: -2vw;
}

#call-to-action .buttons a {
    font-size: 28px;
}

#contact-button {
    background-color: var(--main-bg-color);
    color: darkgoldenrod;
}

#sitemap {
    padding-top: 60px;
    columns: 3 120px;
    -webkit-columns: 3 120px;
    -moz-columns: 3 120px;
    margin-left: 20vw;
    margin-right: 20vw;
    orphans: 1;
    widows: 1;
}

footer .column {
    display: inline-block;
    width: 100%;
}

#sitemap ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

#sitemap li {
    margin-bottom: 10px;
}

#sitemap a {
    color: #444;
}

#sitemap a:visited {
    color: #808080;
}

#bottom {
    margin-top: 60px;
    color: #444;
}


/* MEDIA QUERIES */

#minuteman {
    position: absolute;
    top: 50vh;
    right: 8vw;
    mix-blend-mode: luminosity;
    z-index: 5;
    background-color: transparent;
}


@media only screen and (max-width: 718px) {
    #plans {
        display: none;
    }

    #plans-abbreviated {
        display: block;
    }
}


.icon {
    display: block;
    margin: 0 0 1rem;
    text-align: center;
}

.icon:before {
    border-radius: 2.75em;
    display: inline-block;
    height: 2.75em;
    line-height: 2.75em;
    width: 2.75em;
    font-size: 1.25rem;
    /*-webkit-font-smoothing: antialiased;*/
    font-family: FontAwesome, serif;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .2);
}


/* TOP MENU */

nav a {
    text-decoration: none;
    margin-right: calc(0.5em + 1vw);
    color: whitesmoke;
}

nav {
    position: absolute;
    line-height: 100px;
    height: 100px;
    font-size: 24px;
    text-align: left;
    margin-left: 10vw;
    color: whitesmoke;
    z-index: 2;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav li {
    color: whitesmoke;
    display: block;
    float: left;
    padding-left: 0.5vw;
    padding-right: 0.5vw;
    position: relative;
    text-decoration: none;
    transition-duration: 0.5s;
}

nav li a {
    color: whitesmoke;
}

nav li:hover,
nav li:focus-within {
    cursor: pointer;
}

nav li:focus-within a {
    outline: none;
}

nav ul li ul {
    background: whitesmoke;
    color: black;
    visibility: hidden;
    opacity: 0;
    min-width: 340px;
    position: absolute;
    margin-top: -30px;
    left: 0;
    z-index: 10;
    display: none;
    -webkit-animation: fadeInFromNone 0.5s ease-out;
    animation: fadeInFromNone 0.5s ease-out;
    border-radius: 5px;

    transition: color 10.2s ease;
}

nav ul li:hover > ul,
nav ul li:focus-within > ul,
nav ul li ul:hover,
nav ul li ul:focus {
    visibility: visible;
    opacity: 1;
    display: block;
}

nav ul li ul li {
    clear: both;
    width: 100%;
    line-height: 60px;
}

nav ul li ul :hover {
    color: darkgray;
}

nav ul li ul li a {
    padding-left: 10%;
    color: #333;
}

@-webkit-keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@keyframes fadeInFromNone {
    0% {
        display: none;
        opacity: 0;
    }

    1% {
        display: block;
        opacity: 0;
    }

    100% {
        display: block;
        opacity: 1;
    }
}

@media only screen and (max-width: 1400px) {
    #minuteman {
        display: none;
    }

    #call-to-action {
        padding-top: 10vw;
        width: 85%;
        margin: auto;
    }

    /*#second {*/
    /*    width: 70%;*/
    /*    margin: auto;*/
    /*}*/
}

@media only screen and (max-width: 800px) {
    #main-info {
        width: 85%;
        margin: auto;
    }

    #call-to-action {
        padding-top: 8vw;
    }
}

.price {
    font-size: 18px;
    padding-top: 6px;
    white-space: nowrap;
}

.marked-down {
    font-weight: 300;
    color: #000;
}