/**
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 {
    --site-width: 1280px;
    --site-gutter: clamp(20px, 4vw, 48px);

    --font-heading: 'General Sans', Arial, sans-serif;
    --font-body: 'General Sans', Arial, sans-serif;

    --colour-primary: #254e7a;
    --colour-secondary: #5584b0;
    --colour-accent: #82c2e6;

    --colour-text: #111111;
    --colour-muted: #666666;
    --colour-line: rgba(0, 0, 0, 0.12);
    --colour-bg: #ffffff;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--colour-text);
    background: var(--colour-bg);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

.container {
    width: 100%;
    max-width: var(--site-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--site-gutter);
    padding-right: var(--site-gutter);
}

html {
    overflow-y: auto;
}

section {
    padding: 80px 0;
    width: 100%;
    position: relative;
}

.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%; }

.pagetop {
    padding: 120px 0 80px 0;
}

.h-100 {
    height: 100%;
}

.text-center {
    text-align: center !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;
}

/* ### MEDIA QUERIES ### */

@media (max-width: 991.98px) {
    .pinch-50 { 
        margin: auto; width: 100%;
    }
}

/* ### Scrollbar ### */

/* width */
::-webkit-scrollbar {
    width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--colour-primary);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--colour-secondary);
}

/* 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;
    }
}