:root {
    --background: #658387;
    --blue: #64FFC7;
    --green: #00B574;
    --footer: #0F505F4D;
    --dark: #002C33;
}

* {
    margin: auto;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

html {
    background-color: var(--background);
}

a {
    color: inherit;
    text-decoration: none;
    font-style: normal;
    font-weight: normal;
}

button {
    background: transparent;
    border: none;
}

p {
    color: #FFF;
    font-family: Poppins;
    font-size: 1rem;
    font-weight: 400;
    line-height: 140%;
}

img {
    max-width: 100%;
}

h1 {
    font-size: 6.25rem;
    font-family: "Teko", sans-serif;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    color: white;
    opacity: 0;
    animation: fadeInAnimation 1.5s ease-in-out forwards;
}

h2 {
    text-align: right;
    font-family: Teko;
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 80%;
    color: white;
}

h3 {
    font-family: "Teko", sans-serif;
    font-size: 3rem;
    color: var(--blue);
    font-style: normal;
    font-weight: 500;
    line-height: 80%;
    margin-bottom: 5px;
}

h4 {
    font-family: "Teko", sans-serif;
    font-size: 1.5rem;
    color: var(--blue);
    font-style: normal;
    font-weight: 400;

    line-height: 80%;
}

h5 {
    font-family: "Teko", sans-serif;
    font-size: 2rem;
    color: white;
    font-style: normal;
    font-weight: 500;
}

/******** MULTI PAGE STYLING ********/

.pageContainer,
.fullPageContainer {
    margin-left: auto;
    padding: 3rem;
}

.fullPageContainer {
    position: fixed;
    width: -webkit-fill-available;
    height: 100%;
    padding: 1rem;
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 1fr 1fr;
}

.heroSection {
    height: 95vh;
    display: flex;
}

.leftHalf {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-left: 5rem;
    width: 50%;
    color: white;
}

.rightHalf {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-right: 5rem;
    width: 50%;
    color: white;
}

.heroButton {
    background-color: var(--blue);
    color: var(--dark);
    border: none;
    padding: 10px 3rem;
    font-size: clamp(1rem, 5vw, 1.5rem);
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    position: relative;
    transition: color 0.2s, background-color 0.75s;
    opacity: 0;
    animation: fadeInAnimation 2.5s ease-in-out forwards;
}

.buttonAnchor {
    width: 100%;
    margin-left: 1.25rem;
}

.heroButton:before,
.heroButton:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: -1;
    width: 50%;
    background: var(--blue);
    transition: background-color 0.3s;
    transform: skewX(-20deg);
    transform-origin: top left;
    transition: color 0.2s, background-color 0.75s;
}

.heroButton:before {
    left: 0;
}

.heroButton:after {
    right: -1.25rem;
}

.heroButton:hover,
.heroButton:hover:before,
.heroButton:hover:after {
    color: white;
    background: var(--dark);
}

.heroText {
    font-size: clamp(1.2rem, 1vw, 1.875rem);
    font-weight: 300;
    line-height: 140%;
    opacity: 0;
    animation: fadeInAnimation 2.5s ease-in-out forwards;
}

.largeTitle {
    font-size: 3.5rem;
    text-align: left;
    margin: auto 0;
}

.splitSection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 2px solid var(--green);
}

.boldText {
    font-family: "Teko", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
}

.copy {
    text-align: start;
}

.largeCopy {
    font-size: 1.4rem;
    min-height: 200px;
}

.hidden {
    display: none;
}

/******** HEADER STYLING ********/

header {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-areas:
        "nav dropdown"
        "contact empty"
    ;
    grid-template-rows: 50% 50%;
    grid-template-columns: auto 0;
    transform-origin: left;
    overflow: hidden;
    z-index: 2;
}

.mobileHeader {
    display: none;
}

.mobile {
    display: none;
}

.navSection {
    grid-area: nav;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px);
    border-right: 1px solid white;
    border-top: 1px solid white;
    display: grid;
    grid-template-rows: 25% 25% 25% 25%;
    z-index: 2;
}

.headerLogo {
    background-image: url('/static/logos/forthSecurityLogoWhite.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.contactSection {
    grid-area: contact;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px);
    border-right: 1px solid white;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    z-index: 2;
}

#headerDD {
    grid-area: dropdown;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(10px);
    border-right: 1px solid white;
    border-top: 1px solid white;
    display: grid;
    grid-template-rows: 1fr 1fr 1fr 1fr;
    z-index: 2;
}

.navButtonContainer {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    transition: all 1.5s;
    max-height: 100%;
    display: felx;
}

