@import url("https://www.manageengine.com/css/fonts.css");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    max-width: 100%;
}

em {
    font-style: italic
}

body {
    font-family: 'Zoho_Puvi_Regular', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1 {
    font: 40px/1.25 'Zoho_Puvi_Regular'
}

h2 {
    font: 35px/1.25 'Zoho_Puvi_Regular';
}

h3 {
    font: 25px/1.3 'Zoho_Puvi_Regular';
}

h4 {
    font: 20px/1.4 'Zoho_Puvi_Regular';
}

h5 {
    font: 16px/1.4 'Zoho_Puvi_Regular';
}

img,
picture,
source {
    display: block;
    max-width: 100%;
    height: auto;
}

.clearfix:before,
.clearfix:after {
    display: table;
    line-height: 0;
    content: ""
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

*+html .clearfix {
    display: inline-block
}

.clearfix:after {
    clear: both
}

.clear {
    clear: both;
    line-height: 0;
    height: 0
}

.tar {
    text-align: right
}

.tal {
    text-align: left !important
}

.tac {
    text-align: center
}

.max {
    max-width: 100%
}

.mT0 {
    margin-top: 0px !important;
}

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

.mB10 {
    margin-bottom: 10px !important;
}

.mB20 {
    margin-bottom: 20px !important;
}

.mT10 {
    margin-top: 10px !important;
}

.mT20 {
    margin-top: 20px !important;
}

.mT40 {
    margin-top: 40px !important;
}

.mT50 {
    margin-top: 50px !important;
}

.pT0 {
    padding-top: 10px !important;
}

.pT10 {
    padding-top: 10px !important;
}

.pT20 {
    padding-top: 20px !important;
}

.pT30 {
    padding-top: 30px !important;
}

.pT40 {
    padding-top: 40px !important;
}

.pT50 {
    padding-top: 50px !important;
}

.mL0 {
    margin-left: 0px !important;
}

.mL10 {
    margin-left: 10px !important;
}

.mL20 {
    margin-left: 20px !important;
}

.mL30 {
    margin-left: 30px !important;
}

.mR10 {
    margin-right: 10px !important;
}

.mR30 {
    margin-right: 30px !important;
}

.pL10 {
    padding-left: 10px !important;
}

.pL20 {
    padding-left: 20px !important;
}

.pb25 {
    padding-bottom: 25px !important;
}

.pb40 {
    padding-bottom: 40px !important;
}

.pb50 {
    padding-bottom: 50px !important;
}

.pb60 {
    padding-bottom: 60px !important;
}

.pT70 {
    padding-top: 70px !important;
}

.pT75 {
    padding-top: 75px !important;
}

.menu-section {
    position: relative;
    top: 0;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    transition: all 0.2s ease-in 0s;
}


/*Hello bar css*/

.hellobar {
    background: #58ac8a;
    display: none;
}

.hellobarcont {
    width: 603px;
    margin: 0 auto;
}

p.hellobartext {
    color: #fff;
    font-size: 16px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    position: relative;
    animation: animated-text 2s steps(60, end) 1s 1 normal both;
    /* animation: type 4s steps(100, end); */
    padding: 10px 0;
}

p.hellobartext a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    font-family: 'Zoho_Puvi_SemiBold';
}

span.curser {
    border-bottom: solid 1px #fff;
    position: absolute;
    right: -3px;
    width: 20px;
    animation: animated-cursor 600ms steps(30, end) infinite;
    animation: blink 4s steps(44) 2s 1 normal both, blinkTextCursor 500ms steps(44) infinite normal;
    bottom: 13px;
    font-family: 'Zoho_Puvi_SemiBold';
}

@-moz-document url-prefix() {
    span.curser {
        bottom: 12px;
    }
}


/* text animation */

@keyframes animated-text {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}


/* cursor animations */

@keyframes animated-cursor {
    from {
        right: -3px;
    }
    to {
        right: 5px;
    }
}


/*
@keyframes type{ 
  from { width: 0; } 
} 

@keyframes blink{
  to{opacity: .0;}
}

::selection{
  background: black;
}*/

.hlobarclose {
    background: #489c7a;
    position: absolute;
    padding: 9px;
    top: 0px;
    right: 0px;
    display: none;
}

.clscircle {
    border: 2px solid #183829;
    border-radius: 50%;
    color: #183829;
    font-size: 16px;
    cursor: pointer;
    padding: 2px 5px;
    font-family: 'ZohoPuvi', sans-serif
}


/*desktop menu style starts*/

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

ul.menu-list {
    display: flex;
    float: right;
}

ul.menu-list li {
    margin: 0px;
}

ul.menu-list li a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    position: relative;
}


