:root {
    --section-padding: 150px 0;
}

.orchestly-solution h3 {
    margin-bottom: 20px;
}

html,
body {
    transition: all .1s ease;
}


/* Inside Page */

.width-50>* {
    width: 50%;
}


/* Using Flex Sections */

.banner-wrap .content-wrap,
.benefit-section ul {
    display: flex;
    flex-wrap: wrap;
}


/* Banner */

.banner-wrap {
    /* height: calc(90vh - 110px); */
}

.banner-wrap .content-wrap {
    height: 100%;
    align-items: center;
}

.banner-wrap h1 {
    padding: 0 0 20px;
    opacity: 0;
    margin: -60px 0 0;
}

.banner-wrap.active h1 {
    opacity: 1;
    color: #293042;
}

.banner-wrap h1+p {
    margin: 0 0 40px;
}

.banner-left {
    padding: 0 120px 0 0;
}

.banner-right {
    position: relative;
    height: 100%;
    z-index: 1;
    margin: 0 0;
}

.banner-right img {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-55%);
    height: calc(97% - 50px);
    margin: 0;
    max-width: none;
    margin: 0 0 0 -20px;
}

.active .banner-right img {
    transform: translateX(-50%);
}


/* Spacing and content wrap width Common Sections */

.feature-sticky {
    padding: 100px 0;
}

.feature-section-wrap {
    padding: 150px 0;
}


/* Feature Sticky */

.feature-sticky,
.stickey-header {
    background: #293042;
}

.stickey-header {
    position: fixed;
    left: 0;
    top: -100px;
    width: 100%;
    transition: .5s all;
}

.feature-sticky ul,
.stickey-header ul {
    display: flex;
    justify-content: space-between;
    max-width: 1010px;
    margin: 0 auto;
}

.feature-sticky ul li {
    transform: translateY(-50px);
    transition-duration: .5s;
    opacity: 0;
}

.active.feature-sticky ul li {
    transform: translateY(0);
    opacity: 1;
}

.stickey-header ul {
    max-width: 900px
}

.feature-sticky li a,
.stickey-header ul li a {
    color: #fff;
    display: block;
    text-align: center
}

.stickey-header ul li a {
    padding: 20px 0;
    font-size: 18px;
}

.feature-sticky li span {
    width: 50px;
    height: 50px;
    display: block;
    margin: 0 auto 20px;
    background-image: url(/sites/default/files/orchestly/features/features-sprite.png);
    background-size: auto 50px;
}

.ico-layout {
    background-position: -710px 0;
}

.ico-blueprint {
    background-position: -765px 0;
}

.ico-automation {
    background-position: -825px 0;
}

.ico-jobs {
    background-position: -883px 0;
}

.ico-reports {
    background-position: -942px 0;
}

.ico-access-control {
    background-position: -1001px 0;
}

.fixed-header {
    top: 0;
    z-index: 100;
}

.stickey-header ul li a.active-tab {
    color: #FF7B00
}


/*  */

.feature-section-wrap .content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-section-wrap .orc-section:first-child {
    padding-bottom: 150px
}

.feature-images {
    max-width: 560px;
    width: 100%;
    text-align: center;
    padding: 0;
    position: relative;
    z-index: 1;
    padding: 60px 0;
}

.feature-images img {
    width: 100%;
}

.feature-content {
    max-width: 460px;
}

.feature-content h3 {
    margin-bottom: 20px
}

.feature-separate {
    background: #293042;
    color: #fff;
}

.feature-separate p {
    color: #ACB1C2;
}

.feature-separate .btn-more a {
    color: #fff;
}

.create-form-img img:nth-child(1) {
    max-width: 450px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

.orchestrate-img,
.request-img,
.optimize-images {
    padding: 0;
}

.orchestrate-img img {
    max-width: 510px;
}

.automating-img img:nth-child(1) {
    max-width: 460px;
    border-radius: 4px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
}

.request-img {
    text-align: right
}

.request-img img:nth-child(1) {
    max-width: 380px;
    border-radius: 4px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
}

.request-img img:nth-child(2) {
    width: 400px;
    position: absolute;
    bottom: 100px;
    left: 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
}

.optimize-img img:nth-child(2) {
    max-width: 140px;
    position: absolute;
    top: 20px;
    right: 100px;
    border-radius: 4px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
}

.work-seamlessly img:nth-child(1) {
    max-width: 510px;
    border-radius: 4px;
    box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.06);
}


/* Feature List Icons */

