
/* Might be helpful to have these */
.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.fw300 {
	font-weight: 300;
}

.fw400 {
	font-weight: 400;
}

.fw500 {
	font-weight: 500;
}

.fw600 {
	font-weight: 600;
}

/* === */

*, *::before, *::after {
  transition: color 0.2s ease, background-color 0.2s ease;
}

html {
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

/* Turns off smooth scrolling for users who request reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
	font: 20px "Inter", sans-serif;
	color: #414c54; /*#1d2123*/
	font-weight: 400;
	padding: 0;
	margin: 0;
	background-image: url("../images/grid3.png");
	background-color: #ffffff; /*#f3f0ea;*/
	background-repeat: repeat;
}

h1 {
	font-family: "Montserrat", sans-serif;
	font-weight:500;
	line-height: 1.4;
	font-size: clamp(30px,5vw,60px);
}

h2 {
	font-family: "Montserrat", sans-serif;
	font-weight:500;
	line-height: 1.4;
	font-size: clamp(26px,3.4vw,44px);
}

h3 {
	font-family: "Montserrat", sans-serif;
	font-weight:500;
	line-height: 1.4;
	font-size: clamp(18px,2vw,30px);
}

p {
	margin-bottom: 12px;
}


a, a:link, a:visited, a:active {
  color: #414c54;
  text-decoration: underline dotted #ce6d5d; 
  transition: color 0.2s ease;
}


a:hover {
  color: #ce6d5d;
}


header {
	position: relative;
	max-width: 1600px;
	margin: 0 auto;
	max-height: 120px;
}
 
.logo {
	max-width: 1600px;
	margin: 0 auto;
	padding: 20px;
}

.logo img {
	max-height: 75px;
	height: clamp(40px, 6vw, 75px);
}

nav {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	padding: 20px;
}

nav .hamburger {
    display: none;
}

nav ul, nav li {
	display: inline;
}

nav ul li {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(12px,2vw,20px);
	text-transform: uppercase;
	font-weight: 500;
}

nav ul li::before {
	content: "•";
	color: #ce6d5d;
  display: inline-block; 
  margin: 4px 12px 0 10px;
}

nav ul li:last-child {
	padding-right:0;
}

nav ul li:first-child::before {
	content: "";
}

nav ul li a, nav ul li a:link, nav ul li a:visited, nav ul li a:active {
	color: #414c54;
	text-decoration: none;
}

nav ul li a:hover {
  color: #ce6d5d;
}

.hero {
	width: 100vw;
	position: relative;
	padding: 1vh;
	background-image: url("../images/grid3.png"), url("../images/hero-curve.svg");
	background-color: #414c54;
	background-repeat: repeat, no-repeat;
	background-position: left top, right bottom;
	margin-bottom: 9vw;
}

.grid {
	background: url("../images/grid3.png");
}

.motto {
	width: 90%;
	margin: 0 auto;
	text-align: center;
	padding: 3vw 0 0;
}

.motto h1 {
	color: #f3f0ea;
	line-height: 1.2;
	margin: 0 2vh;
}

.motto h1.medium {
	font-size: clamp(38px,6vw,72px);
	font-weight:600;
}

.marker-underline {
    position: relative;
    display: inline-block;
	isolation: isolate;
    z-index: 0;
}

.marker-underline__svg {
    position: absolute;
    left: -2%;
    bottom: -0.2em;
    width: 104%;
    height: 0.34em;
    overflow: visible;
    pointer-events: none;
    z-index: -1;
}

.marker-underline__svg path {
    fill: none;
    stroke: #ce6d5d;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero .box {
  background: #e5dfd6;
  padding: 1.5vw;
  width: 70vw;
  text-align: center;
  margin: 3vw auto -5vw;
  position: relative;
}

.hero .box:before {
	content: url('../images/corner-brace.svg');
	position: absolute;
  left: 0px;
  top: 0px;
  width: 30px;
  display: block;
}

.hero .box:after {
	content: url('../images/corner-brace.svg');
	position: absolute;
	rotate: 180deg;
  right: 0px;
  bottom: 0px;
  width: 30px;
  display: block;
}


.hero .box .text {
	/*margin-bottom: 5vh;*/
	font-size: clamp(14px,2vw,24px);
	line-height: 1.4;
}

button {
	border-radius: 3px;
	outline: none;
	text-transform: uppercase;
	font-family: "Inter", sans-serif;
    margin: 0 2vw;
    cursor: pointer;
}

