@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
    --brand-primary: #A86ED4;
    --brand-secondary: #58D1F1;
    --brand-light: #EDEDED;
    --brand-dark: #1F2430;
    --brand-muted: #5c6178;
    --brand-purple: var(--brand-primary);
    --brand-blue: var(--brand-secondary);
    --brand-gray: var(--brand-light);
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: var(--brand-light);
    color: var(--brand-dark);
    line-height: 1.8;
}

main {
    background: transparent;
    position: relative;
    z-index: 1;
}

.skip-link {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brand-purple);
    color: #ffffff;
    padding: 10px 15px;
    z-index: 1000;
    transform: translateY(-150%);
    transition: transform 0.3s ease;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 30px rgba(31, 36, 48, 0.25);
}

.skip-link:focus {
    transform: translateY(0);
}

a {
    text-decoration: none;
    color: var(--brand-purple);
}

a:hover,
a:focus {
    color: var(--brand-blue);
}

:focus-visible {
    outline: 3px solid var(--brand-blue);
    outline-offset: 2px;
}

h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 58px;
    margin-top: 36px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
}

h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 34px;
    margin-top: 0;
    margin-bottom: 20px;
    color: var(--brand-dark);
    font-weight: 600;
    line-height: 1.4;
}

h3 {
    font-weight: 600;
    margin: 16px 0 10px;
    font-size: 22px;
    color: var(--brand-dark);
    line-height: 1.5;
}

h4 {
    font-size: 22px;
    margin: 0;
    color: var(--brand-purple);
    padding-top: 5px;
}

h5 {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--brand-blue);
}

h6 {
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-muted);
    margin-top: 0;
    margin-bottom: 7px;
    line-height: 1.5;
}

p {
    font-size: 16px;
    color: var(--brand-dark);
    line-height: 1.8;
    margin-bottom: 1.2em;
}

p.lead {
    font-weight: 300;
    font-size: 18px;
    line-height: 1.8;
    color: var(--brand-muted);
}

.overlay {
    position: relative;
}

.pad-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.pad-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.pad-60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.pad-80 {
    padding-top: 80px;
    padding-bottom: 80px;
}

.pad-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.btn.active, .btn:active {
    box-shadow: none;
}

.btn-primary {
    border-radius: 999px;
    background-image: linear-gradient(120deg, var(--brand-purple), var(--brand-blue));
    border: none;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    text-transform: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 20px 45px rgba(88, 209, 241, 0.35);
}

