/*/Main Wrapper/*/
.uems-design-system {
padding: 80px;
}

/*/Main Wrapper Alternate Section/*/
.uems-design-system.grey {
background-color: #f0f8ff;
}

/*/Main Wrapper Container/*/
.uems-design-system .container {
max-width: 1100px;
}

/*/Main Wrapper Flex Box/*/
.uems-design-system .flex {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 40px;
}

/*/All types of Headings and Paragraph Sections/*/
.uems-design-system h1 {
font-size: 48px;
line-height: 68px;
color: #000;
font-weight: 600;
margin: 0 0 20px;
}
.uems-design-system h2 {
font-size: 36px;
color: #000;
line-height: 46px;
text-align: center;
margin: 0 auto 20px;
max-width: 800px;
font-weight: 500;
}
.uems-design-system h3 {
font-size: 22px;
color: #000;
margin: 0 0 8px;
}
.uems-design-system h4 {
font-size: 20px;
font-weight: 400;
color: #000;
margin: 0 0 4px;
}
.uems-design-system p {
font-size: 18px;
font-weight: 300;
line-height: 32px;
color: #000;
margin: 0 0 40px;
}
.uems-design-system h2 + p, .uems-design-system .flex + p {
text-align: center;
}
.uems-design-system ul, .uems-design-system ol {
  list-style: disc outside;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  color: #000;
  margin: 0 0 40px;
  padding: 0 0 0 16px;
}
.uems-design-system ol {
  list-style: decimal outside;
}
.uems-design-system ul li, .uems-design-system ol li {
  margin: 0 0 8px;
  line-height: 28px;
}
.uems-design-system ul li::marker {
    color: #2196F3;
}
.uems-design-system strong {
font-weight: 600;
}

/*/CTA Styles Common for all links/*/
.uems-design-system .cta-grp {
text-align: center;
margin: 40px 0 0;
}
.uems-design-system .cta {
font-size: 16px;
font-weight: 400;
line-height: normal;
padding: 14px 24px;
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
text-align: center;
justify-content: center;
color: #0085FF;
border: 1px solid #0085FF;
border-radius: 6px;
position: relative;
text-transform: uppercase;
}
.uems-design-system .cta:after {
content: "";
background-image: url(https://www.manageengine.com/products/desktop-central/enterprise/images/arrow-icon.svg);
display: inline-block;
width: 8px;
height: 13px;
background-size: contain;
background-repeat: no-repeat;
}
.uems-design-system .cta:hover {
color: #FFFFFF;
background: #0085FF;
}
.uems-design-system .cta:hover:after {
filter: brightness(0) invert(1);
}

/*/CTA Styles for Main Download Primary/*/
.uems-design-system .cta.pm {
background-color: #DE2235;
color: #fff;
border-color: #DE2235;
}
.uems-design-system .cta.pm:after {
filter: brightness(0) invert(1);
}


@media(max-width:600px){
.uems-design-system {
    padding: 80px 40px;
}
.uems-design-system .flex {
    flex-wrap: wrap;
}
}