.call-to-action {
    background-image:
        linear-gradient(rgba(60, 57, 80, 0.8), rgba(60, 57, 80, 0.8)),
        url(../images/call-to-action/bg-image/call-to-action-bg-img.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative !important;
    height: 100%;
}

.call-to-action::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    aspect-ratio: 1;
    background-image: url("../images/call-to-action/bg-image/small-frame.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
    z-index: 999;
    transform: translate(0, 0) !important;
}

.call-to-action::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 50%;
    aspect-ratio: 1;
    background-image: url("../images/call-to-action/bg-image/right-frame.png");
    background-repeat: no-repeat;
    background-position: left center;
    background-size: contain;
}

.call-content-wrapper h2 {
    font-size: 4.5em;
    color: var(--w-c);
}

.call-content-wrapper h3 {
    font-size: 3.8em;
    color: var(--w-c);
}

.call-content-wrapper p {
    color: var(--w-c);
}

.call-content-wrapper .know-more-btn {
    position: relative;
    padding: 5px 8px;
    width: max-content;
    border-radius: 20px;
    background: linear-gradient(to right, #5CA446, #83B441);
    z-index: 1;
    color: #fff;
    overflow: hidden;
}

.call-content-wrapper .know-more-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 20px;
    background: linear-gradient(to right, #83B441, #5CA446);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
}

.call-content-wrapper .know-more-btn::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    left: -19px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.call-content-wrapper .know-more-btn h6 {
    font-size: 1.1em;
    letter-spacing: .1em;
}

.arrow-icons {
    background-color: var(--w-c);
    border-radius: 50%;
    width: 22px;
    height: 22px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.29);
}

.call-content-wrapper .arrow-icons .mask-image {
    transform: rotate(-360deg);
    transition: 0.3s ease;
}

.form-box-section {
    width: 100%;
    position: relative;
    height: 100%;
}

.form-box-sub-section {
    position: absolute;
    aspect-ratio: .8;
    width: 91%;
    background-color: #fff;
    top: 17%;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(106, 165, 67, 0.386);
}

.form-content-section p {
    font-size: .9em;
    font-weight: 500;
    color: rgba(34, 34, 34, 0.62);
}

.form-control {
    border: 2px solid rgba(34, 34, 34, 0.074);
    box-shadow: 0 0 10px rgba(106, 165, 67, 0.386);
}

.tele-chatbox-body input::placeholder,
.tele-chatbox-body textarea::placeholder {
    color: rgba(34, 34, 34, 0.446);
    letter-spacing: .1em;
}

#sendBtn {
    background-color: #6BA543;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 21px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

#sendBtn span {
    font-weight: 600;
    letter-spacing: .1em;
}

.call-to-action {
    position: relative;
    height: 100%;
}

@media (min-width: 0px) and (max-width: 786px) {
    .form-box-sub-section {
        position: relative;
        aspect-ratio: .8;
        width: 100%;
        background-color: #fff;
        height: max-content !important;
    }
}

@media (min-width: 0px) and (max-width: 572px) {
    .call-content-wrapper h2 {
        font-size: 2.1em;
        color: var(--w-c);
    }

    .call-content-wrapper h3 {
        font-size: 1.8em;
        color: var(--w-c);
    }

    .call-to-action::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 20% !important;
        aspect-ratio: 1;
        background-image: url("../images/call-to-action/bg-image/small-frame.png");
        background-repeat: no-repeat;
        background-position: left center;
        background-size: contain;
        transform: translate(0, 0) !important;
    }

    .call-to-action::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        height: 20%;
        aspect-ratio: 1;
        background-image: url("../images/call-to-action/bg-image/right-frame.png");
        background-repeat: no-repeat;
        background-position: left center;
        background-size: contain;
    }
}


@media (min-width: 573px) and (max-width: 768px) {
    .call-content-wrapper h2 {
        font-size: 2.4em;
        color: var(--w-c);
    }

    .call-content-wrapper h3 {
        font-size: 2em;
        color: var(--w-c);
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .call-content-wrapper h2 {
        font-size: 2.4em;
        color: var(--w-c);
    }

    .call-content-wrapper h3 {
        font-size: 2.1em;
        color: var(--w-c);
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .call-content-wrapper h2 {
        font-size: 2.8em;
        color: var(--w-c);
    }

    .call-content-wrapper h3 {
        font-size: 2.4em;
        color: var(--w-c);
    }
}


@media (min-width: 484px) and (max-width: 572px) {
    .form-box-sub-section {
        position: relative;
        aspect-ratio: .8;
        width: 80%;
        background-color: #fff;
        height: max-content !important;
    }
}