/* Z-index Rule */
/* Nav 200+, Footer 200+, Main 100-199, Other < 99 */

/* Font CSS */
.great-vibes-regular {
    font-family: "Great Vibes", serif;
    font-weight: 400;
    font-style: normal;
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    position: relative;
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

input[type=radio] {
    accent-color: #7e9182;
    cursor: pointer;
}

img {
    pointer-events: none;
    max-width: 100%;
    max-height: 100%;
}

/* General Text Styles */
.BlackHeader {
    color: black;
    font-family: 'Poppins', sans-serif;
}

.BlackBodyText {
    color: black;
    font-family: 'Poppins', sans-serif;
}

.BlackBodyTextLight {
    color: black;
    font-family: 'Poppins', sans-serif;
    font-weight: lighter;
}

.GreenSubText {
    color: #5b6d5d;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
}

.MainHeader {
    /* Title | H1 */
    text-align: left;
    margin: 5em 0em 0em 0em;
    background-color: #667569;
    color: white;
    border-radius: 5px 5px 0px 0px;
    padding: 10px;
}

li {
    color: black;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0;
    overflow: hidden !important;
    clip: rect(0,0,0,0) !important;
    white-space: nowrap !important;
}

/* Text Decoration */
.HorizontalTextUnderline-Black {
    max-width: 30%;
    color: black;
    margin: 20px 0px;
}

/* Animations */
.Animation-LineUp {
    animation: 2s Animation-LineUp ease-out;
}

/* Button Object Styles */
.EnquiryBlackOutlineButton {
    display: inline-block;
    background-color: black;
    border: 2px solid black;
    color: #fff;
    padding: 10px 28px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

.EnquiryBlackOutlineButton:hover {
    background: none;
    border: 2px solid black;
    color: black;
    transition: 0.25s;
}

.WhiteEnquireTodayButton {
    border: 2px solid white;
    background: none;
    color: white;
    padding: 10px 28px;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
}

.ReadMoreButton-Black {
    background-color: black;
    color: white;
    cursor: pointer;
    padding: 12px;
}

/* Objects */
.DownwardGreenArrow {
    width: 0;
    height: 0;
    margin: 1em 0em;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid #6F8470;
}

@keyframes Animation-LineUp {
    0% {
        opacity: 0;
        transform: translateY(80%);
    }

    20% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        transform: translateY(0%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.Animation-FadeIn {
    animation: animation-FadeIn 1.5s ease-in-out;
    transition: all 1s;
}

@keyframes Animation-FadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion) {
    .Animation-LineUp {
        transition: none;
    }

    .Animation-FadeIn {
        transition: none;
    }
}

.GreenDecorationBar-Horizontal {
    background-color: #6F8470;
    opacity: 0.5;
    position: absolute;
    width: 100%;
    height: 1.5em;
}

/* Nav Bar | Parent Element (Nav) */
.NavBar {
    /* Nav */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    padding-top: 3em;
    z-index: 200;
    height: auto;
    position: relative;
    max-width: 80%;
    margin: auto;
}

/* Nav bar | Hyperlinks */
.NavLinks-LeftSideContainer {
    /* Div*/
    display: flex;
    align-items: flex-end;
    grid-column: 1/2;
    border-bottom: 5px solid #424F43;
    margin-left: 10em;
}

.NavLinks-RightSideContainer {
    /* Div */
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    grid-column: 3/4;
    border-bottom: 5px solid #424F43;
    margin-right: 10em;
}

.NavLink {
    /* UL */
    margin: 5px 2px 0px 0px;
    padding: 5px 10px;
    border-radius: 10px 10px 0px 0px;
}

.NavLink li {
    /* Li */
    display: flex;
    justify-self: center;
    list-style-type: none;
    padding: 2px;
}

.NavLink a {
    /* A */
    text-decoration: none;
    color: black;
    background-color: #fff;
    border-radius: 10px;
    padding: 2px 12px;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif
}

.NavLinkColour1 {
    /* UL */
    background-color: #6F8470;
    position: relative;
    z-index: 200;
}

.NavLinkColour2 {
    /* UL */
    background-color: #92AF93;
    position: relative;
    z-index: 190;
}

/* Nav Bar | Logo */
.NavBar-Logo {
    /* Div */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    grid-row: 1/2;
    grid-column: 2/3;
}

.TaxBossLogo img {
    /* img */
    width: 25em;
    height: auto;
}

.NavPhoneBox {
    /* Div */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    padding: 6px 8px;
    background-color: #6F8470;
    border-radius: 5px 5px 0px 0px;
}

.NavPhoneBox img {
    /* Img */
    height: auto;
    width: 2em;
    margin: 0em 1em;
}

.NavPhoneBox a {
    /* A */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
}

.NavSecondNumber {
    margin-left: 5px;
}

/* Nav Bar | Mobile Navigation Inactive */
.HamburgerBar-Container {
    /* Div */
    display: none;
}

.MobileMenuBtn-Hambuger {
    /* Button */
    position: relative;
    display: block;

    background: none;
    outline: none;
    border: none;

    width: 40px;
    z-index: 98;
}

.MobileMenuBtn-Hambuger:hover {
    cursor: pointer;
}

.HamburgerBarLine,
.MobileMenuBtn-Hambuger::after,
.MobileMenuBtn-Hambuger::before {
    /* Div | Code that makes hamburger lines */
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: #111;
    transition: 0.4s;
    margin: 10px 0px;
    border-radius: 5px;
}

.MobileMenuBtn-Hambuger::after {
    width: 65%;
    transform: transform .6s;
}

.MobileNavLinks-Container {
    /* Div */
    display: none;
    left: 100%;
    z-index: 200;
    width: 100%;
    height: 100%;
}

.MobileNavLinks-Container.ServiceElementIsActive {
    /* Div */
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 90%;
    margin: 1em auto;
    left: 0;
    transition: all 5s ease-in;
    background: #6F8470;
}

*.HamburgerElementIsActive {
    overflow: hidden;
}

.MobileNavLinks {
    /* UL */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.MobileNavLinks li {
    /* LI */
    display: flex;
    justify-content: center;
    padding: 20px;
    width: 10em;
}

.MobileNavLinks a {
    /* A */
    position: relative;
    text-decoration: none;
    font-size: 30px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

/* Nav Bar | Media Queries */
@media (max-width: 500px) {
    .NavBar {
        display: flex;
        flex-direction: column;
    }

    .NavLinks-LeftSideContainer,
    .NavLinks-RightSideContainer {
        display: none;
    }

    .HamburgerBar-Container {
        display: flex;
        justify-content: flex-start;
        align-items: start;
    }

}

@media (min-width: 500px) and (max-width: 1000px) {

    .NavLinks-LeftSideContainer,
    .NavLinks-RightSideContainer {
        display: none;
    }

    .NavBar {
        display: grid;
        grid-template-columns: 75% 25%;
        border-bottom: 2px solid #7E9182;
    }

    .MobileNavigation {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .HamburgerBar-Container {
        display: flex;
        justify-content: center;
        align-items: start;
    }

    .NavPhoneBox {
        width: 90%;
    }

    .NavBar-Logo {
        margin: 0em 2em 1em 2em;
        grid-column: 1/2;
    }

    .NavBar-Logo img {
        max-width: 18em;
    }
}

@media (min-width: 1000px) and (max-width: 2000px) {
    .NavLinks-LeftSideContainer {
        margin-left: 0em;
    }

    .NavLinks-RightSideContainer {
        margin-right: 0em;
    }

    .NavBar-Logo {
        margin: 0em 2em;
    }
}

/* Index | Website Intro */

.IndexFeaturePiece-MobileDisplayContainer {
    display: none;
}

.WebsiteIntro {
    /* Section */
    display: flex;
    justify-content: space-around;
    margin: 5% auto;
    max-width: 80%;
    align-items: center;
}

.HeroText {
    /* Div */
    letter-spacing: 0.1rem;
}

.HeroText h1,
.HeroText p {
    /* h1 & p */
    padding: 5px 0px;
    font-weight: bold;
    font-size: 2.2rem;
}

.HeroText p {
    text-decoration-line: underline;
    margin-bottom: 0.5em;
}

.HeroText a {
    font-size: 1.2em;
}

.IndexFeaturePiece-Container img {
    /* Img */
    max-width: 100%;
    width: 40em;
    height: auto;
    margin: 2em;
    overflow-x: clip;
    overflow-y: visible;
}

/* Index | Feature section - Media Queries */
@media (max-width: 1000px) {
    .WebsiteIntro {
        /* Section */
        display: flex;
        flex-direction: column;
        text-align: left;
        align-items: start;
        margin: 0% 8%;
    }

    .HeroText {
        /* Div  */
        margin: 0;
        border-left: 2px solid #667569;
    }

    .HeroText h1,
    .HeroText p,
    .HeroText a {
        margin-left: 1em;
    }

    .IndexFeaturePiece-Container {
        display: none;
    }

    .IndexFeaturePiece-MobileDisplayContainer {
        display: flex;
        flex-direction: row;
        margin-left: auto;
    }

    .IndexFeaturePiece-MobileDisplayContainer img {
        height: auto;
        width: 5em;
    }
}

/* Index | Services Section */
#ServicesAnchorLink {
    /* A */
    display: inline-block;
    margin-bottom: 2em;
}

.DisplayofServices {
    max-width: 80%;
    margin: auto;
}

.ServicesDisplay-Container {
    /* Div | Main */
    display: grid;
    grid-template-columns: auto auto auto 2fr;
    grid-template-rows: auto auto;
}

/* Index | Services Section - Folder Tabs (General Styling) */
.IndexFolderTab {
    /* Div | Folder Tabs */
    display: flex;
    align-items: center;
    position: relative;
    border-bottom: none;
    height: 3em;
    width: 14em;
    border-radius: 20px 20px 0px 0px
}

.IndexFolderTab:hover {
    /* Div | Folder Tabs */
    cursor: pointer;
}

.IndexFolderTab button {
    /* Div | Folder Tabs */
    margin: 0 auto;
    font-size: 1.3em;
    background-color: white;
    padding: 2px 15px;
    border: none;
}

.IndexFolderTab button:hover {
    cursor: pointer;
}

.IndexProductDisplay {
    /* A */
    display: flex;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    transition: transform 0.5s ease;
}

.IndexProductDisplay:hover {
    transform: translateY(-10%);
    cursor: pointer;
}

.IndexProductImage {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.IndexProductImage h1 {
    border-bottom: 2px solid #5b6d5d;
}

.IndexProductImage img {
    /* Img */
    height: auto;
    max-width: 100%;
}

/* Index | Services Section - Folder Tabs (Specific Styling) */
.IndexShelf1-FolderTab.ServiceElementIsActive {
    /* Div | Folder Tab 1 */
    border: 5px solid #C8DFC9;
    border-bottom: none;
    background-color: none;
}

.IndexShelf1-FolderTab {
    /* Div | Folder Tab 1 */
    position: relative;
    background-color: #C8DFC9;
    z-index: 199;
    grid-row: 1/2;
    grid-column: 1/2;
}

.IndexShelf2-FolderTab.ServiceElementIsActive {
    /* Div | Folder Tab 2 */
    border: 5px solid #ABCDAE;
    background-color: none;
    border-bottom: none;
}

.IndexShelf2-FolderTab {
    /* Div | Folder Tab 2 */
    position: relative;
    background-color: #ABCDAE;
    grid-row: 1/2;
    grid-column: 2/3;
    z-index: 198;
}


#IndexShelf3-FolderTab.ServiceElementIsActive {
    /* Div | Folder Tab 3 */
    border: 5px solid #92AF93;
    background-color: none;
    border-bottom: none;
}

.IndexShelf3-FolderTab {
    /* Div | Folder Tab 3 */
    position: relative;
    background-color: #92AF93;
    grid-row: 1/2;
    grid-column: 3/4;
    z-index: 197;
}

/* Index | Services Section - Folder Content */
#IndexShelf1-FolderContents.ServiceElementIsActive {
    /* Div | Folder 1 */
    display: flex;
    justify-content: space-evenly;
    border: 5px solid #C8DFC9;
    padding: 4em 0em;
}

#IndexShelf1-FolderContents {
    /* Div | Folder 1 */
    display: none;
    position: relative;
    z-index: 196;
    grid-row: 2/3;
    grid-column: 1/5;
}

#IndexShelf2-FolderContents.ServiceElementIsActive {
    /* Div | Folder 2 */
    display: grid;
    justify-content: center;
    border: 5px solid #ABCDAE;
    flex-wrap: wrap;
}

#IndexShelf2-FolderContents {
    /* Div | Folder 2 */
    display: none;
    position: relative;
    z-index: 196;
    grid-row: 2/3;
    grid-column: 1/5;
}

#IndexShelf3-FolderContents.ServiceElementIsActive {
    /* Div */
    display: grid;
    justify-content: center;
    border: 5px solid #92AF93;
    flex-wrap: wrap;
}

