:root {
    --primary-color: #173D6F;
    --secondary-color: #169FDA;
    --background-color: #E9F4F9;
    --text-color: #000000;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* container Setup */




/* Common CSS  */

body {
    font-family: "Inter", sans-serif;
    color: var(--text-color);
}

.bg_theme {
    background: var(--background-color);
}

.-z-1 {
    z-index: -1;
}

.btn-primary {
    background-color: var(--primary-color);
    font-size: 18px;
    padding: 0.6rem 2rem;
    border-radius: 30px;
    border: none;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.space-Y {
    padding: 50px 0;
    padding-bottom: 0;
}

.bg_theme2 {
    background: #F4F4F4;
}

/* Header Section  */

header .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 40px;
}

#header {
    transition: all 0.5s ease;
}

#header .navbar-brand img {
    width: 220px;
    /* initial size */
    transition: all 0.5s ease;
}

#header.sticky {
    position: fixed;
    top: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    z-index: 9;
}

#header.sticky .navbar-brand img {
    width: 180px;
    /* smaller size on scroll */
}

header .nav-link {
    color: var(--text-color);
}

header .navbar-nav .nav-link.active,
header .navbar-nav .nav-link.show {
    color: var(--secondary-color);
}

/* Banner Section  */
section.banner_wrapper.position-relative.space-Y {
    padding: 20px 0;
    padding-bottom: 40px;
}

.banner_wrapper .banner_content h1 {
    font-size: 60px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.1;
}

.banner_wrapper .banner_content h3 {
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 40px;
    margin-top: 40px;
}

.banner_wrapper .banner_content h3 span {
    color: white;
    -webkit-text-stroke: 1px var(--secondary-color);
    font-size: 40px;
    font-family: sans-serif;
}

.banner_wrapper .banner_content p {
    font-size: 18px;
    max-width: 80%;
    margin-top: 30px;
    color: var(--primary-color);
}

.video_wrapper video {
    width: 100%;
    border-radius: 10px;
}


/* ROI Section  */


.inner_wrapper {
    padding: 40px;
    border-radius: 15px;
}

.roi_heading h2 {
    font-size: 30px;
}

.roi_content p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 0;
}

.roi_card .card {
    padding: 40px 20px;
    text-align: center;
    border: none;
    border-radius: 10px;
}

.roi_card {
    margin-top: 50px;
}

.roi_card .card {
    color: var(--text-color);
    transition: all 0.5s;
    height: 100%;
}

.roi_card .card:hover {
    background: linear-gradient(144.72deg, #273B85 3.5%, #169FDA 99.96%);
    color: #fff;
}

.roi_card .card img {
    height: 80px;
}

.roi_card .card:hover img {
    filter: invert(1) brightness(1);
}

.roi_card .card .card-title {
    margin-top: 30px;
    margin-bottom: 25px;
}

.roi_card .card p {
    text-align: left;
    font-weight: 300;
    font-size: 14px;
}

.roi_card .card .card-body {
    padding: 0;
}

/* perfect content  */

.perfect_content {
    padding: 40px 60px;
    border-radius: 15px;
    background: var(--primary-color);
    color: #fff;
    height: 100%;

}

.perfect_wrapper .title {
    text-align: center;
    margin-bottom: 35px;
}

.perfect_content h2 {
    font-size: 28px;
    font-weight: 600;
}

.perfect_content p {
    font-weight: 200;
    line-height: 25px;
    letter-spacing: 0px;
}

.perfect_content ul {
    display: flex;
    margin-top: 16px;
    gap: 30px;
    margin-bottom: 30px;
}

.perfect_content.right {
    background: var(--secondary-color);
}

.btn-1 {
    background: var(--secondary-color);
}

.btn-1:hover {
    color: var(--secondary-color);
    background-color: #fff;
}

.btn-2 {
    background: #fff;
    color: var(--secondary-color);
}

.btn-2:hover {
    background: var(--primary-color);
    color: #fff;
}

.perfect_img {
    margin-bottom: 1rem;
}

.perfect_content {
    transition: all 0.5s;
}

.perfect_content.left:hover {
    transition: all 0.5s;
    background: linear-gradient(90deg, #1b76e747 -0.89%, rgba(15, 0, 70, 0.33) 97.99%), url(../images/perfect_left.png) no-repeat;
    background-size: cover;

}

.perfect_content.right:hover {
    transition: all 0.5s;
    background: linear-gradient(90deg, #001924 -0.89%, rgba(0, 49, 70, 0.33) 97.99%), url('../images/perfect_right.png') no-repeat;
    background-size: cover;

}

.perfect_content .hover-ar {
    display: none;
}

.perfect_content.left:hover .hover-ar {
    display: inline-block;
}

.perfect_content:hover .btn-1 {
    color: #fff;
    background-color: var(--secondary-color);
}

.perfect_content.right:hover .hover-ar {
    display: inline-block;
}

/* services card  */

.services_card {
    margin-top: 50px;
}

.services_Wrapper .roi_heading h2 {
    color: #062138;
    font-size: 40px;
}

.services_card .card {
    transition: all 0.5s;
}

.services_card .card {
    position: relative;
    overflow: hidden;
    /* ensures content doesn't overflow during animation */
    border-radius: 10px;
    border: 0;
}

.services_card .card .card-title {
    position: absolute;
    top: 40px;
    left: 20px;
    color: #fff;
    z-index: 3;
    max-width: 200px;
}

.services_card .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 8.05%, rgba(0, 0, 0, 0) 67.36%);
    z-index: 1;
}

.services_card .card-body {
    position: absolute;
    bottom: 0;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
    z-index: 2;
    transition: top 0.5s ease;
    /* smooth slide-up */
}

.services_card .card:hover .card-body {
    top: 80px;
    /* moves up on hover */
}

.btn.no-style {
    color: #fff;
    padding: 0;
}

.services_card .card-text {
    line-height: 1.2;
}

/* counter_card  */

.counter_card {
    margin-top: 50px;
}

.counter_content .counter {
    font-size: 60px;
    font-weight: 800;
    -webkit-text-stroke: 1px var(--secondary-color);
    color: #fff;
    line-height: 1.1;
}

.counter_wrapper .inner_wrapper {
    padding-bottom: 0;
}

.pls-stroke {
    font-size: 70px;
    font-weight: 900;
    -webkit-text-stroke: 1px var(--secondary-color);
    color: transparent;
    line-height: 1.1;
    font-family: monospace;
}

.counter-box p {
    color: #52606D;
    font-size: 16px;
    margin-bottom: 0;
}

.counter_card .card {
    height: 100%;
    padding: 50px 30px;
    border-radius: 15px;
    border: 1px solid #DBDBDB;
}

.counter_card .icon_box {
    padding: 25px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--secondary-color);
    margin: auto;
    text-align: center;
    display: grid;
    place-content: center;
}

