:root {
    --primary-color: #4D148C;
    --secondary-color: #F89B00;
    --white-color: #fff;
    --black-color: #000;
    --mild-gray: #eaeaea;
    --light-grey: #e5e5e5;
    --medium-grey: #EBEBEB;
    --box-grey: #f5f5f5;
    --dark-grey: #3d3935;
    --footer-grey: #212121;
    --common-border: #EBEBEB;
    --common-padding: 110px 0;
    --institute: #BB6BD9;
    --private: #F2C94C;
    --govt: #6FCF97;
    --red-color: #d65147;
    --green-color: #27AE60;
    --blue-color: #009cef;
    --pro-blue: #1370c7;
    --dark-color: #000000;
    --button-blue: #1370c7;
    --medium-grey-one: #b7b7b7;
    --medium-grey-two: #777777;
    --font-primary: 'Poppins', sans-serif;
    --text-blue: #1776cf;
    --text-grey: #747474;
    --input-text: #e3e4e5;
    --border-dark: #041628;
    --text-offwhite: #d9dad5;
    --premiere-blue: #31a8ff;
}
*, ::after, ::before {
    box-sizing: border-box;
}
body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-grey);
    overflow-x: hidden;
}
@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.eot');
    src: url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff') format('woff'), url('../fonts/fontawesome-webfont.ttf') format('truetype'), url('../fonts/fontawesome-webfont.svg#FontAwesome') format('svg');
    font-weight: normal;
    font-style: normal
}
/* Center the loader */
/*#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin: -75px 0 0 -75px;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #1370c7;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/

/* Add animation to "page content" */
/*.animate-bottom {
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}*/

/*#myDiv {
    display: none;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}*/
/*page*/

