/*! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
*,::after,::before{box-sizing:border-box}html{font-family:system-ui,'Segoe UI',Roboto,Helvetica,Arial,sans-serif,'Apple Color Emoji','Segoe UI Emoji';line-height:1.15;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4}body{margin:0}hr{height:0;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Consolas,'Liberation Mono',Menlo,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{border-style:none;padding:0}:-moz-focusring{outline:1px dotted ButtonText}:-moz-ui-invalid{box-shadow:none}legend{padding:0}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}
/*# sourceMappingURL=/sm/5b7c27b6a0fd11e81f813b36dc26f6049a71a06907ce03d53d65a3bfe866b576.map */

* {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: var(--transitionSpeed);
}

img:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

:root {
    /*  colors */
    --offBlack: #222;
    --offWhite: #F5F5F5;
    --black: #090909;
    --white: #fff;

    --transitionSpeed: .25s;
    --btnColor: var(--offBlack);
    --fontColor: var(--offBlack);
    --primaryFont: "effra", sans-serif;
}

body,html {
    overscroll-behavior: none;
    width: 100%;
    
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: subpixel-antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    -webkit-tap-highlight-color: transparent;
    font-smoothing: antialiased;

    scroll-behavior: smooth;
}

body {
    position: relative;
    color: var(--fontColor);
    font-family: var(--primaryFont);
    background-color: transparent;
    font-weight: 400;
    line-height: 1.5;
    font-size: 1rem;
    /* font-size: max(1rem,min(1.25rem,2rem)); */
    transition: .3s transform var(--transitionSpeed);

    /* cursor: none; */
}
#customCursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    mix-blend-mode: difference;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.1s ease;
    top: -20px;
    left: -20px;
    z-index: 99999999999999999;
}

body.menu-active {
    overflow: hidden;
}

h6, h5, h4, h3, h2, h1 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bs-heading-color, inherit);
}

h1, .h1 {
    font-size: 48px;
}

h2, .h2 {
    font-size: 30px;
}

h3, .h3 {
    font-size: 30px;
    /* line-height: 1; */
}

h4, .h4 {
    font-size: 18px;
    line-height: 24px;
}


p, ul, ol {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: inherit;
    line-height: 30px;
}

a {
    color: var(--fontColor);
    /* cursor: none; */
}

ul {
    margin-bottom: 1rem;
}

ul li {
    position: relative;
    margin-left: 20px;
}

/* Blog */



.post-content ol {
  margin: 1em 0;          /* Space before and after the list */
  padding-left: 1em;      /* Indent the list item text */
  list-style: decimal;    /* Use normal decimal numbering */
}

.post-content ol li {
  margin: 0.5em 0;        /* Spacing between list items */
  line-height: 1.5;       /* Readable line height */
}



.post-content .alpha-list {
  list-style-type: none;      /* Turn off default bullets/numbers */
  margin: 0;                  /* Adjust as needed */
  padding: 0;                 /* Adjust as needed */
  counter-reset: alphaList;   /* Initialize the counter */
}

.post-content .alpha-list li {
  counter-increment: alphaList; /* Increment the counter for each list item */
  margin-bottom: 0.25em;        /* Spacing between items */
  position: relative;           /* To position the ::before pseudo-element */
  padding-left: 1.5em;          /* Space for the marker */
}

.post-content .alpha-list li::before {
  content: counter(alphaList, upper-alpha) ") "; 
  /* Generates "A) ", "B) ", "C) ", etc. */
  
  position: absolute;
  left: 0;                     /* Aligns the letter to the left edge */
}




/* --- Table Styling --- */
.post-content table {
  width: 100%;                  /* Full-width table */
  border-collapse: collapse;    /* Merge borders for a cleaner look */
  margin-bottom: 1em;           /* Space after the table */
  font-size: inherit;           /* Match the parent font size */
  line-height: 1.5;             /* Improve readability */
}

.post-content table th,
.post-content table td {
  border: 1px solid #ddd;      /* Light border */
  padding: 0.75em 1em;         /* Table cell padding (adjust as needed) */
  vertical-align: top;         /* Ensures text starts at the top */
}

.post-content table thead th {
  background-color: #f3f3f3;   /* Light background for header cells */
  font-weight: 600;            /* Make header text a bit bolder */
}