#IndexShelf3-FolderContents {
    display: none;
    position: relative;
    z-index: 196;
    grid-row: 2/3;
    grid-column: 1/5;
}

/* Index | Services Display - Folder 2 & 3 Contents */
.IndexShelfBlurb {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.IndexShelfBlurb h1 {
    margin: 1em 0em;
}

.IndexShelfBlurb h2 {
    max-width: 80%;
    margin: 0 auto;
}

.ProductDisplayBlurb {
    /* P */
    text-align: center;
    margin: 3em auto;
    font-size: 20px;
    background-color: #6F8470;
    font-family: 'Poppins', sans-serif;
    color: white;
    max-width: 50%;
}

.IndexShelf-ProductItems {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin: 6em 0em;
}

.IndexShelf-ProductItems a {
    text-align: center;
    text-decoration: none;
    transition: transform 0.5s ease;
}

.IndexShelf-ProductItems a:hover {
    transform: translateY(-10%);
    cursor: pointer;
}

.IndexShelf-ProductItems li {
    list-style-type: none;
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    margin: 1em auto;

}

.IndexShelf-ProductItems img {
    margin: 0 auto;
}

@media (max-width: 900px) {
    .DisplayofServices {
        /* Section */
        margin-top: 2em;
        max-width: 80%;
    }

    .ServicesDisplay-Container {
        /* Div */
        grid-template-columns: auto;
        grid-template-rows: repeat(4, auto);
    }

    /* General Styles | Folder */
    .IndexFolderTab {
        /* Div */
        height: 4em;
        width: 100%;
        margin-top: -1em;
    }

    .IndexFolderTab button {
        /* Button */
        margin-top: -1em;
    }

    .IndexShelf-ProductItems {
        display: flex;
        flex-direction: column;
    }

    .IndexShelf-ProductItems img {
        width: 10em;
        height: auto;
    }

    /* Specific Styles | Folder */
    .IndexShelf1-FolderTab {
        /* Div | Folder Tab 1 */
        grid-row: 3/4;
        grid-column: 1/2;
        background-color: #C8DFC9;
        z-index: 199;
    }

    #IndexShelf1-FolderContents {
        display: flex;
        flex-direction: column;
    }

    .IndexProductImage h1 {
        display: flex;
        flex-direction: column;
        width: 60%;
        margin: 1em auto;
    }

    .IndexShelf2-FolderTab {
        /* Div | Folder Tab 2 */
        grid-row: 2/3;
        grid-column: 1/2;
        z-index: 198;
    }

    .IndexShelf3-FolderTab {
        /* Div | Folder Tab 3 */
        grid-row: 1/2;
        grid-column: 1/2;
        z-index: 197;
    }

    #IndexFolderContents.ServiceElementIsActive {
        /* Div | Folder Content Tab 1 */
        flex-direction: column;
    }

    #IndexShelf1-FolderContents,
    #IndexShelf2-FolderContents,
    #IndexShelf3-FolderContents {
        /* Div | Folder Content (All 3) */
        grid-row: 4/5;
        grid-column: 1/2;
        margin-top: -1em;
        position: relative;
    }
}

