/*=========================== Google fonts ============================*/
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/*========================= Basic css ============================*/
html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

p {
    margin: 0;
}

ol,
ul {
    list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: none;
}

a {
    text-decoration: none;
    /*display: inline-block;*/
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

body {  
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    font-weight: 400;    
    background: #fff;
    color: #333333; 
}

h2,
h6 {
    font-family: 'Overpass', sans-serif;
}

/* scrolltotop */
.scrolltotop {
    width: 40px;
    height: 40px;
    border-radius: 20px 20px 0 0;
    background: #EE741F;   
    text-align: center;
    padding-top: 8px;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 5px;
    bottom: 5px;
    display: none;
    z-index: 999;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.scrolltotop:hover {  
    color: #fff;
    box-shadow: 0px 0px 5px #EE741F;
    -webkit-box-shadow: 0px 0px 5px #EE741F;
    -moz-box-shadow: 0px 0px 5px #EE741F;   
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

/*========================= Header area start ========================*/
.header-area {
    padding: 25px 0 20px;
    background: #fff;
}

.header-item {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.header-item-inner img {
    max-width: 250px;
}

.header-item-inner2 ul {
    display: flex;
    align-items: center;
}

.header-item-inner3 ul {
    justify-content: flex-end;
    margin-bottom: 24px;
}

.header-item-inner2 ul li a {
    font-family: 'Overpass', sans-serif;
    color: #000000;
    font-size: 9
pt;
    font-weight: 600;
    margin-left: 25px;
}

.header-item-inner4 ul li a {
    font-size: 16px;
}

.header-item-inner2 ul li a:hover {
    color: #EE741F;
}

.header-item-inner5 {
    cursor: pointer;
}

.header-item-inner3 ul li a {
    font-weight: 600;
}

.header-item-inner5 span {
    width: 30px;
    height: 3px;
    display: block;
    background: #000;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.header-item-inner5 span:nth-of-type(2) {
    margin: 7px 0;
}

.header-item-inner5:hover span {
    background: #2b3990;
}

/*=== offcanvas start ===*/

.offcanvas-start {
    width: 300px;
    border: none;
    background: #fff; 
}

.offcanvas-body {
    padding: 30px 20px;
}

.side-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.side-menu-inner img {
    max-width: 180px;
}

.side-menu-inner .close {
    cursor: pointer;
    width: 25px;
    height: 25px;
}

.side-menu-inner .close span {
    width: 25px;
    height: 3px;
    display: block;
    background: #000;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.side-menu-inner .close:hover span {
    background: #EE741F;
}

.side-menu-inner .close span:nth-of-type(1) {
    transform: rotate(45deg);
    margin-top: 13px;
}

.side-menu-inner .close span:nth-of-type(2) {
    transform: rotate(-45deg);
    margin-top: -3px;
}

.side-menu-inner2 ul {
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
}

.side-menu-inner2 ul li a {
    margin: 0 0 15px;
}

/*=== banner area start ===*/

.banner-area.hide_banner {
display: none !important;
}

.banner-area-inner {
    padding: 20px 0;
    background: #2b3990;
}

.banner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.banner-item h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 11pt;
    font-weight: 600;
    color: #fff;
}

.banner-item ul li {
    text-align: right;
}

.banner-item ul li a {
    font-size: 9pt;
    font-weight: 400;
    color: #2b3990;
    display: inline-block;
}

.banner-item ul li a i {
    margin-left: 10px;
}

.banner-item ul li:nth-of-type(2) a {
    font-size: 10pt;
    padding: 10px 25px;
    background: #fff;
    border-radius: 30px;
    margin-top: 10px;
}

.banner-area.hide_banner {
display: none !important;
}

/*=== global area start ===*/

.global-area {
    padding: 70px 0;
    background: #4C5864;
}

.global-item {
    padding: 15px 15px;
    background: #EE741F;
    text-align: center;
}

.global-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.global-item2 {
    padding: 0px 0;
    margin: 0 auto;
}

.global-item2-inner {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}

.global-item2-inner h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 66pt;
    font-weight: 700;
    color: #fff;
}

.global-item2-inner span {
    width: 85px;
    height: 3px;
    display: block;
    background: #EE741F;
    margin: 0 40px;
}

.global-item2-inner p {
    font-family: 'Overpass', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.global-item2-inner2 span {
    background: #7E8084;
}

.global-item2-inner2 p {
    color: #7E8084;
}

/*=== service area start ===*/
.service-area {
    padding: 100px 0 70px;
}

.service-area-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 40px;
    text-align: center;
}

.service-item h2 {
    font-size: 27pt;
    font-weight: 300;
    color: #000000;
    margin-bottom: 30px;
}

.service-item p {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.service-item h5 {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

.service-item2 {
    background: #F4F4F4;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    min-height: 210px;
}

.service-item2 img {
    display: block;
    max-width: 40px;
    margin-bottom: 10px;
}

.service-item2 h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 18pt;
    font-weight: 300;
    color: #2b3990;
}

.service-item2 h3 a {
    color: #2b3990;
    transition: 0.2s all ease;
}

.service-item2 h3 a:hover {
    color: #EE741F;
}

.service-item3 {
    max-width: 950px;
    margin: 0 auto;
    padding: 35px 30px;
    background: #4C4C4C;
    margin-top: 50px;
    text-align: center;
}

.service-item3 h2 {
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 15px;
}

.service-item3 p {
    font-family: 'Archivo', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.service-item3 a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    background: #2b3990;
}

.service-item3 a:hover {
    opacity: .8;
}

/*=== about area start ===*/

.about-area {
    padding: 50px 0;
    background: #48627B;
    text-align: center;
}

.about-item h2 {
    font-size: 31pt;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}

.about-item p {
    font-family: 'Archivo', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 25px;
}

.about-item p a {
    font-family: 'Archivo', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #EE741F;
    background: none;
    padding: 0;
    text-decoration: underline;

}

.about-item a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    background: #2b3990;
}

.about-item a:hover {
    opacity: .8;
}

/*=== solution area start ===*/

.solution-area {
    padding: 80px 0 50px;
}

.solution-item {
    padding: 30px 20px;
    border-top: 6px solid #EE741F;
    background: #f4f4f4;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.solution-item2 {
    border-color: #EE741F;
}

.solution-item3 {
    border-color: #EE741F;
}

.solution-item h2 {
    font-size: 25pt;
    font-weight: 300;
    color: #595C61;
}

.solution-item-inner {
    min-height: 150px;
}

.solution-item p {
    font-family: 'Archivo', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #595C61;
    margin-bottom: 25px;
}

.solution-item a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #2b3990;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88%;
    height: 65px;
    line-height: 19px;
    border-radius: 30px;
    border: 2px solid #EE741F;
    position: absolute;
    bottom: 36px;
}

.solution-item a:hover {
    color: #fff;
    background: #EE741F;
}

/*=== footer area start ===*/

.footer-area {
    padding-top: 50px;
    background: #F4F4F4;
}

.footer-area-inner {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    padding-bottom: 30px;
}

.footer-item {
    width: 20%;
    padding: 0 15px;
}

.footer-item-inner {
    margin-bottom: 30px;
}

.footer-item-inner img {
    max-width: 200px;
}

.footer-item-inner p {
    font-size: 11pt;
    font-weight: 400;
    color: #000000;
    margin-top: 30px;
}

.footer-item-inner h3 {
    font-size: 14pt;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.footer-item-inner ul li a {
    font-size: 13pt;
    font-weight: 300;
    color: #000000;
    margin-bottom: 10px;
    display: inline-block;
}

.footer-item-inner ul li:last-of-type a {
    margin-bottom: 0;
}

.footer-item-inner ul li a:hover {
    color: #EE741F;
}

.footer-item2 {
    width: 26%;
}

.footer-item3 {
    width: 14%;
}

.footer-area-inner2 {
    padding: 30px 0;
    background: #64666B;
}

.footer-item4 {
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    text-align: center;
}

.footer-item4 p {
    font-size: 15pt;
    font-weight: 400;
    color: #fff;
}

.footer-item4 ul {
    display: flex;
    align-items: center;
}

.footer-item4 ul li a {
    font-size: 15pt;
    font-weight: 400;
    color: #fff;
    margin-left: 30px;
}

.footer-item4 ul li a:hover {
    opacity: .8;
}

/*=== blog page start ===*/
.banner-area-inner2 {
    background-image: url(../images/banner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0 120px;
}

.banner-item2 h2 {
    font-size: 48pt;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.banner-item2 span {
    width: 60px;
    height: 10px;
    display: block;
    background: #fff;
}

/*=== blog area start ===*/

.blog-area {
    padding: 70px 0;
}

.blog-item {
    max-width: 950px;
    margin: 0 auto;
}

.blog-item-inner {
    padding-bottom: 35px;
    border-bottom: 1px solid #B7B7B7;
    margin-bottom: 60px;
}

.blog-item-inner img {
    width: 100%;
    display: block;
    margin-bottom: 30px;
}

.blog-item-inner h6 {
    font-size: 14pt;
    font-weight: 700;
    color: #64666B;
    margin-bottom: 15px;
}

.blog-item-inner2 {
    width: 80px;
    height: 6px;
    display: block;
    background: #7EAED4;
    margin-bottom: 30px;
}

.blog-item-inner h2 {
    font-size: 28pt;
    font-weight: 400;
    color: #64666B;
    margin-bottom: 25px;
}

.blog-item-inner h3 {
    font-size: 13pt;
    font-weight: 700;
    color: #4E95CE;
    margin-bottom: 15px;
}

.blog-item-inner p {
    font-size: 17pt;
    font-weight: 400;
    color: #64666B;
    margin-bottom: 30px;
}

.blog-item-inner a {
    font-family: 'Overpass', sans-serif;
    font-size: 17pt;
    font-weight: 400;
    color: #4E95CE;
}

.blog-item-inner h4 {
    font-size: 13pt;
    font-weight: 700;
    color: #4E95CE;
    margin-top: 35px;
}

.blog-item-inner3 ul {
    display: flex;
    align-items: center;
}

.blog-item-inner3 ul li {
    font-size: 17pt;
    font-weight: 400;
    color: #64666B;
    margin-right: 12px;
}

.blog-item-inner3 ul li:nth-of-type(1) a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #64666B;
    color: #2B3990;
}

.blog-item-inner3 ul li a {
    color: #64666B;
}

.blog-item-inner3 ul li a i {
    font-size: 16px;
}

.blog-item-inner3 ul li a i:nth-of-type(1) {
    margin-left: 4px;
}

.blog-item-inner3 ul li a:hover {
    color: #2B3990;
}

/*=== contact page start ===*/

.contact-area {
    padding: 70px 0;
}

.contact-item {
    max-width: 900px;
    margin: 0 auto;
}

.contact-item-inner {
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.contact-item-inner h3 {
    font-size: 35pt;
    font-weight: 700;
    color: #757575;
    margin-bottom: 40px;
}

.contact-item-inner p {    
    font-size: 16pt;
    font-weight: 700;
    color: #757575;
    margin-bottom: 20px;
}

.contact-item-inner h4 {
    font-size: 16pt;
    font-weight: 500;
    color: #757575;
    margin-bottom: 10px;
}

.contact-item-inner h5 {
    font-size: 16pt;
    font-weight: 500;
    color: #757575;
    margin-bottom: 30px;
}

.contact-item-inner h5 a {
    color: #757575;
}

.contact-item-inner h5 a:hover {
    color: #EE741F;
}

.contact-item-inner2 {
    padding: 50px 40px;
    background: #F4F4F4;
}

.contact-item-inner2 h2 {
    font-size: 30pt;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.contact-item-inner2 label {
    font-size: 14pt;
    font-weight: 300;
    color: #000000;
    display: block;
    margin: 0 0 14px;
}

.contact-item-inner2 label span {
    color: #FB7661;
}

.contact-item-inner2 input,
.contact-item-inner2 textarea {
    font-size: 18px;
    font-weight: 500;
    color: #000000;
    display: flex;
    align-items: center;
    width: 100%;
    height: 50px;
    background: #fff;
    border: 1px solid #ACACAC;
    padding: 10px 20px;
    margin-bottom: 50px;
}

.contact-item-inner2 textarea {
    resize: none;
    height: 125px;
    margin-bottom: 40px;
}

.contact-item-inner4 {
    margin-top: -15px;
}

.contact-item-inner4 p {
    font-size: 12pt;
    font-weight: 400;
    color: #000000;
    margin-bottom: 40px;
}

.contact-item-inner4 h6 {
    font-size: 14pt;
    font-weight: 300;
    color: #000000;
    margin-bottom: 20px;
}

.contact-item-inner2 button {
    font-size: 15pt;
    font-weight: 600;
    color: #fff;
    width: 100%;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 35px;
    background: #2b3990;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

.contact-item-inner2 button:hover {
    opacity: .8;
}

/*============================ business page start ========================*/
.business_bannerm {
    background-image: url(../images/banner-bg-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.service_area2m {
    background: #FFFFFF;
    padding: 0px 0 24px;
}
.breadcumb_section {
    margin-top: 40px;
}
.breadcrumb_item ul {
    display: flex;
    align-items: center;
}

.breadcrumb_item ul li {
    font-family: 'Overpass', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #64666B;
    padding-right: 12px;
}

.breadcrumb_item ul li a {
    font-family: 'Overpass', sans-serif;
    font-size: 11pt;
    font-weight: 700;
    color: #64666B;
    transition: 0.2s all ease;
}

.breadcrumb_item ul li a:hover {
    color: #EE741F;
   
}

.service2m_upper {
    padding-top: 35px;
}

.service2m_upper h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 30pt;
    font-weight: 500;
    color: #2b3990;
    margin: 0;
}

.service2m_upper p {
    font-family: 'Archivo', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #000000;
    margin-bottom: 0;
    margin-top: 20px;
}

.service2m_main {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
}

.service2m_item {
    margin-top: 75px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.service2m_item img {
    width: 100%;
}

.service2m_item h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 20pt;
    font-weight: 500;
    color: #2b3990;
    margin: 16px 0 10px;
}

.service2m_item p {
    font-family: 'Archivo', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #000000;
    margin-bottom: 15px;
}

.service2m_item a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #2b3990;
    border: 2px solid #EE741F;
    display: inline-block;
    padding: 10px 50px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.serv2m_btn {
    margin-top: auto;
}

.service2m_item a:hover {
    background:  #EE741F;
    color: #fff;
}

.service2m_part2 {
    padding-top: 60px;
}

.service2m_box {
    background: #000000;
    padding: 50px 30px;
    margin-top: 32px;
    text-align: center;
}

.service2m_box h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 28pt;
    font-weight: 300;
    color: #FFFFFF;
    margin: 0;
}

.service2m_box p {
    font-size: 19pt;
    font-weight: 400;
    color: #FFFFFF;
    margin: 12px 0 20px;
}

.service2m_box a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFFFFF;
    background: #2b3990;
    display: inline-block;
    padding: 12px 42px;
    border-radius: 100px;
    transition: 0.2s all ease;
}

.service2m_box a:hover {
    background:  #EE741F;
    color: #fff;
}

.serv2m_box2 {
    background: #4F758C;
}

/*================== bookm_area start =====================*/
.bookm_main {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
}

.bookm_part {
    margin-top: 75px;
}

.bookm_item img {
    width: 100%;
}

.bookm_cnt h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 26pt;
    font-weight: 400;
    color: #64666B;
    margin: 0;
}

.bookm_cnt p {
    font-family: 'Archivo', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #64666B;
    margin: 12px 0 20px;
}

.bookm_cnt a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFFFFF;
    background: #2b3990;
    display: inline-block;
    padding: 11px 40px;
    border-radius: 100px;
    transition: 0.2s all ease;
}

.bookm_cnt a:hover {
    background:  #EE741F;
    color: #fff;
}

.roadmap_part {
    margin-top: 80px;
}

.serv_inclist {
    padding-top: 30px;
}

.serv_inclist p {
    font-family: 'Archivo', sans-serif;
    font-size: 14.5pt;
    font-weight: 400;
    color: #64666B;
    margin-bottom: 12px;
}

.serv_inclist ul li {
    font-family: 'Archivo', sans-serif;
    font-size: 14.5pt;
    font-weight: 400;
    color: #64666B;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.serv_inclist ul li img {
    max-width: 28px;
    margin-right: 16px;
}

/*=================== accordian_area start ======================*/
.accordian_aream {
    padding: 60px 0;
}

.accordianm_main {
    max-width: 1050px;
    background: #F4F4F4;
    width: 100%;
    margin: 0 auto;
    padding: 60px 70px;
}

.accordianm_upper h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 24pt;
    font-weight: 300;
    color: #64666B;
    margin: 0;
}

.accordianm_upper p {
    font-family: 'Archivo', sans-serif;
    font-size: 14pt;
    font-weight: 400;
    color: #64666B;
    margin: 15px 0 20px;
}

.accordian_item {
    border-bottom: 2px solid #2b3990;
    padding: 15px 0;
    padding-right: 10px;
}

.accordian_title {
    cursor: pointer;
}

.accordian_title h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 19pt;
    font-weight: 600;
    color: #64666B;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordian_title h4 img {
    max-width: 23px;
}

.accordian_title.active h4 img {
    transform: rotate(180deg);
}

.accordian_cnt {
    display: none;
    padding-top: 12px;
    padding-bottom: 5px;
    padding-right: 40px;
}

.accordian_cnt p {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #64666B;
    margin: 0;
}

/*======================= template_aream start ===========================*/
.template_aream {
    padding: 20px 0 80px;
}

.templatem_main {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: #F4F4F4;
    border-top: 7px solid #EE741F;
    padding: 40px 20px;
    text-align: center;
}

.templatem_main h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 24pt;
    font-weight: 400;
    color: #595C61;
    margin: 0;
    text-align: center;
}

