@import url('colors.css');

/* Basic CSS properties */
body {
    margin: 0;
    padding: 144px 0 0;
    font-family: "Barlow", sans-serif;
    font-weight: 400;
    background-color: var(--clr-white);
    scroll-behavior: smooth;
}
/* ====== common ========= */
img {
    max-width: 100%;
}
.bg-offwhite {
    background: var(--clr-offwhite);
}
.bg-teal {
    background: var(--clr-teal);
}
.pagetitle {
    font-weight: 400;
    font-size: 40px;
    line-height: normal;
    color: var(--clr-teal);
}
.pagedesc {
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 30px;
    color: var(--clr-gray);
}
.section-heading {
    font-size: 32px;
    line-height: normal;
    font-weight: 400;
    color: var(--clr-black);
    margin-bottom: 10px;
}
.section-subheading {
    font-size: 24px;
    line-height: normal;
    font-weight: 400;
    color: var(--clr-black);
    margin-bottom: 10px;
}
.point-heading {
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    color: var(--clr-black);
    margin-bottom: 10px;
}
.linker {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    line-height: normal;
    color: var(--clr-teal);
    transition: all 0.3s ease;
}
.linker:hover {
    color: var(--clr-black);
}
.linker::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--clr-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.linker:hover::after {
    transform: scaleX(1);
}
.section {
    padding: 100px 0;
}
.para {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
    color: var(--clr-gray);
}
.para:last-child {
    margin-bottom: 0;
}
/* ======== header ========= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100vw;
    padding: 30px 28px;
    background: var(--clr-white);
    transition: padding 0.3s ease, background-color 0.3s ease;
}
.header.small {
    padding: 10px 28px;
    background: var(--clr-transparentWhite);
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px);
}
.header .logo {
    position: relative;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
    transform: scale(1);
}
.header.small .logo {
    transform: scale(0.8);
}
.header .nav {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
}
.header .nav ul {
    position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    gap: 40px;
}
.header .nav ul li {
    position: relative;
    list-style: none;
}
.header .nav ul li a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    color: var(--clr-black);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}
.header .nav ul li a:hover {
    color: var(--clr-teal);
}
.header .nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--clr-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.header .nav ul li a:hover::after {
    transform: scaleX(1);
}
.header .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 280px;
    background-color: #fff;
    z-index: 1050;
    transition: right 0.3s ease-in-out;
    box-shadow: -4px 0 12px rgba(0,0,0,0.1);
}
.header .mobile-menu.show {
    right: 0;
}
.header .menu-btn {
    width: 55px;
    height: 55px;
    background: url('../images/ic-menu.png') no-repeat center;
    background-size: contain;
    border: none;
    box-shadow: none;
    display: none;
}
.header .menu-btn:hover {
    background-image: url('../images/ic-menu-hover.png');
}
/* ===== home page ====== */
.home-banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 144px);
    overflow: hidden;
    transition: all 0.3s ease;
}
.home-banner .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}
.home-banner .static {
    display: none;
}
.banner-content {
    background: var(--clr-white);
    padding: 48px 42px 100px;
    margin-top: -190px;
    margin-right: -12px;
    position: relative;
    z-index: 1;
}
.banner-content .pagetitle {
    margin-bottom: 48px;
    max-width: 850px;
}
.banner-content .pagedesc {
    max-width: 540px;
}
.home-accordions {
    padding-left: 28px;
    padding-right: 28px;
}
.home-accordions .section-heading {
    margin-bottom: 44px;
}
.home-accordions .accords {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 560px;
    padding-bottom: 33px;
    margin-left: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--clr-lightGray);
}
.home-accordions .accords:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}
.home-accordions .accords .title {
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    color: var(--clr-black);
    margin-bottom: 10px;
}
.home-accordions .accords .desc {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-gray);
    margin-bottom: 0;
}
.owner-banner {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}
.owner-banner .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}
.owner-banner .static {
    display: none;
}
.owner-banner .owner-content {
    position: relative;
    background: var(--clr-white);
    margin-right: -12px;
    padding: 70px 150px 40px 30px;
}
.owner-banner .owner-content .desc {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-gray);
    margin-bottom: 25px;
}
.getintouch {
    position: relative;
    width: 100%;
    height: calc(100% - 58px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.getintouch .contact-details {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.getintouch .contact-details .infolink {
    width: fit-content;
    font-size: 32px;
    line-height: normal;
    color: var(--clr-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    transform: translateX(0);
}
.getintouch .contact-details .infolink.teal {
    color: var(--clr-teal);
}
.getintouch .contact-details .infolink::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--clr-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.getintouch .contact-details .infolink:hover {
    color: var(--clr-teal);
}
.getintouch .contact-details .infolink:hover::after {
    transform: scaleX(1);
}
.form-container {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.form-container .text {
    font-size: 14px;
    line-height: normal;
    color: var(--clr-gray);
    margin-bottom: 15px;
}
.form-container input,
.form-container textarea {
    border: 1px solid var(--clr-ligherGray);
    border-radius: 0;
    padding: 14px 20px;
    font-size: 14px;
    color: var(--clr-black);
    background: var(--clr-white);
    margin-bottom: 20px;
}
.form-container input:focus,
.form-container textarea:focus {
    box-shadow: none;
    border: 1px solid var(--clr-ligherGray);
}
.form-container input::placeholder,
.form-container textarea::placeholder {
    color: var(--clr-gray);
}
.form-container textarea {
    min-height: 120px;
    /* margin-bottom: 25px; */
}
.form-container .btn-submit {
    display: inline-block;
    position: relative;
    border: none;
    box-shadow: none;
    background: var(--clr-teal);
    padding: 8px 45px 8px 25px;
    font-size: 14px;
    line-height: normal;
    color: var(--clr-white);
    transition: transform 0.3s ease;
}
.form-container .btn-submit:hover {
    background: var(--clr-tealDark);
}
.form-container .submit-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 5px;
}
.form-container .submit-wrapper:after {
    content: '';
    background: url(../images/ic-arrow.svg) no-repeat;
    background-size: contain;
    width: 20px;
    height: 12px;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%)  translateX(0);
    transition: transform 0.3s ease;
}
.form-container .submit-wrapper:hover:after {
    transform: translateY(-50%) translateX(5px); /* Slide right on hover */
}
.wpcf7-not-valid-tip {
    color: var(--clr-red);
    font-size: 11px;
    font-weight: normal;
    display: block;
    margin-top: -20px;
    margin-bottom: 4px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 6px;
    color: var(--clr-white);
    border: 2px solid var(--clr-info);
    background: var(--clr-info);
    position: absolute;
    bottom: -45px;
    left: 0;
    width: 100%;
    font-size: 12px;
    line-height: 12px;
}
.wpcf7-spinner {
    margin: 0;
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: var(--clr-success);
    background: var(--clr-success);
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: var(--clr-danger);
    background: var(--clr-danger);
}
/* ====== Enquire ====== */
.inquire-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}
.inquire-banner .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}
.inquire-banner .static {
    display: none;
}
.inquire-content {
    background: var(--clr-white);
    padding: 46px 40px;
    margin-top: -140px;
    margin-right: -12px;
    margin-left: -12px;
    position: relative;
    z-index: 1;
}
.inquire-content .pagetitle {
    margin-bottom: 0;
}
.inquire-text {
    padding: 100px 0 80px;
}
.inquire-text .pagedesc {
    margin-bottom: 0;
}
/* ======== About ========= */
.about-banner {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}
.about-banner .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}
.about-banner .static {
    display: none;
}
.about-content {
    background: var(--clr-white);
    padding: 46px 40px;
    margin-top: -140px;
    margin-right: -12px;
    margin-left: -12px;
    position: relative;
    z-index: 1;
}
.about-content .pagetitle {
    margin-bottom: 0;
}
.about-text {
    padding: 100px 0;
}
.about-text .pagedesc {
    margin-bottom: 50px;
}
.about-more .section-heading {
    color: var(--clr-white);
    padding-right: 25px;
}
.about-more .para {
    color: var(--clr-white);
}
.leader .img-wrap {
    padding-right: 8px;
    display: flex;
    width: 100%;
    position: sticky;
    top: 150px;
}
.leader .img-wrap .full {
    display: block;
}
.leader .img-wrap .crop {
    display: none;
}
.leader .section-heading {
    color: var(--clr-teal);
    margin-bottom: 0;
}
.leader .section-subheading {
    color: var(--clr-teal);
    margin-bottom: 30px;
}
/* ======== Services ========= */
.service-banner {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}
.service-banner .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}
.service-banner .static {
    display: none;
}
.service-content {
    background: var(--clr-white);
    padding: 46px 40px;
    margin-top: -140px;
    margin-right: -12px;
    margin-left: -12px;
    position: relative;
    z-index: 1;
}
.service-content .pagetitle {
    margin-bottom: 0;
}
.service-text {
    padding: 100px 0;
}
.service-text .pagedesc {
    margin-bottom: 50px;
}
.points {
    margin-bottom: 40px;
    padding-left: 20px;
}
.points li {
    font-size: 14px;
    line-height: 30px;
    color: var(--clr-gray);
}
.points li::marker {
    color: var(--clr-teal);
}
/* ====== Blog ====== */
.blog-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}
.blog-banner .parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: 0;
    will-change: transform;
}
.blog-banner .static {
    display: none;
}
.blog-content {
    background: var(--clr-white);
    padding: 46px 40px;
    margin-right: -12px;
    margin-left: -12px;
    position: relative;
}
.blog-content .pagetitle {
    margin-bottom: 0;
}
.prime-blog {
    background: var(--clr-white);
    padding: 46px 40px 0;
    margin-top: -150px;
    margin-right: -12px;
    margin-left: -12px;
    position: relative;
    z-index: 1;
}
.prime-blog .btitle {
    font-size: 32px;
    font-weight: 400;
    color: var(--clr-teal);
    margin-bottom: 22px;
    position: relative;
    display: inline-block;
}
.prime-blog .btitle::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--clr-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.prime-blog:hover .btitle::after {
    transform: scaleX(1);
}
.prime-blog .blog-link {
    position: relative;
    text-decoration: none;
}
.prime-blog .blog-link .bdate {
    display: block;
    font-size: 14px;
    line-height: normal;
    color: var(--clr-gray);
    margin-bottom: 10px;
}
.prime-blog .blog-link .desc {
    font-size: 14px;
    color: var(--clr-gray);
    margin-bottom: 0;
}
.blog-list {
    position: relative;
    padding: 0 100px;
}
.blog-list .blog-box {
    position: relative;
    text-decoration: none;
    background: var(--clr-white);
    margin-bottom: 50px;
    width: 100%;
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: transform 0.3s ease;
}
.blog-list .blog-box .blog-img {
    position: relative;
    margin-bottom: 5px;
}
.blog-list .blog-box .blog-img img {
    width: 100%;
}
.blog-list .blog-box .blog-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
.blog-list .blog-box .blog-body .bdate {
    display: block;
    font-size: 14px;
    color: var(--clr-gray);
    margin-bottom: 30px;
}
.blog-list .blog-box .blog-body .btitle {
    position: relative;
    font-size: 24px;
    color: var(--clr-teal);
    padding-bottom: 3px;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}