button.primary, #reqsubmit.primary {
	background: #414c54;
	padding: 10px 12px;
	border: 2px solid #414c54;
	color: #f3f0ea;
	font-size: 18px;
}

button.secondary, button.modal-btn {
	background: #e5dfd6;
	padding: 10px 12px;
	border: 2px solid #414c54;
	color: #414c54;
	font-size: 18px;

}

.services, .requestform-wrapper, .about-wrapper, .footer-wrapper {
	max-width: 1600px;
	width: auto;
	margin: 0 auto 5vw;
}

.columns {
	/*display: grid; */
	display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers the last row if an item is missing */
  gap: 40px; /* Space between cells */
  padding: 0 2vw;
}

/*.columns.col-2 {
	  grid-template-columns: 1fr 1fr;
}

.columns.col-3 {
	  grid-template-columns: 1fr 1fr 1fr;
}*/

.columns.col-4 {
    display: grid;
	  grid-template-columns: 1fr 1fr 1fr 1fr;
}


.main h2 {
	text-transform: uppercase;
	margin-bottom: clamp(26px, 3.4vw, 44px);
	text-align: center;
}

/*=== Thesis AKA "The Problem" ===*/
.problem-section {
    --problem-bg: #f6f4ef;
    --problem-text: #414c54;
    --problem-accent: #ce6d5d;
    --problem-rule: rgba(206, 109, 93, 0.25);
    --problem-grid: rgba(65, 76, 84, 0.07);

    position: relative;
    overflow: hidden;

    color: var(--problem-text);

    padding: 0px 32px 78px;
}

.problem-section::before,
.problem-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    opacity: 0.2;
    pointer-events: none;
}

.problem-section::before {
    top: -50px;
    left: -50px;

    background:
        linear-gradient(
            135deg,
            transparent 49.5%,
            rgba(65, 76, 84, 0.16) 50%,
            transparent 50.5%
        );
}

.problem-section::after {
    right: -40px;
    bottom: -40px;

    border: 1px solid rgba(65, 76, 84, 0.15);
    transform: rotate(45deg);
}

.problem-inner {
    position: relative;
    z-index: 1;

    width: min(100%, 1500px);
    margin: 0 auto;
}

.problem-heading {
    max-width: 900px;
    margin: 0 auto 54px;
    text-align: center;
}