.btn-primary.cta-bordered {
    border: 2px solid rgba(255, 255, 255, 0.85);
    background-clip: padding-box;
    background-color: rgba(255, 255, 255, 0.08);
    background-image: none;
    color: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-primary.cta-bordered:hover,
.btn-primary.cta-bordered:focus {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff;
    background-image: linear-gradient(120deg, var(--brand-blue), var(--brand-purple));
    box-shadow: 0 15px 30px rgba(168, 110, 212, 0.4);
}

.btn-nav {
    border: 2px solid var(--brand-purple);
    color: var(--brand-purple);
    border-radius: 999px;
    padding: 10px 24px;
    font-weight: 600;
    text-transform: none;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
}

.btn-nav:hover,
.btn-nav:focus {
    background: var(--brand-purple);
    color: #fff;
    box-shadow: 0 10px 25px rgba(168, 110, 212, 0.35);
}

.btn-main,
.btn-fav,
.btn-orange {
    border-radius: 999px;
    background-image: linear-gradient(120deg, var(--brand-purple), var(--brand-blue));
    height: auto;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 28px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 1.5;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-cart {
    border-radius: 6px;
    background-color: var(--brand-blue);
    height: auto;
    font-size: 14px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: none;
}

.btn-cart:hover,
.btn-fav:hover,
.btn-main:hover,
.btn-orange:hover {
    background-image: linear-gradient(120deg, var(--brand-blue), var(--brand-purple));
    color: #fff;
}

.btn-slider {
    border-radius: 999px;
    background-color: transparent;
    height: 44px;
    font-size: 13px;
    text-transform: uppercase;
    padding-left: 30px;
    padding-right: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 2.4;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.btn-slider:hover {
    background: #fff;
    color: var(--brand-purple);
}

.btn-border {
    border: 1px solid rgba(168, 110, 212, 0.5);
    color: var(--brand-purple);
    border-radius: 999px;
    padding: 8px 20px;
    text-transform: uppercase;
    margin-top: 5px;
    margin-bottom: 26px;
    transition: all 0.3s ease-in-out;
}

.btn-border:hover {
    background: var(--brand-purple);
    color: #fff;
}

.btn-circle {
    border-radius: 25px;
    background: var(--brand-blue);
    height: 40px;
    width: 40px;
    line-height: 2.1;
    color: #fff;
    box-shadow: -2.121px 2.121px 8px 0px rgba(34, 34, 34, 0.18);
    transition: all 0.2s ease-in-out;
}

.btn-circle:hover {
    background: var(--brand-purple);
    color: #fff;
    box-shadow: -2.121px 2.121px 8px 0px rgba(34, 34, 34, 0.18);
}

.form-control:focus {
    box-shadow: 0 0 0 2px rgba(88, 209, 241, 0.25);
    border-color: var(--brand-blue);
}

/* ============= TOP BAR ============== */
.top-bar {
    padding: 6px 0 12px;
    text-transform: uppercase;
    color: #989898;
    border-bottom: 1px solid #eee;
    position: fixed;
    width: 100%;
    z-index: 9999999999999999999999999999999999999999999999999999999;
}

.top-bar a {
    color: #a5a5a5;
    font-size: 11px;
}

.top-bar ul.list-inline {
    display: inline-block;
    margin-bottom: 0;
    position: relative;
}

.top-bar ul.social-icons {
    margin-right: 20px;
}

.top-bar ul.contact-info li {
    margin-right: 20px;
}

.top-bar ul li i {
    margin-right: 3px
}

/* ============= // TOP BAR ============== */


/* ============= NAVBAR ============= */
nav.navbar {
    margin: 0px;
    box-shadow: 0px 3px 5px 0px rgba(34, 34, 34, 0.1);
    background: #fff;
    height: 108px;
    padding-top: 18px;
}

.navbar-nav > li.nav-cta {
    margin-left: 10px;
}

.navbar-nav > li.nav-cta > a.btn-nav {
    margin-top: 0;
}

@media (max-width: 767px) {
    .navbar-nav > li.nav-cta {
        margin-left: 0;
    }

    .navbar-nav > li.nav-cta > a.btn-nav {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }
}

.navbar-fixed-top .navbar-brand {
}

.navbar-fixed-top ul.nav.navbar-nav {
    margin: 0;
}


ul.nav.navbar-nav li a {
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 500;
}

ul.nav.navbar-nav li.active a {
    color: var(--brand-purple);
}

.nav>li>a:focus, .nav>li>a:hover {
    background-color: transparent;
}

.navbar-right {
    margin-top: 0;
}

@media (min-width: 768px) {
    .navbar-nav.navbar-right {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        float: none;
        width: 100%;
    }

    .navbar-nav.navbar-right > li {
        float: none;
    }
}

/* ============== SLIDER ================ */
#main-slider.carousel {
    width: 100%;
    max-width: 100%;
    min-height: 640px;
    height: auto;
    background-image: linear-gradient(135deg, rgba(168, 110, 212, 0.96), rgba(88, 209, 241, 0.96)), url('../images/bg-slider.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
    margin-bottom: 30px;
    padding: 90px 0 60px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    position: relative;
}

#main-slider .carousel-inner,
#main-slider .item,
#main-slider .hero-slide .carousel-caption {
    min-height: 620px;
}

#main-slider .hero-slide {
    width: 100%;
}

#main-slider .hero-slide.active {
    display: flex;
    align-items: stretch;
}

#main-slider .hero-slide .carousel-caption {
    left: 0;
    right: 0;
    top: 0;
    position: relative;
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
}

#main-slider .carousel-caption .row {
    width: 100%;
}

#main-slider .carousel-caption img {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 30px 60px rgba(18, 24, 45, 0.35));
    position: relative;
    z-index: 2;
}

#main-slider .item .carousel-caption p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 400;
    text-align: left;
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    color: #fff;
}

.hero-copy h1,
.hero-copy h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 18px;
}

.hero-copy h2 {
    font-size: 36px;
    font-weight: 600;
}

.hero-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0 24px;
}

.hero-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
}