@media (min-width: 900px) and (max-width: 1800px) {
    .DisplayofServices {
        max-width: 85%;
    }
}

/* Index | Home Page Blurb */
.HomePageBlurb {
    /* Section */
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 60%;
    margin: 5% auto;
}

.BullDogClip {
    /* Img */
    position: relative;
    z-index: 199;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: -4.03em;
    height: auto;
    max-width: 15em;
}

.HomePageBlurb-Clipboard {
    /* Div */
    position: relative;
    z-index: 198;
    background-color: #7E9182;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0% 10% 5% 10%;
    border: 2px solid #667569;
}

.HomePageBlurb-List {
    /* UL */
    padding: 5em;
    background-color: white;
}

.HomePageBlurb-List li {
    /* Li */
    font-family: 'Poppins', sans-serif;
    margin-top: 1em;
    font-size: 1.3rem;
    list-style-type: circle;
}

.HomePageBlurbSignature {
    /* P */
    text-align: right;
    font-family: "Great Vibes", serif;
    text-decoration: underline;
    font-size: 1.5rem;
    margin: 1em 2em;
    color: white;
}

/* Index | Home Page Blurb Media Queries */
@media (max-width: 480px) {
    .HomePageBlurb-List {
        padding: 3em;
        text-align: center;
        list-style-type: none;

    }

    .HomePageBlurb {
        max-width: 100%;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    .HomePageBlurb-Clipboard {
        margin: 0% 10% 5% 10%;
    }

    .HomePageBlurb-List {
        padding: 3em;
        text-align: center;
        list-style-type: none;

    }

    .HomePageBlurb {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .HomePageBlurb {
        max-width: 100%;
    }
}

@media (min-width: 2000px) {
    .HomePageBlurb-Clipboard {
        margin: 0% 10% 5% 10%;
    }
}

/* Index | Stacked Folders Graphic */
.StackedFoldersGraphic {
    display: flex;
    justify-content: left;
    max-height: 100%;
    max-width: 100%;
}

/* Services Page | General Styling for all Service Pages */
.ServicePages-Main {
    /* Main */
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    gap: 2em;
    margin: 0em 10em 5em 10em;
}

.Section-ProductSection {
    /* Section */
    line-height: 2;
    border: 3px solid #667569;
    padding: 2em;
}

.ServicePageMainHeader {
    /* Title | H1 */
    grid-row: 1/2;
    grid-column: 1/4;
}

.Introduction-ServicePages h1 {
    font-size: 26px;
}

.Introduction-ServicePages p {
    /* Div */
    padding: 10px 0px;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
}

.ServicesProductImg {
    /* Img */
    height: auto;
    width: 10em;

}

.Servicepages-MoreInfoListContainer {
    /* List Container | Div */
    display: none;
}

.Servicepages-MoreInfoListContainer.ServiceElementIsActive {
    display: flex;
    flex-direction: column;
}

.ServicesMoreInfoLists {
    /* UL */
    margin: 2.5em;
    line-height: 2.5;
}

.ServicesMoreInfoLists li {
    /* Li */
    padding: 0.5em 1em;
    font-size: 20px;
}

.ServicesMoreInfoLists li::marker {
    /* Li */
    color: #7E9182;
}

.ServicePagesContactUsBtn-Container a {
    /* A */
    margin-top: 3em;
    font-size: 16px;
}

.ServicePagesContactUsBtn-Container {
    /* Button Container | Div */
    display: flex;
    justify-content: space-around;
    margin: 2em 0em 0em 0em;
    border-top: 1px solid #424F43;
}

.Servicepages-ReadMoreButtons {
    /* Button */
    background-color: black;
    color: white;
    cursor: pointer;
    border: none;
    padding: 12px;
    margin: 0 auto;
    font-size: 18px;
}

.ServicePages-ContactUsButtonDecoration {
    height: auto;
    width: 5em;
}

/* Service Pages | Tax Returns */
.Section-IndividualTaxReturns {
    /* Section */
    grid-row: 2/3;
    grid-column: 1/2;
}

.Section-SoleTraderServices {
    /* Section */
    grid-row: 2/3;
    grid-column: 2/3;
}

.Section-BusinessTaxServices {
    /* Section */
    grid-row: 2/3;
    grid-column: 3/4;
}

/* Service Pages | Business Returns */
.Section-DebtSolutions {
    /* Section */
    grid-row: 2/3;
    grid-column: 1/2;
}

.Section-Bookkeeping {
    /* Section */
    grid-row: 2/3;
    grid-column: 2/3;
}

.Section-AdvisoryServices {
    /* Section */
    grid-row: 2/3;
    grid-column: 3/4;
}

/* Service Pages | Media Queries */
@media (max-width: 1500px) {
    .ServicePages-Main {
        grid-template-columns: auto;
        grid-template-rows: repeat(4, auto);
        margin: 2em auto;
        max-width: 90%;
        gap: 2em 0em;
    }

    .ServicePageMainHeader {
        margin: 1em 0em 0em 0em;
    }

    .Section-IndividualTaxReturns {
        grid-row: 2/3;
        grid-column: 1/2;
    }

    .Section-SoleTraderServices {
        grid-row: 3/4;
        grid-column: 1/2;
    }

    .Section-BusinessTaxServices {
        grid-row: 4/5;
        grid-column: 1/2;
    }

    .Section-DebtSolutions {
        grid-row: 2/3;
        grid-column: 1/2;
    }

    .Section-Bookkeeping {
        grid-row: 3/4;
        grid-column: 1/2;
    }

    .Section-AdvisoryServices {
        grid-row: 4/5;
        grid-column: 1/2;
    }
}

@media (min-width: 1500px) and (max-width: 2000px) {
    .ServicePages-Main {
        margin: 0em 5em 5em 5em;
    }
}

/* About Page | General */

.AboutPage-Main {
    /* Main */
    gap: 2em;
    margin: 0em 5em 5em 5em;
}

.Introduction-AboutUS {
    /* Div */
    margin-top: 2em;
    max-width: 150em;
}

.Introduction-AboutUS p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

/* About Page | List */

.MoreInfoListContainer-AboutUs {
    /* Div */
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
}

.MoreInfoListContainer-AboutUs h2 {
    grid-row: 1/2;
    grid-column: 1/2;
    padding-bottom: 1em;
}

.AboutPage-InfoLists {
    /* UL */
    margin-left: 2em;
    grid-row: 2/3;
    grid-column: 1/2;
}

.AboutPage-InfoLists li {
    margin: 10px 0px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

.AboutUsImage {
    grid-row: 2/3;
    grid-column: 2/3;
    height: auto;
    width: 25em;
}

.FAQ {
    margin: 3em 0em;
}

.FAQContainer p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    margin: 1em 0em 1em 0.5em;
}

@media (max-width: 900px) {
    .AboutPage-Main {
        margin: 0em 5em 5em 5em;
    }

    .MoreInfoListContainer-AboutUs {
        display: flex;
        flex-direction: column;
    }
}

@media (min-width: 900) and (max-width: 1200px) {
    .AboutPage-Main {
        margin: 0em 5em 5em 5em;
    }
}


/* Contact Page - Direct Contact Details Section */
#ContactPageSection-DirectContactDetails {
    /* Section */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10em 0em;
}

.DirectContactDetails-IntroText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 5em 1em;
}

