.call-to-action {
    padding: 62px 50px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: linear-gradient( 140deg, rgb(246,51,92) 0%, rgb(229,111,76) 100%);
    border-radius: 6px;

    .actions-content {

        @media(max-width: 767px) {
            text-align: center;
        }

        .action-title {
            font-size: 50px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 0;
            line-height: 65px;
        }

        p {
            color: #fff;
            margin: 0;
        }
    }

    .button-wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: center;

        .contact-info {
            display: flex;
            align-items: center;
            margin-right: 40px;

            i {
                font-size: 30px;
                color: #fff;
                margin-right: 17px;
            }

            .phone-title {
                font-size: 16px;
                font-weight: 400;
                color: #fff;
                margin: 0;
            }

            .phone {
                font-size: 20px;
                font-weight: 500;
                color: #fff;
                margin: 0;
            }
        }

        .tt-btn {
            padding: 8px 25px;
            box-shadow: 0px 20px 20px 0px rgba(84, 21, 0, 0.2);

            &:hover {
                box-shadow: none;
            }
        }

        @media(max-width: 767px) {
            text-align: center;
            margin-top: 30px;
            padding-left: 0;
        }
    }
}

