/* ===  CONTENTS ===================================

GOOGLE FONTS
WHOLE PAGE STYLES 
BUTTONS
HEADER
DESKTOP NAV
HOMEPAGE HERO
NORMAL PAGE HERO 
FLEX CONTAINERS
SERVICES SECTION 
WHY CHOOSE US? SECTION 
LATEST WORK SECTION
REVIEWS SECTION
CTA SECTION
CONTACT FORM
FOOTER
JS CLASSES

=================================================== */


/* === GOOGLE FONTS =============================== */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;600&family=Oswald:wght@400;500;600;700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Squada+One&display=swap');

/* === WHOLE PAGE STYLES ========================= */    
:root {
    --header-height: 70px;
    --header-height-reduced: 60px;
    --accent-color-1: rgb(3, 24, 108);
    --accent-color-2: rgb(51, 126, 183);
    --accent-color-3: rgb(211, 74, 38);
    --accent-color-4: rgb(237, 150, 70);
    --accent-color-1-dark: rgb(1,10,92);
    --gradient-1: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 1) 100%);
    --gradient-2: linear-gradient(300deg, rgba(5, 54, 94, 0.7) 0%, rgba(255, 72, 0, 0.384) 100%);
    --gradient-3: linear-gradient(150deg, var(--accent-color-1) 0%, var(--accent-color-2) 100%);
    --gradient-4: linear-gradient(150deg, var(--accent-color-3) 0%, var(--accent-color-4) 100%);
    --gradient-6: linear-gradient(150deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    --dark-grey: rgb(31, 31, 31);
    --medium-grey: #7f7f7f;
    --light-grey: #b9b9b9;
    --very-light-grey: #e4e4e4;
    --paragraph-text:  'Poppins', sans-serif;
    --header-text: 'Squada One', serif;
    --border-radius: 3px;
    --box-shadow: 0px 4px 10px 0px rgba(0,0,0,0.5);
}

* {
   /* border: 1px dashed grey; */
   box-sizing: border-box;
}

html {
    max-width: 100vw;
    scroll-behavior: smooth;
    font-family: var(--paragraph-text);
    font-size: 16px;
    background-color: white;
}

body {
    overflow-x: hidden;
    background-color: white;
}

h1, h2, h3 {
    color: var(--accent-color-1);
    font-family: var(--header-text);
    font-weight: 400;
}

h2 {
    font-size: clamp(1.6rem, 10vw, 3.5rem);
    margin: 0;

}

h3 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    font-family: var(--header-text);
    font-weight: 6300;
    padding: 10px 0;
    margin: 0;  
}

h4 {
    font-family: var(--paragraph-text);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color-2);
    padding: 0;
    margin: 0;  
}

p, ul {
    font-size: 1.2rem;
    line-height: 1.7rem;
    color: var(--dark-grey);
}

section, footer {
    padding: 100px 15%;
}

.normal-link {
    text-decoration: underline;
    text-decoration-color: rgba(0,0,0,0.3);
    text-decoration-thickness: 2px;
    text-underline-offset: 0.2em;
    color: var(--dark-grey);
    font-weight: 600;
    transition:  0.3s;
}

.normal-link:hover {
    text-decoration-color: var(--accent-color-3);
}

.text-cols-1 {
    margin: 40px 0;
    padding: 1rem;
    columns: 1;
    column-gap: 40px;
    background: rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
}

.text-cols-2 {
    margin: 40px 0;
    padding: 1rem;
    columns: 2 300px;
    column-gap: 40px;
    background: rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
}

.text-cols-3 {
    margin: 40px 0;
    padding: 1rem;
    columns: 3 300px;
    column-gap: 40px;
    background: rgba(0,0,0,0.1);
    border-radius: var(--border-radius);
}

.text-cols p, .text-cols ul, .text-cols-3 ul {
    margin-top: 0;
}

.normal-list {
    color: var(--dark-grey);
    line-height: 1.4rem;
    padding-left: 2rem;
    list-style-type: square;
    list-style-position: outside;
}