.DirectContactDetails-Container {
    /* Div */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.DirectContactDetails-Container img {
    /* Img */
    height: auto;
    width: 20em;
}

.DirectContactDetails-ContactElementsContainer {
    /* Div */
    display: flex;
    justify-content: left;
    flex-direction: column;
    background-color: #6F8470;
    border-left: 2px solid #424F43;
    border-radius: 0em 0.5em 0.5em 0em;
}

.ContactElementsContainer-EmailElement,
.ContactElementsContainer-PhoneElement {
    padding: 0.5em 2.5em;
}

.EmailElement-Image,
.ContactElementsContainer-PhoneElement {
    /* A */
    display: flex;
    flex-direction: row;
    text-decoration: none;
}

.EmailElement-Image p,
.ContactElementsContainer-PhoneElement p {
    /* P */
    color: white;
    margin: 5px;
    font-family: 'Poppins', sans-serif;
}

.EmailElement-Image img,
.ContactElementsContainer-PhoneElement img {
    /* Img */
    height: auto;
    width: 2em;
    vertical-align: middle;
}

.ContactElementsContainer-PhoneElement a {
    color: white;
    text-decoration: none;
}

/* Contact Page - Contact Forms Section */
#ContactPageSection-ContactForms {
    /* Section */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: 2px solid black;
    max-width: 80%;
    margin: 0 auto;
}

