﻿@charset "UTF-8";

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

span.red {
    color: #F44336;
}

@font-face {
    font-family: Darkline;
    src: url(../fonts/darkline.regular.ttf);
}

.darkline {
    font-family: Darkline;
}


.cute-arrow {
    width: 19px;
    height: 32px;
    position: relative;
    animation: cute-arrow 1s infinite;
    margin: -12px auto -40px;
    display: block;
    left: 12px;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #2a2a2a;
}

.prod-wrap[data-prod="2"] {
    background: url(../images/most-popular.png) -128% -37% no-repeat;
}

.prod-wrap[data-prod="3"] {
    background: url(../images/best-value.png) -120% -41% no-repeat;
}

.prod-wrap {
    transition: all .2s ease-in-out;
    border-radius: 10px;
}

.prod-wrap:hover {
    transform: scale(.9);
    cursor: pointer;
}

.buy-btn,
.buy-btn-inner {
    background: #fbc932;
    border-radius: 5px;
    cursor: pointer;
    transition: all .2s ease-in-out;
}

.buy-btn:hover {
    transform: scale(1.1)
}

.font-pacifico {
    font-family: 'Pacifico', cursive;
}

.arrow-up {
    -webkit-animation: slide-top 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3s infinite both;
    animation: slide-top 2s cubic-bezier(0.250, 0.460, 0.450, 0.940) 3s infinite both;
}

.footer-wrap {
    background: #005B9A;
    color: #fff;
}

footer i {
    color: white;
    font-size: 1.5em !important;
}

hr {
    border-top: 1px solid white;
}

.nav-item a,
i.fa {
    color: #fff;
}

.buy-btn-inner {
    color: black;
}

.buy-btn-inner:hover {
    text-decoration: none;
    color: black;
}

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100px);
        transform: translateY(-100px);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px !important;
    }

    .prod-wrap[data-prod="2"] {
        transform: scale(1.1)
    }
}

@media (max-width: 600px) {

    .prod-wrap[data-prod="2"],
    .prod-wrap[data-prod="3"] {
        background: none;
    }

    .buy-btn {
        width: 100% !important;
    }

    h4.mobile-resized {
        font-size: .8rem;
    }
}

/*Misc*/
.text-blue {
    color: #244d6c;
}

.vh-75 {
    height: 75vh;
}