/**
Theme Name: Virtue Web Solutions
Author: Virtue Web Solutions Ltd.
Author URI: https://virtuewebsolutions.co.uk
Description: Bespoke website theme by Virtue Web Solutions.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: virtue
Template: astra
*/

:root {
    --primary: #006994;
    --secondary: #f5f5f5;
    --tertiary: #82c2e6;
    --quaternary: #cbe3ef;
    --quinary: #f7f3ea;
}

html {
    overflow-y: auto;
}

section {
    padding: 80px 0;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1225px !important;
}

.secondary a *, .site-footer a *, .site-header a *, a {
    transition: all 0.5s ease !important;
}

p:last-of-type {
    margin-bottom: 0;
}

.gap-10 { height: 10px; }
.gap-20 { height: 20px; }
.gap-30 { height: 30px; }
.gap-40 { height: 40px; }
.gap-50 { height: 50px; }
.gap-60 { height: 60px; }
.gap-70 { height: 70px; }
.gap-80 { height: 80px; }
.gap-90 { height: 90px; }
.gap-100 { height: 100px; }

.pinch-20 { margin: auto; width: 20%; }
.pinch-40 { margin: auto; width: 40%; }
.pinch-50 { margin: auto; width: 50%; }
.pinch-60 { margin: auto; width: 60%; }
.pinch-75 { margin: auto; width: 75%; }
.pinch-80 { margin: auto; width: 80%; }

.h-100 {
    height: 100%;
}

.text-center {
    text-align: center !important;
}

.bg-primary {
    background-color: var(--primary);
}
    .bg-primary, .bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5 {
        color: #fff;
    }
.bg-secondary {
    background-color: var(--secondary);
}
.bg-tertiary {
    background-color: var(--tertiary);
}

.bg-quaternary {
    background-color: var(--quaternary);
}
.bg-quinary {
    background-color: var(--quinary);
}

.d-inline-block {
    display: inline-block !important;
}

.flex-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.align-center {
    align-items: center !important;
}

.grecaptcha-badge { 
    visibility: hidden !important;
}

.btn {
    width: auto;
    padding: 10px 30px;
    display: inline-block;
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.5s ease;
}
.btn-row {
    display: flex;
    gap: 1rem;
}
.btn-primary {
    color: #fff;
    background-color: var(--primary);
    border: 1px solid var(--primary);
}
    .btn-primary:hover {
        color: var(--primary);
        background-color: rgba(0, 0, 0, 0);
    }
.btn-secondary {
    border: 1px solid #fff;
}
    .btn-secondary:hover {
        color: #888;
        background-color: #fff;
    }

.ast-scroll-to-top-right {
    bottom: 50px;
}

/* ### CONTENT ### */

.text-end {
    text-align: right;
}