.normal-list li {
    margin: 0;
    padding: 5px 0;
    line-height: 1.8rem;

    font-weight: 500;
}

.normal-list li::marker {
    color: var(--accent-color-1);
}

em {
    padding: 2em 0;
    font-size: 0.9rem;
    color: var(--medium-grey);
}

b {
    font-weight: 600;
}

figure {
    margin: 0;
    padding: 0;
}

figcaption {
    text-align: center;
    font-style: italic;
    color: var(--dark-grey);
}

.narrow-on-desktop {
    max-width: 700px;
    margin: 0 auto;
}

.img {
    font-style: italic;
}

.cropped-img {
    display: block;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
    background-color: rgba(0,0,0,0.1);
    font-style: italic;
    border-radius: calc(var(--border-radius)*2);
    box-shadow: var(--box-shadow);
}

/* === BUTTONS =================================== */
button {
    padding: 0.6em 1em;
    margin: 4px 0;
    border-radius: var(--border-radius);
    font-family: var(--paragraph-text);
    font-size: 1.2rem;
    font-weight: 500;
    transition: 0.3s;
    cursor: pointer;
    text-transform: uppercase;
    box-shadow: var(--box-shadow);
}

.button-dark {
   margin: 10px 0;
   background-color: var(--accent-color-1);
   background-image: var(--gradient-4);
   border: 2px solid;
   border-image-source: var(--gradient-4);
   border-image-slice: 1;
   color: white;
   transition: filter 0.3s;
}

.button-dark:hover {
    filter: brightness(1.2);
}

.button-light {
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid var(--accent-color-1);
    color: var(--accent-color-1);
}
 
.hero-button-container {
    padding: 0 0 0 0;
}

.hero-button-light {
    background-color: var(--accent-color-1);
    background-image: var(--gradient-4);
    border: 2px solid;
    border-image-source: var(--gradient-4);
    border-image-slice: 1;
    margin-right: 16px;
    color: white;
}

.hero-button-dark {
    background-color: rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    border: 2px solid white;
    color: white;
    margin-right: 16px;
}

.hero-button-dark i {
    margin-right: 1em;
}

.hero-button-light:hover, .hero-button-dark:hover {
    filter: brightness(1.2);
    background-color: rgba(255,255,255,0.1);
}


/* === HEADER =================================== */
header {
    display: flex;
    width: 100%;
    height: var(--header-height);
    padding: 0 15%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 3;
    background-color: (255,255,255,0);
    transition: background-color 0.3s, border-bottom 0.3s;   
}

.logo {
    display: block;
    height: calc(var(--header-height)*0.9);
    transform-origin: top left;
    transition: filter 0.1s, transform 1s, transform-origin 1s, opacity 0.3s, box-shadow 0.3s;
}

.logo:hover {
   opacity: 0.7;
}

.white-logo {
    transform: scale(1.6);
 
}

header nav {
  color: var(--dark-grey);
}

header nav > ul {
    display: flex;
    margin: 0;
    padding: 0;
    height: 100%;
    gap: 1em;
    transition: 0.3s;
}

header nav ul li {
    padding: 2px 0;
    list-style-type: none;
    position: relative;
}

header nav ul ul {
    width: auto;
    height: auto;
    margin-left: -1em;
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    backdrop-filter: blur(10px);
    transition: opacity 0.3s;
}


header nav ul ul li {
    display:  block;
    margin: 0.2em 1em;
}

header nav li:hover ul {
    opacity: 1;
    pointer-events: auto;
}

header nav ul ul li:first-child {
    /* display: none; */
}

header nav a {
    font-size: 1.1rem;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0);
    text-decoration-thickness: 0px;
    text-underline-offset: 0.4em;
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
    transition: color 1s, text-decoration-color 0.3s;
}


header nav a:hover {
    text-decoration: underline 2px white;
}