.ServiceSelectionImageContainer {
    display: none;
}

.ServiceSelectionImageContainer.ServiceElementIsActive {
    /* Div */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 90%;
    margin: 3em auto;
}

.ContactFormsTagLine-IntroText {
    /* Div - Tagline */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 5em 0em;
}

.ServiceSelectionImages {
    /* Div */
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.ServiceImage {
    transition: transform 0.5s ease;
}

.ServiceImage:hover {
    transform: translateY(-10%);
    cursor: pointer;
}

.Sub-ServiceOptionBox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

/* Contact Page - Form Styling */
.ServiceForms {
    display: none;
}

.ServiceForms.ServiceElementIsActive {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    border: 3px solid #5b6d5d;
    border-left: 15px solid #5b6d5d;
    box-shadow: 10px 10px #7e9182;
    margin: 5em 0em;
}

.PageTitlesContainer {
    display: flex;
    justify-content: center;
    text-align: center;
    margin: 1em 0em;
}

.FormPageTitles {
    display: none;
}

.FormPageTitles.ServiceElementIsActive {
    flex-direction: column;
    color: #fff;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    background-color: #667569;
    padding: 10px;
    border-radius: 1em;
    font-size: 20px;
}

.ProgressBarCirclesContainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 2em 0em;
}

.ProgressBarCircle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #ccc;
    color: white;
    margin: 0em 1em;
}

