:root {
    --black: #000;
    --white: #fff;
    --cyan: #0BBAA8;
    --hover: #8f8f8f;
    --divider: #B2B2B2;
    --red: red;
    --cyan2: rgba(11, 186, 168, 0.5)
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hidden-form {
    display: none;
}

.divider-bottom {
    border-bottom: 1px solid var(--divider);
}

.divider-top {
    border-top: 1px solid var(--divider);
}


h1, h2, h3, h4, h5 {
    margin: 0;
}

a {
    text-decoration: none;
    color: var(--cyan);
}

label a:hover {
    color:var(--hover);
}

html {
    font-size: 12px;
}

body {
    font-family: "Montserrat", sans-serif;
}

header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
}

header nav, .arrow-container {
    height: 5rem;
}

.nav-container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
} 

.arrow-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: -1em;
}

.menu-btn, .modal-close-btn {
    height: 3.4rem;
    width: 3.4rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: none;
    border: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.navigation-links {
    list-style: none;
    background-color: var(--black);
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    height: 100vh;
    flex-direction: column;
    gap: 2em;
    width: 14em;
    padding: 0 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.nav-text {
    text-decoration: none;
    color: var(--white);
}

.caps {
    text-transform: uppercase;
}

.navigation:hover, nav button:hover svg path, .portfolio-modal button:hover svg path {
    color: var(--cyan);
    fill: var(--cyan);
    cursor: pointer;
}

.nav-text:active, nav svg:active path {
    color: var(--hover);
}

.menu-icon, .modal-close-icon {
   width: 2.5rem;
}


.section-container {
    padding: 0 1.5rem;
    margin: 0 auto;
    max-width: 1200px;
}

.top-bar {
    display: none;
    height: 2.375rem;   
    font-size: 0.8125rem;
    margin: 0;
}

.top-bar a {
    font-family: inherit;
    color: var(--white);
    width: 100%;
}

.top-contact {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.top-contact li:hover a, .top-contact li:hover .contact-icon {
    color: var(--cyan);
    fill: var(--cyan);
}
.contact-icon {
    margin-right: 0.35rem;
    height: 0.8125rem;
    color: var(--white);
}

.portfolio-ctr  {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.portfolio-ctr iframe {
    aspect-ratio: 16 / 9;
}

.portfolio-img, .portfolio iframe {
    width: 100%;
}

.portfolio-img:hover {
    cursor: zoom-in
}

.portfolio-modal {
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 1200;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
}

.portfolio-modal .carousel.slide {
    position: relative;
}

.hidden {
    display: none;
}

.modal-close-btn {
    position: absolute;
    display: flex;
    justify-content: flex-start;
    top: 0;
    right: 0;
    z-index: 9999999;
}

.carousel-btn-ctr {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 1.5rem;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
}

.carousel-btn-ctr .carousel-control-prev {
   justify-content: flex-start; 
}

.carousel-btn-ctr .carousel-control-next {
   justify-content: flex-end; 
}

.portfolio-modal > .carousel {
width: 100%;
/* 3:2 ratio */
  max-width: calc(100vh * 1.5);
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  flex-shrink: 1; /* allow it to shrink */
  display: flex;
  flex-direction: column;
  justify-content: center;
    aspect-ratio: 3 / 2;
}

.hero-section .carousel .carousel-item {
  height: 66.667vw;
  max-height: calc(100vh - 6rem);
}

.customer-ctr {
    height: auto;
}

.hero-section .carousel-item img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
}

.portfolio-modal .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.top-container {
    width: 100%;
    margin: 0;
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.top-container ul {
    list-style: none;
    width: 100%;
    padding: 0;
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 0;
}

.top-bar li {
    margin: 0;
}

.header-social > svg path{
    fill: var(--white);
}

.black-bg {
    background-color: var(--black);
}

.white-bg {
    background-color: var(--white);
}

.section-gap {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.service-icon {
    width: 5rem;
}

.feature-ctr {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.67rem;
}

.privacy-terms-ctr,
.privacy-terms-ctr > h2, 
.features-ctr, 
.accordion, 
.about-img,
.about-page-img, 
.before-and-after-ctr, 
.custormer-ctr, 
.contact-form,  
.portfolio-ctr,
.pricing-ctr
{
    margin-top: 2.5rem;
}

.about-section-container h2 {
    text-align: center;
    display: block;
}

.about-section-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-section-container h2 {
    order: 1;
}

.paragraph-text-ctr {
    order: 3;
}

.about-section-container a {
    order: 4;
}
.about-img, .about-page-img {
    order: 2;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.features-ctr {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.features-text-ctr {
    display: flex;
    flex-direction: column;
}

h1, h3 {
    font-weight: 700;
}

.pricing-header {
    font-weight: 400;
}

h1, h2 {
    font-size: 2rem;
}

h2 {
    font-weight: 600;
}

p {
    line-height: 150%;
}

label {
    font-size: 1rem;
    font-weight: 600;
}

input::placeholder, textarea::placeholder {
    font-family: inherit;
    font-size: 1rem;
    color: var(--hover);
    font-weight: 500;
}

button {
    border: none;
}

button:focus { 
    outline: none;
    border: none;
}

button:hover {
    outline: none;
    border: none;
}

.error-ctr p {
    margin: 0;
}

.error-ctr i {
    width: 1.25rem;
}

.terms {
    accent-color: (var(--cyan));
    height: 1.25rem;
    width: 1.25rem;
    display: block;
    float: left;
    margin-right: 0.625rem;
}

.terms:hover, label:hover {
    cursor: pointer;
}

.checkbox-ctr {
    display: flex;
    align-items: top;
    justify-content: flex-start;
}

.error-ctr {
    color: var(--red);
    margin-top: 1.25rem;
    display: flex;
    gap: .25rem;
    align-items: center;
}

.error-show {
    display: flex;
}

.error-hide {
    display: none;
}

.form-error {
    border-color: var(--red);
}

input, textarea {
    text-decoration: none;
    font-family: inherit;
    display: block;
    width: 100%;
    padding: 1rem 1.375rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: 1px solid var(--black);
}

input:-webkit-autofill {
    box-shadow: 0 0 0px 1000px var(--white) inset !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--white) inset !important;
    -webkit-text-fill-color: inherit !important;
    transition: background-color 9999s ease-in-out 0s;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

input[type=text]:focus, textarea:focus {
   box-shadow: 0 0 0 1px var(--black);
   border: 1px solid var(--black);
   outline: none; 
}

textarea {
    resize: none;
}

.input-ctr > label, .privacy-terms-ctr > h2, .privacy-terms-ctr > h3 {
    margin-bottom: 1.25rem;
}

.input-ctr {
    display: flex;
    flex-direction: column;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

.paragraph-text-ctr {
    margin: 1.5rem 0;
}

.white-text {
    color: var(--white);
}

.logo {
    width: 12.5rem;
}

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

.scroll-arrow {
    width: 2.5em;
}



.lm-button {
    text-decoration: none;
    font-family: inherit;
    display: block;
    width: 100%;
    padding: 1em 0;
    font-weight: 600;
    border-radius: 0.5em;
}

.button-dark {
    background-color: var(--black);
    color: var(--white)
}

.button-trans-black-border {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.button-trans-white-border {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.button-trans:hover, .button-trans:focus {
    color: var(--cyan);
    border-color: var(--cyan);
}

.button-dark:hover {
    background-color: var(--cyan);
}

.button-dark:active {
    background-color: var(--hover);
}

.button-trans:active {
    color: var(--hover);
    border-color: var(--hover);
}

.services-link-ctr {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.before-and-after-ctr {
    position: relative;
    overflow: hidden;
    --position: 50%;
    width: 100%;
}

.before-and-after-image-ctr {
    position: relative; /* <-- Required */
    aspect-ratio: 16/9;
    width: 100%; /* <-- Ensure full width */
    max-height: calc(100vh - 9rem);
    height: auto;
}

.before-after-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
}

.image-before {
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
    z-index: 1;
}

.slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    opacity: 0;
    /* for firefox */
    width: 100%;
    height: 100%;
}

.slider-line {
    position: absolute;
    inset: 0;
    width: .125rem;
    height: 100%;
    background-color: var(--white);
    z-index: 10;
    left: var(--position);
    transform: translateX(-50%);
    pointer-events: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    left: var(--position);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 100;
}

.slider-img {
    border-radius: 50%;
    border: .125rem solid var(--white);
    width: 2rem;
    height: auto;
}

.customer-ctr button{
    display: none;
}

.star-rating-ctr {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .333rem;
    margin-bottom: 0.625rem;
}

.star-rating-ctr > svg {
    width: 1.25rem;
}

.reg-head {
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.review-comment {
    font-size: 0.833rem;
    margin-bottom: 1.25rem;
}

.review-name {
    margin-bottom: 0;
}

.trust-brand-ctr > img {
    height: 4.167rem;
}

.trust-brand-ctr {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    gap: 2.5rem;
    flex-grow: 1;
}

.trust-section h2, .cta-section h2{
    margin-bottom: 0.625rem;
}

.trust-section p {
    margin-bottom: 2rem;
}

.cta-section p {
    margin-bottom: 1.25rem;
}

.cta-section a {
    display: inline-block;
}

.cta-section {
    background: url("https://ik.imagekit.io/francoislouw/assets/images/Untitled-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* portfolio photo */



footer {
    display: block;
    position: relative;
    overflow: hidden;
}

.footer-social > svg, .header-social > svg {
    width: 20px;
}

footer nav {
    display: block;
}

footer p, .footer-bottom a {
    font-size: 0.8125rem;
}

footer h4, .pricing-text-header {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-social, .header-social {
    display: flex;
    gap: 14px;
}

.footer-right {
    width: 100%;
    text-align: center;
}

.footer-left li, .footer-left h4 {
    margin: 0 0 1.667rem 0;
}

.footer-ctr {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-right h4 {
    margin: 0 0 0.8333rem 0;
}

.footer-left {
    display: flex;
    justify-content: space-between;
}

.footer-right p {
    margin: 0 0 1.667rem 0;
}

.footer-right a {
    margin: 0;
}

.footer-left > h4 {
    margin: 0;
}

.footer-left ul, .footer-bottom ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer li > a {
    color: var(--black);
}

footer li > a:hover {
    color: var(--cyan);
}

.margin-bottom-zero {
    margin-bottom: 0 !important;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
}

.footer-bottom > nav ul {
    display: flex;
    gap: 1.25rem;
}

nav svg:hover path, .top-bar svg:hover path {
    fill: var(--cyan);
    cursor: pointer;
}

nav svg:active path, .top-bar svg:active path {
    fill: var(--hover);
    cursor: pointer;
}

#accordionPanelsStayOpenExample {
    color: var(--black) !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--cyan2);   /* your custom background color */
    color: var(--black);             /* your custom text color */
}

.accordion-button:focus,
.accordion-button:focus-visible,
.accordion-button:not(.collapsed) {
  box-shadow: 0 0 0 0.25rem var(--cyan2) !important;
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(78%) sepia(0%) saturate(13%) hue-rotate(191deg) brightness(92%) contrast(85%);
}

.accordion-button::after {
  filter: brightness(0) saturate(100%) invert(78%) sepia(0%) saturate(13%) hue-rotate(191deg) brightness(92%) contrast(85%);
}

.privacy-terms-ctr {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-terms-ctr > ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.before-after-text-ctr {
    z-index: 1000000000000;
    position: absolute;
    width: 80%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
}

.pricing-ctr {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-ctr a {
    color: var(--black);
}

.pricing-text-ctr {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.pricing-text-header {
    margin-bottom: 0.625rem;
}

.pricing-text-left p {
    margin-bottom: 0;
}

.pricing-text-left {
    max-width: 80%;
}

.paragraph-top-margin {
    margin: 1.25rem 0 0 0;
}

.pricing-header {
    margin-bottom: 1.25rem;
}

.before-and-after-section p {
    max-width: 720px;
    margin: 0.625rem auto 0 auto;
}

@media only screen and (min-width: 600px) {
    .hero-section .carousel .carousel-item {
        height: 56.333vw;
    }

    .about-section-container {
        display: block;
    }
    .about-img {
        width: 25vw;
        max-width: 220px;
        float: left;
        margin: 0 1.667rem 0.5rem 0;
    }

    .about-page-img {
        width: 50vw;
        max-width: 560px;
        float: left;
        margin: 0 1.667rem 0.5rem 0;
    }

    .about-section-container h2 {
        text-align: left !important;
    }

    .customer-ctr button {
    display: flex;
    }

    .portfolio-ctr {
    grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 768px) {
    html {
        font-size: 16px;
    }
    .hero-section .carousel .carousel-item {
        height: 52.73vw;
    }
}

@media only screen and (min-width: 992px) {
    .top-bar {
    display: flex;
    align-items: center;
    }

    .navigation-links {
    margin: 0;
    padding: 0;
    width: auto;
    height: auto;
    position: static;
    flex-direction: row;
    transform: none !important;
    transition: none !important;
    align-items: center;
    background-color: transparent;
    justify-content: space-between;
    }

    .nav-text {
        color: var(--black);
    }

    .menu-icon {
        display: none;
    }

    .hero-section .carousel .carousel-item {
        height: 36.492vw;
    }

    .feature-ctr {
        width: calc((100vw - 5.75rem) / 3);
        justify-content: flex-start;
    }

    .features-ctr {
        flex-direction: row;
        justify-content: space-between;
        margin-left: auto;
        margin-right: auto;
    }

    .features-text-ctr {
        gap: 0.625rem;
    }

    .services-link-ctr {
        flex-direction: row;
        justify-content: center;
    }

    .cta-section .lm-button {
        width: 332px;
    }

    .footer-right {
        width: 294px;
        text-align: left;
    }

    .footer-right a {
        text-align: center;
    }

    .footer-ctr {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-left {
        width: calc(100vw - 294px - 3rem)
    }

    .footer-left-inner {
        width: calc((100vw - 294px - 3rem) / 4);
    }

    .before-and-after-ctr {
        padding: 0 1.5rem;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio-ctr.photo {
    grid-template-columns: 1fr 1fr 1fr;
    }

}

@media only screen and (min-width: 1240px) {

    .section-container, .top-container, .before-and-after-ctr {
        padding-left: 0;
        padding-right: 0;
    }
    .feature-ctr {
        width: calc((1200px - 2.75rem) / 3);
    }

    .footer-left {
        width: 906px;
    }

    .footer-left-inner {
        width: calc((1200px - 294px) / 4);
    }

}