/* Optional: If you want a subtle hover effect for rows */
.post-content table tbody tr:hover {
  background-color: #fafafa;   /* Very light grey on hover */
}

/* Optional: If you rely on horizontal scrolling for narrower screens */
.post-content table {
  overflow-x: auto;
  display: block;
}














/* Breadcrumbs */
.breadcrumbs {
    margin-top: 35px;
    font-size: 14px;
    color: #333;
}

/* Archive and Category Containers */
.subpage-content-inner {
    background-color: #f8f8f8;
    padding: 35px;
}

/* Masonry Grid */
.masonry-grid {
	display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
    margin-right: -20px;
}

.grid-sizer, .grid-item {
    width: calc(33.333% - 20px); /* 3 columns with 20px gutter */
    margin-bottom: 20px; /* add space between rows */
}

@media (max-width: 1024px) {
    .grid-sizer, .grid-item {
        width: calc(50% - 20px); /* 2 columns with 20px gutter */
    }
}

@media (max-width: 768px) {
    .grid-sizer, .grid-item {
        width: calc(100% - 20px); /* 1 column with 20px gutter */
    }
}

.grid-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-sizing: border-box;
	opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.grid-item.show {
    opacity: 1;
    transform: translateY(0);
}

.grid-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.featured-image {
    width: 100%;
    height: auto;
    display: block;
}
.grid-item img {
	opacity:0.9;

}

.grid-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1); /* 70% opacity black */
    z-index: 0;
}

.grid-item .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    color: white;
    width: calc(100% - 60px); /* 30px margin on each side */
}

.grid-item h2, .grid-item p {
    margin: 0;
}

.grid-item h2 {
    font-size: 1.5em;
    margin-bottom: 15px; /* 25px gap between title and date */
}

.grid-item p {
    font-size: 1em;
}


/* Responsive Font Sizes */
@media (max-width: 1024px) {
    .grid-item h2 {
        font-size: 1.3em;
    }

    .grid-item p {
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .grid-item h2 {
        font-size: 1.2em;
    }

    .grid-item p {
        font-size: 0.8em;
    }
}


/* Hero Section */
.subpage-content-inner .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 50px 35px;
	border-radius: 20px;
	min-height: 50vh;
}

.subpage-content-inner .hero__left {
    flex: 1;
}

.subpage-content-inner .hero__right {
    flex: 1;
    text-align: right;
}

.featured-image {
    width: 100%;
    height: auto;
}

.featured-image-square {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

/* Post Container */
.post-container {
    margin-top: 50px;
}

.post-content {
    /* Add content styles */
}

.post-author {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}





/* End Blog */

.testimonial__logo {
    margin-top: 35px;
    text-align: center;
}

.testimonial__logo img {
    max-height: 50px;
    width: auto;
    display: inline-block;
	max-width:220px;
}


.link-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;   
}

.container {
    max-width: calc(1156px + 2rem);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}