.counter_card .icon_box img {
    width: 60px;
}

.counter_card .card-body {
    text-align: center;
    margin-top: 20px;
    color: var(--primary-color);
    padding: 0;
    font-weight: 500;

}

/* Form Wrapper  */
.form_wrapper .form-heading {
    text-align: center;
}

.form_wrapper .form-heading h2 {
    color: #062138;

}

.form_wrapper .form-heading p {
    color: var(--text-color);
}


.form_card {
    max-width: 950px;
    margin: auto;
    margin-top: 50px;
}

.input_box {
    margin-bottom: 20px;
}

.form_card input,
.form_card select {
    border: none;
    padding: 12px 25px;
}

.form_card textarea {
    border: none;
    padding: 12px 25px;
    height: 120px;
}

.address_card {
    margin-top: 30px;
}

/* Video Wrapper  */

.video_wrapper .inner_wrapper {
    padding: 0;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.video_wrapper .inner_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(270deg, rgba(64, 64, 64, 0) 0%, #000000 100%);
    height: 100%;
}

.video_wrapper .inner_wrapper .video_content {
    position: absolute;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);
    color: #fff;
}

.video_wrapper .video_inner {
    border-radius: 10px;
    overflow: hidden;
}

.video_inner video {
    width: 100%;
}

.video_content h2 {
    margin-top: 20px;
    font-size: 50px;
}

.video_content p {
    margin-top: 30px;
    font-size: 20px;
    font-weight: 200;
    margin-bottom: 50px;
}

.video_content p span {
    font-weight: 600;
    text-decoration: underline;
}

/* address_card   */
.address_wrapper {
    text-align: center;
}

.address_card {
    margin-top: 50px;
}

.address_card .card {
    padding: 40px 50px;
    border-radius: 15px;
    border: 1px solid #DBDBDB;
    height: 100%;
}

.address_card .card .card-title {
    color: var(--text-color);
    text-transform: capitalize;
}

.address_card .card .card-body {
    padding: 0;
    margin-top: 15px;
}

.address_card .card h6 {
    color: var(--secondary-color);
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 15px;

}

.address_card .card p {
    color: #535363;
    margin-bottom: 0;

}

.img_bx {
    min-height: 170px;
    display: flex;
    align-items: end;
}

/* Footer  */
.footer_wrapper .inner_wrapper {
    background: var(--primary-color);
    border-radius: 15px 15px 0 0px;
    padding: 50px 40px;
}

.footer_wrapper .inner_wrapper .grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.footer-logo {
    max-width: 150px;
    width: 100%;
}

footer .ls_wrap h2 {
    font-size: 22px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0px;
}

footer .ls_wrap li {
    margin-bottom: 8px;
}

footer .ls_wrap a {
    font-size: 16px;
    color: #fff;
    font-weight: 300;
    text-decoration: none;
}

.btn-demo {
    background: var(--secondary-color);
}

footer hr {
    margin-top: 80px;
    color: #5868A7;
    margin-bottom: 25px;
}

.bottom_footer {
    color: #fff;
    margin-top: 30px;
}

.bottom_footer p {
    margin: 0;
}

.bottom_footer a {
    color: #fff;
    text-decoration: none;
}



.services_card .card:hover::before {

    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 8.05%, rgb(10 9 9 / 64%) 67.36%);

}

.counter_wrapper {
    position: relative;
}

.counter_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    background: url(../images/line-circle.svg);
    width: 52%;
    height: 100%;
    background-repeat: no-repeat;
    left: 25%;
    z-index: -1;

}

.contact_wrap ul li{
margin-bottom: 25px;
}

/* Mobile Responsive  */




@media(min-width:1600px) {
    .container {
        max-width: 1468px;
        margin: 0 auto;
        padding: 0 20px;
    }

    header .nav-link {
        font-size: 18px;
        padding-right: 25px;
    }

}