/*ul.menu-list li:nth-child(3) a {
	padding: 10px 30px;
	border-radius: 3px;
	border: 1px solid #ff4142;
	color: #ff4142;
	font-family:'Zoho_Puvi_SemiBold'
}
ul.menu-list li:nth-child(3):hover a {
	background: #ff4142;
	color: #fff;
}
ul.menu-list li:nth-child(3) a:before {
	display: none;
}*/

ul.menu-list li a:before {
    content: "";
    width: 0%;
    border-bottom: 2px solid #003a63;
    position: absolute;
    top: 20px;
    left: 0px;
    bottom: 0;
    transition: width 0.5s;
}

a.scroll-cta {
    background: #F44336;
    padding: 10px 30px;
    border-radius: 3px;
    text-decoration: none;
    color: #fff !important;
}


/*desktop menu style ends*/


/*mobile menu style starts*/

ul.menu-items {
    position: fixed;
    background: #333;
    width: 50%;
    left: 0;
    top: 100px;
    z-index: 9999999;
    box-sizing: border-box;
    padding: 20px 0px;
    height: 100%;
}

ul.menu-items li {
    width: 85%;
    line-height: 40px;
    position: relative;
    color: #fff;
    transform: translateX(30px);
    box-sizing: border-box;
    padding: 10px 0px;
}

ul.menu-items li a {
    text-decoration: none;
    display: inline-block;
    color: #fff;
}


/*ul.menu-items li:nth-child(3) a {
	background: #ff4142;
	padding: 10px 40px;
	border-radius: 3px;
}*/

ul.menu-list>li a:hover:before {
    width: 100%;
}

ul.menu-list>li a.active:before {
    width: 100%;
}

.hamburger {
    width: 60px;
    height: 50px;
    border-radius: 50px;
    display: inline-block;
    position: relative;
    margin: 0px;
    display: none !important;
    cursor: pointer;
}

.hamburger:after,
.hamburger span:before,
.hamburger span:after {
    content: "";
    width: 20px;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    transition: 0.2s ease-in-out;
}

span.hamburger span:before {
    transform: translateY(-5px);
}

span.hamburger span:after {
    transform: translateY(5px);
}

.hamburger-active:after {
    height: 0px;
}

.hamburger-active span:before {
    transform: rotate(45deg) !important;
}

.hamburger-active span:after {
    transform: rotate(-45deg) !important;
}


/*mobile menu style ends*/


/*search*/

.search-container {
    position: relative;
    display: inline-block;
    margin: 4px 2px;
    height: 50px;
    width: 50px;
    vertical-align: bottom;
}

.mglass {
    display: inline-block;
    pointer-events: none;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    z-index: 99999;
    position: relative;
}

.searchbutton {
    position: absolute;
    font-size: 30px;
    width: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
}

.search:focus+.searchbutton {
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    background-color: white;
    color: black;
}

.search {
    position: absolute;
    left: 49px;
    /* Button width-1px (Not 50px/100% because that will sometimes show a 1px line between the search box and button) */
    background-color: white;
    outline: none;
    border: none;
    padding: 0;
    width: 0;
    height: 100%;
    z-index: 10;
    transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
}

.search:focus {
    width: 363px;
    /* Bar width+1px */
    padding: 0 16px 0 0;
}

.expandright {
    left: auto;
    right: 10px;
    /* Button width-1px */
}

.expandright:focus {
    padding: 0 0 0 16px;
    border: 1px solid #c1c1c1;
    font-size: 100%;
}


/*fixed header style starts*/