.problem-eyebrow {
    margin: 0 0 12px;

    color: var(--problem-accent);

    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.problem-heading h2 {
    margin: 0;

    color: var(--problem-text);

    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1.15;
    font-weight: 650;
    letter-spacing: -0.025em;
}

.problem-intro {
    max-width: 760px;

    margin: 18px auto 0;

    font-size: 1rem;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    align-items: stretch;
}

.problem-item {
    position: relative;

    padding: 0 26px;

    text-align: center;
}

.problem-item + .problem-item {
    border-left: 1px solid var(--problem-rule);
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 58px;
    height: 58px;

    margin: 0 auto 18px;
}

.problem-icon svg {
    width: 46px;
    height: 46px;

    fill: none;
    stroke: var(--problem-text);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.problem-icon .accent-stroke {
    stroke: var(--problem-accent);
}

.problem-icon .accent-fill {
    fill: var(--problem-accent);
    stroke: none;
}

.problem-item h3 {
    margin: 0 0 10px;

    color: var(--problem-text);

    font-size: 1rem;
    line-height: 1.3;
    font-weight: 650;
}

.problem-item p {
    max-width: 180px;

    margin: 0 auto;

    font-size: 0.88rem;
    line-height: 1.55;
}

/* Tablet */
@media (max-width: 1100px) {

    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 48px;
    }

    .problem-item:nth-child(4) {
        border-left: 0;
    }
}

/* Mobile */
@media (max-width: 700px) {

    .problem-section {
        padding: 56px 22px 62px;
        background-size: 40px 40px;
    }

    .problem-heading {
        margin-bottom: 42px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .problem-item {
        padding: 30px 8px;
    }

    .problem-item + .problem-item {
        border-left: 0;
        border-top: 1px solid var(--problem-rule);
    }

    .problem-item:first-child {
        padding-top: 0;
    }

    .problem-item:last-child {
        padding-bottom: 0;
    }

    .problem-item p {
        max-width: 300px;
    }
}

/*=== Services ===*/
.services .service-block {
	display: flex;
  flex-direction: column;
	padding: 40px;
	background: #f3f0ea; /*#e5dfd6;*/
	margin-bottom: 2vw;
	border-radius: 1px;
	position: relative;
	border-bottom: 3px #6486a0 solid;
	flex: 0 1 calc(50% - 20px); /* Two columns, accounting for the gap */
  box-sizing: border-box;
}

@media (min-width: 1100px) {
    .services {
        flex-direction: row;
        align-items: stretch;
    }

    .services .service-block {
        flex: 1 1 0;
        min-width: 0;
    }
}


.services-heading {
    max-width: 900px;
    margin: 0 auto 54px;
    text-align: center;
}

.section-eyebrow {
    margin: 0 0 12px;
    color: #ce6d5d;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.services-heading h2 {
    margin: 0;
    color: #414c54;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1.15;
    font-weight: 650;
    letter-spacing: -0.025em;
}
.section-intro {
    max-width: 760px;
    margin: 18px auto 0;
    font-size: 1rem;
    line-height: 1.6;
}

.service-block .bug, .modal-content-wrapper .bug {
  width: 170px;
  height: 30px;
  background: #ce6d5d;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 26px;
  text-align: center;
}

.service-block .bug .bug-text, .modal-content-wrapper .bug .bug-text {
    color: #f3f0ea;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    margin-top: -2px;
}

.service-block .rivets-vertical, .modal-content-wrapper .rivets-vertical  {
	position:absolute;
	left: 10px;
	top: 5px;	
	height: 30px;
}

.service-block .rivets-vertical img, .modal-content-wrapper .rivets-vertical img {
	height: 20px;
	width: auto;
}

.service-block h3, .modal-content h3 {
  color: #6486a0;
  margin-top: 30px;
  margin-bottom: 20px;
      font-size: clamp(24px, 2vw, 30px);; 
}

.service-block .text, .modal-content .text {
	flex: 1 1 auto;
	font-size: clamp(16px,1.6vw,20px);
	line-height: 1.4;
	margin: 0 0 20px;
}

.morebutton-wrapper {
	text-align: right;
	flex-shrink: 0;
}

button.modal-btn {
	background: #e5dfd6;
	font-size: 16px;
	padding: 7px 9px;
	margin: 0;
}

button.modal-btn:hover {
	background: #6486a0;
	color: #f3f0ea;
}



/* == Request Form === */

.requestform-wrapper {
	padding:0 24px;
}

.requestform {
	background: #6486a0;
	padding: 5vw 0;
}

.requestform h2 {
	color: #f3f0ea;
	margin-bottom: 8px!important;
}

#requestform {
	max-width: 700px;
	margin: 0 auto;
}

#requestform p {
	color: #f3f0ea;
}
#requestform strong{
	font-weight: 400;
	font-style: italic;
	font-size: 110%;
}

#theform {

}
.input-group {
  position: relative;
  margin-top: 30px;
}
.input-group.tucked {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


.input-group input, .input-group textarea {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 0px;
  outline: none;
  font-size: 16px;
  border-radius: 1px;
  background: #f3f0ea;
  color: #414c54;
}


.input-group label {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 5px;
  color: #999999;
  transition: 0.2s ease all;
  pointer-events: none; 
  font-size: 14px;
}

.input-group.ta label { /* textarea */
	top: 10px;
	transform: none;
}

/* Move label up on focus OR when text is entered */
.input-group input:focus + label,
.input-group input:not(:placeholder-shown) + label,
.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: -6px;
  font-size: 12px;
  color: #f3f0ea;
}

.input-group textarea:focus + label,
.input-group textarea:not(:placeholder-shown) + label {
	top:-18px;
}

/* Accent border color on focus */
.input-group input:focus,
.input-group textarea:focus
 {
  border-color: #007bff;
}


.button-wrapper {
	text-align: right;
	padding-top: 2vw;
}

#reqsubmit {
	margin-right: 0px;
}

.privacynote{
	font-size: 85%;
	font-style: italic;
	margin-top: 12px;
}

#responseMessage div{
	max-width: calc(700px - 3vw - 2px);
	margin: 2vw auto 0;
	padding: 1.5vw;
	background-color: #ffffff;
	border: 2px solid #000;
}
#responseMessage ul{
	list-style: disc;
	padding-left: 20px;
	margin-top: 12px;
}
.formsuccess{
	border-color: #70c1b3!important;
	background-color: #effff5!important;
}
.formerror{
	border-color: #ce6d5d!important;
	background-color: #fff0e0!important;
}