.templatem_main p {
    font-size: 14pt;
    font-weight: 400;
    color: #595C61;
    margin: 15px 0 24px;
    text-align: center;
}

.templatem_main a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFFFFF;
    background: #2b3990;
    display: inline-block;
    padding: 11px 36px;
    border-radius: 100px;
    transition: 0.2s all ease;
}

.templatem_main a:hover {
    background:  #EE741F;
    color: #fff;
}

/*================== differ_area start =====================*/
.differm_main {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
}

.differm_title h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 24pt;
    font-weight: 400;
    color: #515358;
    text-align: center;
}

.differm_item {
    margin-top: 40px;
}

.differm_item img {
    width: 100%;
}

.differm_item h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 24pt;
    font-weight: 400;
    color: #515358;
    margin: 20px 0 12px;
}

.differm_item p {
    font-family: 'Archivo', sans-serif;
    font-size: 14pt;
    font-weight: 400;
    color: #515358;
    margin: 0;
}

/*====================== profitm_area start ========================*/
.profitm_main {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
}

.profitm_upper {
    padding: 54px 0;
}

.profitm_upper h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 24pt;
    font-weight: 400;
    color: #515358;
    margin: 0;
}

.profitm_upper p {
    font-family: 'Archivo', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #515358;
    margin: 10px 0 18px;
}