.feature-images ul {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.feature-images ul li {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(.4);
    opacity: 0;
}

.feature-images ul li span {
    background: url(/sites/default/files/orchestly/features/features-sprite.png);
    background-size: auto 60px;
    display: block;
}

@keyframes scleBubble {
    0% {
        transform: scale(.4);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    70% {
        transform: scale(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* Create Icons */

.create-icons li {
    background-color: #eee;
    z-index: -1;
    opacity: 1;
}

.create-icons li:nth-child(1) {
    top: 100px;
    left: 0;
    background-color: #D4EAFF;
    width: 80px;
    height: 80px;
    z-index: 1;
    animation-delay: 2.5s;
}

.create-icons li:nth-child(2) {
    bottom: 5px;
    left: 47%;
    width: 70px;
    height: 70px;
}

.create-icons li:nth-child(3) {
    top: 47%;
    right: 10px;
    z-index: 1;
    width: 70px;
    height: 70px;
}

.create-icons li:nth-child(4) {
    top: 60%;
    left: 5px;
}

.create-icons li:nth-child(5) {
    top: 10px;
    right: 110px;
}

.create-icons li span {
    background-size: auto 65px;
    width: 50px;
    height: 50px;
}

.create-icons li:nth-child(1) span {
    background-position: 0 0;
}

.create-icons li:nth-child(2) span {
    background-position: -51px 0;
}

.create-icons li:nth-child(3) span {
    background-position: -102px 0;
}

.create-icons li:nth-child(4) span {
    background-position: -146px 0;
}

.create-icons li:nth-child(5) span {
    background-position: -200px 0;
}


/* automating ICONS */

.automate-icons li {
    background-color: #373F55;
    z-index: -1;
}

.automate-icons li:nth-child(1) {
    top: 90px;
    right: -2px;
    background-color: #A6B6DF;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.automate-icons li:nth-child(3) {
    bottom: 180px;
    right: -1px;
    width: 70px;
    height: 70px;
}

.automate-icons li:nth-child(2) {
    bottom: 5px;
    left: 30%;
    width: 70px;
    height: 70px;
}

.automate-icons li:nth-child(4) {
    top: 15px;
    left: 40%;
}

.automate-icons li:nth-child(5) {
    top: 40%;
    left: 0;
}

.automate-icons li span {
    background-size: auto 65px;
    width: 50px;
    height: 50px;
}

.automate-icons li:nth-child(1) span {
    background-position: -250px 0;
}

.automate-icons li:nth-child(2) span {
    background-position: -300px 0;
}

.automate-icons li:nth-child(3) span {
    background-position: -350px 0;
}

.automate-icons li:nth-child(4) span {
    background-position: -400px 0;
}

.automate-icons li:nth-child(5) span {
    background-position: -447px 0;
}

.optimize-img:before,
.orchestrate-img:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: 3s height ease-in-out;
}

.active .optimize-img:before {
    height: 0;
}

.orchestrate-img:before {
    top: initial;
    bottom: 0;
}

.active .orchestrate-img:before {
    height: 0;
}


/* Seamlessy Users */

.seamlessy-users li:nth-child(1) {
    left: -20px;
    top: 48%;
    z-index: -1;
}

.seamlessy-users li:nth-child(2) {
    left: 60px;
    top: -20px;
}

.seamlessy-users li:nth-child(3) {
    left: 47%;
    bottom: 25px;
}

.seamlessy-users li:nth-child(4) {
    right: 130px;
    top: 25px;
}

.seamlessy-users li:nth-child(5) {
    right: -20px;
    top: 35%;
    z-index: -1;
}

.seamlessy-users li span {
    width: 60px;
    height: 60px;
    background-size: auto 60px;
}

.seamlessy-users li:nth-child(1) span {
    background-position: -500px 0;
}

.seamlessy-users li:nth-child(2) span {
    background-position: -570px 0;
}

.seamlessy-users li:nth-child(3) span {
    background-position: -640px 0;
}

.seamlessy-users li:nth-child(4) span {
    background-position: -710px 0;
}

.seamlessy-users li:nth-child(5) span {
    background-position: -780px 0;
}

.active .create-icons li,
.active .seamlessy-users li,
.active .automate-icons li {
    animation: scleBubble .8s ease-out;
    animation-fill-mode: both
}

.active .create-icons li:nth-child(1),
.active .seamlessy-users li:nth-child(1),
.active .automate-icons li:nth-child(1) {
    animation-delay: 1s;
}

.active .create-icons li:nth-child(2),
.active .seamlessy-users li:nth-child(2),
.active .automate-icons li:nth-child(2) {
    animation-delay: 1.2s;
}

.active .create-icons li:nth-child(3),
.active .seamlessy-users li:nth-child(3),
.active .automate-icons li:nth-child(3) {
    animation-delay: 1.3s;
}

.active .create-icons li:nth-child(4),
.active .seamlessy-users li:nth-child(4),
.active .automate-icons li:nth-child(4) {
    animation-delay: 1.4s;
}

.active .create-icons li:nth-child(5),
.active .seamlessy-users li:nth-child(5),
.active .automate-icons li:nth-child(5) {
    animation-delay: 1.5s;
}

@media screen and (min-width:2340px) {
    .banner-wrap,
    .top-separate {
        margin: 0 auto;
        max-height: 850px;
    }
    /* Opacity */
    .banner-wrap h1 {
        opacity: 1;
    }
    .feature-sticky ul li {
        transform: translateY(0);
        opacity: 1;
    }
    .feature-images ul li {
        transform: scale(1);
        opacity: 1;
    }
    .optimize-img:before,
    .orchestrate-img:before {
        display: none;
    }
}

@media screen and (min-width:1920px) {
    .banner-right img {
        margin: 0 0 0 20px;
        height: calc(100% - 120px);
    }
}

@media screen and (max-width: 1440px) {
    /* Spacing and content wrap width Common Sections */
    .feature-sticky,
    .feature-section-wrap {
        padding: 100px 0;
    }
    .feature-section-wrap .orc-section:first-child {
        padding-bottom: 100px;
    }
    /*  */
    .banner-wrap h1 {
        padding: 0 0 10px;
    }
    .banner-wrap h1+p {
        margin: 0 0 30px;
    }
    .feature-images {
        max-width: 500px;
    }
    .create-form-img img:nth-child(1),
    .automating-img img:nth-child(1) {
        max-width: 380px;
    }
    .orchestrate-img img {
        max-width: 420px;
    }
    .request-img img:nth-child(1) {
        max-width: 340px;
    }
    .request-img img:nth-child(2) {
        max-width: 340px;
    }
    .optimize-img img:nth-child(1) {
        max-width: 450px;
    }
    .optimize-img img:nth-child(2) {
        max-width: 120px;
    }
    .work-seamlessly img:nth-child(1) {
        max-width: 380px;
    }
}

@media screen and (max-width:1200px) {
    .banner-wrap {
        height: calc(100vh - 200px);
    }
    .banner-left {
        padding: 0 60px 0 0;
    }
    .banner-right img {
        height: calc(100% - 120px);
    }
    .feature-images {
        padding: 50px 0 40px;
        max-width: 400px;
    }
    .feature-content {
        max-width: 380px;
    }
    .create-form-img img:nth-child(1),
    .automating-img img:nth-child(1) {
        max-width: 320px;
    }
    .orchestrate-img img {
        max-width: 420px;
    }
    .request-img img:nth-child(1) {
        max-width: 300px;
    }
    .request-img img:nth-child(2) {
        max-width: 300px;
    }
    .optimize-img img:nth-child(1) {
        max-width: 380px;
    }
    .optimize-img img:nth-child(2) {
        max-width: 90px;
    }
    .work-seamlessly img:nth-child(1) {
        max-width: 350px;
    }
    .feature-section-wrap .orc-section:first-child {
        padding-bottom: 50px;
    }
    .feature-images ul li {
        width: 50px;
        height: 50px
    }
    .create-icons li:nth-child(1),
    .automate-icons li:nth-child(1) {
        width: 60px;
        height: 60px;
    }
    .create-icons li:nth-child(2),
    .create-icons li:nth-child(3),
    .automate-icons li:nth-child(2),
    .automate-icons li:nth-child(3) {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width:992px) {
    /* Opacity */
    .banner-wrap h1 {
        opacity: 1;
    }
    .width-50>* {
        width: 100%;
    }
    .top-separate:after {
        display: none;
    }
    .banner-wrap {
        height: auto;
    }
    .banner-wrap:after {
        opacity: 0;
        content: none;
    }
    .banner-left {
        max-width: 500px;
        width: 95%;
        margin: 0 auto;
        text-align: center;
        padding: 0;
    }
    .banner-wrap h1 {
        padding: 0 0 15px;
        max-width: 480px;
        margin: 0 auto;
    }
    .banner-right {
        text-align: center;
    }
    .banner-right img {
        position: static;
        transform: translate(0, 0);
        height: auto;
        max-width: 400px;
        width: 90%;
        transition-delay: 0s;
        margin: 40px 0 -10px;
    }
    .feature-sticky,
    .stickey-header,
    .optimize-img:before,
    .orchestrate-img:before,
    .request-img img:nth-child(2),
    .optimize-img img:nth-child(2),
    .feature-images ul {
        display: none;
    }
    .feature-section-wrap .content-wrap {
        flex-wrap: wrap;
    }
    .feature-images {
        order: 1;
        max-width: 100%;
        padding: 60px 0 0;
        transform: scale(1);
    }
    .feature-section-wrap .orc-section:first-child {
        padding-bottom: 80px;
    }
    .request-img {
        text-align: center;
    }
    .feature-content {
        margin: 0 auto;
        text-align: center;
    }
    .btn-more {
        max-width: 140px;
        margin: 30px auto 0;
    }
    .create-form-img img:nth-child(1),
    .orchestrate-img img,
    .automating-img img:nth-child(1),
    .feature-images img,
    .request-img img:nth-child(1),
    .work-seamlessly img:nth-child(1) {
        max-width: 400px;
    }
}

@media screen and (max-width:767px) {
    .wrapper.added-bg:before {
        content: none;
    }
    .banner-wrap {
        padding: 100px 0 0;
    }
    .banner-left {
        padding: 0;
    }
}

@media screen and (max-width: 480px) {
    .banner-left {
        text-align: left;
    }
    .banner-wrap h1 {
        margin: 0;
    }
}

@media (pointer: coarse) {
    .wrapper.added-bg:before {
        content: none;
    }
}

@media all and (-ms-high-contrast:none) {
    .banner-wrap,
    .top-separate {
        margin: 0 auto;
        max-height: 850px;
    }
    /* Opacity */
    .banner-wrap h1 {
        opacity: 1;
    }
}

.product-header-top {
    transition: 1s all;
}