.navButtonContainer::after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    background: white;
    left: 0;
    bottom: 0;
    cursor: pointer;
}

.navButton {
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
    font-size: 1.25rem;
    padding: 0.5rem 2rem;
    cursor: pointer;
    display: flex;
}

.navButtonText {
    font-size: 2.25rem;
}

.navButtonContainer:hover {
    background: var(--dark);
}

/******** LANDING PAGE ********/

.landingHeroContainer {
    grid-area: 2;
    grid-column-end: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    height: 100%;
    padding: clamp(1rem, 24px, 2rem);
    position: relative;
    overflow: hidden;
}

.landingHeroContainer::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: white;
    animation: fillBorder 2s forwards;
}

@keyframes fillBorder {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.landingHero {
    width: 100%;
}

#homePageHero {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

#servicesHeroVideo {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#backgroundVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1;
}

#videoOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}


.heroCTA {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 30px, 2rem);
}

.landingHeroTitle {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 600;
    opacity: 0;
    animation: fadeInAnimation 1.5s ease-in-out forwards;
    margin: 0;
}

@keyframes fadeInAnimation {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.landingHeroText {
    text-align: left;
    font-size: clamp(1.15rem, 3vw, 2rem);
    line-height: 140%;
    opacity: 0;
    animation: fadeInAnimation 2.5s ease-in-out forwards;
}

/******** ABOUT US ********/
.aboutHero {
    display: grid;
    grid-template-rows: 50% 50%;
    height: 95vh;
    margin-bottom: 2rem;
}

.textHalf {
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
    grid-column-end: span 2;
}

.imageHalf {
    grid-column-end: span 2;
    width: 100% + 2rem;
    height: 100%;
    overflow-y: hidden;
}

.fullWidthImage {
    width: 200%;
}

.aboutUsSection {
    display: grid;
    grid-template-columns: 50% 50%;
    border-bottom: 2px solid var(--green);
}

.aboutUsCopyContainer {
    padding: 1rem;
    border-right: 2px solid var(--green);
}

.headquartersContainer {
    display: grid;
    grid-auto-rows: 50% 50%;
    height: 100%;
    width: 100%;
    padding: 1rem;
}

.headquartersTitle {
    height: 100%;
    width: 100%;
    border-bottom: 2px solid var(--green);
    text-align: left;
}

.headquartersCopy {
    width: 100%;
}

.headquartersCopy .largeCopy {
    min-height: 10px;
}

.largeCopy {
    font-size: 1.25rem;
}

.specialisationContainer {
    display: flex;
    gap: 2rem;
    padding: 4rem 1rem;
    border-bottom: 2px solid var(--green);
}

.specialisationText {
    width: 65%;
}

.specialisationImageContainer {
    display: flex;
    grid-area: 2;
}

.contactContainer {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 0;
    padding: 4rem 2rem;
}

.contactCopy {
    padding: 2rem 0;
}

.storyContainer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0;
    padding: 4rem 2rem;
    border-left: 2px solid var(--green);
}

.storyCopyContainer {
    padding: 2rem 0;
}

/******** IP CCTV Page ********/
.cctvPerks {
    display: grid;
    grid-template-columns: 40% 60%;
    border-bottom: 2px solid var(--green);
    padding: 7rem 3rem 5rem 3rem;
}

.cctvPerksColumn {
    display: flex;
    flex-direction: column;
}

.cctvPerksColumn h3 {
    margin-bottom: 4rem;
}

.mobilePerksFeatre {
    display: none;
}

.cctvButtonColumn {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    width: 100%;
}

.cctvButton {
    margin-right: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background-color: transparent;
    border: 2px solid transparent;
    border-right: 2px solid var(--green);
    cursor: pointer;
}

.cctvButton:hover {
    border-right-color: var(--blue);
}

.active-cctvButton {
    background: linear-gradient(to right, var(--footer), transparent);
    border-color: var(--green);
    border-style: solid;
    border-width: 2px;
    border-right: none;
}

.copyColumn {
    display: flex;
    flex-direction: column;
    width: 90%;
    gap: 3rem;
}

/******** ACCESS CONTROL Page ********/

.accessOptionsContainer {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin-top: 0;
}

.accessOptionsButtonsColumn {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
    margin-top: 0;
}

.accessOptionsButtonContainer {
    display: flex;
    flex-direction: column;
}

.accessOptionsButton {
    width: 100%;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 1rem;
    transition: var(--background) 0.5s;
}

.accessOptionsTitleContainer {
    display: flex;
    gap: 2rem;
    margin-left: 0;
}

.accessButtonIcon {
    height: 16px;
    transition: transform 0.3s ease;
}