header nav ul li:last-child a i {
    font-size: 0.9em;
    margin-right: 0.2em;
}

header nav .fa-phone {
    transform: scale(1.3);
}

.white-bg {
    background-color: white;
}

.dark-nav-text {
    color: var(--medium-grey);
}

.dark-nav-text:hover {
    text-decoration-color: var(--accent-color-1);
}

.header-shadow {
    box-shadow: 0px 1px 5px rgba(0,0,0,0.2);
}

.dropdown-shadow {
    box-shadow: 0px 13px 18px -10px rgba(0,0,0,0.2);
}

.hamburger {
    display: none;
    content: url(../media/svg/hamburger.svg);
    height: calc(var(--header-height)*0.5);
    filter: invert(1);
    opacity: 0.7;
    transition: filter 0.5s, transform 0.5s, opacity 0.3s;
    cursor: pointer;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger-dark {
    filter: invert(0.4);
}

.hamburger-cross {
    content: url(../media/svg/cross.svg);
    transform: scaleX(-1);
    filter: invert(1);
}

.disable-scroll {
    height: 100dvw;
    max-height: 100dvw;
    overflow: hidden;
}


/* === HOMEPAGE HERO =================================== */
.hero {
    display: flex;
    min-height: 100vh;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--accent-color-1);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
}

.hero .hero-text {
    max-width: 1000px;
    padding: 0;
    text-align: left;
    z-index: 2;
}

.hero-text h1 {
    margin: 0.5em 0 0 0;
    font-size: clamp(0.1rem, 8vw, 3.7rem);
    font-weight: 300;
    color: white;
    text-wrap: balance;
    /* text-shadow: 3px 3px rgba(0,0,0,0.5); */
}


.hero-text h2 {
    margin: 1em 0;
    font-family: var(--paragraph-text);
    font-size: 1.4rem;
    color: white;
    font-weight: 500;
    line-height: 1em;
    /* text-shadow: 3px 3px rgba(0,0,0,0.5); */
}

