/* Banner Section */
.bannerSec {
    width: 100%;
    float: left;
    padding: 131px 0 30px;
    background:
        radial-gradient(circle at 10% 28%, rgba(167, 234, 242, 0.55), transparent 28%),
        radial-gradient(circle at 88% 34%, rgba(255, 205, 116, 0.34), transparent 30%),
        linear-gradient(145deg, #f4fbfc 0%, #ffffff 50%, #fff8ec 100%);
}

.bannerSec::before {
    display: none;
}

.bannerSec .container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 184px;
}

.bannerSec .bannerTextWrap {
    width: 100%;
}

.bannerSec .leftCol {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    gap: 12px;
}

.bannerSec .leftCol h1 {
    max-width: 830px;
    color: #101820;
    font-size: 50px;
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 300;
    margin: 0;
}

.bannerSec .leftCol h1 strong {
    font-weight: 700;
}

.bannerSec .leftCol p {
    max-width: 830px;
    color: #23414f;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 auto;
}

.middle {
    width: 100%;
    float: left;
}

@media (prefers-reduced-motion: no-preference) {
    body.js-reveal-ready [data-reveal],
    body.js-reveal-ready [data-reveal-group] > * {
        opacity: 0;
        transform: translate3d(0, 22px, 0);
        transition:
            opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
            transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: var(--reveal-delay, 0s);
        will-change: opacity, transform;
    }

    body.js-reveal-ready [data-reveal="soft"] {
        transform: translate3d(0, 16px, 0);
    }

    body.js-reveal-ready .is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    body.js-reveal-ready [data-reveal-load] > *,
    body.js-reveal-ready [data-reveal-load].is-visible > * {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    body.js-reveal-ready.is-page-ready [data-reveal-load] > * {
        animation: gettingStartedReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        animation-delay: var(--reveal-delay, 0s);
    }
}

@keyframes gettingStartedReveal {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal],
    [data-reveal-group] > *,
    [data-reveal-load] > * {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}

.servicesSec::before,
.servicesSec .servicesBox .services-info h4::before,
.startedSec::before,
.startedSec .leftCol .topImg::before,
.startedSec .leftCol .topImg::after {
    display: none;
}

.servicesSec .servicesBox .services-info h4,
.startedSec .rightCol h2 {
    padding-bottom: 0;
}

/* Services Section */
.servicesSec {
    position: relative;
    width: 100%;
    float: left;
    padding: 115px 0 55px;
}

.servicesSec::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 760px;
    content: '';
    background-image: url(../images/services-banner-design.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

.servicesSec h2 {
    font-size: 50px;
    color: #000000;
    font-weight: 300;
    font-family: "Roboto";
    text-align: center;
    margin-bottom: 20px;
}

.servicesSec h2 strong {
    font-weight: 700;
}

.servicesSec p.info {
    font-size: 18px;
    line-height: 32px;
    color: #000000;
    font-weight: 300;
    text-align: center;
    margin-bottom: 50px;
}

.servicesSec .servicesBox {
    width: 100%;
    height: calc(100% - 30px);
    float: left;
    padding: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(24, 40, 72, 0.08);
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(61, 62, 63, 0.12);
    background-color: #ffffff;
}

.servicesSec .servicesBox .services-img {
    width: 100%;
    float: left;
    margin-bottom: 24px;
}

.servicesSec .servicesBox .services-img .servicesValueImg {
    width: 100%;
    float: left;
    border-radius: 18px;
    overflow: hidden;
}

.servicesSec .servicesBox .services-img .servicesValueImg img {
    width: 100%;
    height: auto;
}

.servicesSec .servicesBox .services-info {
    width: 100%;
    float: left;
    padding: 8px 12px 14px;
}

.servicesSec .servicesBox .services-info h4 {
    position: relative;
    font-size: 25px;
    letter-spacing: 1px;
    line-height: 30px;
    color: rgb(0 0 0 / 90%);
    font-weight: 700;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.servicesSec .servicesBox .services-info h4::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #f47a40;
}

.servicesSec .servicesBox .services-info p {
    font-size: 16px;
    line-height: 30px;
    color: #000000;
    font-weight: 300;
}

/* Started Section */
.startedSec {
    position: relative;
    width: 100%;
    float: left;
    padding: 110px 0;
    background-color: #fafafa;
}

.startedSec::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 215px;
    height: 554px;
    content: '';
    background-image: url(../images/started-design.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
}

.startedSec .leftCol {
    width: 100%;
    float: left;
    padding-right: 20px;
}

.startedSec .leftCol .topImg {
    position: relative;
    max-width: 470px;
    width: 100%;
    float: left;
    margin: 30px;
}

.startedSec .leftCol .topImg::before {
    content: '';
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 239px;
    height: 305px;
    background-color: #007ba9;
}

.startedSec .leftCol .topImg::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 217px;
    height: 197px;
    background-image: url(../images/started-img-design.png);
    background-repeat: no-repeat;
}

.startedSec .leftCol .topImg img {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 1;
    border-radius: 11px;
}

.startedSec .leftCol .bottomImg {
    position: relative;
    max-width: 460px;
    width: 100%;
    float: right;
    margin-top: -190px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.19);
    border-radius: 11px;
    z-index: 1;
    overflow: hidden;
}

.startedSec .leftCol .bottomImg img {
    width: 100%;
    height: auto;
}

.startedSec .rightCol {
    width: 100%;
    float: left;
    padding-left: 40px;
}

.startedSec .rightCol h2 {
    font-size: 45px;
    letter-spacing: 1px;
    line-height: 65px;
    color: #000000;
    font-weight: 300;
    padding-bottom: 20px;
}

.startedSec .rightCol h2 strong {
    font-weight: 700;
}