.blog-list .blog-box .blog-body .btitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--clr-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.blog-list .blog-box:hover .blog-body .btitle::after {
    transform: scaleX(1);
}
.blog-list .blog-box .blog-body .bdesc {
    font-size: 14px;
    color: var(--clr-gray);
    margin-bottom: 0;
     display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 3;
}
.blog-details {
    position: relative;
}
.blog-details .pagetitle {
    margin-bottom: 14px;
    max-width: 85%;
}
.blog-details .binfo {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}
.blog-details .bdate,
.blog-details .bauth {
    display: block;
    font-size: 14px;
    line-height: normal;
    color: var(--clr-gray);
}
.blog-details .bimage {
    margin-bottom: 80px;
}
.blog-details .bimage iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}
.blog-details h2 {
    font-size: 32px;
    font-weight: 400;
    color: var(--clr-black);
    margin-bottom: 20px;
}
.blog-details h3 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
    color: var(--clr-black);
    margin-bottom: 12px;
}
.blog-details h4 {
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    color: var(--clr-gray);
    margin-bottom: 50px;
}
.blog-details h5 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: var(--clr-teal);
    margin-bottom: 10px;
}
.blog-details p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: var(--clr-gray);
    margin-bottom: 40px;
}
.blog-details p.intro {
    font-size: 24px;
    line-height: 36px;
}
.blog-details p.m10 {
    margin-bottom: 10px;
}
.blog-details ul, 
.blog-details ol {
    margin-bottom: 50px;
    padding-left: 20px;
}
.blog-details ul li, 
.blog-details ol li {
    font-size: 14px;
    line-height: 24px;
    color: var(--clr-gray);
    margin-bottom: 10px;
}
.blog-details ul li::marker, 
.blog-details ol li::marker {
    font-weight: 700;
}
.blog-details ul li:last-child, 
.blog-details ol li:last-child {
    margin-bottom: 0;
}
.blog-details ul li strong, 
.blog-details ol li strong {
    display: block;
}
.blog-details .callout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 50px;
    gap: 20px;
}
.blog-details .callout .callout-text {
    width: calc(100% - 520px);
    padding-top: 30px;
    border-top: 1px solid var(--clr-gray);
}
.blog-details .callout .callout-text p {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    font-style: italic;
    color: var(--clr-teal);
    margin-bottom: 10px;
}
.blog-details .callout .callout-banner {
    width: 500px;
    height: auto;
}
.blog-details .callout .callout-banner img {
    max-width: 100%;
}
.share-buttons {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.share-buttons .social-icon {
    max-width: 30px;
}
/* ======== footer ======== */
footer {
    position: relative;
    width: 100%;
    padding: 30px 18px;
    background: url(../images/footer-bg.jpg) no-repeat;
    background-size: cover;
}
footer .flogo {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;
}
footer .footer-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
footer .footer-wrap .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}
footer .footer-wrap .footer-links .pages {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 27px;
}
footer .footer-wrap .footer-links .pages .flink {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    line-height: normal;
    color: var(--clr-white);
    text-transform: uppercase;
    transition: all 0.3s ease;
}
footer .footer-wrap .footer-links .pages .flink::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--clr-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
footer .footer-wrap .footer-links .pages .flink:hover::after {
    transform: scaleX(1);
}
footer .footer-wrap .footer-links .social {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
}
footer .footer-wrap .footer-links .social .flink {
    position: relative;
    display: inline-block;
    text-decoration: none;
    font-size: 14px;
    line-height: normal;
    color: var(--clr-white);
    transition: all 0.3s ease;
}
footer .footer-wrap .footer-links .social .flink::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: var(--clr-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
footer .footer-wrap .footer-links .social .flink:hover::after {
    transform: scaleX(1);
}
footer .footer-wrap .ftext {
    position: relative;
    display: inline-block;
    font-size: 14px;
    line-height: normal;
    color: var(--clr-white);
    margin-bottom: 0;
}

@media only screen and (max-width: 1399px) {
    .blog-details .callout .callout-text {
        width: calc(100% - 420px);
    }
    .blog-details .callout .callout-banner {
        width: 400px;
    }
}
@media only screen and (max-width: 1199px) {
    .owner-banner .owner-content {
        padding: 70px 50px 40px 30px;
    }
    .about-more .section-heading {
        padding-right: 0;
    }
    .getintouch .contact-details .infolink {
        font-size: 26px;
    }
    .blog-details .callout .callout-text {
        width: calc(100% - 320px);
    }
    .blog-details .callout .callout-banner {
        width: 300px;
    }
}
@media only screen and (max-width: 991px) {
    .blog-banner {
        height: 450px;
    }
    .prime-blog {
        margin-top: -100px;
    }
    .prime-blog .btitle {
        font-size: 28px;
    }
    .blog-list {
        padding: 0;
    }
    .blog-list .blog-box .blog-body .bdate {
        margin-bottom: 20px;
    }
    .blog-list .blog-box .blog-body .btitle {
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px) {
    body {
        padding: 91px 0 0;
    }
    .section {
        padding: 50px 0;
    }
    .section-heading {
        font-size: 24px;
    }
    .section-subheading {
        font-size: 18px;
    }
    .pagetitle {
        font-size: 36px;
    }
    .pagedesc {
        font-size: 20px;
        line-height: 26px;
    }
    .header {
        padding: 18px 8px;
    }
    .header .logo {
        max-width: 145px;
    }
    .header .nav {
        display: none;
    }
    .header .menu-btn {
        display: block;
    }
    .header .border-bottom {
        border-bottom: 1px solid var(--clr-ligherGray) !important;
    }
    .header .mobile-nav {
        position: relative;
        display: flex;
        flex-direction: column;
    }
    .header .mobile-nav ul {
        position: relative;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
    }
    .header .mobile-nav ul li {
        display: block;
        margin-bottom: 10px;
    }
    .header .mobile-nav ul li:last-child {
        margin-bottom: 0;
    }
    .header .mobile-nav ul li a {
        display: inline-block;
        font-size: 14px;
        line-height: normal;
        color: var(--clr-black);
        text-decoration: none;
    }
    .header .mobile-nav ul li a:hover {
        color: var(--clr-teal);
    }
    .home-banner {
        height: auto;
    }
    .home-banner .parallax-image {
        position: relative;
    }
    .banner-content {
        padding: 30px 30px 50px;
    }
    .banner-content .pagetitle {
        margin-bottom: 20px;
    }
    .home-accordions {
        padding-left: 8px;
        padding-right: 8px;
    }
    .home-accordions .section-heading {
        margin-bottom: 30px;
    }
    .owner-banner {
        height: 400px;
    }
    .owner-banner .parallax-image {
        height: 160%;
    }
    .owner-banner .owner-content {
        padding: 40px 30px;
    }
    .getintouch .contact-details .infolink,
    .getintouch .contact-details .infolink:hover {
        font-size: 20px;
    }
    .inquire-banner {
        height: 280px;
    }
    .inquire-content {
        margin-top: -103px;
        padding: 30px;
    }
    .inquire-text {
        padding: 50px 0;
    }
    .about-banner {
        height: 300px;
    }
    .about-content {
        margin-top: -102px;
        padding: 30px;
    }
    .about-text {
        padding: 50px 0;
    }
    .leader .img-wrap {
        padding-right: 0;
        margin-bottom: 30px;
        overflow: hidden;
        position: relative;
        top: 0;
    }
    .leader .img-wrap .full {
        display: none;
    }
    .leader .img-wrap .crop {
        display: block;
    }
    .leader .section-subheading {
        margin-bottom: 20px;
    }
    .service-banner {
        height: 300px;
    }
    .service-content {
        margin-top: -102px;
        padding: 30px;
    }
    .service-text {
        padding: 50px 0;
    }
    .blog-content {
        padding: 30px;
    }
    .blog-banner {
        height: 300px;
    }
    .prime-blog {
        padding: 30px 30px 0;
    }
    .blog-details {
        padding: 0 8px;
    }
    .blog-details .bimage {
        margin-bottom: 60px;
    }
    .blog-details p,
    .blog-details ul, 
    .blog-details ol,
    .blog-details .callout {
        margin-bottom: 30px;
    }
    .blog-details h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    .blog-details h3 {
        font-size: 26px;
        margin-bottom: 12px;
    }
    .blog-details h4 {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 40px;
    }
    .blog-details h5 {
        font-size: 18px;
    }
    .blog-details p.intro {
        font-size: 18px;
        line-height: 26px;
    }
    .blog-details .callout .callout-banner {
        width: 380px;
    }
    .blog-details .callout .callout-text {
        width: calc(100% - 400px);
    }
}
@media only screen and (max-width: 575px) {
    .section {
        padding: 40px 0;
    }
    .pagetitle {
        font-size: 24px;
    }
    .home-banner .parallax-image {
        display: none;
    }
    .home-banner .static {
        display: block;
    }
    .banner-content {
        margin-left:-12px;
        margin-top: 0;
        padding: 40px 20px;
    }
    .home-accordions .section-heading {
        margin-bottom: 20px;
    }
    .home-accordions .accords {
        margin-left: 0;
        padding-bottom: 30px;
    }
    .owner-banner {
        height: auto;
    }
    .owner-banner .parallax-image {
        display: none;
    }
    .owner-banner .static {
        display: block;
    }
    .owner-banner .owner-content {
        padding: 40px 20px;
        margin-left: -12px;
    }
    .getintouch {
        height: auto;
        padding-left: 8px;
        padding-right: 8px;
        padding-bottom: 24px;
    }
    .getintouch .section-heading {
        margin-bottom: 50px;
    }
    .getintouch .contact-details {
        gap: 20px;
    }
    .form-container {
        padding-left: 8px;
        padding-right: 8px;
    }
    .form-container .text {
        margin-bottom: 20px;
    }
    .form-container input,
    .form-container textarea {
        margin-bottom: 15px;
    }
    .form-container textarea {
        min-height: 114px;
        /* margin-bottom: 30px; */
    }
    .wpcf7-not-valid-tip {
        margin-top: -15px;
    }
    .wpcf7 form .wpcf7-response-output {
        position: relative;
        bottom: 0;
        margin: 20px 0 0;
    }
    .inquire-banner {
        height: auto;
    }
    .inquire-banner .parallax-image {
        display: none;
    }
    .inquire-banner .static {
        display: block;
    }
    .inquire-content {
        margin-top: 0;
        padding: 40px 20px 0;
    }
    .inquire-content .pagetitle {
        margin-bottom: 20px;
    }
    .inquire-text {
        padding: 0 8px 40px;
    }
    .about-banner {
        height: auto;
    }
    .about-banner .parallax-image {
        display: none;
    }
    .about-banner .static {
        display: block;
    }
    .about-content {
        margin-top: 0;
        padding: 40px 20px 0;
    }
    .about-content .pagetitle {
        margin-bottom: 20px;
    }
    .about-text {
        padding: 0 8px 40px;
    }
    .about-more, .leader, .service-more {
        padding: 40px 8px;
    }
    /* .leader .img-wrap .crop {
        max-width: 350px;
    } */
    .service-banner {
        height: auto;
    }
    .service-banner .parallax-image {
        display: none;
    }
    .service-banner .static {
        display: block;
    }
    .service-content {
        margin-top: 0;
        padding: 40px 20px 0;
    }
    .service-content .pagetitle {
        margin-bottom: 20px;
    }
    .service-text {
        padding: 0 8px 40px;
    }
    .blog-content {
        padding: 20px;
    }
    .blog-banner {
        height: auto;
    }
    .blog-banner .parallax-image {
        display: none;
    }
    .blog-banner .static {
        display: block;
    }
    .prime-blog {
        margin-top: 0;
        padding: 30px 20px 0;
    }
    .prime-blog .btitle {
        font-size: 24px;
        margin-bottom: 16px;
    }
    .blog-list {
        padding: 0 8px;
    }
    .blog-details .bimage {
        margin-bottom: 50px;
    }
    .blog-details p,
    .blog-details ul, 
    .blog-details ol,
    .blog-details .callout {
        margin-bottom: 24px;
    }
    .blog-details h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .blog-details h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .blog-details h4 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    .blog-details h5 {
        font-size: 16px;
    }
    .blog-details p.intro {
        font-size: 16px;
        line-height: 24px;
    }
    .blog-details .callout {
        flex-direction: column;
    }
    .blog-details .callout .callout-banner,
    .blog-details .callout .callout-text {
        width: 100%;
    }
    .blog-details .callout .callout-text p {
        font-size: 16px;
    }
    footer {
        padding: 40px 8px;
    }
    footer .flogo {
        margin-bottom: 50px;
    }
    footer .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    footer .footer-wrap .footer-links .pages {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }
}