@media(min-width:1900px) {
    .container {
        max-width: 1720px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .btn-primary {
        padding: 18px 38px !important;
        border-radius: 45px !important;
        border: none;
        font-weight: 500;

    }

    .banner_wrapper .banner_content h1 {
        font-size: 65px !important;
    }

    .banner_wrapper .banner_content h3 {
        font-size: 44px !important;
        margin-top: 40px;
    }

    .banner_wrapper .banner_content h3 span {
        font-size: 44px !important;
        font-family: sans-serif;
    }

    .banner_wrapper .banner_content p {
        font-size: 24px !important;
    }

    .roi_heading h2 {
        font-size: 44px !important;
        margin: 0;
    }

    .roi_card .card {
        padding: 70px 42px;

    }

    .roi_content p {
        font-size: 18px !important;
        font-weight: 300 !important;
        margin: 0;
    }

    section.banner_wrapper.position-relative.space-Y {
        padding-bottom: 0 !important;
    }

    header .nav-link {
        font-size: 20px;
        padding-right: 25px;
    }

    .banner_wrapper .banner_content h1 {
        font-size: 68px;
    }

    .roi_heading h2 {
        font-size: 40px;
    }

    .roi_content p {
        font-size: 18px;
        font-weight: 300;
    }

    .roi_card .card p {
        font-size: 18px !important;
    }

    .roi_card .card .card-title {
        font-size: 22px;
        font-weight: 600;
    }

    .perfect_content p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 30px;
    }

    .services_Wrapper .roi_content p {
        font-size: 18px;
        font-weight: 300;
    }

    .roi_wrapper .inner_wrapper {
        padding: 65px 52px;
    }

    .counter_wrapper .roi_heading h2 {
        font-size: 40px;
    }

    .counter_wrapper .counter-box p {
        color: #52606D;
        font-size: 18px;
        margin-bottom: 0;
    }

    section.perfect_wrapper.space-Y {
        padding-top: 50px;
    }

    .perfect_wrapper .title {
        font-size: 44px;
    }

    .perfect_content {
        padding: 71px 80px;
    }

    .perfect_content h2 {
        margin-bottom: 20px;
    }

    section.services_Wrapper.space-Y {
        padding-top: 40px;
    }

    .services_Wrapper .inner_wrapper.bg_theme2 {
        padding: 64px 40px;
    }

    .services_card .card .card-title {
        font-size: 24px;
    }

    .services_card .card .card-title {
        position: absolute;
        top: 48px;
        left: 40px;
        max-width: 226px;
    }

    .services_card .card-text {
        line-height: 24px;
    }

    .services_card .card:hover .card-body {
        top: 101px;
        padding: 40px;
    }

    .counter_content .counter {
        font-size: 80px;
    }

    .pls-stroke {
        font-size: 80px;
        font-weight: 900;
        -webkit-text-stroke: 1px var(--secondary-color);
        color: transparent;
        line-height: 1.1;
        font-family: sans-serif;
    }

    .counter_wrapper .inner_wrapper {
        padding-top: 0;
    }

    .counter_card .card-title {
        font-size: 22px;
    }

    .counter_card .card-body {
        margin-top: 26px;
    }

    .form_wrapper .inner_wrapper {
        padding: 70px 40px;
        padding-bottom: 40px;
    }

    .form_wrapper .form-heading h2 {
        font-size: 48px;
    }

    .form_wrapper .form-heading p {
        font-size: 20px;
        margin-bottom: 0;
    }

    .form_card input,
    .form_card select {
        border: none;
        padding: 20px 34px;
    }

    .input_box .btn {
        font-size: 20px;
    }

    .video_content h2 {
        font-size: 60px;
    }

    .video_content p {
        font-size: 24px;
    }

    .video_content .btn {
        font-size: 24px;
    }

    .address_wrapper .inner_wrapper {
        padding-top: 70px;
    }

    .address_card .card .card-title {
        font-size: 24px;
    }

    .address_card .card h6 {
        font-size: 16px;
    }

    .address_card .card p {
        font-size: 18px;
    }

    .address_card .card .card-body {
        font-size: 20px;
    }

    footer .ls_wrap h2 {
        font-size: 24px;
    }

    footer .ls_wrap li {
        margin-bottom: 18px;
    }

    .footer-logo {
        max-width: 218px;
        width: 100%;
    }

    .services_card .card-1:hover .card-body {
        top: 90px;
        padding: 40px;
    }

    .services_card .card-1:hover .card-body,
    .services_card .card-3:hover .card-body,
    .services_card .card-4:hover .card-body {
        top: 60px;
    }
}






@media (max-width:1440px) {
    footer .ls_wrap a {
        font-size: 14px;
    }

    .video_wrapper .inner_wrapper .video_content {
        left: 7%;
    }

    .video_content h2 {
        margin-top: 20px;
        font-size: 40px;
    }

    .video_content p {
        margin-bottom: 40px;
    }

    .banner_line {
        width: 60%;
    }

    .banner_line img {
        width: 100%;
    }

    .services_card .card-1:hover .card-body,
    .services_card .card-3:hover .card-body,
    .services_card .card-4:hover .card-body {
        top: 60px;
    }
    section.roi_wrapper.space-Y{
        padding-top: 0;
    }
    .counter_wrapper .inner_wrapper{
        padding-top: 0;
    }
    .counter_card {
        margin-top: 30px;
    }
}

@media (max-width:1280px) {
    .banner_wrapper .banner_content h1 {
        font-size: 45px;
    }

    .banner_line {
        width: 60%;
    }

    .banner_line img {
        width: 100%;
    }

    .banner_wrapper .banner_content h3 {
        font-size: 32px;
        margin-top: 20px;
    }

    .banner_wrapper .banner_content p {
        font-size: 16px;
        max-width: 80%;
    }

    .roi_card .card {
        min-height: 430px;
    }

    .counter_content .counter {
        font-size: 40px;
    }

    .pls-stroke {
        font-size: 40px;
    }

    .counter-box p {
        font-size: 14px;
    }

    .counter_card .card {
        padding: 30px 20px;
    }

    .counter_card .card-title {
        font-size: 16px;
    }

    section.counter_wrapper.space-Y {
        padding-bottom: 20px;
    }

    .address_card {
        margin-top: 40px;
    }

    .address_card .card {
        padding: 30px 30px;
    }

    .perfect_content {
        padding: 40px 40px;
    }

    header .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 25px;
    }
}


@media (max-width:1192px) {
    .btn-primary {
        font-size: 14px;
        padding: 0.6rem 16px;
        border-radius: 30px;
        border: none;
    }

    .banner_wrapper .banner_content h3 {
        font-size: 24px;
    }

    .banner_wrapper .banner_content h3 span {
        font-size: 24px;
    }

    .banner_wrapper .banner_content h1 {
        font-size: 40px;
    }

    .roi_card .card {
        min-height: 331px;
        margin-bottom: 20px;
    }

    .roi_card .col-12 {
        margin-bottom: 20px;
    }

    .perfect_content h2 {
        font-size: 22px;
        font-weight: 600;
    }

    .perfect_img img {
        height: 90px;
    }

    .counter_card .icon_box {
        width: 100px;
        height: 100px;
    }

    .counter_card .icon_box img {
        width: 40px;
    }

    .video_content h2 {
        font-size: 30px;
    }

    .video_content p {
        margin-top: 15px;
        font-size: 18px;

        margin-bottom: 30px;
    }

    .img_bx {
        margin-bottom: 20px;
    }

    .address_card .card p {
        font-size: 14px;
    }

    .footer_wrapper .inner_wrapper .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .btn-demo {
        background: var(--secondary-color);
    }

    .ls_wrap.ps-5 {
        padding-left: 0rem !important;
    }
}