.ProgressBarCircle.ServiceElementIsActive {
    background-color: black;
    color: white;
    font-weight: bold;
    opacity: 0.7;
}

.ContactFormPage {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.ContactForm-InputGroup {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    flex-basis: 50%;
    padding: 0em 3em;
}

.BizContactForm-LastInputGroup {
    flex-basis: 100% !important;
    justify-content: center !important;
    align-items: center !important;
}

.RadioInputGroup {
    display: flex;
    flex-direction: column;
    margin-left: 1em;
}

.RadioInputGroup input {
    height: 20px;
    width: 20px;
}

.ContactForm-InputGroup input {
    padding: .75rem;
    border: 1px solid #ccc;
    border-radius: .25rem;
    outline: none;
    margin: 1em 0.5em;
    font-size: 20px;
}

.ContactForm-InputGroup label {
    font-size: 16px;
}

.ContactForm-InputGroup:focus {
    outline: 2px solid #aed0b0;
}

.inputRequired:after{
    content:"*";
    color: red;
}

.PageNavigationButtonsContainer {
    display: flex;
    justify-content: center;
    flex-basis: 100%;
    margin: 2em 0em;
}

.FormNavButtons {
    /* Div */
    background-color: #5b6d5d;
    border: none;
    color: white;
    padding: 10px;
    margin: 0px 5px;
    width: 5em;
    text-align: center;
    text-decoration: none;
    border-radius: 0.1em;
}

.FormNavButtons:hover {
    background-color: #6F8470;
}

/* Contact Page - Close Form Buttons */
.ContactPageForms-CloseMenu {
    /* Div - Main Container */
    display: flex;
    justify-content: center;
}

.ContactPageForms-CloseFormButton {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1em 0em;
    width: 3em;
    height: 3em;
    background: #667569;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.ContactPageForms-CrossLine1 {
    position: absolute;
    width: 2px;
    height: 25px;
    background-color: white;
    transform: rotate(45deg);
}

.ContactPageForms-CrossLine2 {
    position: absolute;
    width: 2px;
    height: 25px;
    background-color: white;
    transform: rotate(-45deg);
}

@media (max-width: 700px) {
    .ServiceSelectionImages {
        display: flex;
        flex-direction: column;
    }

    .DirectContactDetails-Container {
        flex-direction: column;
    }
    .Sub-ServiceOptionBox {
        display: flex;
        flex-direction: column;
    }
}

/* Privacy Policy */
#PrivacyPolicy {
    margin: 5% 15%;
}