.profitm_upper ul li {
    font-family: 'Archivo', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #515358;
}

.profitm_item {
    background: #000000;
    padding: 60px 15px 45px;
    text-align: center;
    min-height: 452px;
}

.profitm_item h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 24pt;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
}

.profitm_item p {
    font-family: 'Archivo', sans-serif;
    font-size: 13.6pt;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    margin: 15px 0 20px;
}

.profitm_item a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFF;
    background: #2b3990;
    display: inline-block;
    padding: 11px 40px;
    border-radius: 100px;
    transition: 0.2s all ease;
}

.profitm_item a:hover {
    opacity: 0.85;
}

/*====================== datam_area start =========================*/
.datam_area {
    padding: 120px 0;
}

.datam_main {
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 45px;
}

.datam_item {
    background: #799B03;
    padding: 70px 25px;
}

.datam2 {
    background: #51758C;
}

.datam3 {
    background: #8F8B91;
}

.datam_item h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 22pt;
    font-weight: 300;
    color: #FFF;
    margin: 0;
    text-align: center;
}

.datam_item h4 {
    font-family: 'Archivo', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFF;
    margin: 20px 0;

}

.datam_item p {
    font-family: 'Archivo', sans-serif;
    font-size: 13pt;
    font-weight: 400;
    color: #FFF;
    margin-top: 20px;
    margin-bottom: 0;
}