.accessOptionsCopy {
    transform: scaleY(0);
    height: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
    transform-origin: top;
}

.accessCopy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 4rem;
    padding: 2rem 2rem 5rem 2rem;
    width: 100%;
    border-left: 2px solid var(--green);
}

.accessTitle {
    padding: 2rem 0;
}

.activeTitle {
    color: var(--blue);
}

/******** NETWORK INFRASTRUCTURE Page ********/

.infrastructurePerksContainer {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    margin: 3rem 0;
}

.infrastructurePerksTitle {
    text-align: center;
    margin-bottom: 3rem;
}

.infrastructurePerksColumn {
    display: grid;
    grid-template-columns: 50% 50%;
}

.infrastructurePerkBox {
    max-width: 100%;
    padding: 0.5rem;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
}

.infrastructurePerkBox .boldText {
    font-size: 2rem;
    margin: 1rem 0;
    text-align: center;
}

.whatInfrastructureContainer {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
    border-left: 2px solid var(--green);
}

.whatInfrastructureColumn p {
    margin: 2rem 0;
}

li::marker {
    color: white;
}

li {
    color: white;
    padding-top: 1rem;
}

span {
    font-weight: 600;
}

/******** ALARM SYSTEMS Page ********/

.longTitle {
    font-size: 4rem;
}

.alarmSystemsGrid {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas:
        "copy deterrence"
        "copy police"
        "insurance protection"
    ;
    gap: 1rem;
    padding: 6rem 1rem;
    width: 100%;
    border-bottom: 2px solid var(--green);
}

.alarmSystemsGridCopy {
    grid-area: copy;
}

.crimeDeterrence {
    grid-area: deterrence;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/images/alarmSystemsDeterrence-600.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.policeResponse {
    grid-area: police;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/images/alarmSystemsPolice-600.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.insurance {
    grid-area: insurance;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/images/alarmSystemsInsurance-600.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.assetProtection {
    grid-area: protection;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/static/images/alarmSystemsProtection-600.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.alarmSystemsGridBox {
    height: 100%;
    width: 100%;
    padding: 1rem;
}

.alarmSystemsGridBox .appear {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-out;
    transform-origin: bottom;
}

.alarmSystemsGridBox .appear.visible {
    height: 100%;
    transition: height 0.5s ease-in;
    transform-origin: top;
}

/******** REVIEW SECTION STYLING ********/

.reviewSection {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5rem 0;
    border-bottom: 2px solid var(--green);
    text-align: center;
}

.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    border: none;
    font-size: 24px;
    color: #ffffff;
    cursor: pointer;
    outline: none;
}

.slick-prev {
    left: -120px;
}

.slick-next {
    right: -120px;
}

.arrowIcon {
    scale: 0.5;
}

.flippedIcon {
    transform: scaleX(-1);
}

.reviewCopyContainer {
    width: 80%;
}

.reviewAuthor {
    font-family: "Teko", sans-serif;
    font-size: 1.5rem;
}

.starRating {
    color: var(--green);
}

.copy.reviewCopy {
    margin-top: 10px;
}

/******** REVIEW SECTION STYLING ********/

.finalCTAContainer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 5rem 3rem;
    border-bottom: 2px solid var(--green);
    gap: 3rem;
}

.finalCTACopyContainer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 90%;
}

/******** CONTACT PAGE STYLING ********/

.mobileFullPageContainer {
    display: none;
}

.contactPageContainer {
    padding: 2rem;
    margin-top: 0;
}

.contactPageCopyContainer {
    padding: 2rem;
}

.contactPageCopy {
    font-size: 1.5rem;
}

.contactBox {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.20);
    border: 1px solid white;
    padding: 2rem;
}

/******** CONTACT COMPONENT STYLING ********/
.formColumn {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

input::placeholder,
textarea::placeholder {
    font-size: 1.25rem;
    opacity: 0.75;
    color: white;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: none;
    border-bottom: 2px solid white;
    background: transparent;
    color: white;
}

textarea {
    height: -webkit-fill-available;
    max-height: 5rem;
}

.formButton {
    margin-right: 1.25rem;
    margin-top: 1rem;
}


/******** FOOTER STYLING ********/

footer {
    background: var(--footer);
}

#footerContainer {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    margin-left: auto;
}

.footerLinksColumn {
    display: flex;
    flex-direction: column;
}

.footerLink {
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-left: 0;
    color: white;
    padding: 0.5rem;
}

.footerRight {
    height: 100%;
    display: flex;
    gap: 5rem;
    flex-direction: column;
    justify-content: space-between;
}

.footerLogo {
    width: 50%;
}

