:root{
    --lightblue: #f7f4fd;
    --darkblue: #132086;
    --text: #14213d;
    --white: #ffffff;
    --green: #5ec430;
}
/** @Heading section */
.ss-heading {
    background-color: var(--lightblue);
    padding: 120px 80px;
}
.ss-heading-inner {
    display: flex;
    /* grid-template-columns: repeat(2, 1fr); */
    max-width: 1200px;
    margin: 0 auto;
}
.ss-heading-text-wrapper {
    max-width: 550px;
    flex-shrink: 0;
}
.ss-heading-text-wrapper h1{
    font-size: 30px;
    color: var(--darkblue);
    font-weight: bold;
    line-height: 1.3;
    margin: 0 0 52px;
}
.ss-heading-text-wrapper p{
    font-size: 18px;
    color: var(--text);
}
.ss-heading-text-wrapper img {
    margin-top: 24px;
}
.ss-heading-images-wrapper {
    display: flex;
    margin-left: auto;
    flex-shrink: 0;
}
.ss-heading-images-wrapper img {
    /* max-height: 420px; */
    margin: 0 auto;
}
/** Heading section end */
/** @Quote section */
.ss-quote {
    padding: 120px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/wp-content/themes/mosaic-sections-theme/success-stories/images/quote_bg.png');
}
.ss-quote-inner {
    max-width: 950px;
    margin: 0 auto;
    color: var(--darkblue);
    font-size: 30px;
    line-height: 1.3;
    text-align: center;
}
.ss-quote-inner p {
    font-weight: bold;
    padding-bottom: 0;
}
/** Quote section end */

/** @Table section */
.ss-table-inner {
    padding: 40px 0;
    max-width: 960px;
    margin: 0 auto;
}
/** Table section end */

/** @Video section */
.ss-video-inner {
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
}

/** Video section end */

/** @Contact section */
.ss-contact{
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('/wp-content/themes/mosaic-sections-theme/success-stories/images/contact_bg.png');
}
.ss-contact-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
.ss-contact-inner h2{
    font-size: 64px;
    line-height: 1.3;
    font-weight: bold;
    color: var(--darkblue);
    margin-bottom: 32px;
}
.ss-contact-inner p{
    font-size: 30px;
    line-height: 1.3;
    color: var(--darkblue);
}
.ss-contact-inner a{
    display: inline-block;
    font-size: 14px;
    line-height: 1.3;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--white);
    background-color: var(--green);
    padding: 16px 48px;
    border-radius: 24px;
    max-width: max-content;
}
.ss-contact-inner-buttons {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 48px;
}
/** Contact section end */
@media (max-width: 992px) {}
@media (max-width: 768px) {
    .ss-heading {padding: 60px 15px;}
    .ss-heading-inner {flex-direction: column-reverse;}
    .ss-heading-images-wrapper{margin-left: initial;}
    .ss-heading-text-wrapper{max-width: initial;}
    .ss-heading-images-wrapper img {max-height: initial;margin: 0 auto 32px;}
    .ss-heading-text-wrapper img{margin: 24px auto 0;display: block;}
    .ss-quote{padding: 60px 0 40px;}
    .ss-quote-inner{font-size: 24px; padding: 0 15px;}
    .ss-table-inner{padding: 40px 15px;}
    .ss-video-inner{height: auto;margin: 24px 0;padding: 0 15px;}
    .ss-contact-inner h2{font-size: 48px;}
}
@media (max-width: 640px) {
    .ss-heading-inner {grid-template-columns:repeat(1, 1fr)}
}
@media (max-width: 480px) {
    .ss-contact-inner h2{font-size: 32px;}
    .ss-contact-inner p{font-size: 24px;}
    .ss-contact-inner-buttons{flex-direction: column;padding: 0 15px;}
    .ss-contact-inner a{width: 100%;max-width: 100%;}
    .ss-heading-text-wrapper img{max-width: 120px;}
}