.startedSec .rightCol p {
    font-size: 18px;
    line-height: 38px;
    color: #000000;
    font-weight: 300;
}



@media only screen and (min-width: 1601px) and (max-width: 2500px) {}

@media only screen and (min-width: 1501px) and (max-width: 1600px) {}

@media only screen and (min-width: 1441px) and (max-width: 1500px) {}

@media only screen and (min-width: 1367px) and (max-width: 1440px) {}

@media only screen and (min-width: 1200px) and (max-width: 1366px) {

    /* Banner Section */
    .bannerSec {
        padding: 131px 0 30px;
    }

    .bannerSec .leftCol h1 {
        font-size: 50px;
    }

    /* Services Section */
    .servicesSec {
        padding: 90px 0 50px;
    }

    .servicesSec h2 {
        font-size: 45px;
        margin-bottom: 50px;
    }

    /* Started Section */
    .startedSec {
        padding: 90px 0;
    }

    .startedSec::before {
        display: none;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    /* Banner Section */
    .bannerSec {
        padding: 114px 0 30px;
    }

    .bannerSec .leftCol h1 {
        font-size: 42px;
    }

    .bannerSec .leftCol p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Services Section */
    .servicesSec {
        padding: 60px 0 40px;
    }

    .servicesSec h2 {
        font-size: 38px;
        line-height: 50px;
    }

    .servicesSec p.info br {
        display: none;
    }

    .servicesSec .servicesBox {
        margin-bottom: 50px;
        min-height: 790px;
    }

    /* Started Section */
    .startedSec {
        padding: 70px 0;
    }

    .startedSec::before {
        display: none;
    }

    .startedSec .leftCol .topImg {
        max-width: 385px;
    }

    .startedSec .leftCol .topImg::before {
        width: 200px;
        height: 250px;
    }

    .startedSec .leftCol .topImg::after {
        width: 180px;
        height: 180px;
    }

    .startedSec .leftCol .bottomImg {
        max-width: 280px;
        margin-top: -120px;
    }

    .startedSec .rightCol {
        padding-left: 20px;
    }

    .startedSec .rightCol h2 {
        font-size: 38px;
        line-height: 50px;
    }

    .startedSec .rightCol p {
        line-height: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {

    /* Banner Section */
    .bannerSec {
        padding: 114px 0 30px;
    }

    .bannerSec .leftCol h1 {
        font-size: 42px;
    }

    .bannerSec .leftCol p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* Services Section */
    .servicesSec {
        padding: 50px 0 30px;
    }

    .servicesSec h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .servicesSec p.info {
        margin-bottom: 30px;
    }

    .servicesSec p.info br {
        display: none;
    }

    .servicesSec .servicesBox {
        margin-bottom: 40px;
    }

    .servicesSec .servicesBox .servicesInfo ul li {
        font-size: 16px;
    }

    /* Started Section */
    .startedSec {
        padding: 50px 0;
    }

    .startedSec::before {
        display: none;
    }

    .startedSec .leftCol {
        padding-right: 0;
    }

    .startedSec .leftCol .topImg {
        max-width: 295px;
    }

    .startedSec .leftCol .topImg::before {
        width: 220px;
        height: 190px;
    }

    .startedSec .leftCol .topImg::after {
        width: 160px;
        height: 170px;
    }

    .startedSec .leftCol .bottomImg {
        max-width: 220px;
        margin-top: -90px;
    }

    .startedSec .rightCol {
        padding-left: 0;
    }

    .startedSec .rightCol h2 {
        font-size: 35px;
        line-height: 45px;
    }

    .startedSec .rightCol p {
        line-height: 30px;
    }
}

@media only screen and (max-width: 767px) {

    /* Banner Section  */
    .bannerSec {
        padding: 101px 0 27px;
    }

    .bannerSec .container {
        min-height: 0;
    }

    .bannerSec .leftCol h1 {
        font-size: 34px;
    }

    .bannerSec .leftCol p {
        font-size: 13px;
        line-height: 1.5;
        margin-top: 0;
    }

    /* Services Section */
    .servicesSec {
        padding: 40px 0 20px;
    }

    .servicesSec h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 15px;
    }

    .servicesSec p.info {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 30px;
    }

    .servicesSec p.info br {
        display: none;
    }

    .servicesSec .servicesBox {
        min-height: auto;
        margin-bottom: 30px;
    }

    .servicesSec .servicesBox .servicesImgBox .servicesIcon {
        width: 90px;
        height: 90px;
        padding: 15px;
        bottom: -45px;
    }

    .servicesSec .servicesBox .servicesImgBox .servicesIcon img {
        width: 100%;
    }

    .servicesSec .servicesBox .servicesInfo {
        padding: 30px 10px 20px;
    }

    .servicesSec .servicesBox .servicesInfo h3 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 15px;
    }

    .servicesSec .servicesBox .servicesInfo p {
        line-height: 26px;
    }

    /* Started Section */
    .startedSec {
        padding: 40px 0;
    }

    .startedSec::before {
        display: none;
    }

    .startedSec .leftCol {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .startedSec .leftCol .topImg {
        max-width: 270px;
    }

    .startedSec .leftCol .topImg::before {
        width: 209px;
        height: 190px;
    }

    .startedSec .leftCol .topImg::after {
        width: 150px;
        height: 180px;
    }

    .startedSec .leftCol .bottomImg {
        max-width: 180px;
        margin-top: -100px;
    }

    .startedSec .rightCol {
        padding-left: 0;
    }

    .startedSec .rightCol h2 {
        font-size: 30px;
        line-height: 40px;
        padding-bottom: 15px;
    }

    .startedSec .rightCol p {
        font-size: 16px;
        line-height: 28px;
    }
}

@media only screen and (min-width: 480px) and (max-width: 767px) {}