/* HAMBURGER MENU */
.ham {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 400ms;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamRotate.active {
    transform: rotate(45deg);
}

.hamRotate180.active {
    transform: rotate(180deg);
}

.hamburgerLine {
    fill: none;
    transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
    stroke: #ffffff;
    stroke-width: 5.5;
    stroke-linecap: round;
    overflow: visible;
}


.ham6 .top {
    stroke-dasharray: 41 172;
}

.ham6 .middle {
    stroke-dasharray: 41 111;
}

.ham6 .bottom {
    stroke-dasharray: 41 172;
}

.ham6.active .top {
    stroke-dashoffset: -132px;
}

.ham6.active .middle {
    stroke-dashoffset: -71px;
}

.ham6.active .bottom {
    stroke-dashoffset: -132px;
}

/******** GLOBAL MEDIA QS ********/
@media only screen and (max-width: 1020px) {

    h1 {
        font-size: 3rem;
    }

    h3 {
        line-height: 85%;
        margin-bottom: 10px;
    }

    .fullPageContainer,
    .pageContainer {
        top: 0;
    }

    .fullPageContainer {
        height: -webkit-fill-available;
    }

    .pageContainer {
        position: relative;
        padding: 1.5rem;
    }

    .splitSection {
        display: flex;
        flex-direction: column;
    }

    .leftHalf {
        margin: auto;
        width: auto;
    }
}

@media only screen and (min-width: 1400px) {
    .copy {
        font-size: clamp(1.25rem, 22px, 2rem);
    }

    .boldText {
        font-size: 2.5rem;
    }
}

/******** HEADER MEDIA QS ********/
@media only screen and (max-width: 1020px) {

    header {
        display: none;
    }

    .mobileHeader {
        display: flex;
        gap: 30%;
        width: 100vw;
        position: fixed;
        top: 0;
        z-index: 4;
        padding: 0;
        background: rgba(0, 0, 0, 0.20);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid white;
    }

    .mobile {
        display: flex;
    }

    .mobileNavContainer {
        position: fixed;
        top: auto;
        width: 100%;
        z-index: 3;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.20);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid white;
        transform: scaleY(0);
        transition: all 0.5s;
        transform-origin: top;
        overflow: hidden;
    }

    .headerLogo {
        max-width: 60px;
    }

    .mobileNavText {
        font-size: 1.25rem;
    }

    .mobileServicesNavContainer {
        position: fixed;
        top: auto;
        width: 100%;
        z-index: 2;
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem;
        transform: scaleY(0);
        transition: all 0.5s;
        transform-origin: top;
        overflow: hidden;
    }
}

@media only screen and (max-width: 650px) {
    .fullPageContainer {
        grid-template-rows: 30% 70%;
    }

    .landingHeroContainer {
        grid-template-columns: 1fr;
        grid-template-rows: 0.6fr 0.8fr 0.6fr;
    }

    .landingHeroContainer::after {
        display: none;
    }

    .landingHero {
        display: flex;
        grid-row: 2;
    }

    .landingHeroTitle {
        font-size: clamp(4.5rem, 12vw, 8rem);
    }

    .landingHeroText {
        font-size: clamp(1.15rem, 4vw, 2.5rem);
    }

    .heroText {
        font-size: 1.25rem;
    }

    .heroTitle {
        margin-top: -3rem;
    }

    .heroCTA {
        grid-row: 3;
        margin-top: -0.5rem;
    }

    .splitSection,
    .storyContainer {
        border-bottom: none !important;
    }

    footer {
        margin-top: 6rem;
    }
}

@media only screen and (max-width: 500px) {
    .fullPageContainer {
        grid-template-rows: 0% 100%;
    }

    .landingHeroContainer {
        border: none;

    }
}

/******** FOOTER MEDIA QS ********/
@media only screen and (max-width: 850px) {
    #footerContainer {
        padding: 1rem;
        gap: 4rem;
    }
}

@media only screen and (max-width: 500px) {
    #footerContainer {
        padding: 1rem;
        gap: 2rem;
        flex-direction: column;
    }

    .footerRight {
        gap: 2rem;
    }
}

/******** HOME PAGE MEDIA QS ********/
@media only screen and (max-width: 600px) {
    #homePageHero {
        position: fixed;
        top: 0;
        height: 100%;
        width: 100%;
    }
}

/******** REVIEW COMPONENT MEDIA QS ********/
@media only screen and (max-width: 1020px) {
    .reviewSection {
        padding: 2rem 0rem;
    }

    .reviewCopy {
        text-align: center;
    }
}