/*======================== solutionm_area start ==========================*/
.solutionm_area {
    padding-bottom: 80px;
}

.solutionm_main {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 45px;
}

.solutionm_item {
    background: #F4F4F4;
    border-top: 8px solid #EE741F;
    padding: 40px 30px 35px;
    text-align: center;
}

.solutem2 {
    border-top: 8px solid #EE741F;
}

.solutionm_item h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 25pt;
    font-weight: 400;
    color: #595C61;
    text-align: center;
    margin-bottom: 15px;
}

.solutionm_item img {
    width: 100%;
}

.solutionm_item p {
    font-size: 15pt;
    font-weight: 400;
    color: #595C61;
    margin: 10px 0 20px;
}

.solutionm_item a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFFFFF;
    background: #2b3990;
    display: inline-block;
    padding: 11px 40px;
    border-radius: 100px;
    transition: 0.2s all ease;
}

.solutionm_item a:hover {
    background:  #EE741F;
    color: #fff;
}

.contact2m_part {
    max-width: 750px;
    width: 100%;
    margin: 75px auto;
    background: #64666B;
    text-align: center;
    padding: 40px 20px;
}

.contact2m_part h2 {
    font-family: 'Overpass', sans-serif;
    font-size: 28pt;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.contact2m_part p {
    font-family: 'Overpass', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #FFFFFF;
    margin: 12px 0 21px;
    text-align: center;
}

.contact2m_part a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFFFFF;
    background: #2b3990;
    display: inline-block;
    padding: 11px 40px;
    border-radius: 100px;
    transition: 0.2s all ease;
}