.h1 {
    font-size: 40px;
    font-weight: 700;
}
.h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    color: var(--button-blue);
    text-transform: uppercase;
}
.h3 {
    font-size: 26px;
    font-weight: 500;
}
.h4 {
    font-size: 19px;
    font-weight: 600;
}
.h5 {
    font-size: 18px;
    font-weight: 500;
}
p {
    font-size: 16px;
    color: #6d6e71;
}
a {
    cursor:pointer;
}
img {
    max-width: 100%;
}
.img-rounded {
    border-radius: 6px;
}
.img-rounded--has-shadow {
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
    box-shadow: 0 3px 20px rgba(0, 0, 0, .1);
}
.close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 33px;
    height: 32px;
    opacity: 0.4;
    background-color: #484848;
    border-radius: 4px;
    padding-top: 1px;
}
.close:hover {
    opacity: 1;
}
.close:before,  .close:after {
    position: absolute;
    left: 15px;
    content: ' ';
    height: 30px;
    width: 3px;
    background-color: #f3f3f3;
}
.close:before {
    transform: rotate(45deg);
}
.close:after {
    transform: rotate(-45deg);
}
.navbar-brand > img {
    margin-top: 4px;
}
.navbar-default--lula .navbar-brand > img {
    width: 80%;
    margin: 15px 0;
    transition: all 0.2s ease;
}
.navbar-default--lula.header--on-scroll .navbar-brand > img {
    width: 65%;
    transition: all 0.2s ease;
    margin-top: 10px;
    margin-bottom: 10px;
}
.fluid_width {
    /*height: 60px;*/
    padding: 0px 6vw;
}
.container--relative {
    position: relative;
}
/* on-scroll animations */
.os-animation {
    opacity: 0;
}
.os-animation.animated {
    opacity: 1;
}
.sidenav {
    height: 100%;
    width: 303px;
    position: fixed;
    z-index: 999999;
    top: 0;
    right: -303px;
    background-color: #000;
    overflow-x: hidden;
    transition: 0.5s;
    -webkit-box-shadow: -3px 2px 24px -9px rgba(0, 0, 0, 0.21);
    -moz-box-shadow: -3px 2px 24px -9px rgba(0, 0, 0, 0.21);
    box-shadow: -3px 2px 24px -9px rgba(0, 0, 0, 0.21);
}
.sidenav__inner-frame {
    position: relative;
    float: left;
    min-height: 100%;
    padding-bottom: 50px;
}
.sidenav .nav-close-section {
    position: relative;
    width: 100%;
    float: left;
    padding: 15px 0px 10px 0px;
}
.sidenav .nav-close-section a:hover {
    opacity: .6;
}
.sidenav .nav-data-section {
    position: relative;
    width: 100%;
    border-bottom: solid 0px #f3f3f3;
    padding: 0 30px;
    float: left;
}
.sidenav .nav-data-section h4 {
    float: left;
    width: 100%;
    font-size: 20px;
    color: #292728;
    margin-top: 0px;
    margin-bottom: 10px;
}
.sidenav .nav-data-section ul {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
}
.sidenav .nav-data-section ul li {
    list-style: none;
    /* margin: 8px 0px;*/
    float: left;
    width: 100%;
}
.sidenav .nav-data-section ul li a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    font-size: 16px;
    font-family: "filson-soft", sans-serif;
    font-weight: 300;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    padding: 14px 0 8px;
}
.sidenav .nav-data-section ul li .link_select {
    border-bottom: 2px solid var(--premiere-blue);
}
.sidenav .nav-data-section ul li a:hover {
    color: var(--red-color);
}
.sidenav .nav-data-section ul li:last-child {
    margin-bottom: 0;
}
.sidenav .nav-data-section .appstore {
    border: solid 1px #ccc;
    border-radius: 5px;
    margin: 10px 0 10px 0;
}
.sidenav .nav-data-section .global-footer__get-app-btn {
    clear: none;
}
.sidenav .nav-data-section .global-footer__get-app-btn img {
    width: 140px;
}
.sidenav .btn {
    float: left;
    color: #fff !important;
    font-size: 16px;
    font-weight: 300;
    background-color: var(--red-color);
    padding: 3px 20px;
    border-radius: 4px;
    text-transform: none;
}
.sidenav .btn.btn-white-outline {
    background-color: #fff !important;
    color: var(--red-color) !important;
    border: solid 1px var(--red-color) !important;
    margin-top: 15px;
}
.sidenav .btn.btn-white-outline:hover {
    background-color: var(--red-color) !important;
    color: #fff !important;
}
.sidenav .closebtn {
    position: relative;
    top: 0;
    right: 4vw;
    float: right;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.sidenav .nav-data-section.social-media {
    padding-top: 8px;
    padding-bottom: 8px;
    position: absolute !important;
    bottom: 0px;
    border-top: solid 1px #f3f3f3 !important;
}
.slide_login {
    margin-top: 20px;
    text-align: center;
}
.social-media a {
    position: relative;
    text-align: center;
    width: 32px;
    height: 32px;
    margin-right: 20px;
    display: inline-block !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    color: #5c5c5c !important;
    font-size: 25px !important;
}
.social-media a:last-child {
    margin-right: 0;
}
.social-media a:hover {
    opacity: .8;
}

@media (max-width: 767px) {
.sidenav .nav-data-section {
    padding: 0 30px;
}
}

@media screen and (max-height: 450px) {
.sidenav {
    padding-top: 15px;
}
.sidenav a {
    font-size: 18px;
}
}
/*buttons*/

.btn {
    box-shadow: none !important;
    outline: none !important;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.btn:hover {
    opacity: .8;
}
.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    border-radius: 3px;
}
.btn-primary {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    background: var(--red-color) !important;
    border: 1px solid var(--red-color) !important;
    color: #fff !important;
    padding: 18px 25px;
    letter-spacing: 1px;
    border-radius: 4px;
}
/*slick theme*/

/* Arrows */

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,  .slick-prev:focus,  .slick-next:hover,  .slick-next:focus {
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,  .slick-prev:focus:before,  .slick-next:hover:before,  .slick-next:focus:before {
    opacity: 1;
}
.slick-prev.slick-disabled:before,  .slick-next.slick-disabled:before {
    opacity: .25;
}
.slick-prev {
    left: -25px;
}
.slick-next {
    right: -25px;
}
/* Dots */

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}
.slick-dots {
    position: absolute;
    bottom: -25px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 0 !important;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #6d6e71;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: none !important;
}
.slick-dots li button:hover,  .slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,  .slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li.slick-active button {
    background: var(--red-color);
}
.slick-track, .slick-list, .slick-slide {
    outline: none !important;
}
/*header*/



* {
    box-sizing: border-box;
}
.author {
    color: white;
    line-height: 66px;
    margin: 0 15px 0 auto;
    font-size: 95%;
}
.author a {
    color: #bfbfbf;
    text-decoration: none;
}
/** Hover-related CSS **/
#examples {
    opacity: 0.95;
    padding: 15px 0px;
    margin: 26px auto 0px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
.navbar-default--lula.header--on-scroll #examples {
    margin: 15px auto 0px;
}
#examples .example .hover:before, #examples .example .hover:after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 0px;
    height: 2px;
    margin: 5px 0 0;
    transition: all 0.2s ease-in-out;
    transition-duration: 0.75s;
    opacity: 0;
    background-color: var(--premiere-blue);
}
#examples .example .hover.hover-1:before, #examples .example .hover.hover-1:after {
    left: 0;
}
#examples .example .hover.hover-2:before, #examples .example .hover.hover-2:after {
    right: 0;
}
#examples .example .hover.hover-3:before {
    left: 50%;
}
#examples .example .hover.hover-3:after {
    right: 50%;
}
#examples .example .hover.hover-4:before {
    left: 0;
}
#examples .example .hover.hover-4:after {
    right: 0;
}
#examples .example:hover {
    cursor: pointer;
}
#examples .example:hover .hover:before,  #examples .example:hover .hover:after {
    width: 100%;
    opacity: 1;
}
#examples .example:hover .hover.hover-3:before,  #examples .example:hover .hover.hover-3:after,  #examples .example:hover .hover.hover-4:before,  #examples .example:hover .hover.hover-4:after {
    width: 50%;
}
.login_button a {
    border: 1px solid #a4a4a4;
    border-opacity: 0.7;
    padding: 8px 25px !important;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 5px 20px 0 rgba(0, 0, 0, .1);
    background: transparent;
    margin-top: -10px;
    display: inline-block;
}
.navbar-brand__logo-default {
    height: 60px;
}
.navbar-brand__logo-onscroll {
    display: none !important;
    height: 60px;
}
.navbar-default--lula.header--on-scroll .navbar-brand__logo-default {
    display: none !important;
}
.navbar-default--lula.header--on-scroll .navbar-brand__logo-onscroll {
    display: block !important;
}
.navbar-default--lula, .navbar-default .navbar-nav > li > a {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}
.navbar-default--lula {
    border-radius: 0 !important;
    border: 0;
    margin: 0 !important;
}
.navbar-default .navbar-brand {
    height: auto;
    padding: 0px 0px;
}
.navbar-default .navbar-nav > li > a {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    padding: 0px;
}
.navbar-default .navbar-nav > li > a:hover,  .navbar-default .navbar-nav > li > a:focus {
    color: var(--premiere-blue);
    background-color: transparent;
}
.navbar-btn-wrap {
    position: relative;
    float: left;
    margin-top: 25px;
    padding-left: 10px;
    padding-right: 10px;
}
.navbar-btn-green {
    float: left;
    color: #fff !important;
    font-size: 16px;
    font-weight: 300;
    background-color: var(--red-color);
    padding: 3px 20px;
    border-radius: 4px;
}
.navbar-default .container {
    position: relative;
}
.navbar-default--lula .navbar-right {
}
.navbar-toggle-right-wrap {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -20px;
}
.navbar-toggle-right-wrap .hamburger {
    padding: 10px 15px 15px 15px;
}
.navbar-toggle-right-wrap .hamburger-box {
    width: 32px;
}
.navbar-toggle-right-wrap .hamburger-inner,  .navbar-toggle-right-wrap .hamburger-inner:after,  .navbar-toggle-right-wrap .hamburger-inner:before {
    width: 32px;
    height: 2px;
    background-color: #fff;
}
.header--on-scroll .navbar-toggle-right-wrap .hamburger-inner, .header--on-scroll .navbar-toggle-right-wrap .hamburger-inner:after, .header--on-scroll .navbar-toggle-right-wrap .hamburger-inner:before {
    background-color: var(--premiere-blue);
}
.navbar-default--lula {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    background-color: transparent;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
.header--on-scroll {
    background: var(--black-color);
    border-bottom: 1px solid var(--premiere-blue);
}
.navbar-toggle-right {
    float: left;
    padding: 10px 15px;
}
.navbar-toggle-right:hover {
    opacity: .6 !important;
}
.navbar-default .navbar-nav > li > a {
    font-size: 16px;
}

@media (min-width: 992px) {
.navbar-nav > li > a {
    padding-top: 0px;
    padding-bottom: 0px;
}
.navbar-nav > li {
    margin-left: 25px;
    margin-right: 25px;
}
.navbar-nav > li:last-child {
    margin-right: 0;
}
.navbar-default--lula {
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.navbar-default--lula.header--on-scroll {
    background: var(--black-color) !important;
    -webkit-box-shadow: 0px 0px 17px -8px rgba(0, 0, 0, 0.48);
    -moz-box-shadow: 0px 0px 17px -8px rgba(0, 0, 0, 0.48);
    box-shadow: 0px 0px 17px -8px rgba(0, 0, 0, 0.48);
    border-bottom: 2px solid #31a8ff;
}
.navbar-default--lula.header--on-scroll .navbar-nav > li > a {
    color: #6d6e71;
}
.navbar-default.header--on-scroll .navbar-nav > li > a:hover,  .navbar-default.header--on-scroll .navbar-nav > li > a:focus {
    color: var(--premiere-blue);
}
}
.navbar-default--lula .menu-ico-normal {
    transition: .3s opacity;
    opacity: 1;
    display: block;
}
.navbar-default--lula .menu-ico-scroll {
    transition: .3s opacity;
    opacity: 0;
    display: none;
}
.navbar-default--lula.header--on-scroll .menu-ico-normal {
    transition: .3s opacity;
    opacity: 0;
    display: none;
}
.navbar-default--lula.header--on-scroll .menu-ico-scroll {
    transition: .3s opacity;
    opacity: 1;
    display: block;
}
.navbar-toggle-right-wrap {
    display: none;
}

@media (max-width: 1366px) {
.navbar-brand img {
    width: 80%;
    margin-top: 20px;
}
}
.play_but {
    position: absolute;
    height: 148px;
    z-index: 100;
    width: 148px;
    right: 0;
    left: 0;
    margin: 0 auto;
    top: 0;
    margin-top: 36vh;
}
.play_but.mobile {
    display: none;
}
.play_but img {
    transition: transform 1s, filter 1.5s ease-in-out;
    transform-origin: center center;
    filter: brightness(80%);
    cursor: pointer;
}
.play_but img:hover {
    filter: brightness(100%);
    transform: scale(0.9);
}
.vid-play {
    width: 100%;
}
.vid-play video {
    width: 100%;
    max-width: 550px;
    outline: 0;
    border: 4px solid #fff;
}
.gif-play {
    position: relative;
}
.gif-play::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 41%;
    margin: 0 auto;
    background: url(../images/play_button.png) center center no-repeat;
    background-size: 76px;
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 1s, filter 1.5s ease-in-out;
    transform-origin: center center;
    filter: brightness(90%);
}
.gif-play:hover:after {
    filter: brightness(100%);
    transform: scale(0.9);
}
.gif-play.play::after {
    display: none;
}
.emam-modal .modal-dialog {
    width: 100%;
    max-width: 900px;
    margin: 8% auto;
}
.emam-modal .modal-dialog .modal-content {
    background-color: #333;
    border: 0;
    border-radius: 0;
}
.modal-backdrop.in {
    opacity: .8;
}
.emam-modal .modal-dialog .modal-body {
    padding: 0;
}
.emam-modal .modal-dialog .modal-content .modal-footer {
    border-top: 0;
    padding: 10px;
}
.emam-modal .modal-dialog .modal-content .modal-footer .btn-blue {
    padding: 6px 15px;
    font-size: 16px;
    background: #000;
    color: #eee;
}

@media (max-width: 992px) {
.play_but.desktop {
    top: -11%;
    text-align: center;
}
.play_but.mobile {
    display: block;
    position: static;
    margin-top: 25px;
    width: 130px;
}
.nav {
    display: none;
}
.navbar-toggle-right-wrap {
    display: block;
}
}
/*home elements*/

.home-main {
    float: left;
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 99;
    background-position: center;
    background-image: url(../images/main_banner.jpg);
    background-attachment: fixed;
    background-size: cover
}
.tree01 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 100;
}
.tree02 {
    position: absolute;
    bottom: 0px;
    right: 0px;
    z-index: 101
}
.home-left {
    float: left;
    width: 33%;
    height: 100vh;
    z-index: 100;
    position: absolute;
    padding-left: 6vw;
    box-sizing: border-box;
    background-image: url("../images/home_left_back.png");
    background-repeat: repeat;
}
.home-left h1 {
    font-size: 3.3vw;
    margin-top: 200px;
    margin-left: -15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #fff;
    line-height: 76px;
    color: var(--blue-color);
}
.home-left h1 a {
    color: var(--white-color);
    text-decoration: none;
    transition: .3s;
}
.home-left h1 a:hover {
    color: var(--red-color);
    text-decoration: none;
}
.bottom_home {
    position: absolute;
    height: 25vh;
    bottom: 0px;
    width: 100%;
    z-index: 101;
    overflow: hidden;
}
.flex-container {
    display: flex;
    align-items: stretch;
    /*flex-direction: row-reverse;*/
    background-color: rgba(0, 0, 0, 0.5);
}
.flex-container > div {
    color: white;
    width: 100px;
    margin: 0px;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
    height: 400px;
}
.flex-container .adobe_folder {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    width: 33%;
    margin: 0px;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
}
.flex-container .aws_folder {
    color: white;
    width: 67%;
    margin: 0px;
    text-align: center;
    line-height: 75px;
    font-size: 30px;
}
.adobe_folder h3 {
    margin: 42px 0px 22px 0px;
    font-size: 30px;
    font-weight: 400;
}
.aws_folder h4 {
    color: var(--red-color);
    font-size: 38px;
    font-family: 'Poppins', sans-serif;
    margin: 56px 0px 12px 0px;
}
.aws_folder h5 {
    color: var(--white-color);
    font-size: 36px;
    font-family: 'Poppins', sans-serif;
    margin: 12px 0px 10px 0px;
}
.home-sub01 {
    height: 100vh;
    position: relative;
}
.sub_sectionbox {
    text-align: center;
    height: 90%;
    padding-top: 90px;
}
.sub_sectionbox h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 600;
}
.sub_sectionbox h5 {
    font-size: 30px;
    font-weight: 500;
}
.homepro_features {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    top: 0px;
    z-index: 99;
}
.features_pillar_left {
    margin-left: 6vw;
    margin-top: 10%;
}
.features_pillar_left .features {
    border-radius: 50%;
    padding: 12px;
    border: 4px solid rgba(255, 255, 255, .5);
    width: 290px;
    height: 290px;
}
.features_pillar_right {
    margin-right: 6vw;
    margin-top: 10%;
}
.features_pillar_right .features {
    border-radius: 50%;
    padding: 12px;
    border: 4px solid rgba(255, 255, 255, .5);
    width: 290px;
    height: 290px;
}
.features {
    text-align: center;
    margin-bottom: 64px;
}
.features h3 {
    font-size: 24px;
    margin: 0px auto;
    padding: 0px;
    text-align: center;
    text-transform: uppercase;
    width: 80%;
}
.s-about {
    background-color: var(--pro-blue);
}
.s-about .produce_animo_back {
    width: 58%;
    background-repeat: no-repeat;
    margin: auto;
    padding: 20px 0px 40px 0px;
    z-index: 100;
    position: relative;
}
.s-about .produce_animo_back figure {
    margin: 50px auto 0;
}
.s-about .produce_animo_back figure img {
    border: 5px solid #fff;
}
.s-about .features {
    background-color: #1168b9
}
.s-about h2 {
    color: var(--white-color);
    font-weight: 600;
}
.s-about h3 {
    color: #b5dbff
}
.s-about h5 {
    color: #b5dbff;
}
.s-collaborate {
    background-color: #edf0f3;
}
.s-collaborate .features {
    background-color: #b8d3ff;
}
.s-collaborate h5 {
    color: #545454;
}
.s-collaborate .produce_animo_back {
    width: 58%;
    background-repeat: no-repeat;
    margin: auto;
    background-image: url("../images/collaborate_back.png");
    padding: 10px 0px 30px 0px;
    z-index: 100;
    position: relative;
}
.s-collaborate .produce_animo_back figure {
    margin: 50px auto 0;
}
.s-collaborate .produce_animo_back figure img {
    border: 5px solid #fff;
}
.s-collaborate h2 {
    color: var(--pro-blue);
    font-weight: 600;
}
.s-collaborate .features h3 {
    color: #1370c7;
}
.s-collaborate h5 {
    color: #545454;
}
.s-archive {
    background-color: #37527d;
}
.s-archive h2 {
    color: var(--white-color);
    font-weight: 600;
}
.s-archive .produce_animo_back {
    width: 58%;
    background-repeat: no-repeat;
    margin: auto;
    background-image: url("../images/archive_back.png");
    padding: 10px 0px 40px 0px;
    z-index: 100;
    position: relative;
}
.s-archive .produce_animo_back figure {
    margin: 50px auto 0;
}
.s-archive .produce_animo_back figure img {
    border: 5px solid #fff;
}
.s-archive .features {
    background-color: rgba(118, 155, 213, 0.5);
}
.s-archive h2 {
    color: var(--white-color);
    font-weight: 600;
}
.s-archive .features h3 {
    color: #e0ecff;
}
.s-archive h5 {
    color: rgba(255, 255, 255, 0.7);
}
.produce_sec {
    background-image: url("../images/produce_back.png");
}
.collaborate_sec {
    background-image: url("../images/produce_back.png");
}
.archive_sec {
    background-image: url("../images/produce_back.png");
}
.carousel_container {
    margin: 70px auto 20px auto;
    display: none
}
/*carousel*/
* {
    box-sizing: border-box;
}
.carousel-circle {
    color: #bcd9f4;
    width: 200px;
    height: 200px;
    background: #1168b8;
    border: 5px solid #4e96d8;
    border-radius: 100%;
    text-align: center;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    flex-direction: column;
}
.em-caousel.owl-carousel .owl-nav button.owl-next, .em-caousel.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 36%;
    width: 25px;
    height: 53px;
    outline: 0;
}
.em-caousel.owl-carousel .owl-nav button.owl-next span,  .em-caousel.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}
.em-caousel.owl-carousel .owl-nav button.owl-prev,  .em-caousel.owl-carousel .owl-nav button.owl-prev:hover {
    left: 20px;
    background: url(../images/angle-left.png) center center no-repeat;
}
.em-caousel.owl-carousel .owl-nav button.owl-next,  .em-caousel.owl-carousel .owl-nav button.owl-next:hover {
    right: 20px;
    background: url(../images/angle-right.png) center center no-repeat;
}