.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    animation: smooth 0.3s ease-in-out;
    z-index: 99999999;
    box-shadow: 0px 0px 5px #e2e2e2;
}

@keyframes smooth {
    from {
        transform: translateY(-50px);
    }
    to {
        transform: translateY(0px);
    }
}


/*fixed header style ends */


/*menu sec*/


/*ul.menu-wrapper{ display:flex;width: 100%; margin: 0px; padding: 0px; align-items: center}
ul.menu-wrapper li{ list-style-type: none;}
ul.menu-wrapper li.left{ width: 40%;}
ul.menu-wrapper li.right{ width: 60%; padding: 13px 0;}

.menudiv{ padding: 10px 0; float: right;}
ul.menu{display:flex;width: 100%; margin: 0px; padding: 0px;}
ul.menu li{list-style-type: none; padding: 5px 15px;font-family: 'Zoho_Puvi_Regular', Arial, Helvetica, sans-serif;font-size: 16px;line-height: 1.6; position: relative;}
ul.menu li a{ color:#000; text-decoration: none;}
*/

.dropdown {
    position: absolute;
    margin-top: 10px;
    -webkit-box-shadow: 0 8px 24px -5px #ccc;
    -moz-box-shadow: 0 8px 24px -5px #ccc;
    box-shadow: 0 8px 24px -5px #ccc;
    border-top: 2px solid #003a63;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    opacity: 0;
    background: #fff;
    margin-left: -15px;
}

ul.dropdown li:hover {
    background: #f1f1f1;
}

#topics {
    cursor: pointer;
}

#topics:hover .dropdown {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}

ul.dropdown-menu {
    margin: 0px;
    padding: 0px;
}

ul.dropdown-menu li {
    list-style-type: none;
}

.downarrow {
    background-image: url("../images/down-arrow.png");
    width: 13px;
    height: 7px;
    display: inline-block;
    margin-left: 5px;
    background-position: 0px -5px;
    background-repeat: no-repeat;
    position: relative;
}

.logodiv {
    width: 20%
}

img.academylogo {
    width: 60%
}

img.melogo {
    width: 60%
}

.menucontdiv {
    width: 78%;
}

.searchdiv {
    width: 2%;
    display: none;
}


/*main sec*/

.main-wrapr {
    display: block
}

ul.contentlist li {
    margin-bottom: 10px;
    margin-top: 15px;
    background: url(../images/list-blue-tick-icon.png);
    background-repeat: no-repeat;
    padding: 0px 5px 0px 45px;
    background-position: 0px 0px;
}

ul.list-items {
    margin-bottom: 20px;
    margin-top: 20px;
}

ul.list-items li {
    margin-left: 10px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
    font: 18px / 32px Zoho_Puvi_Regular, sans-serif;
}

ul.list-items li:before {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../images/tick-mark.svg);
    height: 15px;
    width: 15px;
    background-repeat: no-repeat;
    left: -10px;
    top: 6px;
}
.un-list-items {
    list-style: disc;
}
ul.un-list-items li::before {
    display: none;
}
ul.un-list-items li{
    padding-left: 5px;
    margin-left: 20px;
}

