.contact-hero input:focus {
    color: white;
}

.contact-hero input::placeholder {
    color: white;
}

.canadatext {
    position: relative;
    right: 10px;
}

section.single_tain p.trainer--title {
    color: white;
}

.gridlastitem {
    background: #7d0c11;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px 1px;
    margin-bottom: 60px;
}


/* Adjust height for the specific images */

.image-grid div:nth-child(1),
.image-grid div:nth-child(3),
.image-grid div:nth-child(5),
.image-grid div:nth-child(7),
.image-grid div:nth-child(9) {
    height: 400px;
    /* Taller images */
}

.image-grid div:nth-child(2),
.image-grid div:nth-child(4),
.image-grid div:nth-child(6),
.image-grid div:nth-child(8),
.image-grid div:nth-child(10) {
    height: 300px;
    /* Shorter images */
}

.image-grid div:nth-child(7),
.image-grid div:nth-child(9) {
    margin-top: -100px;
}

.contact-home-row input:focus,
.contact-home-row textarea:focus {
    outline: none;
}

.tell-us-contact-form input:focus {
    border: none;
    outline: none;
}

.marquee-item {
    border: #000;
    border-top: none;
    border-bottom: none;
    border-right: 1px black;
    border-left: 1px black;
}

.banner-logos {
    position: relative;
    /* needed for absolute children */
}

.banner-logos::before,
.banner-logos::after {
    position: absolute;
    top: 0;
    content: '';
    width: 10%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* so it doesn't block clicks */
}

