.contact-wrapper {
    display: flex;
    justify-content: space-between;
}

.contact-left-block {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 497px);
    max-width: 900px;

    & .inner-address-block {
        width: calc(100% - 475px);
        max-width: 320px;

        & .robot-cleaning-logo-wrap {
            margin-bottom: 26px;
        }

        & .contact-add-wrap {
            & .heading-26 {
                line-height: 1.4;
                letter-spacing: 0.52px;
                color: var(--black);
                margin-bottom: 25px;
            }

            & ul {
                margin-bottom: 0;

                & li {
                    margin-bottom: 30px;
                    padding-left: 0;
                    display: inline-flex;
                    gap: 16px;
                    line-height: normal;

                    &:after {
                        content: none;
                    }

                    &:last-child {
                        margin-bottom: 0;
                    }

                    & .add-icon {
                        width: 22px;
                    }

                    & .add-detail {
                        width: 251px;

                        & label {
                            font-size: 16px;
                            font-weight: 700;
                            line-height: 1.5;
                            font-family: var(--sitefonts);
                            letter-spacing: 0px;
                            color: var(--black);
                            display: block;
                        }

                        & address,
                        a {
                            font-size: 16px;
                            font-weight: 400;
                            line-height: 1.3;
                            font-family: var(--sitefonts);
                            letter-spacing: 0px;
                            color: var(--black);
                        }
                    }
                }

                &:has(+ *) {
                    margin-bottom: 30px;
                }
            }

            & .social-button .btn-border {
                font-weight: normal;
                font-size: 14px;
                line-height: 1.3;
                letter-spacing: 0.84px;
                padding: 13px 38px;
                min-height: 48px;

                & img {
                    margin-right: 10px;
                    filter: brightness(0) invert(0);
                }
            }
        }
    }

    & .inner-map-block {
        width: 475px;

        & iframe {
            width: 100%;
            height: 597px;
            border-radius: 10px;
        }
    }
}

.contact-right-block {
    width: 497px;

    & .contact-form {
        & .heading-40 {
            margin-bottom: 8px;
            line-height: 0.8;
            letter-spacing: 0.8px;
        }

        & p {
            font-size: clamp(16px, 16px + (18 - 16) * ((100vw - 375px) / (1920 - 375)), 18px);
            line-height: 1.3;
            letter-spacing: 0.36px;
        }
    }
}

.add-detail>a:hover {
    color: var(--blue) !important;
    text-decoration: underline;
}

.contact-sec .btn-theme:hover {
    background: #fff;
    color: var(--blue);
    border-color: var(--blue);
}

/* ------------------- Responsive Starts Here ------------------- */

@media (max-width: 1599.98px) {
    .contact-left-block {
        width: calc(100% - 420px);
        max-width: 800px;

        & .inner-address-block {
            width: calc(100% - 420px);
            max-width: 340px;
        }

        & .inner-map-block {
            width: 420px;
        }
    }

    .contact-right-block {
        width: 420px;
    }
}

@media (max-width: 1439.99px) {
    .contact-left-block {
        width: calc(100% - 480px);
        max-width: 580px;
        flex-wrap: wrap;

        & .inner-address-block {
            width: 100%;
            max-width: 100%;
            margin-bottom: 5px;

            & .robot-cleaning-logo-wrap {
                margin-bottom: 20px;

                & img {
                    max-width: 150px;
                    width: 100%;
                }
            }

            & .contact-add-wrap {
                & .heading-26 {
                    margin-bottom: 15px;
                }

                & ul {
                    display: flex;
                    flex-wrap: wrap;
                    column-gap: 20px;

                    &:has(+ *) {
                        margin-bottom: 20px;
                    }

                    & li {
                        margin-bottom: 15px;
                        gap: 12px;
                        width: calc(50% - 10px);

                        & .add-icon {
                            margin-top: 3px;
                        }
                    }
                }
            }
        }

        & .inner-map-block {
            width: 100%;

            & iframe {
                height: 220px;
            }
        }
    }

    .contact-right-block {
        width: 480px;
    }
}

@media (max-width: 1199.99px) {
    .contact-left-block {
        width: calc(100% - 460px);
        max-width: 430px;
        flex-wrap: wrap;
    }

    .contact-right-block {
        width: 460px;
    }
}

@media (max-width: 991.99px) {
    .contact-wrapper {
        flex-wrap: wrap;
        gap: 30px;
    }

    .contact-left-block {
        width: 100%;
        max-width: 100%;

        & .inner-address-block {
            & .robot-cleaning-logo-wrap {
                margin-bottom: 15px;
            }
        }
    }

    .contact-right-block {
        width: 100%;
    }

    .contact-right-block {
        & .contact-form {
            & p {
                margin-bottom: 15px;
            }
        }
    }
}

@media (max-width: 575.99px) {
    .contact-left-block {
        & .inner-address-block {
            margin-bottom: 30px;

            & .robot-cleaning-logo-wrap {
                margin-bottom: 10px;

                & img {
                    max-width: 120px;
                }
            }

            & .contact-add-wrap {
                & .heading-26 {
                    margin-bottom: 10px;
                    line-height: 1.2;
                }

                & ul {
                    column-gap: 16px;

                    & li {
                        margin-bottom: 12px;
                        gap: 8px;
                        width: 100%;
                    }
                }
            }
        }
    }
}