.contact2m_part a:hover {
    background:  #EE741F;
    color: #fff;
}

.contact2m_btmcnt p {
    font-family: 'Overpass', sans-serif;
    font-size: 11pt;
    font-weight: 400;
    color: #8C8D91;
    margin: 0;
}

/*======================== data-center page start =====================*/
.service2m_upper .heading_color {
    font-weight: 400;
    color: #2b3990;
}

.dataCenter_item img {
    width: 100%;
}

.dataCenter_part {
    margin-top: 80px;
}

.dataCenter_cnt h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 24pt;
    font-weight: 400;
    color: #2b3990;
    margin: 0;
    position: relative;
}

.dataCenter_cnt h3::after {
    content: "";
    width: 45px;
    height: 4px;
    display: block;
    background: #2b3990;
    margin-top: 8px;
    margin-bottom: 20px;

}

.dataCenter_cnt h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 18pt;
    font-weight: 500;
    color: #64666B;
    margin: 14px 0 16px;
}

.dataCenter_cnt p {
    font-family: 'Archivo', sans-serif;
    font-size: 14pt;
    font-weight: 400;
    color: #64666B;
    margin: 14px 0;
}

.dataCenter_cnt ul li {
    font-family: 'Archivo', sans-serif;
    font-size: 14pt;
    font-weight: 400;
    color: #64666B;
    margin: 12px 0;
    display: flex;
    align-items: flex-start;
}

.dataCenter_cnt ul li img {
    max-width: 24px;
    margin-right: 12px;
    margin-top: 4px;
}

.dataCenter_cnt a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFFFFF;
    background: #2b3990;
    display: inline-block;
    padding: 10px 38px;
    border-radius: 50px;
    margin-top: 5px;
    transition: 0.2s all ease;
}

.dataCenter_cnt a:hover {
    background:  #EE741F;
    color: #fff;
}

.question_box {
    background: #64666B;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 75px;
    padding: 40px 20px;
}

.question_box h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 26pt;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-align: center;
}

.question_box a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFFFFF;
    background: #2b3990;
    display: inline-block;
    padding: 11px 42px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.question_box a:hover {
    background:  #EE741F;
    color: #fff;
}

/*================ benefitm_area start ====================*/
.benefitm_area {
    padding: 60px 0 50px;
}

.benefitm_cnt h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 26pt;
    font-weight: 400;
    color: #64666B;
    position: relative;
}

.benefitm_cnt h3::after {
    content: "";
    width: 45px;
    height: 4px;
    display: block;
    background: #2b3990;
    margin: 10px 0 24px;
}

.benefitm_cnt h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 18pt;
    font-weight: 600;
    color: #64666B;
    margin-bottom: 34px;
}

.benefitm_cnt ul li {
    font-family: 'Archivo', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #64666B;
    display: block;
    align-items: flex-start;
    margin-top: 8px;
}

.benefitm_cnt ul li img {
    max-width: 30px;
    margin-top: 4px;
    margin-right: 14px;
}

.benefitm_cnt ul li .teal {
    color: #EE741F;
}

/*================= premisem_area start =====================*/
.premisem_area {
    padding-bottom: 75px;
}

.premisem_main {
    background: #48627B;
    padding: 70px 70px;
}

.premisem_main h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 27pt;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.premisem_main p {
    font-family: 'Archivo', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #FFFFFF;
    margin: 16px 0;
}

.premisem_main h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 18pt;
    font-weight: 700;
    color: #FFFFFF;
    margin: 16px 0;
}

.premisem_main ul li {
    font-family: 'Archivo', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.premisem_main ul li img {
    max-width: 28px;
    margin-top: 4px;
    margin-right: 12px;
}

.premisem_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.premisem_btn a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFF;
    background: #2b3990;
    display: inline-block;
    padding: 11px 40px;
    border-radius: 50px;
    transition: 0.2s all ease;
    margin: 0 10px;
}

.premisem_btn a:hover {
    background:  #EE741F;
    color: #fff;
}

/*======================== sustainm_area start =========================*/
.sustainm_area {
    background: #000000;
    padding: 60px 0;
}

.sustainm_cnt h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 32pt;
    font-weight: 300;
    color: #FFFFFF;
}

.sustainm_cnt p {
    font-size: 16pt;
    font-weight: 400;
    color: #FFFFFF;
    margin: 16px 0 25px;
}

.sustainm_cnt a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #FFFFFF;
    border: 2px solid #FCBC36;
    display: inline-block;
    padding: 11px 45px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.sustainm_cnt a:hover {
    background: #FCBC36;
    color: #000;
}