.hero-list li:before {
    content: "";
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--brand-blue);
    position: absolute;
    left: 0;
    top: 8px;
    box-shadow: 0 8px 20px rgba(88, 209, 241, 0.4);
}

#main-slider .carousel-indicators {
    bottom: 25px;
    margin-bottom: 0;
}

#main-slider .carousel-indicators li {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0 6px;
    background: transparent;
    transition: all 0.3s ease;
}

#main-slider .carousel-indicators li.active {
    background: #fff;
    border-color: #fff;
    transform: scale(1.15);
}


#main-slider h1 {
    margin: 20px 0;
    display: block;
    font-size: 44px;
    font-weight: 700;
    text-transform: none;
    color: #fff;
    position: relative;
    text-align: left;
    letter-spacing: -0.5px;
}

#main-slider .hero-title {
    font-weight: 600;
    text-transform: none;
    font-size: 40px;
}

#main-slider h1:after {
    content: "";
    background: rgba(255, 255, 255, 0.4);
    height: 4px;
    width: 60px;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    border-radius: 999px;
}

#main-slider .quote {
    font-size: 18px;
    text-align: left;
    text-transform: none;
    padding-top: 24px;
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.hero-tag {
    position: absolute;
    top: 40px;
    left: 40px;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(31, 36, 48, 0.45);
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.4px;
    font-weight: 600;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    z-index: 3;
}

.hero-tag-alt {
    top: auto;
    bottom: 40px;
    left: 60px;
    background: rgba(88, 209, 241, 0.35);
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    min-height: 520px;
}

.hero-visual .orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: orbit-spin 18s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 20px 60px rgba(31, 36, 48, 0.25);
}

.hero-visual .orbit-lg {
    width: 520px;
    height: 520px;
}

.hero-visual .orbit-sm {
    width: 360px;
    height: 360px;
    animation-duration: 24s;
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-visual img {
    position: relative;
    z-index: 2;
}

@keyframes orbit-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 991px) {
    #main-slider.carousel {
        padding: 80px 0 40px;
    }
    #main-slider .hero-slide .carousel-caption {
        align-items: flex-start;
    }
    .hero-visual {
        min-height: 380px;
        margin-top: 30px;
    }
    .hero-visual .orbit-lg {
        width: 380px;
        height: 380px;
    }
    .hero-visual .orbit-sm {
        width: 260px;
        height: 260px;
    }
    .hero-list {
        margin: 15px 0 20px;
    }
}

@media (max-width: 575px) {
    .hero-visual {
        min-height: 260px;
    }
    .hero-visual .orbit-lg {
        width: 260px;
        height: 260px;
    }
    .hero-visual .orbit-sm {
        width: 180px;
        height: 180px;
    }
    .hero-list li {
        padding-left: 24px;
    }
    .hero-tag {
        left: 50%;
        transform: translateX(-50%);
        top: 20px;
    }
    .hero-tag-alt {
        left: 50%;
        transform: translateX(-50%);
        bottom: 20px;
    }
}



/* ============== SLIDER ================ */


.after-slider {
    margin-top: -80px;
}

.surface-panel {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 25px 80px rgba(20, 27, 45, 0.12);
    position: relative;
    z-index: 2;
}

#pain-points ul,
#gcc-localisation ul {
    list-style: none;
    padding-left: 0;
    margin: 30px 0 0;
}

#pain-points li,
#gcc-localisation li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 20px;
    color: var(--brand-dark);
    font-size: 16px;
    line-height: 1.7;
}

#pain-points li:before,
#gcc-localisation li:before {
    content: "";
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
    position: absolute;
    left: 0;
    top: 10px;
    box-shadow: 0 6px 12px rgba(168, 110, 212, 0.35);
}

#pain-points strong,
#gcc-localisation strong {
    color: var(--brand-purple);
    display: block;
    margin-bottom: 4px;
}

#cta-bottom {
    background-image: linear-gradient(135deg, var(--brand-purple), var(--brand-blue));
    color: #fff;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(18, 24, 45, 0.25);
}

#cta-bottom h2 {
    color: #fff;
}

#cta-bottom p {
    color: rgba(255, 255, 255, 0.92);
}

#cta-bottom .btn-primary {
    margin-top: 15px;
}

.after-slider .col-md-3 {
    padding: 0;
}

