/*====== common css ==========*/

.row:before,
.row:after {
  display: table;
  line-height: 0;
  content: "";
}

:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --font-family-sans: "Zoho Puvi", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
    sans-serif;
  --text-color: #191919;
  --color-primary: #db0020;
  --color-secondary: #006deb;
  --color-border: #dddddd;
}

body {
  font-family: var(--font-family-sans);
  color: var(--text-color);
  line-height: 1.5;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.justify-content-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
  border-radius: 6px;
}
.btn.btn-lg {
  height: 54px;
  padding: 0 24px;
  line-height: 52px;
  font-size: 16px;
}
.btn.btn-md {
  height: 42px;
  padding: 0 16px;
  line-height: 40px;
  font-size: 15px;
}
.btn.btn-round {
  border-radius: 100px;
}
.btn.btn-square {
  border-radius: 4px;
}
.btn.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
}
.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:focus-within,
.btn.btn-primary:active {
  background: #c80420;
}
.btn.btn-secondary {
  background: var(--color-secondary);
  color: var(--text-color);
  border: 1px solid var(--color-secondary);
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:focus-within,
.btn.btn-secondary:active {
  background: #eebf19;
}
.btn.btn-black {
  color: var(--color-white);
  background: #010101;
  border: 1px solid #010101;
}
.btn.btn-black:hover {
  background: #ffce26;
  border-color: #ffce26;
  color: #010101;
  border-color: #ffce26;
  text-decoration: none;
}
.btn.btn-outline-primary {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color-white);
}
.btn.btn-outline-primary:hover,
.btn.btn-outline-primary:focus,
.btn.btn-outline-primary:focus-within,
.btn.btn-outline-primary:active {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn.btn-outline-secondary {
  border: 1px solid var(--color-border);
  color: var(--color-black);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: var(--color-white);
}
.btn.btn-outline-secondary:hover,
.btn.btn-outline-secondary:focus,
.btn.btn-outline-secondary:focus-within,
.btn.btn-outline-secondary:active {
  background: var(--color-secondary);
  color: var(--color-white);
  border: 1px solid var(--color-secondary);
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.75rem;
  margin-left: -0.75rem;
  padding-top: 0;
  padding-bottom: 0;
}
.row > * {
  padding-left: 12px;
  padding-right: 12px;
  max-width: 100%;
}
.row.g-0 {
  margin-right: 0;
  margin-left: 0;
}
.row.g-0 > * {
  padding-left: 0;
  padding-right: 0;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

@media only screen and (min-width: 576px) {
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}
@media only screen and (min-width: 1200px) {
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }
}

/*========== banner css ===============*/

.heading-menu, #scroll {
  display: none;
}
	
	
.apm-awards.banner {
    background: #012C56;
    padding: 110px 0px; position: relative;
}

.banner h1{
   color:#FFD967; font-size:52px; font-weight:600;text-align:center; width:100%; margin-bottom: 0px; position: relative; line-height: 1.2;
}

	
	