/*================= facilitym_area start =====================*/
.facilitym_area {
    padding: 60px 0 75px;
}

.facilitym_item h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 24.5pt;
    font-weight: 300;
    color: #595C61;
    position: relative;
}

.facilitym_item h3::after {
    content: "";
    width: 45px;
    height: 4px;
    display: block;
    background: #2b3990;
    margin: 8px 0 20px;
}

.facilitym_item p {
    font-family: 'Archivo', sans-serif;
    font-size: 14pt;
    font-weight: 400;
    color: #595C61;
    margin: 32px 0;
}

.facilitym_item h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 17pt;
    font-weight: 700;
    color: #595C61;
    margin: 32px 0;
}

.facilitym_item a {
    font-family: 'Overpass', sans-serif;
    font-size: 13pt;
    font-weight: 600;
    color: #FFF;
    background: #2b3990;
    display: inline-block;
    padding: 11px 40px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.facilitym_item a:hover {
    opacity: 0.85;
}

/*=============== assetm_area start ===================*/
.assetm_area {
    padding: 20px 0 80px;
}

.assetm_item img {
    width: 100%;
}

.assetm_cnt h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 26pt;
    font-weight: 400;
    color: #595C61;
}

.assetm_cnt p {
    font-family: 'Archivo', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #595C61;
    margin: 16px 0;
}

.assetm_cnt ul li {
    font-family: 'Archivo', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #595C61;
    margin-bottom: 4px;
}

.assetm_cnt h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 15pt;
    font-weight: 700;
    color: #EE741F;
    margin: 18px 0;
}

.assetm_cnt a {
    font-family: 'Overpass', sans-serif;
    font-size: 13.5pt;
    font-weight: 600;
    color: #606267;
    border: 2px solid #FCBC36;
    display: inline-block;
    padding: 10px 45px;
    border-radius: 50px;
    transition: 0.2s all ease;
}

.assetm_cnt a:hover {
    background: #FCBC36;
    color: #000;
}

/*=============== responsem_area start ==================*/
.responsem_area {
    background: #4F758C;
    padding: 75px 0;
}

.responsem_cnt h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 26pt;
    font-weight: 300;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-align: center;
}