#loaderblackout{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #000;
	opacity: 0.8;
	z-index: 100;
	display: none;
}
#loaderblackout img{
	width: 128px;
	height: 128px;
	display: block;
	margin: calc(50vh - 64px) auto 0;
}
body.frozen{
	overflow: hidden;
	padding-right: 8px;
}

/*===Testimonials ===*/

.slider-wrapper {
	width: 70%;
	max-width: 800px;
  margin: 3vw auto;
  position:relative;
  padding: 0 80px;
}

.slider-wrapper::before, .slider-wrapper::after {
	content: "";
  position: absolute;
  top: 50%;
  width: 76px;
  height: 76px;
  transform: translateY(-50%);
  background-repeat: no-repeat;
  background-size: contain;
}

.slider-wrapper::before {
	left: 0;
	background-image: url('../images/bug-quote.svg');
}

.slider-wrapper::after {
	right: 0;
	background-image: url('../images/bug-quote.svg');
	top: 20%;
  transform: scale(-1);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 20px;
  min-height: 180px;
}

.testimonial-slide {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  box-sizing: border-box;
  text-align: center;
  padding: 25px 40px;
  
  /* Transition Logic */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

/* Active State */
.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
}

.quote { font-size: 1.2rem; font-style: italic; color: #414c54; }
.author { margin-top: 15px; color: #6486a0; font-weight: 600; font-size: 1rem;}

.client-logo img{
	text-align: center;
	height: 60px;
	width: auto;
	margin: -25px auto 20px;
}


/*=== About ===*/

.about {
	background: #e5dfd6;
	background-image: url("../images/grid3.png");
	background-repeat: repeat;
	background-position: left top;
}
.about-section {
    --about-bg: #f3efe8;
    --about-text: #414c54;
    --about-accent: #ce6d5d;
    --about-grid: rgba(65, 76, 84, 0.07);

    position: relative;
    overflow: hidden;

    padding: 80px 32px;

    background-color: var(--about-bg);
    background-image:
        linear-gradient(
            to right,
            var(--about-grid) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            var(--about-grid) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    color: var(--about-text);
}

.about-inner {
    width: min(100%, 1320px);
    margin: 0 auto;
}

.about-heading {
    margin-bottom: 44px;
}

.about-heading .section-eyebrow {
    margin: 0;

    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: uppercase;

    color: var(--about-text);
}

.about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: start;
}

.about-copy {
    font-size: 1.1rem;
    line-height: 1.55;
}

.about-copy p {
    margin: 0 0 1.35em;
}

.about-intro {
    font-size: 1.2rem;
}

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

.about-portrait {
    margin: 0;
}

.about-portrait img {
    display: block;

    width: 100%;
    aspect-ratio: 4 / 5;

    object-fit: cover;
    object-position: center 28%;

    border-radius: 8px;
}

.about-portrait figcaption {
    margin-top: 14px;

    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-portrait figcaption strong {
    font-size: 1rem;
    font-weight: 650;
    color: var(--about-text);
}

.about-portrait figcaption span {
    font-size: 0.88rem;
    color: var(--about-accent);
}

.about-mobile-photo {
    display: none;
}


/* -------------------------
   Tablet
------------------------- */

@media (max-width: 950px) {

    .about-layout {
        grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
        gap: 40px;
    }

    .about-copy {
        font-size: 1rem;
    }

    .about-intro {
        font-size: 1.08rem;
    }
}


/* -------------------------
   Mobile
------------------------- */

@media (max-width: 700px) {

    .about-section {
        padding: 56px 22px 64px;
        background-size: 40px 40px;
    }

    .about-heading {
        margin-bottom: 28px;
    }

    .about-layout {
        display: block;
    }

    .about-desktop-photo {
        display: none;
    }

    .about-mobile-photo {
        display: block;
        margin: 30px 0 34px;
    }

    .about-portrait {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-portrait img {
        aspect-ratio: 4 / 5;
    }

    .about-copy {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-intro {
        font-size: 1.08rem;
    }
}
/*.about .about-wrapper {
	max-width: 740px;
	width: 70%;
	margin: 0 auto;
	padding: 5vw 0;
}

.about .text p {
	margin-bottom: 12px;
} */

/*=== Terms ===*/

.terms {
	background: #fff;
	background-image: url("../images/grid3.png");
	background-repeat: repeat;
	background-position: left top;
}
.terms .terms-wrapper {
	max-width: 740px;
	width: 70%;
	margin: 0 auto;
	padding: 5vw 0;
}
.terms h2{
	margin-bottom: 2px!important;
}
.terms .terms-subtitle{
	font-style: italic;
	font-size: 85%;
	margin-bottom: 24px;
}
.terms .text p {
	margin-bottom: 12px;
}
.terms .text ul {
	list-style: disc;
	margin-bottom: 12px;
	padding-left: 50px;
}

/*=== Footer ===*/

.footer {
	width: 100vw;
	position: relative;
	padding: 2vw 0;
	background-color: #414c54;
	background-image: url("../images/grid3.png");
	background-repeat: repeat;
	background-position: left top;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.5;
	color: #f3f0ea;
}

.footer-wrapper {
	margin: 0 auto;
}

.footer .logo-white img {
	width: auto;
	height: 50px;
}

.footer .columns {
	display: grid;
}

.footer .column-wrapper p {
	margin-top: 12px;
	text-transform: none;
}

.footer a, .footer a:link, .footer a:visited, .footer:active {
	color: #f3f0ea;
	text-decoration: none;
}

.footer a:hover {
	color: #ce6d5d;
}

.footer div.column-wrapper:not(.social) li:before {
	content: '•';
	color: #ce6d5d;
	margin: 0 6px;
}


.footer .column-wrapper.social ul li {
	display: inline-block;
	width: 50px;
	height: 50px;
}

.footer .column-wrapper .social li:before {
	content:" ";
	color: none;
}

.footer .social svg.icon path {
	fill: #f3f0ea;
	opacity: 0.8;
	transition: opacity 0.2s ease;
}


.footer .social a:hover svg.icon path {
	opacity: 1;
	transition: opacity 0.2s ease;
}



/*=== Modal ===*/


.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; /* 200vh */
  overflow-y: auto; 
  background-color: rgba(0, 0, 0, 0.5);
  /*-webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);*/
}



.modal-content-wrapper {
  background-color: #f3f0ea;
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 20px;
  width: 80%;
  max-width: 1300px;
  border-radius: 0;
  
}

.modal-content {
	padding:20px;
}

.modal-content p, .modal-content li {
    font-size: 80%;
}

.modal-content ul {
    list-style: disc;
    margin-left: 20px;
}

.modal-content .strike {
    text-decoration: line-through;
}

.modal-content .promo {
    font-weight: 600;
    font size: 150%;
    color: #ce6d5d;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}




/*=== Mobile ===*/
@media screen and (max-width: 767px) {
    
    
    nav .hamburger {
        display: block;
        float: right;
    }
    
    nav ul li {
        display: none;
    }
   
    nav ul li::before {
      margin: 4px 6px 0 2px;
	}
	
	nav ul li:first-child::before {
	    content: "•";
    }
    
    nav.mobile {
        background: #fff;
        margin-top:40px;
        z-index:500;
    }
    nav.mobile .hamburger {
        rotate: 90deg;
        margin-top: -40px;
    }
    
    nav.mobile ul li {
        display: block;
    }
    
    .hero .box {
        padding: 2vw;
        width: 80vw;
    }

    .hero .box .text {
        font-size: clamp(16px, 2vw, 24px);
        line-height: 1.4;
        margin: 2vw;
    }
    
    .columns.col-2, .columns.col-3, .columns.col-4 {
      display: grid;
      gap: 40px;
      padding: 0 2vw;
      grid-template-columns: 1fr;
    }


	
	.modal-content {
        padding: 0;
    }
	
	.slider-wrapper {
        width: 90%;
        max-width: 800px;
        margin: 3vw auto;
        position: relative;
        padding: 0 0;
    }
    
    .slider-wrapper::before, .slider-wrapper::after {
        width: 40px;
        height: 40px;
    }
    
    
    .slider-wrapper::before {
        left: -10px;
    }
    
    .slider-wrapper::after {
        right: -10px;
        top: 36%;
    }
    
    .testimonial-slide {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        padding: 12px 20px;
    }
    
    .testimonial-slider {
     min-height: 200px;
    }
    
    .client-logo img {
        max-height: 60px;
        width: auto;
        margin: -25px auto 10px;
    }
    
    .about .about-wrapper {
        width: 85%;
    }
    
    .footer .columns.col-2, .footer .columns.col-3, .footer .columns.col-4 {
      gap: 20px;
      margin: 10px;
      grid-template-columns: 1fr;
    }
}







