:root {
    --primary-color: #791fe0;
    --dark-color: #141414;
    --grey-color: #999;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #000;
    color: var(--grey-color);
}

ul {
    list-style-type: none;
}

h1,
h2,
h3,
h4 {
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

p {
    margin: 0.5rem 0;
}

img {
    width: 100%;
}

/* FOND DU SITE */
html, body {
    margin: 0;
    height: 100%;
    width: 100%;
  }
  
  body {
    overflow-x: hidden;
    background-color: #111;
  }
  
  .wrapper-background {
    background-color: #111;
    position: fixed;
    top: 5%;
    left: 0;
    right: 0;
    bottom: 0;
    transform: skew(-10deg, -10deg) scale(2);
    overflow: hidden;
    z-index: -1;
  }
  
  .item {
    background-color: #000;
    display: inline-block;
    margin: 2px;
    height: 100px;
    background-size: cover;
  }
  
  .vignette {
    background-color: black;
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    width: 30vw;
  }
  
  .wrapper-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    display: grid;
    grid-template-columns: 10% auto;
    align-content: center;
    font-size: 200%;
    line-height: 200%;
  }
  
  .inner-content {
    grid-column: 2;
  }
  
  button {
    bordeR: none;
    border-radius: 5px;
    padding: 1%;
  }
  
  button.signup {
    background-color: #20bfdf;
    color: white;
  }
  
  svg {
    height: 100px;
    width: 100px;
  }












/* Header */

.showcase {
    width: 100%;
    height: 93vh;
    position: relative;
}

.showcase::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0,0,0, 0.5);
    background-image: linear-gradient(0deg,rgba(0,0,0,0) 50%,rgba(0,0,0,.8) 100%),radial-gradient(50% 120%,rgba(0,0,0,0) 50%,rgba(0,0,0,.7) 100%);
    /* box-shadow: inset 120px 100px 250px #000, inset -120px -100px -250px #000; */
}

.showcase-top {
    position: relative;
    z-index: 2;
    height: 90px;
}

.showcase-logo {
    width: 170px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.showcase-top__btn {
    position: absolute;
    top: 35%;
    right: -3%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.btn-icon {
    padding-left: 1.25rem;
}

.showcase-content {
    position: relative;
    z-index: 2;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 9rem; 
}

.showcase-content__title {
    font-weight: 700;
    font-size: 5.2rem;
    line-height: 1.1;
    margin: 0 0 2rem;    
}

.showcase-content__paragraph {
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 0 0 2rem;
}

/* Tabs */
.tabs {
    background: var(--dark-color);
    padding-top: 1rem;
    border-bottom: 3px solid #3d3d3d;
}

.tabs .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tabs-paragraph {
    font-size: 1.2rem;
    padding-top: 0.5rem;
}

.tabs .container > div {
    padding: 1.5rem 0;
}

.tabs .container > div:hover {
    color: #fff;
    cursor: pointer;
}

.tab-border {
    border-bottom: 4px solid var(--primary-color);
}

/* TAB Content */
.tab-content {
    padding: 3rem 0;
    background: #000;
    color: #fff;
}

/* Hide content initially */
#tab-1-content,
#tab-2-content,
#tab-3-content,
#tab-4-content {
    display: none;
}

.show {
    display: block!important;
}

.tab-1-content-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
    align-items: center;
    justify-content: center;
}

.tab-2-content-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
}

.tab-2-content-bottom {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.table {
    width: 100%;
    margin-top: 2rem;
    border-collapse: collapse;
    border-spacing: 0;
}

.table thead th {
    text-transform: uppercase;
    padding: 0.8rem;
}

.table tbody tr td {
    color: #999;
    padding: 0.8rem 1.2rem;
    text-align: center;
}

.table tbody tr td:first-child {
    text-align: left;
}

.pricing-table-row:nth-child(4n) {
    background: #222;
}

.alt-header {
    display: none;
}

/* Footer */
.footer {
    padding:1rem 12.5%;
    overflow: auto;
    background-color: var(--dark-color);
}

.footer,
.footer a {
    color: var(--grey-color);
}

.footer-top {
    margin: 0 0 1.5rem;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem;
}

.footer li {
    line-height: 1.9;
}

.footer__link {
    font-size: 0.9rem;
}

.footer-country {
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.footer-top__link {
    font-size: 1rem;
}

.footer__link:hover {
    border-bottom: 1px solid var(--grey-color);
}

/* container */
.container {
    max-width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

.container-mobile {
    max-width: 90%;
    padding: 0;
}

/* Text Styles */
.text-xl {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.text-lg {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.text-dark {
    color: var(--grey-color);
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.4rem 1.3rem;
    font-size: 1rem;
    text-align: center;
    border: none;
    cursor: pointer;
    margin-right: 0.5rem;
    outline: none;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

.btn:hover {
    opacity: 0.9;
}

.btn-rounded {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.btn-lg {
    font-size: 1rem;
	padding: 0.8rem 1.3rem;
	text-transform: uppercase;
}

.btn-xl {
    font-size: 2rem;
    padding: 1.5rem 2.1rem;
    text-transform: uppercase;
}

/* Media queries */
@media (max-width: 992px) {
    
    .hide-sm {
        display: none;
    }

    .showcase-logo {
        top: 25%;
        left: 3%;
        transform: translate(0);
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
    } 
    
    .showcase-content__title {
        font-size: 3.7rem;
        line-height: 1;
    }

    .showcase-content__paragraph {
        font-size: 1.5rem;
    }

    .btn-xl {
        font-size: 1.5rem;
        padding: 1.4rem 2rem;
    }

    .text-xl {
        font-size: 1.5rem;
    }

    .text-lg {
        font-size: 1.3rem;
    }

    .text-md {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .showcase {
        height: 90vh;
    }

    .showcase::after {
        background: none;
        background-image: linear-gradient(to bottom,rgba(0,0,0,.5) 5%,rgba(0,0,0,0) 95%);
    }
    
    .footer-cols {
        grid-template-columns: repeat(2, 1fr);
    }

    .tab-1-content-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tab-2-content-top {
        display: block;
        text-align: center;
    }

    .tab-2-content-bottom {
        grid-template-columns: 1fr;
    }

    .showcase-content__title {
        font-size: 3rem;
        line-height: 1;
    }

    .showcase-content__paragraph {
        font-size: 1.2rem;
    }

    /* Table */
    .header-th {
        font-size: 0.8rem;
    }
    
    .header-th:first-child {
        display: none;
    }

    .header-th:first-child:not(:first-child) {
        width: 33%;
        min-width: 33%;
        text-align: center;
    }

    .alt-header {
        display: table-row;
    }

    .pricing-table-data {
        font-size: 0.7rem;
    }

    .pricing-table-data:first-child {
        display: none;
    }

    .pricing-mobile-th {
        padding: 10px 0;
        font-size: 0.75rem;
        font-weight: 400;
        color: var(--grey-color);
    }

    .pricing-table-row:nth-child(2n) {
        background: #111;
    }

    .btn-xl {
        font-size: 1.3rem;
        padding: 1.2rem 1.6rem;
    }
}

@media (max-width: 576px) {
    .showcase-logo {
        width: 75px;
    }

    .showcase-top__btn {
        right: -8%;
    }

    .showcase-content__title {
        font-size: 2.5rem;
        margin: 0 0 0.3rem;
    }

    .showcase-content__paragraph {
        font-size: 1.1rem;
        margin: 0 0 1rem;
    }

    .btn {
        margin: 0 auto;
    }

    .btn-xl {
        font-size: 1rem;
    }
}