.header {
    position: fixed;
    z-index: 9;
    width: 100%;
    left: 0;
    top: 0;
    background-color: var(--black);
    padding: 11px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.logo {
    max-width: 150px;
    transition: var(--transitionSpeed);
/*    padding-top: 10px;*/
}

.logo img {
    display: block;
    height: auto;
    width: 100%;
}

.main-menu ul {
    list-style: none;
    display: flex;
    margin-bottom: 0;
    transition: var(--transitionSpeed);
/*    margin-top: 12px;*/
}
.main-menu ul li {
    margin-left: 1px;
    padding: 2px 17px;
}
.main-menu ul li:last-child {
    padding: 0;
}
.main-menu ul li:last-child a {
    padding: 2px 17px;
}
.main-menu ul li:last-child a:hover {
    /* text-decoration: underline; */
}
.main-menu ul li:last-child a:before {
    display: none;
}

.main-menu ul li a {
    color: var(--white);
    text-decoration: none;
    display: block;
    position: relative;
}

.main-menu ul li a:before,
.footer nav ul li a:before {
    content: "";
    height: 1px;
    background-color: var(--white);
    left: 0;
    bottom: 3px;
    position: absolute;
    width: 0;
    transition: var(--transitionSpeed);
}

.main-menu ul li a:hover:before,
.footer nav ul li a:hover:before {
    width: 100%;
}
.main-menu ul li:last-child a {
    background-color: var(--white);
    border-radius: 15px;
    color: var(--black);
    border: 2px solid var(--black);
    transition: var(--transitionSpeed);
}

.main-menu ul li:last-child a:hover {
    border-color: var(--white) !important;
    background-color: var(--black) !important;
    color: var(--white) !important;
}

/*.header.is-scrolled .main-menu ul {
    margin-top: 0;
}*/

.header.is-scrolled {
    padding: 1px 0;
}



/*.nav-cta a {
    overflow: hidden;
    border: 2px solid var(--black);
    position: relative;
    transition: .1s color, border-color .1s;
}

.nav-cta a:hover {
    border-color: var(--white);
    color: var(--white);
    transition: var(--transitionSpeed);
}

.nav-cta a span:not(.ripple) {
    color: inherit;
    position: relative;
    z-index: 3;
}

.nav-cta a:hover span:not(.ripple) {
    color: var(--white);
    transition: .2s color .1s;
}*/

.btn-simple {
    text-decoration: none;
    border-radius: 15px;
    border: 2px solid var(--black);
    font-weight: 500;
    font-size: 20px;
    border-radius: 15px;
    height: 50px;
    color: var(--black);
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
    position: relative;
    transition: color .3s;
}

.btn-simple span {
    z-index: 3;
    color: inherit;
}

span.ripple {
    position: absolute;
    border-radius: 50%;
    background: var(--black);
    transform: scale(0);
    pointer-events: none;
    z-index: 1 !important;
}


.btn-simple:hover {
    color: var(--white);
    transition: .1s color .1s;
}

.btn-simple.btn-simple--dark {
    color: var(--white);
    border-color: var(--white);
    background-color: var(--black);
    transition: .2s color .1s;
} 

.btn-simple.btn-simple--dark:hover {
    color: var(--black);
    transition: color .3s;
}

.btn-simple.btn-simple--dark .ripple {
    background: var(--white);
}

.mobile-menu {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99;
    background-color: var(--black);
    color: var(--white);
}

.mobile-menu__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-toggle {
    width: 36px;
    display: none;
    flex-direction: column;
    align-items: flex-end;
    height: 36px;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 36px;
    height: 3px;
    background-color: var(--white);
    position: relative;
    transition: var(--transitionSpeed);
}
.mobile-toggle span.mobile-toggle__last {
    width: 30px;
}
.mobile-toggle.close span.mobile-toggle__first {
    transform: rotate(45deg);
    top: 5.5px;
}

.mobile-toggle.close span.mobile-toggle__last {
    width: 36px;
    transform: rotate(-45deg);
    top: -5.5px;
}

.mobile-menu .container {
    height: 100vh;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
    margin-bottom: 0;
    padding: 0 10px;
    margin-top: 1rem;
}
.mobile-menu ul li {
    margin-left: 0;
    border-bottom: 1px solid #ffffff47;
}

.mobile-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
}

.mobile-menu ul li:last-child {
    /* margin-top: auto; */
}

.mobile-menu-active {
    overflow: hidden;
}

.header,
.main {
    transition: .3s;
    z-index: 100;
}

.mobile-menu {
    transition: .3s;
    transform: translateX(100%);
}

.mobile-menu-active .main,
.mobile-menu-active .header {
    transform: translateX(-100%);
}


.mobile-menu-active .mobile-menu {
    transform: translateX(0%);
}










.hero {
    background-color: var(--black);
    min-height: 70vh;
    color: var(--white);
    padding-top: 133px;
    padding-bottom: 80px;
}

.hero .container {
    display: grid;
    align-items: center;
    /* grid-template-columns: 464px 518px; */
    grid-template-columns: minmax(10px, 472px) minmax(0, 518px);
    gap: 20px;
    justify-content: space-between;
}

.hero__title {
    max-width: 380px;
    font-weight: 700;
    /* font-size: 54px; */
    font-size: clamp(2.5rem, 2.0625rem + 1.4583vw, 3.375rem);
    /* line-height: 64px; */
    line-height: clamp(3rem, 2.5rem + 1.6667vw, 4rem);
}
.hero__sub-title {
    /* font-size: 30px; */
    font-size: clamp(1.375rem, 1.125rem + 0.8333vw, 1.875rem);
    /* line-height: 36px; */
    line-height: clamp(1.625rem, 1.3125rem + 1.0417vw, 2.25rem);
    margin-bottom: 30px;
}
.hero__left {
    padding-bottom: 18px;
}

