

/* === single-banner === */


#single-banner-1177 {
	 --single-banner-align: left;
}

.single-banner {
    --desktoph: 900px;
    --tableth: 750px;
    --mobileh: 735px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.single-banner .container {
    position: relative;
    height: 100%;
    z-index: 5;
    padding-bottom: 75px;
}

.single-banner .container .row {
    height: 100%;
    align-items: flex-end;
}

.single-banner .caption {
    text-align: left;
}

.single-banner .carousel-inner {
    overflow: visible;
}

.single-banner .carousel-link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.single-banner .carousel-caption-title {
    margin-bottom: 10px;
    line-height: 1.1;
}

.page404 .single-banner .carousel-caption-text {
    font-size: 18px;
}

.single-banner .carousel-caption-text {
    font-size: 22px;
    margin: 0;
    margin-bottom: 1rem;
}

.single-banner .carousel-item {
    height: var(--desktoph);
    position: relative;
}

.single-banner .carousel-item img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.single-banner .hidden-h1 {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    width: 0px;
    height: 0px;
}

.single-banner .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.74)), linear-gradient(to top, transparent, rgba(0, 0, 0, 0.74));
    z-index: 1;
}

.single-banner .title-small {
    margin-bottom: 12px;
}

@media screen and (max-width: 1199.98px) {
    .single-banner .carousel-caption-title {
        font-size: 50px;
        line-height: 1;
        text-wrap: balance;
    }

    .single-banner {
        --desktoph: 790px;
    }

    .single-banner .container {
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 991px) {
    .single-banner .carousel-item {
        height: var(--tableth);
    }

    .single-banner {
        --tableth: 700px;
    }
}

@media screen and (max-width: 767px) {
    .single-banner .container {
        padding-bottom: 60px;
        text-align: center;
    }

    .single-banner .carousel-caption-text {
        font-size: 20px;
    }

    .single-banner .carousel-caption-text br {
        display: none;
    }
}

@media screen and (max-width: 575px) {
    .single-banner .carousel-item {
        height: var(--mobileh);
    }

    .single-banner .container {
        padding-bottom: 50px;
    }

    .single-banner .carousel-caption-text {
        font-size: 20px;
        line-height: 1.2;
    }

    .single-banner {
        --mobileh: 690px;
    }

    .single-banner .container {
        padding-bottom: 40px;
    }

    .single-banner .carousel-caption-title {
        font-size: 40px;
    }

    .single-banner .btn {
        width: 100%;
    }
}

/* === single-banner === */



/* === content-02-2-column === */

.content-02 {
    padding: 65px 0;
    background-color: var(--content-02-background-color, #141414);
}

.content-02 .block-title {
    margin-bottom: 20px;
    text-align: left;
}

.content-02 .content-02-text p {
    font-size: 18px;
    font-weight: 300;
}

.content-02 .content-02-text:nth-child(1) p {
    max-width: 590px;
}

.content-02 .content-02-text a {
    display: block;
    text-decoration: none;
    color: #d60303;
}

@media(max-width: 1199.98px) {
    .content-02 {
        padding: 65px 0 20px;
    }
}

@media(max-width: 991.98px) {
    .content-02-text {
        font-size: 16px;
        line-height: 26px;
    }

    .content-02 .block-title {
        margin-bottom: 15px;
    }
}

@media (max-width: 575.98px) {
    .content-02 {
        padding: 45px 0 20px;
    }
}
/* === content-02-2-column === */



/* === services_block === */

.services-block {
    padding: 60px 0;
    background-color: var(--services-block-background-color, #141414);
}

.services-block>.container>.row {
    --bs-gutter-y: var(--bs-gutter-x);
}

.services-block .subtitle,
.services-block .title {
    text-align: center;
}

.services-block .item {
    position: relative;
    z-index: 2;
    border-radius: 5px;
    overflow: hidden;
    padding: 50px 38px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    color: #fff;
    transition: .3s;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.01) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.01) 65%, transparent 100%);
}

.services-block .item:hover {
    padding-bottom: 40px;
}


.services-block .item-image-wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    background: linear-gradient(to top, black, transparent);
    transition: .15s height, .3s background, .3s opacity;
}

.services-block .item:hover .item-image-wrapper::before {
    background: var(--button-background);
    opacity: .75;
}

.services-block .item-content {
    transition: .3s all;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
}

