:root {
    --primary: #ff5e62;
    --secondary: #ffab5e;
    --hover: #ff383d;
}

body{
    font-family: 'Inter', sans-serif;
}

a{
    text-decoration: none;
}

.container {
    max-width: 960px;
}

.title {
    color: #c63f4c;
}
.bg-custom {
    background-color: var(--secondary);
}
/*
   * Custom translucent site header
   */

.site-header {
    background-color: var(--primary);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
    color: #fff;
    transition: color 0.15s ease-in-out;
}
.site-header a:hover {
    color: #fff;
    text-decoration: none;
}

/*
   * Dummy devices (replace them with your own or something else entirely!)
   */

.product-device {
    position: absolute;
    right: 10%;
    bottom: -30%;
    width: 300px;
    height: 540px;
    background-color: #333;
    border-radius: 21px;
    transform: rotate(30deg);
}

.product-device::before {
    position: absolute;
    top: 10%;
    right: 10px;
    bottom: 10%;
    left: 10px;
    content: "";
    background: url("/images/app/splash.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.gas-stations {
    background: url("/images/app/3.jpeg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.companies {
    background: url("/images/app/2.jpeg");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    border-radius: 5px;
}

.product-device-2 {
    top: -25%;
    right: auto;
    bottom: 0;
    left: 5%;
    background-color: #e5e5e5;
}

/*
   * Extra utilities
   */

.flex-equal > * {
    flex: 1;
}
@media (min-width: 768px) {
    .flex-md-equal > * {
        flex: 1;
    }
}

.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary.focus,
.btn-primary:focus,
.btn-primary:hover {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

footer {
    background: var(--primary);
}

footer p {
    color: white;
}

.download-btn {
    font-weight: 500;
    display: inline-block;
    border-radius: 5px;
    transition: 0.5s;
    color: #fff;
    background: var(--primary);
}


.download-btn:hover {
    background: var(--secondary);
    color: #fff;
}
