/* Core CSS */

/*- rgb( 0, 0, 0) -*/


body {
    font-family: "Montserrat", Helvetica, Arial, "sans-serif";
    display: grid;
    margin: 0;
}

h1,
h2,
h3 {
    color: rgb(0, 0, 0);
    font-family: "proxima-nova", sans-serif;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
}

h4 {
    color: #fff;
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
}



p,
li {
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
    /*    letter-spacing: .5px;*/
    margin: 0;
    color: #444;
}

b,
strong {
    color: rgb(0, 0, 0);
}

a {
    margin: 0;

    text-decoration: none;

    color: rgb(0, 0, 0);
    transition: ease color .5s;
}

a:hover {
    curor: pointer;
    color: rgb(0, 0, 0);
}

a:visited {
    color: rgb(0, 0, 0);
}

.secondColour {
    color: rgb(242, 238, 235);
}

/* - - - - - - - - - - */

#page-content {
    padding: 64px 0;
    display: grid;
    grid-gap: 32px;
}


.workspace {
    grid-gap: 32px;
}

/* - - - - - - - - - */

.desktop-img {
    display: none;
}

@media(min-width:768px) {
    .desktop-img {
        display: block;
    }

    .mobile-img {
        display: none;
    }
}

/* - */

.feature-1 {
    /*  background-color: #222; */
    padding: 24px;
    z-index: 3;
    /* border: solid 4px aliceblue; */
    margin-top: -96px;
    width: 80%;
}

@media(min-width: 768px) {
    .feature-1 {
        margin-top: -32px;
    }
}

@media(min-width: 1200px) {
    .feature-1 {
        margin-top: -64px;
    }
}

@media(min-width: 1600px) {
    .feature-1 {
        width: 100%;
        margin-top: -128px;
    }
}

.feature-2 {
    /*  background-color: #222; */
    padding: 24px;
    z-index: 3;
    /* border: solid 4px aliceblue; */
    /* margin-top: -96px; */
    width: 80%;
}

@media(min-width: 768px) {
    .feature-2 {
        /* margin-top: -32px; */
    }
}

@media(min-width: 1200px) {
    .feature-2 {
        /* margin-top: -64px; */
    }
}

@media(min-width: 1600px) {
    .feature-2 {
        width: 100%;
        /* margin-top: -128px; */
    }
}

.feature-img-border {
    border: 1px solid #fff;
    padding: 8px;
    width: calc(100% - 16px);
}

.feature-container {
    display: grid;
    align-content: start;
    max-width: 387.66px;
    padding: 15px;
    background-color: #e4e0dd;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}

.feature-content {
    display: grid;
    border-left: solid 2px #fff;
    border-right: solid 2px #fff;
    border-bottom: solid 2px #fff;
    border-left: solid 1px #6f6f6f;
    border-right: solid 1px #6f6f6f;
    border-bottom: solid 1px #6f6f6f;
    margin: 24px 0px 16px;
}

.feature-title {
    display: grid;
    grid-template-columns: 5% max-content auto;
    grid-gap: 16px;
}

.feature-title h3 {
    margin-top: -11px;
    letter-spacing: 1px;
    color: #fff;
    color: #000;
}

.feature-title-bar {
    width: 100%;
    height: 1px;
    background-color: #fff;
    background-color: #6f6f6f;
}

.feature-content p {
    color: #fff;
    color: #000;
    padding: 16px;
    font-size: 15px;
    line-height: 24px;
}

.feature-read-more {
    display: grid;
    justify-self: center;
    border: 1px solid #fff;
    border: 1px solid #000;
    padding: 8px 16px;
    transition: ease opacity .5s;
}

.feature-read-more:hover {
    opacity: 0.5;
}


.feature-read-more h4 {
    text-transform: capitalize;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
}

.feature-1 .btn {
    color: #fff;
    padding: 8px;
    text-align: center;
    background-color: #191919;
    border: none !important;
    width: -webkit-fill-available;
}

.feature-1 .btn:hover {
    background-color: rgb(0, 0, 0);
}

.feature-2 .btn {
    color: #fff;
    padding: 8px;
    text-align: center;
    background-color: #191919;
    border: none !important;
    width: -webkit-fill-available;
}

.feature-2 .btn:hover {
    background-color: rgb(0, 0, 0);
}

/* - */

.centered {
    display: grid;
    justify-self: center;
    justify-content: center;
}

.centered h1,
.centered h2,
.centered h3,
.centered h4,
.centered p,
.centered a {
    justify-self: center;
}

/* - */

.stack {
    align-self: start;
}

/* - */

.sec {
    padding: 16px 0;
}

.heading {
    grid-gap: 8px;
}

.heading h1 {
    color: rgb(0, 0, 0);
    font-size: 32px;
}

.heading h3 {
    color: #676767;
    /*    border-top: solid 2px rgb( 0, 0, 0);*/
    padding-top: 8px;
}


/* - */


.dark {
    background-color: #222;
}


/* - */


.btn {
    display: grid;
    border: solid #222 2px;
    justify-self: start;
    padding: 8px 16px;
    font-weight: 400;
    font-size: 14px;
    transition: ease background .5s;
}

.btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
}