ol.list-circle {
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

ol.zh-ol-list {
    list-style: decimal;
    margin-top: 10px;
}

ol.zh-alpha-list {
    list-style: upper-alpha;
    margin-left: 28px;
}

ol.zh-alpha-list li {
    margin-top: 10px;
}

.zh-ol-list li::marker {
    margin-left: -20px;
    font-family: 'Zoho_Puvi_SemiBold';
}

ol.zh-ol-list li {
    margin-left: 28px;
    line-height: 1.66;
    margin-bottom: 5px;
}

ol.list-circle li {
    list-style-type: disc;
    margin-left: 35px;
    padding-left: 5px;
}

ol.list-circle li:before {
    display: none
}

ol.zh-ol-list strong,
ol.zh-alpha-list strong,
ul.list-items strong,
.list-style-new strong {
    font-weight: bold;
}

ol.main-list {
    margin-left: 15px;
    margin-bottom: 50px;
    margin-top: 20px;
}

ol.main-list>li {
    position: relative;
    padding-left: 10px;
    list-style-type: decimal;
}

ul.sub-list-1 {
    margin-left: 15px;
    margin-bottom: 50px;
    margin-top: 20px;
}

ul.sub-list-1>li {
    position: relative;
    padding-left: 10px;
    list-style-type: decimal;
}

ul.sub-list-1 li:before {
    display: none
}

ul.sub-list-a {
    margin-left: 15px;
    margin-bottom: 50px;
    margin-top: 10px;
}

ul.sub-list-a>li {
    position: relative;
    padding-left: 10px;
    list-style-type: lower-alpha;
}

ul.sub-list-a li:before {
    display: none
}

ul.sub-list-i {
    margin-left: 15px;
    margin-bottom: 50px;
    margin-top: 20px;
}

ul.sub-list-i>li {
    position: relative;
    padding-left: 10px;
    list-style-type: lower-roman;
}


/*next previous indictors*/

.prevnextcont {
    margin-top: 50px;
}

ul.prev-next {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0px 50px 0px;
}

ul.prev-next li {
    position: relative;
}

ul.prev-next a {
    color: #546aea;
    text-decoration: none;
}

ul.prev-next p:nth-child(1) {
    margin: 0;
    color: #000;
    margin-left: 30px;
    line-height: 22px;
}

ul.prev-next p:nth-child(1) a {
    margin: 0;
    font-size: 15px;
    color: #000;
}

ul.prev-next li:nth-child(2) p {
    text-align: right;
    margin-bottom: 0px;
}

li.rightarow {
    padding-right: 30px;
}

ul.prev-next li.leftarow p:nth-child(2) {
    font-size: 13px;
    margin-top: 0px;
    margin-left: 30px;
}

ul.prev-next li.rightarow p:nth-child(2) {
    font-size: 13px;
    margin-top: 0px;
    margin-left: 30px;
}

span.right-arrow {
    float: right;
    color: #ef483d;
    font-size: 18px;
}

span.left-arrow {
    color: #ef483d;
    font-size: 18px;
}


/*span.right-arrow a {
		float: right;
		color: #ef483d;
		font-size: 18px;
	}*/

span.right-arrow a {
    float: right;
    color: #000000;
    transform: scale(4.8);
    position: absolute;
    top: 10px;
    right: 0px;
    font-weight: lighter;
    font-family: 'Zoho_Puvi_Thin';
    line-height: 10px;
}

span.left-arrow a {
    transform: scale(4.8);
    position: absolute;
    top: 10px;
    left: 0px;
    font-weight: lighter;
    font-family: 'Zoho_Puvi_Thin';
    line-height: 10px;
    color: #000000;
}


/*span.left-arrow a {
		color: #ef483d;
		font-size: 18px;
	}*/

p.prev-next-title {
    color: #00a9f4 !important;
    margin: 0px;
}


/*next previous indictors*/

#sticky {
    position: sticky;
    top: 110px;
}

.leftbrscrll {
    bottom: 0;
    height: 80vh;
    overflow-y: auto;
}

#rbarsticky {
    position: sticky;
    top: 110px;
}


/*footer sec*/

footer {
    background: #fff;
    padding: 50px;
}

footer .container {
    max-width: unset;
    padding-top: 20px;
}

.footrwrpr {
    display: flex
}

.footrwrpr div.left {
    width: 30%;
    display: none;
}

.footrwrpr div.right {
    width: 100%;
}

.footerlink-main {
    display: flex;
    flex-wrap: wrap;
}

div.col1 {
    width: 30%;
    margin: 0 50px;
    display: none;
}

div.col2 {
    width: 100%;
    margin: 0 50px;
    text-align: center;
}

div.col2 p {
    font-size: 15px;
}

