/*
Allocation & Replenishment - SG
*/

.d-none {
    display: none !important;
}
@media (min-width: 992px) {
    .d-md-block {
        display: block !important;
    }
    
    .d-md-flex {
        display: flex !important;
    }
    
    .d-md-none {
        display: none !important;
    }
    
    .d-md-block {
        display: block !important;
    }
    
    .d-md-grid {
        display: grid !important;
    }
}


/*Top bar*/
.notification-top-bar {
    position: relative;
    color: white;
    display: flex;
    padding: 15px 50px !important;
    text-align: center !important;
    justify-content: center !important;
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    transition: all 0.5s;
    visibility: hidden;
    opacity: 0;
}

.notification-top-bar::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(267.29deg, rgba(9, 149, 227, 1) 0%, rgba(9, 107, 225, 1) 100%);
    opacity: .8;
    transition: all 0.3s;
    z-index: 1;
    pointer-events: none;
}

.notification-top-bar:hover::before {
    opacity: 1;
}

.notification-top-bar.active {
    visibility: visible;
    opacity: 1;
    top: 100px;
}

.notification-top-bar p,
.notification-top-bar a {
    color: white;
}

.notification-top-bar .inner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    z-index: 2;
}

.notification-top-bar .text-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}


.notification-top-bar a {
    text-transform: uppercase;
    color: white;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.notification-top-bar img {
    width: auto !important;
}

.notification-top-bar a img {
    position: relative;
    transition: all 0.3s;
    margin-left: 10px;
    left: 0;
}

.notification-top-bar a:hover img {
    left: 12px;
}

.notification-top-bar .close-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 26px;
    margin-top: auto;
    margin-bottom: auto;
    background: rgba(255, 255, 255, .3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
}

.top-bar-wrapper .close-wrapper:hover {
    opacity: .8;
}

body.top-bar-active .section-hero {
    padding-top: 240px;
}

.section-hero {
    transition: padding-top 0.5s ease-in-out !important;
}

@media (max-width: 991px) {
    body.top-bar-active .section-hero {
        padding-top: 210px;
    }
    
    .notification-top-bar p,
    .notification-top-bar a {
        font-size: 15px;
    }
    
    .notification-top-bar {
        padding: 15px 17px !important;
        text-align: left !important;
        justify-content: flex-start !important;
    }
    
    .notification-top-bar .inner {
        display: flex;
        gap: 6px;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .notification-top-bar .text-wrapper {
        display: flex;
        gap: 6px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .notification-top-bar .close-wrapper {
        position: relative;
        right: 0;
    }
    
    .notification-top-bar.active {
        visibility: visible;
        opacity: 1;
        top: 80px;
    }
    
}


/*Navigation*/

#top-right.hybrid-menu {
    /* background: #000 !important; */
}

body {
    background-color: #fff;
}


img.scaled-image {
    border: 0 !important;
    margin: 0 !important;
}

a:focus {
    outline: 0px auto -webkit-focus-ring-color;
    outline-offset: 0px;
}


/* #top-right.hybrid-menu.top-right-collapse {
display: none !important;
} */




/*General styles*/
html {
    scroll-behavior: smooth;
}

:root {
    scroll-behavior: smooth;
}

p,
h1,
h2,
h3,
h4,
h5 {
    color: #000;
}

.swiper {
    overflow: hidden;
}

.swiper-pagination {
    left: 0;
    right: 0;
    padding-top: 33px;
}

.btn--primary.request-demo {
    transition: transform 0.4s ease 0s, background-color, border-color, background, color;
    width: max-content;
    padding: 10px 20px !important;
    display: flex;
    align-items: center;
    border-radius: 30px;
    background: linear-gradient(267.29deg, #0995e3 0%, #096be1 100%) !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%; /* 28px */
    letter-spacing: 0.02em;
    text-align: center;
    white-space: normal;
    max-width: 100%;
    border: 0;
    font-size: 20px;
}
@media (max-width: 991px) {
    .btn--primary.request-demo {
        font-size: 16px;
        padding: 7px 20px !important;
    }
}

.btn--primary.request-demo:hover {
    transform: translateY(-3px);
}

.btn--primary.request-demo img {
    margin-left: 10px;
    max-width: 25px;
}
@media (min-width: 992px) { 
    .btn--primary.request-demo img {
        display: none;
    }
}


.btn--primary.btn-transparent.request-demo {
    background: transparent !important;
    border: 0px solid white;
    padding: 0px !important;
}

.btn--primary.btn-transparent.dark.request-demo {
    background: transparent !important;
    border: 0px solid white;
    padding: 0px !important;
    color: #000 !important;
}


.btn--primary.btn-transparent {
    transition: color 0.1s ease-in 0s, transform 0.25s ease-in-out 0s;
}

.btn--primary.btn-transparent svg {
    position: relative;
    left: 0;
    margin-left: 12px;
    transition: transform 0.5s ease;
}

.btn--primary.btn-transparent:hover {
    transform: translateX(3px);
    box-shadow: none;
}

.btn--primary.btn-transparent:hover svg {
    transform: translateX(12px);
}


.btn-arrow {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    margin-top: 24px;
    font-style: normal;
}
.btn-arrow svg, 
.btn-arrow img {
    width: auto !important;
    position: relative;
    left: 0;
    margin-left: 10px;
    transition: all 0.3s ease-in-out;
}
.btn-arrow:hover {
    color: #fff;
}
.btn-arrow:hover svg,
.btn-arrow:hover img {
    left: 10px;
}

a.learn-more-transparent {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    letter-spacing: 0.02em;
    color: #212F41;
    text-transform: uppercase;
    margin-top: 8px;
}

a.learn-more-transparent img {
    margin-left: 12px;
    position: relative;
    left: 0;
    transition: 300ms;
    width: 24px;
}

a.learn-more-transparent:hover img {
    left: 10px;
}


h1.general-title {
    font-weight: 600;
    font-size: 40px;
    line-height: 120%; /* 48px */
    color: black;
    margin-top: 0px;
}
@media (max-width: 1400px) {
    h1.general-title {
        font-size: 36px;
    }
}
@media (max-width: 991px) {
    h1.general-title {
        font-size: 32px;
    }
}
@media (max-width: 768px) {
    h1.general-title {
        font-size: 28px;
        line-height: 140%; /* 48px */
    }
}

h2.general-title {
    font-weight: 600;
    font-size: 36px;
    line-height: 47px;
    color: black;
    margin-top: 0px;
}

h2.general-title.smaller {
    font-size: 32px;
    line-height: 42px;
}
@media (max-width: 991px) {
    h2.general-title,
    h2.general-title.smaller {
        font-size: 28px;
        line-height: 140%; /* 33.6px */
    }
}
@media (max-width: 768px) {
    h2.general-title,
    h2.general-title.smaller {
        font-size: 24px;
        line-height: 140%; /* 33.6px */
    }
}

h3.general-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: black;
    margin-top: 0px;
}
h3.general-title.larger {
    font-size: 28px;
    line-height: 132%; /* 36.96px */
}

p.above-title {
    font-weight: 600;
    font-size: 15px;
    line-height: 140%; /* 19.6px */
    color: #096BE1;
    text-transform: uppercase;
    margin-bottom: 11px;
}
p.above-title.larger {
    font-size: 20px;
    font-weight: 400;
    color: #556171;
}
@media (max-width: 768px) {
    p.above-title {
        font-size: 14px;
    }
}

p.subtitle {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 0px;
}

p.larger {
    font-size: 18px;
    line-height: 28px;
}

section.dark p,
section.dark h1,
section.dark h2,
section.dark h3,
section.dark h4,
section.dark h5 {
    color: white;
}

.col {
    padding-right: 15px;
    padding-left: 15px;
}


@media (min-width: 1200px) {
    .container {
        width: 100% !important;
        max-width: 1200px !important;
    }
    
    .container.container-small {
        width: 100% !important;
        max-width: 1025px !important;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1130px) and (max-width: 1200px) {
    .container {
        width: 100% !important;
        max-width: 1100px !important;
    }
}

@media (max-width: 576px) {
    .container:not(.container-with-swiper) {
        width: 100% !important;
    }
}

.text-center {
    text-align: center;
}

.page-content-wrap img {
    width: 100%;
}

.mb-0 {
    margin-bottom: 0px !important;
}

@media (max-width: 768px) {
    .general-title br,
    .text br {
        display: none;
    }
}

/******/



/*Section hero*/
.section-hero {
    padding-top: 180px;
    padding-bottom: 0;
    background-color: #000;
    overflow: hidden;
}

.section-hero .container {
    position: relative;
}
.section-hero .row-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-hero .btn,
.section-hero h1.general-title, 
.section-hero p.above-title {
    opacity: 0;
    transform: translatey(30px);
    transition: all .5s ease-out;
}
.section-hero.animated .btn,
.section-hero.animated h1.general-title, 
.section-hero.animated p.above-title {
    opacity: 1;
    transform: translatey(0px);
}



.section-hero p.above-title {
    color: #F4F3F1;
    margin-bottom: 24px;
}
.section-hero h1.general-title {
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    transition-delay: 0.2s;
}
.section-hero h1.general-title span {
    display: inline-block;
    background: linear-gradient(47deg, #0995E3 52.32%, #096BE1 94.35%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.section-hero .request-demo {
    display: inline-block;
    transition-delay: 0.4s !important;
}

.section-hero .col-text {
    text-align: center;
}

.section-hero > .container {
    position: relative;
    z-index: 2;
}
.section-hero .background {
    aspect-ratio: 20 / 9;
    display: flex;
    flex-direction: column;
    max-height: 800px;
    width: 100%;
    position: relative;
}

.section-hero img.background-img {
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    opacity: 0;
    transform: translatey(20px);
    transition: all .6s ease-out .5s;
}
.section-hero.animated img.background-img {
    opacity: 1;
    transform: translatey(0);
}

.section-hero .background .container {
    position: relative;
    z-index: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.section-hero .background .frames {
    flex-grow: 1;
}

.section-hero .background-lines {
    width: 1079px;
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    margin-top: -20px;
    opacity: 0;
    transform: translate(-50%, -20px);
    transition: all .8s ease-out .9s;
}
.section-hero.animated .background-lines {
    opacity: 1;
    transform: translate(-50%, 0px);
}
.section-hero .background-frame {
    position: absolute;
    opacity: 0;
    transition: all 1s ease-out;
}
.section-hero .background-frame-1 {
    width: 337px;
    height: 352px;
    left: 5.5%;
    top: 11%;
    transform: translate(-50%, -40px);
    transition-delay: 1.5s;
    z-index: 1;
}
.section-hero .background-frame-2 {
    width: 302px;
    height: 320px;
    left: 22%;
    top: 21%;
    transform: translate(-50%, -40px);
    transition-delay: 2.3s;
    transition-duration: 1.3s;
    z-index: 2;
}
.section-hero .background-frame-3 {
    width: 175px;
    height: 195px;
    left: 39%;
    top: 5%;
    transform: translate(-50%, -40px);
    transition-delay: 1.9s;
    z-index: 1;
}
.section-hero .background-frame-4 {
    width: 179px;
    height: 195px;
    left: 56%;
    top: 24%;
    transform: translate(-50%, -40px);
    transition-delay: 2.1s;
    z-index: 1;
}
.section-hero .background-frame-5 {
    width: 205px;
    height: 245px;
    left: 75%;
    top: 26.5%;
    transform: translate(-50%, -40px);
    transition-delay: 2.5s;
    transition-duration: 1.3s;
    z-index: 2;
}
.section-hero .background-frame-6 {
    width: 334px;
    height: 352px;
    left: 85%;
    top: 15%;
    transform: translate(-50%, -40px);
    transition-delay: 1.7s;
    z-index: 1;
}

.section-hero.animated .background-frame {
    opacity: 1;
    transform: translate(-50%, 0px);
}

.section-hero .background-arrow-bottom {
    position: absolute;
    left: 50%;
    top: 28%;
    transform: translate(-50%, 10%);
    width: 469px;
    height: 319px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1s ease-out 2.4s;
}
.section-hero.animated .background-arrow-bottom {
    opacity: 1;
}

.section-hero .hero-label {
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    background-color: #04243A;
    border-radius: 6px;
    padding: 11px;
    display: flex;
    gap: 10px;
    position: absolute;
    align-items: center;
    opacity: 0;
    transform: translate(0, -10px);
    transition: all 2s ease-out 3.1s;
}
.section-hero.animated .hero-label {
    opacity: 1;
    transform: translate(0, 0);
}
.section-hero .hero-label :is(.arrow,span) {
    flex-shrink: 0;
}
.section-hero .hero-label-left {
    left: 5%;
    top: -3%;
}
.section-hero .hero-label-left .arrow {
    position: absolute;
    top: 120%;
    left: 40%;
    width: 47px;
    height: 34px;
}
.section-hero .hero-label-right {
    right: 0%;
    top: -2%;
    transition-delay: 3.3s;
}
.section-hero .hero-label-right .arrow {
    position: absolute;
    top: 120%;
    right: 50%;
    width: 62px;
    height: 44px;
}



.section-hero .row-boxes {
    display: flex;
    gap: 60px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 60px;
}
.section-hero .icon-text {
    display: flex;
    gap: 16px;
    flex-grow: 1;
}
.section-hero .icon-text span {
    font-size: 16px;
    line-height: 158%;
    color: #fff;
    font-weight: 300;
}
.section-hero .icon-text :is(strong,b) {
    font-weight: 600;
}
.section-hero .icon-text .icon {
    width: 16px;
    height: 16px;
    top: 4px;
    position: relative;
}

@media (max-width:1300px) {
    .section-hero .background {
        aspect-ratio: 20 / 10;
    }
}
@media (max-width:1200px) {
    .section-hero .background {
        aspect-ratio: 20 / 11;
    }
}
@media (max-width:1100px) {
    .section-hero .background {
        aspect-ratio: 20 / 13;
    }
}
@media (min-width:1001px) {
    .section-hero .background .arrow-mobile,
    .section-hero .background .mobile-frames {
        display: none;
    }
}
@media (max-width:1000px) {
    .section-hero .background {
        aspect-ratio: auto;
    }

    .section-hero .background img:is(.background-arrow-bottom,.background-frame,.background-lines):not(.mobile) {
        display: none;
    }

    .section-hero .row-boxes {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 40px;
        margin-left: 0;
        margin-right: 0;
    }
    .section-hero .background {
        max-height: none;
    }
    .section-hero .background .arrow-mobile {
        position: absolute;
        top: 20%;
        left: 50%;
        transform: translate(-50%, 0);
        opacity: 0;
        transition: opacity .6s ease-out 1.2s;
        z-index: 3;
        width: 51px;
        height: 11px;
    }
    .section-hero.animated .background .arrow-mobile {
        opacity: 1;
    }

    .section-hero .background .mobile-frames {
        display: flex;
        gap: 26px;
        margin-top: 30px;
        margin-bottom: 60px;
        position: relative;
        justify-content: center;
    }
    .section-hero img.background-img {
        bottom: auto;
        top: 70vw;
    }
    .section-hero .background-frame-1,
    .section-hero .background-frame-2 {
        position: relative;
        margin: 0;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        transform: translate(0, 20px);
        width: 100%;
        height: auto;
    }
    .section-hero.animated .background-frame-1,
    .section-hero.animated .background-frame-2 {
        transform: translate(0, 0);
        transition-delay: 300ms;
    }
    .section-hero.animated .background-frame-2 {
        transition-delay: 500ms;
    }

    .section-hero .hero-label-left {
        z-index: 2;
        left: 25%;
        transform: translate(-50%, 0) !important;
        transition-delay: 800ms;
    }
    .section-hero .hero-label-right {
        z-index: 2;
        right: 25%;
        transform: translate(50%, 0) !important;
        transition-delay: 900ms;
        flex-direction: row-reverse;
    }
    .section-hero .hero-label {
        background: transparent;
        top: 5%;
    }
    .section-hero .hero-label img {
        width: 17px;
    }
    .section-hero .hero-label img.arrow {
        display: none;
    }
}
@media (max-width:768px) {
    .section-hero {
        padding-top: 130px;
    }
    .section-hero .col-text {
        text-align: left;
    }
    .section-hero p.above-title {
        margin-bottom: 10px;
    }
    .section-hero .btn img {
        display: none;
    }
    .section-hero .hero-label {
        font-size: 10px;
        background: transparent;
        top: 4%;
    }
}
@media (max-width:420px) {
    .section-hero .hero-label {
        font-size: 9px;
        top: 3%;
    }
}
@media (max-width:340px) {
    .section-hero .hero-label img {
        display: none;
    }
}



/* Section boxes */
.section-boxes {
    padding-top: 80px;
    padding-bottom: 120px;
    overflow: hidden;
}
@media (min-width: 1200px) {
    .section-boxes .container {
        max-width: 1260px !important;
    }
}

.section-boxes .row-intro .col-md-12 {
    margin-left: auto;
    margin-right: auto;
    float: none;
}
.section-boxes h2.general-title {
    margin-bottom: 23px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.section-boxes p.text {
    padding-left: 60px;
    padding-right: 60px;
    color: #212F41;
}
.section-boxes .row-boxes {
    padding-left: 15px;
    padding-right: 15px;
}

.section-boxes .box {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: #f1f2f5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.section-boxes .box p.title {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 148%;
    padding: 28px 28px 7px 28px;
    margin-bottom: 0;
}
.section-boxes .box p.text {
    color: #212F41;
    font-size: 14px;
    line-height: 148%;
    padding: 0 28px 28px 28px;
    margin-bottom: 0;
}
.section-boxes .box .img {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-image: url(https://www.centricsoftware.com/wp-content/themes/centricSoftware/img/visual-boards-emerging-brands/box-grid.svg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    background-color: #f8f8fa;
}
.section-boxes .box img {
    max-width: 100%;
}
.section-boxes .swiper {
    padding-top: 50px;
    overflow: visible;
    position: relative;
}
.section-boxes .swiper-slide {
    height: auto;
}
.section-boxes .btn {
    margin-left: auto;
    margin-right: auto;
}
.section-boxes .swiper-button-next, 
.section-boxes .swiper-button-prev {
    width: 72px;
    height: 72px;
    transition: opacity 0.3s;
}
.section-boxes .swiper-button-next {
    right: -20px;
} 
.section-boxes .swiper-button-prev {
    left: -20px;
}
.section-boxes .swiper-button-disabled {
    opacity: 0 !important;
}

@media (max-width:1199px) {
    .section-boxes .swiper {
        overflow: visible;
    }
    .section-boxes .box p.title {
        padding: 24px 24px 7px 24px;
    }
    .section-boxes .box p.text {
        padding: 0 24px 24px 24px;
    }
}
@media (max-width:991px) {
    .section-boxes .row-boxes {
        padding-left: 0;
        padding-right: 0;
    }
    .section-boxes h2.general-title {
        margin-bottom: 16px;
        text-align: left;
        max-width: 100%;
    }
    .section-boxes p.text {
        padding: 0;
        text-align: left;
        font-size: 14px;
        line-height: 140%;
    }
    .section-boxes .box p.title {
        padding: 20px 20px 7px 20px;
    }
    .section-boxes .box p.text {
        padding: 0 20px 20px 20px;
    }
    .section-boxes .btn {
        padding: 10px 20px !important;
        width: 100%;
        font-size: 20px;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width:768px) {
    .section-boxes {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-boxes .swiper {
        padding-top: 32px;
    }
    .section-boxes p.text {
        font-size: 12px;
    }
    .section-boxes .box p.text {
        font-size: 12px;
    }
}


/* Section: banner cta */
.section-banner {
    background: #096BE1;
    background: linear-gradient(267.29deg, #096BE1 0%, #004AB9 100%);
    padding-top: 60px;
    padding-bottom: 60px;
    color: #fff;
}
.section-banner .above-title,
.section-banner .general-title {
    color: #fff;
}
.section-banner .above-title {
    font-weight: 400;
}
@media (max-width: 768px) {
    .section-banner {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-banner .btn-arrow {
        font-weight: 400;
    }
}



/* Section: why it matters */
.section-iconboxes {
    padding-top: 140px;
    padding-bottom: 140px;
}
.section-iconboxes .row-intro {
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
}

.section-iconboxes .row-main {
    margin-left: auto;
    margin-right: auto;
}

.section-iconboxes .row-intro h2.general-title {
    margin-bottom: 24px;
    font-size: 32px;
    line-height: 140%;
}

.section-iconboxes .row-intro .btn {
    margin-left: auto;
    margin-right: auto;
}

.section-iconboxes .tabs-wrapper > div:nth-child(even) {
    margin-top: 40px;
}

.section-iconboxes .tabs-wrapper > div:nth-child(odd) {
    margin-bottom: 40px;
}

.section-iconboxes .tabs-wrapper {
    display: flex;
    gap: 16px;
    margin-left: -15px;
    margin-right: -15px;
}

.section-iconboxes .specific-tab {
    padding: 30px 20px 40px 20px;
    background: #f1f2f5;
    border-radius: 0;
}

.section-iconboxes .specific-tab img {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
}

.section-iconboxes .specific-tab p.title {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%; /* 28px */
    margin-bottom: 16px;
}

.section-iconboxes .specific-tab p.text {
    color: #212F41;
}

.section-iconboxes .tabs-wrapper div {
    flex-basis: 0;
    flex-grow: 1;
}
@media (max-width: 1200px) {
    .section-iconboxes .tabs-wrapper {
        display: grid;
        gap: 0 40px;
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
   .section-iconboxes div.row.row-main div.col.col-tabs {
      padding: 0;
   }
}
@media (max-width: 991px) {
    .section-iconboxes {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-iconboxes .text-center {
        text-align: left;
        padding-left: 0;
        padding-right: 0;
    }
    .section-iconboxes .col-tabs {
        padding-left: 0;
        padding-right: 0;
    }
}
@media (max-width: 768px) {
    .section-iconboxes {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .section-iconboxes .row-intro h2.general-title {
        font-size: 24px;
    }

    .section-iconboxes .row-intro p.text {
        font-size: 14px;
        line-height: 24px;
    }

    .section-iconboxes .row-intro {
        margin-bottom: 28px;
    }

    
    .section-iconboxes .row-intro .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section-iconboxes .tabs-wrapper {
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);
     }

    .section-iconboxes .specific-tab {
        padding: 28px 20px 40px;
    }

    .section-iconboxes .specific-tab img {
        margin-bottom: 12px;
        height: 52px;
        margin-top: 0;
    }
    .section-iconboxes .specific-tab p.title {
        font-size: 16px;
        font-size: 18px;
        margin-bottom: 15px;
    }

    .section-iconboxes .specific-tab p.text {
        font-size: 16px;
    }

    .section-iconboxes .tabs-wrapper {
        gap: 16px;
        flex-direction: column;
    }

    .section-iconboxes .tabs-wrapper,
    .section-iconboxes .tabs-wrapper > div:nth-child(odd),
    .section-iconboxes .tabs-wrapper > div:nth-child(even) {
        margin: 0;
    }


    .section-iconboxes .text-center.col.col-12 {
        text-align: left;
    }
  
}




/*Section Planning resources / Posts*/
.planning-resources {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #F1F2F5;
}
.planning-resources .container {
    max-width: 1182px !important;
}

.planning-resources .row-intro h2.general-title {
    font-size: 32px;
    line-height: 44px;
}
@media (max-width: 991px) {
    .planning-resources .text-center {
        text-align: left;
    }
}

.planning-resources .row-main {
    margin-top: 60px;
    overflow: hidden;
}

.planning-resources .specific-posts .specific-posts-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 40px 36px;
}

.planning-resources .nav-wrapper {
    display: flex;
    justify-content: space-between;
}

.planning-resources .see-more {
    border-radius: 30px;
    border: 1px solid #FFF;
    color: #fff;
    display: flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.learn-more-post .dt-img {
    position: relative;
}
.learn-more-post .dt-img::after {
    content: '';
    background: linear-gradient(180deg, rgba(41, 41, 41, 0.00) 0%, rgba(0, 0, 0, .8) 100%);
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.learn-more-post .dt-img img {
    transition: transform 0.5s ease;
}

.learn-more-post:hover .dt-img img {
    transform: scale(1.1);
}

.learn-more-post p.tag {
    background: rgba(183, 187, 188, 0.24);
    /*backdrop-filter: blur(8px);*/
    color: white;
    width: max-content;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    padding: 4px 12px;
    border-radius: 20px;
    position: absolute;
    left: 4%;
    /* bottom: 8%; */
    margin-bottom: 0px;
}

.learn-more-post p.tag .blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 1;
    border-radius: 20px;
}

.learn-more-post p.tag .title {
    position: relative;
    z-index: 10;
}

.learn-more-post p.title {
    font-weight: 400;
    font-size: 22px;
    line-height: 34px;
    color: #212F41;
    margin-top: 32px;
    margin-bottom: 0px;
}

.learn-more-post .read-more {
    margin-top: 26px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #000;
    transition: color 0.1s ease-in 0s, transform 0.25s ease-in-out 0s;
}

.learn-more-post svg {
    position: relative;
    left: 0;
    margin-left: 12px;
    transition: transform 0.5s ease;
}

.learn-more-post .read-more:hover {
    transform: translateX(3px);
}

.learn-more-post .read-more:hover svg {
    transform: translateX(12px);
}

.learn-more-post svg path {
    transition: all 0.3s ease-in-out;
}

.specific-posts {
    display: none !important;
}

.specific-posts.active {
    display: block !important;
}

.specific-posts.active .specific-posts-wrapper {
    display: grid !important;
}

.load-more-wrapper {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-more-wrapper .load-more-button {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    color: #ffffff;
    background: #212F41;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    font-weight: 400;
    cursor: pointer;
    transition: background .2s;
}

.load-more-button:hover {
    background: #000000;
}

.specific-posts.active .learn-more-post:nth-child(n+7) {
    display: none;
}

.specific-posts.active.show-more .learn-more-post:nth-child(n+7) {
    display: block;
}

.posts-navigation {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.disabled-navigation {
    margin-bottom: 0;
}

.posts-navigation .item-nav {
    cursor: pointer;
    transition: all 0.3s;
    min-width: max-content;
}

.posts-navigation .item-nav .nav-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.posts-navigation .item-nav.active .nav-title {
    font-weight: 600;
    color: #000;
}

.posts-navigation .item-nav .border {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    margin-top: 12px;
    transition: all 0.3s;
}

.posts-navigation .item-nav.active .border,
.posts-navigation .item-nav:hover .border {
    background: #0995E3;
    background: linear-gradient(267.29deg, #0995E3 0%, #096BE1 100%);
}


/*Resources component*/
.resources-component {
    padding-top: 40px;
    padding-bottom: 60px;
}

.resources-component .row-main {
    margin-top: 60px;
}

.resources-component .specific-posts .specific-posts-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 40px;
}


.learn-more-post .dt-img {
    position: relative;
}

.learn-more-post .dt-img::after {
    content: '';
    background: linear-gradient(180deg, rgba(41, 41, 41, 0.00) 0%, rgba(0, 0, 0, .8) 100%);
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.learn-more-post .dt-img img {
    transition: transform 0.5s ease;
}

.learn-more-post:hover .dt-img img {
    transform: scale(1.1);
}

.learn-more-post p.tag {
    background: rgba(183, 187, 188, 0.24);
    /*backdrop-filter: blur(8px);*/
    color: white;
    width: max-content;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    padding: 4px 12px;
    border-radius: 20px;
    position: absolute;
    left: 0;
    margin: 0px 32px;
    top: 28px;
    margin-bottom: 0px;
    z-index: 1;
}

.learn-more-post p.tag .blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 1;
    border-radius: 20px;
}

.learn-more-post p.tag .title {
    position: relative;
    z-index: 10;
}

.learn-more-post p.title {
    font-weight: 600;
    font-size: 24px !important;
    line-height: 32px;
    color: #FFF;
    margin: 0px 32px;
    margin-bottom: 0px;
    position: absolute;
    bottom: 75px;
    z-index: 1;
}

.learn-more-post .read-more {
    position: absolute;
    bottom: 32px;
    left: 0;
    margin: 0px 32px;
    margin-top: 26px;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #FFF;
    transition: color 0.1s ease-in 0s,
    transform 0.25s ease-in-out 0s;
    z-index: 1;
}

.learn-more-post svg {
    position: relative;
    left: 0;
    margin-left: 12px;
    transition: transform 0.5s ease;
}

.learn-more-post .read-more:hover {
    transform: translateX(3px);
}

.learn-more-post .read-more:hover svg {
    transform: translateX(12px);
}

.learn-more-post svg path {
    transition: all 0.3s ease-in-out;
}

.specific-posts {
    display: none !important;
}

.specific-posts.active {
    display: block !important;
}

.specific-posts.active .specific-posts-wrapper {
    display: grid !important;
}

.load-more-wrapper {
    margin-top: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.load-more-wrapper .load-more-button {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    color: #ffffff;
    background: #212F41;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.02em;
    font-weight: 400;
    cursor: pointer;
    transition: background .2s;
}

.load-more-button:hover {
    background: #000000;
}

.specific-posts.active .learn-more-post:nth-child(n+7) {
    display: none;
}

.specific-posts.active.show-more .learn-more-post:nth-child(n+7) {
    display: block;
}

.posts-navigation:not(.disabled-navigation) {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.posts-navigation::-webkit-scrollbar {
    display: none;
}

.posts-navigation .item-nav {
    cursor: pointer;
    transition: all 0.3s;
    min-width: 140px;
    text-align: center;
}

.posts-navigation .item-nav .nav-title {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding-left: 5px;
    padding-right: 5px;
}

section.dark .posts-navigation .item-nav .nav-title {
    color: white;
}

.posts-navigation .item-nav.active .nav-title {
    font-weight: 600;
    color: #000;
}

.posts-navigation .item-nav .border {
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    margin-top: 12px;
    transition: all 0.1s;
    opacity: 0.2;
}

@media (max-width: 768px) {
    .posts-navigation .item-nav .border {
        opacity: 1;
    }
}

.posts-navigation .item-nav.active .border,
.posts-navigation .item-nav:hover .border {
    background: #0995E3;
    background: linear-gradient(267.29deg, #0995E3 0%, #096BE1 100%);
    opacity: 1;
}


.swiper-related-posts .swiper-pagination {
    display: none;
}

@media (max-width: 991px) {
    .planning-resources .row-main {
        margin-top: 30px;
    }
    
    .planning-resources .specific-posts .specific-posts-wrapper {
        gap: 17px;
    }
    
    .learn-more-post p.title {
        font-size: 18px;
        line-height: 28px;
        margin-top: 24px;
        margin-left: 20px;
        margin-right: 20px;
    }
    
    .learn-more-post .read-more {
        margin-top: 14px;
        font-size: 14px;
        margin-right: 20px;
        margin-left: 20px;
    }
    .swiper-related-posts .swiper-pagination {
        display: block;
    }
}
@media (max-width: 768px) {
    .planning-resources {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .planning-resources .row-intro h2.general-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .posts-navigation .item-nav {
        min-width: 0;
    }
    .posts-navigation .item-nav .nav-title {
        font-size: 14px;
        line-height: 24px;
    }
    
    .posts-navigation:not(.disabled-navigation) {
        display: flex;
        gap: 24px;
        margin-bottom: 30px;
    }
    
    .specific-posts.mobile.active {
        display: block !important;
    }
    
    .specific-posts.desktop,
    .specific-posts.desktop.active {
        display: none !important;
    }
    
    .learn-more-post {
        width: 100%;
    }
    
    .swiper-related-posts .swiper-pagination {
        padding-top: 13px;
    }
    
    .swiper-related-posts .swiper-pagination .swiper-pagination-bullet:not(:last-child) {
        margin-right: 8px;
    }
    
    .swiper-related-posts .swiper-pagination .swiper-pagination-bullet {
        background: #E8EDF9 !important;
        opacity: 1;
    }
    
    .swiper-related-posts .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background: #0250BF !important;
    }
    
    .learn-more-post p.tag {
        font-size: 12px;
        padding: 2px 12px;
        margin: 0 20px;
    }
    
}
@media (max-width: 549px) {
    
    .planning-resources .row-main {
        margin-right: -24px;
    }
    .planning-resources .swiper-related-posts .swiper-pagination {
        display: none;
    }
}
@media (max-width: 440px) {
    .planning-resources .learn-more-post p.title {
        font-size: 16px !important;
        line-height: 25px;
    }
    
    .learn-more-post p.tag {
        top: 10px;
    }
    
    .learn-more-post p.title {
        bottom: 54px;
    }
    
    .learn-more-post .read-more {
        bottom: 20px;
    }
}






/* Section: pardot form */
.section-form {
    padding-top: 120px;
    padding-bottom: 120px;
    background: #000;
    color: #fff;
    overflow: hidden;
    position: relative;
}
.section-form::before {
    content: '';
    display: block;
    width: 1866px;
    height: 1461px;
    border-radius: 1866px;
    background: #071525;
    filter: blur(190px);
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0;
    transform: translate(-50%, -70%);
}
.section-form .container {
    position: relative;
    z-index: 2;
}

.section-form :is(p, h2) {
    color: #fff;
    margin-bottom: 24px;
}

.section-form .bottom-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 124%; /* 29.76px */
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid #fff;
    margin-bottom: 20px;
}
.section-form .bottom-text {
    font-size: 16px;
    line-height: 27px; /* 168.75% */
    opacity: .6;
}
.section-form .customer-grid {
    margin-top: 36px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 100px;
}
.section-form .customer-grid > div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section-form .customer-grid > div:last-child {
    margin-right: auto;
}
.section-form .customer-grid img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
}

@media (min-width: 992px) {
    .section-form .col-text {
        padding-right: 80px;
    }
    .section-form .col-form {
        padding-left: 0px;
    }
}
@media (max-width: 991px) {
    .section-form {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-form .col-text {
        margin-bottom: 36px;
    }
    .section-form .bottom-title {
        margin-top: 15px;
        padding-top: 15px;
        font-size: 20px;
    }
    .section-form .bottom-text {
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .section-form {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .section-form p {
        font-size: 16px;
    }
    .section-form .customer-grid,
    .section-form .bottom-title,
    .section-form .bottom-text {
        display: none;
    }
}