/*
Theme Name: Buddy Up
Theme URI: https://www.buddyup.net
Description: Standalone BuddyUp WordPress theme shell.
Version: 1.0
Author: BuddyUp
*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --buddyup-primary: #D93F0c;
    --buddyup-secondary: #437E92;
    --buddyup-green: #1f8754;
    --buddyup-text: #1f2328;
    --buddyup-border: rgba(0, 0, 0, .1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: "Roboto", sans-serif !important;
    color: var(--buddyup-text);
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    pointer-events: none;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.bodyWrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.pageContent {
    width: 100%;
}

.buddyup-main-content {
    flex: 1;
    width: 100%;
}

.hero-area {
    background-image: linear-gradient(to bottom, #fff, #e5f3f7);
    padding-bottom: 30px;
    max-width: 100%;
}

.hero-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin: 20px 12% 35px 12%;
    align-items: center;
}

.category-flip {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 20px;
}

.button {
    padding: 22px 15px !important;
    line-height: 0rem !important;
}

.orange-btn,
.blue-btn {
    color: #fff;
    font-size: 1rem;
    border: none;
}

.orange-btn {
    background: var(--buddyup-primary);
    margin-top: 10px;
}

.blue-btn {
    background: #5b8e9f;
    margin-top: 0;
    margin-left: 5px;
}

.orange-btn:hover,
.orange-btn:focus,
.blue-btn:hover,
.blue-btn:focus {
    color: #fff;
}

.orange-btn:hover,
.blue-btn:hover {
    transition: all 0.1s ease-out;
    transform: scale(1.1);
}

.orange-btn-smtxt,
.orange-btn-nav,
.orange-btn-nav-mobile {
    background: var(--buddyup-primary);
    color: #fff;
    border-radius: 20px;
    border: none;
}

.orange-btn-smtxt {
    font-size: .8rem;
}

.orange-btn-nav {
    font-size: 1rem;
    margin-top: 20px;
    max-width: fit-content;
    padding: 10px 20px;
}

.orange-btn-nav-mobile {
    font-size: .95rem;
    margin-top: 20px;
    max-width: fit-content;
    padding: 5px 10px;
    margin-left: 12px;
    font-weight: 600;
}

.orange-btn-nav a {
    color: #fff !important;
}

.profile-btn {
    position: absolute;
    transform: translateX(50%);
    margin-top: -75px;
}

.half-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
    margin: 50px 12% 65px 12%;
    align-items: center;
}

.item {
    padding: 50px auto;
    text-align: left;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
}

.item h1 strong {
    font-size: 3rem;
    line-height: 3.1rem;
    font-weight: 900 !important;
}

.item2 {
    line-height: 35px;
}

.item2 h2 strong {
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 900 !important;
}

.arrow {
    margin-top: -20px;
    display: flex;
    float: right;
    z-index: 999;
    margin-right: -80px;
}

.slider-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    margin: 0 10%;
}

.locals-section {
    background: url(https://www.buddyup.net/wp-content/uploads/locals-bg.png);
    background-size: cover;
    padding: 50px 0;
    background-position: center;
    align-items: center;
}

.locals-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-gap: 20px;
    margin: 50px 0;
    color: #fff;
}

.locals-container h2 {
    color: #fff;
    font-weight: 600;
    font-size: 3rem;
    text-transform: uppercase;
}

.locals-container p {
    padding-bottom: .5rem;
}

.locals {
    padding: 0 50px 0 20px;
}

.swipe-right {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    align-items: flex-end;
    padding: 0;
}

.mid-pic,
.last-pic {
    margin-left: -80px;
}

.mid-pic {
    z-index: 2;
}

.interests-section {
    background: url(https://www.buddyup.net/wp-content/uploads/interests-bg-2.jpg);
    background-size: cover;
    padding: 50px 0 100px;
    text-align: center;
}

.interests-heading {
    font-size: 3rem;
    font-weight: 700;
    background: #fff;
    width: fit-content;
    padding: 20px;
    border-radius: 50px;
    margin: 0 auto;
    border: 4px solid #317442;
    line-height: 25px;
}

.interests-bubbles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-left: 10%;
    margin-right: 10%;
    justify-content: center;
}

.bubble {
    background: var(--buddyup-green);
    padding: 20px 35px;
    border-radius: 50px;
    border: 4px solid #fff;
    color: #fff;
    font-weight: 500;
    font-size: 1.4rem;
    margin-top: 20px;
}

.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto auto -2rem;
}

.slide {
    display: none;
    padding: 80px 0;
    z-index: 0;
}

.slide img {
    min-height: 300px;
    max-height: 400px;
    margin: 0 auto;
}

.slide h3 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
}

.text {
    color: #000;
    font-size: 20px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    bottom: 10;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: #000;
    background-color: #ff7e29;
    border: none;
    border-radius: 0;
    user-select: none;
    margin-top: -20%;
    z-index: 9999;
    font-size: 3rem;
    line-height: 0;
}

.prev {
    left: 0;
    padding: 50px 30px;
}

.next {
    right: 0;
    padding: 50px 30px;
}

.top-footer {
    background: var(--buddyup-green) !important;
    padding: 50px 0;
}

.top-footer-img {
    display: flex;
    margin: 0 10px;
    padding: 0;
    float: right;
}

.top-footer .fa {
    color: #fff;
    font-size: 2.5rem;
    display: inline;
    margin-right: 20px;
}

.wpcf7 {
    background: #f1f1f1;
    color: #000 !important;
    font-size: 1em !important;
    margin-top: 45px;
    padding: 20px 10px;
    border-radius: 5px !important;
    border: 1px solid #ddd;
}

.wpcf7 .wpcf7_submit {
    height: auto;
    background: var(--buddyup-primary);
    color: #fff;
    font-size: 1rem;
    padding: 10px;
}

textarea {
    min-width: 95%;
    margin-left: 5px;
}

.wpcf7-select,
.wpcf7 input.wpcf7-form-control,
.wpcf7 textarea.wpcf7-form-control {
    width: 95%;
}

.form-flex form.wpcf7-form label,
.form-flex .wpcf7-title {
    color: #fff !important;
}

input.wpcf7-form-control.wpcf7-quiz {
    width: 20% !important;
    margin-left: 10px;
    color: #000 !important;
}

.wpcf7 .wpcf7_submit:hover {
    background: #fff;
    color: #000;
}

.wpcf7-flex {
    display: flex;
    padding: 0 5px;
}

.form-wrap {
    margin: 40px 10%;
}

@media screen and (max-width: 1208px) {
    .locals-container,
    .hero-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .locals {
        padding: 25px 10%;
    }

    .hero-container {
        margin: 0 5% 35px;
    }

    .hero-container img {
        display: none;
    }

    .hero-area {
        padding-top: 40px;
    }

    .item {
        text-align: center;
    }

    .profile-btn {
        transform: translateX(20%);
        margin-top: -45px;
    }

    .form-wrap {
        margin: 40px 2%;
    }
}


@media screen and (max-width: 1000px) {
    .half-container {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
        margin: 10px 3% 35px;
    }

    .profile-btn {
        transform: translateX(60%);
        margin-top: -75px;
    }

    .arrow,
    .item-img {
        display: none;
    }
}

@media screen and (max-width: 950px) {
    .wpcf7-flex {
        flex-direction: column;
    }

    .form-flex {
        grid-template-columns: repeat(1, 1fr);
    }

    .wpcf7 form {
        width: 100%;
        padding: 20px 40px 0;
    }
}

@media screen and (max-width: 900px) {
    .wpcf7 {
        padding: 20px 0;
    }

    .form-wrap {
        margin: 40px 5%;
    }

    .page-id-211 .six.columns {
        width: 100% !important;
    }

    .page-id-211 .columns {
        margin-left: 0% !important;
    }
}

@media screen and (max-width: 800px) {
    .slider-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .slider-item img {
        display: none;
    }

    .slide {
        padding: 20px 0;
    }

    .slider-item {
        margin-bottom: 30px;
    }

    .prev,
    .next {
        position: relative;
    }

    .item2 {
        padding: 40px 10px;
        text-align: center;
    }
}

@media screen and (max-width: 710px) {
    .swipe-right {
        flex-wrap: nowrap;
    }
}

@media screen and (max-width: 550px) {
    .item h1 {
        font-size: 2.5rem;
    }
.swipe-right {
        display: flex;
        flex-wrap: nowrap;
        margin: 0 20px;
    }

    .swipe-right img {
        width: 170px;
        height: 240px;
    }

    .mid-pic {
        margin-top: -20px;
    }

    .profile-btn {
        position: relative;
        transform: translateY(10%);
        display: flex;
        justify-content: space-evenly;
        margin-top: -45px;
    }

    .interests-section {
        background-position: center;
    }

    .interests-heading {
        font-size: 1.7rem;
        line-height: 35px;
    }

    .interests-bubbles {
        margin-left: 1%;
        margin-right: 1%;
    }

    .bubble {
        padding: 20px 25px;
        font-size: 1rem;
        margin-top: 5px;
    }

    .locals-container h2 {
        font-size: 2.5rem;
    }

    .slider-buttons {
        margin: 0 auto;
    }

    .prev,
    .next {
        position: relative;
        margin-top: 20px;
        margin-left: 25px;
        margin-bottom: 50px;
        text-align: center;
        padding: 30px 20px;
    }
}

@media screen and (max-width: 400px) {
    input.wpcf7-form-control.wpcf7-quiz {
        width: 90% !important;
        margin-left: 0;
    }
}


.buddyup-skip-link { position: absolute; left: -999px; top: 8px; z-index: 100; background: #fff; border: 1px solid var(--buddyup-border); padding: 8px 12px; }
.buddyup-skip-link:focus { left: 8px; }