.responsem_cnt p {
    font-size: 15.5pt;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

/*=================== globalm_area start =====================*/
.globalm_area {
    padding: 60px 0;
}

.globalm_item {
    background: #000000;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 30px;
    min-height: 212px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.globalm_item p {
    font-family: 'Overpass', sans-serif;
    font-size: 22pt;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

/*================= location_area start ====================*/
.locationm_area {
    padding: 10px 0 75px;
}

.locationm_upper h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 45pt;
    font-weight: 500;
    color: #2b3990;
    position: relative;
}

.locationm_upper h3::after {
    content: "";
    width: 45px;
    height: 4px;
    display: block;
    background: #2b3990;
    margin: 8px 0 35px;
}

.locationm_upper h4 {
    font-family: 'Overpass', sans-serif;
    font-size: 26pt;
    font-weight: 400;
    color: #2b3990;
    margin: 0;
    position: relative;
}

.locationm_upper h4::after {
    content: "";
    width: 40px;
    height: 4px;
    display: block;
    background: #2b3990;
    margin-top: 2px;
    margin-bottom: 20px;
}

.locationm_upper h6 {
    font-family: 'Overpass', sans-serif;
    font-size: 18pt;
    font-weight: 600;
    color: #2b3990;
    margin-bottom: 15px;
}

.locationm_upper p {
    font-size: 16pt;
    font-weight: 400;
    color: #5D6166;
    margin: 0;
}

.locationm_bottom {
    padding-top: 75px;
}

.locationm_bottom h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 25pt;
    font-weight: 400;
    color: #2b3990;
    margin-bottom: 21px;
}

.locationm_bottom ul li a {
    font-family: 'Archivo', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #2b3990;
    display: inline-block;
    margin-bottom: 21px;
    transition: 0.2s all ease;
}

.locationm_bottom ul li a:hover {
    opacity: 0.85;
}


/*====================== recycling page start =========================*/
.banner-area2 .banner-area-inner2 {
    background: #000000;
}

.recyling-area {
    padding: 40px 0 10px;
}

.recyling-item ul {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.recyling-item ul li {
    font-family: 'Overpass', sans-serif;
    font-size: 12pt;
    font-weight: 700;
    color: #64666B;
}

.recyling-item ul li a {
    color: #64666B;
}

.recyling-item ul li span {
    margin: 0 12px;
}

.recyling-item ul li a:hover {
    color: #29A5D7;
}

.recyling-item2 h2 {
    font-size: 26pt;
    font-weight: 400;
    color: #7E8084;
    margin-bottom: 15px;
}

.recyling-item2 p {
    font-family: 'Archivo', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #7E8084;
    margin-bottom: 20px;
}

.recyling-item2 ul li {
    font-family: 'Archivo', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #7E8084;
    display: flex;
}

.recyling-item2 ul li span {
    margin-right: 8px;
}

.recyling-item2-inner2 {
    display: flex;
}

.recyling-item2-inner3 {
    width: 60%;
    padding-right: 25px;
}

.recyling-item2-inner4 {
    width: 40%;
}

.recyling-item2 img {
    width: 100%;
}

.recyling-item2-inner5 {
    display: none;
}

/*=== work area start ===*/

.work-area {
    padding: 70px 0;
}

.work-area-inner {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.work-item-inner img {
    width: 300px;
} 

.work-item {
    margin-bottom: 30px;
}

.work-item2 {
    max-width: 400px;
    margin-left: auto;
    margin-bottom: 30px;
}

.work-item2 h2 {
    font-size: 27pt;
    font-weight: 400;
    color: #7E8084;
    margin-bottom: 10px;
}

.work-item2 p {
    font-family: 'Archivo', sans-serif;
    font-size: 17pt;
    font-weight: 400;
    color: #7E8084;
    margin-bottom: 10px;
}

.work-item2 a {
    font-family: 'Archivo', sans-serif;
    font-size: 13pt;
    font-weight: 600;
    color: #fff;
    padding: 10px 40px;
    background: #2b3990;
    border-radius: 30px;
}

.work-item2 a:hover {
    background:  #EE741F;
    color: #fff;
}

.work-item2 ul {
    margin-bottom: 12px;
}

.work-item2 ul li {
    font-family: 'Archivo', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #7E8084;
    display: flex;
}

.work-item2 ul li span {
    margin-right: 12px;
}

.work-item2 ul li.active {
    color: #29A5D7;
}

.work-item2-inner2 a {
    color: #64666B;
    background: transparent;
    border: 2px solid #EE741F;
}

.work-item2-inner2 a:hover {
    opacity: 1;
    color: #fff;
    background: #EE741F;
}

.work-item-inner2 img {
    width: 100%;
}

.work-item3 {
    max-width: 100%;
}

.work-item4 {
    max-width: 1150px;
    margin-left: 0;
    margin-top: 50px;
}

/*=== service area2 start ===*/

.service-area2 .service-item h2 {
    margin-bottom: 5px;
}

.service-area2 .service-item p {
    font-size: 15pt;
    margin-bottom: 15px;
}

.service-item20 img {
    max-width: 55px;
}

.work-item5 {
    max-width: 480px;
}

/*=== security area start ===*/

.security-area {
    padding: 70px 0;
}

.security-area .service-item h2 {
    margin-bottom: 10px;
    font-weight: 600;
}

.security-area .service-item p {
    font-size: 16pt;
    max-width: 100%;
}

/*=== trust area start ===*/

.trust-area {
    padding: 70px 0;
    background: #64666B;
}

.trust-item-inner {
    max-width: 410px;
}

.trust-item h2 {
    font-size: 27pt;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.trust-item h3 {
    font-family: 'Archivo', sans-serif;
    font-size: 19pt;
    font-weight: 500;
    color: #fff;
    margin-bottom: 10px;
}

.trust-item p {
    font-family: 'Archivo', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #fff;
    margin-bottom: 15px;
}

.trust-item-inner2 {
    padding-top: 20px;
}

.trust-item-inner3 {
    display: flex;
}

.trust-item-inner3 img {
    width: 150px;
    margin-right: 50px;
}

.trust-item-inner3 p {
    width: 230px;
    margin-bottom: 15px;
}

.trust-item-inner3 a {
    font-size: 13pt;
    font-weight: 700;
    color: #fff;
    line-height: 16px;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    background: #2b3990;
    border-radius: 30px;
    display: block;
}

.trust-item-inner3 a:hover {
    background:  #EE741F;
    color: #fff;
}

/*=== certified area start ===*/

.certified-area {
    padding: 70px 0;
    overflow: hidden;
}

.certified-item {
    max-width: 1100px;
    margin: 0 auto;
}

.certified-item h2 {
    font-size: 28pt;
    font-weight: 700;
    color: #919191;
    text-align: center;
    margin-bottom: 40px;
}

.certified-item ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.certified-item ul li {
    width: 20%;
    padding: 0 15px;
    margin-bottom: 20px;
}

.certified-item ul li img {
    max-width: 70%;
}

.certified-item ul li:nth-of-type(4) img {
    max-width: 60%;
}

.certified-item ul li:nth-of-type(5) img {
    max-width: 60%;
}

.certified-item-inner2 {
    margin-top: 10px;
}

.certified-item-inner2 ul li img {
    max-width: 85%;
}

.certified-item-inner2 ul li:nth-of-type(4) img {
    max-width: 85%;
}

.certified-item-inner2 ul li:nth-of-type(5) img {
    max-width: 85%;
}

/*=== electronic area start ===*/

.electronic-area {
    padding: 70px 0;
    background: #000;
    text-align: center;
}

.electronic-item h2 {
    font-size: 28pt;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.electronic-item p {
    font-family: 'Overpass', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.electronic-item-inner {
    margin-top: 50px;
}

.electronic-item-inner a {
    font-family: 'Overpass', sans-serif;
    font-size: 14pt;
    font-weight: 600;
    color: #fff;
    padding: 10px 40px;
    background: #2b3990;
    border-radius: 30px;
}

.electronic-item-inner a:hover {
    background:  #EE741F;
    color: #fff;
}

/*=== solution area2 start ===*/

.solution-area2 {
    overflow: hidden;
}

.solution-area2 .row {
    --bs-gutter-x: 50px;
}

.solution-item  {
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.solution-area2 .solution-item h2 {
    font-size: 27pt;
}

.solution-area2 .solution-item-inner {
    min-height: auto;
    margin-bottom: 20px;
}

.solution-area2 .solution-item a {
    width: auto;
    display: inline-block;
    padding: 12px 40px!important;
    line-height: initial!important;
    height: initial!important;
}

.solution-area2 .solution-item4 {
    padding-bottom: 40px;
}

.solution-area-inner4 {
    max-width: 900px;
    margin: 0 auto 20px;
    padding: 45px 15px;
    text-align: center;
    margin-top: 40px;
    background: #64666B;
}

.solution-area-inner4 .electronic-item-inner {
    margin-top: 20px;
}

/* .solution-item p {
    margin-top: auto;
} */

/*=== reporting area start ===*/

.reporting-area {
    padding-bottom: 50px;
    overflow: hidden;
}

.reporting-area .row {
    --bs-gutter-x: 35px;
}

.reporting-item {
    margin-bottom: 45px;
    text-align: center;
}

.reporting-item h2 {
    font-size: 32px;
    font-weight: 400;
    color: #595C61;
}

.reporting-item2 {
    margin-bottom: 30px;
}

.reporting-item2 img {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.reporting-item2 h2 {
    font-size: 21pt;
    font-weight: 500;
    color: #595C61;
    margin-bottom: 10px;
}

.reporting-item2 p {
    font-family: 'Archivo', sans-serif;
    font-size: 15pt;
    font-weight: 400;
    color: #595C61;
}

.reporting-area .solution-area-inner4 {
    max-width: 950px;
    background: #F4F4F4;
    border-top: 10px solid #FCBC36;
}

.reporting-area .electronic-item h2 {
    color: #595C61;
}

.reporting-area .electronic-item p {
    color: #595C61;
}

.secure_accordianm {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}

/*================ update start ==================*/
.global-area {
    background-image: url(../images/animation_banner2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.animation_overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 70px 0;
}

.animation_hover1 {
    background-image: url(../images/animation_banner2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.animation_hover2 {
    background-image: url(../images/animation_banner1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.animation_hover3 {
    background-image: url(../images/animation_banner3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.global-item2-inner h2 {
    color: #7E8084;
    cursor: pointer;
}
.global-item2-inner.heading h2 {
    color: #fff;
    cursor:default;
}


.text_white h2,
.text_white p {
    color: #FFF;
}

.text_white span {
    background: #EE741F;
}

.text_gray h2,
.text_gray p {
    color: #7E8084;
}

.text_gray span {
    background: #7E8084;
}

.roadmap_part {
    padding: 20px 0 145px;
    position: relative;
}

.roadmap_part img {
    max-width: 1080px;
    display: block;
    margin: 0 auto;
}

.roadmap_cnt {
    max-width: 312px;
    width: 100%;
}

.roadmap_cnt h3 {
    font-family: 'Overpass', sans-serif;
    font-size: 30pt;
    font-weight: 500;
    color: #27A4D6;
    position: relative;
}

.roadmap_cnt h3::after {
    content: "";
    width: 40px;
    height: 4px;
    display: block;
    background: #27A4D6;
    margin: 6px 0 14px;
}

.roadmap_cnt p {
    font-family: 'Archivo', sans-serif;
    font-size: 14pt;
    font-weight: 400;
    color: #64666B;
    margin: 0;
}

.road_cnt1 {
    text-align: right;
    position: absolute;
    top: 52px;
    left: -28px;
}

.road_cnt1 h3 {
    color: #27A4D6;
    text-align: right;
}

.road_cnt1 p {
    text-align: right;
}

.road_cnt1 h3::after {
    margin-left: auto;
    background: #27A4D6;
}

.road_cnt2 {
    text-align: left;
    position: absolute;
    top: 52px;
    right: -28px;
}

.road_cnt2 h3 {
    color: #1B4964;
    text-align: left;
}

.road_cnt2 p {
    text-align: left;
}

.road_cnt2 h3::after {
    margin-left: 0;
    background: #1B4964;
}

.road_cnt3 {
    text-align: right;
    position: absolute;
    bottom: 12px;
    left: 70px;
}

.road_cnt3 h3 {
    color: #545961;
    text-align: right;
}

.road_cnt3 p {
    text-align: right;
}

.road_cnt3 h3::after {
    margin-left: auto;
    background: #4E525A;
}

.road_cnt4 {
    text-align: left;
    position: absolute;
    bottom: -6px;
    right: 56px;
}

.road_cnt4 h3 {
    color: #FCCA37;
    text-align: left;
}

.road_cnt4 p {
    text-align: left;
}

.road_cnt4 h3::after {
    margin-left: 0;
    background: #FCCA37;
}

.global-item2-inner.heading{
  padding-bottom: 90px;
}
.global-item2-inner.global-item2-inner2 h2{
  display: list-item;
  list-style-type: disc;
  list-style-position: inside;
}
.business3 h2 {
    color: #FFF;
}
.global-item2-inner.heading{
	text-align:center;
	display:block;
}
.global-item2-inner.heading h2 {
  font-size: 44pt;
}
.global-item2-inner h2{
	font-size:40pt;
}
.global-item2-inner{
	padding-bottom:70px;
}

@media screen and (min-width: 320px) and (max-width: 990px){
	.header-item-inner img {
	margin-top: 0px;
}
.contact_btn a {
	margin-top: 10px !important;
	display: block;
}
			#mega-menu-wrap-menu-1 .mega-menu-toggle + #mega-menu-menu-1 {
		background: #2b3990 !important;
	}
	.statistics .stat {
	margin: 35px 15% !important;
	width: 70% !important;
}
	.global-item2-inner h2{
	font-size:24pt; 
}
}