body {
    font-family: GothamBook;
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
font-family: "TradeGothic";
font-style: normal;
}


a {text-decoration: none; color: inherit;}

p {
    line-height: 1.4;
}

.m-b-40 {
    margin-bottom: 3vw;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.wrapper-lg {
    max-width: 90%;
    margin: 0 auto;
    position: relative;
}


p strong {
   font-family: GothamMedium;
    font-weight: normal;
    font-style: normal;
}

header {
    background: #153C34;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease-in-out;
}

header>.wrapper-lg {
    height: 74px;
}

header.scrolled {
    background-color: rgba(30, 58, 52, 1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0; margin: 0 30px; position:relative
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #A0D468;
    position: absolute;
    left: 0;
    top: 16px;
}

.logo a img {width: 150px; display: block;}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
    width: 100%;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.nav-links li {
    display: inline;
    position: relative
}


.nav-links li.dropdown > a:after {content:' '; display:inline-block; position:relative; top:1px; width: 14px; height:12px; margin-left: 5px; background: url(../img/down-arrow-menu.svg) center center no-repeat; background-size:contain }

.nav-links li.dropdown:hover > a:after {background: url(../img/down-arrow-menu-green.svg) center center no-repeat}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: block;
    padding: 29px 0;
    font-family: GothamMedium;
    font-weight: normal;
    font-style: normal;
}

.nav-links a:hover {
    color: #2DC84D;
}


.nav-links > li > a:before  {content:' '; display:block; width: 5px; height:5px; background:transparent; border-radius: 100%; margin: 0 auto; position:absolute; left:50%; bottom:15px}
.nav-links > li:hover > a:before {background:#2DC84D;}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0 15px;
    min-width: 210px;
    z-index: 999;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px 10px 0px;
    font-size: 15px;
    color: #333;
    font-family: GothamMedium;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    color: #2DC84D
}

/* Dashed line divider */
.dropdown-menu li:not(:last-child) a {
    border-bottom: 1px dashed #ccc;
}

/* Green Arrow */
.arrow {
    background: #2DC84D url(../img/white-arrow.svg) center center no-repeat;
    background-size: 10px 10px;
    color: white;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: bold;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}


.buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    position: absolute;
    right: 0;
    top: 20px;
}