.btn h4 {
    text-transform: capitalize;
    color: #222;
    letter-spacing: 1px;
}

.btn:hover h4 {
    color: #fff;
}

.list {
    display: grid;
    align-content: center;
}

.list p {
    align-content: center;
    display: grid;
    grid-template-columns: max-content auto;
}

.list p:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    color: rgb(0, 0, 0);
    align-self: start;
    content: "\f1b0";
    margin-right: 8px;
    font-size: 16px;
    border-right: solid 2px;
    padding-right: 8px;
}

/* - */



/* - Testimonials - */

.testimonial-container {
    display: grid;
    width: 100%;
    background-image: url('../img/testimonial-bg.jpg');

    background-position: center center;
    background-color: #111;
    background-repeat: no-repeat;
    background-size: cover;

    min-height: 400px;
}

@media(min-width: 992px) {
    .testimonial-container {
        background-attachment: fixed;
    }
}

.testimonial {
    display: grid;
    align-self: center;
    justify-self: center;

    grid-row: 1;
    grid-column: 1;

    grid-gap: 16px;

    width: 512px;
    max-width: 80vw;

    opacity: 1;

    transition: opacity ease .5s;

    z-index: 3;
}

.opacity-0 {
    opacity: 0 !important;
}

.testimonial h3 {
    color: #fff;
    justify-self: center;
    font-size: 32px;
}

.testimonial p {
    color: #fff;
    justify-self: center;
    text-align: center;
}

.star-container {
    display: grid;
    align-content: center;
    justify-content: center;
}

.star {
    color: rgb(242, 238, 235);
    grid-row: 1;
}


.testimonial-controls {
    display: grid;
    z-index: 1;
    grid-row: 2;
    grid-column: 1;
    align-content: center;
    padding: 0 32px;
}

@media(min-width: 992px) {
    .testimonial-controls {
        grid-row: 1;
        grid-column: 1;
    }
}


.testimonial-arrow {
    color: #fff;
    font-size: 32px;
    grid-row: 1;
    grid-column: 1;

    transition: opacity .5s ease;
}

.testimonial-arrow:hover {
    cursor: pointer;
    opacity: 0.5;
}

.testimonial-left {
    justify-self: start;
}

.testimonial-right {
    justify-self: end;
}

.testimonial-dots {
    display: grid;
    grid-gap: 8px;
    justify-content: center;
    justify-self: center;
    align-self: center;
    z-index: 3;

    grid-row: 2;
    grid-column: 1;
}

.testimonial-dot {
    grid-row: 1;
    width: 8px;
    height: 8px;
    border-radius: 16px;
    border: #fff solid 1px;
    align-self: center;
}

.testimonial-dot:hover {
    cursor: pointer;
    border-color: rgb(0, 0, 0);
}

.active-testimonial-dot {
    background-color: rgb(242, 238, 235);
    border-color: rgb(242, 238, 235);
    /*border: none;*/
}

/* - */

.contact-page-details {
    display: none !important;
}

.contact-page-details p,
.contact-page-details a {
    overflow-wrap: anywhere;
}

@media(min-width: 768px) {
    .contact-page-details {
        display: grid !important;
    }
}


/* - */

hr {
    width: 80%;
    height: 1px;
    background-color: rgb(0, 0, 0);
    border: none;
}

@media(min-width: 768px) {
    hr {
        width: 750px;
    }
}

@media(min-width: 992px) {
    hr {
        width: 950px;
    }
}

@media(min-width: 1200px) {
    hr {
        width: 1200px;
    }
}

/* Catch-all Centering Class */
.cent {
    justify-self: center;
    text-align: center;
}


/* - Table - */

.w100 {
    width: 100%;
}

