@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700&family=Oxanium:wght@200;300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    font-family:'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

body {
    background-color: #000;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #000;
}

nav .navbar-nav {
    width: 100%;
    height: 80px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

nav .nav-link  {
    margin: 0 40px;
    color: #d9d9d9;
    font-family: 'Oxanium';
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}

nav .nav-link:hover {
    color: #d9d9d9;
    padding: 5px;
    border-bottom: 2px solid #B1C900;
}

nav .nav-link:active {
    border-bottom: 2px solid #B1C900;
}


main {
    margin-top: 100px;
}


.headline-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.headline-content img {
    width: 95%;
    margin-bottom: 25px;
}

.headline-content h1 {
    margin-bottom: 25px;
    width: 90%;
    font-weight: 500;
    font-size: 30px;
    line-height: 40px;
    color: #d9d9d9;
}

.headline-content button {
    border: none;
    width: 280px;
    padding: 15px ;
    background-color: #B1C900;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 21px;
    line-height: 26px;
}

.headline-content button:hover {
    background-color: #d3ec14;
}

.headline-images {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
}

.headline-images .card-video {
    width: 33%;
    position: relative;
}

.headline-images .card-video .image{
    border-right: 2px solid #000;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 500px;
}

.headline-images .card-video video{
    display: none;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.headline-images .card-video:hover .image, .headline-images .card-video:active .image{
    display: none;
}

.headline-images .card-video:hover video, .headline-images .card-video:active video{
    display: block;
}


.title {
    position: relative;
    margin-bottom: 48px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.title img {
    margin: 0 25px;
}

.title h2 {
    text-align: center;
    position: relative;
    margin: 0;
    font-family: 'Oxanium';
    font-weight: 600;
    font-size: 40px;
    line-height: 40px;
    color: #d9d9d9;
}

#benefits {
    margin-top: 140px;
}

#benefits .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#benefits .card-content img {
    margin-bottom: 20px;
    width: 48px;
}

#benefits .card-content h2 {
    font-family: 'Oxanium';
    font-weight: 600;
    color: #B1C900;
}

#benefits .card-content p {
    width: 80%;
    padding-bottom: 20px;
    margin: 0;
    text-align: center;
    font-size: 21px;
    color: #D9D9D9;
    border-bottom: 1px solid #32cf15;
}

#services {
    margin-top: 140px;
}

#services .services-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.services-card .card-detail {
    width: 100%;
    height: 80%;
    position: absolute;
    z-index: -1;
    border: 1px solid #32cf15;
}

.card-detail.detail-2 {
    height: 90%;
}

.services-card .card-content {
    align-self: center;
    width: 90%;
    height: 100%;
    background-color: #3C3A3A;
    padding: 20px 10px;
}

.services-card .card-content h3 {
    text-align: center;
    font-weight: 500;
    color: #B1C900;
}


.services-card .card-content li {
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #D9D9D9;
}

#store {
    margin: 100px 0 140px 0;
}

#store .title h2:before {
    content: "";
    width: 300px;
    height: 1px;
    top: 30px;
    left: 92px;
    position: absolute;
    background: #32cf15;
}

#store .slide-content {
    margin: 0 15px;
    padding: 5px;
    height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#store .slide-content h3 {
    text-align: center;
    margin: 0;
    padding: 5px;
    background-color: #0000008c;
    font-size: 21px;
    color: #d9d9d9;
}

#about {
    margin-bottom: 140px;
}

#about .title h2::before {
    content: "";
    width: 300px;
    height: 1px;
    top: 30px;
    right: 202px;
    position: absolute;
    background: #32cf15;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-content p {
    margin-bottom: 30px;
    width: 80%;
    color: #d9d9d9;
    font-size: 20px;
    font-weight: 300;
    line-height: 27px;
}

.about-content button {
    border: none;
    padding: 8px 16px;
    background-color: #d9d9d9;
    font-weight: 600;
    font-size: 21px;
    line-height: 26px;
}

.about-content button:hover {
    background-color: #bab9b9;
}

.about-images {
    width: 100%;
    height: 320px;
    display: flex;
    flex-direction: column;
}

.about-images .images-top {
    height: 50%;
    margin-bottom: 15px;
    display: flex;
    flex-direction: row;
}

.about-images .images-top div {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    height: 100%;
}
 
.about-images .images-top .img-1 {
    margin-right: 15px;
}

.about-images .image-bottom {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 50%;
}


#contact {
    padding: 30px 15px;
    border-top: 0.5px solid #32cf1561;
}

#contact  h4 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 300;
    line-height: 27px;
    color: #d9d9d9;
}

#contact .company img {
    margin-bottom: 20px;
    width: 230px
}

#contact  .company p {
    width: 70%;
    font-size: 20px;
    color: #d9d9d9;
}

#contact  .contact div {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

#contact span {
    font-size: 18px;
    font-weight: 200;
    color: #d9d9d9;
}

#contact .address div {
    margin-top: 15px;
}

#contact .address div a {
    margin-right: 15px;
}

#contact .copyright p {
    margin-top: 40px;
    margin-bottom: 0;
    text-align: center;
    font-size: 17px;
    font-weight: 100;
    color: #d9d9d9;
}

.ask-questions {    
    bottom: 30px;
    right: 30px;
    position: fixed;
    z-index: 2000;
}

.ask-questions img {
    width: 60px;
}

@media (max-width: 992px) {
    .navbar-toggler {
        margin-top: 15px;
        background-color: #B1C900;
    }

    nav .navbar-nav {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: end;
        padding: 10px;
    }

    .headline-content h1 {
        width: 100%;
        font-size: 23px;
        line-height: 31px;
    }

    .headline-content button {
        width: 195px;
    }

    #store .title h2:before,
    #about .title h2:before {
        display: none;
    }

    #services .services-card ul {
        padding-left: 15px;
    }

    #about .about-content p {
        width: 100%;
    } 

    #about .about-images {
        height: 430px;
    }

    #contact .company p {
        margin: 0;
        width: 100%;
        font-size: 17px;
    }
}
    
@media (max-width: 767px) {
    
    nav .navbar-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    nav .nav-link {
        margin: 0;
    }

    .headline-content {
        align-items: center;
    }

    .headline-content h1 {
        text-align: center;
    }

    .headline-images {
        margin-top: 48px;
    }

    .headline-images .card-video .image {
        height: 400px;
    }

    .headline-images .card-video video{
        height: 400px;
    }

    #benefits,
    #services {
        margin-top: 100px;
    }

    #benefits .card-content,
    #contact .company,
    #contact .contact {
        margin-bottom: 40px;
    }

    #benefits .card-content p {
        width: 90%;
    }

    #store {
        margin: 100px 0;
    }

    .splide__pagination {
        bottom: -1.5em !important; 
    }

    #about {
        margin: 148px 0 100px 0;
    }

    .about-content {
        margin-bottom: 40px;
        align-items: center;
    }

    #contact h4 {
        margin-bottom: 5px;
    }
}