.contact-us {
    padding: 120px 0;
    display: flex;
    gap: 125px;
    .contact-us-left {
        width: 455px;
        h3 {
            font-family: inter;
            font-weight: 600;
            font-size: 56px;
            line-height: 88px;
            color: #FFFFFF;
        }
        p {
            font-family: IBM Plex Sans;
            font-weight: 400;
            font-size: 24px;
            line-height: 100%;
            color: #C3C3C3;
            margin-bottom: 40px;
        }
        .contact-us-form {
            display: flex;
            flex-direction: column;
            gap: 40px;
            .contact-input-group {
                height: 34px;
                gap: 4px;
                .input-field {
                    width: 12px;
                    height: 12px;
                    border-radius: 2px;
                }
                .name-input {
                    background-color: #FFC857;
                }
                .email-input {
                    background-color: #00DDFF;
                }
                .number-input {
                    background-color: #FF1C58;
                }
                .text-input {
                    background-color: #0048B7;
                }
            }
        }
        input {
            width: 100%;
            font-family: IBM Plex Sans;
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            color: #C3C3C3;
            background: none;
            border: none;
            -webkit-transition: 0.5s;
            transition: 0.5s;
            outline: none;
            &:focus {
                border: none;
            }
        }
        button {
            width: 224px;
            height: 48px;
            border-radius: 32px;
            border: none;
            background: #F75891;
            font-family: IBM Plex Sans;
            font-weight: 700;
            font-size: 20px;
            line-height: 100%;
            text-align: center;
            color: #FFFFFF;
        }
    }
}
.demo-slide {
    min-width: none;
    max-width: none;
    width: 552px;
    height: 552px;
    border-radius: 0;
    margin: 0;
    background: none;
    padding: 0;
}
.contact-us-right {
    width: 552px;
    height: 552px;
    .background-img {
        width: 100%;
        height: 100%;
        padding: 25px 45px;
        background-position: right bottom;
        background-repeat: no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        p {
        width: 172px;
        font-family: IBM Plex Sans;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        color: #FFFFFF;
        margin-bottom: 18px;
        text-align: left;
    }
    h6 {
        width: 233px;
        font-family: inter;
        font-weight: 600;
        font-size: 24px;
        line-height: 28px;
        color: #FFFFFF;
        text-align: left;
    }
    }
}
.telephone-icon {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}
.waves-image {
    position: relative;
    img {
        position: absolute;
        left: -23px;
    }
}

.custom-dots {
  position: absolute;
  bottom: -60px;
  transform: translateX(-50%);
}
.custom-dots button {
  background-color: #fff !important;
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  margin: 0 5px;
  border: none !important;
  opacity: 0.5;
}
.custom-dots button.active {
  background-color: #FF1C58 !important;
  opacity: 1;
}

@media (max-width: 900px) {
    .contact-us {
        flex-direction: column;
        padding: 60px 20px;
        .contact-us-left {
            width: unset;
            h3 {
                line-height: 100%;
                text-align: left;
            }
        }
        .slide {
            min-width: 100%;
        }
        .demo-slide {
            min-width: none;
            max-width: none;
            width: 100%;
            height: 552px;
            border-radius: 0;
            margin: 0;
            background: none;
            padding: 0;
        }
        .contact-us-right {
            width: 100%;
            height: 552px;
            .background-img {
                padding: 25px;
            }
        }
    }
    .waves-image {
        img {
            left: unset;
        }
    }
}