div.col2 p strong {
    font-weight: 600;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

div.col2 p a {
    color: #000;
    text-decoration: none
}

div.col3 {
    width: 100%;
    margin: 0 50px;
    text-align: center;
}

.social-share {
    text-align: center !important;
    margin: 20px 0px;
}

.social-share a.social-icon {
    width: 30px;
    height: 30px;
    display: inline-block;
    margin: 0;
    overflow: hidden;
    text-indent: -999px;
    border: 0;
    padding: 0;
    background-image: url("../images/social-media-block-icons.png");
    background-size: 150px auto;
    background-repeat: no-repeat;
}

.social-icon.icon-tw {
    background-position: -60px 0;
}

.social-icon.icon-fb {
    background-position: -5px 0px;
}

.social-icon.icon-yt {
    background-position: -32px 0;
}

.social-icon.icon-ln {
    background-position: -90px 0;
}

.social-icon.icon-in {
    background-position: -117px 0;
}


/*Fade animation css start*/

.m-moveup {
    transform: translateY(100px);
    transition-duration: 1s;
    transition-property: all;
}

.in-view .m-moveup {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.mdelay100 {
    -webkit-transition-delay: 100ms;
    -o-transition-delay: 100ms;
    transition-delay: 100ms;
}

.mdelay200 {
    -webkit-transition-delay: 200ms;
    -o-transition-delay: 200ms;
    transition-delay: 200ms;
}

.mdelay300 {
    -webkit-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.mdelay400 {
    -webkit-transition-delay: 400ms;
    -o-transition-delay: 400ms;
    transition-delay: 400ms;
}

.mdelay500 {
    -webkit-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms;
}

.mdelay600 {
    -webkit-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.mdelay700 {
    -webkit-transition-delay: 700ms;
    -o-transition-delay: 700ms;
    transition-delay: 700ms;
}

.mdelay800 {
    -webkit-transition-delay: 800ms;
    -o-transition-delay: 800ms;
    transition-delay: 800ms;
}

.mdelay900 {
    -webkit-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.mdelay1000 {
    -webkit-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.top-animated .visible {
    opacity: 1;
    transition: .5s ease-in;
}

.cont-wrap {
    transform: translateY(50px);
    transition: all .9s cubic-bezier(0.11, 0.16, 0.43, 0.86);
}

.top-animated .cont-wrap {
    transform: translateY(0px);
    transition: all .9s cubic-bezier(0.11, 0.16, 0.43, 0.86);
}

.formsec .cont-wrap {
    transform: translateY(0px);
    transition: all .9s cubic-bezier(0.11, 0.16, 0.43, 0.86);
}


/*Fade animation css end*/

ul.footerlinks {
    margin: 5px 0 0 0;
    padding: 0
}

ul.footerlinks li {
    font-family: 'Zoho_Puvi_Regular', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

ul.footerlinks li a {
    text-decoration: none;
    color: #000;
}

.copyright {
    padding: 15px 0 0 0;
    font-size: 14px;
}

.copyright a {
    color: #000;
    text-decoration: none;
}

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 80px;
    color: #000;
    background: rgba(0, 0, 0, 0.7) url(https://www.manageengine.com/images/up-arrow.png) no-repeat 16px 17px;
    font-size: 12px;
    display: none;
    cursor: pointer;
    transition: all 0.1s ease 0s;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-indent: -1000px;
    overflow: hidden;
}


/*NEW-POP-UP-CSS-START*/

.iframe-video-wrap {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .95);
    overflow: auto;
    z-index: 5555555;
    display: none;
    padding: 20px 0;
    box-sizing: border-box;
}

.iframe-video-wrap.active {
    display: block;
}

.image-pupup-show-continer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .95);
    overflow: auto;
    z-index: 5555555;
    display: none;
    padding: 20px 0;
    box-sizing: border-box;
}

.image-pupup-show-continer.active {
    display: block;
}

.automation-video {
    position: relative;
    max-width: 900px;
    margin: 50px auto;
    width: 100%;
    box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.index-video {
    margin-bottom: -200px;
    top: -200px;
    box-sizing: border-box;
}

.automation-video:hover.automation-video picture {
    transform: scale(1.05);
    transition: .4s ease all;
}

.automation-video picture {
    transform: scale(1);
    transition: .4s ease all;
    display: block;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 70px;
    width: 100px;
    background: #74c6ffde;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 33;
}

.rectangle-clip-path {
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: #fff;
    height: 20px;
    display: block;
    width: 20px;
    transform: rotate(90deg) translate(2px, -2px);
    transform-origin: center;
}

.icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    fill: currentcolor;
}

.modal {
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}

.modal.is-visible {
    visibility: visible;
}

.modal-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000e8;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
    opacity: 1;
    transition-delay: 0s;
}

.modal-wrapper {
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    width: 100%;
    max-width: 80%;
    height: 85%;
    background-color: #fff;
    box-shadow: 0 0 1.5em hsl(0deg 0% 0% / 35%);
    transform: translate(-50%, -50%);
}

.modal-transition {
    transition: all 0.3s 0.12s;
    opacity: 0;
}

.modal.is-visible .modal-transition {
    opacity: 1;
}

.modal-header,
.modal-content {
    padding: 1em;
}

.modal-header {
    position: relative;
    background-color: #fff;
    box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
    border-bottom: 1px solid #e8e8e8;
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #aaa;
    background: none;
    border: 0;
    height: 40px;
    width: 50px;
}

.modal-close::after {
    content: '';
    height: 100%;
    display: block;
    width: 2px;
    background: grey;
    border-radius: 10px;
}

.modal-close::before {
    content: '';
    height: 100%;
    display: block;
    width: 2px;
    background: grey;
    border-radius: 10px;
}

.modal-close:hover {
    color: #777;
}

.modal-heading {
    font-size: 1.125em;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modal-content>*:first-child {
    margin-top: 0;
}

.modal-content>*:last-child {
    margin-bottom: 0;
}

.popup-btn {
    cursor: pointer
}


/*close-btn*/

.close-btn {
    position: absolute;
    right: -50px;
    top: -10px;
    height: 50px;
    width: 50px;
    background-image: url(../images/popup-close-img.png);
    background-size: contain;
    cursor: pointer;
}


/*image-popup-show-start*/

.image-pupup-show-continer .modal-wrapper {
    position: relative;
    z-index: 999;
    left: 0;
    width: 60%;
    height: auto;
    background-color: unset;
    box-shadow: unset;
    display: flex;
    justify-content: center;
    margin: 0px auto;
    max-width: unset;
    top: 50%;
    transform: translate(0, -50%);
}

.clone-img-ele {
    cursor: zoom-in;
}

.image-pupup-show-continer .modal-wrapper img,
.image-pupup-show-continer .modal-wrapper source {
    width: 100%;
}


/*image-popup-show-end*/


/*NEW-POP-UP-CSS-END*/


/*Form sec*/

.formsec {
    background: #171d2e;
}

.formsec h2 {
    color: #fff;
    text-align: center
}

.formdiv {
    margin-top: 50px;
}

.form-fields {
    width: 51.6%;
    margin: 0 auto;
}

.fields {
    margin: 0px 0px;
}

.form-fields .error {
    border-bottom: 1px solid red;
}

span#email_err_msg {
    color: #ff4142;
    top: -5px;
    position: relative;
}

.fields1 {
    width: 45%;
}

.fields2 {
    width: 20%;
}

.fields3 {
    width: 35%;
}

input {
    border: 0;
    border-radius: 0;
}

input#emailID {
    background: #fff;
    padding: 15px 20px;
    font-size: 17px;
    width: 100%;
    box-sizing: border-box;
    color: #000;
    outline: none;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000;
    opacity: 1;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000;
}

input:focus::-webkit-input-placeholder {
    color: transparent;
}

input:focus:-moz-placeholder {
    color: transparent;
}


/* FF 4-18 */

input:focus::-moz-placeholder {
    color: transparent;
}


/* FF 19+ */

input:focus:-ms-input-placeholder {
    color: transparent;
}


/* IE 10+ */

select#MECountryListing {
    border: none;
    -webkit-appearance: none;
    border-radius: 0px;
    padding: 15px 20px;
    font-size: 17px;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    background: #fff url(../images/dropdown-arrow.png)no-repeat;
    background-position: right center;
    outline: none;
}

select#country_state {
    border: none;
    -webkit-appearance: none;
    border-radius: 0px;
    padding: 15px 20px;
    font-size: 17px;
    color: #000;
    width: 100%;
    box-sizing: border-box;
    background: #fff url(../images/dropdown-arrow.png)no-repeat;
    background-position: right center;
    outline: none;
}

