@import "../fonts/fonts.css";

/* Root Vars */
:root {
    --primary: #048ED6;
    --primary-hover: #00a4fc;
    --secondary: #003159;
}

/* Master Reset */
* {
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    vertical-align: baseline;
    box-sizing: border-box;
    font-weight: inherit;
    font-family: inherit;
    font-style: inherit;
    font-size: 100%;
}

/* Tag Patterns */
body, html {
    font-family: "Outfit", sans-serif;
    color: var(--secondary);
    font-size: 18px;
}
a {
    color: var(--primary);
    text-decoration: none;
}
a:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* Some Components */
.btn-custom {
    font-size: 18px;
    height: 50px;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    line-height: 18px;
}
.btn-custom:hover {
    text-decoration: none;
}
.btn-custom .left-icon {
    margin-right: 15px;
}
.btn-custom .right-icon {
    margin-left: 15px;
}
.btn-custom.btn-custom-primary {
    background: var(--primary);
    color: var(--secondary-darker);
    box-shadow: var(--primary-shadowglow);
}
.btn-custom.btn-custom-primary:hover {
    background: var(--primary-hover);
}
.btn-custom.btn-custom-outline {
    border: solid 2px var(--secondary);
}
.btn-custom.btn-custom-outline:hover {
    border-color: var(--primary-hover);
}
.btn-custom.btn-custom-outline-white {
    border: solid 2px #FFFFFF;
    color: #FFFFFF;
}
.btn-custom.btn-custom-outline-white:hover {
    color: var(--secondary);
    background: #FFFFFF;
}

.modal {
    color: var(--secondary);
}
.modal .btn-custom-outline {
    border-color: var(--secondary);
}
.modal .btn-custom-outline:hover {
    color: var(--secondary);
    border-color: var(--secondary);
}
/* ----- End ----- */

/* Main Header */
#main-header {
    z-index: 1;
    position: relative;
    padding: 10px 0;
    background: #FFFFFF;
    position: fixed;
    width: 100%;
    transition: .2s;
}
#main-header.compact {
    padding: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}
#main-header .logo img {
    height: 53px;
    transition: .2s;
}
#main-header.compact .logo img {
    height: 40px;
}
#main-header .navbar-collapse {
    justify-content: right;
}
#main-header .menu {
    display: flex;
    align-items: center;
}
#main-header .menu .item {
    margin-right: 40px;
    display: flex;
    align-items: center;
    color: var(--secondary);
    text-decoration: none;
}
#main-header .menu .item.active {
    color: var(--secondary);
}
#main-header .menu .item:hover {
    color: var(--primary-hover);
}
#main-header .menu .item:last-child {
    margin-right: 0;
}
#main-header .navbar-toggler, #main-header .navbar-toggler:focus {
    border: none;
    box-shadow: none;
}
#main-header .navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 49, 89, 0.99%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#main-header .navbar-toggler .navbar-toggler-icon:hover {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%284, 142, 214, 0.99%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.fix-header {
    height: 102px;
}

/* Main Hero */
.main-hero {
    background-color: var(--primary);
    height: 542px;
}
.main-hero .container {
    background-image: url("../img/hero.jpg");
    background-repeat: no-repeat;
    background-position: bottom 0 right 15px;
    height: 100%;
    display: flex;
    align-items: center;
}
.main-hero h1 {
    color: #FFFFFF;
    font-size: 40px;
    font-weight: bold;
    max-width: 660px;
    margin-bottom: 40px;
}

/* Content Section */
.content-section {
    padding: 100px 0;
    scroll-margin-top: 50px;
}
.content-section h2 {
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 100px;
}