.hero-cta-btn {
    padding: 0 36px;
}

.hero__right img {
    border-radius: 15px;
    display: block;
    width: 100%;
    height: auto;
}
.hero__desc {
    padding-bottom: 25px;
}

.hero__desc p {
    line-height: 22px;
    font-size: 18px;
}
.what-we-do {
    padding: 77px 0 79px;
    background-color: var(--offWhite);
}

.what-we-do__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.what-we-do__img img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px 0 0 15px;
    min-height: 614px;
}

.what-we-do__content {
    padding: 50px 59px 64px;
    background-color: var(--white);
    border-radius: 0 15px 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.what-we-do__heading {
    font-size: 30px;
    margin-bottom: 32px;
}

.what-we-do__content-txt {
    font-size: 18px;
    line-height: 22px;
    overflow: hidden;
    margin-bottom: 36px;
}

.what-we-do__content-txt p {
    font-size: inherit;
    line-height: inherit;
    margin-bottom: 22px;
}

.what-we-do__content .btn-simple {
    padding: 0 33px;
    align-self: flex-start;
}


.cta {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 75px;
}

.cta__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.cta__left {
    align-self: center;
    padding-top: 18px;
}
.cta__img {
    border-radius: 15px;
    aspect-ratio: 2 / 1.85;
    object-fit: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    width: 100%;
    height: auto;
}

.cta__heading {
    font-size: 54px;
    font-size: clamp(2.5rem, 2.0625rem + 1.4583vw, 3.375rem);
    max-width: 400px;
}

.cta__sub-heading {
    max-width: 360px;
    margin-bottom: 45px;
}

.cta__left .btn-simple {
    padding: 0 40px;
}

.how-we-do {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding: 70px 0 102px;
}

.how-we-do:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #F5F5F5A8;

}

.how-we-do .container {
    position: relative;
    z-index: 2;
}

.how-we-do__heading {
    margin-bottom: 53px;
}

.testimonial {
    padding-top: 75px;
    padding-bottom: 64px;
    text-align: center;
    background-color: var(--white);
}
.testimonial .container {
    max-width: 790px;
    margin: 0 auto;
}
.testimonial-slider {
    padding-bottom: 88px;
}

.testimonial__author {
    font-weight: bold;
}

.testimonial__section-heading {
    margin-bottom: 32px;
}
.testimonial__txt {
    margin-bottom: 35px;
}
.testimonial__txt p {
    font-size: 21px;
    line-height: 27px;
    margin-bottom: 0;
}
.testimonial__meta {
    font-size: 22px;
}

.testimonial-slider .swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    margin: 0 10px !important;
    opacity: 1;
    background: transparent;
    border: 2px solid var(--black);
    /* cursor: none; */
}

.swiper-pagination-bullet-active {
    background-color: var(--black) !important;
}

.cta.cta-2 {
    padding: 80px 0 73px;
}

.cta-2 .cta__sub-heading {
    max-width: 450px;
}

















.card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 42px 40px 28px 42px;
    display: grid;
    grid-template-columns: 1fr 96px;
    gap: 46px;
    align-items: end;
}
.card__left {
    align-self: start;
}

.card .btn-simple {
    border-color: var(--black);
    width: 98px;
    margin-bottom: 8px;
}
.cards-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.card__heading {
    font-size: 22px;
    margin-bottom: 21px;
}
.card__desc {
    padding-bottom: 1rem;
}
.card__desc p {
    font-size: 18px;
    letter-spacing: -.45px;
    line-height: 21px;
}
.card__desc p:last-of-type {
    margin-bottom: 0;
}
.people-cards {
    display: grid;
/*    grid-template-columns: repeat(auto-fit, minmax(200px, calc(33.33% - 27px)));*/
    grid-template-columns: repeat(2, minmax(200px, 360px));
    gap: 40px;
    justify-content: center;
}

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

.people-card__img {
    position: relative;
    margin-bottom: 28px;
}

.people-card__img img {
    border-radius: 15px;
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
    object-position: top;
    display: block;
    height: auto;
    width: 100%;
}