.home-hero {
    height: 500px;
    font-size: 18px;
    color: #fff;
    background-color: #ccc;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
    .home-hero h1 {
        font-size: 3em;
        color: #fff;
    }

.flower-collage {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
}
    .flower-collage .tile {
        position: relative;
        overflow: hidden;
    }
        .flower-collage .tile img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .flower-collage .tile.tile-1 { /* top-left */
            border-radius: 0 30% 0 30%;        /* TL TR BR BL */
        }
        .flower-collage .tile.tile-2 { /* top-right */
            border-radius: 30% 0 30% 0;
        }
        .flower-collage .tile.tile-3 { /* bottom-left */
            border-radius: 30% 0 30% 0;
        }
        .flower-collage .tile.tile-4 { /* bottom-right */
            border-radius: 0 30% 0 30%;
        }

.stack-container {
    width: 100%;
    max-width: 560px;
    position: relative;
    margin-inline: auto;
}
    .stack-container::before {
        content: "";
        display: block;
        padding-top: calc(90% + 60px);
    }
    .stack-container .stack-1,
    .stack-container .stack-2 {
        width: 75%;
        aspect-ratio: 5 / 6;
        border-radius: 50px;
        position: absolute;
        top: 0;
        left: 0;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .stack-container .stack-2 {
        top: 60px;
        left: 120px;
        background-position: calc(50% + 15px) 50%;
    }

.amenities-container {
    position: relative;
}
    .amenities-container svg {
        height: 35px;
        color: var(--primary);
    }
    .amenities-container b {
        color: var(--primary);
    }

.location-card {
    width: 100%;
    aspect-ratio: 5/6;
    background-color: #ccc;
    border-radius: 30px;
}

.pre-footer {
    color: #666;
    font-size: 0.9em;
}
    .pre-footer h3 {
        color: #555 !important;
    }
    .pre-footer svg {
        margin: 0 3px;
        font-size: 1.8em;
    }
        .pre-footer svg:first-of-type {
            margin-left: 0;
        }
    .pre-footer .footer-menu ul {
        margin: 0;
        padding: 0;
        list-style: none;
    }
        .pre-footer .footer-menu ul li {
            margin: 0;
            padding: 0;
        }

/* ### MEDIA QUERIES ### */

@media (max-width: 991.98px) {
    .pinch-50 { 
        margin: auto; width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    div.wpforms-container .wpforms-form .wpforms-field:not(.wpforms-field-phone):not(.wpforms-field-select-style-modern):not(.wpforms-field-radio):not(.wpforms-field-checkbox):not(.wpforms-field-layout):not(.wpforms-field-repeater) {
        overflow-x: visible !important;
    }
}

/* ### FORMS ### */

.form-wrap {
    padding: 30px;
    background-color: #aaa;
    border-radius: 5px;
}

.form-wrap .wpforms-container-full {
    margin: 0 !important;
}
.form-wrap .wpforms-field {
    margin-bottom: 10px !important;
    padding: 0 !important;
}
.form-wrap .wpforms-field-label,
.form-wrap .wpforms-field-sublabel {
    margin: 0 !important;
    margin-bottom: 5px !important;
    font-weight: 400 !important;
}
.form-wrap .wpforms-error {
    margin-top: 5px !important;
}

.form-wrap .wpforms-submit {
    padding: 10px 40px !important;
    color: #fff !important;
    font-size: 18px !important;
    line-height: 18px !important;
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    border-radius: 5px !important;
    box-shadow: 0 !important;
    transition: all 0.5s ease !important;
}
    .form-wrap .wpforms-submit:hover {
        color: var(--primary) !important;
        background-color: #fff !important;
        background: #fff !important;
    }

textarea.wpforms-field-large {
    min-height: 250px;
}

/* ### Scrollbar ### */

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Animation Classes */

.fadeIn,
.fadeSlideUp,
.fadeSlideDown,
.fadeSlideFromLeft,
.fadeSlideFromRight,
.fadeZoomIn {
    opacity: 0;
}
.fadeIn.active{
    animation-name: fadeIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideUp.active {
    animation-name: fadeSlideUp;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideDown.active {
    animation-name: fadeSlideDown;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideFromLeft.active {
    animation-name: fadeSlideFromLeft;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeSlideFromRight.active {
    animation-name: fadeSlideFromRight;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}
.fadeZoomIn.active {
    animation-name: fadeZoomIn;
    animation-duration: 0.5s;
    animation-timing-function: ease-in;
    animation-delay: 0;
    animation-fill-mode: forwards;
}

.delay0 { animation-delay: 0; }
.delay01 { animation-delay: 0.1s; }
.delay02 { animation-delay: 0.2s; }
.delay03 { animation-delay: 0.3s; }
.delay04 { animation-delay: 0.4s; }
.delay05 { animation-delay: 0.5s; }
.delay06 { animation-delay: 0.6s; }
.delay07 { animation-delay: 0.7s; }
.delay08 { animation-delay: 0.8s; }
.delay09 { animation-delay: 0.9s; }
.delay1 { animation-delay: 1; }

/* Animation */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes fadeSlideFromRight {
    from {
        transform: translateX(80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeSlideFromLeft {
    from {
        transform: translateX(-80px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeSlideUp {
    from {
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeSlideDown {
    from {
        transform: translateY(-80px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeZoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}