
/* COLORS */
:root {
    --c-primary-d-1: #223047;
    --c-primary-d-2: #241377;
    --c-primary-d-3: #233148;

    --c-primary-l-2: #6d64ed;
    --c-primary-l-1: #948cff;

    --c-white-1: #feebf7;
    --c-white-2: #f5f6fa;

    --c-grey-l-1: #97a4be;  
    --c-grey-l-2: #a099bc;  
    --c-grey-d-1: #2c3233;  

}


/* BASE */
html {
    box-sizing: border-box;
    font-size:  62.5%;

  
}


* {
    margin: 0;
    padding: 0;
}

*,
*::after,
*::before {
    box-sizing: inherit;
}

body {
    font-family: 'Dosis', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 2.1; 
    letter-spacing: 1px;


    color: var(--c-grey-d-1);
} 


/* LAYOUT */

    /* SECTIONS */
section {
    width: 100%;
}

.header {
    background-color: var(--c-primary-d-1);
    height: 63rem;

    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.main {
    background-color: #fff;
    
}

.specs {
    background-color: inherit;
    height: 100%;
    margin: 9% auto;
}

.benefits-1 {
    background-color: var(--c-white-2);
    
}

.benefits-2 {
    background-color: inherit;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-3 {
    background-color: var(--c-white-2);
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    
}

.video {
    background-color: var(--c-primary-d-1);
    height: 68rem;      
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    position: relative;
    z-index: 100;
}

.join-us {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/drive.jpg);
    max-width: 100%;
    background-size: cover;
    background-attachment: fixed;

    height: 65rem;   
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.description {
    background-color: var(--c-primary-d-1);
    height: 35rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

.now-available {
    background-color: var(--c-white-2);
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-us {
    background-color: inherit;

    margin: 9rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer {
    background-color: var(--c-primary-d-1);
    height: 100%;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* GRID */
.container {
    max-width: 120rem;
    padding: 0;
    margin: auto;
}

.row {
    width: 100%;
    margin: auto;
    padding: 0;
}

.col {
    margin: auto;
    padding: 0;
}



/* COMPONENTS */

    /* REUSABLE */

        /* BUTTONS */
.btn {
    text-decoration: none;
    font-size: inherit;
    font-weight: 700;
    border-radius: .6rem;
    background-color: var(--c-primary-l-2);
    transition: all .3s;
    color: var(--c-white-1);
    box-shadow: 0 0 3px 3px rgba(0, 0, 0, .1);

}

.btn:hover {
    background-color: var(--c-primary-l-1);
    box-shadow: 0 4px 6px 2px rgba(0, 0, 0, .2);
    transform: translateY(-4px);
    color: var(--c-white-1);

}

.btn:active {
    box-shadow: 0 3px 4px 1px rgba(0, 0, 0, .15);
    transform: translateY(-1px);
}

.btn-2:link,
.btn-2:visited {
    text-decoration: none;
    font-size: inherit;
    font-weight: 700;
    
    border-radius: .6rem;
    background-color: var(--c-primary-d-1);
    border: 2px solid #e2e3e6;
    color: #fff;
    
}

.btn-2:hover {
    text-decoration: inherit;
    font-weight: 700;
    border: 2px solid  var(--c-primary-l-1);
    background-color: var(--c-primary-l-1);

}


        /* PHARAGRAPHS */
p {
    font-size: inherit;
    color: var(--c-grey-l-1);
}


        /* HEADINGS */
.h1-1 {
    font-size: 4rem;
    font-weight: 500;
    letter-spacing: 1px;
    word-spacing: 3px;
}

.h2-1 {
    font-size: 3rem;
    color: var(--c-primary-d-3);
    font-weight: 600;
}

.h2-2 {
    font-size: 3rem;
    color: #000;
    font-weight: 600;
}

.h4-1 {
    font-size: 1.7rem;
    color: var(--c-primary-d-3);
    font-weight: 600;
}

.h4-2 {
    font-size: 1.7rem;
    color: #fff;
    font-weight: 500;
}


    /* NAVIGATION */
.nav-div {
    position: sticky;
    
    top: 0;
    left: 0;
    z-index: 10000;

    margin: 0;
    
    width: 100%;
    background-color: var(--c-primary-d-1);
}

.navbar {
    margin: auto;
    
    max-width: 120rem;
    height: 100%;
    

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dropdown-menu {
    color: var(--c-white-1);
    background-color: var(--c-primary-l-2); 
    border-radius: 6px;
    
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-24%, 18%);
}


.logo {
    position: relative;
    top: 50%;
    left: 0%;
    transform: translate(0%, 0%);

    width: 15rem;
    height: 100%;

    line-height: 0;
    font-size: 3.5rem;
    font-weight: 700;

    color: var(--c-primary-l-2);
}

.logo div {
    font-size: 2.85rem; 
    font-weight: 700;  

    position: absolute; 
    top: -21%;
    right: 0%;
    transform: translate( 150%, 0%);
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
}

.list-item:not(:last-child) {
    margin-right: 3rem;
}

.list-link:link,
.list-link:visited {
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
}

.list-link:hover {
    cursor: pointer;
    text-decoration: none;
    color: var(--c-primary-l-1);
}

.list-link:active {
    text-decoration: none;
    color: var(--c-primary-l-2);
}


.dropdown-item:hover {
    background-color: rgba(34, 48, 71, .45);
    
}


.list-link2:link,
.list-link2:visited {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
}

.list-link2:active {
    text-decoration: none;
    color: var(--c-primary-l-1);
}


    /* HEADER CONTENT */
.header-content {
    max-width: 98rem;
}

.header-content-image {
    margin-bottom: -9rem;
    z-index: 1;
    
}


    /* SPECS */

.specs__heaeding {
    max-width: 38rem;
}

.specs__heaeding::after {
    content: ""; 
    margin: 8rem auto;
    width: 10rem;
    height: 4px;
    background-color: var(--c-primary-l-1);
}


    /* BENEFITS 1 */

.benefits-1 .row:first-child {
    width: 100%
}

.benefits-1 .row:first-child div {
    margin: 0;
    padding: 0;
}

.benefits-1-content {
    max-width: 51%;
    margin: auto 9% !important;
    
}

.benefits-1-img {
    width: 100%;
}


    /* BENEFITS 2 */
.benefits-2 .container {
    margin: 4.5% auto 3% auto;
}

.benefits-2-specs {
    display: flex;
    justify-content: center;
    position: relative; 
    margin-top: 6%;
}


.benefits-2-img1 {
    max-width: 100%;
}

.benefits-2-img2 {
    max-width: 100%;
}

.spec-div {
    position: absolute; 
    height: 99%; 
    width: 100%;
}

.spec {
    cursor: pointer;
    height: 18%;
    width: 93%;
    
    display: flex;
    justify-content: left;
    align-items: center;

    box-shadow: 0 3px 3px 1px rgba(0, 0, 0, .06);
    border-radius: 3px;
    transition: all .5s;

}

.spec:hover {
    height: 25%;

    background-color: var(--c-primary-l-2);
    box-shadow: 0 .6rem 1rem .5rem rgba(126, 117, 253, .3);

}

.spec:not(:last-child) {
    margin-bottom: 2.1rem;
} 

.spec-img-div {
    flex: 0 0 12%;
    text-align: center;
}

.spec-content {
    flex: 0 0 80%;
}


.spec-p {
    margin: 0;
    padding: 0;

    color: var(--c-primary-d-3); 
    font-weight: 600; 

    display: none;
}

.spec-p p {
    margin: 0;
    padding: 0;
}

.spec:hover .spec-p {
    display: inline;
    transform: translateY(39%);
}


    /* BENEFITS 3 */
.benefits-3-div {
    margin-bottom: -15rem;
    padding-left: 9rem;
    width: 100%;
}

.benefits-3-img1 {
    margin-right: -7.5rem;
    margin-top: 7.5rem;

    width: 90%;
}

.benefits-3-img2 {
    margin-top: 1.5rem;

    width: 108%;
    
}

    /* VIDEO */

    /* JOIN US */
    .join-us .row .text-center * {
        color: var(--c-white-1);
    }


    /* NOW AVAILABLE */
.now-available .row {
    margin: 7.5% auto;
}

.now-available-img1 {
    max-width: 100%;
    position: relative;
    z-index: 10;
    
}

.now-available-img2 {
    max-width: 100%;    
    margin-left: -3.6rem;
    margin-top: 18rem;
    
}


    /* CONTACT */
.contact-us ul {
    list-style-type: none;
}

.contact-us ul li a {
    color: var(--c-grey-l-1);
    text-decoration: none;
}

.contact-us ul li:first-child {
    padding-bottom: 1.8rem;
    font-size: 1.7rem;
    color: var(--c-primary-d-3);
    font-weight: 600;
}

.col-5ali:not(:first-child):not(:last-child) {
    width: 10%;
    margin: 0 6%; 
}

.col-5ali:first-child {
    width: 10%;
    margin: 0 6% 0 0; 
}

.col-5ali:last-child {
    width: 10%;
    margin: 0 0 0 6%; 
}






















/* MEDIA QUERIES */


@media only screen and (max-width: 1640px) {
    /* SPECS */
    .specs {
        background-color: inherit;
        height: 100%;
        margin: 8% auto;
    }

    /* BENEFITS 1 */
    .benefits-1-content {
        max-width: 60%;        
    }
}

@media only screen and (max-width: 1400px) {
    /* BENEFITS 1 */
    .benefits-1-content {
        max-width: 66%;        
    }
}

@media only screen and (max-width: 1250px) {
    html {
        font-size: 60%;
    }

    body {
        font-size: 1.4rem;
    }

    /* NAVBAR */
    .navbar {
        margin: 0 1.5rem;
    }

    /* HEADER CONTENT */
    .header-content-image {
        margin-bottom: 0; 
    }
     
    .header .row:first-child {
        max-width: 75%;
    }

    /* BENEFITS 1 */
    .benefits-1-content {
        max-width: 76.5%;        
    }

    /* BENEFITS 3 */
    .benefits-3-div {
        padding-left: 0rem;
        width: 100%;
    }

    .benefits-3-img1 {
      
        width: auto;
        max-width: 100%;
    }

    .benefits-3-img2 {
        margin-top: 4.5rem;
        width: auto;
        max-width: 100%;
    }
  

    .col-5ali:not(:first-child):not(:last-child) {
        width: 10%;
        margin: 0 5% 0 5%; 
    }

    .col-5ali:first-child, 
    .col-5ali:last-child {
        width: 10%;
        margin: 0 5% 0 5%; 
    }

    
    
}


@media only screen and (max-width: 1100px) {
    html {
        font-size: 57.6%;
    }

    body {
        font-size: 1.5rem;
    }
    

    /* HEADER CONTENT */
    .header {
        height: 54rem;
    }

    .header-content {
        max-width: 90%;
    }

    /* BENEFITS 1 */
    .benefits-1-content {
        max-width: 84%;        
    }
}


@media only screen and (max-width: 990px) {
    .benefits-3 .row {
        margin: 12% auto;
    }
}


@media only screen and (max-width: 960px) {
    html {
        font-size: 54%;
    }

    body {
        font-size: 1.5rem;
    }

    /* HEADER CONTENT */
    .header .row:first-child {
        max-width: 81%
    }

    /* BENEFITS 1 */
    .benefits-1-content {
        max-width: 100%;   
        margin: auto 6% !important;     
    }
}

@media only screen and (max-width: 840px) { 
    html {
        font-size: 54%;
    }

    body {
        font-size: 1.6rem;
    }

    /* HEADER CONTENT */
    .header .row:first-child {
        max-width: 87%;
    }

    /* BENEFITS 1 */
    .benefits-1 .row {
        flex-direction: column;
        align-items: center;
        
    }

    .benefits-1-content {
        margin: 4.5rem auto !important;
        
    }

    /* BENEFITS 2 */ 
    .spec-div {
        height: 100%; 
        width: 100%;
    }
    

    /* NOW AVAILABLE */
 
    .now-available-img2 {
        margin-top: 12rem;
        
    }
}

@media only screen and (max-width: 768px) { 
    html {
        font-size: 51%;
    }

    body {
        font-size: 1.7rem;
    }

    /* HEADER CONTENT */
    .header {
        height: 63rem;
    }

    .header .row:first-child {
        max-width: 93%
    }

    /* SPECS */
    .specs .container {
        max-width: 96%;

    }

    /* BENEFITS 1 */
    .benefits-1 .row .col-6:last-child {
        max-width: 90%
        
    }

    /* BENEFITS 2 */
    .benefits-2-specs {
        height: 45rem;
        width: 100vw;
        padding: 0;
        margin: 0;
    }
    
    .spec-div {
        position: absolute; 
        height: 129%; 
        width: 100%;
    }

    .spec {
        width: 96%;
        margin:  auto;
    }


    .benefits-2 .container {
        padding-bottom: 15rem;
    }

    .benefits-2-img2 {
        width: 100%;
        margin-top: 3rem;
    }

    /* NOW AVAILABLE */
     .now-available .row {
        margin: 7.5% auto;
    }

    .now-available-img1 {
        width: 100%;
        position: relative;
        z-index: 10;
        margin-bottom: auto;
    }

    .now-available-img2 {
        width: 75%;    
        
    }

    .row .col-12 div {
        width: 90%;
    }
}

@media only screen and (max-width: 600px) { 
    html {
        font-size: 48%;
    }

    body {
        font-size: 1.8rem;
    }

    /* HEADER CONTENT */
    .header {
        height: 100%;
    }

    .header .row:first-child {
        max-width: 99%;
        margin: 6rem auto;
    }

    /* SPECS */
    .specs .container {
        width: 90%;

    }

    /* BENEFITS 1 */
    .benefits-1 .row .col-6:last-child {
        margin: auto 1.5rem;
    }

    /* CONTACT */
    .col-5ali:not(:first-child):not(:last-child) {
        width: 20%;
        margin: 0 5% 0 5%; 
    }

    .col-5ali:first-child, 
    .col-5ali:last-child {
        width: 20%;
        margin: 0 5% 0 5%; 
    }
}


@media only screen and (max-width: 480px) { 
    html {
        font-size: 45%;
    }

    body {
        font-size: 1.9rem;
    }

    /* HEADER CONTENT */
    .header {
        height: 100%;
    }

    .header .row:first-child {
        max-width: 99%;
        margin: 6rem auto;
    }

    .get-app {
        display: none;
    }

    /* SPECS */
    .specs .container {
        width: 100%;

    }

    /* BENEFITS 2 */
    .spec {
        justify-content: space-around;
    }
    .benefits-2-specs {
        height: 72rem;;  
    
    }
    .spec-div {
        position: absolute; 
        height: 120%; 
        width: 100%;
    }

    .benefits-2 .container {
        padding-bottom: 9rem;
    }

/* CONTACT */
    .col-5ali:not(:first-child):not(:last-child) {
        width: 30%;
        margin: 0 5% 0 5%; 
    }

    .col-5ali:first-child, 
    .col-5ali:last-child {
        width: 30%;
        margin: 0 5% 0 5%; 
    }
}

/* LOADER */

  #loader {
    animation: animate 1.5s linear infinite;
    clip: rect(0, 80px, 80px, 40px); 
    height: 80px;
    width: 80px;
    position: absolute;
    left: calc(50% - 40px);
    top: calc(50% - 40px);
  }
  @keyframes animate {
    0% { 
      transform: rotate(0deg)
    }
    100% { 
      transform: rotate(220deg)
    }
  }
  #loader:after {
    animation: animate2 1.5s ease-in-out infinite;
    clip: rect(0, 80px, 80px, 40px);
    content:'';
    border-radius: 50%; 
    height: 80px;
    width: 80px;
    position: absolute; 
  } 
  @keyframes animate2 {
    0% {
      box-shadow: inset #948cff 0 0 0 17px;
      transform: rotate(-140deg);
    }
    50% {
      box-shadow: inset #6d64ed 0 0 0 2px;
    }
    100% {
      box-shadow: inset #948cff 0 0 0 17px;
      transform: rotate(140deg);
    }
  }












/* ANIMATIONS */