/*

    Global

*/

body {
    font-family: 'Quicksand';
    font-size: 22px;
}

.bgColorRed {
    background-color: #ff5a72;
    border-radius: 0% 0% 65px 65px;
}

.bgColorDiv {
    background-color: #edfcff;
}

.buttonOrange {
    background-color: #ffb524;
}

.footer-link {
    margin-left: 1em;
}

h1 {
    font-family: Quicksand;
    font-size: 24px;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 26.4px;
}

h3 {
    font-family: Quicksand;
    font-size: 20px;
    font-style: normal;
    font-variant: normal;
    font-weight: 700;
    line-height: 15.4px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 20px;
}

.btn {
    font-size: 24px;
    padding: 10px 40px;
}

.bold {
    font-weight: 400;
    text-transform: uppercase;
}

p {
    font-family: Quicksand;
    font-size: 20px;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
}

[type="text"] {
    box-shadow: none;
    border: 1px solid #4AE5FF;
    height: 1em;
    width:150px;
    padding: 20px;
    border-radius: 3px;
}

/*

    Header

*/

.header {
    height: 200px;
}
.header-round {
    z-index: 0; position: absolute; width: 100%; top: 0;
}
.header-background {
    width: 100%; height: 80px; background: #4ae5ff; z-index: 0; position: absolute; top: 0; left: 0
}
.header-logo {
    position: absolute; height: 200px; z-index: 1; top: 0; left: 0; width: 100%; text-align: center; padding-top: 40px;
}
.header-logo img {
    height: 100px;
}

/*

    Home page specific

*/
.vehicle-title {
    margin-top: 40px;
}
@media (max-width: 768px) {
    .vehicle-title {
        margin-top: -80px;
        font-size: 20px;
    }
    h5 {
        font-size: 18px;
    }
    .header {
        height: 200px;
    }
    .header-logo {
        padding-top: 10px;
    }
    .header-logo img {
        height: 60px;
    }
    .header-round {
        display: none;
    }
    .footer, .simulator, p {
        font-size: 16px;
    }
    .simulator [type="text"] {
        width: 80px;
        padding: 20px 10px;
    }
}

/*

    Switch

*/

.tgl {
    display: none;
}

.tgl+.tgl-btn {
    outline: 0;
    display: block;
    width: 100%;
    height: 2em;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tgl+.tgl-btn:after,
.tgl+.tgl-btn:before {
    position: relative;
    display: block;
    content: "";
    width: 50%;
    height: 100%;
}

.tgl+.tgl-btn:after {
    left: 0;
}

.tgl+.tgl-btn:before {
    display: none;
}

.tgl:checked+.tgl-btn:after {
    left: 50%;
}

.tgl-flat+.tgl-btn {
    padding: 2px;
    transition: all .2s ease;
    background: #fff;
    border: 4px solid #4AE5FF;
    border-radius: 2em;
}

.tgl-flat+.tgl-btn:after {
    transition: all .2s ease;
    background: #4AE5FF;
    content: "";
    border-radius: 1em;
}

.tgl-flat:checked+.tgl-btn {
    border: 4px solid #4AE5FF;
}

.tgl-flat:checked+.tgl-btn:after {
    left: 50%;
    background: #4AE5FF;
}