/* Root Variables */

:root {
    --primary-color: #7dd956;
    --text-color: #18084b;
    --body-font: "Arial", regular;
    --mordern-font: "modern_no._20regular";
}

@font-face {
    font-family: "modern_no._20regular";
    src: url("../fonts/font_modern_no._20-webfont.woff2") format("woff2"), url("../fonts/font_modern_no._20-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}


/*===========================================
Default CSS
============================================*/

body {
    font-family: "Arial", regular;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 400;
    background: #fff;
    font-style: normal;
    margin: 0;
    padding: 0;
    line-height: 1.4;
    overflow-x: hidden;
}

::-moz-selection {
    color: #fff;
    background: var(--primary-color);
}

::selection {
    color: #fff;
    background: var(--primary-color);
}

a,
a:hover {
    color: var(--primary-color);
    -webkit-outline: none;
    outline: none;
    text-decoration: none;
    cursor: pointer;
}

    a:focus {
        text-decoration: none;
        cursor: pointer;
    }

    button,
    button:focus,
    img,
    img:focus,
    input,
    input:focus,
    textarea,
    textarea:focus,
    select,
    select:focus,
    option,
    option:focus,
    a:focus,
    select:focus {
        -webkit-outline: none;
        outline: none;
    }

ul {
    padding: 0;
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Arial", regular;
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
}

h5,
h6 {
    margin-bottom: 0;
}

section {
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
    display: block;
}

.section {
    padding-top: 70px;
    padding-bottom: 70px;
}

p {
    margin: 0;
    margin-bottom: 20px;
    line-height: 1.55;
}

ul {
    margin: 0;
    padding: 0;
}

.fw-semibold {
    font-weight: 600;
}

hr {
    background-color: var(--border-color);
    opacity: 1;
}

.form-group {
    margin-bottom: 15px;
}

iframe {
    width: 100%;
    display: block;
}

h6.form-heading {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

label.form-check-label {
    font-size: 13px;
    color: var(--text-color);
}

.form-label {
    margin-bottom: 4px;
    font-size: 13px;
    color: var(--text-color);
    display: block;
}

label.col-form-label {
    margin-bottom: 0;
}

.form-control,
.form-select {
    font-size: 14px;
    color: var(--text-color);
    width: 100%;
    height: 38px;
    border: 1px solid #686868;
    background-color: transparent;
    border-radius: 4px;
    margin: 0;
    padding: 0 10px;
    -webkit-outline: none;
    -ms-outline: none;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

select.form-select {
    padding-right: 36px;
}

textarea.form-control {
    height: 160px;
    padding: 14px 34px;
    border-radius: 4px;
}

.form-control:focus,
select.form-select:focus {
    border: 1px solid var(--primary-color);
    box-shadow: none;
}


/* select:-moz-focusring {
   color: transparent;
   text-shadow: 0 0 0 #000;
} */

select:active {
    border: 1px solid var(--primary-color);
    -webkit-outline: none;
    -ms-outline: none;
    outline: none;
}

input.form-control::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #888888;
}

input.form-control::-moz-placeholder,
textarea::-moz-placeholder {
    color: #888888;
}

input.form-control:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #888888;
}

input.form-control:-moz-placeholder,
textarea:-moz-placeholder {
    color: #888888;
}

.wrapper {
    width: 100%;
    position: relative;
    padding-top: 80px;
}

.main {
    width: 100%;
    position: relative;
}

.userselect-none {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

.heading-wrap {
    text-align: center;
    margin-bottom: 30px;
}

    .heading-wrap .title {
        font-size: 30px;
        font-weight: 700;
        line-height: 40px;
        text-transform: uppercase;
        margin: 0;
        margin-bottom: 0;
    }

.white-text,
.white-text h1,
.white-text h2,
.white-text h3,
.white-text h4,
.white-text h5,
.white-text h6,
.white-text p,
.white-text a {
    color: #fff;
}

.theme-btn {
    color: #18084b;
    background-color: #7dd956;
    border-color: #7dd956;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 16px;
    -webkit-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

    .theme-btn:hover {
        background-color: #18084b;
        border-color: #18084b;
        color: #fff;
    }

.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1440px !important;
  padding:0px;
    margin:0px auto;
}

ul.doted-list {
    list-style-type: none;
    margin-left: 20px;
}

    ul.doted-list li {
        margin-bottom: 7px;
    }

        ul.doted-list li:before {
            content: url('/Assets/images/star_bullet.png');
            margin-right: 14px;
        }

.h5-heading {
    font-family: "Arial", regular;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 32px;
    line-height: 1.45;
    /* font-weight: normal;*/
}

.page-content {
    padding-top: 50px;
    overflow: hidden;
}

.line-height-lg {
    line-height: 1.7;
}

.line-height-xl {
    line-height: 2.2;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-20 {
    font-size: 20px;
}


/*===========================================
Header
============================================*/

.main-header {
    background-color: #18084b;
    min-height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

    .main-header::before {
        content: "";
        background: #7dd956;
        width: 44%;
        height: 100px;
        position: absolute;
        right: 0;
    }

.main-logo img {
    width: 208px;
}

.main-menu li:nth-last-child(1) {
    margin-right: 0px;
}

.main-menu .nav-item {
    margin: 0 30px;
}
.navbar-light .main-menu .nav-link.active, .navbar-light .main-menu .nav-link.active:hover, .navbar-light .main-menu .nav-link:hover {
    color: #fff !important;
}

/* new added 1352022*/

.greenmenu {
    background: #7dd956;
}

.navbar {
    padding-top: 0;
    padding-bottom: 0;
}

ul.navbar-nav.main-menu.client-menu {
    float: right;
    text-align: right;
    padding: 19px 0px;
    align-items: inherit;
}


ul.navbar-nav.main-menu {
    align-items: inherit;
}

.navbar-light .main-menu .nav-link {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    position: relative;
    padding: 5px 0;
}
.client-menu a.nav-link.blc {
    color: #18084b;
}
.client-menu .blc {
    color: #18084b;
}
.client-menu a.nav-link:hover {
    color: #fff;
}

.navbar-light .main-menu > .nav-item > .nav-link.active:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    right: 0;
    bottom: 1px;
    margin: 0 auto;
    background-color: #7dd956;
}

.navbar-light .main-menu .nav-link.active,
.navbar-light .main-menu .nav-link.active:hover,
.navbar-light .main-menu .nav-link:hover {
    color: #fff !important;
}

.navbar-light .main-menu .access-menu .nav-link {
    color: var(--primary-color);
}

    .navbar-light .main-menu .access-menu .nav-link:hover {
        color: #fff;
    }

.main-header button.navbar-toggler {
    background: #ffffff;
    font-size: 16px;
}

.navbar-light .navbar-nav .nav-link:focus {
    color: #fff !important;
}

.dropdown-menu {
    background-color: #7dd956;
    border-radius: 8px;
    padding: 12px 0;
}

    .dropdown-menu li a.dropdown-item {
        color: #18084b;
        font-size: 15px;
        font-weight: 400;
        padding: 4px 18px;
    }

        .dropdown-menu li a.dropdown-item:hover,
        .dropdown-menu li a.dropdown-item.active,
        .dropdown-menu li a.dropdown-item:active {
            color: #fff;
            background: transparent;
        }

@media (max-width: 991px) {
    .main-menu {
        margin-top: 12px;
        border-top: solid 1px #413076;
        padding-top: 10px;
        margin-bottom: 20px;
    }

        .main-menu .nav-item {
            text-align: center;
        }

    .navbar-light .main-menu .nav-link {
        font-size: 16px;
    }
}


/*===========================================
Banner
============================================*/

.banner-section {
    position: relative;
}

.banner-video video {
    width: 100%;
    height: 600px;
}

.outsourcing-video-wrap {
    margin-top: -40px;
}

.outsourcing-video .video-items {
    font-size: 20px;
    color: #18084b;
    font-weight: 400;
    background: #7dd956;
    height: 90px;
    width: 100%;
    max-width: 210px;
    border-radius: 8px;
    padding: 15px 24px;
    padding-right: 50px;
    display: flex;
    align-items: center;
    line-height: 1.3;
    position: relative;
    margin-bottom: 20px;
}

    .outsourcing-video .video-items .playbtn {
        width: 0;
        height: 0;
        border-left: solid 15px #18084b;
        border-top: solid 10px transparent;
        border-bottom: solid 10px transparent;
        position: absolute;
        right: 20px;
        top: 50%;
        margin-top: -10px;
    }

.bluebox .video-items {
    color: #fff;
    background-color: #18084b;
    text-align: center;
    line-height: 1.1;
    margin: 0px auto;
    padding-right: 0px;
    padding: 10px;
    position: inherit;
    max-width: 90%;
    display: grid;
    height: auto;
}

.bluebox2 .video-items {
    color: #fff;
    background-color: #18084b;
    text-align: center;
    line-height: 1.1;
    margin: 0px auto;
    padding-right: 0px;
    padding: 24px;
    position: inherit;
    max-width: 90%;
    display: grid;
    height: auto;
}


.greenbox .video-items {
    color: #18084b;
    background-color: #7dd956;
    text-align: center;
    line-height: 1.1;
    margin: 0px auto;
    padding-right: 0px;
    padding: 10px;
    position: inherit;
    max-width: 90%;
    display: grid;
    height: auto;
}

.greenbox2 .video-items {
    color: #18084b;
    background-color: #7dd956;
    text-align: center;
    line-height: 1.1;
    margin: 0px auto;
    padding-right: 0px;
    padding: 24px;
    position: inherit;
    max-width: 90%;
    display: grid;
    height: auto;
}
.video-items:hover {
    /*color: #23527c;*/
    box-shadow: 0 0 6px -1px rgb(0 0 0 / 60%)
}

.video-items.playarrow p {
    margin: 0px;
}

.video-items.playarrow p::after {
        content: "";
        width: 0;
        height: 0;
        border-left: solid 15px #18084b;
        border-top: solid 10px transparent;
        border-bottom: solid 10px transparent;
        position: absolute;
        right: 20px;
        top: 50%;
        margin-top: -10px;
    }

   /* .video-items.playarrow p:hover:after {
        border-left: solid 15px #23527c;
    }*/
/*===========================================
Login
============================================*/

.loginPage-section {
    padding-top: 100px;
    padding-bottom: 160px;
    overflow: hidden;
}

.loginPage-wrap {
    max-width: 790px;
    margin: 0 auto;
}

    .loginPage-wrap .login-form-box {
        border: solid 2px #18084b;
        padding: 50px 24px;
        border-radius: 20px;
        background: #fff;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.login-form-box .top-bar h1 {
    font-size: 46px;
    text-align: center;
    color: #18084b;
    margin-bottom: 30px;
}

.login-form-box .top-bar .logo img {
    margin: 0 auto;
    width: 206px;
}

.login-form {
    margin-top: 30px;
}

    .login-form .label {
        font-size: 14px;
        font-weight: 400;
        color: #999;
        margin-bottom: 8px;
    }

    .login-form .form-control {
        border: solid 1px #999;
        height: 36px;
        border-radius: 28px;
        font-size: 14px;
        padding: 0 15px;
    }

    .login-form .btn-wrap {
        text-align: right;
    }

    .login-form .login-btn {
        font-size: 14px;
        background: #18084b;
        color: #fff;
        border-radius: 40px;
        height: 36px;
        line-height: 36px;
        padding: 0 20px;
    }

        .login-form .login-btn:hover {
            background-color: #7dd956;
        }

.staffAcess-box {
    background-color: #7dd956;
    padding: 50px 24px;
    border-radius: 20px;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-box,
.staffAcess-box {
    max-width: 370px;
    margin: 0 auto;
    min-height: 390px;
}

    .staffAcess-box .icon {
        margin-bottom: 40px;
    }

        .staffAcess-box .icon img {
            margin: 0 auto;
            height: 136px;
        }

    .staffAcess-box .title {
        font-size: 34px;
        font-weight: 400;
        color: #18084b;
    }

.link a {
    color: #18084b;
}

    .link a:hover {
        color: #fff;
    }


/*===========================================
About us
============================================*/

.flag {
    float: left;
}
/*new page*/
    .flag img {
        border-radius: 240px;
        width: 220px;
        height: 220px;
    }

.flag-box {
    float: left;
    max-width: 230px;
    height: 100%;
    min-height: 230px;
    width: 100%;
}

.flag-box2 {
    max-width: 168px;
    height: 100%;
    min-height: 168px;
    width: 100%;
    float: right;
    margin-right: 50px;
    background: #18084b;
    border-radius: 100%;
}

    .flag-box2 img {
        width: 168px;
        border-radius: 100%;
    }

.mrn {
    padding-top: 20px;
}
span.smalli {
    float: left;
    margin-right: 10px;
}
.smalli img {
    width: 30px;
}

.greenbox5 {
    background: #7dd956 !important;
    color: #18084b !important;
}


.user-photo {
    position: relative;
}
    .user-photo img {
        border-radius: 100%;
    }
.flag-icon {
    position: absolute;
    bottom: -20px;
    right: -30px;
}

    .flag-icon img {
        border-radius: 100px;
        height: 60px;
        width: 60px;
    }

@media (max-width: 767px) {
    .aboutTriangle {
        display: none;
    }
}

.about-section {
    padding-top: 70px;
}

.about-yearsof {
    font-size: 18px;
}


/*
.about-section .aboutTriangle {
  position: absolute;
  top: calc(50% + 10px);
  transform: translate(-100%, -50%);
  left: 0;
}*/

.about-section .aboutTriangle {
    position: absolute;
    top: calc(0% + 10px);
    transform: translate(46%, -50%);
    right: 0;
}

.about-wrap p {
    text-align: justify;
}

.about-yearsof {
    margin-top: 0;
    font-weight: 600;
    font-size: 20px;
}

.twentyyearlogo img {
    width: 260px;
    margin: 0 auto;
}

.about-yearsof span {
    font-size: 180px;
    line-height: 170px;
    display: block;
    color: var(--text-color);
    font-weight: 600;
    margin-top: 64px;
}

.shap-title-wrap {
    margin-bottom: 34px;
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: table;
}

.middlec {
 /*   display: table-cell;*/
    vertical-align: middle;
    padding-left: 16px;
}

.shap-title-wrap .shap {
    background: #18084b;
    width: 571%;
    display: block;
    position: absolute;
    left: calc(-570% + 5px);
    top: 0;
    background: #18084b;
    height: 55px;
}

    .shap-title-wrap .shap:after {
        content: "";
        width: 100%;
        height: 3px;
        background-color: #ffffff;
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -1px;
    }

.shap-title-wrap .title {
    background: var(--text-color);
    border-radius: 6px;
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    padding: 12px 20px;
    display: inline-block;
    font-weight: 300;
    text-align: left;
    margin: 0;
}

.shap-title-wrap.without-bg {
    margin-bottom: 24px;
}

    .shap-title-wrap.without-bg .shap {
        background-color: transparent;
    }

        .shap-title-wrap.without-bg .shap:after {
            background-color: var(--text-color);
            margin-top: 0;
        }

    .shap-title-wrap.without-bg .title {
        background: transparent;
        color: var(--text-color);
        font-size: 44px;
        font-weight: 600;
        margin: 0px;
        padding: 0px;
    }


/* timeline */

.timeline {
    padding: 40px 0px;
}

    .timeline img {
        width: 95%;
        margin: 0px auto;
    }

.timeline-triangl {
    position: absolute;
    z-index: -2;
    left: -136px;
    top: 55%;
}

    .timeline-triangl img {
        width: 200px;
    }


/*===========================================
couter
============================================*/

.tringlebox {
    position: relative;
}

    .tringlebox .triangle-green {
        position: absolute;
        top: 13%;
        left: 30%;
        z-index: -1;
    }


/*===========================================
Services
============================================*/

.services-section {
    overflow: hidden;
    padding-top: 100px;
}

.service-title-wrap {
    height: 100%;
    position: relative;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: right;
}

@media (min-width: 1200px) {
    /* .services-wrap .staffOutsourcing-row {
    margin-left: -50px;
    margin-right: 50px;
  }/*/
    .posit-relative {
        position: relative;
    }

    .posit-absolute {
        position: absolute;
        bottom: 0px;
    }
}

.services-section .reConsultation-colum {
    position: relative;
    text-align: -webkit-right;
}
.txt-center {
    text-align: -webkit-center;
}
.txt-right {
    text-align: -webkit-right;
}

.services-section .reConsultation-colum .triangle-icon {
    position: absolute;
    top: -94px;
    left: 20px;
    right: 20px;
    overflow: hidden;
}

.reConsultation-colum .triangle-icon img {
    margin-left: 34px;
}

.service-title-wrap .shap {
    background: var(--text-color);
    width: 5000%;
    height: 100%;
    display: block;
    position: absolute;
    right: 0;
    border-radius: 6px;
}

    .service-title-wrap .shap:after {
        content: "";
        width: 100%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        right: 0;
        top: 50%;
    }

.service-title-wrap .title {
    background: var(--text-color);
    border-radius: 6px;
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    padding: 12px 20px;
    display: inline-block;
    font-weight: 300;
    text-align: left;
    position: relative;
    z-index: 2;
    margin: 0;
}

.service-thumbs {
    background-color: #7dd956;
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    position: relative;
    max-width: 434px;
}

.boxlink a {
    color: #18084b;
}

a:hover .service-thumbs {
    box-shadow: 0 0 6px -1px rgb(0 0 0 / 60%)
}


.servicetringle {
    position: absolute;
    z-index: -1;
    right: 12%;
    top: -661px;
}

    .servicetringle img {
        height: 200px;
    }

.mr-10 {
    margin-right: 6px;
}

.service-thumbs .thumbs-icon {
    text-align: center;
    margin-bottom: 16px;
}

    .service-thumbs .thumbs-icon img {
        margin: 0 auto;
        width: 70px;
        max-height: 70px;
    }

.service-first-box {
    padding-top: 14%;
    font-weight: 300 !important;
    padding-left: 15%;
}

    .service-first-box:before {
        content: "";
        width: 18%;
        height: 2px;
        background-color: #fff;
        position: absolute;
        left: 0;
        top: 48%;
        margin-top: -1px;
    }

.service-thumbs .title {
    font-size: 35px;
    font-weight: 600;
   /* margin-bottom: 15px;*/
}

.service-thumbs .des {
    font-size: 19px;
    font-weight: 400;
}

.service-thumbs.first {
    background-color: #18084b;
    text-align: left;
    padding-bottom: 60px;
    color: #fff;
}

.service-thumbs.last {
    background-color: #18084b;
    text-align: left;
    padding-bottom: 60px;
    color: #fff;
}

    .service-thumbs.last h2 {
        color: #fff;
        font-size: 30px;
        font-weight: 400;
    }

    .service-thumbs.last .right-shap {
        background-color: #18084b;
        position: absolute;
        top: 0;
        left: calc(100% - 5px);
        bottom: 0;
        width: 5000%;
    }

    .service-thumbs.last .st-consultation {
        color: #fff;
        display: block;
        font-size: 17px;
        font-weight: 400;
        position: absolute;
        bottom: 22px;
        left: 30px;
        right: 30px;
    }

.st-consultation span.icon {
    margin-left: 5px;
    color: #7dd956;
}

.services-wrap .triangle-shap {
    height: 100%;
    display: flex;
    align-items: center;
}

    .services-wrap .triangle-shap img {
        width: 192px;
    }
.row.staffOutsourcing-row {
    position: relative;
}
.box-tran img {
    position: absolute;
    left: 26%;
    width: 15%;
    top: 56%;
}
.box-tran2 img {
    position: absolute;
    right: 26%;
    width: 15%;
    top: 56%;
}


/*===========================================
Why Outsource
============================================*/

.whyOutsource-section {
    padding-top: 74px;
    padding-bottom: 70px;
    overflow: hidden;
}

.whyOutsource-wrap .shap-title-wrap {
    padding-right: 60px;
}

    .whyOutsource-wrap .shap-title-wrap .title {
        width: 100%;
        text-align: right;
    }

    .whyOutsource-wrap .shap-title-wrap .shap {
        left: calc(-470% - 278px);
    }

.whyOutsource-wrap .description {
    padding-right: 60px;
    line-height: 30px;
}

.aboutTrianglemain {
    position: absolute;
    z-index: -2;
    right: -106px;
    top: 24%;
}


/*===========================================
staffOutsourcing 
============================================*/

.staffOutsourcing-section {
    margin-bottom: 50px;
}

.payrollOutsourcing-section {
    margin-bottom: 50px;
}

.recruitmentConsultation-section {
    margin-bottom: 30px;
}


/*===========================================
TempWork Section
============================================*/

@media (max-width: 767px) {
    .tempWork-wrap .temwork-triangle {
        top: 56%;
    }
}

.tempWork-title-wrap .tempWork-title {
    background-color: #18084b;
    padding: 60px 40px;
    border-radius: 8px;
    height: 100%;
    position: relative;
}
.p40p {
    padding-left:40%;
}
.tempWork-title-wrap .tempWork-title .title {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    margin: 0px;
    /* left: 33px; */
}

    .tempWork-title-wrap .tempWork-title h5 {
        color: #fff;
        font-size: 16px;
        font-weight: 200;
        margin: 0px;
        padding: 0px;
    }

.h-box {
    height: 403px;
}

.tempWork-title-wrap .tempWork-title .des {
    line-height: 1.4;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-top: 24px;
    margin-bottom: 0;
    text-align: justify;
    padding-left: 60px;
}

.des.play-video a {
    color: #fff;
}

.tempWork-title .tempWork-shap {
    background-color: #18084b;
    border-radius: 8px;
    width: 500%;
    height: 100%;
    position: absolute;
    left: calc(-500% - -15px);
    top: 0;
}

    .tempWork-title .tempWork-shap:after {
        content: "";
        position: absolute;
        width: 500%;
        height: 2px;
        background-color: #fff;
        top: 90px;
        right: -180px;
    }

.contact-map {
    color: #fff;
    background-color: #7dd956;
    padding: 30px 25px;
    border-radius: 8px;
    height: 100%;
    position: relative;
    width: 94%;
}

    .contact-map:before {
        content: "";
        background-color: #7dd956;
        border-radius: 8px;
        position: absolute;
        width: 500%;
        top: 0;
        bottom: 0;
        right: calc(100% - 15px);
    }

.contact-map2 {
    color: #fff;
    background-color: #18084b;
    padding: 30px 25px;
    border-radius: 8px;
    height: 100%;
    position: relative;
    width: 94%;
    float: right;
}

    .contact-map2:after {
        content: "";
        background-color: #18084b;
        border-radius: 8px;
        position: absolute;
        width: 500%;
        top: 0;
        bottom: 0;
        left: calc(100% - 15px);
    }

    .contact-map2 .contact-address {
        color: #fff;
    }

.contact-mapgreen {
    color: #18084b;
    background-color: #7dd956;
    padding: 30px 25px;
    border-radius: 8px;
    height: 100%;
    position: relative;
    width: 94%;
}

.contact-mapblue {
    color: #ffffff;
    background-color: #18084b;
    padding: 30px 25px;
    border-radius: 8px;
    height: 100%;
    position: relative;
    width: 94%;
}

.contact-address4 {
    padding: 2px;
    color: #fff;
    text-align: center;
}

.contact-address5 h5 {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    text-align: center;
}

.contact-address5 p {
    font-size: 14px;
    margin: 0px;
    text-align: center;
}

.lets-talkBox {
    padding-top: 20px;
    background: #fff;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.4);
    padding-bottom: 20px;
}

.lets-talk {
    text-align: center;
    padding: 0px 24px;
}

    .lets-talk .icon {
        max-width: 42px;
        display: inline-block;
        margin-bottom: 24px;
    }

        .lets-talk .icon img {
            max-height: 32px;
        }

    .lets-talk p {
        color: #18084b;
        text-align: center !important;
        font-size: 14px;
        margin:0px;
    }

    .lets-talk h4 {
        font-size: 20px;
        font-weight: 800;
    }

    .lets-talk h5 {
        font-size: 16px;
        margin-bottom: 8px;
        font-weight: 600;
    }

ul.doted-list.li-plus {
    list-style-type: none;
}


ul.li-plus li {
    margin-bottom: 2px;
}

    ul.li-plus li:before {
        content: url('/Assets/images/plus_bullet.png');
        margin-right: 14px;
    }


ul.li-plus2 li:before {
    content: url('/Assets/images/right_arrow_bullet.png');
    margin-right: 14px;
}

ul.doted-list.li-plus2 {
    list-style-type: none;
}


/*
.contact-map {
    background-color: #7dd956;
    border-radius: 8px;
    width: 500%;
    height: 100%;
    position: absolute;
    left: calc(-500% - -15px);
    top: 0;
}
.contact-map:after {
    content: "";
    position: absolute;
    width: 500%;
    height: 3px;
    background-color: #fff;
    top: 40px;
    right: -172px;
}
/*
.tempWork-video video {
    height: 376px;
}

.tempWork-wrap {
    position: relative;
}

.tempWork-wrap .temwork-triangle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 24%;
}

.temwork-triangle img {
    width: 60%;
}


/*===========================================
mobileapp-section
============================================*/

@media (max-width: 767px) {
    .mobileapp-wrap .temwork-triangle {
        display: none;
    }
}

.mobileapp-section {
    background: linear-gradient(15deg, #4d34d9, #87f05f);
    padding: 60px 0;
    margin-top: 80px;
}

    .mobileapp-section .mobileapp-img {
        text-align: right;
        padding-right: 30px;
    }

        .mobileapp-section .mobileapp-img img {
            display: inline-block;
        }

.mobileapp-content .title {
    font-size: 30px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 24px;
}

.mobileapp-content .list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .mobileapp-content .list li::before {
        position: relative;
        content: "-";
        margin-right: 10px;
    }

    .mobileapp-content .list li {
        color: #fff;
        margin: 16px 0;
    }

.mobileapp-appstore {
    margin-top: 36px;
}

    .mobileapp-appstore .img img {
        height: 52px;
    }

.mobileapp-wrap {
    position: relative;
}

    .mobileapp-wrap .temwork-triangle {
        z-index: -1;
        position: absolute;
        bottom: -245px;
        transform: translateY(-50%);
        left: 0;
    }


/*===========================================
Testimonial section
============================================*/

.testimonial-section {
    padding-top: 70px;
    padding-bottom: 30px;
}

.testimonial-wrap .section-title {
    font-size: 32px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 50px;
}

.testimonial-qout {
    font-size: 18px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 12px 3px rgba(0, 0, 0, 0.6);
    padding: 18px 24px;
    text-align: justify;
   /* font-weight: 600;*/
    position: relative;
}

    .testimonial-qout:after {
        content: "";
        width: 0;
        height: 0;
        border-top: solid 24px #fff;
        border-left: solid 0px transparent;
        border-right: solid 22px transparent;
        position: absolute;
        bottom: -24px;
        left: 35%;
    }

.testimonial-item {
    padding: 0 20px;
    margin-bottom: 40px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-left: 20px;
}

    .testimonial-author .profile-img {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        overflow: hidden;
    }

        .testimonial-author .profile-img img {
            width: 100%;
            border-radius: 50%;
        }

    .testimonial-author .profile-details {
        padding-left: 15px;
    }

        .testimonial-author .profile-details .name {
            font-size: 14px;
            margin-bottom: 0;
        }

        .testimonial-author .profile-details .post {
            font-size: 13px;
            margin: 0;
            margin-top: 3px;
        }

        .testimonial-author .profile-details .depart {
            font-size: 13px;
            margin: 0;
        }
.testimonial-wrap {
    position: relative;
}
.box-tran3 img {
    position: absolute;
    right: -130px;
    bottom: 18px;
    width: 16%;
}
/*===========================================
Contact
============================================*/

@media (max-width: 767px) {
    .contact-triangle {
        display: none;
    }
}

.contact-section {
    overflow: hidden;
}


/*address line */

.contact-heading {
    text-align: center;
    font-weight: 300;
    position: relative;
    font-size: 32px;
}

    .contact-heading:after {
        content: "";
        width: 38%;
        height: 4px;
        background-color: #18084b;
        position: absolute;
        right: -82px;
        top: 50%;
        margin-top: -1px;
    }

    .contact-heading:before {
        content: "";
        width: 38%;
        height: 4px;
        background-color: #18084b;
        position: absolute;
        left: -82px;
        top: 50%;
        margin-top: -1px;
    }

.contact-adress {
    color: #fff;
    background-color: #18084b;
    padding: 30px 25px;
    border-radius: 8px;
    height: 100%;
    position: relative;
}

    .contact-adress:after {
        content: "";
        background-color: #18084b;
        border-radius: 8px;
        position: absolute;
        width: 500%;
        top: 0;
        bottom: 0;
        left: calc(100% - 15px);
    }


/*
.contact-adress h4 {
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.contact-adress p {
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 400;
}
*/

.contact-wrap {
    position: relative;
}

    .contact-wrap .row {
        position: relative;
        z-index: 2;
    }

    .contact-wrap .contact-triangle {
        position: absolute;
        top: 53%;
        transform: translateY(-50%);
        left: 41%;
    }

        .contact-wrap .contact-triangle img {
            width: 230px;
        }

    .contact-wrap .contact-map {
        padding-right: 30px;
    }

        .contact-wrap .contact-map iframe {
            height: 320px;
        }

.contact-address {
    padding: 2px;
    color: #18084b;
    text-align: center;
}

    .contact-address h5 {
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .contact-address p {
        margin-bottom: 10px;
        font-size: 16px;
        font-weight: normal;
    }


/*===========================================
client Logo section
============================================*/

.clientLogo-section {
    padding-top: 70px;
    padding-bottom: 70px;
}

.clientLogo-wrap {
    position: relative;
}

    .clientLogo-wrap .clinetlogtringle {
        position: absolute;
        z-index: -2;
        right: -290px;
        top: -8%;
    }

.clinetlogtringle img {
    width: 290px;
}

.clientLogo-wrap .logo-wrap {
    display: flex;
    align-items: center;
    margin-left: 64px;
}

    .clientLogo-wrap .logo-wrap .logo-1 {
        margin-right: 34px;
    }

        .clientLogo-wrap .logo-wrap .logo-1 img {
            width: 250px;
        }

    .clientLogo-wrap .logo-wrap .logo-2 img {
        width: 300px;
    }


/*===========================================
Footer
============================================*/


/* fixed footer */

.fixed-footer {
    width: 100% !important;
    margin-bottom: 0px;
    border-radius: 0px;
   /* display:none !important;*/
}

    .fixed-footer .icons:nth-child(n) {
        content: "";
        border-right: 1px solid #00000082;
        padding: 10px;
    }

    .fixed-footer .icons:last-child {
        content: none;
        border-right: 0px solid #00000082;
    }

    .fixed-footer .fixed-icons {
        padding: 0px;
    }

.iconsbox {
    background-color: #7dd956;
    padding: 16px;
    box-shadow: 0 0 14px 0 rgb(0 0 0 / 40%);
}
.d-flex.align-items-center {
    display: inherit !important;
}
.image {
    float: left;
    padding-left: 40px;
    height: 48px;
    vertical-align: middle;
    padding-top: 12px;
}
.boxlinkf a {
    color: #18084b;
}

.iconsbox h4 {
    text-transform: uppercase;
    margin: 0px;
    font-size: 18px;
    text-align: center;
}

.image img {
    width: 28px;
    margin-right: 14px;
}

.iconsbox p {
    font-size: 16px;
    margin: 0px;
    text-align: center;
}


/* end fixed footer */
/* new fixed footer */
.boxlinkf2 {
    background: green;
    /* margin: 0px auto; */
    text-align: center;
    background-color: #7dd956;
    box-shadow: 0 0 14px 0 rgb(0 0 0 / 40%);
}
.icon-textbox {
    text-align: center;
    margin: 0px auto;
    display: inline-block;
    vertical-align: middle;
    align-items: start;
    padding:10px;
}
    .icon-textbox span {
    float:left;}
        .icon-textbox span img {
            width: 30px;
            margin-right: 15px;
            margin-top: 10px;
        }
        .icon-textbox span h4 {
            font-size: 16px;
            margin:0px;
        }
        .icon-textbox span p {
            font-size: 14px;
            margin: 0px;
        }

.boxlinkf2 a {
    color: #18084b;
}
    .boxlinkf2 a:hover, a:active, a:focus {
        color: #18084b !important;
        outline: none;
        text-decoration: none;
    }
    a:hover, a:active, a:focus {
        color: #18084b;
        outline: none;
        text-decoration: none !important;
    }

/* newend fixed footer */
.main-footer {
    background-color: #18084b;
    padding: 40px 0;
}

.footer-logo {
    text-align: right;
    display: flex;
    justify-content: left;
    margin-bottom:20px;
}

    .footer-logo .ftr-logo .title {
        font-size: 22px;
        color: #fff;
        font-weight: 700;
        display: block;
        letter-spacing: 2.5px;
    }

    .footer-logo .ftr-logo .subtitle {
        font-size: 12px;
        color: #fff;
        font-weight: 300;
        display: block;
        margin-top: -2px;
    }


/* social icon*/

.insta {
    background: linear-gradient( 45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.facebook {
    background: #3e5c9a;
    color: #fff;
}

.twitter {
    background: #29a9e1;
    color: #fff;
}

.youtube {
    background: #c3271a;
    color: #fff;
}

.linkedin {
    background: #117bb8;
    color: #fff;
}

.facebook2 {
    background: #fff;
    color: #3e5c9a;
}

.ftr-menu {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: 200;
    font-size: 14px;
    line-height: 26px;
    color: #fff;
}

.yellow {
    color: #ffec00 !important;
}

.ftr-menu li {
    margin: 4px 0;
    font-size: 14px;
    color: #fff;
}

    .ftr-menu li a {
        font-size: 14px;
        color: #fff !important;
    }

        .ftr-menu li a:hover {
            color: #7dd956;
        }

    .ftr-menu li a:focus{
        color: #fff;
    }

    /*   .ftr-menu li a.active {
                color: #7dd956;
            }*/

    .ftr-menu li ul {
        padding-left: 20px;
    }

        .ftr-menu li ul li a {
            font-size: 14px;
            color: #fff;
        }

.ftr-social-wrap {
    text-align: center;
    margin-top: 40px;
}

.ftr-social {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    padding: 0;
    list-style: none;
}

    .ftr-social li {
        margin: 5px 8px;
    }

        .ftr-social li a {
            /* padding: 5px; */
            height: 100%;
            display: inline-grid;
            align-items: center;
            width: 40px;
            height: 40px;
            text-align: center;
        }

.ftr-content .copyright {
    font-size: 14px;
    color: #494587;
    text-align: center;
    margin-top: 20px;
}

.loginPage-wrap .login-tringletcs {
    position: absolute;
    top: 15%;
    left: -122px;
    right: auto;
    z-index: -9;
    overflow: hidden;
    width: 469px;
}

    .loginPage-wrap .login-tringletcs img {
        width: 100%;
    }

.loginPage-wrap .login-daimondtr {
    position: absolute;
    top: -9%;
    right: 2%;
    z-index: -9;
    overflow: hidden;
}

    .loginPage-wrap .login-daimondtr img {
        width: 220px;
    }

.loginPage-wrap .login-daimondr {
    position: absolute;
    top: 40%;
    right: -100px;
    overflow: hidden;
    z-index: -9;
}

    .loginPage-wrap .login-daimondr img {
        width: 160px;
    }

.loginPage-wrap .login-daimondbc {
    position: absolute;
    bottom: -60px;
    right: 26%;
    overflow: hidden;
    z-index: -9;
}

    .loginPage-wrap .login-daimondbc img {
        width: 160px;
    }


/*===========================================
About Page
============================================*/

.common-wrap {
    padding-left: 8%;
    padding-right: 8%;
    padding-top: 30px;
}

.prelative {
    position: relative;
}

.abt-triangle-bottom {
    position: absolute;
    right: -8px;
    bottom: -174px;
    width: 290px;
    z-index: -1;
}

.aboutPage-wrap {
    position: relative;
}

    .aboutPage-wrap p {
        text-align: justify;
    }


/*.aboutPage-section {
    overflow: hidden;
}*/

.abt-triangle-top {
    position: absolute;
    right: 0;
    top: -173px;
    width: 290px;
    z-index: -1;
}

    .abt-triangle-top img {
        width: 260px;
    }

.abt-triangle-rc {
    position: absolute;
    right: -202px;
    bottom: -60px;
    width: 290px;
    z-index: -1;
}

.abt-triangle-lb {
    position: absolute;
    left: -153px;
    top: 25%;
    width: 260px;
    z-index: -1;
}

.aboutPage-beingInvolved {
    margin-top: 60px;
}

.aboutPage-slider-wrap {
    margin-top: 0px;
    margin-bottom: 0px;
}

.aboutPage-slider.owl-theme .owl-nav {
    position: absolute;
    height: 0;
    margin: 0;
    top: 50%;
    width: 100%;
    margin-top: -34px;
}

    .aboutPage-slider.owl-theme .owl-nav button.owl-prev,
    .aboutPage-slider.owl-theme .owl-nav button.owl-next {
        float: left;
        font-size: 92px;
        height: 50px;
        line-height: 50px;
        overflow: hidden;
    }

    .aboutPage-slider.owl-theme .owl-nav [class*="owl-"]:hover {
        background-color: transparent;
    }

    .aboutPage-slider.owl-theme .owl-nav button.owl-next {
        float: right;
    }

.title.welcome img {
    width: 75%;
    text-align: center;
    margin: 0px auto 20px;
}

.payrolbox {
    padding-left: 50px;
}



/* blog slider */

.owl-nav {
    position: absolute;
    height: 0;
    margin: 0;
    top: 50%;
    width: 100%;
    margin-top: -34px;
}

button.owl-prev,
button.owl-next {
    float: left;
    font-size: 92px;
    height: 50px;
    line-height: 50px;
    overflow: hidden;
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: inherit;
}

.blogsliderinner {
    position: relative;
}

.datelabelbox {
    position: absolute;
    background: #18084b;
    padding: 6px 10px;
    font-size: 10px;
    color: #fff;
    left: -10px;
    bottom: 15px;
}


/*===========================================
Contact us
============================================*/

section.contactPage-section {
    padding-bottom: 30px;
}

.contactMap-wrap .map-wrap iframe {
    height: 470px;
}

.contactAdrees-wrap {
    background-color: #18084b;
    border-radius: 18px;
    margin-top: 60px;
    padding-bottom: 32px;
}

    .contactAdrees-wrap .content {
        color: #fff;
        padding: 42px 15px 0 15px;
    }

        .contactAdrees-wrap .content p {
            font-size: 15px;
            margin-bottom: 10px;
        }

        .contactAdrees-wrap .content h4 {
            font-size: 16px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

.contactForm-wrap {
    border: 1px solid #686868;
    margin-top: 60px;
    background: #fff;
    box-shadow: 0 0 14px 0 rgba(0, 0, 0, 0.4);
    padding: 20px;
}

    .contactForm-wrap h5.title {
        font-size: 20px;
        color: #686868;
        font-weight: 400;
        margin-bottom: 12px;
    }

.msg-wrap .left {
    flex: 1 0 calc(100% - 120px);
}

.msg-wrap .right {
    flex: 1 0 120px;
}

.contact-form .btn-wrap {
    height: calc(100% - 15px);
    margin-bottom: 15px;
}

.contact-form .contact-btn {
    background-color: #7dd956;
    border: 1px solid #686868;
    border-radius: 12px;
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
    height: 100%;
    width: 100%;
}

    .contact-form .contact-btn:hover {
        background-color: #18084b;
    }

.contact-form textarea.form-control {
    height: 120px;
}

section.contactPage-section .form-triangle {
    position: absolute;
    bottom: -170px;
    left: -103px;
    z-index: -1;
}

.contactMap-wrap {
    position: relative;
}

    .contactMap-wrap .map-triangle {
        position: absolute;
        width: 220px;
        right: -146px;
        bottom: -120px;
        z-index: -1;
    }


/*===========================================
Blog page 
============================================*/

.blogPage-section {
    overflow: hidden;
}

.blogPage-wrap .blog-wrap {
    position: relative;
}

.blog-triangle-rb {
    position: absolute;
    right: -245px;
    bottom: -38px;
    width: 200px;
    z-index: -1;
}

.blog-triangle-lc {
    position: absolute;
    left: -240px;
    top: 33%;
    width: 230px;
    z-index: -1;
}

.blog-thumb-wrap {
    padding: 0 15px;
}

.blog-thumb {
    position: relative;
    margin: 0 auto 60px auto;
    max-width: 450px;
}

    .blog-thumb .img {
        position: relative;
        border: solid 1px #18084b;
    }

        .blog-thumb .img img {
            width: 100%;
        }

    .blog-thumb .date {
        font-size: 13px;
        color: #fff;
        font-weight: 300;
        background: #18084b;
        display: inline-block;
        padding: 11px 18px;
        position: absolute;
        bottom: 12px;
        left: -12px;
    }

    .blog-thumb .content .title {
        font-size: 18px;
        line-height: 1.3;
        font-weight: 400;
        margin-bottom: 13px;
        min-height: 47px;
        text-overflow: ellipsis;
        overflow: hidden;
        display: -webkit-box !important;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        white-space: normal;
    }

        .blog-thumb .content .title a {
            color: #18084b;
            -webkit-transition: all 0.25s ease;
            transition: all 0.25s ease;
        }

            .blog-thumb .content .title a:hover {
                color: var(--primary-color);
            }

    .blog-thumb .content {
        padding-top: 18px;
    }

        .blog-thumb .content .des {
            font-size: 15px;
            font-weight: 400;
            line-height: 1.35;
            margin: 0;
            text-overflow: ellipsis;
            overflow: hidden;
            display: -webkit-box !important;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            white-space: normal;
        }

.blog-box {
    padding-right: 50px;
}

    .blog-box p {
        text-align: justify;
    }

.blogslider p {
    padding: 10px 0px;
    line-height: 1.3;
    font-size: 16px;
}


/*===========================================
job Board
============================================*/

.jobBoard-section {
    overflow: hidden;
}

.jb-triangle-rc {
    position: absolute;
    right: -5px;
    top: 32px;
    width: 250px;
    z-index: -1;
}

.jb-triangle-lb {
    position: absolute;
    left: -97px;
    bottom: -48px;
    width: 260px;
    z-index: -1;
}

.jb-signUp-box {
    border: solid 1px #18084b;
    position: relative;
    padding: 26px;
    background-color: #fff;
}

    .jb-signUp-box .des {
        font-size: 14px;
        max-width: 800px;
    }

    .jb-signUp-box .btn-wrap {
        position: absolute;
        right: 20px;
        bottom: 10px;
    }

        .jb-signUp-box .btn-wrap .jb-signUp-link {
            font-size: 13px;
            color: #18084b;
        }

            .jb-signUp-box .btn-wrap .jb-signUp-link:hover {
                color: var(--primary-color);
            }

.jobBoard-title-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}

    .jobBoard-title-bar .title-wrap {
        width: 186px;
        padding-right: 20px;
    }

        .jobBoard-title-bar .title-wrap h2 {
            font-size: 36px;
            font-weight: 300;
            margin: 0;
        }

    .jobBoard-title-bar .search-wrap {
        width: calc(100% - 186px);
    }

        .jobBoard-title-bar .search-wrap .form-control {
            border-radius: 0;
            font-size: 16px;
            background-color: #fff;
        }

.jobBoard-wrap > .row {
    margin-left: -15px;
    margin-right: -15px;
}

.jobBoard-wrap {
    margin-top: 22px;
    margin-bottom: 20px;
}

    .jobBoard-wrap .jb-sidebar {
        padding: 0 15px;
        width: 200px;
    }

        .jobBoard-wrap .jb-sidebar .filters-wrap {
            border: solid 1px #18084b;
            height: calc(100% - 24px);
            padding: 10px;
            background-color: #fff;
        }

.jobBoard-thumbs-wrap {
    width: calc(100% - 200px);
    padding: 0 15px;
}

.jb-thumbs {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
}

    .jb-thumbs .img {
        position: relative;
    }

        .jb-thumbs .img img {
            width: 100%;
        }

        .jb-thumbs .img .overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: #18084b;
            opacity: 0.5;
            z-index: 1;
        }

    .jb-thumbs .content {
        position: absolute;
        z-index: 3;
        padding: 15px 25px;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

        .jb-thumbs .content .title {
            font-size: 24px;
            color: #fff;
            line-height: 1.3;
            font-weight: 300;
            margin: 0;
        }





/*===========================================
End CSS @media (max-width: 575px) { 
    
}@media (max-width: 767px) {
    
}

============================================*/

.clkbox-theme-btn {
    color: #18084b;
    background-color: #7dd956;
    border-color: #7dd956;
}

    .clkbox-theme-btn:hover {
        color: #18084b;
        background-color: #7dd956;
        border-color: #7dd956;
    }

.logomain img {
    width: 66%;
}

.mt-80 {
    margin-top: 80px;
}

.mr-20 {
    margin-right: 20px;
}

p.tjustify,
.testimonial-qout.tjustify,
h5.h5-heading.tjustify {
    text-align: justify;
}

.projectFactsWrap .item p.number {
    margin-top: 10px;
    font-family: "Nunito", semi-bold;
}

.projectFactsWrap.myaboutus .item p.number {
    margin-left: 25px;
    font-family: "Nunito", semi-bold;
}

a.clrblk-hovrgrn {
    color: #18084b;
}

    a.clrblk-hovrgrn:hover {
        color: #7dd956;
    }

.va-mdle {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.desc-preline {
    white-space: pre-line
}

.desc-preline:first-line {
    line-height: 0;
}

a.anchor-link {
    color: #fff;
}
a.anchor-link:hover, a.anchor-link:active, a.anchor-link:focus {
    color: #fff !important;
}

.atitle2 {
    color: #005a9e;
    display:none;
}