.apm-awards.banner:before {
   content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    background-position: center center;
    background-image: url(https://www.manageengine.com/products/applications_manager/images/apm-awards-banner-bg.svg);
    background-repeat: repeat;
    background-size: contain;

}
	

.apm-awards h1{
    font-size: 52px;
    font-weight: 600;
    line-height: 60px;
    width: 900px;
    max-width: 90%;
    margin: 0 auto 0px;
}
.apm-awards h2{
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    margin: 30px 0px;
}	
	
.apm-awards.accolades {
    position: relative;
    padding: 0;
	margin: 40px 0px;
}


.apm-awards .flex {
    display: flex;
    max-width: 1400px;
    justify-content: center;
}

.apm-awards.accolades .flex.event-block {
    max-width: 1100px;
    grid-gap: 90px;
    flex-wrap: wrap;
    padding: 40px 0;
    margin: auto;
    align-items: flex-start;
}

.apm-awards.accolades .event-block .timeline {
    width: 220px;
    position: sticky;
    top: 0;
    top: 100px;
    height: max-content;
}

.apm-awards.accolades .event-block .timeline h3 {
    color: #2B74D9 !important;
    font-size: 16px;
}

.apm-awards.accolades .event-block .year {
    padding: 10px;
    background: #f7f7f7;
    border-radius: 5px;
    margin: 5px 0px;
    cursor: pointer;
    list-style: none;
}
.apm-awards.accolades .event-block .year:hover{
    background-color: #c6deff;
}
.apm-awards.accolades .event-block .year.active:hover{
    background-color: #2B74D9;
}

.apm-awards.accolades .awards-section{
    position: relative;
    padding: 0px 0px 50px 0px;
}

.apm-awards.accolades .awards-section:before {
    content: '';
    position: absolute;
    top: 75px;
    bottom: 80px;
    left: -36px;
    width: 1px;
    background-color: #eee;
}

.apm-awards.accolades .awards-block {
    width: calc(100% - 350px);
    position: relative;
}

.apm-awards.accolades .awards-block h4 {
    font-size: 26px;
    line-height: 40px;
    font-weight: 500;
    color: #2B74D9;
    margin: 0 0 20px;
    margin-left: -40px;
    width: 130px;
    border-bottom: solid #d9d9d9 1px;
}
.apm-awards.accolades .awards{
    position: relative;
    margin: 0px 0px 40px;     border-bottom: 1px solid #D9D9D9;
    padding-bottom: 30px;
}

.apm-awards.accolades .awards img {
    width: 120px;
    margin: 0 0 10px;
}

.apm-awards.accolades .awards h3 {
    margin: 0 0 5px;
    font-weight: 500;
}

.apm-awards.accolades .awards p {
    margin: 5px 0px;
    margin: 0 0 10px;
}

.apm-awards.accolades .awards:before {
    height: 7px;
    width: 7px;
    content: '';
    background-color: #fff;
    position: absolute;
    border: 1px solid #4aa2ed;
    border-radius: 50%;
    top: 15px;
    margin: auto;
    left: -40px;
}
.apm-awards.accolades .event-block .year.active{
    background-color: #2B74D9;
    color: white;
}
	
.tab-width{width: 290px !important;}
	
.apm-awards .awards-section .square-image img{
    height: 29px;
    width: auto;
}
.apm-awards .awards-section .cio img{
    width: auto;
    height: 75px;
}
	
.apm-awards .awards-section .softpedia-image img{
    width: 90px;
    height:auto;
}

	.apm-awards .awards-section .info-tech-image img{
    width: 180px ;
    height: auto;
}

.apm-awards .awards-section .info-tech-image img{
    width: 180px ;
    height: auto;
}	
	
	
.apm-awards .awards-section .round-image img[alt="Finalist at Best of InterOp -  2010"] {
   height: auto;
    width: 150px;
}
.apm-awards .awards-section .round-image img[alt="Network Products Guide -  2013"] {
   height: auto;
    width: 64px;
}	
	
.apm-awards .awards-section .community-image img{
    width: auto;
    height: 64px;
}
	
	
	
@media screen and (max-width:928px){
    .apm-awards.banner .cards.forrester::after, .apm-awards.banner .cards.forrester::before{
        display: none;
    }
}
@media screen and (max-width:800px){
    .apm-awards.accolades .event-block .timeline{
        width: 100px;
        text-align: center;
    }
}

@media screen and (max-width:600px) {
	
	.apm-awards h1{font-size: 32px;}
	.apm-awards h2{font-size: 24px;}
	.apm-awards.banner{padding: 70px 0px;}
    .apm-awards.accolades {
        padding: 0 30px;
        width: auto;
    }
    .apm-awards.accolades .awards-block h4{
        margin-left: 0;
    }


    .apm-awards.accolades .awards-block {
        width: auto;
    }

    .apm-awards.accolades .event-block .timeline {
        display: none;
    }
    .apm-awards.banner .cards.forrester::after, .apm-awards.banner .cards.forrester::before{
        display: block;
    }

    .apm-awards.banner .cards.gartner::before, .apm-awards.banner .customer::before,
    .apm-awards.banner .cards.idc::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: inline-block;
        background-image: url(https://www.manageengine.com/ems/images/icon/award-leaf.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        width: 50px;
    }
    .apm-awards.banner .cards.gartner::before{
        background-position: top center;
    }
    .apm-awards.banner .cards.idc::before {
        background-position: bottom center;
        bottom: 30px;
    }

    .apm-awards.banner .cards.gartner::after, .apm-awards.banner .customer::after,
    .apm-awards.banner .cards.idc::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        display: inline-block;
        background-image: url(https://www.manageengine.com/ems/images/icon/award-leaf.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        width: 51px;
        transform: rotateY(-180deg);
    }
    .apm-awards.banner .cards.gartner::after{
        background-position: top center;
        bottom: 30px;
    }
    .apm-awards.banner .cards.idc::after{
        background-position: bottom center;
        bottom: 30px;

    }
    .apm-awards.banner .cards.forrester::before{
        right: unset;
        left: unset;
        bottom: -22px;
        background-position: bottom center;
    }
    .apm-awards.banner .cards.forrester::after{
        top: -32px;
        right: unset;
        background-position: top center;
    }
    .apm-awards.banner .customer::after{
        right: -3px;
    }
    .apm-awards.banner .customer::before{
        width: 51px;
        left: -3px;
    }

}
.apm-awards.accolades .awards img[alt="techtarget"] {
    height: 60px;
    margin: 0;
}
@media screen and (max-width:500px) {
    .mdm-awards.banner::after{
        display: none;
    }
    
}
.apm-awards.accolades .awards-section:after {
    height: 7px;
    width: 7px;
    content: '';
    background-color: #fff;
    position: absolute;
    border: 1px solid #4aa2ed;
    border-radius: 50%;
    bottom: 80px;
    margin: auto;
    left: -40px;
}	
	
	
	