.hero-text p {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.hero hr {
    display: block;
    max-width: 200px;
    margin: 1.5em auto;
    border-color: var(--accent-color-1);
}

.hero-accreditations {
    margin-top: 30px;
}

.hero-accreditations img {
    height: 50px;
    width: auto;
    margin-right: 30px;
}

.hero-logo {
    display: block;
    height: 200px;
    margin: 0 auto;
    padding-bottom: 60px;
    padding: 1em 2em;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    overflow: hidden;
}

.hero-bg-container .slide {
    background-position: 60% 0%;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    scale: 1.2;
    transition: opacity 1s ease-in-out, scale 6s;
}

.hero-bg-container .slide.show {
    opacity: 1;
    scale: 1;
}

.accreditations-container {
    display: flex;
    gap: 2em;
    position: absolute;
    z-index: 2;
    bottom: 2em;
    right: 15%;
}

.accreditations-container img {
    filter: grayscale(100%) brightness(0%) invert(100%);
    height: 25vw;
    max-height: 100px;
    opacity: 1;
}

/* === NORMAL PAGE HERO =================================== */
.page-hero {
    display: flex;
    height: 50vh;
    padding: 0;
    align-items: center;
    background-color: var(--accent-color-1);
    background-image: 
        var(--gradient-6),
        url('../media/home-hero-1.jpg');
    background-position-x: center;
    background-position-y: top;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.page-hero .hero-text {
    width: 100%;
    padding: 0 5%;
}

.page-hero-text {
    text-align: center;
}


.page-hero h1 {
    font-size: clamp(2rem, 9vw, 3.5rem);
    text-align: center;
    color:white;
    margin: 0;
}

.page-hero h2 {
    font-family: var(--paragraph-text);
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;
}

.page-hero p {
    color: white;
}


/* === INTRO SECTION =================================== */
.intro {
    background-color: white;
    z-index: 1;
}

.intro-2 {
    background-color: var(--very-light-grey);
}


.credentials {
    background-color: white;
}


/* === FLEX CONTAINERS =================================== */
.flex-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
  
  .flex-item-left, .flex-item-right {
    width: 50%;
  }
  
  .flex-container img {
    width: 100%;
  }


/* === SERVICES SECTION =================================== */
.services {
    background-color: white;
    text-align: center;
  }

  .services p {
    width: 60%;
    margin: 0 auto;
    padding: 1em 0;
    text-align: center;
  }

.service-card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 2em 0;
    gap: 1vw;
    align-content: center;
}

.service-card {
    display: flex;
    width: 100%;
    padding: 0.5em;
    align-items: flex-end;
    justify-content: flex-start;
    aspect-ratio: 1.4;
    border-radius: calc(var(--border-radius)*1);
    background-color: rgba(0,0,0,0.1);
    background-position: center;
    background-size: cover;
    text-decoration: none;
    color: white;
    font-size: 1.5vw;
    font-weight: 400;
    font-family: var(--paragraph-text);
    text-align: left;
    border-bottom: 5px solid;
    border-image: var(--gradient-4);
    border-image-slice: 1;
    box-shadow: var(--box-shadow);
    transition: 0.3s;
}

.service-card:nth-child(1) {
    background-image: var(--gradient-1), url('../media/service-1.jpg');

}

.service-card:nth-child(2) {
    background-image: var(--gradient-1), url('../media/service-2.jpg');
}

.service-card:nth-child(3) {
    background-image: var(--gradient-1), url('../media/service-3.jpg');
}

.service-card:nth-child(4) {
    background-image: var(--gradient-1), url('../media/service-4.jpg');

}

.service-card:nth-child(5) {
    background-image: var(--gradient-1), url('../media/service-5.jpg');
}

.service-card:nth-child(6) {
    background-image: var(--gradient-1), url('../media/service-6.jpg');
}

.service-card:hover {
    box-shadow: var(--box-shadow);
    filter: brightness(130%);
    scale: 1.03;
}

/* === WHY CHOOSE US? SECTION =================================== */
.why-choose-us {
    text-align: center;
    background-color: var(--accent-color-1);
    background-image: 
        var(--gradient-2),
        url("../media/hero-3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.why-choose-us h2, .why-choose-us h3, .why-choose-us p {
    color: white
}

.why-choose-us-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.why-choose-us-item {
    display: block;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    align-self: flex-start;
    flex-basis: 33%;
    flex-grow: 0;
    min-width: 200px;
    text-align: center;
    color: white;
}

.why-choose-us-item img {
    display: block;
    height: 7vw;
    width: auto;
}

.why-choose-us-item p {
    display: block;
    font-size: 1.4rem; 
    font-weight: 400;
    font-style: italic;
}

.icon {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 1);
}

.tick {
    color: white;
    font-size: 35px;
    margin-left: 10px;
}


/* === QUOTE SECTION =================================== */
.quote {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
    background-color: var(--accent-color-1);
    background: 
        var(--gradient-2),
        url("../media/hero-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.quote p {
    width: 80%;
    margin: 0 auto;
    padding: 1em 0 0 0;
    font-family: var(--paragraph-text);
    font-size: 1.8rem; 
    font-style: italic;
    line-height: 2.4rem;
    color: white;   
}

.quote i {
    color: white;
    opacity: 0.5;
    text-align: center;
}

.quote .quote-name {
    display: block;
    margin-top: 0.5em;
    color: white;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    font-style: italic;
    text-align: right;
}

.quote .quote-title {
    display: block;
    text-align: right;
    color: white;
    font-size: 1.2rem;
}


/* === LATEST WORK SECTION =================================== */
.latest-work {
    background-color: var(--very-light-grey);
}


.latest-work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1em;
}

.latest-work img {
    object-fit: cover;
    object-position: center;
    border-radius: var(--border-radius);
    aspect-ratio: 0.96;
    background-color: rgba(0,0,0,0.1);
    box-shadow: var(--box-shadow);
}

.latest-work-grid img:nth-child(1) {
    grid-column: 1/3;
    aspect-ratio: 2;
}

.latest-work-grid img:nth-child(4) {
    grid-column: 2/4;
    aspect-ratio: 2;
}



/* === REVIEWS SECTION =================================== */
.reviews {
    background-color: white;
    text-align: center;
}

.reviews h3 {
   color: #9e8d61;
}

.slideshow-container {
   max-width: 100%;
   position: relative;
   margin: 0 auto;
   padding: 0 0 30px 0;
   transition: 1s;
}
  
.prev-button, .next-button {
    width: auto;
    cursor: pointer;
    position: absolute;
    top: 50%;
    margin-top: -22px;
    padding: 16px;
    color: grey;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    user-select: none;
}
  
.prev-button {
   left: 0;
   border-radius: 0 3px 3px 0;
}

.next-button {
  right: 0;
  border-radius: 3px 0 0 3px;
}
  
.prev-button:hover, .next-button:hover {
  background-color: rgba(0,0,0,0.2);
}
  
.review-text {
    width: 80%;
    margin: 0 auto;
    padding: 1em 5%;
    bottom: 8px;
    text-align: left;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--dark-grey);
    text-align: center;
}
  