.elem-table {
    border: 1px solid #fff;
    background-color: #fff;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

thead {
    background-color: rgb(0, 0, 0);
    border-bottom: 2px solid #fff;
}

th {
    font-size: 14px;
    font-weight: bold;
    color: #FFFFFF;
    border-left: 2px solid #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: solid 1px;

    height: 20px;
}

th h1 {
    font-size: 14px;
    color: white;
}

tr:nth-child(2n) {
    background: rgba(222, 222, 222, 0.30);
}


/*** TABLE STYLING ***/

table {
    border: 1px solid #fff;
    background-color: #fff;
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

table td,
table th {
    border: 1px solid #111;
    padding: 10px 10px;
}

table tbody td {
    font-size: 13px;
}

table thead th:first-child {
    border-left: none;
}

table tfoot td {
    font-size: 14px;
}

table tfoot .links {
    text-align: right;
}


/* - */

.contact-box {
    border: solid 1px;
    border-top: none;
    color: #6f6f6f;
}

.contact-box-top {
    display: grid;
    grid-template-columns: 32px max-content auto;
    grid-gap: 16px;
}

.contact-box-line {
    border-top: 1px solid;
}

.contact-box-top h2 {
    margin-top: -16px;
}

.contact-box-content {
    padding: 0px 32px 24px;
}

.anti-overflow {
    overflow-wrap: anywhere;
}

.gatehouse {
    margin-block-start: 0px;
    margin-block-end: 0px;
}

.roof .workspace .element {
    align-self: center;
    justify-self: center;
}

.roof .workspace .element .element h1,
.roof .workspace .element .element h3,
.roof .workspace .element .element p {
    justify-self: center;
    text-align: center;
}

@media(max-width: 768px) {
    .roof .workspace .element {
        align-self: left;
        justify-self: left;
    }

    .roof .workspace .element .element h1,
    .roof .workspace .element .element h3,
    .roof .workspace .element .element p {
        justify-self: left;
        text-align: left;
    }
}

.mobishow {
    display: none !important;
}

.mobihide {
    display: grid !important;
}

@media (max-width: 768px) {
    .mobishow {
        display: grid !important
    }

    .mobihide {
        display: none !important;
    }
}

.d-none {
    display: none !important;
}

.video-responsive {
    position: relative; /* Allows the iframe to be absolutely positioned inside */
    overflow: hidden;   /* Ensures content stays within the container */
    width: 100%;        /* Makes the container responsive to the parent width */
    padding-top: 56.25%;/* 16:9 Aspect Ratio (9 / 16 = 0.5625) */
    height: 0;          /* Height is determined by padding-top */
}

.video-responsive iframe,
.video-responsive video {
    position: absolute; /* Positions the iframe relative to the container */
    top: 0;
    left: 0;
    width: 100%;        /* Makes the iframe fill the container */
    height: 100%;       /* Makes the iframe fill the container */
    border: none;       /* Optional: removes the default iframe border */
}

.responsive-video-modern {
    width: 100%;
    aspect-ratio: 1 / 1; /* Sets the aspect ratio explicitly */
    height: auto;
}



.hero {
    position: relative;
    display: flex;
    width: 100%;
    height: calc(100vh - 172px);
}

.hero-inner {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background-color: rgba(0,0,0,.5);
}

.hero-inner img,
.hero-inner video {
    max-width: none;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50% );
}

.hero-feature {
    display: grid;
    grid-row: 1;
    grid-column: 1;
    grid-gap: 24px;
    z-index: 5;
    padding: 0;
    max-width: 80%;
}

.hero-feature-inner {
    border-left: solid #fff 4px;
    border-bottom: solid #fff 4px;
    border-right: solid #fff 4px;
}


.hero-feature-top
{
    display: grid;
    grid-template-columns: auto max-content auto;
    grid-gap: 24px;
}

.hero-feature-top h4
{
    align-self: start;
    margin-top: -16px;
    color: #fff;
    font-size: 24px;
}

.hero-feature-bar
{
    align-self: start;
    width: 100%;
    height: 4px;
    background-color: #fff;
}

.hero-feature-txt
{
    display: grid;
    grid-gap: 24px;
    justify-content: center;
    text-align: center;
    padding: 32px;
}

.hero-feature-txt h1
{
 font-size: 25px;
     color: #fff;
 justify-self: center;
 border-bottom: solid 2px;
 padding: 16px;
 border-top: solid 2px;
 text-align: center;
}

@media( min-width: 768px)
{
 .hero-feature-txt h1
    {
  font-size: 32px;
 }
}

@media( min-width: 992px) {
 .hero-feature-txt h1 {
  font-size: 40px;
 }
}