#PrivacyPolicy h1,
#PrivacyPolicy p {
    font-family: 'Poppins', sans-serif;
    margin: 2em 0em;
}

.PPIntroduction-PageTitle {
    border-bottom: 1px solid black;
}

.PPLists {
    margin: 1em;
}

.PPLists li {
    padding: 10px;
}

/* Footer */
footer {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    background-color: #7E9182;
}

/* Footer | Text Content */
.FooterTextContent {
    display: flex;
    flex-direction: column;
    color: white;
    margin: 2% 5%;
    grid-column: 1/2;
    grid-row: 1/2;
    transition: 0s background-color;
    font-size: 1.3em;
}

.WhiteEnquireTodayButton:hover {
    background-color: white;
    color: #111;
    transition: 0.3s background-color;

}

.FooterTextContent p {
    font-family: 'Marcellus', serif;
    margin: 5px 0px;
}

.FooterTextContent a {
    width: fit-content;
    margin: 5px 0px;
    font-size: 16px;
}

.FooterFacebookSocialMedia img {
    margin: 2px 0px;
    height: auto;
    width: 2em;
}

/* Footer | Footer Links */
.FooterNavLinksContainer {
    /* Div */
    text-align: right;
    margin: 2% 5%;
    border-right: 2px solid white;
    grid-column: 2/3;
    grid-row: 1/2;
}