.banner-logos::before {
    left: 0;
    background: linear-gradient(to left, #F6F7FB00, #F6F7FB);
}

.banner-logos::after {
    right: 0;
    background: linear-gradient(to right, #F6F7FB00, #F6F7FB);
}

.bannercontent {
    box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2), /* left */
    5px 0 10px rgba(0, 0, 0, 0.2);
    /* right */
}

.ourstory {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* two equal columns */
    grid-template-rows: repeat(2, auto);
    /* two rows, auto height */
    gap: 10px;
    /* optional spacing */
    @media(max-width: 991px) {
        grid-template-columns: 1fr;
        place-items: center;
    }
}

.ourstorycontainer {
    width: 100%;
    height: 100%;
}

.ourstorycontainer img {
    width: 100%;
    /* fit inside grid cell */
    height: auto;
    /* keep aspect ratio */
    display: block;
    /* remove inline gaps */
    object-fit: cover;
    /* crop nicely if needed */
}

.marquee-item>img {
    width: 20%;
}

body.home {
    color: #fff;
    background-color: #D44442;
}


/* Video */

video {
    width: 100%;
    height: 100%;
}

.video-banner {
    width: 80%;
    margin: auto;
}

.close-button {
    float: right;
}


/* Home Banner */

section.home-banner {
    background: url('../../assets/img/home/home-banner-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
}

section.home-banner .custom-container {
    width: 80%;
    margin: auto;
}

section.home-banner .row {
    align-items: center;
}

section.home-banner h1 {
    font-weight: 900;
    margin-bottom: 20px;
}

section.home-banner .banner-content p {
    margin-bottom: 30px;
}

.banner-logos {
    position: relative;
    overflow: hidden;
    width: 100%;
    top: 2.8rem;
    padding: 15px 0;
}

section.home-banner .marquee {
    display: flex;
    height: 8vh;
}

section.home-banner .marquee-content {
    display: flex;
    animation: scrolling 20s linear infinite;
}

section.home-banner .marquee-item {
    flex: 0 0 90px;
}

section.home-banner .marquee-item img {
    display: block;
    width: 100%;
}

section.home-banner .banner-content-logo {
    left: 50%;
    width: 75%;
}

section.home-banner .banner-content-logo p {
    color: #7C7C7C;
}


/* section.home-banner .banner-logos::before,

section.home-banner .banner-logos::after {

    content: '';

    position: absolute;

    top: 0;

    bottom: 0;

    width: 10%;

    pointer-events: none;

    z-index: 1;

} */

section.home-banner .banner-logos::before {
    left: 0;
    background: linear-gradient(to left, rgba(212, 68, 66, 0) 0%, rgba(212, 68, 66, 1) 40%)
}

section.home-banner .banner-logos::after {
    right: 0;
    background: linear-gradient(to right, rgba(212, 68, 66, 0) 0%, rgba(212, 68, 66, 1) 45%)
}

.play-button {
    position: relative;
    margin: 20px;
    height: 120px;
    width: 120px;
    background: rgba(255, 255, 255, 0.20);
    border-radius: 50%;
}

.play-button svg {
    position: absolute;
    left: 37%;
    top: 37%;
}

.play-button:before {
    position: absolute;
    content: '';
    height: calc(100% + 25px);
    width: calc(100% + 25px);
    border: 1px dashed #fff;
    top: -12px;
    left: -12px;
    border-radius: inherit;
    animation: spinner 25s linear infinite;
    cursor: pointer;
}

section.home-banner .banner-content-logo p {
    margin-bottom: 30px;
}

.play-button {
    float: right;
    cursor: pointer;
}

section.banner-video {
    display: none;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    background: #0008;
}


/* contact form */

select.wpcf7-form-control.wpcf7-select:hover {
    display: none;
}

section.testimonial div.item {
    border: white;
}

section.testimonial div.item {
    border: 2px solid white;
    transition: border-color 0.5s ease;
    animation: borderColorAnimation 2s linear infinite;
}

@keyframes borderColorAnimation {
    0% {
        border-color: white;
    }
    25% {
        border-color: #F6F7FB;
    }
    50% {
        border-color: white;
    }
    75% {
        border-color: #F6F7FB;
    }
    100% {
        border-color: white;
    }
}

section.testimonial div.item {
    border: white 1px solid;
}

@keyframes spinner {
    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes scrolling {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 1500px) {
    section.home-banner .banner-content-logo {
        bottom: -200px;
    }
    section.home-banner {
        height: 800px !important;
        padding-top: 0;
    }
}

@media (min-width: 1200px) {
    section.home-banner {
        height: 1000px;
    }
    .banner-content-logo {
        position: absolute;
    }
}

@media (max-width: 1199px) {
    section.home-banner {
        padding: 195px 30px 70px 30px !important;
    }
    section.home-banner .row {
        margin-bottom: 50px;
    }
    .banner-content-logo {
        transform: unset;
        margin: auto;
    }
    section.home-banner .custom-container {
        width: 100%;
        margin: auto;
    }
}

@media (min-width: 1200px) {
    section.home-banner .banner-content-logo {
        transform: translateX(-50%);
    }
}

@media (max-width: 767px) {
    section.home-banner {
        padding: 195px 30px 50px 30px !important;
        height: unset !important;
    }
    .play-button {
        float: left;
        position: relative;
        left: 50%;
        transform: translateX(-65%);
    }
    .banner-content {
        text-align: center;
        margin-bottom: 30px;
    }
    section.home-banner .red-cta {
        width: max-content;
        margin: auto;
    }
}


/* Home Banner */


/* Tell Us How We Can Help You! */

section.tell-us-how {
    background: url(../../assets/img/home/tell-us-form.png);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    background-color: #D44442;
}

.tell-us-how .tell-us-contact-form h3 {
    margin-bottom: 20px !important;
    letter-spacing: 1px;
}

section.join_with_us .form h3 {
    margin-bottom: 20px !important;
    letter-spacing: 1px;
}

section.join_with_us .form .col-xl-12 {
    margin-bottom: 20px !important;
}

section.join_with_us .form .col-md-12 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

section.tell-us-how input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required,
section.tell-us-how textarea.wpcf7-form-control.wpcf7-textarea,
section.tell-us-how select.wpcf7-form-control.wpcf7-select {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #8D8D8D;
    height: 40px;
    margin-bottom: 20px !important;
    background: transparent;
    color: #fff;
    padding: 10px;
}

section.tell-us-how textarea.wpcf7-form-control.wpcf7-textarea {
    height: 200px;
}

section.tell-us-how select.wpcf7-form-control.wpcf7-select {
    padding: 0 10px;
}

section.tell-us-how label {
    margin-bottom: 10px;
}

section.tell-us-how option {
    color: #000;
}

section.tell-us-how .tell-us-contact-form {
    border-radius: 5px;
    border: 1px solid #494949;
    background: var(--L, linear-gradient(135deg, rgba(150, 150, 150, 0.10) 0%, rgba(252, 252, 252, 0.10) 49.5%, rgba(48, 48, 48, 0.10) 100%));
    backdrop-filter: blur(15px);
}

section.tell-us-how .tell-us-contact-form {
    padding: 30px 40px;
    background: #7D0C11;
}

section.tell-us-how .red-cta {
    color: #fff;
    border: none;
}

section.tell-us-how .red-cta:hover {
    color: #EE2A26;
}

section.tell-us-how select.wpcf7-form-control.wpcf7-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('../../assets/img/home/dropdown.png');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

@media (min-width: 1400px) {
    .tell-us-how-content {
        padding-left: 112px;
    }
    .tell-us-contact-form {
        margin-right: 112px;
    }
}

@media (max-width: 1400px) {
    section.tell-us-how {
        background-position: 100%;
    }
}

@media (min-width: 1200px) {
    .tell-us-how-content {
        padding-left: 120px;
    }
    .tell-us-contact-form {
        margin-right: 50px;
    }
}

@media (max-width: 1199px) {
    section.tell-us-how .tell-us-contact-form {
        margin: 30px 0;
    }
}

@media (max-width: 767px) {
    section.tell-us-how form p,
    section.tell-us-how .tell-us-contact-form h3 {
        text-align: left !important;
    }
}


/* Tell Us How We Can Help You! */


/* Your Training Programs */

section.your-training {
    background-color: #D44442;
}

section.your-training .your-training-header {
    margin-bottom: 60px;
}

section.your-training .card p {
    text-align: left;
}

section.your-training .training-cards {
    gap: 10px;
}

section.your-training .training-cards .card {
    background: transparent;
    transition: all 1.8 ease-in-out;
    cursor: pointer;
}

img {
    width: 100%;
}

section.your-training .your-training-image {
    border-radius: 5px;
    overflow: hidden;
}

section.your-training .training-cards .card img {
    height: 400px;
    object-fit: cover;
}

section.your-training .training-cards .card h3 {
    letter-spacing: 1px;
    bottom: 0;
    text-align: left;
}

section.your-training .training-card-title.position-absolute {
    bottom: 0;
    padding: 20px;
}

section.your-training .training-card-title {
    bottom: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

section.your-training .training-card-title p {
    display: none;
    transition: all 1.8 ease-in-out;
}

section.your-training .training-cards .card:hover p,
section.your-training .training-cards .card:hover .programs-overlay {
    display: block;
}

.programs-overlay {
    background: linear-gradient(0deg, rgba(13, 13, 13, 0.90) 0%, rgba(13, 13, 13, 0.90) 100%), url(<path-to-image>) lightgray 50% / cover no-repeat;
    opacity: .8;
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 5px;
    display: none;
}

@media (max-width: 1775px) {
    section.your-training .card {
        width: 32.33%;
    }
    section.your-training .training-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    section.your-training .training-cards .card img {
        width: 100%;
    }
}

@media (min-width: 1200px) {
    section.your-training .your-training-header {
        width: 58%;
    }
}

@media (max-width: 1199px) {
    section.your-training .your-training-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    section.your-training .card {
        width: 49%;
    }
}

@media (max-width: 767px) {
    section.your-training .card {
        width: 100%;
    }
}


/* Your Training Programs */


/* Amazing is Possible */

section.amazing-possible {
    height: 715px;
    overflow: hidden;
    /* background-color: #D44442; */
}

section.amazing-possible .amazing-possible-img {
    bottom: 90px;
    right: -45px;
}

section.amazing-possible span.amazing-is {
    left: 24%;
    top: 40px;
    position: absolute;
    color: #FFF;
    font-size: 114.616px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1.686px;
    text-transform: capitalize;
    z-index: 100;
}

section.amazing-possible span.possible {
    color: #000;
    font-size: 168.553px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    letter-spacing: 1.686px;
    text-transform: capitalize;
    position: absolute;
    left: 35%;
    z-index: 10;
}

section.amazing-possible .amazing-possible-img.position-absolute.aos-init.aos-animate {
    bottom: 0;
    z-index: 100;
    right: 9%;
}

section.amazing-possible .amazing-dark-overlay {
    bottom: -2px;
    z-index: 100;
    right: 0;
    width: 100%;
}

section.amazing-possible img.a-like-image {
    transform: rotate(-7.658deg);
    margin-top: -107px;
}

@media (max-width: 1320px) {
    section.amazing-possible span.amazing-is {
        left: 10%;
    }
    section.amazing-possible span.possible {
        left: 20%;
    }
}

@media (max-width: 1199px) {
    section.amazing-possible span.amazing-is {
        left: 10%;
        top: 10px;
    }
    section.amazing-possible span.possible {
        font-size: 125px;
    }
    section.amazing-possible span.amazing-is {
        font-size: 100px;
    }
}

@media (max-width: 991px) {
    section.amazing-possible img.a-like-image {
        margin-top: 0;
    }
    section.amazing-possible .amazing-dark-overlay {
        bottom: -4px;
    }
}

@media (max-width: 767px) {
    section.amazing-possible span.possible {
        left: 50%;
        transform: translateX(-50%);
        top: 17%;
        font-size: 100px;
    }
    section.amazing-possible span.amazing-is {
        font-size: 80px;
        top: 10%;
    }
    .amazing-dark-overlay.position-absolute img {
        height: 200px;
    }
}

@media (max-width: 600px) {
    section.amazing-possible span.amazing-is {
        font-size: 65px;
        top: 13%;
    }
    section.amazing-possible .amazing-possible-img.position-absolute.aos-init.aos-animate {
        right: 0;
    }
}

@media (max-width: 575px) {
    section.amazing-possible .amazing-dark-overlay {
        bottom: -7px;
    }
}

@media (max-width: 525px) {
    section.amazing-possible span.possible {
        font-size: 80px;
    }
    section.amazing-possible span.amazing-is {
        font-size: 50px;
    }
    section.amazing-possible .amazing-possible-img.position-absolute.aos-init.aos-animate {
        bottom: 105px;
    }
    section.amazing-possible .amazing-dark-overlay {
        bottom: 90px;
        left: 0;
    }
}

@media (max-width: 430px) {
    .amazing-dark-overlay.position-absolute {
        bottom: 103px !important;
    }
}

@media (max-width: 420px) {
    section.amazing-possible .amazing-dark-overlay {
        bottom: 110px;
    }
}

@media (max-width: 405px) {
    section.amazing-possible span.possible {
        font-size: 65px;
    }
}

@media (max-width: 330px) {
    section.amazing-possible span.possible {
        font-size: 65px;
    }
    section.amazing-possible span.amazing-is {
        font-size: 38px;
    }
}


/* Amazing is Possible */


/* Meet Your Trainers 

section.meet-your-trainers {



}
*/

.image-grid img {
    width: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 5px;
}

.center-header {
    text-align: center;
    margin: auto;
    margin-bottom: 60px;
}

.center-header {
    text-align: center;
    margin: auto;
    margin-bottom: 60px;
}

section.meet-your-trainers .black-cta {
    margin: auto;
}

@media (max-width: 1200px) {
    .image-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .center-header {
        width: 65%;
    }
}

@media (max-width: 1199px) {
    .image-grid img:nth-child(7),
    .image-grid img:nth-child(9) {
        margin-top: 0;
    }
    .image-grid img:nth-child(6),
    .image-grid img:nth-child(8) {
        margin-top: -98px;
    }
    .image-grid img:nth-child(10) {
        margin-top: -196px;
    }
    .center-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .image-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 columns */
    }
    .image-grid img:nth-child(6),
    .image-grid img:nth-child(8) {
        margin-top: 0;
    }
    .image-grid img:nth-child(5) {
        margin-top: -98px;
    }
    .image-grid img:nth-child(10) {
        margin-top: 0;
        right: -104%;
        top: -98px;
        position: relative;
    }
}

@media (max-width: 767px) {
    .image-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns */
    }
    .image-grid img:nth-child(4) {
        margin-top: -98px;
    }
    .image-grid img:nth-child(6),
    .image-grid img:nth-child(8) {
        margin-top: -196px;
    }
    .image-grid img:nth-child(10) {
        margin-top: -294px;
        right: 0;
        top: 0;
    }
}

@media (max-width: 575px) {
    .image-grid {
        grid-template-columns: 1fr;
        /* 1 column */
    }
    .image-grid img:nth-child(1),
    .image-grid img:nth-child(3),
    .image-grid img:nth-child(5),
    .image-grid img:nth-child(7),
    .image-grid img:nth-child(9),
    .image-grid img:nth-child(10) {
        height: unset;
    }
    .image-grid img:nth-child(4) {
        margin-top: 0;
    }
    .image-grid img:nth-child(5) {
        margin-top: 0;
    }
    .image-grid img:nth-child(6),
    .image-grid img:nth-child(8),
    .image-grid img:nth-child(10) {
        margin-top: 0;
    }
    .image-grid img {
        border-radius: 10px;
    }
}


/* Meet Your Trainers */


/* Our Story */

section.our-story {
    background: url(../../assets/img/home/story-new-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    /* background-color: #D44442; */
}

section.our-story img {
    border-radius: 5px;
    width: 100%;
}

section.our-story .row.justify-content-between {
    row-gap: 24px;
}

.our-story-content p {
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .our-story-content {
        margin-bottom: 40px;
    }
}


/* Our Story */


/* Testimonials */

section.testimonials {
    overflow: hidden;
    /* background-color: #D44442; */
}

section.testimonials .row.align-items-center.testi {
    margin-left: 10%;
}

section.testimonials .container-fluid {
    margin-left: 9.5%;
}

section.testimonials button.testi-prev,
section.testimonials button.testi-next {
    background: transparent;
    border: none;
}

section.testimonials .testi-nav {
    width: 28%;
    gap: 18px;
}

.testi--carousel .card {
    padding: 50px;
    height: 400px;
    background: #000;
}

.testi--carousel .owl-item.active {
    transform: translateY(30px);
}

.testi--carousel .owl-item.active.center {
    transform: translateY(-5px) !important;
}

.testi--carousel img {
    width: 80px !important;
    margin: auto auto 20px;
}

.testi--carousel p b {
    font-weight: 900;
}

.testimonials-texts p {
    margin-bottom: 50px;
}

section.testimonials .owl-stage {
    padding: 40px 0;
}

section.testimonials .marquee {
    margin: 0 auto;
    position: relative;
    text-align: center;
    color: #fff;
    border: none;
}

section.testimonials .owl-carousel .owl-item .card {
    height: 100%;
}

section.testimonials .owl-carousel .owl-item.active {
    opacity: 1 !important;
    transition: opacity .3s ease-in-out !important;
}

section.testimonials button circle {
    fill: #000;
}

.owl-carousel .owl-item.fadeOut {
    opacity: 0 !important;
}


/* .marquee:hover::before, .marquee:hover::after {

    -webkit-animation-play-state: paused;

    animation-play-state: paused;

  } */

section.testimonials .marquee::before {
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    content: "";
    box-shadow: inset 0 0 0 1px;
    animation: marqueeFrame 3s linear infinite;
}

section.testimonials .marquee::before {
    animation-delay: -5s;
}

@keyframes marqueeFrame {
    0%,
    100% {
        clip-path: polygon(0% 0%, 100% 0%, 100% 4px, 0% 4px);
    }
    25% {
        clip-path: polygon(0% 0%, 4px 0%, 4px 100%, 0% 100%);
    }
    50% {
        clip-path: polygon(0% calc(100% - 4px), 100% calc(100% - 4px), 100% 100%, 0% 100%);
    }
    75% {
        clip-path: polygon(calc(100% - 4px) 4px, 100% 4px, 100% 100%, calc(100% - 4px) 100%);
    }
    76% {
        clip-path: polygon(calc(100% - 4px) 0, 100% 0, 100% 100%, calc(100% - 4px) 100%);
    }
}

@media (min-width: 1200px) {
    /* section.testimonials .owl-carousel .owl-item.active {

        width: 528px !important;

    } */
}

@media (max-width: 1199px) {
    section.testimonials .testi-nav {
        width: 12%;
    }
    .testi--carousel .owl-item.active {
        transform: unset;
    }
    section.testimonials .testimonials-texts {
        margin-bottom: 40px;
    }
    section.testimonials .container-fluid {
        margin-left: 0;
    }
    section.testimonials .owl-stage {
        padding: 0;
    }
    section.testimonials .owl-stage-outer {
        padding-top: 10px !important;
    }
}

@media (max-width: 767px) {
    section.testimonials .testi-nav {
        width: max-content;
        margin: auto;
    }
}


/* Testimonials */


/* Success Stories */

section.success-stories {
    background: url(../../assets/img/home/success-stories.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    overflow: hidden;
    /* background-color: #D44442; */
}

section.success-stories button {
    background: transparent;
    border: none;
}

section.success-stories nav.nav-button {
    display: flex;
    gap: 18px;
}

section.success-stories .owl-carousel .owl-item img {
    width: unset;
    margin: auto;
    transition: all 1s ease-out;
}

section.success-stories .card {
    background: transparent;
    height: 400px;
    justify-content: center;
    border-top: 1px solid #494949;
    border-bottom: 1px solid #494949;
    border-left: 1px solid #494949;
    border-radius: 0;
    padding: 40px;
    display: flex;
    align-items: center;
    /* transition: backdrop-filter 8s ease-in-out, background 8s ease-in-out; */
    transition: all 1s ease-out;
}

section.success-stories .logo--desc {
    transition: all 1s ease-out;
}

section.success-stories button circle {
    fill: #000;
}

section.success-stories .stories-heading {
    margin-bottom: 60px;
}

section.success-stories .card:hover .owl-item img {
    margin-bottom: 30px;
}

section.success-stories .card p {
    display: none;
}

section.success-stories .card:hover {
    background: var(--L, linear-gradient(135deg, rgba(150, 150, 150, 0.10) 0%, rgba(252, 252, 252, 0.10) 49.5%, rgba(48, 48, 48, 0.10) 100%));
    backdrop-filter: blur(15px);
}

section.success-stories .card:hover p {
    display: block;
}

section.success-stories .card:hover img {
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .our-story-content {
        padding-right: 25px;
    }
    .our-story-images {
        padding-left: 14px;
    }
    section.success-stories .success-stories-header {
        width: 46%;
    }
}

@media (max-width: 1199px) {
    section.success-stories .success-stories-header {
        margin-bottom: 30px;
    }
    section.success-stories nav.nav-button {
        width: 100%;
    }
    .stories-heading {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    section.success-stories nav.nav-button {
        width: max-content;
    }
}


/* Success Stories */


/* Our Offices */


/*
section.our-offices {

    background-color: #D44442;

}

*/

section.our-offices .left-image-text {
    border-bottom: 1px solid #9F2D2B;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

section.our-offices .left-image-text {
    border-bottom: 1px solid #9F2D2B;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

section.our-offices img {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 5px;
}

section.our-offices .contact.d-flex.flex-column {
    gap: 60px;
}

section.our-offices p.contact--bold-head {
    margin-bottom: 20px;
    font-weight: 900;
}

section.our-offices .offices-contact-flex p a {
    color: #fff;
}

section.our-offices svg.svg1 {
    width: 31px;
}

.offices-contact-flex.d-flex.align-items-center:not(:last-child) {
    margin-bottom: 20px;
}

section.our-offices .offices-contact-flex.d-flex.align-items-center {
    gap: 20px;
}

@media (min-width: 1200px) {
    section.our-offices .left-image-content {
        padding-left: 100px;
    }
}

@media (max-width: 1199px) {
    section.our-offices h2 {
        margin-bottom: 30px;
    }
    section.our-offices .contact.d-flex.flex-column {
        gap: 50px;
    }
}

@media (max-width: 767px) {
    section.our-offices .offices-contact-flex.d-flex.align-items-center p {
        text-align: left;
    }
    section.our-offices p.contact--bold-head {
        text-align: left;
    }
}

@media (max-width: 525px) {
    section.our-offices svg.svg1 {
        width: 50px !important;
    }
}


/* Our Offices */