main {
    background-repeat: no-repeat;
    background-image: url("../media/patterns/intro-right.svg");
    background-position: calc((60 * 100vw) / 100) calc((4 * 100vw) / 100);
    background-size: calc((16.1 * 100vw) / 100) calc((16.62 * 100vw) / 100);
    section.contact-us-page {
        position: relative;
        font-family: var(--neo-font);
        bottom: calc((-8.1 * 100vw) / 100);
        padding-bottom: calc((8.1 * 100vw) / 100);
        .layer {
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            object-position: center;
        }
        .container {
            position: relative;
            > img {
                position: absolute;
                left: calc((-3 * 100vw) / 100);
                top: calc((-2.75 * 100vw) / 100);
                width: calc((3.4 * 100vw) / 100);
            }
            .contact-us-info {
                position: relative;
                margin-top: calc((5 * 100vw) / 100);
                h3 {
                    font-weight: 700;
                    color: var(--primary-color);
                    font-size: calc((2.3 * 100vw) / 100);
                    margin-bottom: calc((1.04 * 100vw) / 100);
                }
                p {
                    color: #333;
                    font-weight: 500;
                    margin-bottom: unset;
                    font-size: calc((1.25 * 100vw) / 100);
                }
                > img {
                    z-index: -1;
                    position: relative;
                    margin-top: calc((.8 * 100vw) / 100);
                    margin-inline-start: calc((4.5 * 100vw) / 100);
                }
                a {
                    display: block;
                    margin-top: calc((.65 * 100vw) / 100);
                    margin-inline-start: calc((5.1 * 100vw) / 100);
                    img {
                        width: calc((1.61 * 100vw) / 100);
                    }
                }
            }
            form {
                overflow: hidden;
                background-color: #FFF;
                width: calc((43.33 * 100vw) / 100);
                border-radius: calc((.52 * 100vw) / 100);
                box-shadow: 10px 10px 0px 0px rgba(0, 0, 0, 0.10);
                .form-header {
                    background-color: var(--secondary-color);
                    padding: calc((.99 * 100vw) / 100) calc((2.97 * 100vw) / 100);
                    img {
                        width: calc((3.65 * 100vw) / 100);
                        margin-inline-end: calc((1.1 * 100vw) / 100);
                    }
                    h5 {
                        color: #FFF;
                        font-weight: 500;
                        margin-bottom: unset;
                        font-size: calc((1.25 * 100vw) / 100);
                    }
                }
                .row {
                    padding: calc((1.04 * 100vw) / 100);
                    .form-group {
                        margin-bottom: calc((1.25 * 100vw) / 100);
                        label {
                            display: flex;
                            color: #161616;
                            font-weight: 700;
                            align-items: center;
                            font-size: calc((.73 * 100vw) / 100);
                            margin-bottom: calc((.42 * 100vw) / 100);
                            span:first-of-type {
                                color: #B42318;
                                font-weight: 600;
                                font-family: var(--ibm-font);
                                margin-inline-end: calc((.21 * 100vw) / 100);
                            }
                        }
                        .select-box input,
                        input,
                        textarea {
                            width: 100%;
                            direction: rtl;
                            background-color: #F3F4F6;
                            font-size: calc((.73 * 100vw) / 100);
                            border-radius: calc((.21 * 100vw) / 100);
                            padding: calc((.42 * 100vw) / 100) calc((.83 * 100vw) / 100);
                        }
                        .select-box {
                            position: relative;
                            .selected-option {
                                overflow: hidden;
                                border-radius: .5rem;
                                background-color: #eee;
                                display: flex;
                                align-items: center;
                                justify-content: space-between;
                                div {
                                    position: relative;
                                    text-align: center;
                                    cursor: pointer;
                                    padding-inline: 12px;
                                    strong {
                                        margin-inline-start: 5px;
                                    }
                                    &::after{
                                        position: absolute;
                                        content: "";
                                        right: .8rem;
                                        top: 50%;
                                        transform: translateY(-50%) rotate(45deg);
                                        width: .8rem;
                                        height: .8rem;
                                        border-right: .12rem solid var(--primary);
                                        border-bottom: .12rem solid var(--primary);
                                        transition: .2s;
                                    }
                                    &.active::after{
                                        transform: translateY(-50%) rotate(225deg);
                                    }
                                }
                            }
                        }
                        .select-box .options {
                            position: absolute;
                            top: 4rem;
                            z-index: 1;
                            width: 100%;
                            background-color: #fff;
                            border-radius: .5rem;
                            display: none;
                        }
                        .select-box .options.active {
                            display: block;
                        }
                        .select-box .options::before {
                            position: absolute;
                            content: "";
                            left: 1rem;
                            top: -1.2rem;
                            width: 0;
                            height: 0;
                            border: .6rem solid transparent;
                            border-bottom-color: var(--primary);
                        }
                        input.search-box {
                            background-color: var(--primary);
                            color: #fff;
                            border-radius: .5rem .5rem 0 0;
                            padding: 1.4rem 1rem;
                        }
                        .select-box ol {
                            list-style: none;
                            max-height: 14rem;
                            overflow: overlay;
                            padding-inline-start: 1rem;
                            &::-webkit-scrollbar {
                                width: 0.6rem;
                            }
                            &::-webkit-scrollbar-thumb {
                                width: 0.4rem;
                                height: 3rem;
                                background-color: #ccc;
                                border-radius: .4rem;
                            }
                            li {
                                padding: 1rem;
                                display: flex;
                                justify-content: space-between;
                                cursor: pointer;
                                &.hide {
                                    display: none;
                                }
                                &:not(:last-child) {
                                    border-bottom: .1rem solid #eee;
                                }
                                &:hover {
                                    background-color: lightcyan;
                                }
                                .country-name {
                                    margin-left: .4rem;
                                }
                            }
                        }
                        .error-message {
                            height: 22px;
                            margin-top: 4px;
                            color: #B42318;
                            margin-bottom: unset;
                            font-size: calc((.73 * 100vw) / 100);
                        }
                    }
                    button {
                        width: 100%;
                        color: #FFF;
                        font-weight: 700;
                        font-family: var(--tajawal-font);
                        padding: calc((.52 * 100vw) / 100);
                        font-size: calc((1.25 * 100vw) / 100);
                        border-radius: calc((.52 * 100vw) / 100);
                        background-color: var(--secondary-color);
                    }
                }
            }
            .your-journey {
                color: #fff;
                margin-top: calc(1.6 * 100vw / 100);
                h4 {
                    font-weight: 500;
                    position: relative;
                    font-size: calc(2.1 * 100vw / 100);
                    margin-bottom: calc(2.1 * 100vw / 100);
                    padding-bottom: calc(.52 * 100vw / 100);
                    &::before,
                    &::after {
                        right: 0;
                        top: 100%;
                        content: "";
                        position: absolute;
                        height: calc(.2 * 100vw / 100);
                        border-radius: calc(.42 * 100vw / 100);
                    }
                    &::before {
                        background-color: #D9D9D9;
                        width: calc(8.65 * 100vw / 100);
                    }
                    &::after {
                        width: calc(5.43 * 100vw / 100);
                        background-color: var(--secondary-color);
                    }
                }
                h5 {
                    font-weight: 500;
                    font-size: calc(1.5 * 100vw / 100);
                    margin-bottom: calc(4.1 * 100vw / 100);
                }
                ul li {
                    position: relative;
                    &:nth-of-type(2) img {
                        transform: skewY(354deg);
                    }
                    img {
                        right: 80%;
                        position: absolute;
                        top: calc(2.3 * 100vw / 100);
                        height: calc((1 * 100vw) / 100);
                        width: calc((13.6 * 100vw) / 100);
                    }
                    span {
                        display: flex;
                        font-weight: 500;
                        line-height: 190%;
                        align-items: center;
                        display: inline-block;
                        justify-content: center;
                        width: calc(4.6 * 100vw / 100);
                        height: calc(4.6 * 100vw / 100);
                        font-size: calc(2.32 * 100vw / 100);
                        background-color: var(--primary-color);
                        margin-bottom: calc(1.15 * 100vw / 100);
                        border-radius: calc(1.15 * 100vw / 100);
                    }
                    h6 {
                        font-weight: 500;
                        font-size: calc(1.25 * 100vw / 100);
                        margin-bottom: calc(.3 * 100vw / 100);
                    }
                    p {
                        margin-inline: auto;
                        margin-bottom: unset;
                        width: calc(14.7 * 100vw / 100);
                        font-size: calc(.94 * 100vw / 100);
                    }
                }
            }
        }
        &.en-mode {
            .layer {
                transform: scaleX(-1);
            }
            .container {
                > img {
                    left: unset;
                    top: calc((-3 * 100vw) / 100);
                    right: calc((-2 * 100vw) / 100);
                }
                form .row .form-group {
                    .select-box input,
                    input,
                    textarea {
                        direction: ltr;
                    }
                }
                .your-journey {
                    h4::after,
                    h4::before {
                        left: 0;
                        right: unset;
                    }
                    ul li img {
                        left: 80%;
                        right: unset;
                    }
                }
            }
        }
        @media screen and (max-width: 991px) {
            & {
                bottom: unset;
                padding-bottom: 100px;
                .container {
                    > img {
                        display: none;
                    }
                    .contact-us-info {
                        margin-top: 24px;
                        h3 {
                            font-size: 18px;
                            margin-bottom: 8px;
                        }
                        p {
                            font-size: 16px;
                        }
                        > img {
                            display: none;
                        }
                        a {
                            display: none;
                        }
                    }
                    form {
                        width: 100%;
                        margin-top: 24px;
                        border-radius: 12px;
                        .form-header {
                            padding: 12px 20px;
                            img {
                                width: 32px;
                                margin-inline-end: 10px;
                            }
                            h5 {
                                font-size: 16px;
                            }
                        }
                        .row {
                            padding: 20px;
                            .form-group {
                                margin-bottom: 20px;
                                label {
                                    font-size: 14px;
                                    span:first-of-type {
                                        margin-inline-end: 10px;
                                    }
                                }
                                .select-box input,
                                input,
                                textarea {
                                    font-size: 14px;
                                    padding: 12px 20px;
                                    border-radius: 12px;
                                }
                                .error-message {
                                    height: unset;
                                    font-size: 12px;
                                }
                            }
                            button {
                                padding: 12px;
                                font-size: 16px;
                                border-radius: 12px;
                            }
                        }
                    }
                    .your-journey {
                        margin-top: 24px;
                        h4 {
                            font-size: 20px;
                            margin-bottom: 16px;
                            padding-bottom: 6px;
                            &::before,
                            &::after {
                                height: 2px;
                                border-radius: 100px;
                            }
                            &::before {
                                width: 65px;
                            }
                            &::after {
                                width: 30px;
                            }
                        }
                        h5 {
                            font-size: 16px;
                            margin-bottom: 16px;
                        }
                        ul li {
                            &:not(:first-of-type) {
                                margin-top: 16px;
                            }
                            img {
                                display: none;
                            }
                            span {
                                display: flex;
                                align-items: center;
                                justify-content: center;
                                margin: auto;
                                width: 50px;
                                height: 50px;
                                font-size: 18px;
                                margin-bottom: 8px;
                                line-height: unset;
                                border-radius: 8px;
                            }
                            h6 {
                                font-size: 16px;
                                margin-bottom: 8px;
                            }
                            p {
                                width: unset;
                                font-size: 15px;
                            }
                        }
                    }
                }
            }
        }
    }
}