.content-block {
    padding: 25px 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(168, 110, 212, 0.15);
    background-color: #fff;
    min-height: 280px;
    text-align: center;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.content-block h3 {
    color: var(--brand-dark);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.content-block p {
    font-size: 15px;
    color: var(--brand-muted);
}


.content-block .icon span {
    font-size: 60px;
    color: var(--brand-purple);
    display: inline-block;
    margin-bottom: 10px;
}

.content-block .icon span,
.stra-content .icon span,
.ben-content .icon span,
.cycle-icon span.fa,
.text-photo-item .icon .fa,
.icon-text .icon-title span,
.icon-text .icon-title .fa {
    transition: color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.content-block:hover .icon span,
.stra-content:hover .icon span,
.ben-content:hover .icon span,
.text-photo-item:hover .icon .fa,
.text-photo-item:focus-within .icon .fa,
.icon-text-block:hover .icon-title span,
.icon-text-block:hover .icon-title .fa,
.icon-text-block:focus-within .icon-title span,
.icon-text-block:focus-within .icon-title .fa {
    color: var(--brand-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(88, 209, 241, 0.25);
}

.cycle-step:hover .cycle-icon span.fa,
.cycle-step:focus-within .cycle-icon span.fa {
    border-color: rgba(168, 110, 212, 0.5);
    color: var(--brand-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(88, 209, 241, 0.25);
}

.dropdown-menu {
    border-radius: 0;
    border: 1px solid #fff;
    min-width: 206px;
    margin-top: 12px;
    left: auto;
    right: 0;
}

.nav .open>a, .nav .open>a:focus, .nav .open>a:hover {
    background: transparent;
    border-color: transparent;
}

.dropdown-menu>li>a {
    padding: 5px 14px;
    font-size: 13px;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    background: transparent;
}


.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title h2:after {
    content: "";
    height: 20px;
    width: 160px;
    background: url('../images/after-title.png') no-repeat;
    position: absolute;
    left: 50%;
    margin-left: -80px;
    margin-top: 45px;
}

.strategy h3 {
    color: #2a3542;
    font-size: 17px;
    margin-top: 5px;
    font-weight: 400;
}

.stra-content .icon {
    width: 20%;
    display: inline-block;
    border: 1px solid rgba(88, 209, 241, 0.6);
    text-align: center;
    vertical-align: top;
    padding: 10px;
    margin-right: 20px;
    border-radius: 14px;
    height: 80px;
}

.stra-content .text {
    width: 72%;
    display: inline-block;
}

.stra-content .icon span {
    font-size: 40px;
    color: var(--brand-purple);
    line-height: 60px;
}

.stra-content .text p {
    font-size: 15px;
    color: var(--brand-muted);
}

.stra-content {
    margin-bottom: 30px;
}



.benefits h3 {
    font-size: 18px;
    color: var(--brand-dark);
    font-weight: 600;
}

.ben-content .icon span {
    font-size: 40px;
    color: var(--brand-purple);
    display: inline-block;
    margin-bottom: 10px;
}

.ben-content p {
    color: var(--brand-muted);
    font-size: 15px;
}

.cycle-step {
    text-align: center;
    margin-bottom: 30px;
}

.cycle-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.cycle-icon span.fa {
    border: 1px solid rgba(168, 110, 212, 0.4);
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--brand-purple);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 110, 212, 0.12), rgba(88, 209, 241, 0.12));
}

.cycle-icon span.fa-long-arrow-right {
    border: none;
    width: auto;
    height: auto;
    font-size: 26px;
    color: #35447e;
}

.cycle-step h3 {
    color: var(--brand-dark);
    font-size: 15px;
    font-weight: 600;
    margin-top: 15px;
}

.text-photo {
    position: relative;
    overflow: hidden;
}

.text-photo p.lead {
    color: var(--brand-dark);
    font-weight: 400;
}

.text-photo-list {
    padding-left: 0;
    margin: 30px 0 0;
    list-style: none;
}

.text-photo-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.text-photo-item .icon {
    flex: 0 0 48px;
    text-align: center;
}

.text-photo-item .icon .fa {
    font-size: 32px;
    color: var(--brand-blue);
}

.text-photo-item .text {
    flex: 1;
}

.text-photo img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 35px 55px rgba(20, 27, 45, 0.25));
}

