/* Hillside Garden Apartments — theme styles
   Restored from web.archive.org capture 2024-01-07.
   Changes from the original:
   - @font-face blocks removed; Poppins + Libre Caslon Text now load from Google Fonts (see index.html)
   - Contact Form 7 styles replaced with plain form styles at the end of this file
   - asset paths rewritten to /assets/images/
   - slimmenu base styles folded in from the old vendor bundle
*/

::-moz-selection { color: #fff; background: #336c38 }
::selection { color: #fff; background: #336c38 }

body {
    padding: 0;
    margin: 0;
    list-style: none;
    font: normal 18px/35px 'Libre Caslon Text', Georgia, serif;
    color: #000
}

p { padding: 0; margin: 0 }
a { padding: 0; margin: 0; outline: none }
ul { list-style: none; padding: 0; margin: 0 }
label { list-style: none; padding: 0; margin: 0 }
ul li { padding: 0; margin: 0 }

h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-family: 'Libre Caslon Text', Georgia, serif
}

a:hover, a:active { outline: none !important; text-decoration: none }

a, button, input[type="submit"] {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out
}

input[type="submit"] { cursor: pointer; border: 0; outline: none }

.theme-btn {
    background: #336c38;
    font-weight: 500;
    font-size: 22px;
    line-height: 25px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 24px 45px 20px;
    display: inline-block;
    transition: .4s ease-in-out
}

.theme-btn:hover { background: #000; color: #fff }

/* the original markup used <a class="theme-btn">; a <button> needs these resets
   to render identically (buttons don't inherit font-family and carry a UA border) */
button.theme-btn {
    border: 0;
    font-family: inherit;
    cursor: pointer
}

.section-heading {
    font-size: 50px;
    color: #000;
    line-height: 45px;
    display: inline-block;
    border-bottom: 2px solid #68a76e;
    padding: 0 15px 15px;
    text-transform: uppercase
}

/* ---------- responsive menu (slimmenu base + theme overrides) ---------- */

.collapse-button {
    position: absolute;
    right: 8px;
    top: 50%;
    width: 40px;
    padding: 7px 10px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    background-color: #0e0e0e;
    border-radius: 2px;
    cursor: pointer;
    transform: translate(0, -50%);
    box-sizing: border-box
}

.collapse-button:hover, .collapse-button:focus { color: #fff; background-color: #040404 }

.collapse-button .icon-bar {
    display: block;
    height: 2px;
    width: 18px;
    margin: 2px 0;
    background-color: #f5f5f5;
    border-radius: 1px
}

ul.slimmenu { width: 100%; margin: 0; padding: 0; list-style-type: none }
ul.slimmenu:before, ul.slimmenu:after { content: ''; display: table }
ul.slimmenu:after { clear: both }

ul.slimmenu.collapsed li {
    display: block;
    width: 100%;
    box-sizing: border-box
}

ul.slimmenu.collapsed li a {
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, .075);
    box-sizing: border-box
}

ul.slimmenu li { position: relative; float: left; display: inline-block }
ul.slimmenu > li { border-left: 1px solid #999 }
ul.slimmenu > li:first-child { border-left: 0 }

.header-menu .collapse-button {
    position: relative;
    right: 0;
    top: 0;
    transform: translate(0, 0);
    background: #336c38;
    border-radius: 0;
    width: 38px;
    padding: 12px 10px;
    margin: 0 0 0 auto;
    height: 38px
}

.header-menu .collapse-button .icon-bar { margin: 2px auto }

/* ---------- header ---------- */

.site-header {
    padding: 10px 0;
    position: relative;
    z-index: 1;
    background: #fff;
    height: 123px
}

.site-header.fixed {
    height: 70px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    animation-name: animationFade;
    animation-duration: 1s;
    animation-fill-mode: both;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .19)
}

@keyframes animationFade {
    0% { opacity: 0; transform: translateY(-20px) }
    100% { opacity: 1; transform: translateY(0) }
}

.site-header .d-flex {
    justify-content: space-between;
    align-items: center
}

.site-logo { max-width: 236px; width: 100%; margin-right: 100px }
.site-logo img { width: 100%; height: auto }
.site-header.fixed .site-logo { max-width: 120px }

.header-menu {
    background: #45924c;
    border-radius: 10px;
    text-align: right
}

.header-menu ul.slimmenu li {
    background: transparent;
    border: none;
    float: none
}

.header-menu ul.slimmenu li:last-child { margin-right: 0 }

.header-menu ul.slimmenu li a {
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 25px;
    padding: 23px 18px;
    transition: .4s ease-in-out
}

.header-menu ul.slimmenu li a:hover { background: #fff; color: #45924c }

/* ---------- banner ---------- */

.main-banner { position: relative; height: 1000px }
.main-banner img { width: 100%; height: 100%; object-fit: cover }

.main-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 32, 20, .38) 0%, rgba(18, 32, 20, .14) 32%, rgba(0, 0, 0, .04) 58%, transparent 78%);
    pointer-events: none;
    z-index: 1
}