@media (max-width:992px) {
    .video_content h2 {
        font-size: 18px;
    }

    .video_content img {
        width: 80px;
    }

    .video_content p {
        margin-top: 13px;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .counter_card .col-12 {
        margin-bottom: 20px;
    }

    .roi_heading br {
        display: none;
    }

    .inner_wrapper {
        padding: 20px 0;
    }

    .form_card {
        max-width: 100%;
        padding: 0 20px;
    }

    .address_card .col-12 {
        margin-bottom: 20px;
    }

    .counter_card .card-title {
        font-size: 20px;
    }
}

@media (max-width:991px) {
    div#navbarSupportedContent {
        background: #169fda42;
        padding: 30px 30px;
        border-radius: 15px;
        margin-top: 15px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler {
        border: none;
        outline: none;
    }

    .navbar-toggler-icon {
        display: inline-block;
        width: 1.5em;
        height: 1.2em;
        position: relative;
        transition: transform 0.3s ease;
        background-image: none;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon span {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 3px;
        background-color: #000;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon span {
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-toggler-icon::before {
        top: 0;
    }

    .navbar-toggler-icon::after {
        bottom: 0;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon::before {
        transform: rotate(0);
        top: 0;
    }

    .navbar-toggler.collapsed .navbar-toggler-icon span {
        opacity: 1;
        transform: translateY(-50%) rotate(0);
    }

    .navbar-toggler.collapsed .navbar-toggler-icon::after {
        transform: rotate(0);
        bottom: 0;
    }

    .navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 50%;
    }

    .navbar-toggler:not(.collapsed) .navbar-toggler-icon span {
        opacity: 0;
    }

    .navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        top: 50%;
        bottom: auto;
    }

    .banner_wrapper .banner_content h1 {
        font-size: 53px;
    }

    .banner_wrapper .banner_content h3,
    .banner_wrapper .banner_content h3 span {
        font-size: 35px;
    }

    .banner_wrapper .banner_content p {
        font-size: 20px;
        max-width: 100%;
    }

    .inner_wrapper {
        padding: 30px;
    }

    .roi_card .col-12 {
        margin-bottom: 20px;
    }

    .services_card .col-12 {
        margin-bottom: 20px;
    }
}

@media (max-width:768px) {
    .banner_line {
        display: none;
    }

    .services_card .card {
        margin-bottom: 20px;
    }

    .counter_wrapper .roi_heading h2 {
        text-align: center;
    }

    .counter_wrapper .roi_heading h2 br {
        display: none;

    }

    .counter_card .col-12 {
        margin-bottom: 20px;
    }

    section.form_wrapper.space-Y {
        padding-top: 0;
    }

    .video_content h2 {
        font-size: 20px;
    }

    .video_content p {
        margin-top: 9px;
        font-size: 16px;
        margin-bottom: 17px;
    }

    .video_content img {
        width: 120px;
    }

    .address_card .col-12 {
        margin-bottom: 20px;
    }

    .services_card .card-body {
        font-size: 18px;
        top: 110px;
    }

    .services_card .card .card-title {
        max-width: 100% !important;
    }

    .services_card .card::before {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 8.05%, rgb(0 0 0 / 65%) 67.36%);

    }

    .counter_content .counter {
        font-size: 60px;
    }

    .pls-stroke {
        font-size: 60px;
    }

    .counter-box p {
        font-size: 24px;
    }

    .counter_card .card-title {
        font-size: 24px;
    }

    .form_card {
        padding: 0;
    }

    .perfect_wrapper .col-12 {
        margin-bottom: 20px;
    }

    .footer_wrapper .inner_wrapper .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bottom_footer p {
        text-align: center;
    }

    footer hr {
        margin-top: 40px;
    }

    .video_content p {
        margin-top: 9px;
        font-size: 13px;
        margin-bottom: 9px;
    }

    .video_content h2 {
        font-size: 15px;
    }

    .video_wrapper .btn-primary {
        font-size: 14px;
        padding: 0.5rem 16px;

    }

    .address_card {
        margin-top: 15px;
    }

    .counter_wrapper .inner_wrapper {
        padding-top: 50px;
    }

    .counter_wrapper .roi_heading h2 {
        text-align: center;
        margin-bottom: 30px;
    }

    .services_card .card-1 .card-body,
    .services_card .card-3 .card-body,
    .services_card .card-4 .card-body {
        top: 75px;
    }

    .counter_wrapper::before {
        display: none;
    }
}


@media (max-width:576px) {
    .navbar-brand img {
        width: 150px;
    }

    section.banner_wrapper.position-relative.space-Y {
        padding: 30px 0;
    }

    .banner_wrapper .banner_content h1 {
        font-size: 35px;
    }

    .banner_wrapper .banner_content h3 {
        font-size: 24px;
    }

    .banner_wrapper .banner_content h3 span {
        font-size: 24px;
    }

    .banner_wrapper .banner_content p {
        max-width: 100%;
        font-size: 20px;
        margin-bottom: 30px;
    }

    .roi_heading h2 br {
        display: none;
    }

    .roi_heading h2 {
        font-size: 30px;
        
    }

    .roi_content p {
        font-size: 16px;
        font-weight: 300;
    }

    .roi_card .card p {
        text-align: left;
        font-weight: 300;
        font-size: 18px;
    }

    .roi_card .card .card-title {
        font-size: 28px;
    }

    .perfect_wrapper .title {
        text-align: center;
        margin-bottom: 40px;
        font-size: 30px;
    }

    .inner_wrapper {
        padding: 40px 20px;
    }

    .perfect_content {
        padding: 40px 20px;
    }

    .perfect_content h2 {
        font-size: 25px;

    }

    .perfect_wrapper .row .col-12 {
        margin-bottom: 20px;
    }

    .perfect_content p {
        font-size: 18px;
    }

    .perfect_wrapper li {
        font-size: 18px;
    }

    section.services_Wrapper.space-Y {
        padding-top: 0;
    }

    .services_Wrapper .roi_heading h2 {
        font-size: 35px;
    }

    .form_wrapper .form-heading h2 {
        font-size: 30px;
    }

    .services_card .card .card-title {
        font-size: 30px;
    }

    .counter_wrapper {
        padding-top: 0;
    }

    .counter_wrapper .roi_heading h2 {
        margin-bottom: 40px;
    }

    .footer_wrapper .inner_wrapper .grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .bottom_footer p {
        text-align: center;
        margin-bottom: 1rem;
    }

    .video_wrapper .inner_wrapper .video_content {
        position: static;
        transform: none;
        color: #ffffff;
        background: #222527;
        padding: 40px 30px;
        border-radius: 10px;
    }

    .video_wrapper .inner_wrapper::before {
        display: none;
    }

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

    .address_wrapper .inner_wrapper {
        padding: 0 16px;
    }

    .address_wrapper .roi_heading h2 {
        margin-bottom: 0px;
    }

    .address_card .card .card-title {
        font-size: 24px;
    }

    .address_card .card p {
        font-size: 18px;
    }

    .address_card .card h6 {
        font-size: 20px;
    }

    footer .ls_wrap a {
        font-size: 18px;
    }


    footer .ls_wrap h2 {
        font-size: 26px;
    }

    .footer_wrapper .inner_wrapper {
        padding: 50px 25px;
    }

    .form_wrapper .form-heading p {
        margin-bottom: 0;
    }

    .form_card .btn-primary {
        font-size: 18px;
        padding: 15px 40px;
    }

    .video_content p {
        margin-top: 20px;
        font-size: 16px;
        margin-bottom: 25px;
    }

    .video_content h2 {
        font-size: 20px;
    }

    .video_wrapper .btn-primary {
        font-size: 18px;
        padding: 0.7rem 32px;
    }

    .navbar-nav .dropdown-menu {
        position: static;
        border: none;
        background: aliceblue;
    }

    #header .navbar-brand img {
        width: 190px;
    }

    section.roi_wrapper.space-Y {
        padding-top: 0;
    }
}
nav.navbar.navbar-expand-lg {
    padding-top: 1.5rem;
}
#header.sticky nav.navbar.navbar-expand-lg {
    padding-top:10px;
}