.submitdiv {
    margin-top: 40px !important;
}

.me-ac-form-section .submitdiv {
    margin-top: 0px !important;
}

input#submit {
    background: #ff4545;
    color: #fff;
    text-transform: uppercase;
    padding: 15px 30px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: Zoho_Puvi_Bold;
    -webkit-appearance: none;
    outline: none;
    margin: 0 auto;
    font-size: 15px;
    border-radius: 2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: pointer;
    opacity: 0.9;
}

input#submit:hover {
    opacity: 1;
}

input#user-detail {
    display: none;
}

#meGDPRMessage {
    font-size: 12px;
    line-height: 15px;
    margin-top: 10px;
    color: #fff;
}

div#formCTAgdpr {
    font-size: 11px;
    margin: 10px auto 0 auto;
    line-height: 1.5;
    color: #fff;
    text-align: center;
}

.prvcy-plicy a {
    font-size: 10px;
    text-decoration: underline;
    border-bottom: 1px solid #000;
    color: #56ccff
}

.resetdiv {
    display: none;
}

.articleshare {
    display: none;
}

.insights img {
    max-width: 90%;
}

.list-items.zh-li-nopad li {
    /*  padding-left: 0px;*/
}

.zh-list-box li {
    position: relative;
    margin-left: 35px;
    margin-bottom: 10px;
    line-height: 1.77;
}