.banner-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: url('../images/banner-overlay.png') no-repeat scroll;
    padding-bottom: 40px;
    text-align: center;
    z-index: 2
}

.banner-info h1 {
    font-size: 32px;
    color: #fff;
    display: inline-block;
    border-bottom: 1px solid #fff;
    margin-bottom: 24px;
    padding: 0 20px
}

.banner-info h2 {
    font-size: 59px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 60px
}

/* ---------- content blocks ---------- */

.full-width-img-text { margin: 70px 0 }
.wrap-text { max-width: 1273px; width: 100%; margin: 0 auto }
.wrap-text p { text-align: center; font-size: 23px; color: #000; line-height: 40px }
.full-width-img-text img { width: 100%; height: auto; margin-top: 70px }

.amenities-sec { margin-bottom: 100px }
.amenities-list ul { display: grid; grid-gap: 5px; margin: 60px 0 0 }

.amenities-list ul:nth-child(odd) {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    width: 100%;
    margin: 60px auto 0
}

.amenities-list ul:nth-child(even) { grid-template-columns: repeat(5, 1fr) }
.amenities-list ul li { text-align: center }
.amenities-list ul li .amenities-icon { margin-bottom: 20px }

.amenities-list ul li .amenities-icon img {
    max-width: 61px;
    width: 100%;
    height: 61px;
    object-fit: contain
}

.amenities-list ul li h6 { font-size: 18px; line-height: 25px }

.two-img-box img { width: 100%; height: 492px; object-fit: cover }
.new-one .wrap-text { margin-top: 70px }
.new-one img { margin-top: 0 }

.three-box-img-section { background: #45924c; padding: 50px 0 }
.three-box-img img { width: 100%; height: 100%; }

.apartment-features { margin: 100px 0 }
.features-list { text-align: center }

.features-list ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap
}

.features-list ul li { margin: 0 10px }
.features-list ul li:first-child { margin-left: 0 }
.features-list ul li:last-child { margin-right: 0 }

.features-list ul li a,
.features-list ul li .tablinks {
    display: inline-block;
    border: 1px solid #336c38;
    text-align: center;
    padding: 10px 30px;
    font-size: 20px;
    text-transform: uppercase;
    color: #000;
    border-radius: 10px;
    transition: .4s ease-in-out;
    cursor: default
}

.center-btn { margin-top: 40px }

.location-sec {
    box-shadow: 0 -6px 16px rgba(0, 0, 0, .1);
    padding-top: 70px
}

.location-sec .map { margin-top: 30px }
.location-sec .map img { width: 100%; height: auto }
.location-sec .map iframe { display: block; border: 0 }

.apartment-box {
    background: #fff;
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    padding: 80px 100px
}

.heading { text-align: center }
.heading .section-heading { margin-bottom: 40px }
.heading p { font-size: 24px; color: #000 }

.appartment-sec { margin-top: -10px }
.appartment-top { background: #45924c; margin: 70px 0 }
.appartment-top .appartment-top-img { max-width: 1006px; width: 100% }
.appartment-top .appartment-top-img img { width: 100%; height: 100%; object-fit: cover }

.appartment-top .appartment-top-info {
    padding: 100px;
    max-width: 524px;
    width: 100%;
    display: flex;
    align-items: center
}

.appartment-top .appartment-top-info p { color: #fff; font-size: 23px; line-height: 35px }

.apartment-box-table { margin: 40px 0 }

.apartment-box-table thead th {
    text-align: center;
    font-size: 20px;
    color: #45924c;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    border-bottom: 2px solid #45924c;
    border-top: none;
    line-height: 25px
}

.apartment-box-table tbody td {
    text-align: center;
    color: #000;
    font-size: 20px;
    line-height: 25px
}

/* ---------- contact form ---------- */

.contact-form { margin: 100px 0 }

.form-wrapper {
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    text-align: center
}

.form-wrapper form { text-align: left }

.form-group label {
    display: block;
    font-size: 22px;
    color: #000;
    margin-bottom: 3px
}

.form-group label .required { margin-left: 8px; color: #45924c }

.form-group input, .form-group textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #45924c;
    font-size: 18px;
    color: #000;
    padding: 0 10px;
    resize: none;
    font-family: inherit
}

.form-group textarea { height: 250px; padding-top: 12px }
.form-group input:focus, .form-group textarea:focus { outline: 2px solid #336c38; outline-offset: 1px }
.form-group p { text-align: left; font-size: 19px; color: #000 }
.form-group .required { text-align: right }
.form-note { text-align: right !important; font-size: 15px; color: #555 }

/* ---------- footer ---------- */

.site-footer {
    background: #fff;
    border-top: 3px solid #336c38;
    padding: 70px 0 30px
}

.ft-contact h6 { text-transform: uppercase; font-weight: bold; font-size: 19px; color: #000 }
.ft-contact p { font-size: 19px; color: #000; line-height: normal }
.ft-social { text-align: right }

.ft-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #336c38;
    width: 47px;
    height: 47px;
    text-align: center;
    color: #fff;
    border-radius: 100%;
    font-size: 22px;
    margin-left: 10px;
    transition: .4s ease-in-out
}

.ft-social a svg { width: 22px; height: 22px; fill: currentColor }
.ft-social a:hover { background: #000; color: #fff }

.ft-bottom { margin-top: 10px }
.ft-mail a { font-size: 20px; color: #336c38 }
.desktop-none { display: none }
.ft-mail a:hover { color: #000 }
.ft-info { display: flex; justify-content: flex-end }
.ft-info p { font-size: 16px; color: #000 }
.ft-info ul { margin-left: 10px }
.ft-info ul li { display: inline-block }

.ft-info ul li a {
    color: #336c38;
    font-size: 16px;
    display: inline-block;
    text-decoration: underline;
    position: relative
}

.ft-info ul li a:hover { color: #000 }
.ft-info ul li:last-child a:after { display: none }

.ft-info ul li a:after {
    content: '';
    display: inline-block;
    background: #000;
    width: 1px;
    line-height: 18px;
    margin: 0 5px 0 8px;
    height: 18px;
    top: 4px;
    position: relative
}

/* ---------- gallery ---------- */

.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
    margin-top: 40px
}

.tabcontent.active { display: block }

.tabcontent .row .col-md-4:not(:first-child):not(:nth-child(2)):not(:nth-child(3)) {
    margin-top: 20px
}

/* ---------- breakpoints ---------- */

@media screen and (min-width: 1600px) {
    .container { max-width: 1560px }
    .main-banner { height: 1200px }
}

@media only screen and (max-width: 1599px) {
    .container { max-width: 1200px }
    .site-header { height: 67px }
    .site-logo { max-width: 115px }
    .header-menu ul.slimmenu li a { font-size: 18px; line-height: 18px; padding: 23px 18px 20px }
    .banner-info h2 { font-size: 45px; line-height: 50px }
    .wrap-text { max-width: 1050px }
    .wrap-text p { font-size: 18px; line-height: 35px }
    .full-width-img-text { margin: 50px 0 }
    .full-width-img-text img { margin-top: 40px }
    .amenities-sec { margin-bottom: 50px }
    .section-heading { font-size: 40px; line-height: 40px }
    .amenities-list ul:nth-child(odd) { margin-top: 40px; max-width: 1060px }
    .two-img-box img { height: 390px }
    .new-one .wrap-text { margin-top: 50px }
    .full-width-img-text.new-one img { margin: 0 }
    .apartment-features { margin: 50px 0 }
    .features-list ul li a,
.features-list ul li .tablinks { font-size: 18px }
    .theme-btn { padding: 20px 45px 16px; font-size: 18px }
    .location-sec { padding-top: 50px }
    .heading .section-heading { margin-bottom: 30px }
    .appartment-top .appartment-top-info { max-width: 470px; padding: 70px }
    .heading p, .appartment-top .appartment-top-info p { font-size: 20px }
    .location-sec .map iframe { height: 615px }
    .apartment-box { padding: 50px 70px }
    .apartment-box-table { margin: 30px 0 }
    .apartment-box-table thead th, .apartment-box-table tbody td { font-size: 18px }
    .contact-form { margin: 50px 0 }
    .form-wrapper form { margin-top: 30px }
    .form-group label { font-size: 20px }
    .ft-contact p { font-size: 18px; line-height: 25px }
    .ft-mail a { font-size: 18px }
}

@media only screen and (max-width: 1400px) {
    .main-banner { height: 900px }
}

@media only screen and (max-width: 1199px) {
    .header-menu ul.slimmenu li a { font-size: 16px; padding: 23px 12px 20px }
    .wrap-text, .amenities-list ul:nth-child(odd) { max-width: 950px }
    .two-img-box img { height: 330px }
    .wrap-text p br { display: none }
    .features-list ul li a,
.features-list ul li .tablinks { font-size: 17px; padding: 10px 25px }
    .appartment-top .appartment-top-info { max-width: 440px }
    .banner-info h2 { font-size: 38px; line-height: 40px }
    .wrap-text p { font-size: 16px }
    .main-banner { height: 680px }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .site-header .d-flex { align-items: flex-start }
    .header-menu { margin-top: 5px }

    .header-menu .slimmenu {
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        z-index: 9;
        background: #45924c
    }

    .header-menu ul.slimmenu li a {
        display: block;
        border-bottom: 1px solid #378a3f !important;
        padding: 10px 0;
        text-align: center
    }

    .header-menu ul.slimmenu li:last-child a { border-bottom: none !important }
    .section-heading { font-size: 35px }

    .amenities-list ul:nth-child(even) {
        grid-template-columns: auto auto auto auto;
        grid-auto-flow: column
    }

    .amenities-list ul li h6 { font-size: 17px }
    .two-img-box img { height: 245px }
    .features-list ul li { margin: 0 10px 15px }
    .center-btn { margin-top: 20px }
    .apartment-box { padding: 40px }
    .appartment-top .appartment-top-info { padding: 50px; max-width: 360px }
    .site-footer { padding-top: 50px }
    .desktop-none { display: block }
    .ft-contact { text-align: center }
    .ft-bottom .ft-mail { display: none }
    .ft-social { text-align: center; margin: 15px 0 }
    .ft-info { justify-content: center }
    .main-banner { height: 510px }
}

@media only screen and (max-width: 767px) {
    .site-header .d-flex { align-items: flex-start }
    .header-menu { margin-top: 5px }

    .header-menu .slimmenu {
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        z-index: 9;
        background: #45924c
    }

    .header-menu ul.slimmenu li a {
        display: block;
        border-bottom: 1px solid #378a3f !important;
        padding: 10px 0;
        text-align: center;
        font-size: 15px
    }

    .header-menu ul.slimmenu li:last-child a { border-bottom: none !important }
    .banner-info { padding-bottom: 20px }
    .banner-info h2 { font-size: 30px }
    .banner-info h1 { font-size: 25px }
    .full-width-img-text { margin: 30px 0 }
    p, .wrap-text p { font-size: 14px; line-height: 28px }
    .full-width-img-text img { margin-top: 20px }
    .section-heading { font-size: 30px; line-height: 35px; padding-bottom: 10px }
    .heading .section-heading { margin-bottom: 20px }
    .amenities-sec { margin-bottom: 30px }

    .amenities-list ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap
    }

    .amenities-list ul li { flex: 0 0 49%; max-width: 49%; width: 100% }
    .amenities-list ul:nth-child(odd) { margin-top: 0 }
    .amenities-list ul li h6 { font-size: 15px; height: 60px }
    .amenities-list ul:nth-child(even) { margin-top: 0 }
    .amenities-list ul li .amenities-icon { margin-bottom: 10px }
    .amenities-list ul li .amenities-icon img { max-width: 45px; height: 45px }
    .two-img-box { padding: 0 10px }
    .two-img-box img { height: 104px }
    .new-one .wrap-text { margin-top: 30px }
    .three-box-img-section { padding: 30px 0 }
    .three-box-img-section .three-box-img { margin-bottom: 15px }
    .three-box-img-section .three-box-img:last-child { margin-bottom: 0 }
    .features-list ul li { margin: 0 0 10px; width: 100% }
    .features-list ul li a,
.features-list ul li .tablinks { display: block }
    .center-btn { margin-top: 20px }
    .location-sec .map { margin-top: 20px }
    .location-sec .map iframe { height: 350px }
    .appartment-top { margin: 30px 0 }
    .appartment-top .d-flex { flex-direction: column-reverse }
    .appartment-sec .container { padding: 0 }
    .appartment-top .appartment-top-info { padding: 20px }
    .heading p, .appartment-top .appartment-top-info p { font-size: 15px; line-height: 30px }
    .apartment-box { padding: 30px 20px }
    .apartment-box-table { margin: 0 0 15px }

    .apartment-box-table thead th, .apartment-box-table tbody td {
        font-size: 15px;
        vertical-align: middle;
        line-height: 20px
    }

    .form-group label, .form-group input, .form-group textarea { font-size: 16px }
    .form-group p { font-size: 15px }
    .site-footer { padding-top: 30px }
    .ft-contact p { font-size: 15px }
    .desktop-none { display: block }
    .ft-contact { text-align: center }
    .ft-bottom .ft-mail { display: none }
    .ft-social { text-align: center; margin: 15px 0 }
    .ft-info { flex-direction: column; text-align: center }
    .ft-info p { order: 2; font-size: 14px }
    .ft-info ul li a { font-size: 15px }
    .tabcontent .row .col-md-4:not(:first-child) { margin-top: 20px }
    .main-banner { height: 280px }
}

@media only screen and (max-width: 1023px) {
    .site-header.fixed {
        height: 64px;
        padding: 8px 0
    }
    .site-header .d-flex {
        align-items: center;
        height: 100%
    }
    .site-logo,
    .site-header.fixed .site-logo {
        max-width: 48px;
        width: auto;
        height: 48px;
        margin-right: 12px;
        flex: 0 0 auto
    }
    .site-logo img {
        width: auto;
        max-width: 100%;
        height: 48px;
        object-fit: contain;
        display: block
    }
    .header-menu { margin-top: 0 }
}

/* ---------- WordPress / Contact Form 7 (same look as the static form) ---------- */

.admin-bar .site-header.fixed { top: 32px }
@media screen and (max-width: 782px) {
    .admin-bar .site-header.fixed { top: 46px }
}

.hillside-page { padding-top: 40px; padding-bottom: 80px }
.hillside-page-content { text-align: left; font-size: 18px; line-height: 32px }
.hillside-page-content p { margin-bottom: 1em }

.form-wrapper .wpcf7,
.form-wrapper form { text-align: left }

.form-wrapper .wpcf7 { margin: 0 }

.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0
}

.form-group .wpcf7-form-control-wrap {
    display: block;
    width: 100%
}

.form-group input,
.form-group textarea,
.form-group .wpcf7-form-control,
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    width: 100%;
    height: 50px;
    border: 1px solid #45924c;
    font-size: 18px;
    color: #000;
    padding: 0 10px;
    resize: none;
    font-family: inherit;
    background: #fff;
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.form-group textarea,
.form-group textarea.wpcf7-form-control,
.wpcf7-form-control-wrap textarea {
    height: 250px;
    padding-top: 12px
}

.form-group input:focus,
.form-group textarea:focus,
.form-group .wpcf7-form-control:focus {
    outline: 2px solid #336c38;
    outline-offset: 1px
}

.wpcf7-form .form-group p { margin: 0; padding: 0 }
.wpcf7-form .form-btn p { margin: 0 }

.form-btn input.theme-btn,
.form-btn input.wpcf7-submit,
input.wpcf7-submit.theme-btn {
    width: auto;
    height: auto;
    border: 0;
    background: #336c38;
    font-weight: 500;
    font-size: 22px;
    line-height: 25px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 24px 45px 20px;
    display: inline-block;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none
}

.form-btn input.theme-btn:hover,
.form-btn input.wpcf7-submit:hover,
input.wpcf7-submit.theme-btn:hover { background: #000; color: #fff }

.wpcf7-spinner { display: none !important }

.wpcf7-not-valid-tip {
    display: block;
    color: #a00;
    font-size: 15px;
    line-height: 22px;
    margin-top: 6px
}

.wpcf7-form-control.wpcf7-not-valid { border-color: #a00 }

.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
    padding: 12px 14px;
    border: 2px solid #45924c;
    font-size: 16px;
    line-height: 24px;
    color: #000
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output,
.wpcf7-response-output:empty {
    display: none
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    display: block
}

.wpcf7 form.sent .wpcf7-response-output { border-color: #336c38 }
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output { border-color: #a00 }
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output { border-color: #c80 }

@media only screen and (max-width: 1599px) {
    .form-wrapper .wpcf7 form { margin-top: 30px }
    .form-btn input.theme-btn,
    .form-btn input.wpcf7-submit,
    input.wpcf7-submit.theme-btn { padding: 20px 45px 16px; font-size: 18px }
}

@media only screen and (max-width: 767px) {
    .form-group input,
    .form-group textarea,
    .form-group .wpcf7-form-control,
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea { font-size: 16px }
}