.review-name {
    padding: 0;
    margin: 0;
    font-family: Caveat, cursive;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--medium-grey);
    text-align: right;
}

.review-text i {
    color: black;
    opacity: 0.3;
}

.review-stars {
    color: var(--accent-color-4);
}

.review-source {
    height: 1.4rem;
    float: right;
}
 
.dots-container {
    text-align: center;
    padding: 10px 0 40px 0;
}

.dot { 
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #526b8d;;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}
  
.active, .dot:hover {
    background-color: var(--accent-color-2);
}
  
.fade {
   animation-name: fade;
   animation-duration: 1.5s;
}
  
@keyframes fade {
   from {opacity: 0}
   to {opacity: 1}
}

/* === ACCREDITATIONS SECTION =================================== */
.accreditations-section {
    padding-top: 40px;
    padding-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    background-color: var(--very-light-grey);
}

.accreditations-section img {
    height: 4vw;
    filter: grayscale(100%) brightness(0%) opacity(50%);
}



/* === CTA SECTION =================================== */
.CTA {
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
    background-color: var(--accent-color-1);
    background: 
        var(--gradient-2),
        url("../media/hero-4.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.CTA h2 {
    color: white;
    padding-bottom: 20px;
}

.CTA h4 {
    color: white;
}

.CTA p {
    color: white;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 1em;
}
/* === MAP =================================== */
.map {
    width: 100%;
    height: 400px;
    background-color: var(--very-light-grey);
    border: 0;
    transition: 0.5s;
}



/* === AREAS COVERED  =================================== */
.areas-covered {
    background-color: var(--very-light-grey);
}


/* === FOOTER =================================== */
footer {
    width: 100%;
    padding-bottom: 0;
    text-align: center;
    background-color: black;
    color: white;
    z-index: -1;
}

.footer-col-container {
    display: flex;
    margin:  0;
    padding-bottom: 50px;
    justify-content: space-between;
    align-items: first baseline;
    gap: 20px;
}

.footer-col {
    flex-basis: 100%;
}

.footer-col p {
    margin: 0.2em;
    font-size: 1.4rem;
    font-family: var(--paragraph-text);
    font-weight: 500;
}

footer p, #tel {
    color: white;;
    font-weight: 300;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.4em;
}

footer h3 {
    padding-top: 20px;
}

.footer-col i {
    display: block;
    font-size: 3rem;
    margin-bottom: 0.5em;
    color: white;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s;
}

.footer-col img {
    display: block;
    height: 25px;
    padding-bottom: 0.1em;
    margin: 0 auto;
}

.footer-col img:hover {
    opacity: 0.8;
}

a .footer-icon:hover {
    color: var(--accent-color-2);
}

.logo-mask {
    width: 15%;
    aspect-ratio: 3;
    display: inline-block;
    -webkit-mask-image: url("../media/logo/logo.png");
    mask-image: url("../media/logo/logo.png");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.logo-mask-background {
    width: 100%;
    height: 100%;
    background-color: var(--medium-grey);
}


.socials {
    margin: 1em 0;
}

.socials p {
    padding: 0;
    padding-bottom: 0.3em;
}

.socials-container {
    display: flex;
    justify-content: center;
    gap: 2em;
    align-items: flex-start;
}

.social-icon {
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon img {
    height: 36px;
}

#instagram-icon {
    height: 30px;
}

.footer-accreditations {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 60px 0 10px 0;
}

.footer-accreditations img {
    display: inline-block;
    height: 70px;
    width: auto;
    filter: brightness(0.6);
}

.footer-bottom {
    display: flex;
    margin-top: 10px;
    padding: 1em 0; 
    flex-wrap: wrap;
    border-top: 1px solid white;
    justify-content: space-between;
    filter: grayscale(1) opacity(0.3);
}

.footer-bottom a {
    color: white;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-copyright, .footer-built-by {
    display: inline-block;
    margin: 0rem;
    font-size: 0.8rem;
    text-align: left;
    line-height: 1em;
    color: white;
}

.footer-built-by {
    text-align: right;
}

.mobile-full-width {
    display: none;
    width: 100%;
}

/* === SCROLL ANIMATIONS =================================== */
@media (prefers-reduced-motion: no-preference) {
    /* FADE IN ------------------------------- */
    .fade-in {
        opacity: 0;
    }

    .fade-in-animation {
        animation: fade-in 1s ease forwards;
    }
    
    @keyframes fade-in {
        from {opacity: 0;}
        to {opacity: 1;}
    }

    /* SLIDE LEFT ----------------------------*/
    .slide-left {
        opacity: 0;
    }

    .slide-left-animation {
        animation: slide-left 1s ease forwards;
    }
    
    @keyframes slide-left {
        from {
            transform: translateX(-100%);
            opacity: 0;
        } to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* SLIDE RIGHT ----------------------------*/
    .slide-right {
        opacity: 0;
    }    
    .slide-right-animation {
        animation: slide-right 1s ease forwards;
    }
    
    @keyframes slide-right {
        from {
            transform: translateX(100%);
            opacity: 0;
        } to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* SLIDE DOWN ----------------------------*/   
    .slide-down {
        opacity: 0;
    } 

    .slide-down-animation {
        animation: slide-down 1s ease forwards;
    }
    
    @keyframes slide-down {
        from {
            transform: translateY(-100%);
            opacity: 0;
        } to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* SLIDE UP ----------------------------*/ 
    .slide-up {
        opacity: 0;
    }       

    .slide-up-animation {
        animation: slide-up 1s ease forwards;
    }
    
    @keyframes slide-up {
        from {
            transform: translateY(100%);
            opacity: 0;
        } to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* PULSE ----------------------------*/ 
    .pulse-animation {
        animation: pulse 0.7s ease forwards;
    }

    @keyframes pulse {
        0% {scale: 1}
        50% {scale: 1.1}
        100% {scale: 1}
    }

    /* ANIMATION DELAYS  ----------------------------*/  
    .delay-200ms{
        animation-delay: 200ms;
    }
    
    .delay-300ms{
        animation-delay: 300ms;
    }
    
    .delay-400ms{
        animation-delay: 400ms;
    }
    
    .delay-500ms{
        animation-delay: 500ms;
    }
    
    .delay-600ms{
        animation-delay: 600ms;
    }
    
    .delay-700ms{
        animation-delay: 700ms;
    }
    
    .delay-800ms{
        animation-delay: 800ms;
    }
    
    .delay-900ms{
        animation-delay: 900ms;
    }
    
    .delay-1000ms{
        animation-delay: 1000ms;
    }
}