h3 {
    margin-bottom: 20px;
}

.content-sec p {
    margin-bottom: 40px;
}

.trans-delay-5 {
    -webkit-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.first-sec-wrap,
.top-separate {
    background: url('/sites/default/files/orchestly/features/texture-wall.png') repeat;
    background-color: #E1E8E3;
}

.first-sec-wrap .banner-section .content-sec {
    padding: 80px 0 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.first-sec-wrap .amin-img-sec {
    padding-top: 70px;
    position: relative;
}

.first-sec-wrap .amin-img-sec .center-img img {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 5px;
}

.first-sec-wrap .amin-img-sec::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: #293042;
}

.second-sec-wrap {
    background: #293042;
    color: #fff;
}

.second-sec-wrap p {
    color: #ACB1C2;
}

.third-section .left-right-section .left-img-sec {
    position: relative;
}

.left-img-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.left-img-sec .left-img-wrap {
    width: 50%;
    position: relative;
}

.left-img-sec .left-img-wrap img {
    display: block;
    max-width: 480px;
    margin: 0 auto;
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    transition: 1s all;
}

.left-img-sec .left-flex {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.left-img-sec .left-flex .left-text-wrap {
    max-width: 460px;
}

.left-img-sec .left-flex .left-text-wrap h3 {
    opacity: 0;
    -webkit-transition: .5s ease .6s;
    -o-transition: .5s ease .6s;
    transition: .5s ease .6s;
}

.left-img-sec .left-flex .left-text-wrap p {
    opacity: 0;
    -webkit-transition: .5s ease .8s;
    -o-transition: .5s ease .8s;
    transition: .5s ease .8s;
}

.animated .left-flex .left-text-wrap h3 {
    opacity: 1;
}

.animated .left-flex .left-text-wrap p {
    opacity: 1;
}

.right-img-sec {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.right-img-sec .right-img-wrap {
    width: 50%;
    position: relative;
}

.right-img-sec .right-img-wrap img {
    display: block;
    max-width: 480px;
    margin: 0 auto;
    -webkit-transition: 1s all;
    -o-transition: 1s all;
    transition: 1s all;
}

.right-img-sec .right-flex {
    width: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.right-img-sec .right-flex .right-text-wrap {
    max-width: 460px;
}

.right-img-sec .right-flex .right-text-wrap h3 {
    opacity: 0;
    -webkit-transition: .5s ease .6s;
    -o-transition: .5s ease .6s;
    transition: .5s ease .6s;
}

.right-img-sec .right-flex .right-text-wrap p {
    opacity: 0;
    -webkit-transition: .5s ease .8s;
    -o-transition: .5s ease .8s;
    transition: .5s ease .8s;
}

.animated .right-flex .right-text-wrap h3 {
    opacity: 1;
}

.animated .right-flex .right-text-wrap p {
    opacity: 1;
}

.banner-section h1 {
    margin-bottom: 20px;
}

@-webkit-keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes bounceInFade {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: .4;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: .4;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounceInFade {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: .4;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: .4;
        transform: scale3d(1, 1, 1);
    }
}

@media only screen and (min-width: 1369px) and (max-width: 1440px) {
    .first-sec-wrap .amin-img-sec {
        padding-top: 60px;
    }
}

@media only screen and (min-width: 1180px) and (max-width: 1368px) {
    .first-sec-wrap .amin-img-sec .center-img img {
        max-width: 800px;
    }
    .right-img-sec .right-img-wrap {
        width: 50%;
    }
    .right-img-sec .right-img-wrap img {
        max-width: 360px;
    }
    .right-img-sec .right-img-wrap.set-privilege img {
        max-width: 290px;
        border-radius: 5px;
    }
    .right-img-sec .right-flex .right-text-wrap {
        max-width: 400px;
    }
    .left-img-sec .left-flex .left-text-wrap {
        max-width: 450px;
    }
    [class$="leftTop"] {
        left: 70px;
        top: -35px;
    }
    [class$="leftBot"] {
        left: 90px;
        bottom: 30%;
    }
    [class$="rightTop"] {
        right: 90px;
        top: 70px;
    }
    [class$="rightBot"] {
        right: 70px;
        bottom: 40px;
    }
}

@media (max-width: 1179px) {
    .first-sec-wrap .banner-section .content-sec {
        padding: 70px 0 20px;
    }
    .first-sec-wrap .amin-img-sec {
        padding-top: 40px;
    }
    .first-sec-wrap .amin-img-sec .center-img img {
        max-width: 650px;
    }
    .left-img-sec .left-img-wrap img {
        max-width: 300px;
        opacity: 1;
    }
    .left-img-sec .left-flex .left-text-wrap h3 {
        opacity: 1;
    }
    .left-img-sec .left-flex .left-text-wrap p {
        opacity: 1;
    }
    .right-img-sec .right-img-wrap {
        width: 50%;
    }
    .right-img-sec .right-img-wrap img {
        max-width: 300px;
        opacity: 1;
    }
    .right-img-sec .right-img-wrap.set-privilege img {
        max-width: 290px;
        border-radius: 5px;
    }
    .right-img-sec .right-flex .right-text-wrap {
        max-width: 400px;
    }
    .right-img-sec .right-flex .right-text-wrap img {
        opacity: 1;
    }
    .right-img-sec .right-flex .right-text-wrap h3 {
        opacity: 1;
    }
    .right-img-sec .right-flex .right-text-wrap p {
        opacity: 1;
    }
    [class$="rightTop"] {
        right: 50px;
        top: 80px;
    }
    .content-sec h1,
    .content-sec p,
    .content-sec .zo-features-access-btn {
        opacity: 1 !important;
        animation: unset;
    }
}

@media only screen and (max-width: 990px) {
    .first-sec-wrap .amin-img-sec .center-img img {
        max-width: 550px;
    }
}

@media only screen and (max-width: 768px) {
    .first-sec-wrap .banner-section .content-sec {
        padding: 50px 0 20px;
    }
    .first-sec-wrap .amin-img-sec .center-img img {
        max-width: 500px;
    }
    .left-img-sec {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .left-img-sec .left-img-wrap {
        width: 100%;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .left-img-sec .left-img-wrap img {
        max-width: 300px;
    }
    .left-img-sec .left-flex {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 60px;
    }
    .right-img-sec {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .right-img-sec .right-img-wrap {
        width: 100%;
    }
    .right-img-sec .right-img-wrap img {
        max-width: 300px;
    }
    [class^="bbl-icon"] {
        display: none;
    }
    .right-img-sec .right-flex {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 60px;
    }
    .right-img-sec .right-flex .right-text-wrap {
        max-width: 400px;
    }
    .right-img-sec .right-img-wrap img,
    .left-img-sec .left-img-wrap img {
        width: 280px;
        max-width: 80%;
    }
}

@media only screen and (max-width: 660px) {
    .first-sec-wrap .banner-section .content-sec {
        padding: 60px 0 20px;
    }
    .first-sec-wrap .amin-img-sec {
        padding-bottom: 50px;
    }
    .first-sec-wrap .amin-img-sec .center-img img {
        max-width: 500px;
    }
    .second-sec-wrap .left-img-sec {
        padding-top: 50px;
    }
}

@media only screen and (max-width: 480px) {
    .left-img-sec {
        padding: 40px 0;
    }
    .left-img-sec .left-flex {
        margin-bottom: 40px;
    }
    .right-img-sec {
        padding: 40px 0;
    }
    .right-img-sec .right-flex {
        margin-bottom: 40px;
    }
    .right-img-sec .right-flex .right-text-wrap {
        max-width: 400px;
    }
    .second-sec-wrap .left-img-sec {
        padding-top: 60px;
    }
    .second-sec-wrap .right-img-sec {
        padding-bottom: 80px;
    }
    .third-section .left-right-section:first-child .left-img-sec,
    .third-section .left-right-section:first-child .right-img-sec {
        padding-top: 80px;
    }
    .third-section .left-right-section:last-child .left-img-sec,
    .third-section .left-right-section:last-child .right-img-sec {
        padding-bottom: 80px;
    }
}

@media only screen and (max-width: 480px) {
    .first-sec-wrap .banner-section .content-sec {
        padding: 60px 0 20px;
    }
    .first-sec-wrap .amin-img-sec {
        padding-bottom: 30px;
    }
    [class^="bbl-icon"] {
        display: none;
    }
    .second-sec-wrap .left-img-sec {
        padding-top: 30px;
    }
    .left-img-sec .left-flex .left-text-wrap h3 {
        opacity: 1;
    }
    .left-img-sec .left-flex .left-text-wrap p {
        opacity: 1;
    }
    .right-img-sec .right-flex .right-text-wrap h3 {
        opacity: 1;
    }
    .right-img-sec .right-flex .right-text-wrap p {
        opacity: 1;
    }
}

@media(min-width:1861px) {
    .animated:not(.fist-content-section).left-flex .left-text-wrap h3 {
        opacity: 1;
    }
    .animated:not(.fist-content-section) .left-flex .left-text-wrap p {
        opacity: 1;
    }
    .animated .left-img-wrap img {
        opacity: 1;
    }
    .fist-content-section.middle-animated .left-flex .left-text-wrap h3 {
        opacity: 1;
    }
    .fist-content-section.middle-animated .left-flex .left-text-wrap p {
        opacity: 1;
    }
    .fist-content-section.middle-animated .left-img-wrap img {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    30% {
        transform: translateY(15px);
    }
    60% {
        opacity: 1;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media(min-width:1205px) {
    .first-sec-wrap .amin-img-sec .center-img img {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.75s ease-in 1.5s, transform 0.75s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s, -webkit-transform 0.75s cubic-bezier(0.39, 0.575, 0.565, 1) 1.5s;
    }
    .first-sec-wrap .amin-img-sec .animated .center-img img {
        opacity: 1;
        transform: translateY(0px);
    }
}