.button {
    padding: 10px 15px;
    border: 1px solid #2DC84D;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-family: GothamMedium;
    font-style: normal;
    transition: transform 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.green-button {
    color: #2DC84D;
}

.dark-button {
    color: #fff;
    background: #1E3A34;
    border: transparent
}

.white-button {
    background-color: white;
    color: #1E3A34;
    border: 1px solid #fff;
}

.icn-btn {
    display: flex;
    padding-right: 30px
}

.icn-btn span {
    display: block;
    margin-left: 7px;
    position: absolute;
    top: 6px;
    right: 7px
}

.icn-btn span img {
    width: 20px;
    transition: transform 0.3s ease-in-out;
}

.button:hover {
    padding: 10px 20px 10px 20px
}

.icn-btn:hover {
    padding: 10px 35px 10px 20px
}

.icn-btn:hover span img {
    transform: rotate(-90deg);
}

.announcement-bar {
    background-color: #2DC84D;
    color: #153C34;
    font-size: 16px;
    height: 46px;
    line-height: 46px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.announcement-content {
    display: flex;
    white-space: nowrap;
    animation: scrollText 15s linear infinite;
}

.announcement-content span {
    padding-right: 0px;
}

.announcement-content strong:before {
    content: ' ';
    background: #fff;
    width: 5px;
    height: 5px;
    border-radius: 100%;
    display: inline-block;
    position: relative;
    top: -2px;
    margin: 0 12px 0 10px
}

@keyframes scrollText {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('your-image-url.jpg') no-repeat center center/cover #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 74px;
    box-sizing: border-box;
    z-index: 0;
}

.hero-section video {position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1;}

.hero-content {}

.hero-content h1 {
    font-size: 140px;
    font-weight: normal;
    line-height: 100px; letter-spacing:-1px
}

.hero-content h1 span {
    color: #2DC84D;
    display: block;
}

.hero-content>div.subtitle {
    font-size: 23px;
    width: 100%;
    position: absolute;
    bottom: 60px;
    text-align: center;
    left: 0
}

.hero-content div p {
    line-height: 1.3;
}

.hero-content div p strong {
    display: block
}

/* Hero Text Container */
.hero-text {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    font-size: 3vw;
    font-weight: bold;
}

/* Bouncing Balls */
.bouncing-balls {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* White and Green Balls */

.white-ball,
.green-ball {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: absolute;
    transition: transform 0.6s ease-in-out;
}


.white-ball {
    background: white;
    top: -100px;

}


.green-ball {
    background: #2DC84D;
    bottom: -60px;
    /* Positioned below */
}



/* Green Ball Move In (unchanged) */
@keyframes greenBallMoveIn {
  0%   { transform: translateY(0);    }
  100% { transform: translateY(-20px); }
}
.bounce-in .green-ball {
  animation: greenBallMoveIn 0.2s ease-in-out forwards;
}

/* Green Ball Move Out with a pronounced, sticky bounce */
@keyframes greenBallMoveOut {
  0%   { transform: translateY(-20px); }
  30%  { transform: translateY(10px);  } /* big overshoot down */
  45%  { transform: translateY(-6px);  } /* snap back up */
  60%  { transform: translateY(4px);   } /* smaller down */
  75%  { transform: translateY(-2px);  } /* tiny up */
  100% { transform: translateY(0);     } /* settle */
}

.bounce-out .green-ball {
  animation: greenBallMoveOut 0.5s cubic-bezier(0.22, 1.61, 0.36, 1) forwards;
}



/* Text Transition */

#changing-word { }


.text-switch {
  position: relative;
  display: inline-block;
  overflow: hidden;
  height: 1em;    color: #2DC84D;       }

.text-switch .word {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  line-height: 1em;
}


.text-switch .current { transform: translateY(0); }
.text-switch .next    { transform: translateY(100%); }

/* keyframes */
@keyframes slideUpOld {
  to { transform: translateY(-100%); }
}
@keyframes slideUpNew {
  to { transform: translateY(0); }
}

/* when we add .animate, both fire together */
.text-switch.animate .current {
   animation: slideUpOld 0.4s ease-in-out forwards;
}
.text-switch.animate .next {
   animation: slideUpNew 0.4s ease-in-out forwards;
}




.contact-button {
    position: fixed;
    right: 0;
    bottom: 40px;
    background-color: #2DC84D;
    color: white;
    padding: 10px;
    border-radius: 5px 0 0 5px;
    text-decoration: none;
    font-size: 14px;
    font-family: GothamMedium;
    z-index: 9999;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.contact-button span {
    transform: rotate(180deg);
    writing-mode: vertical-rl;
}

.contact-button:hover {
    background: #F2F5E5;
    color: #153C34;
    padding-right: 20px;
}

.content-section {
    background-color: #F3F3E6;
    position: relative;
}

.content-wrapper {
    padding: 50px 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    background-color: #F3F3E6;
}

.content .button {
    display: inline-block;
    margin-top: 20px;
    color: #153C34;
    border-color: #153C34;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.content .button.fill {
    background: #153C34;
    color: #fff; border-color:transparent
}


.button.fill:hover, .button:hover {background:#2DC84D; color:#153C34; border-color:#2DC84D}

.content-section-white .content {
    padding-bottom: 90px;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 70px 0 50px
}

.content h1 {
    font-size: 1.8vw;
    text-transform: uppercase;
    color: #153C34;
    font-weight: bold;
}

.content h1 span {
    color: #2DC84D;
}

.content h2 {
    font-size: 24px;
    line-height: 1.3;
    font-family: GothamMedium;
}

.content p, .content li {
    font-size: 15px;
    line-height: 1.4;
    color: #153C34;
    margin: 10px 0
}

.content ul {list-style: none; margin: 0 0 10px}
.content ul li {position: relative; padding-left: 15px;}
.content ul li::before {content: ''; display: block; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50vw; background: #2DC84D}

.content h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 5vw;
    color: #153C34;
    line-height: 4.3vw;
}

.content.content-standard {display:block}
.content.content-standard h3 {font-size: 18px; text-align:left; line-height:1.4; margin: 15px 0}
.content.content-standard p + h3, .content.content-standard ul + h3 {margin-top: 30px;}

.content h3 strong {
    display: block;
    font-family: "TradeGothic";
    color: #2DC84D;
}
.content h2 strong {
    display: block;
    font-family: "TradeGothic";
    color: #2DC84D;
    font-size: 24px;
    line-height: 1.3;
    font-family: GothamMedium;
}
.content .right-column,
.content .left-column {
    margin-bottom: 40px;
}

.content .right-column p {
    font-size: 24px;
    margin: 20px 0; line-height: 1.3
}

.content .left-column p {
    max-width: 310px;
}

.image-container {
    border-radius: 20px;
    overflow: hidden;
}

.left-block .image-container {margin-top:0}

.grid-home {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: start;
    grid-gap: 30px;
}

.grid-home-two {
    display: grid;
    grid-template-columns: 542px 1fr;
    margin-top: 50px;
    grid-gap: 80px;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.grid-2 {display: grid;
    grid-template-columns: 350px 1fr;
    margin-top: 50px;
    grid-gap: 80px;}

.highlight {
    margin-bottom: 40px;
    position: relative;
}

.highlight hr {
    background: #2DC84D;
    height: 1px;
    margin-bottom: 10px;
}

.highlight p {
    margin: 0;
    line-height: 1.4;
}

.highlight p strong {
    display: block;
    margin-bottom: 5px;
}

.highlight img {
    margin-top: 20px;
    width: 40px;
}

.highlight.horizontal {
    margin: 20px 0
}

.highlight.horizontal p {
    max-width: 80%;
}

.highlight.horizontal img {
    position: absolute;
    right: 0;
    top: 0px;
}

.home-case-studies {
    background: #1A4D44;
    padding-bottom: 20px;
    ;
}
.home-case-studies hr.green {
  margin-bottom: 4vw;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.section-header.col-3 { display: flex;
  gap: 20px;
  align-items: stretch;}


.section-header.col-3  > * {
  flex: 1;
  min-width: 0;
}

.section-header.col-3 .cta-section {max-width: 400px;}

.section-title {
    font-size: 4.5vw;
    color: #fff;
    text-transform: uppercase;
    line-height: 3.9vw;
}

.section-title span {
    color: #2DC84D;
    display: block;
}

.cta-section {
    max-width: 400px;
}

.cta-title {
    color: #2DC84D;
    font-size: 18px;
   font-family: GothamMedium;
}

.cta-text {
    color: #B0C4B1;
    font-size: 15px;
    margin-top: 10px;
    line-height: 1.4;
}

.cta-button {
    margin-top: 15px;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid white;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-family: GothamMedium;
    transition: background 0.3s ease-in-out, transform 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.cta-button:hover {
    background: white;
    color: #1E3A34;
    padding: 10px 20px
}

.case-studies {
    display: flex;
    gap: 20px;
    margin-top: 4vw;
}

.case-card {

    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out;
    position: relative;
    text-decoration: none;
}

.case-image {
    overflow: hidden;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 0;
    padding-bottom: 50%;
}

.case-image img {
  position: absolute;
  height: 100%; object-fit: cover;
  width: 100%;
  display: block;
  transform: scale(1.02);
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.case-card:hover .case-image img {
     transform: scale(1);
}



.case-content {
    padding: 17px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(21, 60, 52);
    transition: background-color 0.3s ease-in-out;
}

.case-card:hover .case-content {
    background-color: rgba(255, 255, 255, 0.15);
}

.case-content h3 {
    font-size: 19px;
    margin: 0;
    color: #fff;
    font-family: GothamMedium;
}

.case-content p {
    font-size: 15px;
    color: #B0C4B1;
    margin: 5px 0 0;
}

.case-icon {
  background-color: #2DC84D;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: scale(1);
  transform-origin: center center;
  transition:
    transform 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
  flex-shrink: 0;
}

.case-card:hover .case-icon {
  background-color: #fff;
  transform: scale(1.1);
}

.case-card:hover .case-icon img {filter:invert(1)}


.case-icon img {
    width: 7px;
}

.footer {
    background-color: #2DC84D;
    padding: 50px 0;
    color: #153C34;
    display: block;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: initial;
}

.footer-logo {
    max-width: 230px;
}

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

.logo-row {display: flex; gap: 15px; margin: 30px 0 50px;}
.logo-row img {max-width: 65px; max-height: 50px;}

.footer-right {
    max-width: 700px;
}

.footer-description {
    font-size: 25px;
    font-family:'GothamBook';
    line-height: 1.2;
}

.footer-description strong {
    font-family: GothamMedium;
}

.social-icons {
    display: flex;
    gap: 2px;
    margin: 30px 0;
}

.social-icons a img {
    width: 46px;
    height: 46px;
}

.footer-nav {
    display: flex;
    gap: 15px;
    font-size: 14px;
    font-family: GothamMedium;
    margin-bottom: 50px;
}

.footer-nav a {
    color: #153C34;
    text-decoration: none;
}

.footer-nav span {
    color: #fff;
}

.footer hr {
    margin: 0
}

.footer-bottom {
    padding: 15px 0;
    font-family: GothamMedium;
    text-align: center;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom a {
    text-decoration: none;
    color: inherit;
}

.footer-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: #153C34;
    text-decoration: none;
}

.footer-links .subscribe {
    margin-left: auto;
    font-weight: bold;
}

.down-arrow {
    width: 60px;
    margin-top: 3vw;
}

.down-arrow.right {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: -2vw;
}

.down-arrow.large img {
    width: 150px;

    margin-right: 20px;
}

.left-column hr {background-size:cover}

hr {
    background: url(../img/rule.svg) repeat-x;
    background-size: contain;
    border: none;
    height: 3px;
    margin-bottom: 25px;
    margin-top: 0;
}

hr.green {
    background: url(../img/rule-green.svg) repeat-x;
}

.dots {
    position: absolute;
    width: 70%; height:100%;
    left: 0;
    bottom: 0; overflow:hidden
}

.dots-home {
    position: absolute;
    width: 400px;
    left: 0;
    bottom: 0;
}

.responsive-video {position:absolute; top:25%; right:15%; width: 150%}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Modal Overlay */
.modal {
    display: none;
    z-index: 1000;
    right: 0px;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    justify-content: flex-end;
    align-items: center;
    overflow: auto;
    padding: 20px;
}

/* Modal Content */
.modal-content {
    background: url(/img/form-bg.svg) 0 -35px;
    padding: 35px 25px 25px;
    border-radius: 15px;
    max-width: 450px;
    width: 90%;

    position: relative;
    text-align: center;

margin-right: 50px;
    max-height: 90vh;
    overflow-y: auto;
background-size: cover;

}



/* Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}

.modal h2 {
    font-size: 50px;
    text-transform: uppercase;
    color: #1E3A34;
    font-weight: 700;
    text-align: left;
    margin-bottom: 25px;  line-height:45px
}

.modal h2 span {
    color: #2DC84D;
    display: block; line-height:45px;  vertical-align: middle;
}

.modal p {
    text-align: left;
    font-size: 21px;
    line-height: 1.3;
    color: #1E3A34;
    font-family: GothamMedium;
}

.modal p strong {
    color: #2DC84D;
}

/* Form Styling */
form {
    margin-top: 25px;
    background: #fff9;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    font-family: GothamMedium;
    display: block;
    margin-bottom: 10px;

    color: #1E3A34;

}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s ease-in-out;
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 300;
    outline: none
}

.input-group textarea {
    height: 80px
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #2DC84D !important;
}

/* Green border when filled */
.input-group.filled input {
    border-color: #2DC84D;
}

/* Tick icon */
.input-check {
    position: absolute;
    right: 10px;
    top: 11px;
    color: #2DC84D;
    font-weight: bold;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.input-check img {
    width: 20px;
}

/* Show tick when input is filled */
.input-group.filled .input-check {
    opacity: 1;
}


/* Checkbox Group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 16px;
    color: #153C34;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    width: 100%;
}

.custom-checkbox {
    font-size: 14px;
}

/* Hide Default Checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom Circle Checkbox (Right-Aligned) */
.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid #153C34;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    /* Prevents shrinking */
    margin-left: 10px;
    /* Space from text */
    transition: all 0.2s ease-in-out;
}

/* Inner Dot (Only visible when checked) */
.custom-checkbox input:checked+.checkmark:after {
    content: "";
    width: 8px;
    height: 8px;
    background: #153C34;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Link Styling */
.custom-checkbox a {
    position: relative;
    color: #153C34;
    font-family: GothamMedium;
    padding-bottom: 0px;
    display: inline-block;
}
.custom-checkbox a::after {content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; background: url(../img/rule.svg) repeat-x; background-size: auto; background-size: auto; background-size: cover; background-position: center; border: none; height: 2px;}

/* Buttons */
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}


.button-group {
    background: #2DC84D;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 7px;
    cursor: pointer;
}

.button-group>span {
    font-size: 18px;
    position: relative;
    display: inline-block;
    line-height: 2;
    font-family: GothamMedium;
}

.send-email.button {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.send-email:hover {
    background: #2DC84D;
    color: white;
}

.map {
    border-radius: 10px;
    overflow: hidden;
    margin-top: 20px;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
    .modal-content {
        width: 95%;
        padding: 20px;
    }
}


.menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    padding: 21px 0;
    cursor: pointer;
    display: none;
    font-family: "franklin-gothic-atf", sans-serif;
    text-align: right;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: #153C34;
    padding: 0px;
    z-index: 900;
    height: 100vh;
    border-top: 1px solid #2DC84D;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-links {
    max-width: 90%;
    margin: 0px auto;
    padding-top: 10vw;
}

.mobile-menu .nav-links a {
    text-transform: uppercase;
    font-size: 11vw;
    padding: 3px 0;
    font-family: "TradeGothicProBold#2";}

.mobile-menu .nav-links li:last-child a {
    color: #2DC84D
}

.menu-footer {
    width: 100%;
    color: white;
    position: absolute;
    top: 70vh;
}

.menu-footer article {
    max-width: 90%;
    margin: 0 auto 0;
    display: flex;
}

.menu-footer article>div {
    width: 90%;
}

.menu-footer article>svg {
    width: 40px;
    margin-top: 5px;
    ;
}

.menu-footer article p {
    font-size: 18px;
    line-height: 1.4;
    max-width: 90%;
}

.menu-footer article p strong {
    display: block;
    margin-bottom: 10px;
}

.menu-footer article .button {
    display: inline-block;
    margin-top: 20px;
    font-size: 15px;
    color: #fff;
}


.banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.banner>figure {
    width: 100%;
    height: 100%;
    background: #000; position: relative;
}
.banner>figure::before {content: ''; position: absolute; background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%); top: 0; left: 0; height: 100%; width: 100%; z-index: 1; opacity:0.8;}
.banner figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.8;
}

.banner-wrapper {
    max-width: 85%;
    margin: 0 auto;
    width: 100%;
}

.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 2;
}

.banner-overlay>article {
    width: 100%;
}

.heading {
    text-align: left;
    max-width: 865px;
    position: relative;
    margin-top: 35%;
}

.heading p {color:#fff; font-size: 16px; font-family: GothamMedium; margin-bottom: 15px;}

.heading h1 {
    font-family: GothamMedium;
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
}

.banner-description {
    max-width: 600px;
    position: absolute;
    bottom: 250px;
}

.banner-description p {
    color: #fff;
}

.banner-description strong {
    display: block;
    margin: 10px 0;
}

.banner-description figure {
    margin-bottom: 20px;
}

.clip-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;

}

#curve {
    fill: #fff;
}


.team-section {
    text-align: center;
    padding: 0px 20px 80px;
    background-color: #fff;

}

.team-header h2 {
    color: #2DC84D;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 21px;
    margin-bottom: 10px;

}

.team-header p {
    font-size: 33px;
    max-width: 700px;
    margin: 0 auto 40px;
    font-family: GothamMedium;
    line-height: 1.2;
}

.team-grid {
grid-template-columns: repeat(4, 1fr);
    position: relative;
    max-width: 1079px;
    margin: 50px auto 0;
    display:grid; grid-gap: 30px
}

.team-grid img {
   border-radius: 10px;
}

.team-grid p { font-family: GothamMedium; font-size: 15px; text-align:left; margin-top: 15px;
  }

.team-grid p span {display:block; color:#2DC84D; font-family: GothamBook;}

.beige {
    background: #F2F5E5;
}


.white-curve-tradie-test {background-image: url(/img/white-curve-tradie-test.svg); background-position: bottom left; background-repeat:no-repeat}

.brand-section {
    padding: 6vw 0
}

.brand-section h2 {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 3.5vw;
    line-height: 3vw;
    margin-bottom: 10px;
    color: #153C34;
    text-align: center;
    margin-bottom: 5vw;
}

.brand-section h2 strong {
    color: #2DC84D;
       display: block;
}


.brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* === BRAND ITEM === */
.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0px;
    min-height: 130px;
    border: none;
    position: relative;
}


.brand-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;

    border-bottom: 1px solid #2DC84D;
    top: 0;
    left: 0;
    pointer-events: none;
}

.border-top:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;

    border-top: 1px solid #2DC84D;
    top: -15px;
    right: -7px;
    pointer-events: none;
}


.brand-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;

    border-right: 1px solid #2DC84D;
    top: -7px;
    right: -7px;
    pointer-events: none;
}

.no-border-right::before {
    border-right: none
}


.brand-item:nth-child(4n)::after {
    border-right: none;
}


.brand-item:nth-last-child(-n+4)::after {
    border-bottom: none;
}


.brand-item.center {
    flex-direction: column;
    text-align: center;
    border: none;
    grid-column: span 2;
    padding: 20px 20px;
}


.brand-item.center::after {
    border-right: none;
    border-left: none;
    border-bottom: none;
}


.brand-item img {
    max-width: 100%;
    height: auto;
    max-height: 50px;
}


.brand-item h3 {
    font-family: GothamMedium;
    display: block;
}

.brand-item p {
    margin-bottom: 15px;
}

.services-list {
    list-style: none;
    margin: 0;
    padding: 0;
    color: #fff;
}

.services-list strong {
    color: #2DC84D;
}

.green {
    background: #153C34
}

.green-bg {background-color: #2DC84D;}

.divider {
    height: 15px;
    background: #2DC84D;
}

.about-section {
    background: url(../img/about-background-new.jpg) center top;
    background-size: cover;
    padding: 25vw 0 4vw;
}

.about-section h3 {
    text-transform: uppercase;
    color: #fff;
    font-size: 6vw;
    line-height: 5.2vw;
    margin-bottom: 50px;
}

.about-section h3 strong {
    color: #2DC84D;

}


.about-section figure img {
    border-radius: 10px;
    overflow: hidden;
}

[data-state="Default"] img {
  /* make sure scaling is smooth, and scale from the centre */
  transition: transform 0.3s ease-in-out;
  transform-origin: center center;
}

/* on hover, bump up the size a bit */
[data-state="Default"] img:hover {
  transform: scale(1.05);
}


[data-state="Default"] .fade-in.visible:not(img) {
  transition: transform 0.3s ease-in-out;
}


[data-state="Default"].img-hovered .fade-in.visible:not(img) {
  transform: translate(10px, 10px);
}


.grid-images {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    align-content: center;
}

.grid-images img {
    margin: 10px 0
}

.about-grid {
    grid-gap: 100px;
}

.faqs {
    position: relative;
min-height:110vh;
}

.faqs.content h3 {
    text-align: left;
    font-size: 4vw;
    line-height: 3.5vw;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h4 {
    font-size: 24px;
    font-weight: bold;
    color: #1E3A34;
    margin-bottom: 20px;
}

.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: background 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.faq-item:hover {
    background: #E8F5E9;
    border-color: #2DC84D;
}

.faq-item.active {
    background: #E8F5E9;
    border-color: #2DC84D;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1E3A34;
    transition: color 0.3s ease-in-out;
   font-family: GothamMedium;
}

.faq-item.active .faq-question {
    color: #2DC84D;
}

.icon {
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .icon {
    transform: rotate(180deg);

}

.faq-item.active .icon path {
    stroke: #2DC84D !important; opacity:1 !important;
}

.faq-answer {
  max-height: 0;                             /* start fully closed */
  opacity: 0;                                /* invisible until open */
  overflow: hidden;
  transition:
    max-height 0.5s cubic-bezier(.25,.8,.25,1),
    opacity    0.3s ease-in-out;
  padding: 0 20px;
    font-family: "franklin-gothic-atf", sans-serif;
    font-weight: 300;
}

.faq-item.active .faq-question {
    padding: 20px 20px 0 20px
}

.faq-answer p:first-child {}

.faq-item.active .faq-answer {
   max-height: 800px;                         /* big enough for your longest answer */
  opacity: 1;
  padding-bottom: 15px;
}

.faq-question:focus {
  outline: none;
}

.case-studies {
    padding-bottom: 5vw;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;

    margin: 0 auto;
}

/* Base styling */
.case-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.case-item figure {position: relative; height: 0; padding-bottom: 60%;}

.case-item img {
  position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.case-text {

    margin-top: 30px;
}

.case-text h3 {
    font-size: 26px;
    font-weight: bold;
    color: #2DC84D;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
    line-height: 14px;
    text-align: left;
}

.case-text p {
    font-size: 16px; line-height:1.3;
    color: #153C34;
    font-family: GothamMedium;
    max-width: 80%;
}

.text-overlay {
    background: #000;
}

.text-overlay img {
    opacity: 0.8;
}

/* Text overlay for the second item */
.text-overlay .case-text {
    position: absolute;
    bottom: 10px;
    left: 20px;
    color: white;
    padding: 0px;
    border-radius: 5px;
}

.text-overlay .case-text h3,
.text-overlay .case-text p {
    color: white;
}

/* Layout sizes */
.large {
    grid-column: span 1;
    grid-row: span 1;
}

.wide {
    grid-column: span 2;
    grid-row: span 1;
}

.small {
    grid-column: span 1;
    grid-row: span 1;
}

/* Responsive layout */
@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
}

/* Load More Section */
.load-more-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.line {
    flex: 1;
    height: 2px;
    display: block;
    background: url(../img/rule-green.svg) repeat-x;
    background-size: contain;
    opacity: 1;
    position: relative;
    top: 12px;
}

.load-more-button {
    background: #2DC84D;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    margin: 0 5px 0 10px;
    transition: background 0.3s ease-in-out;
     font-family: GothamBook;
}

.load-more-button:hover {
    background: #24A243;
}

.load-more-icon {
    background: #2DC84D;
    border: none;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin-right: 10px;
}

.load-more-icon:hover {
    background: #24A243;
}


.hidden-case {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}


.content-area {
    padding: 0 0 3vw 0
}

.content-area.text-center {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.content-area h1 {
    color: #2DC84D;
    font-size: 32px;
}

.content-area p {
    color: #153C34;
    font-size: 38px;
    line-height: 42px;
    word-wrap: break-word;
     font-family: GothamMedium;
}

.case-study {margin-top: 74px;}

.case-header-container {border-bottom: 1px solid #2DC84D; padding: 20px 0}
.case-header {display: flex; justify-content: space-between;}
.case-header h1 {font-family: GothamMedium;font-size: 18px; line-height: 1.35;}
.case-header img {
    border-radius: 10px; height: 25px; width: auto;
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;

}

.text-content {
    max-width: 550px;  padding: 3vw 0; display: flex; justify-content: space-between; flex-wrap: wrap;
}

.text-content .bottom {display: flex; align-items: flex-end;}

.image-content {padding: 3vw 0}

.case-study-title {
    color: #2DC84D;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;   margin-bottom: 20px; display: block;
}

.case-study-content h1 {font-family: GothamMedium;font-size: 40px; line-height: 42px;color: #153C34; margin-bottom: 20px;; }

.case-study-tags {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.tag {
    background:transparent;
    border: 1px solid #2DC84D;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 14px;

    color: #153C34; font-family: GothamMedium;
}

.tag.white {background: white; border-color: #fff;}

.text-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #153C34;
    margin-bottom: 10px;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
}

.case-video {
    width: 100%;
    border-radius: 10px;
}

.image-container {
    margin-top: 20px;
    width: 100%; position:relative;
}

.image-container img {
    width: 100%;
    border-radius: 10px;
}

.image-container:hover figcaption {opacity: 1;
  transform: translateY(0);}
.image-container figcaption {position:absolute; bottom: 30px; left: 30px;  opacity: 0;  transform: translateY(20px);   transition:   opacity 0.3s ease-out,   transform 0.3s ease-out;}
.content .image-container figcaption p {color:#fff; line-height:1; margin:0 0 5px; font-size: 16px;}


.image-container.no-border-right img, .image-container.no-border-right {border-top-right-radius: 0; border-bottom-right-radius: 0;}
.image-container.no-border-left img, .image-container.no-border-left {border-top-left-radius: 0; border-bottom-left-radius: 0;}


.grid-home.content .left-column p {margin-top:0; margin-bottom: 15px;}
.grid-home .image-container {margin-top:0}

.grid-home.content .left-column ul {margin: 15px}
.grid-home.content .left-column li {margin-top:0; margin-bottom: 5px; font-size: 15px; line-height:1.5}

.image.half {width: 33%}


.case-study-grid {
    display: grid;
    gap: 40px;
   grid-template-columns: 1fr 1fr;
   align-items: self-start; padding: 5vw 0;
}

.testimonial-box {
    display: flex;
    flex-direction: column;
    background: #2A4B42;
    color: white;
    padding: 0px;
    border-radius: 10px;
    max-width: 85%;
}

.testimonial-box article {padding: 20px;}
.testimonial-box article p {margin: 15px 0}

.testimonial-image {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.testimonial-content {
    padding: 15px; background: url(../img/quotes.svg) no-repeat 96% 90%; background-size: 100px;
}

.testimonial-content strong { color: #2DC84D;}
.testimonial-content .person {margin-top: 4vw;}
.testimonial-content .person p strong {color:#fff; opacity: 1;}
.testimonial-content .person span {opacity:0.6}

.v-btm {display: flex; flex-wrap: wrap; align-items: flex-end;}
.study.text {padding: 35px 20px}
.study.text p {margin: 10px 0}
.text .buttons-group {display: block; margin-top: 20px;}
.text .buttons-group .button {display: inline-block;}

.metrics-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 20px 0; margin-top: 3vw;
}

.metric-item {
    flex: 1;
    text-align: left;
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.metric-header img {
    width: 20px;
    height: 20px;
}

.metric-item h3 {
    font-size: 18px;
    color: #153C34;
    font-weight: bold;
}

.metric-item p {
    font-size: 16px;
    color: #153C34;
    margin: 10px 0;
}

.metric-item hr {background-size: cover !important;
    height: 2.5px; margin-bottom: 15px;}

.metric-value {
    font-size: 7vw;
    font-weight: bold;
    color: #2DC84D;
    margin: 40px 0 10px 0;
}

.metric-value span {
    font-size: 48px;
}

.full-width-text {
    width: 100vw;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.full-width-text p {
    font-size: 15vw; /* Adjust as needed */
    font-weight: bold;
    color: #e5e8e6; /* Light grey color */
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    position: relative;
    letter-spacing: -0.5vw;
}


.content-header {padding: 5vw 0 1.5vw; margin-top: 74px}
.content-header h1 {font-size: 85px; text-transform: uppercase; color: #153C34;}
.content-header h1 sup {    font-size: 2.2vw;  position: absolute;
    top: 3px;
    padding-left: 10px;}
.content-header p {max-width: 500px; font-size: 20px; margin-top: 10px; line-height:1.3}
.content-header p strong {}

.dots-right {background-image: url(../img/dots-right.gif); background-position: right center; background-repeat: no-repeat; background-size: contain;}
.dots-right-white {background-image: url(../img/dots-white.svg); background-position: right center; background-repeat: no-repeat; background-size: contain;}

.resources-section {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding: 5vw 0 0vw;
}

.resource-column {
    width: 32%;
}

.resource-column h2 {
    font-size: 26px;
   text-transform: uppercase;
    color: #153C34;
    margin-bottom: 10px;;
}

.resource-column p {
    font-size: 17px;

}

.resource-list {
    list-style: none;
    padding: 0; margin: 40px 0;
}

.resource-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 20px;
    margin: 8px 0;
    border-radius: 15px;
    border: 1px solid #cad3d0;
    font-size:0.9rem;
   font-family: GothamMedium;
}

.resource-list li:hover {border-color: #2DC84D; background:#edf9ee}

.resource-list li a {
    text-decoration: none;
    color: #153C34;

}

.download-icon {
    background: #e8ecec;
    color: #153C34;
    padding: 8px;
    border-radius: 50%;
    font-size: 0.9rem;
    text-align: center;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
transition: transform 0.2s ease-in-out;
}

.resource-list li:hover .download-icon {background: #2DC84D;  transform: scale(1.2);}
.resource-list li:hover .download-icon path {stroke:#fff}
.download-icon img {width: 15px; height: 15px;}

.download-icon:hover {
    background: #2DC84D;
    color: white;
}

.banner-container {width: 97vw; margin:3vw auto}

/* Swiper Container */
.feature-banner {
    width: 100%;
    max-width: 1920px;
    height: 600px; /* Adjusted to match image */
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

/* Slide Styling */
.banner-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align text to left */
    height: 600px; /* Match container height */
    background-size: cover;
    background-position: center;
    position: relative;
    padding-left: 50px; /* Adjust spacing */
}

/* Dark Overlay for Readability */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Subtle overlay effect */
}

/* Text Content */
.banner-content {
    position: relative;
    z-index: 2;
    color: white;

    max-width: 45vw;
}

.banner-content h2 { font-size: 40px;
  font-family: GothamMedium;
    line-height: 1.1;
    text-align: left;}

/* Swiper Pagination (Aligned Right) */
.swiper-pagination {
    position: absolute;
    right: 0px; left: auto !important;

    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px; bottom: auto !important; top: 50% !important; width: 50px !important
}

/* Custom Pagination Dots */
.swiper-pagination-bullet {
    background: white !important;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    background: white !important;
    opacity: 1 !important;
    transform: scale(1);
}


/* Contact Section Layout */
.contact-section {
 margin-top:74px;
    padding: 5vw 0;
}

/* Left Side - Contact Info */

.contact-details {
    flex: 1;
    max-width: 100;
}

.contact-details hr {max-width: 400px; margin:0 0 15px 0}

.contact-form {margin-top: 100px;}
.contact-form form {padding: 30px;}
.contact-form .button-group {margin-top: 3vw;}
.contact-form .custom-checkbox {justify-content: flex-start; gap:10px;}
.contact-form .form-group {margin-bottom: 20px;}
.contact-form .input-group textarea {height: 210px}


.contact-details h2 {
    font-size: 85px;
    font-weight: 700;
    color: #153C34; margin-bottom: 15px;
}

.contact-details p {
    font-size: 21px;
    line-height: 1.5;
}

.highlight-text {
    color: #2DC84D;
    font-family: GothamMedium;
}

/* Benefits List */
.contact-benefits {
    list-style: none;
    padding: 0;
    margin-top: 20px; max-width: 400px;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    border-top:2px dotted #ccc;
    padding:15px 0;
}

.contact-benefits li .check {


    width: 18px; height: 18px; margin-left: 0;
}

/* Map Placeholder */
.contact-map img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-top: 50px;
}


.cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
     position: relative;
     padding: 5vw 0
  }

  /* Basic card styling */


.branding-dots > span {width: 20px; height: 20px; margin-right: 5px; border-radius: 100%; background:#2DC84D; display:inline-block}
.branding-dots .dark-green {background:#153C34}


  .card {
    position: relative;
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;

    cursor: pointer;
  }

  .card.blank {
    background: transparent;

    padding: 0; display:flex; justify-content: flex-end}

    .card.content.blank .left-column { margin-bottom: 0; }

  .card img {
    display: block;
    width: 100%;
    height: auto; border-radius: 10px;
  }

  /* Hidden overlay content by default */
  .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    color: #fff;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  /* Show overlay content on hover */
  .card:hover .card-content {
    opacity: 1;
  }

  .card:hover img {opacity:0.8}

  /* The second card always shows the hover state by default */
  .card.hover .card-content {
    opacity: 1;
  }

  /* Simple styling for text inside the overlay */
  .card-content h3 {
    margin: 0 0 8px;
    font-size: 20px; font-family: GothamMedium; line-height: 1.2;
  }
  .card-content p {
    margin: 0 0 10px 0;
    font-size: 14px;
  }

/* Main play container */
.play {

    position: absolute; left:40%; top: 40%; z-index: 999;
  }

  /* The blurred circle background */
  .play-circle {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.45);
    border-radius: 9999px; /* fully rounded */
    backdrop-filter: blur(40px);
  }

  .play-triangle {
    position: absolute;
    top: 22.5px;
    left: 25.75px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 17.75px solid white;
  }

  .arrow-card {display: flex;align-items: center; justify-content: flex-start !important}
  .arrow-card img {max-width: 200px;}

  .flip-horizontal { transform: scaleX(-1);}

  .left-column-title h2 { font-size: 1.8vw!important;
  text-transform: uppercase;
  color: #153C34;
  font-weight: bold;
  font-family: "TradeGothic";
  font-style: normal;
  line-height: 1!important;}

  .left-column-title h2 strong {
    font-size: 1.8vw!important;
    text-transform: uppercase;
    font-weight: bold;
    font-family: "TradeGothic";
    font-style: normal;
    line-height: 1!important;
    color: #2DC84D;
    display: block;
  }

  .highlight_message p, .success-message p {color: #61161f!important;text-align: center!important;padding: 15px;background-color: #fdd!important;border-radius: 10px;border: 1px solid #f1b7bf;width: 100%; margin: 0 auto 25px!important;font-size: 16px; box-sizing: border-box;}
  .success-message p {background: #2dd284!important; color: #fff!important; border: 1px solid #2dd284!important;}
  .highlight-form-field, .highlight-form-field {border-color: #f1b7bf!important; }


#systemMessage2 p {margin-top: 20px!important;}