.zh-list-box li:before {
    content: '';
    border: 2px solid #00a9f4;
    width: 8px;
    height: 8px;
    position: absolute;
    margin-top: 10px;
    margin-left: -25px;
}


/*Youtube Videos In-line-embeding-style-start*/

.me-sdp-video-parent-container {
    max-width: 800px;
    margin: 0px auto;
    width: 95%;
}

.me-sdp-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio for responsive scaling */
    overflow: hidden;
}

.me-sdp-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Adjust the overlay color and transparency */
}

.me-sdp-video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*Youtube Videos In-line-embeding-style-end*/

.modal {
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal.is-visible {
    visibility: visible;
}

.modal-overlay {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000e8;
    opacity: 0;
    transition: visibility 0s linear 0.3s, opacity 0.3s;
}

.modal.is-visible .modal-overlay {
    opacity: 1;
    transition-delay: 0s;
}

.modal-wrapper {
    z-index: 9999;
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    box-shadow: 0 0 1.5em hsl(0deg 0% 0% / 35%);
    height: 510px;
}

.modal-transition {
    transition: all 0.3s 0.12s;
    opacity: 0;
}

.modal.is-visible .modal-transition {
    opacity: 1;
}

.modal-header,
.modal-content {
    padding: 1em;
}

.modal-header {
    position: relative;
    background-color: #fff;
    box-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.06);
    border-bottom: 1px solid #e8e8e8;
}

.modal-close {
    position: absolute;
    top: 0;
    right: 0;
    color: #aaa;
    background: none;
    border: 0;
    height: 40px;
    width: 50px;
}

.modal-close::after {
    content: '';
    height: 100%;
    display: block;
    width: 2px;
    background: grey;
    border-radius: 10px;
}

.modal-close::before {
    content: '';
    height: 100%;
    display: block;
    width: 2px;
    background: grey;
    border-radius: 10px;
}

.modal-close:hover {
    color: #777;
}