/* Company Section */
.company-section .content {
    background-image: url("../img/mockups.jpg");
    background-repeat: no-repeat;
    background-position: right -50px bottom 50px;
}
.company-section .content .text .call-for-benefits {
    font-size: 24px;
}
.company-section .content .text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #FFFFFF;
    border: 1px solid #DFE8F0;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .05);
}
.company-section .content .text ul li {
    border-bottom: 1px solid #DFE8F0;
    padding: 20px 30px;
    display: flex;
    align-items: center;
}
.company-section .content .text ul li:last-child {
    border: none;
}
.company-section .content .text ul li::before {
    content: '\e923';
    margin-right: 20px;
    font-family: 'icomoon';
    color: #FFB800;
    font-size: 20px;
    padding-bottom: 2px;
}
.company-section .content .text ul.with-check li::before {
    content: '\e908';
    color: #00df82;
}
.company-section .text .terms-detail {
    font-size: 16px;
    color: #8598A7;
    margin: 30px 0;
}

/* Modalities Section */
.modalities-section {
    background: var(--secondary);
    color: #FFFFFF;
}
.modalities-section h2 {
    color: #FFFFFF;
}
.modalities-section .content {
    display: flex;
    text-align: center;
    justify-content: space-between;
}
.modalities-section .content .item {
    text-align: center;
    width: 20%;
}
.modalities-section .content .item:last-child {
    margin-bottom: 0;
}
.modalities-section .content .item figure {
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgb(15, 34, 63);
    margin-bottom: 30px;
}
.modalities-section .content .item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modalities-section .content .item h4 {
    font-size: 18px;
    font-weight: bold;
}

/* Motorcycle Section */
.motorcycle-section figure img {
    margin-top: 100px;
}
.motorcycle-section .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.motorcycle-section .text .terms-detail {
    font-size: 16px;
    color: #8598A7;
}
.motorcycle-section .text .btn-google-play {
    margin-top: 20px;
    display: inline-block;
}
.motorcycle-section .content .text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #FFFFFF;
    border: 1px solid #DFE8F0;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .05);
}
.motorcycle-section .content .text ul li {
    border-bottom: 1px solid #DFE8F0;
    padding: 20px 30px;
    display: flex;
    align-items: left;
}
.motorcycle-section .content .text ul li:last-child {
    border: none;
}
.motorcycle-section .content .text ul li::before {
    content: '\e923';
    margin-right: 20px;
    font-family: 'icomoon';
    color: #FFB800;
    font-size: 20px;
    padding-bottom: 2px;
}

/* Indicators Section */
.indicators-section {
    background: #F4F8FB;
}
.indicators-section .item {
    text-align: center;
}
.indicators-section .item .number {
    font-size: 40px;
    color: var(--primary);
    font-weight: bold;
}
.indicators-section .item h4 {
    font-size: 18px;
}

/* Aid Section */
.aid-section {
    text-align: center;
}
.aid-section img {
    max-width: 320px;
}

/* Contact Section */
.contact-section {
    background: var(--primary);
    color: #FFFFFF;
}
.contact-section h2 {
    color: #FFFFFF;
    margin: 0 0 10px;
}
.contact-section .subtitle {
    text-align: center;
    margin-bottom: 100px;
}
.contact-section .logo {
    text-align: right;
}
.contact-section ul {
    list-style: none;
    padding: 0;
    padding-top: 20px;
    margin: 0;
}
.contact-section ul li a {
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.contact-section ul li a i {
    margin-right: 10px;
    font-size: 24px;
}
.contact-section ul li a:hover {
    text-decoration: none;
}
.contact-section ul li a:hover span {
    text-decoration: underline;
}
.contact-section ul li a i.icon-whatsapp {
    font-size: 20px;
    margin-left: 2px;
}

.footer-links {
    text-align: center;
    padding: 15px;
    background: #0975af;
}
.footer-links a {
    color: #FFFFFF;
    display: inline-block;
    margin: 0 10px;
    font-size: 14px;
}

#main-footer {
    background: var(--secondary);
    color: #FFFFFF;
    padding: 20px 0;
}
#main-footer p {
    margin: 0;
    text-align: center;
    font-size: 14px;
}