@media only screen and (min-width: 1400px) {
    .reviewCopyContainer {
        max-width: 800px;
    }

    .reviewCopy {
        font-size: 1.35rem;
    }
}

/******** FINAL CTA COMPONENT MEDIA QS ********/
@media only screen and (max-width: 1020px) {
    .finalCTAContainer {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1rem;
    }

    .finalCTATitle {
        text-align: center;
        font-size: 2.5rem;
    }
}

/******** CONTACT PAGE MEDIA QS ********/
@media only screen and (max-width: 720px),
(max-height: 700px) {
    .contactPage {
        display: none;
    }

    .mobileFullPageContainer {
        position: absolute;
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 2rem;
        gap: 2rem;
        margin-left: auto;
        top: auto;
    }

    .mobileContactPageTitleContainer h1 {
        font-size: 3rem;
    }

    .contactPageCopy {
        font-size: 1rem;
    }

    input::placeholder,
    textarea::placeholder {
        font-size: 1rem;
    }

    .contactBox {
        padding: 0.5rem 1rem;
    }

    .contactBox button {
        padding: 5px 3rem;
    }

    .formButton {
        margin-right: 1.25rem;
        margin-top: 0.5rem;
    }

    .heroButton {
        padding: 10px 2rem;
    }

    .rightHalf {
        width: 100%;
        margin-right: 0;
    }

    .alarmSystemsGrid {
        padding: 0;
    }

    .alarmSystemsGridCopy h3 {
        font-size: 2.5rem;
        margin-top: -2rem;
    }
}

/******** ABOUT PAGE MEDIA QS ********/
@media only screen and (max-width: 1020px) {
    .aboutHero {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        height: auto;
    }

    .textHalf {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .heroCTA {
        width: 100%;
    }

    .aboutUsSection {
        display: flex;
        flex-direction: column;
    }

    .aboutUsCopyContainer {
        padding: 1rem;
        border: none;
        border-bottom: 2px solid var(--green);
    }

    .headquartersContainer {
        display: flex;
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
    }

    .headquartersTitle {
        font-size: clamp(2rem, 5vw, 10rem);
        border: none;
        text-align: left;
    }

    .largeCopy {
        font-size: 1.25rem;
    }

    .specialisationContainer {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 1rem;
        padding-top: 2rem;
        border-bottom: 2px solid var(--green);
    }

    .specialisationText {
        width: 100%;
    }

    .contactContainer {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 0;
        padding: 1rem;
        padding-top: 2rem;
        border: none;
        border-bottom: 2px solid var(--green);
    }

    .contactCopy {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .storyContainer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 0;
        padding: 1rem;
        padding-top: 2rem;
        border: none;
        border-bottom: 2px solid var(--green);
    }
}

/******** ACCESS PAGE MEDIA QS ********/
@media only screen and (max-width: 1020px) {
    .accessOptionsContainer {
        border-bottom: 2px solid var(--green);
    }

    .accessCopy {
        border: none;
    }
}

@media only screen and (max-width: 800px) {
    .accessOptionsButtonTitle {
        margin: auto;
        font-size: 2rem;
    }
}

@media only screen and (max-width: 800px) {
    .accessOptionsButtonTitle {
        margin-left: 0;
        text-align: left;
    }
}

/******** CCTV PAGE MEDIA QS ********/
@media only screen and (max-width: 700px) {
    .cctvPerks {
        display: none;
    }

    .mobilePerksFeatre {
        display: block;
        border-bottom: 2px solid var(--green);
        padding: 2rem 1rem;
        margin-top: -5rem;
    }

    .leftHalf h1,
    .rightHalf h1 {
        margin-top: -7rem;
    }

    .accessOptionsContainer,
    .accessCopy {
        padding-left: 0;
        padding-right: 0;
    }
}

/******** ACCESS PAGE MEDIA QS ********/
@media only screen and (max-width: 1020px) {
    .alarmSystemsGrid {
        display: flex;
        flex-direction: column;
    }
}

/******** NETWORK PAGE MEDIA QS ********/
@media only screen and (max-width: 1020px) {
    .infrastructurePerksContainer {
        border-bottom: 2px solid var(--green);
    }

    .whatInfrastructureContainer {
        border: none;
    }
}

@media only screen and (max-width: 700px) {
    .infrastructurePerksContainer {
        padding: 2rem 1rem;
        margin: 0;
    }

    .infrastructurePerksContainer h3 {
        font-size: 2.5rem;
        text-align: left;
        margin-top: -2rem;
    }

    .infrastructurePerksColumn {
        grid-template-columns: 1fr;
    }

    .whatInfrastructureContainer {
        padding: 2rem 1rem;
    }
}