/* about page */
.banner-inner.overly {
    position: relative;
}

.banner-inner .title-heading {
    position: absolute;
    bottom: 50px;
    left: 50px;
}
.banner-inner .title-heading h1 {
    color: #fff;
    font-size: 55px;
}

.banner-inner ol.breadcrumb li {
    color: #fff;
}
.banner-inner ol.breadcrumb li a {
    color: #0DB6FF;
    text-decoration: none;
}
.banner-inner ol.breadcrumb li::before {
    color: #fff;
}
.banner-inner.overly::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-image:linear-gradient(to right, rgb(0 0 0 / 50%), #00000000);
    border-radius: 20px;
}
.cards_content {
    padding:3rem;
    border: 1px solid #E2E2E2;
    border-radius: 0 0 20px 20px;
    border-top: 0;
}
.cards_content p {
    padding: 5px 0;
    font-size: 16px;
    font-weight: 300;
}
.box-cards img {
    height: 415px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}
.cmn-title {
    font-size: 44px !important;
    margin: 0;
    padding-bottom: 2rem;
}
section.Leadership h2.cmn-title {
    text-align: center;
}
.team.cards img {
    border-radius: 10px 10px 0 0;
    height: 410px;
    object-fit: cover;
}
.team.cards .content {
    text-align: center;
    padding: 0px 0;
}
.team.cards .content {
    text-align: center;
    padding: 0px 0;
    border: 1px solid #EEEEEE;
    border-radius: 0 0 10px 10px;
    border-top: 0;
    padding-bottom: .5rem;
}
.team.cards .content h4 {
    padding-top: 1.5rem;
    font-size: 22px;
    color: #000;
    margin-bottom: 5px;
}
.team.cards .content p {
    color: #52606D;
    font-size: 16px;
}
.team.cards {
    margin-bottom: 1.8rem;
}
.space-tp {
    margin-top: 2rem;
}
.team.cards a {
    display: block;
    text-decoration: none;
}
.team.cards a:hover .content {
    background: #169FDA;
}
.team.cards a:hover .content h4 {
    color: #fff;
}
.team.cards a:hover .content p {
    color: #fff;
}
.team.cards:hover img{
    filter: grayscale(100%);
}
.space-X {
    padding-bottom: 50px;
}
.team-members-cont img {
    border-radius: 10px;
}
.team-members-cont {
    padding: 2rem;
}
.close-btn {
    position: absolute;
    right: 18px;
    top: 15px;
}
.team-bio {
    padding-left: 1rem;
}
.team-bio span {
    color: #52606D;
    padding-bottom: .8rem;
    display: block;
}
.team-bio p {
    font-size: 16px;
    font-weight: 300;
}
.banner-inner.overly img {
    border-radius: 10px;
    max-height: 546px;
    width: 100%;
    object-fit: cover;
}


@media (max-width:768px) {

.team-bio {
    padding-top: 2rem;
}
.team.cards img {
   
    width: 100%;
}
.banner-inner .title-heading {
     
    bottom: 12px;
  
}
.banner-inner {
    height: 250px;
}
.banner-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: 100%;
 }

.roi_heading h2 {
    font-size: 35px;
    padding-bottom: .5rem;
}
.box-cards {
    margin-bottom: 2rem;
}
.cards_content p {
    
    margin-bottom: 0;
}
}

/* Services page */

section.services_Wrapper.inner-page .inner_wrapper {
    padding: 40px 0;
}   
/* Consulting services pages css start here */
 