.LinksInFooter li {
    /* Li */
    list-style-type: none;
    margin: 10px 5px;
}

.LinksInFooter a {
    /* A */
    text-decoration: none;
    color: white;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3em;
}

.LinksInFooter a::after {
    content: '';
    position: absolute;
    display: block;
    text-align: right;
    background-color: white;
    width: 90%;
    bottom: 0;
    left: 0;
    height: 1.5px;
    transform: scaleX(0);
    transform-origin: top right;
}

.LinksInFooter a:hover::after {
    transform: scaleX(1);
    transition: transform 1.5s ease;
}

/* Footer | Copyright */

.Copyright {
    display: flex;
    text-align: center;
    justify-content: center;
    color: white;
    background-color: #6F8470;
    font-family: 'Marcellus', serif;
    padding: 0.5% 0%;
}

/* Footer Media Queries */
@media (max-width: 480px) {
    footer {
        display: flex;
        flex-direction: column-reverse;
    }

    .FooterTextContent {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .FooterTextContent a {
        margin-top: 5%;
    }

    .FooterNavLinksContainer {
        display: flex;
        justify-content: center;
        margin: 5% auto;
        border-right: none;
        border-bottom: 2px solid white;
    }

    .LinksInFooter {
        text-align: center;
        margin: 5% auto;
    }

    .Copyright {
        padding: 2%;
    }
}

@media (min-width: 480px) and (max-width: 768px) {
    footer {
        display: flex;
        flex-direction: column-reverse;
    }

    .FooterTextContent {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .FooterTextContent a {
        margin-top: 5%;
    }

    .FooterNavLinksContainer {
        display: flex;
        justify-content: center;
        margin: 5% auto;
        border-right: none;
        border-bottom: 2px solid white;
    }

    .LinksInFooter {
        text-align: center;
        margin: 5% auto;
    }

    .Copyright {
        padding: 2%;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    footer {
        display: flex;
        flex-direction: column-reverse;
    }

    .FooterTextContent {
        display: flex;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .FooterTextContent a {
        margin-top: 5%;
    }

    .FooterNavLinksContainer {
        display: flex;
        justify-content: center;
        margin: 5% auto;
        border-right: none;
        border-bottom: 2px solid white;
    }

    .LinksInFooter {
        text-align: center;
        margin: 5% auto;
    }

    .Copyright {
        padding: 2%;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .FooterNavLinksContainer {
        margin: 5% 10%;
    }
}