.services-block .item:hover .item-content {
    opacity: 1;
    max-height: 500px;
}

.services-block .item:not(:hover) .item-text {
    user-select: none;
}

.services-block .subtitle {
    margin-bottom: 24px;
}

.services-block .title {
    margin-bottom: 30px;
}

.services-block .item-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.services-block .item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-block .item-title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -0.025em;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.services-block .item-text {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.services-block .item-btn {
    background-color: #141414 !important;
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    text-align: center;
}

.services-block .arrow-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
    z-index: 10;
    transition: .3s all;
    opacity: 1;
}

.services-block .item:hover .arrow-icon {
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 1400px) {
    .services-block .item {
        height: 480px;
    }
}

@media (max-width: 1399.98px) {
    .services-block .item {
        height: 520px;
    }
}

@media (max-width: 1199.98px) {
    .services-block .item {
        padding: 15px 28px;
        height: 430px;
    }

    .services-block .item-text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .services-block .arrow-icon {
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 991.98px) {
    .services-block {
        padding: 30px 0 30px;
    }

    .services-block .item {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .services-block .item {
        height: 265px;
    }

    /* .services-block .item-text {
        display: none;
    } */
}

@media (max-width: 575.98px),
(max-height: 600px) {
    .services-block .item {
        height: 320px;
    }
}

@media (max-width: 575.98px) {
    .services-block>.container>.row {
        --bs-gutter-y: 20px;
    }

    .services-block .item {
        padding: 8px 22px 8px;
    }

    .services-block .arrow-icon {
        bottom: 20px;
        right: 20px;
    }
}
/* === services_block === */



/* === services_block_2 === */


#services_block_2-1188 {
	 --services-block-2-bg-color: #141414;
	 --services-block-2-items-bg: #1c1c1c;
}

.services_block_2 {
    padding: 60px 0;
    background-color: var(--services-block-2-bg-color, #141414);
}

.services_block_2 .multirow-link,
.services_block_2 .single-link {
    color: #cdcdcd;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.025em;
    text-decoration: none !important;
}

.services_block_2 .services_block_2_title {
    margin-bottom: 20px;
}

.services_block_2 .multirow-links-container {
    margin-bottom: 20px;
}

.services_block_2 .multirow-link {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
    background: var(--services-block-2-items-bg, #1c1c1c);
    padding: 16px 20px;
    border-radius: 5px;
}

.services_block_2 .single-link {
    display: flex;
    align-items: center;
    width: fit-content;
}

.services_block_2 .multirow-link i,
.services_block_2 .single-link i {
    margin-right: 10px;
    font-size: 14px;
    color: var(--button-background);
}

.services_block_2 .multirow-link span,
.services_block_2 .single-link span {
    flex-grow: 1;
}

.services_block_2 .single-link {
    display: flex;
    align-items: center;
    width: fit-content;
}

.services_block_2 .multirow-link span {
    overflow-x: hidden;
    overflow-y: clip;
    text-wrap: nowrap;
    text-overflow: ellipsis;
}

.services_block_2 .services_block_2_title_small {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.025em;
    font-weight: 500;
}

@media (max-width: 1199.98px) {
    .services-block + .services_block_2 {
        padding-top: 20px;
    }

    .services_block_2 {
        padding-bottom: 80px;
    }

    .services_block_2 .multirow-links-container {
        margin-bottom: 35px;
    }
}

@media(max-width: 991.98px) {
    .multirow-links-container .row > :nth-child(n+5) {
        display: none;
    }
}

/* === services_block_2 === */



/* === call-to-action-01 === */


#call-to-action-01-1179 {
	 --cta-01-background-image: url(/images/cta-bg.webp);
	 --cta-01-background: rgb(153, 153, 153);
	 --cta-01-color: #fff;
}

.cta-01 {
    padding: 180px 0;
    background-image: var(--cta-01-background-image);
    background-position: center center;
    background-size: cover;
    color: var(--cta-01-color);
    position: relative;
    z-index: 2;
}

.cta-01::before {
    content: "";
    display: block;
    background-color: var(--cta-01-background);
    position: absolute;
    inset: 0;
    z-index: -1;
    mix-blend-mode: multiply;
}

.cta-01-title {
    font-size: 60px;
    line-height: 1.1;
}

.cta-01-text {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 1rem;
}

@media (max-width: 1399.98px) {
    .cta-01-text br {
        display: none;
    }

    .cta-01-title {
        font-size: 50px;
    }
}


@media (max-width: 575.98px) {
    .cta-01 {
        padding: 170px 0px;
    }

    .cta-01-title {
        font-size: 40px;
    }
}

/* === call-to-action-01 === */



/* === process_steps_01 === */


#process_steps_01-1180 {
	 --process-steps-01-bg: #fff;
	 --process-steps-01-color: #141414;
}

.process-steps-01 {
    padding: 60px 0 60px;
    position: relative;
    text-align: center;
    background: var(--process-steps-01-bg, #fff);
    color: var(--process-steps-01-color, #141414);
    counter-reset: badge-number;
    --number-badge-width: 46px;
    --number-badge-height: 46px;
    overflow: hidden;
}

.process-steps-01 .ps01-items .row>div {
    min-width: 0;
}

.process-steps-01 .ps01-item {
    position: relative;
    counter-increment: badge-number;
    display: flex;
}

.process-steps-01 .ps01-image {
    display: block;
    position: relative;
}

.process-steps-01 .ps01-image>img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.process-steps-01 .ps01-image-number-badge {
    position: relative;
    border-radius: 50%;
    color: #fff;
    background: var(--button-background);
    font-size: 18px;
    font-weight: 400;
    width: var(--number-badge-width);
    height: var(--number-badge-height);
    line-height: 1;
    display: grid;
    place-content: center;
    z-index: 1;
}

.process-steps-01 .ps01-image-number-badge::before {
    content: counter(badge-number);
}

.process-steps-01 .ps01-image-number-badge::after {
    content: " ";
    position: absolute;
    right: -10px;
    height: var(--number-badge-height);
    width: 10px;
    background: #fff;
}

.process-steps-01 .ps01-title {
    position: absolute;
    top: 8px;
    left: 60px;
    background: #fff;
    display: block;
    z-index: 1;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.025em;
    margin-bottom: 0;
    padding-right: 8px;
}

.process-steps-01 .ps01-title-wrapper {
    position: relative;
}

.process-steps-01 .text-decorated {
    position: absolute;
    color: #e6e6e6;
    z-index: 0;
    top: -90px;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    opacity: .1;
}

.process-steps-01 .ps01-item::before {
    content: "";
    position: absolute;
    height: 0px;
    border-bottom: 2px dashed currentColor;
    width: 100%;
    top: calc(var(--number-badge-height) / 2);
    z-index: 0;
    left: calc(-65% - var(--number-badge-width) / 2);
    color: var(--button-background);
}

.process-steps-01 :first-child>.ps01-item::before {
    display: none;
}

.process-steps-01 .ps01-items {
    margin-top: 20px;
}

@media (max-width: 1199.98px) {
    .process-steps-01 {
        --number-badge-width: 35px;
        --number-badge-height: 35px;
    }

    .process-steps-01 .ps01-image-number-badge {
        font-size: 16px;
    }

    .process-steps-01 .ps01-title {
        top: 3px;
        left: 42px;
        font-size: 15px;
    }

    .process-steps-01 .ps01-item::before {
        left: calc(-72% - var(--number-badge-width) / 2);
    }
}

@media (max-width: 991.98px) {
    .process-steps-01 {
        padding: 35px 0 60px;
    }

    .process-steps-01 .ps01-main-title {
        margin-top: 24px;
    }

    .process-steps-01 .row {
        --bs-gutter-y: 60px;
    }

    .process-steps-01 .ps01-item {
        align-items: center;
    }

    .process-steps-01 .ps01-items {
        margin-top: 22px;
    }

    .process-steps-01 .row {
        --bs-gutter-y: 35px;
    }

    .process-steps-01 {
        --number-badge-width: 45px;
        --number-badge-height: 45px;
    }

    .process-steps-01 .ps01-title {
        left: 52px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 20px;
    }
}

@media(min-width: 576px) and (max-width: 991.98px) {
    .process-steps-01 :nth-child(3n):not(:last-child)>.ps01-item::before {
        width: calc(200% + var(--number-badge-width));
    }
}

@media (max-width: 575.98px) {
    .process-steps-01 :nth-child(2n):not(:last-child)>.ps01-item::before {
        width: calc(200% + var(--number-badge-width));
    }

    .process-steps-01 {
        padding: 60px 0 60px;
    }

    .process-steps-01 .ps01-main-title {
        margin-top: 0;
    }
}

@media(max-height: 600px) {
    .process-steps-01 {
        padding: 60px 0 60px;
    }
}
/* === process_steps_01 === */



/* === benefits-01 === */

.benefits-01 {
    padding: 60px 0;
}

.benefits-01 .benefit-cards {
    display: grid;
    grid-template: 1fr 1fr/ repeat(3, 1fr);
    gap: var(--bs-gutter-x);
    grid-row: span 3;
}

.benefits-01 .grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--bs-gutter-x);
}

.benefits-01 .benefit-card {
    background-color: var(--button-background);
    border-radius: 5px;
    padding: 2rem 1rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.benefits-01 .benefit-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0rem;
    object-fit: contain;
}

.benefits-01 .benefit-title {
    font-size: 16px;
    line-height: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    letter-spacing: -0.025em;
    margin-top: 1rem;
}

.benefits-01 .block-text {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.benefits-01 .benefits-text {
    padding-left: 80px;
}

@media (min-width: 1200px) {
    .benefits-01 .grid-container {
        grid-template-rows: auto auto 1fr;
    }

    .benefits-01 .block-title {
        padding-top: 40px;
    }

    .benefits-01 :is(.block-title, .block-text, .button-wrapper) {
        padding-left: 80px;
    }
}

@media (max-width: 1199.98px) {
    .benefits-01 .benefit-card {
        padding: 20px;
    }

    .benefits-01 .benefit-title {
        font-size: 11px;
        line-height: 1.3;
        margin-top: 0.5rem;
    }

    .benefits-01 .benefit-icon {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .benefits-01 :is(.block-title, .block-text, .button-wrapper) {
        padding-left: 55px;
    }
}

@media (max-width: 991.98px) {
    .benefits-01 {
        padding: 30px 0 45px;
    }

    .benefits-01 .block-title {
        grid-row: 1;
    }

    .benefits-01 .grid-container {
        grid-template-columns: 1fr;
        column-gap: var(--bs-gutter-x);
    }

    .benefits-01 .benefit-cards {
        grid-row: auto;
    }

    .benefits-01 .benefit-card {
        aspect-ratio: 1;
    }

    .benefits-01 .benefit-title {
        font-size: 18px;
        margin-top: 1rem;
    }

    .benefits-01 .benefit-icon {
        width: 53px;
        height: 53px;
    }

    .benefits-01 .block-title {
        margin-bottom: 1.5rem;
    }

    .benefits-01 .block-text {
        margin-top: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .benefits-01 .benefit-title {
        font-size: 13px;
    }

    .benefits-01 .benefit-icon {
        width: 36px;
        height: 36px;
    }

    .benefits-01 .benefit-cards {
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .benefits-01 .benefit-cards {
        grid-template-rows: none;
        grid-auto-rows: 1fr;
        grid-template-columns: 1fr 1fr;
    }

    .benefits-01 .benefit-card {
        padding: 15px;
    }

    .benefits-01 .benefit-title {
        margin-top: .5rem;
    }

    .benefits-01 .btn {
        width: 100%;
    }
}

/* === benefits-01 === */



/* === testimonial-carousel === */

.testimonial-carousel {
    background-color: var(--testimonial-carousel-background);
    color: var(--testimonial-carousel-color);
    padding: 60px 0 60px;
    text-align: center;
}

.testimonial-carousel .testimonial-author {
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    color: var(--button-background);
}

.testimonial-carousel .item {
    padding: 0 150px;
    position: relative;
}

.testimonial-carousel .testimonial-text {
    margin-bottom: 40px;
    font-size: 30px;
    line-height: 38px;
    font-weight: 200;
}

.testimonial-carousel .title {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-carousel .quote-image {
    width: 65px;
    margin: 0 auto 35px;
    height: auto;
    display: block;
}

.testimonial-carousel .subtitle {
    margin-bottom: 24px;
}

.testimonial-carousel .testimonial-text p {
    margin-bottom: 26px;
}

.testimonial-carousel .testimonial-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 60px;
}

.testimonial-carousel .testimonial-arrow {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 30px;
    color: var(--testimonial-carousel-color);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-carousel .testimonial-arrow:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.testimonial-carousel .testimonial-arrow:focus {
    outline: 2px solid var(--testimonial-carousel-color);
    outline-offset: 2px;
}

.testimonial-carousel .slick-list {
    overflow-y: visible;
    overflow-x: clip;
}

@media(max-width: 1199.98px) {
    .testimonial-carousel .testimonial-text {
        font-size: 26px;
        line-height: 34px;
    }

    .testimonial-carousel .item {
        padding: 0 60px;
    }

    .testimonial-carousel {
        padding: 60px 0 30px;
    }

    .testimonial-carousel .testimonial-arrows {
        margin-top: 40px;
    }
}

@media (max-width: 991.98px) {
    .testimonial-carousel .item {
        padding: 0 36px;
    }

    .testimonial-carousel .testimonial-arrows {
        margin-top: 40px;
    }
}

@media(max-width: 575.98px) {
    .testimonial-carousel {
        padding: 30px 0 30px;
    }

    .testimonial-carousel .item {
        padding: 0;
    }

    .testimonial-carousel .title {
        padding: 0px 30px;
        margin-bottom: 20px;
    }

    .testimonial-carousel .testimonial-text {
        font-size: 22px;
        line-height: 30px;
    }
}

@media (max-height: 600px) {
    .testimonial-carousel {
        padding: 30px 0 30px;
    }
}

/* === testimonial-carousel === */



/* === gallery_grid === */

.gallery_grid {
    padding: 30px 0px;
    position: relative;
    overflow: hidden;
    --containerw: 1320px;
    --gap: 34px;
    --colnumber: 4;
    --slidew: calc((var(--containerw) - var(--gap) * (var(--colnumber) - 1)) / var(--colnumber));
}

.gallery_grid:has(+ .areas-covered-1) {
    margin-bottom: -185px;
}

.gallery_grid .block_title {
    margin-bottom: 30px;
}
/* the slides */
.gallery_grid .slick-slide {
    margin: 0 calc(var(--gap) / 2);
}

/* the parent */
.gallery_grid .slick-list {
    margin: 0 calc(-1 * calc(var(--gap) / 2));
}

.gallery_grid .slick-list {
    overflow: visible;
}

.gallery_grid .magic_gallery {
    position: relative;
}

.gallery_grid .item {
    overflow: hidden;
    border-radius: 10px;
}

.gallery_grid .item .magic_grid {
    display: grid;
    gap: var(--gap);
    height: 100%;
    width: 100%;
    grid-auto-rows: var(--slidew);
}

.gallery_grid .magic_gallery .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    min-height: 0px;
}

.gallery_grid .magic_gallery_mobile .item img {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery_grid .slick-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.gallery_grid .magic_gallery .slick-list {
    padding: 0px calc(var(--gap) / 2);
}

.gallery_grid .item,
.gallery_grid .slick-track > div,
.gallery_grid .slick-track > div > div {
    height: 100%;
    max-height: 100%;
}

.gallery_grid .item.grid-item-1,
.gallery_grid .item.grid-item-2,
.gallery_grid .item.grid-item-5 {
    max-width: var(--slidew);
}

.gallery_grid .item.grid-item-3,
.gallery_grid .item.grid-item-4 {
    max-width: calc(var(--slidew) * 2 + var(--gap));
}

.gallery_grid .item.grid-item-2 .magic_grid {
    grid-template-columns: 1fr;
}

.gallery_grid .item.grid-item-3 .magic_grid {
    grid-template-columns: 1fr 1fr;
}

.gallery_grid .item.grid-item-4 .magic_grid {
    grid-template-columns: 1fr;
}

.gallery_grid .item.grid-item-3 .magic_grid img:last-child {
    grid-column: span 2;
}

.gallery_grid .item.grid-item-4 .magic_grid img:nth-child(3) {
    grid-column: 1/3;
}

.gallery_grid .item.grid-item-2 .magic_grid img {
    grid-row: span 2;
}

@media(max-width: 1399px) {
    .gallery_grid {
        --containerw: 1140px;
    }
}

@media(max-width: 1199px) {
    .gallery_grid {
        --containerw: 960px;
    }

    .gallery_grid:has(+ .areas-covered-1) {
        margin-bottom: -145px;
    }
}

@media(max-width: 991px) {
    .gallery_grid {
        --containerw: 470px;
        --gap: 24px;
        --colnumber: 2;
        padding: 60px 0px 0px;
    }

    .gallery_grid:has(+ .areas-covered-1) {
        margin-bottom: -120px;
    }
}

@media(max-width: 767px) {
    .gallery_grid {
        --gap: 20px;
    }
}

@media(max-width: 575.98px) {
    .gallery_grid {
        --containerw: calc(100dvw - 60px);
    }

    .gallery_grid:has(+ .areas-covered-1) {
        margin-bottom: -90px;
    }
}

/* === gallery_grid === */



/* === areas-covered-1 === */

.areas-covered-1 {
    padding: 65px 0px;
    background-color: var(--areas-covered-1-background-color, #fff);
    overflow: hidden;
}

.gallery_grid + .areas-covered-1 {
    padding-top: 215px;
}

.areas-covered-1 .block-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--areas-covered-1-title-color, #141414);
}

.areas-covered-1 .country-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.areas-covered-1 .country-item {
    display: flex;
    align-items: center;
    color: #dc3545;
    font-weight: 500;
    gap: 5px;
}

.areas-covered-1 .country-item i {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.areas-covered-1 .country-item span {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.025em;
}

.areas-covered-1 .world-map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.areas-covered-1 .world-map {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 1199.98px) {
    .gallery_grid + .areas-covered-1 {
        padding-top: 185px;
    }
}

@media (max-width: 991.98px) {
    .gallery_grid + .areas-covered-1 {
        padding-top: 175px;
    }

    .areas-covered-1 .country-list {
        row-gap: 8px;
    }

    .areas-covered-1 .country-item span {
        font-size: 16px;
    }

    .areas-covered-1 .block-title {
        margin-bottom: 20px;
    }
}

@media (max-width: 767.98px) {
    .areas-covered-1 .world-map {
        transform: scale(1.2);
        padding-top: 30px;
    }
}

@media (max-width: 575.98px) {
    .gallery_grid + .areas-covered-1 {
        padding-top: 125px;
    }

    .areas-covered-1 .country-list {
        flex-direction: column;
        align-items: center;
        row-gap: 5px;
    }
}

/* === areas-covered-1 === */



/* === footer-06-form === */

.footer-06-form {
    padding: 45px 0px 45px;
    background-color: #131313;
    color: #fff;
}

.footer-06-form .form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--bs-gutter-x);
}

.footer-06-form .form-part {
    grid-area: 1/3/3/span 2;
    padding: 40px 60px;
    background: #1a1a1a;
    border-radius: 10px;
}

.footer-06-form .content-part {
    padding: 50px 40px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.footer-06-form .find-us-part.content-part {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-06-form .part-title {
    font-size: 36px;
    font-weight: var(--h2-fontweight);
    line-height: 1;
    letter-spacing: -0.025em;
    margin-top: 16px;
    margin-bottom: 16px;
}

.footer-06-form .address-line {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.025em;
    line-height: 28px;
}

.footer-06-form .address-line:not(:last-of-type)::after {
    content: ",";
}

.footer-06-form .block-text {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
}

.footer-06-form .icon {
    font-size: 30px;
}

.footer-06-form .form-part-title {
    display: none;
}

.footer-06-form .company-name {
    font-weight: 500;
}

.footer-06-form .social-links {
    display: grid;
    align-content: end;
    gap: 8px;
    grid-template-columns: repeat(auto-fill, 60px);
    grid-auto-rows: 60px;
}

.footer-06-form .social-links a {
    display: grid;
    place-content: center;
    background: var(--button-background);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
}

.footer-06-form .social-links a svg {
    height: 18px;
}

.footer-06-form .required {
    display: none;
}

.footer-06-form .col-form-label {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 300;
}

.footer-06-form .form .required-star {
    display: none;
}

.footer-06-form .form-control {
    border: none;
}

.footer-06-form form .checkbox + label::before {
    border: none;
}

.footer-06-form .form-grid {
    grid-template-rows: 485px;
}

.footer-06-form .form textarea.form-control {
    height: 225px;
}

.footer-06-form .form .tickbox {
    margin-bottom: 30px;
}

.footer-06-form textarea {
    margin-bottom: 30px;
}

.footer-06-form .form-group {
    margin-bottom: 20px;
}

.footer-06-form .form-group.bottom-box {
    margin-bottom: 0;
}

.footer-06-form .content-part:is(.call-us-part, .email-us-part) .part-title {
    margin-bottom: 2px;
}

.footer-06-form .content-part:is(.call-us-part, .email-us-part) a {
    font-weight: 500;
    font-size: 18px;
}

.footer-06-form .call-us-part a.call-link,
.footer-06-form .email-us-part a.email-link {
    color: var(--button-background);
    text-decoration: none;
    display: inline-block;
    margin-top: 8px;
    font-weight: 500;
    font-size: 18px;
}

.footer-06-form .email-us-part a.uk-customs {
    color: var(--button-background);
}

.footer-06-form .email-us-part a.eu-customs {
    color: var(--button-background);
}

.footer-06-form .email-us-part a.us-customs {
    color: var(--button-background);
}

.footer-06-form .email-us-part a.email-link i {
    margin-right: 5px;
}

@media (min-width: 576px) and (max-width: 768px) {
    .footer-06-form .form .col-12.col-md-6 {
        width: 50%;
    }
}

@media (max-width: 1199.98px) {
    .footer-06-form .block-text {
        font-size: 18px;
        line-height: 24px;
    }

    .footer-06-form .part-title {
        font-size: 30px;
    }

    .footer-06-form .form-part {
        padding: 40px 40px;
    }

    .footer-06-form .content-part {
        padding: 50px 30px;
    }

    .footer-06-form .call-us-part a.call-link,
    .footer-06-form .email-us-part a.email-link {
        font-size: 14px;
    }
}


@media (max-width: 991.98px) {
    .footer-06-form {
        padding: 45px 0px 30px;
    }

    .footer-06-form .form-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: unset;
    }

    .footer-06-form .form-part {
        grid-area: 3/span 2;
        padding: 38px 40px;
    }

    .footer-06-form .content-part {
        padding: 38px 40px;
    }

    .footer-06-form .text-part.content-part {
        display: none;
    }

    .footer-06-form .find-us-part.content-part {
        grid-row: span 2;
    }

    .footer-06-form .call-us-part a.call-link,
    .footer-06-form .email-us-part a.email-link {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .footer-06-form {
        padding: 45px 0px 20px;
    }

    .footer-06-form .form-part {
        padding: 30px;
    }

    .footer-06-form .content-part {
        padding: 38px 25px;
    }

    .footer-06-form .form-grid {
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .footer-06-form .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-06-form .find-us-part.content-part {
        grid-row: unset;
    }

    .footer-06-form .form-part {
        grid-area: unset;
    }

    .footer-06-form .part-title {
        font-size: 30px;
    }

    .footer-06-form .form-grid,
    .footer-06-form .find-us-part.content-part {
        gap: 15px;
    }

    .footer-06-form .form-part,
    .footer-06-form .content-part {
        padding: 30px;
    }

    .footer-06-form .content-part:is(.call-us-part, .email-us-part) .part-title {
        margin-bottom: 15px;
    }

    .footer-06-form .form button[type='submit'] {
        width: 100%;
    }
}

/* === footer-06-form === */



/* === footer-02 === */

.footer-02 {
    padding: 20px 0 80px;
    background-color: #131313;
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
}

.footer-02 *,
.footer-02 *:before,
.footer-02 *:after {
    color: #fff !important;
}

.footer-02 a {
    font-weight: 300;
    color: #fff !important;
    text-decoration: none !important;
}

.footer-02 a:hover {
    color: #fff !important;
    text-decoration: none !important;
}

.footer-02 .separator {
    font-style: normal;
    padding: 0 3px;
}

.footer-02 .footer-links {
    display: flex;
    justify-content: space-between;
}

.footer-02 .footer-link-column {
    flex: 1;
    display: grid;
    row-gap: 10px;
}

.footer-02 .footer-link a {
    color: #fff !important;
    font-size: 16px;
    letter-spacing: 0;
    text-decoration: none !important;
}

.footer-company-name,
.footer-design-info,
.sitemap-link {
    color: #fff !important;
}

@media (min-width: 576px) {
    .footer-02 {
        text-align: left;
    }
}

@media (max-width: 1199px) {
    .footer-02 .footer-link-column {
        row-gap: 13px;
    }

    .footer-02 {
        padding: 20px 0 40px;
    }
}

@media (max-width: 991px) {
    .footer-02 .footer-link-column:nth-child(n + 2) {
        display: none;
    }
}

@media (max-width: 575px) {
    .footer-02 {
        padding: 20px 0 50px;
    }

    .footer-02 .footer-links {
        margin-bottom: 40px;
    }
}

/* === footer-02 === */