.modal-heading {
    font-size: 1.125em;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.modal-content>*:first-child {
    margin-top: 0;
}

.modal-content>*:last-child {
    margin-bottom: 0;
}

.popup-btn {
    cursor: pointer
}


/*close-btn*/

.close-btn {
    position: absolute;
    right: 10px;
    top: 30px;
    height: 50px;
    width: 50px;
    background-image: url(../images/popup-close-img.png);
    background-size: contain;
    cursor: pointer;
}

@media only screen and (max-width:767px) {
    .modal-wrapper {
        height: 300px;
    }
}

@media screen and (max-width:1100px) {
    img.melogo {
        width: 70%;
    }
    .modal-wrapper {
        height: 60%;
    }
}

@media only screen and (max-width:980px) {
    .logodiv {
        width: 50%;
    }
    img.melogo {
        width: 50%;
    }
    ul.menu-list {
        display: none;
    }
    .hamburger {
        display: inline-block !important;
    }
    .hamburgerdiv {
        float: right;
        padding-top: 3px;
    }
    .searchdiv {
        width: 6%;
    }
    ul.menu-items {
        top: 80px;
        display: block;
    }
    .downarrow {
        background-image: url("../images/down-arrow-white.png");
    }
    .dropdown {
        position: relative;
        margin-top: 0;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        border-top: none;
        -webkit-transform: none;
        transform: none;
        transition-duration: none;
        -webkit-transition-duration: none;
        opacity: 1;
        background: none;
        padding-left: 30px;
    }
    .footrwrpr {
        display: flex;
        flex-wrap: wrap;
    }
    .footrwrpr div.left {
        width: 100%;
    }
    .footrwrpr div.right {
        width: 100%;
    }
    div.col1,
    div.col2,
    div.col3 {
        margin: 0px;
    }
    .modal-wrapper {
        height: 60%;
    }
    .form-fields {
        width: 80%;
        margin: 0 auto;
    }
}

@media only screen and (max-width:768px) {
    .modal-wrapper {
        height: 34%;
    }
}

@media only screen and (max-width:600px) {
    .hellobarcont {
        width: 93%;
        margin: 0 auto;
    }
    .hlobarclose {
        padding: 21px 10px;
    }
    p.hellobartext {
        white-space: normal;
        width: 89%;
        animation: none;
    }
    span.curser {
        bottom: 12px;
    }
    img.melogo {
        width: 66%;
    }
    ul.menu-items {
        top: 80px;
    }
    .dropdown {
        padding-left: 30px;
    }
    .search:focus {
        width: 200px;
        padding: 0 16px 0 15px;
    }
    .expandright {
        left: auto;
        right: 20px;
    }
    h2 {
        font: 30px/1.25 'Zoho_Puvi_Regular';
    }
    .search-container {
        display: block;
        margin: 0;
        width: auto;
    }
    .form-fields {
        width: 90%;
        margin: 0 auto;
    }
    .footerlink-main {
        display: flex;
        flex-wrap: wrap;
    }
    .formdiv {
        margin-top: 20px;
    }
    .formsec h2 {
        font-size: 24px;
    }
    .submitdiv {
        margin-top: 20px !important;
    }
    .m-moveup {
        transform: translateY(0px);
        transition-duration: 1s;
        transition-property: all;
    }
    .cont-wrap {
        transform: translateY(0px);
        transition: all .9s cubic-bezier(0.11, 0.16, 0.43, 0.86);
    }
    .modal-wrapper {
        height: 25%;
    }
    .close-btn {
        right: -10px;
        top: -31px;
        height: 30px;
        width: 30px;
    }
}

@media only screen and (max-width:500px) {
    img.melogo {
        width: 100%;
    }
}

@media only screen and (max-width:400px) {
    .logodiv {
        width: 50%;
    }
    img.melogo {
        width: 80%;
    }
    .menucontdiv {
        width: 40%;
    }
    .searchdiv {
        width: 10%;
    }
    .header {
        padding: 5px 0;
    }
    ul.menu-items {
        top: 70px;
    }
    h4 {
        font: 18px/1.4 'Zoho_Puvi_SemiBold';
    }
    .formsec h2 {
        font-size: 20px;
    }
}


/* Mobile-Side-bar*/

.menu-items {
    display: none;
}

.sidebar-shrink {
    height: 100%;
    overflow-y: auto;
    background: #000;
}

.sidebar-left-nav {
    -webkit-transform: translate3d(-100%, 0px, 0px);
    transform: translate3d(-100%, 0px, 0px);
    visibility: visible;
    transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
}

.closed .sidebar-left-nav {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    visibility: visible;
}