.icon-text {
    background-image: linear-gradient(135deg, rgba(237, 237, 237, 0.95), rgba(88, 209, 241, 0.08)), url('../images/icon-text-bg.jpg');
    background-size: cover;
}

.icon-text .icon-title span {
    font-size: 35px;
    color: var(--brand-purple);
    display: inline-block;
    margin-right: 15px;
}

.icon-text .icon-title h3 {
    display: inline-block;
    margin-left: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--brand-dark);
}

.panel-heading {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(240, 241, 245) !important;
  background-color: rgb(247, 248, 253) !important;
  border-radius: 0;
  box-shadow: none;
}

.panel.panel-default {
    box-shadow: none;
    margin-bottom: 16px;
    border-radius: 0;
}

.panel.panel-default h4 {
  color: #2a3542;
  font-size: 15px;
  font-weight: 400;
  padding: 4px 0;
}


footer {
    background-image: linear-gradient(135deg, #1b1e2f, #2c1f3f);
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}

footer a {
    color: #fff;
}

footer a:hover,
footer a:focus {
    color: #EDEDED;
}

footer .social a {
    background: rgba(255, 255, 255, 0.1);
    height: 34px;
    width: 34px;
    display: inline-block;
    text-align: center;
    padding-top: 7px;
    border-radius: 50%;
    color: #fff;
}

footer .social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

footer .social {
    margin: 0;
}

footer small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

ul.nav.navbar-nav li:last-of-type a:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(168, 110, 212, 0.35);
}

.content-block:hover {
    box-shadow: 0px 20px 45px rgba(20, 27, 45, 0.15);
    transform: translateY(-6px);
}

.content-block:hover h3 {
    color: var(--brand-purple);
}

.content-block:hover .icon span,
.stra-content:hover .icon span,
.stra-content:hover h3 {
    color: var(--brand-blue);
}


.stra-content:hover .icon {
    border-color: var(--brand-blue);
}

.implementation-cycle {
    background: url('../images/nurse-bg.jpg') no-repeat;
    background-size: cover;
}

ul.list-orange {
    position: relative;
}

ul.list-orange li:before {
    content: "";
    height: 5px;
    width: 5px;
    background: var(--brand-purple);
    position: absolute;
    display: block;
    margin-top: 10px;
    left: 0;
    border-radius: 50%;
}

ul.list-orange li {
    margin-left: 15px;
    line-height: 1.8;
}

.icon-text-block {
    margin-bottom: 30px;
}

.quote-say {
    font-style: italic;
    background: rgba(255, 255, 255, 0.15);
    padding: 5px 10px;
    color: #fff;
    border-radius: 12px;
}



.mainPageBG {
    background-size:  cover;
    background-position:  center;
    background-repeat:  no-repeat;
}

.mainPageBG h2 {
    color:  #fff;
}

.form-control {
    border-radius:  5px;
    box-shadow:  none;
    font-size:  13px;
    color: #141414;
}

label {
    color: #2a3542;
    margin-top: 15px;
}

.btn-orange {
    background-image: linear-gradient(120deg, var(--brand-purple), var(--brand-blue));
    color: #fff;
    padding: 12px 32px;
    border-radius: 999px;
    margin-left: 15px;
    margin-top: 30px;
    border: none;
    display: inline-block;
}
.larg_logo {
        margin-top: -18px;
}
.img-responsive {
    height: auto;
    width: 100%;
    max-width: 100%;
    display: block;
}

.navbar-brand .img-responsive {
    width: auto;
    max-height: 72px;
}
#personas h3 {
    font-size: 20px;
    color: var(--brand-dark);
}

#personas p {
    color: var(--brand-muted);
}

#personas .col-md-4 {
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .after-slider .row,
    .strategy .row,
    .benefits .row,
    #personas .row:last-of-type {
        display: flex;
        flex-wrap: wrap;
    }

    .after-slider .row > [class*="col-"],
    .strategy .row > [class*="col-"],
    .benefits .row > [class*="col-"],
    #personas .row:last-of-type > [class*="col-"] {
        display: flex;
    }

    .after-slider .content-block,
    .strategy .stra-content,
    .benefits .ben-content,
    #personas .row:last-of-type > [class*="col-"] {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .strategy .row > .col-md-12,
    .benefits .row > .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}