/* xxl */
@media only screen and (min-width:1400px)  {
}

/* xl */
@media only screen and (max-width:1399px)  {
    .main-hero h1 {
        max-width: 600px;
    }
}

/* lg */
@media only screen and (max-width:1199px)  {
    body, html {
        font-size: 16px;
    }
    
    #main-header .navbar-collapse .menu {
        margin-right: 0;
        display: block;
    }
    #main-header .navbar-collapse .menu .item:not(.btn) {
        margin-right: 0;
        padding: 10px 0;
        border-bottom: 1px solid #DFE8F0;
    }
    #main-header .navbar-collapse .menu .item.btn {
        margin-top: 20px;
        margin-bottom: 15px;
        display: inline-flex;
        padding: 0 30px;
    }

    .main-hero h1 {
        max-width: 400px;
    }

    .modalities-section .content .item figure {
        width: 150px;
        height: 150px;
        margin-bottom: 15px;
    }

    .motorcycle-section figure img {
        width: 500px;
    }
}

/* md */
@media only screen and (max-width:991px)  {
    .main-hero {
        height: 400px;
    }
    .main-hero .container {
        background-size: 50%;
    }
    .main-hero h1 {
        font-size: 30px;
    }

    .content-section h2 {
        font-size: 30px;
    }

    .company-section .content {
        background-image: none;
        height: auto;
    }
    .company-section .content .text .call-for-benefits {
        font-size: 18px;
    }
    
    .modalities-section .content .item figure {
        width: 100px;
        height: 100px;
    }

    .motorcycle-section figure {
        text-align: center;
    }
    .motorcycle-section figure img {
        width: 350px;
        margin: 0;
    }
    .motorcycle-section .text {
        height: auto;
        text-align: center;
    }
    .motorcycle-section .content .text ul li {
        text-align: left;
    }

    .indicators-section .item {
        margin-bottom: 70px;
    }
    .indicators-section .item-wrapper:last-child .item {
        margin-bottom: 0;
    }
    .indicators-section .item .number {
        font-size: 30px;
    }
}

/* sm */
@media only screen and (max-width:767px)  {
    #main-header {
        padding-top: 20px;
    }

    .main-hero {
        height: 300px;
    }
    .main-hero h1 {
        max-width: 300px;
    }

    .content-section {
        padding: 50px 0;
    }
    .content-section h2 {
        margin-bottom: 50px;
    }

    .modalities-section .content {
        flex-wrap: wrap;
    }
    .modalities-section .content .item {
        width: 50%;
        margin-bottom: 50px;
    }
    .modalities-section .content .item figure {
        width: 150px;
        height: 150px;
    }

    .motorcycle-section figure img {
        width: 200px;
    }

    .contact-section .subtitle {
        margin-bottom: 50px;
    }
}

/* xs */
@media only screen and (max-width:575px)  {
    .main-hero h1 {
        max-width: none;
        font-size: 25px;
    }
    .main-hero .container {
        background-size: 250px;
        padding-top: 30px;
        padding-bottom: 30px;
        align-items: stretch;
    }
    .main-hero .text {
        display: flex;
        height: 100%;
        flex-direction: column;
        justify-content: space-between;
    }
    .main-hero .container .btn {
        background: var(--primary);
        width: 240px;
    }

    .content-section h2 {
        font-size: 25px;
    }

    .company-section .content .text ul li {
        padding: 10px 15px;
    }
    
    .modalities-section .content .item {
        width: 100%;
    }

    .motorcycle-section figure {
        text-align: center;
    }
    .motorcycle-section figure img {
        text-align: center;
        width: 250px;
    }
    .motorcycle-section .text .btn-google-play img {
        width: 160px;
    }
    
    .contact-section .logo {
        text-align: center;
    }
    .contact-section .logo img {
        height: 150px;
    }
    .contact-section .wrapper-list {
        display: flex;
        justify-content: center;
    }
}