body {
    font-family: "Open Sans", sans-serif;
    line-height: 1.8;
    color: #333;
}
a {
    color: #3bb3c2;
}
a:hover {
    color: #3bb3c2;
    text-decoration: none;
}
header {
    padding: 0.75rem 0;
}
.logo {
    width: 100px;
}
.hero-bg1 {
    background: url("../img/hero-bridge-bg.jpg") no-repeat;
    background-size: cover;
    background-position-y: bottom;
    background-position-x: center;
    filter: brightness(120%);
}
.hero {
    min-height: 77vh;
    padding-top: 7%;
}
.hero h1 {
    font-family: "PT Serif", serif;
    font-size: 3.75rem;
}
.hero h2 {
    font-family: "PT Serif", serif;
    font-size: 2.75rem;
}
footer {
    color: #fff;
    background-color: #2e3134;
    padding: 1.875rem 0;
}
footer p {
    color: #fff;
}
.footer-menu {
    padding: 0;
    margin: 0 0 1.8rem 0;
}
.footer-menu li {
    list-style-type: none;
    display: inline-block;
    border-right: 1px solid #fff;
    line-height: 12px;
}
.footer-menu li:last-child {
    border-right: none;
}
.footer-menu li a {
    font-size: 12px;
    padding: 0 10px;
    color: #fff;
}

/* Helper classes */
.btn-primary {
    background: linear-gradient(270deg, #3ab2c0, #6fd4c3);
    background-size: 400% 400%;
    -webkit-animation: OrangeJuice 2s ease infinite;
    -moz-animation: OrangeJuice 2s ease infinite;
    animation: OrangeJuice 2s ease infinite;
    border-color: #6fd4c3;
    border-bottom: 8px solid #6fd4c3;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    padding: 0.8rem 0.5rem;
}
.btn-primary:hover {
    background-color: #3bb3c2;
    background-image: linear-gradient(#3bb3c2, #77cdd7);
    border-color: #3bb3c2;
}
.btn-primary:focus,
.btn-primary.focus {
    outline: none !important;
}
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #6fd4c3;
    border-color: #6fd4c3;
}

.fw-600 {
    font-weight: 600;
}
.fs-12 {
    font-size: 0.75rem;
}

@media (max-width: 767px) {
    .logo {
        width: 80px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 0;
        display: flex;
        align-items: center;
        min-height: 71vh;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .hero h2 {
        font-size: 1.8rem;
    }
    .hero .btn {
        font-size: 1.15rem;
        padding: 0.6rem 0.5rem;
    }
}

@media (max-width: 320px) {
    .hero {
        padding: 0;
        display: flex;
        align-items: center;
        min-height: 63vh;
    }
    .hero h1 {
        font-size: 1.85rem;
    }
    .hero h2 {
        font-size: 1.4rem;
    }
    .hero .btn {
        font-size: 1rem;
        padding: 0.3rem 0.4rem;
    }
}

@-webkit-keyframes OrangeJuice {
    0% {
        background-position: 76% 0%;
    }
    50% {
        background-position: 25% 100%;
    }
    100% {
        background-position: 76% 0%;
    }
}
@-moz-keyframes OrangeJuice {
    0% {
        background-position: 76% 0%;
    }
    50% {
        background-position: 25% 100%;
    }
    100% {
        background-position: 76% 0%;
    }
}
@keyframes OrangeJuice {
    0% {
        background-position: 76% 0%;
    }
    50% {
        background-position: 25% 100%;
    }
    100% {
        background-position: 76% 0%;
    }
}