.vid-play video::-webkit-media-controls {
    display: none;
}

/* Could Use thise as well for Individual Controls */
.vid-play video::-webkit-media-controls-play-button {
}

.vid-play video::-webkit-media-controls-volume-slider {
}

.vid-play video::-webkit-media-controls-mute-button {
}

.vid-play video::-webkit-media-controls-timeline {
}

.vid-play video::-webkit-media-controls-current-time-display {
}

/*InnerPageStyles*/

.container-moreinfo {
    background: url(../images/moreinfo_back.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.container-moreinfo .title-main, .container-saas .title-main {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 6vw;
    padding-right: 6vw;
}
.container-learnmore {
    background: url(../images/learnmore_back.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}

    .container-learnmore .title-main, .container-saas .title-main {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        padding-left: 6vw;
        padding-right: 6vw;
    }
.normal-inr {
    margin-top: 36px !important;
}
.sub-title-01 {
    color: #9ed0ff;
    text-align: center;
    margin: 20px auto;
    font-size: 30px;
    font-weight: normal;
    width: 80%;
}
.spl .box {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    align-content: stretch
}
.solution-brand {
    background: rgba(0, 0, 0, 0.7);
    width: 18%;
    margin: 0 1% 30px;
    border-radius: 10px;
    text-align: center;
    padding: 20px 0px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    cursor: pointer;
}
.solution-brand:hover {
    background: rgba(0, 0, 0, 0.9);
}
.solution-brand figure {
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
}
.solution-brand figure img {
    max-width: 100%;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
.solution-brand:hover figure img {
    -webkit-transform: scale(1.1) rotate(0.01deg);
    transform: scale(1.1) rotate(0.01deg);
}
.solution-brand h3 {
    color: #fff;
    margin: 5px 0px;
    font-size: 22px;
    text-transform: uppercase;
}
.document-box {
    background: rgba(248, 248, 248, 0.1);
    width: 22%;
    margin: 24px 1%;
    border-radius: 20px;
    text-align: center;
    padding: 18px;
    border: 2px solid rgba(248, 248, 248, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}
.document-box:hover {
    background: rgba(174, 210, 244, 0.4);
    border: 2px solid rgba(248, 248, 248, 0.5);
    cursor: pointer;
}
.document-box img {
    max-width: 254px;
}
.document-box h4 {
    color: #fff;
    margin: 5px 0px;
    font-size: 20px;
    line-height: 26px;
}
.document-rqst {
    background: rgba(19, 112, 199, 1);
    cursor: pointer;
}
.document-rqst:hover {
    background: #387dbd;
}
.btn-container {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 50px;
}
.btn-container a {
    background-color: #1370c7;
    border-radius: 6px;
    padding: 8px 30px;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    margin: 0px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-container a:hover {
    background-color: #387dbd;
}
.spl-video-container {
    text-align: center;
    padding: 30px 0px;
}
.spl-video-container img {
    margin: 0px auto;
    border: 5px solid #fff
}
.container-intPartners {
    background: url(../images/integration_back01.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.container-intPartners .title-main {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 6vw;
    padding-right: 6vw;
}
.container-techPartners {
    background: url(../images/technology_back.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.container-techPartners .title-main {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 6vw;
    padding-right: 6vw;
}
.container-documents {
    background: url(../images/moreinfo_back.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.container-documents .title-main {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 6vw;
    padding-right: 6vw;
}
.container-documentation {
    background: url(../images/documentation_back.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    padding-bottom: 70px;
}
.container-documentation .title-main {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 6vw;
    padding-right: 6vw;
}
.container-aboutus {
    background: url(../images/aboutus_back.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.container-aboutus .title-main {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-left: 6vw;
    padding-right: 6vw;
}
.col-container {
    display: table;
    width: 100%;
}
.col {
    display: table-cell;
    padding: 0px 30px;
    vertical-align: top;
}
.col p {
    font-size: 18px;
    color: var(--white-color);
    line-height: 26px;
}
.abt-box01 {
    width: 32%;
    text-align: center;
}
.abt-spl {
    vertical-align: middle !important;
    background: rgba(0, 0, 0, .7);
}
.abt-spl h4 {
    color: var(--white-color);
    font-size: 26px;
}
.team-box {
    padding: 20px 0px 50px 0px;
    font-family: 'Roboto', sans-serif;
    background-color: #222;
}
.team-box h3 {
    text-align: center;
    font-size: 32px;
    margin: 30px 0px;
    color: var(--white-color);
    text-transform: uppercase;
}
.team-box .row {
    padding: 0px;
    margin: 0px;
}
.team-box .profile-photo {
    text-align: center;
}
.team-box .profile-photo a {
    border: 3px solid #4e4e4e;
    border-radius: 12px;
    padding: 8px;
    display: inline-block;
    margin-top: 12px;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
.team-box .profile-photo a:hover {
    border: 3px solid var(--red-color);
    background: rgba(0,0,0,0.1);
}
.team-box .profile-photo a figure {
    overflow: hidden;
    border-radius: 8px;
}
.team-box .profile-photo a img {
    transition: all 0.5s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}
.team-box .profile-photo a:hover img {
    -webkit-transform: scale(1.1) rotate(0.01deg);
    transform: scale(1.1) rotate(0.01deg);
}
.team-box h4 {
    font-size: 30px;
    margin: 30px 0px 10px 0px;
    color: var(--white-color);
}
.team-box h5 {
    font-size: 20px;
    margin: 5px 0px 34px 0px;
    color: var(--white-color);
}
.safe-box01 {
    text-align: center;
    color: var(--white-color);
}
.safe-box02 {
    text-align: center;
    color: var(--white-color);
}
.safe-box02 img {
    border: 5px solid #fff;
}
.topbtn-container {
    display: flex;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 40px;
}
.topbtn-container a {
    background-color: #1370c7;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.topbtn-container a:hover {
    background-color: #387dbd;
}
.safe-mainbox {
}
.safe-mainbox h4 {
    font-size: 30px;
    text-transform: uppercase;
}
.safe-mainbox h5 {
    font-size: 20px;
    line-height: 28px;
}
/*footer-sub*/
.aws_box {
    background-image: url("../images/footer_back.jpg");
    background-repeat: no-repeat;
    min-height: 200px;
    text-align: center;
    padding: 60px 0px;
    background-size: cover;
}
.aws_box h3 {
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1370c7;
}
.aws_box h4 {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: #252525;
    margin-bottom: 18px;
}
.sign_in_btn {
    position: absolute;
    background-color: #1370c7;
    width: 150px;
    height: 150px;
    z-index: 105;
    bottom: 18vh;
    left: 29%;
    border-radius: 50%;
}
.sign_in_btn a {
    color: #fff;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.sign_in_btn a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #0088d1;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.7), 0 3px 6px 0 rgba(0, 0, 0, 0.10);
}
.signup_main {
    margin-left: -100px;
}
.res_signin {
    display: none;
    margin-top: 16px;
}
.s-collaborate .carousel-circle {
    background: #badeff;
    border: 5px solid #4e96da;
    color: #1370c7
}
.s-archive .carousel-circle {
    background: #5777a9;
    border: 5px solid #9ba9be;
    color: #e0ecff
}
.owl-stage {
    margin: 0px auto !important;
}
.credential-note {
    font-size:12px;
    color:#fff;
    text-align:center;
    font-style:italic;
    padding:4px 0px;
}

/*footer*/
.s-footer {
    background: var(--black-color);
    color: var(--light-grey);
    width: 100%;
}
.cloud_footerlinks {
    padding: 48px 0px;
}
.emam-cloudnews {
    width: 90%;
}
.emam-cloudnews h4 {
    margin-bottom: 0px;
}
.emam-cloudnews h4 label {
    font-size: 14px;
    color: #ff6155;
    font-weight: normal;
    margin-left: 12px;
}
.emam-cloudnews p {
    margin: 0px 0px 24px 0px;
    padding: 0px;
    color: var(--light-grey);
}
.emam-cloudnews a {
    color: var(--red-color);
    font-weight: bold;
    cursor: pointer;
}
.cloud_footerlinks ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.cloud_footerlinks ul li {
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.cloud_footerlinks ul li a {
    color: #6d6e71;
    text-decoration: none;
    transition: 0.3s;
}
.cloud_footerlinks ul li a:hover {
    color: var(--white-color);
}
.emam-cloud-credentials {
    text-align: left;
    padding-left: 0px;
}
.emam-cloud-credentials .social {
    margin-top: 24px;
    display: flex;
}
.emam-cloud-credentials .social a {
    margin-right: 5px;
    opacity: 0.8;
}
.emam-cloud-credentials .social a:hover {
    opacity: 1;
}
.emam-cloud-credentials address {
    font-size: 18px;
    color: #6d6e71
}
.copyright {
    background: #000;
    color: #6d6e71;
    font-size: 13px;
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 6vw;
}
.trems-policy {
    text-align: right;
    float: left;
    width: 50%;
}
.trems-policy a {
    color: #6d6e71;
    margin-right: 12px;
    margin-left: 12px;
    text-decoration: none;
    cursor: pointer;
}
.trems-policy a:hover {
    color: #d5d5d5;
}
.copy-right {
    float: left;
    width: 50%;
}
.clear-footer {
    display: none;
}
/*utility classes*/
.w-100 {
    width: 100% !important;
}
.h-100 {
    height: 100% !important;
}
.mw-100 {
    max-width: 100% !important;
}
.mh-100 {
    max-height: 100% !important;
}
.m-0 {
    margin: 0 !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.ml-0 {
    margin-left: 0 !important;
}
.mx-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.my-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.p-0 {
    padding: 0 !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pr-0 {
    padding-right: 0 !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pl-0 {
    padding-left: 0 !important;
}
.px-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.py-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

@media (min-width: 768px) {
.m-sm-0 {
    margin: 0 !important;
}
.mt-sm-0 {
    margin-top: 0 !important;
}
.mr-sm-0 {
    margin-right: 0 !important;
}
.mb-sm-0 {
    margin-bottom: 0 !important;
}
.ml-sm-0 {
    margin-left: 0 !important;
}
.mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.p-sm-0 {
    padding: 0 !important;
}
.pt-sm-0 {
    padding-top: 0 !important;
}
.pr-sm-0 {
    padding-right: 0 !important;
}
.pb-sm-0 {
    padding-bottom: 0 !important;
}
.pl-sm-0 {
    padding-left: 0 !important;
}
.px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
}

@media (min-width: 992px) {
.m-md-0 {
    margin: 0 !important;
}
.mt-md-0 {
    margin-top: 0 !important;
}
.mr-md-0 {
    margin-right: 0 !important;
}
.mb-md-0 {
    margin-bottom: 0 !important;
}
.ml-md-0 {
    margin-left: 0 !important;
}
.mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.p-md-0 {
    padding: 0 !important;
}
.pt-md-0 {
    padding-top: 0 !important;
}
.pr-md-0 {
    padding-right: 0 !important;
}
.pb-md-0 {
    padding-bottom: 0 !important;
}
.pl-md-0 {
    padding-left: 0 !important;
}
.px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
}

@media (min-width: 1200px) {
.m-lg-0 {
    margin: 0 !important;
}
.mt-lg-0 {
    margin-top: 0 !important;
}
.mr-lg-0 {
    margin-right: 0 !important;
}
.mb-lg-0 {
    margin-bottom: 0 !important;
}
.ml-lg-0 {
    margin-left: 0 !important;
}
.mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
.my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.p-lg-0 {
    padding: 0 !important;
}
.pt-lg-0 {
    padding-top: 0 !important;
}
.pr-lg-0 {
    padding-right: 0 !important;
}
.pb-lg-0 {
    padding-bottom: 0 !important;
}
.pl-lg-0 {
    padding-left: 0 !important;
}
.px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}
.py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}
}
.text-justify {
    text-align: justify !important;
}
.text-nowrap {
    white-space: nowrap !important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.text-center {
    text-align: center !important;
}
/*media queries*/

/*achievements so far only media*/

@media (max-width: 1600px) {
.navbar-default--lula .navbar-brand > img {
    width: 75%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.sign_in_btn {
    left: 28%;
}
.sub_sectionbox h2 {
    font-size: 40px;
}
.sub_sectionbox h5 {
    font-size: 18px;
    font-weight: 500;
}
.s-about .produce_animo_back {
    padding: 0px 0px 10px 0px;
}
.s-about .produce_animo_back figure {
    width: 60%;
    margin: 28px auto 0;
}
.s-about .produce_animo_back figure img {
    border: 4px solid #fff;
}
.s-collaborate .produce_animo_back {
        padding: 0px 0px 20px 0px;
    }
.s-collaborate .produce_animo_back figure {
    margin: 28px auto 0;
    width: 60%;
}
.s-collaborate .produce_animo_back figure img {
    border: 4px solid #fff;
}

.s-archive .produce_animo_back {
        padding: 0px 0px 10px 0px;
    }
.s-archive .produce_animo_back figure {
    margin:28px auto 0;
    width: 60%;
}
.s-archive .produce_animo_back figure img {
    border: 4px solid #fff;
}
.produce_animo_back {
    background-size: contain !important;
    width: 51% !important;
}
.features {
    text-align: center;
    margin-bottom: 30px;
}
.features h3 {
    font-size: 16px;
    width: 70%;
}
.features_pillar_left .features {
    width: 230px;
    height: 230px;
}
.features_pillar_right .features {
    width: 230px;
    height: 230px;
}
.features img {
    margin-top: -10px;
}
.solution-brand figure {
    width: 65%;
}
.aws_box {
    padding: 40px 0px;
}
.aws_box h3 {
    font-size: 40px;
}
}

/*@media (min-width: 1200px) and (max-width: 1600px) {
}*/

@media (max-width: 1493px) {
.navbar-default--lula .navbar-brand > img {
    width: 100%;
}
.navbar-header {
    max-width: 280px;
}
.navbar-brand img {
    margin-top: 10px;
}
/*font size management*/

.h2 {
    font-size: 28px;
}
.navbar-default .navbar-nav > li > a {
    font-size: 16px;
}
.navbar-nav > li {
    margin-left: 10px;
    margin-right: 10px;
}
.login_button a {
    padding: 8px 12px !important;
}
.home-main {
    background-position: left;
    background-attachment: fixed;
}
.home-left {
    padding-left: 4vw;
}
.home-left h1 {
    line-height: 60px;
    font-size: 3.6vw;
    margin-top: 160px;
    margin-left: 10px;
}
.home-left h1 a {
    color: var(--white-color);
    text-decoration: none;
    transition: .3s;
}
.adobe_folder h3 {
    margin: 24px 0px 10px 0px;
    font-size: 26px;
    font-weight: 400;
}
.adobe_folder img {
    width: 72%;
}
.aws_folder h4 {
    color: var(--red-color);
    font-size: 32px;
    font-family: 'Poppins', sans-serif;
    margin: 36px 0px 12px 0px;
}
.aws_folder h5 {
    color: var(--white-color);
    font-size: 30px;
    font-family: 'Poppins', sans-serif;
    margin: 10px 0px 10px 0px;
}
.document-box {
    margin: 18px 1%;
}
.document-box h4 {
    color: #fff;
    margin: 5px 0px;
    font-size: 16px;
}
.sub-title-01 {
    margin: 18px auto;
    font-size: 24px;
}
.safe-box02 img{
        max-width:64%
    }

}

@media (max-width: 1200px) {
/*font size management*/

.h2 {
    font-size: 20px;
}
.fluid_width {
    padding: 0px 4vw;
}
.navbar-header {
    width: 216px;
}
.navbar-brand img {
    width: 94%;
    margin-top: 20px;
}
.navbar-default .navbar-nav > li > a {
    font-size: 14px !important;
}
.tree01 img {
    width: 80%;
}
.tree02 {
    display: none;
}
.home-left {
    float: left;
    width: 50%;
}
.navbar-toggle-right-wrap {
    right: 4vw;
    top: 50%;
}
.aws_folder h4 {
    color: var(--red-color);
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    margin: 46px 0px 12px 0px;
}
.aws_folder h5 {
    color: var(--white-color);
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    margin: 12px 0px 10px 0px;
}
.home-left h1 {
    line-height: 60px;
    font-size: 5vw;
}
.sign_in_btn {
    display: none;
}
.res_signin {
    display: block;
    width: 100%;
    text-align: center;
}
.container-moreinfo .title-main,  .container-saas .title-main {
    margin-bottom: 0px;
}
.container-learnmore .title-main, .container-saas .title-main {
        margin-bottom: 0px;
    }
.sub-title-01 {
    margin: 10px auto;
    font-size: 20px;
    font-weight: normal;
    width: 80%;
}
.solution-brand {
    width: 22%;
    margin: 0 1% 14px;
}
.solution-brand figure {
    max-width: 80%;
}
.btn-container a {
    border-radius: 6px;
    padding: 8px 30px;
    font-size: 20px;
    margin: 0px 20px;
}
.cloud_footerlinks ul li {
    font-size: 18px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.document-box {
    width: 30%;
    padding: 14px 8px;
}
.document-box h4 {
    font-size: 18px;
}
.abt-spl {
    vertical-align: middle !important;
    background: rgba(0, 0, 0, .0);
    padding: 20px 0px;
}
.col {
    display: block;
    width: 100%;
}
}

@media (max-width: 992px) {
.navbar-default--lula .navbar-brand > img {
    width: 80%;
    transition: all 0.2s ease;
}
.navbar-default--lula.header--on-scroll .navbar-brand > img {
    width: 70%;
    transition: all 0.2s ease;
}
.home-sub01 {
    height: auto;
    position: relative;
}
.adobe_folder h3 {
    margin: 10px 0px 10px 0px;
    font-size: 26px;
    font-weight: 400;
}
.flex-container .adobe_folder {
    line-height: 50px;
}
.fluid_width {
    padding: 0px 4vw !important;
}
.container > .navbar-header,  .container-fluid > .navbar-header,  .container > .navbar-collapse,  .container-fluid > .navbar-collapse {
    margin-right: 0px;
    margin-left: 0px;
}
.navbar-header {
    width: inherit;
}
.navbar-brand img {
    width: 80%;
    margin-top: 10px;
}
.flex-container .adobe_folder {
    width: 66% !important;
}
.flex-container {
    display: flex;
    flex-direction: column-reverse;
    background-color: rgba(0, 0, 0, 0.5);
}
.bottom_home {
    height: 43vh;
}
.flex-container .aws_folder {
    width: 100%;
}
.flex-container .adobe_folder {
    width: 100% !important;
}
.home-left {
    float: left;
    width: 100%;
}
.flex-container > div {
    height: 200px !important
}
.adobe_folder img {
    width: 50%;
}
.home-left h1 {
    font-size: 6vw;
    text-align: center;
}
.home-main {
    background-position: center;
    background-attachment: fixed;
}
.home-left h1 {
    line-height: 68px;
    font-size: 5vw;
}
.homepro_features {
    display: none;
}
.sub_sectionbox {
    padding: 70px 0vw 50px 0vw !important;
}
.sub_sectionbox h2 {
    font-size: 34px;
}
.s-about .produce_animo_back figure {
    width: 90%;
    margin: 20px auto 0;
}
.s-collaborate .produce_animo_back figure {
    margin: 10px auto 0;
    width: 90%;
}
.s-archive .produce_animo_back figure {
    margin: 20px auto 0;
    width: 90%;
}
.produce_animo_back {
    width: 76% !important;
}
.carousel_container {
    display: block;
    text-align: center;
}
.carousel-circle img {
    width: 100px !important;
    margin: -30px auto 0px auto;
}
.carousel-circle h3 {
    font-size: 16px;
    margin: 0px;
    width: 80%;
    text-transform: uppercase;
}
.aws_box {
    background-image: url("../images/footer_back.jpg");
    background-position: center;
}
.aws_box h3 {
    font-size: 30px;
    text-transform: uppercase;
    margin: 0px auto;
    width: 95%;
}
.aws_box h4 {
    font-size: 26px;
    font-weight: 600;
    line-height: 44px;
    margin-bottom: 26px;
}
.aws_box img {
    width: 80%;
    max-width: 336px;
}
.aws_folder h4 {
    margin: 26px 0px 12px 0px;
}
.aws_folder h4 img {
    margin-top: 5px;
}
.signup_main {
    margin-left: auto;
}
.owl-prev {
    opacity: .4;
}
.owl-next {
    opacity: .4;
}
.solution-brand {
    width: 30%;
    margin: 14px 1%;
}
.btn-container a {
    padding: 8px 30px;
    font-size: 16px;
    margin: 0px 12px;
}
.emam-cloud-credentials {
    padding-left: 15px;
    margin-bottom: 45px;
}
.emam-cloud-credentials .h2 {
    margin: 0 0 15px;
}
.clear-footer {
    display: block;
    clear: both;
}
.cloud_footerlinks ul li {
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.h2 {
    margin: 25px 0 15px;
}
.safe-box02 img {
    max-width: 100%
}
.safe-mainbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.safe-mainbox .sb2 {
    order: 1;
}
.safe-mainbox .sb1 {
    order: 2;
}
.safe-mainbox .sb3 {
    order: 3;
}
.safe-mainbox .sb4 {
    order: 4;
}
.safe-mainbox .sb2 {
    margin-bottom: 40px;
}
.safe-mainbox .sb1, .safe-mainbox .sb3, .safe-mainbox .sb4 {
    width: 46%;
    margin: 2%;
    background: rgba(0,0,0,0.4);
    padding: 25px;
    border-radius: 6px;
}
}

@media (max-width: 768px) {
.home-left {
    float: left;
    width: 100%;
}
.bottom_home {
    height: auto;
}
.flex-container {
    display: flex;
    flex-direction: column-reverse;
    background-color: rgba(0, 0, 0, 0.5);
}
.flex-container > div {
    height: 156px !important;
}
.home-left h1 {
    text-align: center;
}
.home-left h1 {
    line-height: 64px;
    font-size: 6vw;
    text-transform: uppercase;
    margin-top: 96px;
}
.aws_folder h5 {
    margin: 5px 0px 0px 0px;
}
.aws_folder h4 {
    margin: 20px 0px 0px 0px;
}
.navbar-brand img {
    margin-top: 0px;
}
.emam-cloud-credentials {
    padding-top: 16px;
    border-top: 0px solid #514d49
}
.tree01 img {
    width: 60%;
}
.solution-brand h3 {
    font-size: 16px;
}
.container-moreinfo {
    height: auto;
}
.container-learnmore {
        height: auto;
    }
.container-intPartners {
    height: auto;
}
.container-documents {
    height: auto;
}
.safe-box02 {
    margin: 20px 0px;
}
.safe-mainbox h4 {
    font-size: 24px;
    text-transform: uppercase;
}
.cloud_footerlinks {
    padding: 40px 0px 10px;
}
}

@media (max-width: 640px) {
.bottom_home {
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
}
.flex-container {
    background-color: transparent;
}
.home-left {
    padding-left: 0;
}
.play_but.mobile {
    width: 110px;
    text-align:center;
}
.aws_folder h5 {
    margin: 0 0px 0px 0px;
    font-size: 20px;
}
.produce_animo_back {
    width: 100% !important;
}
.gif-play::after {
    top: 38%;
}
.home-left h1 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 80px;
    margin-left: 0px;
}
.aws_folder h4 {
    margin: 12px 0px 0px 0px;
}
.aws_folder h4 {
    font-size: 22px;
}
.aws_folder h4 img {
    max-width: 70%;
}
.flex-container .adobe_folder {
    padding: 5px 0 10px;
}
.flex-container > div {
    height: auto !important
}
.adobe_folder h3 {
    margin: 10px 0 0 0;
    font-size: 18px;
}
.container-moreinfo {
    height: auto;
}
.container-learnmore {
        height: auto;
    }
.tree01 {
    display: none;
}
.tree02 {
    display: block;
    text-align: right;
}
.tree02 img {
    width: 90%;
    right: 0px;
}
.sub-title-01 {
    margin: 10px auto;
    font-size: 16px;
    font-weight: normal;
    width: 90%;
}
.solution-brand {
    width: 48%;
    margin: 8px 1%;
}
.btn-container a {
    padding: 8px 30px;
    font-size: 16px;
    margin: 6px 12px;
    width: 86%;
    text-align: center;
}
.btn-container {
    padding-top: 20px;
}
.solution-brand h3 {
    font-size: 14px;
}
.document-box {
    width: 90%;
    padding: 14px 8px;
    margin: 10px 0%;
}
.document-box h4 {
    font-size: 18px;
}
.abt-spl img {
    width: 70%;
}
.abt-spl h4 {
    color: #d7d7d7;
    font-size: 24px;
}
.col {
    padding: 0px 10px;
    vertical-align: top;
}
.col p {
    font-size: 16px;
    color: var(--white-color);
    line-height: 26px;
}
.topbtn-container a {
    padding: 6px 18px;
    font-size: 16px;
    color: #fff;
    margin: 0px 10px;
    text-align: center;
}
.emam-modal .modal-dialog {
    max-width: 96%;
    margin: 29% auto;
}
.aws_box img {
    width: 60%;
}
.emam-cloud-credentials {
    text-align: center;
    padding-bottom: 15px;
    margin-bottom: 25px;
    padding-top: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.cloud_footerlinks .col-xs-6 {
    width: 100%;
}
.cloud_footerlinks .h2 {
    margin: 0 0 8px;
}
.cloud_footerlinks ul {
    margin: 0px 0 30px;
}
.cloud_footerlinks ul li {
    margin-bottom: 0;
    background: rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 10px;
    padding: 7px;
    font-size: 14px;
}
.cloud_footerlinks ul li:last-child {
    border-bottom: 0;
}
.copy-right {
    width: 100%;
    padding: 0 5px;
    text-align: center;
}
.trems-policy {
    width: 100%;
    text-align: left;
    padding: 15px 0 0;
    text-align: center;
}
.safe-mainbox .sb2 {
    margin-bottom: 40px;
}
.safe-mainbox .sb1, .safe-mainbox .sb3, .safe-mainbox .sb4 {
    width: 100%;
    margin: 0 0 20px;
    padding: 25px;
}
}

@media (max-height: 570px) {
.home-left h1 {
    font-size: 18px;
    line-height: 30px;
}
.res_signin {
    margin-top: 4px;
}
.play_but.mobile {
    margin-top: 5px;
    width: 90px;
}


}


/* ------------------------------------------------------ INNER PAGE STYLES ------------------------------------------------------ */
/*---- START Common styles ----*/
.container-inner {
    margin-top: 109px;
    position: relative;
    font-size: 22px;
    border-top: 2px solid #e23633;
}
.container-inner .breadcrumb {
    padding: 6px 15px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 0;
    text-align: right;
    padding-left: 6vw;
    padding-right: 6vw;
}
.container-inner .breadcrumb > li + li:before {
    font-family: FontAwesome;
    content: "\f105";
}
.container-inner .breadcrumb>li {
    font-size: 14px;
}
.container-inner .breadcrumb>li a {
    color: var(--medium-grey-one);
}
.container-inner .breadcrumb>li a:hover {
    color: var(--white-color);
}
.container-inner .breadcrumb > .active {
    color: var(--white-color);
}
.title-col {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 46px;
    text-align: center;
    padding-left: 6vw;
    padding-right: 6vw;
}
.container-inner .title-main {
    color: #fff;
    font-family: var(--font-primary);
    font-size: 50px;
    font-weight: 600;
    text-decoration: none;
    margin: 0;
}
.container-inner .title-sub {
    color: #8fc9ff;
    text-align: center;
    margin: 15px 0 0;
    font-weight: normal;
    font-size: 28px;
    line-height: 34px;
    padding-right: 30px;
    padding-left: 30px;
}
.container-inner .title-main + .container-inner .title-sub {
    margin-bottom: 0;
}
.page-wrap {
    padding-left: 6vw;
    padding-right: 6vw;
}
.page-wrap:before {
    content: " ";
    display: table;
}
.page-wrap:after {
    clear: both;
    content: " ";
    display: table;
}
.btn-blue {
    display: inline-block;
    background: var(--button-blue);
    color: var(--white-color);
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    padding: 9px 30px 7px;
    cursor: pointer;
    border-radius: 6px;
    border: 0;
    outline: 0;
}
.btn-blue.light {
    background: #70b0ff;
}
.btn-blue:hover, .btn-blue:active, .btn-blue:focus {
    background: var(--red-color);
    color: var(--white-color);
    text-decoration: none;
}
.btn-blue.full {
    width: 100%;
}
.btn-small {
    font-size: 22px;
    font-weight: normal;
    padding: 5px 20px;
    text-transform: none;
}
.container-inner .owl-carousel .owl-item img {
    width: auto !important;
}
.custom-checkbox {
    display: block;
    position: relative;
    color: var(--text-blue);
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 19px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: var(--input-text);
    border-radius: 6px;
}
.custom-checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}
.custom-checkbox input:checked ~ .checkmark {
    background-color: #1370c7;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
.custom-checkbox .checkmark:after {
    left: 9px;
    top: 4px;
    width: 7px;
    height: 14px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-tags {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.btn-tags.tag-bottom {
    margin-top: 50px;
}
.display-item {
    text-align: center;
}
.frame {
    border: 6px solid #fff;
    background: #fff;
    margin: 0 auto;
    display: inline-block;
}
.frame .vid-play video {
    border: 0;
    display: block;
}
.frame.video {
    position: relative;
}
.frame.video-only {
    display: block;
    max-width: 55%;
}
.frame.video-only .embed-responsive {
    width: 100%;
}
.frame.video-center {
    display: block;
    max-width: 100%;
}
.frame.video-center .embed-responsive {
   width: 100%;
}
.frame.webinars-video {
    display: block;
    width: 100%;
    max-width: 45%;
    position: relative;
}
.frame.webinars-video .embed-responsive {
    width: 100%;
}
.video-note {
    position: absolute;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: var(--medium-grey);
    font-size: 16px;
    padding: 6px 15px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.frame.video:after {
    width: 100%;
    height: 90px;
    position: absolute;
    bottom: -95px;
    content: " ";
    display: table;
    background: url(../images/video-shadow.png) center top no-repeat;
    background-size: contain;
}
.container-inner.owl-carousel .owl-item img {
    display: initial;
    width: auto;
}
/*---- END Common styles ----*/

/*.container-product, .container-saas, .container-contact, .container-epo, .container-moreinfo, .container-news-events, .container-webinars, .container-documents, .container-intPartners, .container-techPartners, .container-documentation {
    height: calc(100vh - 90px);
}*/
.container-moreinfo, .container-news-events, .container-product1, .container-webinars, .container-documents, .container-intPartners, .container-techPartners, .container-learnmore {
    height: calc(100vh - 90px);
}
    .container-product, .container-saas {
    background: url(../images/product_back.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.container-saas {
    position: relative;
}
.page-return {
    position: absolute;
    top: 40%;
    left: 5px;
    opacity: 0.6;
    z-index: 10;
}
.page-return:hover {
    opacity: 0.9;
}
.page-return i {
    font-size: 100px;
    color: #fff;
}
.service-panel {
    width: 100%;
}
.service-panel .service-left {
    padding-right: 30px;
}
.service-panel .service-right {
    padding-left: 30px;
}
.service-panel .service-col {
    width: 100%;
    background: rgba(4,9,16,0.9);
    background-size: contain;
    border-radius: 30px;
    padding: 0;
    margin-bottom: 0;
}
.service-panel .service-col .content {
    padding: 0 40px;
}
.service-panel .service-col .title {
    font-weight: bold;
    font-size: 38px;
    color: var(--white-color);
    text-align: center;
    padding: 40px 30px 30px;
}
.service-panel .service-col .service-brand {
    padding-top: 20px;
}
.service-panel .service-col .service-brand h4 {
    color: var(--medium-grey-one);
    text-align: center;
    text-transform: uppercase;
    font-size: 22px;
    margin: 0;
}
.service-panel .service-col .service-list {
    padding-left: 0;
    height: 350px;
    overflow-y: auto;
}
.service-panel .service-col .service-list ul {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
}
.service-panel .service-col .service-list ul li {
    width: 100%;
    color: var(--white-color);
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
	font-size: 24px;
	font-family: 'Roboto', sans-serif;
}
.service-panel .service-col .service-list ul li i {
    position: absolute;
    left: 0;
    top: 10px;
    width: 16px;
    height: 16px;
    font-size: 12px;
    color: var(--red-color);
}
.service-panel .service-col .service-order {
    width: 100%;
    display: inline-block;
    height: 271px;
    padding: 163px 0 0;
    margin-bottom: 8px;
    text-align: center;
    background: url(../images/service-cloud.png) center top 10px no-repeat;
    background-size: cover;
    border-bottom-right-radius: 25px;
    border-bottom-left-radius: 24px;
}
.service-panel .service-col .service-order h5 {
    color: var(--medium-grey-two);
    font-size: 20px;
    font-weight: normal;
    margin: 0 0 15px;
    padding: 0 15px;
}
.service-data {
    width: 100%;
    background: rgba(4,9,16,0.9);
    background-size: contain;
    border-radius: 30px;
    padding: 0 0 8px;
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}
.service-data-col {
    margin-left: -40px;
    margin-right: -40px;
}
.service-data-col .col-lg-4 {
    padding-left: 40px;
    padding-right: 40px;
}
.service-data figure {
    padding: 55px 15px 30px;
    margin: 0;
    height: 186px;
}
.service-data figure img {
    width: auto !important;
    max-width: 80%;
    max-height: 100%;
    margin: 0 auto;
}
.service-data .service-data-list {
    padding: 0 42px 26px;
}
.service-data .service-data-list ul {
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    list-style: none;
    height: 292px;
    overflow-y: auto;
}
.service-data .service-data-list ul li {
    width: 100%;
    margin-bottom: 10px;
}
.service-data .service-data-list ul li img {
    width: auto !important;
    max-width: 80%;
    margin: 5px auto;
}
.service-data .service-price {
    background: var(--button-blue);
    color: var(--white-color);
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
}
.service-data .service-signup {
    background: var(--white-color);
    padding: 25px 15px 40px;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.contact-item {
    width: 100%;
    padding: 0 70px 70px 0;
}
.contact-item h2 {
    color: var(--white-color);
    margin: 0 0 15px;
    font-size: 40px;
}
.contact-address {
    background: rgba(0,0,0,0.4);
    padding: 50px 55px;
    border-radius: 20px;
}
.contact-address h1 {
    font-weight: bold;
    color: var(--white-color);
    margin: 0 0 30px;
}
.contact-address p {
    color: var(--white-color);
    font-size: 24px;
    font-weight: bold;
}
.contact-address .ne-social-item {
    width: 20%;
    margin-top: 25px;
    margin-bottom: 0;
    padding-right: 20px;
}
.contact-address .ne-social-item a {
    max-width: 100px;
}
.contact-form {
    width: 100%;
    background: rgba(4,9,16,0.9);
    border-radius: 20px;
    padding: 50px 55px;
    margin-bottom: 0;
}
.contact-form .form-head {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.contact-form .form-head h2, .contact-form .form-head h3 {
    font-size: 30px;
    flex: 1;
    margin: 0 0 15px;
}
.contact-form .form-head h2 {
    color: var(--white-color);
    text-transform: uppercase;
}
.contact-form .form-head h3 {
    color: var(--text-blue);
    text-align: right;
}
.contact-form .form-control {
    font-size: 20px;
    border-radius: 6px;
    height: 40px;
}
.contact-form textarea.form-control {
    height: auto;
}
.contact-form input.form-control, .contact-form select.form-control, .contact-form textarea.form-control {
    background: var(--input-text);
}
.contact-form .form-btn {
    display: flex;
    flex-wrap: wrap;
}
.contact-form .btn-blue {
    margin-right: 20px;
}
.contact-form .form-btn h4 {
    color: var(--white-color);
    margin: 15px 0 0;
    text-transform: uppercase;
}
.container-epo {
    background: url(../images/epo-bg.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.btn-tags .btn-blue {
    margin: 0 15px;
}
.horizontal-timeline {
    background: #000;
    padding: 50px 0;
    display: inline-block;
    width: 100%;
}
.horizontal-timeline .ht-title {
    color: var(--text-blue);
    text-align: center;
    margin: 0 0 50px;
    padding: 0 15px;
    font-size: 28px;
}
.info-card {
    width: 13.6%;
    float: left;
    min-height: 1px;
}
.info-card.one {
    padding-top: 5%;
}
.info-card.two {
    padding-top: 0;
}
.info-card.three {
    padding-top: 6%;
}
.info-card.four {
    padding-top: 10%;
}
.info-card.five {
    padding-top: 5%;
}
.connect-col {
    width: 8%;
    float: left;
    min-height: 1px;
    position: relative;
}
.connect-col.one {
    padding-top: 10%;
}
.connect-col.two {
    padding-top: 11%;
}
.connect-col.three {
    padding-top: 16%;
}
.connect-col.four {
    padding-top: 15.3%;
}
.timeline-info {
    width: 100%;
}
.timeline-info .info-item {
    background: #000;
    border: 5px solid var(--border-dark);
    border-radius: 30px;
    padding: 20px;
    margin-right: -20px;
    margin-left: -20px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.timeline-info .info-item:hover {
    background: rgba(255,255,255,0.1);
    border: 5px solid var(--red-color);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.timeline-info .info-item:before {
    content: " ";
    display: table;
}
.timeline-info .info-item:after {
    clear: both;
    content: " ";
    display: table;
}
.timeline-info .info-item figure {
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border: 5px solid var(--white-color);
    position: relative;
    background: #fff;
    z-index: 10;
}
.timeline-info .info-item img {
    -webkit-transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
}
.timeline-info .info-item:hover img {
    -webkit-transform: scale(1.1) rotate(0.01deg);
    transform: scale(1.1) rotate(0.01deg);
}
.timeline-info .info-item h5 {
    background: var(--white-color);
    color: var(--text-grey);
    font-family: var(--font-primary);
    font-weight: lighter;
    text-align: center;
    margin: 0;
    padding: 4px 0 10px;
    font-size: 22px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.timeline-info .info-item:hover h5 {
    color: var(--black-color);
}
.timeline-info .connect {
    width: 100%;
    float: left;
    height: 15px;
    background: var(--white-color);
    z-index: 1;
    position: relative;
}
.timeline-info .connect i {
    background: var(--white-color);
    width: 19px;
    height: 39px;
    position: absolute;
    left: -7px;
    top: -12px;
    border-top-right-radius: 19px;
    border-bottom-right-radius: 19px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    z-index: 1;
}
.timeline-info .connect i:last-child {
    left: auto;
    right: -7px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 19px;
    border-bottom-left-radius: 19px;
}
.video-row {
    display: flex;
    padding-right: 6vw;
    padding-left: 6vw;
}
.video-row:before {
    content: " ";
    display: table;
}
.video-row:after {
    clear: both;
    content: " ";
    display: table;
}
.video-row .col-left {
    width: 25%;
    order: 1;
}
.video-row .col-center {
    width: 60%;
    order: 2;
    padding: 0 40px;
    text-align: center;
}
.video-row .col-right {
    width: 25%;
    order: 3;
}
.feature-item {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 50px;
}
.feature-item .fi-img {
    width: 30%;
}
.feature-item .fi-txt {
    width: 70%;
    padding-left: 15px;
}
.feature-item .fi-txt h4 {
    margin: 0 0 10px;
    color: var(--white-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
}
.feature-item .fi-txt p {
    margin: 0 0 10px;
    color: var(--white-color);
    font-size: 18px;
    max-height: 150px;/*overflow-y: auto;*/
}
.container-webinars {
    background: url(../images/webinar_bg.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.video-thumb {
    padding: 0 50px;
    margin-top: 40px;
}
.thumb-note {
    position: absolute;
    bottom: 2px;
    left: 2px;
    right: 2px;
    width: calc(100% - 4px);
    background: rgba(0,0,0,0.6);
    color: var(--medium-grey);
    font-size: 10px;
    padding: 10px 15px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.video-thumb .thumb-item {
    background: var(--white-color);
    border: 2px solid #fff;
}
.video-thumb.owl-carousel.owl-theme .owl-nav {
    margin-top: 0;
}
.video-thumb.owl-carousel .owl-nav button.owl-next, .video-thumb.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: 0;
    height: 100%;
    outline: 0;
    opacity: 1;
}
.video-thumb.owl-carousel .owl-nav button.owl-next:hover, .video-thumb.owl-carousel .owl-nav button.owl-prev:hover {
    background: transparent;
}
.video-thumb.owl-carousel .owl-nav button.owl-next span, .video-thumb.owl-carousel .owl-nav button.owl-prev span {
    display: none;
}
.video-thumb.owl-carousel .owl-nav button.owl-next {
    right: 0;
}
.video-thumb.owl-carousel .owl-nav button.owl-next.disabled:after, .video-thumb.owl-carousel .owl-nav button.owl-prev.disabled:after, .video-thumb.owl-carousel .owl-nav button.owl-next.disabled:hover:after, .video-thumb.owl-carousel .owl-nav button.owl-prev.disabled:hover:after {
    opacity: 0.2;
}
.video-thumb.owl-carousel .owl-nav button.owl-next:after {
    content: '\f105';
    font-family: FontAwesome;
    color: var(--white-color);
    font-size: 60px;
    opacity: 0.7;
}
.video-thumb.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}
.video-thumb.owl-carousel .owl-nav button.owl-prev:after {
    content: '\f104';
    font-family: FontAwesome;
    color: var(--white-color);
    font-size: 60px;
    opacity: 0.7;
}
.video-thumb.owl-carousel .owl-nav button.owl-next:hover:after, .video-thumb.owl-carousel .owl-nav button.owl-prev:hover:after {
    opacity: 1;
}
.container-news-events {
    background: url(../images/newsevents_bg.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.container-product1 {
    background: url(../images/product_back.jpg) center top no-repeat; 
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.ne-social {
    padding-right: 20px;
    display: inline-block;
}
.ne-social-item {
    width: 50%;
    float: left;
    margin-bottom: 25px;
    text-align: center;
}
.ne-social-item a {
    display: inline-block;
    color: var(--white-color);
}
.ne-social-item a img {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.ne-social-item a:hover img {
    transform: translate(0, -6px);
}
.ne-social-item p {
    color: var(--text-offwhite);
    margin: 0;
    font-weight: bold;
    font-size: 18px;
}
.ne-social-item a:hover {
    text-decoration: none;
}
.event-col {
    width: 100%;
}
.event-item {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.event-item figure {
    width: 30%;
}
.event-item figure img {
    border-radius: 4px;
}
.event-item .event-txt {
    width: 70%;
    padding-left: 20px;
}
.event-item.txtonly .event-txt {
    width: 100%;
    padding-left: 0;
}
.event-item .event-txt h4 {
    color: var(--text-offwhite);
    margin: 0 0 5px;
    font-size: 26px;
}
.event-item .event-txt h4 span {
    color: var(--red-color);
    font-size: 16px;
    margin: 0;
}
.event-item .event-txt p {
    color: var(--text-offwhite);
    font-size: 18px;
    max-height: 140px;
    overflow-y: auto;
}
.event-item .event-txt p a {
    color: var(--red-color);
    font-size: 12px;
}
.container-contact{
    background: url(../images/contact_back.jpg) center top no-repeat;
    background-size: cover;
    width: 100%;
    padding-bottom: 70px;
}
.video-thumb-static {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}
.video-thumb-static .thumb-item {
    display: inline-block;
    max-width: 170px;
    margin: 0 15px;
    position: relative;
}
.video-thumb-static .thumb-item a {
    display: inline-block;
    width: 100%;
    background: var(--white-color);
    border: 2px solid #fff;
}
.service-data-col.col-two {
    text-align: center;
}
.service-data-col.col-two .col-lg-4 {
    display: inline-block;
    float: none;
}
.signup-panel {
    width: 100%;
    background: rgba(4,9,16,0.9);
    border-radius: 20px;
    margin-bottom: 20px;
}
.signup-panel .row {
    display: flex;
}
.signup-panel .v-center {
    justify-content: center;
    align-items: center;
    display: flex;
}
.signup-panel .sp1 {
    color: var(--white-color);
    font-size: 30px;
    font-weight: bold;
    padding-left: 15px;
    text-align: center;
}
.signup-panel .sp2 {
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}
.signup-panel .sp2.has-price ul {
    padding-bottom: 25px;
}
.signup-panel .sp2 ul {
    margin: 0;
    padding: 30px 40px;
    list-style: decimal;
    color: var(--white-color);
    font-size: 20px;
}
.signup-panel .sp2 ul li {
    margin-bottom: 10px;
}
.signup-panel .sp2 ul li span {
    color: var(--blue-color);
    text-decoration: none;
}
.signup-panel .sp2 ul li a {
    color: var(--blue-color);
    text-decoration: underline;
}
.signup-panel .sp2 .contact-txt {
    color: var(--white-color);
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    padding: 25px;
    text-align: center;
    font-style: italic;
    text-decoration: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.2)
}
.signup-panel .sp2 .contact-txt a {
    color: var(--white-color);
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    text-decoration: none;
}
.signup-panel .sp2 .contact-txt a:hover {
    text-decoration: underline;
}
.signup-panel .col-sp3 {
    padding-left: 5px;
    padding-top: 25px;
    padding-bottom: 25px;
}
.signup-panel .sp3 {
    align-items: center;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding-right: 20px;
}
.signup-panel .sp3 figure {
    margin-bottom: 10px;
    height: 50%;
    display: flex;
    align-items: center;
}
.signup-panel .sp3 figure img {
    max-height: 65px;
}
.signup-panel .sp3.emam figure img {
    max-height: 50px;
}
.signup-panel .sp3 .price-col {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: auto;
}
.signup-panel .sp3 .price-col .sp3-txt {
    font-size: 16px;
    color: var(--blue-color);
    font-weight: bold;
    margin: 5px 0 10px;
    width: 100%;
    text-align: center;
}
.signup-panel .sp3 aside {
    width: 50%;
    text-align: center;
}
.signup-panel .sp3 aside.btn1 {
    padding-right: 10px;
}
.signup-panel .sp3 aside.btn2 {
    padding-left: 10px;
}
.signup-panel .sp3 aside p {
    color: var(--white-color);
    font-size: 16px;
    font-weight: bold;
    text-align:center;
}
.signup-panel .sp3 aside .btn-blue {
    padding: 10px 10px 4px;
    min-width: 80%;
    line-height: 22px;
    height: 54px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.signup-panel .sp3 aside  .btn-blue span {
    font-size: 11px;
    font-weight: normal;
}
.container-product.container-archive {
    height: calc(100vh - 94px);
}
.container-product.container-archive .signup-panel .sp2 {
    padding-top: 0px;
    padding-bottom: 0px;
}


@media (max-width: 1920px) {
.service-panel .service-col .service-order {
    height: 275px;
    padding: 155px 0 0;
}
 
}

@media (max-width: 1600px) {
.container-inner {
    font-size: 16px;
    margin-top: 90px;
}
.title-col {
    margin-bottom: 30px;
}
.container-inner .title-main {
    font-size: 30px;
}
.container-inner .title-sub {
    font-size: 22px;
}
.container-inner .breadcrumb {
    padding: 4px 6vw;
}
.btn-blue {
    font-size: 18px;
}
.btn-small {
    font-size: 16px;
}
.service-panel .service-col .title {
    font-size: 28px;
    padding: 25px 30px 20px;
}
.service-panel .service-col .service-order h5 {
    font-size: 16px;
}
.service-panel .service-col .service-order {
    height: 235px;
    padding: 125px 0 0;
}
.service-panel .service-col .service-list {
    height: 292px;
}
.service-data .service-data-list ul {
    height: 200px;
}
.service-data .service-signup {
    padding: 20px 15px 20px;
}
.service-data .service-price {
    font-size: 22px;
}
.service-data .service-data-list {
     padding: 0 26px 35px;
    }
.service-data .service-data-list ul {
    height: 200px;
}
.service-data figure {
    padding: 25px 15px 25px;
    height: 140px;
}
.contact-item h2 {
    font-size: 30px;
}
.contact-form {
    padding: 30px 50px;
}
.contact-form .form-control {
    font-size: 18px;
    height: 35px;
    padding: 3px 10px;
}
.contact-form textarea.form-control {
    height: 70px;
}
.contact-form .form-head h2, .contact-form .form-head h3 {
    font-size: 26px;
}
.event-item .event-txt h4 {
    font-size: 18px;
}
.event-item .event-txt h4 span {
    font-size: 12px;
}
.event-item .event-txt p {
    font-size: 14px;
}
.feature-item .fi-txt h4 {
    font-size: 18px;
}
.feature-item .fi-txt p {
    font-size: 15px;
}
.video-note {
    font-size: 16px;
}
.frame {
    max-width: 430px;
}
.frame.video {
    max-width: 500px;
}
.frame.webinars-video {
    max-width: 37%;
}
.video-thumb {
    margin-top: 22px;
}
.feature-item {
    margin-bottom: 20px;
}
.event-item .event-txt p {
    max-height: 80px;
}
.btn-tags.tag-bottom {
    margin-top: 30px;
}
.contact-address h1 {
    font-size: 28px;
    margin: 0 0 20px;
}
.contact-address p {
    font-size: 18px;
    font-weight: normal;
}
.contact-address .ne-social-item a {
    max-width: 75px;
}
.contact-address {
    padding: 30px 35px;
}
.signup-panel .sp1 {
    font-size: 26px;
}
.signup-panel .sp2 ul {
    font-size: 17px;
}
}

@media (max-width: 1300px) {
    .container-product, .container-saas, .container-contact, .container-epo, .container-moreinfo, .container-news-events, .container-product1, .container-webinars, .container-documents, .container-intPartners, .container-techPartners, .container-learnmore {
        height: auto;
    }
    .container-product.container-archive {
        height: auto;
    }
}

@media (max-width: 1200px) {
.service-panel .service-left {
    padding-right: 15px;
}
.service-panel .service-right {
    padding-left: 15px;
}
.service-panel .service-col {
    margin-bottom: 30px;
}
.service-panel .service-col .service-order {
    height: 238px;
    padding: 131px 0 0;
}
.service-panel .service-col .title {
    font-size: 28px;
    padding: 30px 15px 0px;
}
.service-panel .service-col .service-brand {
    padding-top: 5px;
    padding-bottom: 25px;
}
.service-panel .service-col .service-brand figure {
    text-align: center;
}
.service-panel .service-col .service-brand figure img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
}
.service-data-col .col-lg-4 {
    margin-bottom: 40px;
}
.contact-item {
    padding: 0 40px 70px;
}
.info-card.one {
    padding-top: 3%;
}
.info-card.three {
    padding-top: 4%;
}
.info-card.four {
    padding-top: 7%;
}
.connect-col.three {
    padding-top: 15%;
}
.feature-item {
    flex-wrap: wrap;
    flex-direction: column;
}
.feature-item .fi-img {
    width: 100%;
    text-align: center;
}
.feature-item .fi-txt {
    width: 100%;
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
}
.ne-social {
    margin-bottom: 60px;
}
.ne-social-item {
    width: 20%;
    float: left;
    padding-right: 40px;
    margin-bottom: 10px;
}
.service-data-col.col-two .col-lg-4 {
    float: left;
}
}

@media (max-width: 992px) {
.service-data figure {
    height: 120px;
}
.service-panel .service-col .service-order {
    height: 280px;
    padding: 170px 0 0;
}
.service-panel .service-col .service-list, .service-data .service-data-list ul {
    height: auto;
}
.page-return {
    position: fixed;
    top: 47%;
    opacity: 0.6;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    padding: 0 6px 0 4px;
    display: none;
}
.page-return i {
    font-size: 50px;
}
.contact-item {
    padding: 0 0 70px;
}
.timeline-info .info-item {
    padding: 15px;
    margin-right: 0;
    margin-left: 0;
}
.info-card, .connect-col {
    width: 100%;
    float: none;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}
.connect-col {
    margin-top: -23px;
    margin-bottom: -30px;
}
.info-card.one, .info-card.two, .info-card.three, .info-card.four, .info-card.five {
    padding-top: 0;
}
.connect-col.one, .connect-col.two, .connect-col.three, .connect-col.four {
    padding-top: 0;
}
.timeline-info .connect {
    width: 15px;
    float: none;
    height: 100px;
    display: inline-block;
    margin: 0 auto;
}
.timeline-info .connect i {
    width: 32px;
    height: 19px;
    left: -8px;
    right: 0;
    top: -5px;
    border-top-right-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 19px;
    border-bottom-right-radius: 19px;
}
.timeline-info .connect i:last-child {
    left: -8px;
    right: 0;
    top: auto;
    bottom: -5px;
    border-top-right-radius: 19px;
    border-top-left-radius: 19px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.video-row {
    flex-wrap: wrap;
    flex-direction: column;
}
.video-row .col-center {
    width: 100%;
    order: 1;
    padding: 0 40px;
}
.video-row .col-left {
    width: 100%;
    order: 2;
    display: flex;
    margin-top: 50px;
}
.video-row .col-right {
    width: 100%;
    order: 3;
    display: flex;
}
.feature-item {
    width: 50%;
    margin: 5px;
    background: rgba(0,0,0,0.7);
    padding: 20px;
    border-radius: 6px;
}
.feature-item .fi-img {
    height: 97px;
}
.ne-social {
    margin-bottom: 30px;
}
.event-col {
    margin-bottom: 30px;
}
.contact-address {
    margin-bottom: 30px;
}
.frame.video-only {
    max-width: 80%;
}
.frame.webinars-video {
    max-width: 80%;
}
.signup-panel .row {
    display: block;
}
.signup-panel .sp1 {
    padding: 15px;
}
.signup-panel .sp2 {
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    border-left: 0;
    border-right: 0;
}
.signup-panel .sp2 aside {
    text-align: center;
}
.signup-panel .sp3 {
    padding: 0 20px 0;
}
.signup-panel .col-sp3 {
    padding-left: 15px;
}
}

@media (max-width: 767px) {
.container-inner {
    margin-top: 71px;
}
.service-panel .service-col .title {
    font-size: 28px;
}
.service-panel .service-col .service-order {
    height: 238px;
    padding: 130px 0 0;
}
}

@media (max-width: 640px) {
.btn-blue {
    font-size: 16px;
    padding: 7px 30px 7px;
}
.container-inner .title-col {
    margin-top: 0;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 6vw;
    padding-right: 6vw;/*  background: rgba(0,0,0,0.3);*/
}
.container-inner .title-main {
    font-size: 26px;
}
.container-inner .breadcrumb {
    margin-bottom: 0;
}
.container-inner .title-sub {
    color: #8fc9ff;
    text-align: center;
    margin: 15px 0 0;
    font-size: 18px;
}
.container-product, .container-saas, .container-contact {
    padding-bottom: 40px;
}
.service-panel .service-col .content {
    padding: 0 30px;
}
.service-panel .service-col .title {
    font-size: 22px;
}
.service-panel .service-col .service-brand figure img {
    max-width: 200px;
}
.service-panel .service-col .service-brand h4 {
    font-size: 18px;
}
.service-panel .service-col .service-list ul li {
    font-size: 14px;
}
.service-panel .service-col .service-order {
    height: 238px;
    padding: 120px 0 0;
}
.service-data-col .col-lg-4 {
    margin-bottom: 20px;
}
.service-data .service-data-list {
    padding: 0 15px 25px;
}
.contact-item {
    padding: 0 0 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.contact-form {
    padding: 20px 25px;
}
.contact-form .form-head {
    flex-direction: column;
}
.contact-form .form-head h3 {
    text-align: left;
}
.contact-form .form-head h2, .contact-form .form-head h3 {
    font-size: 22px;
}
.contact-item h2 {
    font-size: 20px;
}
.timeline-info .connect {
    height: 70px;
}
.btn-tags {
    flex-direction: column;
}
.btn-tags .btn-blue {
    margin-bottom: 15px;
}
.video-row {
    padding-right: 0;
    padding-left: 0;
}
.video-row .col-left, .video-row .col-right {
    flex-direction: column;
    padding-right: 6vw;
    padding-left: 6vw;
}
.video-row .col-center {
    padding: 0 0;
}
.frame.video-center {
    max-width: 90%;
}
.video-row .col-left {
    margin-top: 30px;
}
.feature-item {
    width: 100%;
    margin: 0;
    margin-bottom: 15px;
}
.feature-item .fi-img {
    height: auto;
}
.ne-social {
    padding-right: 0;
    margin-bottom: 25px;
}
.ne-social-item {
    width: 25%;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 0;
}
.ne-social-item p {
    font-size: 14px;
}
.ne-social-item a figure {
    width: 100%;
    padding-right: 0;
}
.ne-social-item a .ne-social-txt {
    display: none;
}
.contact-address .ne-social-item {
    padding-right: 5px;
    padding-left: 5px;
}
.contact-address .ne-social-item p {
    font-size: 12px;
}
.event-item {
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
}
.event-item figure {
    width: 100%;
    margin-bottom: 15px;
}
.event-item .event-txt {
    width: 100%;
    padding-left: 0;
}
.event-item .event-txt p {
    max-height: 100%;
    overflow-y: visible;
}
.frame {
    max-width: 90%;
}
.frame.video-only {
    max-width: 100%;
}
.frame.webinars-video {
    max-width: 90%;
}
    .play_but a img {
        max-width: 70% !important;
    }

    .s-about .produce_animo_back figure {
      
        margin: 34px auto 0;
    }
    .s-collaborate .produce_animo_back figure {
        margin: 34px auto 0;
       
    }
    .s-archive .produce_animo_back figure {
        margin: 34px auto 0;
       
    }
    .sub_sectionbox h2 {
        font-size: 36px;
    }
    .video-thumb-static .thumb-item {
        margin: 0 0 15px;
        max-width: 60%;
    }
.signup-panel .sp3 .price-col {
    flex-wrap: wrap;
}
.signup-panel .sp3 aside {
    width: 100%;
}
.signup-panel .sp3 aside.btn1 {
    padding-right: 0;
    margin-bottom: 25px;
}
.signup-panel .sp3 aside.btn2 {
    padding-left: 0;
}
}

.float-right {
    z-index: 105;
    position: fixed;
    bottom: 5px;
    right: 20px;
    cursor: pointer;
}

/*--------- eMAM Premiere Styles ---------*/
.service-panel .service-col .service-order h5 {
    font-family: 'Roboto', sans-serif;
	font-size: 24px;
}

.ep-slider-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 101;
    text-align: center;
    font-family: var(--font-primary);
    padding: 0 0 70px;
}
.ep-slider-bottom .epb-txt1 {
    color: #31a8ff;
    font-size: 68px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 500;
    margin: 0;
}
.ep-slider-bottom .epb-txt2 {
    color: #fff;
    font-size: 68px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    font-weight: 500;
    margin: 0 0 20px;
}
.ep-slider-bottom .epb-txt2 span {
    color: #ef3d25;
    font-weight: bold;
}
.ep-slider-bottom .btn-ep {
    font-size: 22px;
    background: var(--premiere-blue);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    padding: 15px 30px;
    display: inline-block;
    border-radius: 6px;
    border: 0;
    outline: 0;
    text-decoration: none;
    appearance: none;
    -webkit-appearance: none;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -mox-transition: all ease-in-out 0.2s;
}
.ep-slider-bottom .btn-ep:hover {
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255,255,255,0.5);
}
.ep-icons-outer {
    padding: 130px 0 30px;
    background: #001e36 url(../images/dots.png) left top repeat-x;
}
.icon-panel {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    font-family: var(--font-primary);
}
.icon-panel li {
    text-align: center;
    flex: 0 0 33.3333%;
    padding: 0 48px;
    margin-bottom: 100px;
}
.icon-panel figure {
    margin: 0 0 40px;
}
.icon-panel figure img {
    height: 130px;
    margin: 0 auto;
    transition: all ease-in-out 0.2s;
    -webkit-transition: all ease-in-out 0.2s;
    -mox-transition: all ease-in-out 0.2s;
}
.icon-panel figure img:hover {
    filter: drop-shadow(0px 0px 14px rgba(0,0,0,0.6));
}
.icon-panel h4 {
	font-size:24px; 
    color: #fff;
    text-transform: uppercase;
	line-height: 36px;
}
.icon-panel p {
    color: #64bcfc;
	font-size: 20px;
	font-family:'Roboto', sans-serif; 
}
.ep-home.container-product {
    padding-top: 80px;
    padding-bottom: 80px;
    font-family: var(--font-primary);
    background: url(../images/options-bak.jpg) center top no-repeat;
    background-size: cover;
}
.ep-home.container-product .title-col {
    margin: 0;
}
.ep-home.container-product .title-col .title-main {
    color: #fff;
    font-size: 52px;
    font-weight: bold;
    margin: 0 0 50px;
}
.ep-home.container-product .service-panel .service-col .service-list {
/*    height: 200px;*/
}
.inner-header {
    background: #000;
    border-bottom: 2px solid #31a8ff;
}
.item-center {
    margin: 0 auto;
    float: none;
}
.ep-order-sec {
    margin-top: 76px;
    padding-top: 35px;
    padding-left: 15px;
    padding-right: 15px;
    min-height: calc(100vh - 76px);
}
.ep-order-sec .title-main {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    margin: 0 0 25px;
}
.ep-order-sec .service-data figure img {
    max-width: 100%;
}
.ep-order-sec .service-data .service-data-list ul li {
    font-size: 24px;
}
.ep-order-sec .service-data .service-data-list ul {
    height: auto;
}
@media (max-width: 1440px) {
.ep-slider-bottom .epb-txt1 {
    
    font-size: 62px;
    
}
.ep-slider-bottom .epb-txt2 {
   
    font-size: 62px;
    
}
.ep-home.container-product .title-col .title-main {

    font-size: 36px;
    font-weight: bold;
    margin: 0 0 30px;
}
.ep-home.container-product {
    padding-top: 46px;
   
}
.icon-panel h4 {
    font-size: 22px;

    line-height: 32px;
}
.icon-panel li {

    padding: 0 38px;
    margin-bottom: 54px;
}
.service-panel .service-col .service-list ul li {

    font-size: 18px;
  
}
.service-panel .service-col .service-order h5 {
    font-size: 20px;
}
.ep-order-sec .title-main {

    font-size: 32px;

}
.ep-order-sec .service-data .service-data-list ul li {
    font-size: 22px;
}
.ep-order-sec {

    padding-top: 24px;

}
}
@media (max-width: 1366px) {
	
.ep-slider-bottom .epb-txt1 {
    font-size: 56px;
}
.ep-slider-bottom .epb-txt2 {
   
    font-size: 56px;
    
}
.icon-panel h4 {
    font-size: 20px;
    line-height: 30px;
}
.icon-panel p {
    font-size: 18px;

}
.icon-panel figure img {
    height: 114px;
   
}
.icon-panel li {

    padding: 0 26px;
    margin-bottom: 40px;
}
	
}
@media (max-width: 992px) {
    .ep-slider-bottom .epb-txt1, .ep-slider-bottom .epb-txt2 {
        font-size: 40px;
    }
    .ep-icons-outer {
        padding: 100px 0 0;
    }
    .icon-panel li {
        flex: 0 0 50%;
    }
    .icon-panel figure img {
        height: 100px;
    }
    .ep-home.container-product .service-panel .service-col .service-list {
        height: auto;
    }
    .ep-home.container-product .title-col .title-main {
        font-size: 30px;
    }
    .ep-order-sec {
        margin-top: 60px;
        padding-top: 15px;
    }
    .ep-order-sec .title-main {
        font-size: 24px;
    }
    .ep-order-sec .service-data .service-data-list ul li {
        font-size: 16px;
    }
}
@media (max-width: 640px) {
    .ep-slider-bottom .epb-txt1, .ep-slider-bottom .epb-txt2 {
        font-size: 32px;
    }
    .ep-icons-outer {
        padding: 80px 0;
    }
    .icon-panel li {
        flex: 0 0 100%;
        margin-bottom: 25px;
        padding-bottom: 25px;
   /*     border-bottom: 1px solid rgba(255,255,255,0.2);*/
    }
    .icon-panel li:last-child {
        margin-bottom: 25px;
        padding-bottom: 0;
        border-bottom: 0;
    }
    .icon-panel figure img {
        height: 80px;
    }
}