.inner_wrapper.products {
    padding: 5px 0px;
}
.pro-card-cont img {
    width: 100%;
    height: 264px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
.pro-card-cont {
    border: 1px solid #DEDEDE;
     border-radius: 10px;
     min-height: 610px;
    
}
.pro-card-cont h3 {
    color: #000;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: .5rem;
}
.cont {
    padding: 2rem;
}
.cont p {
    color: #353535;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
.inner_wrapper.products .owl-controls.clickable {
    margin-top: 2rem;
}
.lt-services {
    background: #F4F4F4;
    border-radius: 20px;
}
.lt-content {
    padding: 0 4rem;
}
.lt-content h2 {
    color: #000;
    font-family: Inter;
    font-size: 42px;
    font-style: normal;
    font-weight: 400; 
    padding-bottom: 1rem;
}
.global-ccms {
    background: #0F3363;
    border-radius: 10px;
}
.global-ccms {
    background: #0F3363;
    border-radius:20px;
    padding: 8rem 12rem;
    color: #fff;
}

.global-ccms h2 {
    font-size: 48px;
}

.global-ccms p {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 200;
    line-height: 150%;
}
.video_inner.global video {
    border-radius:20px;
}
.global-relative {
    position: relative;
}
.global-relative {
    position: relative;
    max-height:450px;
}

.video_inner.global video {
    max-height: 450px;
    width: 100%;
    background-size: 100%;
    object-fit: cover;
}
.global-ccms {
    background: #0f3363cf;
    border-radius: 20px;
    padding: 8rem 12rem;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.services_card.related-services {
    margin: 0;
}
.related-services .lt-content {
    padding: 0 0rem;
}
.related-services .lt-content p {
    padding-right: 3rem;
    line-height: 1.5;
}
.inner_wrapper.products .owl-dots {
    margin-top:1.5rem;
}

@media (max-width:767px) {
    .inner_wrapper.products .owl-dots {
    margin-top: 1rem;
}
.global-ccms h2 {
    font-size: 30px;
}

}

@media (max-width:991px) {
    

.banner-inner .title-heading h1 {
    color: #fff;
    font-size: 45px;
    line-height: 1;
}
.video_inner.global video {
    max-height: 100%;
    width: 100%;
    background-size: 100%;
    object-fit: cover;
    height: 100%;
}
.video_inner.global {
    height: 500px;
}


.global-ccms {
    background: #0f3363cf;
    border-radius: 20px;
    padding: 2rem 3rem;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.global-relative {
    height: auto;
    margin-top: 1rem;
    max-height: max-content;
}
.lt-services img {
    border-radius: 10px;
}
.lt-content {
    padding: 2rem 1.5rem;
}
.inner_wrapper.products { 
    margin-top: 1.5rem;
}
.icon_box {
    max-height: 450px;
}


}


@media   (max-width: 1100px) and (min-width: 992px) {

.global-ccms {
    background: #0f3363cf;
    border-radius: 20px;
    padding: 8rem 4rem;

}
}
.owl-theme .owl-nav{
    display: none;
} 

/* training page css */
.pils-tab ul.nav.nav-tabs {
    margin: auto;
    max-width: max-content;
    z-index: 1;
    position: relative;
    border: 0;
}

.pils-tab::before {
    content: '';
    width: 98%;
    position: absolute;
    height: 1px;
    background: #D9D9D9;
    top: 50%;
    z-index: 0;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.inner_wrapper.training {
    padding: 65px 0px 0px;
}
.pils-tab ul.nav.nav-tabs li.nav-item a.nav-link.active {
    background: #173D6F;
    border-radius: 50px;
    color: #fff;
    padding: 12px 40px;
}
.pils-tab ul.nav.nav-tabs li.nav-item a.nav-link {
    border-radius: 100px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 12px 40px;
    color: #169FDA;
}
.pils-tab {
    position: relative;
}
.pils-tab ul.nav.nav-tabs li.nav-item {
    border: 0;
    padding: 0 .3rem;
        font-family: Inter;
    font-size: 18px;
    font-style: normal;
}
.inner_wrapper.training .tab-content {
    margin-top: 3rem;
}

.inner_wrapper.training .pro-card-cont img {
    width: 100px;
    height: auto;
    margin-top: 5rem;
}
.inner_wrapper.training .pro-card-cont img {
    width: 100px;
    height: auto;
    margin-top: 5rem;
}

.inner_wrapper.training .pro-card-cont {
 
    text-align: center;
    min-height: 500px;
    margin-bottom: 1.5rem;
}
.inner_wrapper.training .pro-card-cont p {
    text-align: left;
}
.inner_wrapper.training .pro-card-cont .cont {
    overflow: auto;
    max-height: 300px;
    padding: 1.5rem 2rem;
}

button.read-more {
    background: none;
    border: 0;
    color: #00A0DF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    padding-left: 0px;
}
.inner_wrapper.training .pro-card-cont .cont li {
    text-align: left;
    list-style: inside;
    color: #353535;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}

/* resource page css */

.inner_wrapper.resource .tab-content {
    margin-top: 3rem;
}
.inner_wrapper.bg_theme2.blog {
    padding-bottom: 2rem;
}
.tab-content.resource-content {
    background: #F6F6F6;
    border-radius: 15px;
    padding: 2rem 0;    
    margin-top: 2.5rem;
    
    
}
.inner_wrapper.resource {
    padding: 0;
}

.inner_wrapper.resource .tab-content .pro-card-cont {
    min-height: auto;
    text-align: left;
    border: 0;
    margin-bottom: 0;
}
.inner_wrapper.resource .tab-content .pro-card-cont span {
    color: #169FDA;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}
.inner_wrapper.resource .tab-content .pro-card-cont h3
    {
        padding-bottom: 0;
    }

.inner_wrapper.resource .tab-content.resource-content .pro-card-cont {     
    border-bottom: 1px solid #DDD;
    border-radius: 0;
    height: 180px;
}
.inner_wrapper.resource .pro-card-cont .cont a {
    text-decoration: none;
}

.inner_wrapper.resource .pro-card-cont .cont a h3:hover{
    text-decoration: underline;
    color: #062138;

}
.gcu {
    border-radius: 20px;
    background: #173D6F;
    color: #fff;
    padding:4rem;
}
.gcu h2 {
    color: #FFF;
    font-family: Inter;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 1rem;
}
.gcu p {
    color: #FFF;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 33px;
}

.ccms-video {
    height: 100%;
    position: relative;
}
.ccms-video:before{
    content: '';

}

.ccms-video img {
    object-fit: cover;
    height: 455px;
    border-radius: 20px;
    width: 100%;
}

span.play-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
span.play-video img {
    height: auto;
}
.ccms-video:before {
    content: '';
    background: #00000045;
    width: 100%;
    height: 100%;
    position: absolute;
    border-radius: 20px;
}
.accordion-header button {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
 
.accordion-header button {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    border-radius: 10px;
    border: 1px dashed #C0D5DE;
    background: #E9F4F9;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.06);
    line-height: normal;
    padding: 20px;
}
.accordion-button:not(.collapsed) {
    background: none;
    border: 0;
    border-radius: 0;
}
.accordion-item {
    margin-bottom: .5rem;
}
.accordion-item {
    margin-bottom: .5rem;
    border: 0;
    border-radius: 7px;
}
.accordion-collapse.collapse.show {
    border: 1px solid #DEDEDE;
    border-radius: 0px 0px 10px 10px;
    border-top: 0;
}
.accordion-button:not(.collapsed) {
    border: 1px solid #DEDEDE;
    border-bottom: 0;
    border-radius:10px 10px  0px 0px ;
}
.inner_wrapper.faq {
    border-radius: 15px;
    background: #173D6F;
}

.faq h2 {
    color: #FFF;
    font-family: Inter;
    font-size: 34px;
    font-style: normal;
    font-weight: 400;
    padding-bottom: 1rem;
    text-align: center;
    padding-top: 1.5rem;
}

.inner_wrapper.faq .pils-tab ul.nav.nav-tabs li.nav-item a.nav-link.active {
    border-radius: 100px;
    background: #00A0DF;
    border:1px solid #00A0DF;
    border: 0;
}
.inner_wrapper.faq .pils-tab ul.nav.nav-tabs li.nav-item a.nav-link {
    border-radius: 100px;
    background:#173D6F;
    border:1px solid #fff;
    color: #fff;
}
.inner_wrapper.faq .tab-content {
    padding-top: 3rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.inner_wrapper.faq .accordion-item {
    background: transparent;
    color: #fff;
}
.inner_wrapper.faq .accordion-item h2 {
    padding-bottom: 0;
    padding-top: 15px;
}
.inner_wrapper.faq .accordion-item h2 button {
    color: #FFF;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.inner_wrapper.faq .accordion-button:not(.collapsed)::after {
    background-image: url(../images/collapsed.svg);
    transform: var(--bs-accordion-btn-icon-transform);
    align-items: center;
    vertical-align: middle;
    background-position: center;
    background-repeat: no-repeat;
}

.inner_wrapper.faq .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: url(../images/plus.svg);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
}

.inner_wrapper.faq .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed{
    background-color: transparent;
}

.inner_wrapper.faq .accordion-button.collapsed{
    background-color: transparent;
}

.inner_wrapper.faq .accordion-item .accordion-body p {
    padding: 1rem;
    margin: 0;
}

.inner_wrapper.faq .accordion-item h2 button:focus {
    box-shadow:none;
    border-bottom: 1px solid #fff;
}

.news-card {
    border-radius: 20px;
    background: #E9F4F9;
    padding: 2rem 4rem;
    margin-bottom: 1rem;
}
.news h2 {
    display: inline-block;
    font-size: 34px;
}

a.view-all {
    text-align: right;
    float: right;
    color: #062138;
    width: 20%;
}
a.view-all:hover{
    text-decoration: none;
}

.news-card a {
    color: #1A1A1A;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    text-decoration: none;
}
.ddmmyy {
    padding-top: 2rem;
}
.ddmmyy img {
    padding-right: .5rem;
}
.news-title {
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    width: 100%;
}
.news-title h2 {
    display: inline-block;
    float:left;
    width: 80%;
}
.news-card:hover a{
    color: #169FDA;
}

.blog .ddmmyy {
    padding: 0.8rem 0;
    color: #173D6F;
    display: flex;
    align-items: center;
}

.blog .ddmmyy img {
    width: 30px !important;
}

.blog h4 {
    color: #101010;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.22px;
    padding-bottom: .5rem;
}

.blog p.card-text {
    color: #52606D;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
}
.blog .card {
    border: 0;
}
.blog .card-body {
    padding: 1.5rem;
}
.blog .card-body a {
    text-decoration: none;
}
.blog .card-body a:hover h4{
     color: #169FDA;
}

.inner_wrapper.resource {
    margin-top: 3rem;
}

/* media */

@media (max-width:767px) {

.pils-tab::before{display: none;}

.pils-tab li {
    width: 100%;
    margin-bottom: 1rem;
}
.gcu {
    margin-bottom: 1.5rem;
}
.pils-tab ul.nav.nav-tabs li.nav-item {
    text-align: center;
}
.inner_wrapper.resource .tab-content{
    padding-top: 0rem;
    margin-top: 1.5rem;
}
.inner_wrapper.faq .tab-content {
    padding-top: 1.5rem;
}

}

@media (max-width:991px) {

.inner_wrapper.resource .tab-content.resource-content .pro-card-cont {
    height: auto;
}
.news {
    padding-top: 4rem;
}
.blog {
    margin-bottom: 2rem;
    margin-top: 1rem;
}

}

/* News and blogs */

.article-blogs {
    background: linear-gradient(180deg, #F5F5F5 0%, #FFF 100%);
}

.article-blogs h1{
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 42px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px; /* 128.571% */
    letter-spacing: -0.882px;
    padding-top: 3rem;
    margin-bottom: 3rem;
}
.news-article h5 {
    color: #000;
    font-family: Inter;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    padding-top: 1.5rem;
}

ul.about-read {
    display: flex;
    vertical-align: middle;
    margin: 15px 0;
    padding: 0;
}

ul.about-read li {
    list-style: none;
    padding-right: 1rem;
    font-weight: 300;
}
ul.about-read li img{
    padding-right: 5px;
}
.article-blogs .carousel-item img {
    border-radius: 20px;
}
a.btn-black {
    border-radius: 60px;
    background: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: .8rem 0px;
    display: inline-block;
    width: 150px;
    margin-top: 1rem;
}
.news-article {
    padding-bottom: 3rem;
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 30%;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    filter: var(--bs-carousel-control-icon-filter);
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
    height: 100px;
}
.article-blogs .carousel-control-prev {
    left: -25px;
}
.article-blogs .carousel-control-next {
    right: -25px;
}
.news-list {
    padding-bottom: 3rem;
    border-bottom: 1px dashed #C7C7C7;
    padding-top:3rem;
    margin-left:2rem;
}
.news-list:nth-child(3) {
    border-bottom: 0;
}
.news-list:nth-child(1) {
    padding-top: 0;
}
.news-list a.btn-black {
    border-radius: 60px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    color: #000;
}

.news-list a.btn-black {
    border-radius: 60px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    color: #000;
    margin-top: 5px;
    padding: 10px 0px;
}
.news-disc h6 {
    overflow: hidden;
    color: #000;
    text-overflow: ellipsis;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.2px;
}
.tumbnail img {
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.news-list .tumbnail {
    padding-left: 0;
}
.news-list:hover a.btn-black {
    background: black;
    color: #fff;
    border: 1px solid #000;
}
.border-black hr {
    opacity: inherit;
}

.news-list li {
    font-size: 14px;
}



/* media */

@media (max-width:767px) {

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 22%;
}
.news-list{
    margin-left: 0;
}
}


/* news and blog page css */

.news-card-list {
    display: flex;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}
.news-content h6 {
    color: #000;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}
.news-content p{
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}
.news-dd {
    width: 15%;
}
.news-content {
    width: 75%;
}
.news-content {
    border-bottom: 1px solid #c7c7c7;
    padding-bottom: 2rem;
}
a.read-more {
    border-radius: 60px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: .8rem 2rem;
    display: inline-block;
    text-decoration: none;
    color: #000000;
}
.archived-news h2 {
    color: #000;
    font-family: Inter;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 52px;
    margin-bottom: 3rem;
}

.news-dd span {
    text-align: center;
    display: inline-block;
}
.news-dd span img {
    padding-bottom: .5rem;
}

.news-card-list:hover a.read-more {
    background: black;
    color: #fff;
    border: 1px solid #000;
}
.news-content a.read-more {
    margin: .5rem 0;
}

.newsletter {
    border-radius: 20px;
    background: #F6F6F6;
    padding: 3rem;
    margin-top: 2rem;
}
.newsletter input.form-control {
    border-radius: 60px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    margin-top: 6rem;
}

.newsletter .Subscribe {
    width: 100%;
    border-radius: 60px;
    background: #000;
}
.newsletter hr {
    border-top: 1px solid #000;
    opacity: inherit;
    margin: 2rem 0;
}
.newsletter.search_by {
    border-radius: 20px;
    background: #E9F4F9;
}
.newsletter.search_by li {
    list-style: inside none;
    text-align: left;
}
.newsletter.search_by li a {
    color: #00A0DF;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    list-style: none;
    text-decoration: none;
}
.newsletter.search_by ul{
    margin-left: 0;
    padding-left: 0;
}
.archived-news ul.pagination {
    margin: 3rem 0;
}
.archived-news hr {
    border-top: 1px solid #000;
    opacity: inherit;
}
.archived-news ul.pagination.btm li.page-item.active {
    background: #00A0DF;
    --bs-pagination-color: #00A0DF;
    --bs-pagination-active-bg: #00A0DF;
    --bs-pagination-active-border-color: #00A0DF;
}
.archived-news ul.pagination.btm a.page-link {
    padding: 10px 18px;
}
.container.news-details {
    max-width: 1000px;
}
.container.news-details h1 {
    margin-bottom: 0;
}
.container.news-details ul.about-read {
    text-align: center;
    max-width: 480px;
    margin: 1rem auto;
}
.container.news-details ul.about-read li {
    display: flex;
    align-items: center;
    vertical-align: middle;
    font-weight: 400;
}
.n-tags {
    margin: 1rem auto;
    display: inline-flex;
    text-align: center;
    align-items: center;
    max-width: 500px;
}
.n-tags li {
    border-radius: 100px; 
    list-style: none;
}
 
.n-tags li.press-rel {
    border-radius: 100px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    list-style: none;
    padding: 10px 20px;
    width: 170px;
}
.n-tags li.share a {
    width: 150px;
    background: #000;
    padding: 10px;
    border-radius: 60px;
    margin: 0px 5px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
}
.n-tags li.share a img {
    padding-right: 1rem;
}
.news-details img.img-brief {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    margin: 4rem 0;
    padding: 0;
}
.content-nb h5 {
    color: #000;
    font-family: Inter;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    padding: 1rem 0;
}
.container.news-details.space-XY {
    padding: 50px 0;
}
.border-black .previous a, .Next a {
    text-decoration: none;
    color: #000;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}
.border-black .previous {
    float: left;
    display: contents;
}

.border-black .Next {
    float: right;
    display: inline-block;
}

.content-nb p a {
    color: #000;
}

.content-nb p a:hover{
    text-decoration: none;
}
.container.news-details .news-list {
    padding-top: 0;
    margin: 0;
    border: 0;
}

.container.news-details h6 {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 21px;
    letter-spacing: -0.2px;
    padding-top: 1.5rem;
}
.news-list span {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
}
.news-list span a {
    position: absolute;
    left: 12px;
    top: 12px;
    background: #fff;
    border-radius: 20px;
    padding: .4rem 1rem;
    font-size: 12px;
    text-decoration: none;
    color:#000;
}

.news-list .tumbnail img {
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
    height: 180px;
}

/*media*/

@media (max-width:767px) {

.news-details img.img-brief{
        
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
   
}
.container.news-details ul.about-read li {
    display: inline-block;
}
.container.news-details.space-XY {
    padding: 50px 10px;
}
.container.news-details h1 {
    margin-bottom: 0;
    line-height: 1;
    padding-bottom: 1rem;
}

}

@media (max-width:520px) {

.n-tags {
    display: block;
}
.n-tags li.press-rel {
    width: 100%;
    margin-bottom: 1rem;
}
.n-tags li.share a {
    width: 100%;
    margin-bottom: 1rem;
}
.news-disc h6 {
    padding-top: 1rem;
}

}

.blog-posts {
    border: 1px solid #DEDEDE;
    border-radius: 10px;
    min-height: 550px;
    margin-bottom: 1.5rem;
    overflow: auto;
}
.blog-posts img {
    width: 100%;
    height: 264px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    display: block;
}
.ddmmyy-blogs {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #173D6F;
}
.ddmmyy-blogs img {
    width: 20px;
    height: auto;
    margin-right: .5rem;
    border-radius: 0;
}

.blog-posts p a {
    color: #169FDA;
    text-decoration: none;
}
.blog-posts h3 {
    color: #101010;
    font-family: Inter;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: -0.22px;
}
.archived-news.blogs h2 {
    padding-top: 1rem;
}
.news-article h5 {
    font-size: 22px;
    line-height: 1.3;
}

/* Request a quote */

.left-align h2 {
    text-align: left;
}
.global-offices {
    float: right;
}
.global-offices a.view-all-btn {
    border-radius: 60px;
    padding: 10px 2rem;
    background: #173D6F;
    margin-left: 1rem;
    color: #fff;
    text-decoration: none;
}
section.address_wrapper.quote .inner_wrapper {
    padding: 60px 0;
}

.logo-g-link {
    width: 350px;
    margin-bottom:3rem;
}


@media (max-width:580px) {
section.address_wrapper.quote {
    padding-top: 0 !important;
}

.global-offices {
    float: none;
    padding: 1rem 0;
}
.roi_heading.left-align h2 {
    text-align: center;
    padding-bottom: 1rem;
}
}