.people-card__img svg {
    height: 30px;
    width: 30px;
    position: absolute;
    right: 15px;
    top: 20px;
    opacity: 0;
    transition: var(--transitionSpeed);
}
.people-card__img:hover svg {
    opacity: 1;
}
.people-card__img .link-mask:hover + img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.people-card__heading {
    font-size: 22px;
    margin-bottom: 10px;
}
.people-card__sub-heading {
    font-size: 18px;
}

.who-we-are {
    padding: 77px 0 74px;
}

.who-we-are .what-we-do__container {
    margin-bottom: 81px;
}





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

.contact .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 69px;
    padding-bottom: 23px;
}

.contact-form * {
    outline: 0 !important;
}
.contact-form {
    padding-top: 5px;
}
.contact__heading {
    font-size: 54px;
    font-size: clamp(2.5rem, 2.0625rem + 1.4583vw, 3.375rem);
    max-width: 460px;
    letter-spacing: -.15px;
}
.contact__sub-heading {
    max-width: 460px;
    margin-bottom: 26px;
}
.contact__description {
    font-size: 18px;
}

.contact__description p {
    font-size: inherit;
}

.contact__description p:last-child {
    margin-bottom: 0;
}

.contact-form p {
    margin-bottom: 0;
}
.contact-form .form-row {
    gap: 20px;
    display: flex;
    width: 100%;
    margin-bottom: 19px;
}
.contact-form .form-col {
    flex: 1;
}

.contact-form label {
    width: 100%;
    display: block;
    color: var(--white);
    font-weight: 400;
    letter-spacing: -.15px;
}
.wpcf7-form-control-wrap {
    display: block;
    padding-top: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
}
.contact-form input {
    min-height: 55px;
    border-radius: 15px;
    padding: 0 20px;
}
.contact-form textarea {
    height: 167px;
    border-radius: 15px;
    margin-bottom: 0;
    padding: 20px 20px;
}

.contact-form .btn-simple {
    width: 154px;
    height: 51px;
    line-height: 51px;
    border-radius: 15px;
    background-color: transparent;
    border: 1px solid var(--white);
    border: 1.5px solid var(--white);
    cursor: pointer;
    margin-top: 0;
    transition: var(--transitionSpeed);
    color: var(--white);
}

.contact-form ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: var(--white);
    opacity: 1;
}
.contact-form ::-moz-placeholder { /* Firefox 19+ */
    color: var(--white);
    opacity: 1;
}
.contact-form :-ms-input-placeholder { /* IE 10+ */
    color: var(--white);
    opacity: 1;
}
.contact-form :-moz-placeholder { /* Firefox 18- */
    color: var(--white);
    opacity: 1;
}


.contact-form input:focus::-webkit-input-placeholder,
.contact-form textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}
.contact-form input:focus::-moz-placeholder,
.contact-form input:focus::-moz-placeholder { /* Firefox 19+ */
    opacity: 0;
}
.contact-form input:focus:-ms-input-placeholder { /* IE 10+ */
    opacity: 0;
}
.contact-form input:focus:-moz-placeholder { /* Firefox 18- */
    opacity: 0;
}
.contact-form .wpcf7 form .wpcf7-response-output {
    border-radius: 15px;
    padding: 0 20px;
    line-height: 55px;
    border-color: #fff !important;
    margin-left: auto;
    margin-right: auto;
}
.contact-form .wpcf7-not-valid-tip {
    color: #fff;
    font-size: 14px;
    padding-left: 5px;
}
.contact-form textarea + span {
    margin-top: -10px;
}

.smi {
    padding-top: 8px;
    display: flex;
}

.smi svg {
    display: block;
    width: 20px;
    height: 20px;
}

.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 58px 0 61px;
}
.footer__img img {
    padding-top: 4px;
    width: 150px;
    height: auto;
    object-fit: cover;
    display: block;
}

.footer a,
.footer span {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
}
.footer__row {
    display: grid;
    grid-template-columns: 168px 170px 170px 288px;
    gap: 0;
    justify-content: space-between;
    margin-bottom: 67px;
}
.footer nav ul {
    list-style: none;
    display: flex;
    gap: 36px;
}
.footer nav ul li {
    margin-left: 0;
}
.footer nav a:hover {
    /* text-decoration: underline; */
}
.footer__col p {
    line-height: 22px;
    font-size: 18px;
}
.footer__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer-legal ul {
    justify-content: flex-end;
}
.footer__col-contact a,
.footer__col-contact span {
    display: block;
    line-height: 22px;
    white-space: nowrap;
}

/* Modal styles */

.overflow-hidden {
    overflow: hidden !important;
}
.modal {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.4);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    display: flex;
    opacity: 0;
    padding: 0 1.5rem;
    pointer-events: none;
    transition: opacity 0.3s ease;
    overflow-y: auto;

}

.modal-content {
    background-color: var(--white);
    padding: 2rem 2rem 3.5rem;
    width: 100%;
    max-width: 900px;
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 20px;
}

.modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal.show .modal-content {
    transform: scale(1);
}

.close {
    color: var(--black);
    float: right;
    font-size: 36px;
    cursor: pointer;
    line-height: 16px;
    font-weight: 400;
    opacity: .8;
    transition: var(--transitionSpeed);
}

.close:hover,
.close:focus {
    opacity: 1;
}

.modal-content .modal-heading {
    font-size: 1.5rem;
    margin-bottom: .5rem;
}

.modal-content .modal-sub-heading {
    margin-bottom: .75rem;
    font-size: 18px;
    font-weight: 400;
}


.modal-content p {
    line-height: 1.5rem;
}
.modal-content p:last-of-type {
    margin-bottom: 0;
}
.inner-modal .people-card__img {
    position: relative;
}
.inner-modal .modal {
    position: absolute;
    display: block;
    z-index: 1;
    padding: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.inner-modal .modal-content {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
}
.inner-modal .modal-content-inner {
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.inner-modal .modal-content-inner::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.inner-modal .modal-content-inner {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.inner-modal .close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.inner-modal .people-card__img {
    border-radius: 20px;
    overflow: hidden;
}

.inner-modal.active .people-card__img svg.plus-icon {
    opacity: 0 !important;
}

.people-card__img svg.chevron-down {
    opacity: 0 !important;
}

.inner-modal.active .people-card__img svg.chevron-down {
    cursor: pointer;
    position: absolute;
    opacity: 1 !important;
    top: initial;
    bottom: 17px;
    z-index: 9;
    margin-top: -40px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: auto;
    animation: 2.5s bounce 1s 1;
    transition: var(--transitionSpeed) opacity .25s;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

.inner-modal.active .people-card__img.hide-chevron svg.chevron-down {
    opacity: 0 !important;
}

.inner-modal.active .people-card__img img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.subpage-content {
    background: #f5f5f5;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 140px;
    padding-bottom: 50px;
    transition: var(--transitionSpeed);
}

.subpage-content-inner {
    background: #fff;
    padding: 3.5rem 4rem;
    border-radius: 20px;
    transition: var(--transitionSpeed);
}

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

/* ====== responsive styles ======= */

@media screen and (max-width: 1199px) {
    .what-we-do__content {
        padding: 40px;
    }

    .contact .container { 
        gap: 40px;
    }
    .footer__bottom {
        grid-template-columns: 1fr;
    }

    .footer-nav {
        display: none;
    }

    .footer-legal ul {
        justify-content: center;
    }

    .inner-modal .modal-content {
        position: absolute;
        padding: 1.5rem 1.5rem 3.5rem;
    }
    .inner-modal .close {
        top: .75rem;
        right: .75rem;
    }

    .inner-modal .modal-content .modal-heading {
        font-size: 1.25rem;
    }

    .inner-modal .modal-content .modal-sub-heading {
        font-size: 17px;
    }

}


@media screen and (max-width: 991px) {
    .contact .container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero {
        min-height: auto;
    }

    .footer__row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 28px;
    }

    .footer nav ul {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 0;
    }

    .footer__img {
        margin-bottom: 8px;
    }
    .footer__col {
        margin-bottom: 10px;
    }
    .footer__col.footer__col-contact {
        margin-top: -4px;
    }
    .footer nav ul li {
        align-self: flex-start;
    }
    .footer nav a, .footer nav span {
        line-height: 22px;
        display: block;
    }
    
    body.single .hero__title {
        font-size: clamp(2rem, 1.5529rem + 2.2355vw, 2.9375rem);
    }

    body.single .hero .container {
        padding: 0;
    }
}
@media screen and (max-width: 767px) {
    .header .container {
        padding: 1rem;
    }
    .mobile-menu .container {
        padding: 0 1rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .hero {
        padding-top: 113px;
        padding-bottom: 0;
    }
    .hero__title {
        margin-bottom: 26px;
    }
    .hero__sub-title {
        margin-bottom: 37px;
    }
    .logo {
        padding-top: 10px;
        padding-left: 10px;
        max-width: 160px;
    }
    .mobile-toggle {
        display: flex;
        margin-bottom: 15px;
        margin-right: 10px;
    }
    .mobile-menu__header {
        margin-top: 17px;
    }
    .hero .container {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .hero__left {
        padding: 20px;
    }

    .hero__right img {
        border-radius: 0;
        height: 400px;
        width: 100%;
        object-fit: cover;
    }

    .header .main-menu {
        display: none;
    }

    .what-we-do {
        padding: 0;
    }
    .what-we-do .container {
        padding: 0;
    }
    .what-we-do__container {
        grid-template-columns: 1fr;
    }
    .what-we-do__heading {
        margin-bottom: 29px;
    }
    .what-we-do__img {
        order: 2;
    }
    .what-we-do__content {
        order: 1;
        padding: 3.5rem 1.5rem 3.75rem;
    }

    .what-we-do__content-txt {
        margin-bottom: 14px;
    }
    .what-we-do__img img {
        height: 362px;
        min-height: auto;
        border-radius: 0;
        display: block;
        width: 100%;
    }
    .cta,
    .cta.cta-2 {
        padding: 52px 0 0px;
    }
    .cta__left {
        padding: 0 1.5rem 65px;
    }
    .cta__heading {
        font-size: 39px;
        margin-bottom: 26px;
    }
    .cta__sub-heading {
        font-size: 22px;
        max-width: 280px;
        margin-bottom: 42px;
    }

    .cta__container {
        grid-template-columns: 1fr;
        padding: 0;
    }
    .cta__img {
        border-radius: 0;
        height: 331px;
        aspect-ratio: auto;
        width: 100%;
        object-fit: cover;
        display: block;
    }

    .how-we-do {
        padding: 50px 3px 75px;
    }
    .how-we-do__heading {
        margin-bottom: 35px;
    }

    .card .btn-simple {
        width: 95px;
        margin-bottom: 7px;
    }
    
    .cards-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .card {
        grid-template-columns: 1fr;
        padding: 35px 30px 25px;
        gap: 12px;
    }

    .card__heading {
        font-size: 20px;
    }
    .card__desc p {
        font-size: 16px;
        line-height: 19px;
        letter-spacing: 0px;
    }
    .who-we-are .what-we-do__container {
        margin-bottom: 0;
    }

    .people-cards {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .testimonial-slider .swiper-pagination-bullet {
        margin: 0 6px !important;
    }


    .modal-content {
        border-radius: 15px;
    }

    .subpage-content {
        padding-left: 0;
        padding-right: 0;
    }
    .subpage-content-inner {
        padding: 0rem;
        background:none;
        border-radius: 15px;
    }

    body.single .subpage-content {
        padding-top: 105px;
        padding-bottom: 0;
    }
    body.single .subpage-content .container {
        padding: 0;
    }
    body.single .subpage-content-inner {
        border-radius: 0;
        padding: 1.5rem;
    }

    body.single .subpage-content-inner .hero {
        padding: 1.5rem;
    }

    body.single .hero__left {
        padding: 0;
    }

    body.single .hero__title {
        max-width: 100%;
    }
    body.single .post-container {
        margin-top: 2rem;
    }

    .share-popup ul li {
        margin-left: 10px;
    }

}

@media screen and (max-width: 575px) { 
    .people-cards {
        grid-template-columns: repeat(auto-fit, minmax(200px, 360px));
    }
}
@media screen and (max-width: 480px) { 
    .contact-form .form-row {
        flex-direction: column;
    }

    .modal {
        align-items: flex-start;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .share-popup ul li {
        margin-left: 0;
    }
    .share-popup ul {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 400px) { 
    .contact__heading {
        font-size: clamp(1.875rem, 0.375rem + 7.5vw, 2.25rem);
    }

    .contact__sub-heading {
        font-size: clamp(1.5rem, 0rem + 7.5vw, 1.875rem);
    }
}







