/* Reset  */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@font-face {
    font-family: kenyan-coffee-bd;
    src: url(kenyan-coffee-bd.ttf);
    font-weight: normal;
}

@font-face {
    font-family: gt-walsheim-regular;
    src: url(gt-walsheim-regular.ttf);
    font-weight: normal;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

html, body {
    scroll-behavior: smooth;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    font-size: 16px;
    background: #fff;
}

.container, .container-fluid {
    padding: 0;
}

.container .row, .container-fluid .row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

input, textarea {
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
}

.tab-content>.tab-pane {
    display: none;
    position: relative;
}

.tab-content>.active {
    display: block;
}

/*****************************************/
.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.slick-slider {
    width: 100%;
    margin: 2% auto 0px;
}

.eqlh {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.float-left {
    float: left;
}

.clear-both {
    clear: both;
}

.mar-pad-0 {
    margin: 0;
    padding: 0;
}

.pad-lr-100 {
    padding: 0 100px;
}

/****************************************/

/**heder*/
.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    padding: 0 50px;
    box-sizing: border-box;
    background: #fff;   /* box-shadow: 0 0 10px rgb(0 0 0 / 20%); */
}

header.sticky {
    transition: 0.25s all linear;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    background: #fff;
}

header.sticky .header-main {
    background: #fff;
    transition: 0.25s all linear;
}

header.sticky .logo a img.logo-normal {
    display: none;
}

header.sticky .logo a img.logo-over {
    display: block !important;
}

header.sticky .menu>.menu-item>a {
    color: #1e1e22;
}

header.sticky .menu>.menu-item>a .plus {
    border: solid #1e1e22;
    border-width: 0 2px 2px 0;
}

.header-main {
    padding: 0;
    border-radius: 4px;
    width: 100%;
}

.header .logo {
    padding: 6px 0px;
    width: 182px;
    float: left;
    margin-right: 60px;
}

.header .logo img {
    width: 100%;
}

.header .logo a {
    font-size: 30px;
    text-transform: capitalize;
    color: #e91e63;
    font-weight: 600;
}

.header .nav-menu {
    padding: 0 15px;
    float: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .menu>.menu-item {
    display: inline-block;
    position: relative;
    border-style: solid;
    padding: 0;
}

.header .menu>.menu-item>a {
    display: block;
    padding: 22px 20px;
    color: #000;
    text-transform: capitalize;
    font-weight: 400;
    transition: all 0.3s ease;
    font-family: gt-walsheim-regular;
    font-size: 15px;
    text-decoration: none;
    line-height: 1.6;
    border-bottom: 2px solid transparent;
}

.header .menu>.menu-item.active>a {
    border-bottom-color: #000;
}

.header .menu>.menu-item>a .plus {
    border: solid #fff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 6px;
    transform: rotate(45deg);
}

/*.header .menu > .menu-item:hover > a .plus{
    border: solid #fff;
    border-width: 0 2px 2px 0;
}*/
.header .menu>.menu-item>a .plus:after {
    transform: translate(-50%, -50%) rotate(-90deg);
}

.header .menu>.menu-item:hover>a {
    border-bottom: 2px solid #000;
}

.header .menu>.menu-item>.sub-menu {
    box-shadow: 0px 0 10px rgb(0 0 0 / 20%);
    width: 230px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

@media(min-width:992px) {
    .header .menu>.menu-item-has-children:hover>.sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header .menu>.menu-item-has-children:hover>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }

}

.header .menu>.menu-item>.sub-menu>.menu-item {
    display: block;
}

/*.header .menu > .menu-item > .sub-menu > .menu-item > a:last-child{
    border-bottom: none;
}*/
.header .menu>.menu-item>.sub-menu>.menu-item>a {
    display: block;
    margin: 12px 20px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-family: 'gt-walsheim-regular';
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    padding-bottom: 11px;
}

.header .menu>.menu-item>.sub-menu>.menu-item>a:before {
    display: block !important;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 6px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #8abf3e;
}

.header .menu>.menu-item>.sub-menu>.menu-item:hover>a:before {
    width: 10px;
    margin-right: 5px;
}

.header .open-nav-menu {
    height: 34px;
    width: 40px;    /* margin-right: 35px; */
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .open-nav-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: #000000;
    position: relative;
}

.header .open-nav-menu span:before, .header .open-nav-menu span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    box-sizing: border-box;
}

.header .open-nav-menu span:before {
    top: -7px;
}

.header .open-nav-menu span:after {
    top: 7px;
}

.header .close-nav-menu {
    height: 40px;
    width: 40px;
    background-color: #ffffff;
    margin: 0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.header .close-nav-menu img {
    width: 16px;
}

.header .menu-overlay {
    position: fixed;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.right-header-part {
    padding: 5px 10px;
    font-size: 16px;
    box-sizing: border-box;
    background: #007bff;
    cursor: pointer;
    border-radius: 5px;
}

.right-header-part a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
    color: #fff;
    line-height: 1;
    font-family: 'gt-walsheim-regular';
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 15px;
    box-sizing: border-box;
    text-decoration: none;
}

.right-header-part a:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.right-header-part a span {
    width: 0px;
    height: 2px;
    background: #fff;
    margin-left: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.right-header-part a b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    display: flex;
    align-items: center;
    position: relative;
    top: 0;
    margin-left: 5px;
    float: right;
    left: 0;
}

/**heder*/
@media(max-width:991px) {
    .header .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .header {
        background: #fff;
    }

    /*   header.sticky {
          height: 70px;
      }

      header.sticky .header-main {
          height: 50px;
      } */
    header.sticky .menu>.menu-item>a {
        color: #fff;
    }

    .header .nav-menu {
        position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #222222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }

    .header .nav-menu {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    ul.menu {
        width: 100%;
    }

    .right-header-part {
        margin-left: 15px;
    }

    .logo-nav {
        margin: 20px 0;
    }

    .header .menu>.menu-item {
        border-left-color: transparent;
    }

    .header .nav-menu.open {
        visibility: visible;
        right: 0px;
    }

    .header .menu>.menu-item {
        display: block;
        margin: 0;
    }

    .header .menu>.menu-item-has-children>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .menu>.menu-item>a {
        color: #ffffff;
        padding: 12px 15px;
        border-bottom: 1px solid #333333;
    }

    .header .menu>.menu-item:first-child>a {
        border-top: 1px solid #333333;
    }

    .header .menu>.menu-item>a .plus:before, .header .menu>.menu-item>a .plus:after {
        background-color: #ffffff;
    }

    .header .menu>.menu-item-has-children.active>a .plus:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    .header .menu>.menu-item>.sub-menu {
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: auto;
        max-height: 0;
        overflow: hidden;
    }

    .header .menu>.menu-item>.sub-menu>.menu-item>a {
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }

    .header .close-nav-menu, .header .open-nav-menu {
        display: flex;
    }

}

/* 
@media (max-width:575px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  width: 93%;
  }

} */

/**heder*/

/*******************************************/
.top-banner {
    margin-top: 0;
    background: url('../images/banner.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.banner-area .banner-slider {
    padding: 0;
    margin: 0;
}

.banner-slider-contant.slick-slide.slick-current.slick-active {

    /*display: flex;
    justify-content: center;*/
    display: flex;
    position: relative;
}

.banner-slider-contant .banner-content {
    position: relative;
    width: 50%;    /*float: left;*/

    /*    background: #fff;*/
    padding: 0;
    display: flex;    /* flex-direction: column; */
    justify-content: center;
}

.banner-content-area {
    width: 60%;
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* .banner-img {
width: 50%;
} */
.banner-img img {
    width: 100%;
    height: 100vh;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* 
.banner-slider-contant {
display: flex;
} */
.banner-slider-contant h2 {
    font-family: 'gt-walsheim-regular';
    height: auto;
    width: auto;
    color: #333333;
    text-decoration: none;
    white-space: revert;
    min-height: 0px;
    min-width: 0px;
    max-height: none;
    max-width: none;
    line-height: 70px;
    font-weight: 700;
    font-size: 65px;
    word-break: break-all;
}

.banner-slider-contant h2 span {
    background: linear-gradient(to right, #89c541, #1daa95);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.banner-slider-contant p {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    padding: 0;
    line-height: 25px;
    margin-top: 30px;
}

.banner-slider-contant h6 {
    font-family: gt-walsheim-regular;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: #060e62;
    padding: 0;
    line-height: 25px;
    margin-top: 30px;
}

.top-banner .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: -60px;
    z-index: 1;
    position: relative;
}

.top-banner .slick-dots li {
    margin-right: 10px !important;
}

.top-banner .slick-dots li button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    font-size: 0;
    background: #d3e3ff;
    cursor: pointer;
}

.top-banner .slick-dots li.slick-active button {
    background: #030aa4;
}

.banner-slider-contant a span {
    width: 0px;
    height: 2px;
    background: #fff;
    margin-left: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.banner-slider-contant a:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.banner-slider-contant a b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

.banner-slider-contant a {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 17px;
    color: #fff;
    position: relative;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0px 30px;
    background: #8abf3e;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin-right: 20px;
    display: inline-block;
}

.banner-slider-contant .common-button-part {
    margin-top: 40px;
}

.banner-slider-contant .common-button-part .button1 {
    background: #fe0920;
}

.banner-slider-contant .common-button-part .button2 {
    background: #007bff;
}

.banner-slider-contant a .arrow {
    top: 20px;
}

.slick-slider .slick-prev {
    display: none !important;
}

.slick-slider .slick-next {
    display: none !important;
}

.top-banner .slide-arrow.prev-arrow {
    left: 20px;
}

.top-banner .slide-arrow.next-arrow {
    right: 20px;
}

.top-banner .slide-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    background: #000;
    border: none;
    display: none !important;
}

.top-banner .slide-arrow:hover {
    background: rgba(225, 225, 225, 0.7);
}

.top-banner .slide-arrow.prev-arrow:before {
    content: ' \276E';
}

.top-banner .slide-arrow.next-arrow:before {
    content: ' \276F';
}

.top-banner .slide-arrow:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    font-size: 20px;
    color: #ffffff;
}

.banner-top-navigation {
    position: relative;
}

/*******************************************/
.smart-business-solutions {
    padding: 100px 0;
    overflow: hidden;
    background: #fff;
}

.common-header {
    margin-bottom: 30px !important;
}

.common-header h2 {
    font-family: gt-walsheim-regular;
    font-weight: 700;
    font-size: 40px;
    color: #060e62;
    padding: 0;
    line-height: 50px;
    margin-top: 0;
}

.common-header p {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, .65);
    padding: 0;
    line-height: 1.37em;
    margin-top: 0px;
}

.common-header h6 {
    font-family: gt-walsheim-regular;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: #0e2557;
    padding: 0;
    line-height: 25px;
}

.smart-business-solutions-box {
    margin-top: 0;
    border: 1px solid #ddd;
    padding: 40px;
    border-radius: 10px;
}

.smart-business-solutions-box .smart-business-solutions-box-img svg {
    width: 40px;
    height: 40px;
    color: #fe0920;
}

.smart-business-solutions-box h4 {
    font-family: gt-walsheim-regular;
    font-weight: 700;
    font-size: 21px;
    color: #060e62;
    padding: 0;
    line-height: 27px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.smart-business-solutions-box p {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 15px;
    color: #494b5d;
    padding: 0;
    line-height: 25px;
}

/*******************************************/
.investing-digital-future {
    padding: 100px 0;/*     overflow: hidden; */
    background: #f3f3f3;
}

.investing-digital-future .investing-digital-future-left {
    position: sticky;
    top: 100px;
}

.investing-digital-future-left {

    /*display: flex;
    flex-wrap: wrap;*/
    position: relative;
}

.investing-digital-future-left-img1 {
    display: block;/*     position: absolute;
    top: 0;
    left: 50px; */
}

.investing-digital-future-left-img1 img {
    border-radius: 5px;
    display: block
}

.investing-digital-future-left-img2 {
    width: 333px;
    height: 403px;
    display: block;
    position: absolute;
    top: 130px;
    left: 230px;
}

.investing-digital-future-left-img2 img {
    border-radius: 5px;
}

.service-solutions-img2 {
    width: 246px;
    height: 298px;
    display: block;
    position: absolute;
    top: 80px;
    left: 230px;
}

.service-solutions-img2 img {
    border-radius: 5px;
}

.investing-digital-future-right {
    position: relative;
    padding: 0 100px;
}

.investing-digital-future-right p {
    font-family: gt-walsheim-regular;
    font-weight: 100;
    font-size: 16px;
    color: #000;
    padding: 0;
    line-height: 25px;
    margin-top: 30px;
}

.investing-digital-future-right ul li {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 18px;
    color: #0e2557;
    padding: 0;
    line-height: 25px;
    margin-top: 30px;
    list-style: disc;
    margin-left: 20px;
}

.investing-digital-future-right a span {
    width: 0px;
    height: 2px;
    background: #fff;
    margin-left: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.investing-digital-future-right a:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.investing-digital-future-right a b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

.investing-digital-future-right a {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 17px;
    color: #fff;
    margin: 40px auto 0;
    position: relative;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0px 30px;
    background: #8abf3e;
    float: left;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-radius: 5px;
}

/*******************************************/
.home-gallery {
    padding: 100px 0 0;
    overflow: hidden;
    background: #fff;
}

.home-gallery-box {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.home-gallery-box:hover img {
    transform: scale(1.15);
    transition: all 0.3s linear;
}

.home-gallery-box img {
    position: relative;
    width: 100%;
    display: block;
    transition: all 0.3s linear;
}

.img-overlay-col {
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 35%);
    position: absolute;
    top: 0;
    left: 0;
}

.home-gallery-box-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
}

.home-gallery-box-text h6 {
    font-family: gt-walsheim-regular;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    padding: 0;
    margin-bottom: 16px;
    line-height: 25px;
}

.home-gallery-box-text h4 {
    font-family: gt-walsheim-regular;
    font-weight: 700;
    font-size: 26px;
    color: #fff;
    padding: 0;
    line-height: 25px;
}

.home-gallery-box-text p {
    margin-top: 20px;
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 15px;
    color: #fff;
    padding: 0;
    line-height: 25px;
}

.home-gallery .common-header {
    text-align: center;
}

.home-gallery .col-lg-3:nth-child(1) .home-gallery-box-text p {
    opacity: 0;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(1) .home-gallery-box-text {
    bottom: -23%;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(1):hover .home-gallery-box-text {
    bottom: 40px;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(1):hover .home-gallery-box-text p {
    opacity: 1;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(2) .home-gallery-box-text p {
    opacity: 0;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(2) .home-gallery-box-text {
    bottom: -23%;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(2):hover .home-gallery-box-text {
    bottom: 40px;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(2):hover .home-gallery-box-text p {
    opacity: 1;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(3) .home-gallery-box-text p {
    opacity: 0;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(3) .home-gallery-box-text {
    bottom: -23%;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(3):hover .home-gallery-box-text {
    bottom: 40px;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(3):hover .home-gallery-box-text p {
    opacity: 1;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(4) .home-gallery-box-text p {
    opacity: 0;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(4) .home-gallery-box-text {
    bottom: -23%;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(4):hover .home-gallery-box-text {
    bottom: 40px;
    transition: 0.25s all linear;
}

.home-gallery .col-lg-3:nth-child(4):hover .home-gallery-box-text p {
    opacity: 1;
    transition: 0.25s all linear;
}

/*******************************************/
.accordion .wrapper {
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
}

.accordion .toggle, .accordion .content, .accordion a {
}

.accordion .toggle {
    width: 100%;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 16px;
    color: #111130;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 0;
}

.accordion .content {
    position: relative;
    font-size: 14px;
    line-height: 30px;
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.accordion .content p {
    font-size: 16px;
    padding: 15px 0px;
    font-family: gt-walsheim-regular;
    color: #565054;
    font-weight: 400;
}

.accordion .content p.big {
    padding-top: 0;
    font-weight: 600;
}

.accordion .fab {
    color: #ff0000;
}

.accordion .wrapper .toggle {
    text-align: left;
    display: block;
    padding: 20px 0px 0px;
    color: #060e62;
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 18px;
}

/*.accordion .wrapper .toggle.active, .accordion .wrapper .toggle:focus, .accordion .wrapper .toggle:hover {
color: #bd1823;
}*/

/*.accordion.active .wrapper .toggle {
color: #c12732;
}*/
.accordion .wrapper .toggle i {
    float: right;
    line-height: 30px;
}

.toggle_click-font {
    font-size: 22px;
}

.toggle_unclick-font {
    font-size: 22px;
}

.accordion .wrapper .toggle img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
    float: left;
}

.accordion .wrapper .toggle .accordion .wrapper .toggle span {
    float: left;
    width: 88%;
}

.accordion .wrapper .toggle .icon {
    float: right;
    color: #fff;
    font-size: 30px;
    width: 30px;
    height: 30px;    /* background: #bd1823; */
    border-radius: 50%;
    position: relative;
}

.accordion .wrapper .toggle .icon svg {
    width: 23px;
    height: 23px;
    color: #000;
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    transform: translateY(-50%);
}

.accordion .wrapper .toggle .icon.fa-chevron-circle-up:before {
    background: url("../images/pluse.png") no-repeat;
    width: 14px;
    height: 15px;
    content: " ";
    position: absolute;
    top: 6px;
    left: 8px;
}

.accordion .wrapper .toggle .icon.fa-chevron-circle-down:before {
    background: url("../images/minus.png") no-repeat;
    width: 16px;
    height: 5px;
    content: " ";
    position: absolute;
    top: 6px;
    left: 8px;
}

/*******************************************/
.shaping-the-future {
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
}

.shaping-the-future-left {
    margin-left: 150px;
}

.shaping-the-future-bg {

    /*background: url(../images/shaping-the-future-bg.jpg);*/
    border-radius: 10px;
    background-size: cover;    /*padding: 100px 0;*/
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.shaping-the-future-bg-img img {
    transition: all 0.3s linear;
}

.shaping-the-future-bg-img:hover img {
    transition: all 0.5s linear;
    transform: scale(1.1);
}

.shaping-the-future-bg-cont {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.shaping-the-future-slider-box {
    flex-direction: column;
    padding: 0px;
    text-align: center;
    margin: 9px 20px 35px;
    position: relative;
}

.shaping-the-future-slider-img {
    min-height: 173px;
    width: 100%;
}

.shaping-the-future-slider-box img {
    padding: 0;
    width: 100%;
}

.shaping-the-future-slider-cont {
    padding: 60px 50px 60px 0;
    position: relative;
}

.shaping-the-future-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 10px;
}

.shaping-the-future-slider .slick-dots li {
    margin-right: 10px !important;
}

.shaping-the-future-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    font-size: 0;
    background: #d3e3ff;
    cursor: pointer;
}

.shaping-the-future-slider .slick-dots li.slick-active button {
    background: #01aa97;
}

.shaping-the-future-slider-box h4 {
    font-family: 'gt-walsheim-regular';
    font-weight: 700;
    font-size: 58px;
    color: #fff;
    padding: 0;
    text-align: left;
    margin: 0 0 20px;
    line-height: 68px;
}

.shaping-the-future-slider-box p {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    padding: 0 100px 0 0;
    text-align: left;
    margin: 0 0 20px;
    line-height: 22px;
}

.shaping-the-future .slide-arrow.prev-arrow {
    left: 0;
}

.shaping-the-future .slide-arrow.next-arrow {
    left: 70px;
}

.shaping-the-future .slide-arrow {
    position: absolute;
    bottom: 20px;
    width: 60px;
    height: 60px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    border: none;
    background: transparent;
}

.shaping-the-future .slide-arrow.prev-arrow:before {
    content: ' \276E';
}

.shaping-the-future .slide-arrow.next-arrow:before {
    content: ' \276F';
}

.shaping-the-future .slide-arrow:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    font-size: 27px;
    color: #fff;
}

/*******************************************/
.hear-trusted-clients {
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.hear-trusted-bg {
    background: url(../images/hear-trusted-bg.png);
    border-radius: 10px;
    background-size: 100% 100%;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hear-trusted-slider-box {
    flex-direction: column;
    padding: 0px;
    text-align: center;
    margin: 9px 20px 35px;
    position: relative;
}

.hear-trusted-slider-img {
    min-height: 173px;
    width: 100%;
}

.hear-trusted-slider-box img {
    padding: 0;
    width: 100%;
}

.hear-trusted-slider-cont {
    padding: 60px 50px 60px 0;
    position: relative;
    display: flex;
}

.hear-trusted-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    margin-top: 10px;
}

.hear-trusted-slider .slick-dots li {
    margin-right: 10px !important;
}

.hear-trusted-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    font-size: 0;
    background: #d3e3ff;
    cursor: pointer;
}

.hear-trusted-slider .slick-dots li.slick-active button {
    background: #01aa97;
}

.hear-trusted-img {
    display: flex;
    align-items: center;
}

.hear-trusted-img img {
    width: 30%;
    margin-right: 20px;
}

.hear-trusted-img h4 {
    font-family: 'gt-walsheim-regular';
    font-weight: 700;
    font-size: 18px;
    color: #0e2557;
    padding: 0;
    text-align: left;
    margin: 0 0 20px;
    line-height: 22px;
}

.hear-trusted-img h4 span {
    display: block;
    font-weight: 400;
}

.hear-trusted-slider-box p {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 22px;
    color: #313f58;
    padding: 0 100px 0 0;
    text-align: left;
    margin-left: 100px;
    line-height: 30px;
    width: 60%;
}

.hear-trusted-client-logo-box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    margin-top: 50px;
}

.hear-trusted-client-logo-box img {
    text-align: center;
}

.hear-trusted-clients .slide-arrow.prev-arrow {
    left: 40%;
}

.hear-trusted-clients .slide-arrow.next-arrow {
    right: 40%;
}

.hear-trusted-clients .slide-arrow {
    position: absolute;
    bottom: 0px;
    width: 60px;
    height: 60px;
    text-align: center;
    z-index: 1;
    cursor: pointer;
    border: none;
    background: transparent;
}

.hear-trusted-clients .slide-arrow.prev-arrow:before {
    content: ' \276E';
}

.hear-trusted-clients .slide-arrow.next-arrow:before {
    content: ' \276F';
}

.hear-trusted-clients .slide-arrow:before {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    margin: auto;
    font-size: 27px;
    color: #0e2557;
}

/*******************************************/
.latest-posts {
    padding: 20px 0 40px;
    overflow: hidden;
    background: #fff;
}

.latest-posts-box {
    position: relative;
}

.latest-posts-box-img {
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
    cursor: pointer;
}

.latest-posts-box-img:hover img {
    transform: scale(1.15);
    transition: all 2s linear;
}

.latest-posts-box-img img {
    display: block;
    transition: all 0.3s linear;
}

.latest-posts-box-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 80%;
}

.latest-posts-box-text h2 {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 36px;
    color: #fff;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
    line-height: 40px;
}

.latest-posts-box-text h4 {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    padding: 0;
    text-align: left;
    line-height: 30px;
}

.latest-posts-box-text p {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 12px;
    color: #fff;
    padding: 0;
    text-align: left;
}

.event-tab {
    display: flex;
    margin-bottom: 20px;
}

.event-tab span {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 12px;
    padding: 6px 8px;
    text-align: center;
    margin: 0;
}

.col-whi {
    background: #fff;
    color: red;
}

.event-tab span.col-red {
    background: red;
    color: #fff;
}

/*******************************************/
.project-in-mind {
    padding: 70px 0 0;
    overflow: hidden;
    position: relative;
    background: #fff;
}

.project-in-mind-bg {

    /*background: url(../images/project-in-mind-bg.jpg);*/
    background-size: 100% 100%;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.project-in-mind-bg img {
    transition: all 0.3s linear;
}

.project-in-mind-bg:hover img {
    transform: scale(1.1);
    transition: all 0.3s linear;
}

.project-in-mind-bg-cont {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(-50%);
}

.project-in-mind-bg h1 {
    font-family: 'gt-walsheim-regular';
    font-weight: 700;
    font-size: 70px;
    color: #fff;
    padding: 0;
    text-align: center;
    line-height: 80px;
}

.project-in-mind-bg a {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 17px;
    color: #fff;
    margin: 40px auto 0;
    position: relative;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0px 30px;
    background: #8abf3e;
    float: left;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-radius: 5px;
    margin-top: 80px;
}

.project-in-mind-bg a:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.project-in-mind-bg a span {
    width: 0px;
    height: 2px;
    background: #fff;
    margin-left: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.project-in-mind-bg a b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

/*******************************************/
footer {
    background: #f3f3f3;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding: 60px 0 30px 0;/*     position: sticky;
    bottom: 0;
    z-index: -1; */
    background: url(../images/banner.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

.post-wrap {
    margin-top: 20px;
}

footer .footer-logo img {
    width: 42%;
}

footer .box ul {
    list-style-type: none;
    padding-left: 0;
}

footer .box ul li {
    text-decoration: none;
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 16px;
    color: #000;
    width: 100%;
}

footer .box ul li a {
    text-decoration: none;
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 14px;
    color: #000;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    width: 100%;
    padding-bottom: 2px;
}

footer .box ul li a img {
    margin-right: 16px;
}

footer .box ul li a:hover {
    border-bottom: 1px solid #000;
}

footer .box h3 span {
    color: #000000;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
}

footer .box .awards-certifications {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    width: 300px;
    float: right;
}

footer .box .awards-certifications h3 {
    text-align: center;
    display: block;
    margin-bottom: 30px;
}

footer .box .awards-certifications h3 span {
    position: static;
}

footer .box .awards-certifications .awards-list {
    display: block;
    text-align: center;
}

footer .box h3 {
    margin: 18px 0 40px;
    font-size: 16px;
    color: #ffffff;
    position: relative;
    font-family: gt-walsheim-regular;
    font-weight: 400;
}

footer .box .awards-certifications .awards-list li {
    display: inline-block;
    vertical-align: middle;
    width: 49%;
    margin-bottom: 20px;
}

footer .box .awards-certifications .awards-list li:nth-child(1) img, footer .box .awards-certifications .awards-list li:nth-child(2) img {
    width: 46%;
}

footer .box .awards-certifications .awards-list li:nth-child(3) img, footer .box .awards-certifications .awards-list li:nth-child(4) img {
    width: 29%;
}

footer .box .awards-certifications .awards-list li img {
    display: block;
    margin: auto;
}

footer .box p {
    margin-top: 24px;
    text-align: left;
    line-height: 24px;
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 14px;
    color: #000;
    padding-right: 110px;
}

footer .box ul li {
    margin-bottom: 0.5rem;
    line-height: 28px;
}

footer .underline_text ul li {
    margin-bottom: 0.5rem;
    line-height: 25px;
}

.find-us {
}

.find-us h6 {
    text-align: left;
    line-height: 24px;
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 14px;
    color: #000;
    padding-right: 110px;
}

.find-us h4 {
    text-align: left;
    line-height: 24px;
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 18px;
    color: #000;
    margin-bottom: 30px;
}

.location_img {
    float: left;
    margin-top: 3px;
}

.location_text {
    float: left;
    width: 84%;
    margin-left: 14px;
}

.clear {
    clear: both;
}

.link_over {
    cursor: pointer;
    font-weight: 700 !important;
}

.link_over:hover {
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.copyright-text {
    display: flex;
    justify-content: center;
    border-top: 1px solid #000;
    padding-top: 21px;
    margin: 53px auto 0;
    align-items: center;
}

.copyright-text ul li {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    font-family: 'gt-walsheim-regular';
    display: inline-block;
    margin-left: 40px;
}

.copyright-text p {
    line-height: 24px;
    font-family: 'gt-walsheim-regular';
    color: #000;
    font-weight: 400;
    font-size: 14px;
}

.copyright-text a {
    color: #fff;
    border-bottom: 1px solid #fff;
    text-decoration: none;
}

.copyright-text a:hover {
    color: #ff0000;
    border-bottom: 1px solid #ff0000;
}

/*******************************************/
.contact-us-banner {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.contact-us-banner img {
    width: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
    position: absolute;
}

.contact-us-cont {
    position: relative;
    width: 100%;
    min-height: 200px;
    padding: 0;
}

.contact-us-banner-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0 auto;
}

.contact-us-banner-content h2 {
    font-family: 'gt-walsheim-regular';
    font-weight: 700;
    font-size: 74px;
    color: #fff;
    margin-bottom: 0;
    line-height: 80px;
    text-align: left;
    width: 100%;
    display: inline-block;
}

.contact-us-banner-content h4 {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 22px;
    color: rgba(255, 255, 255, .7);
    margin-left: 290px;
    line-height: 1.3em;
    text-align: left;
    width: 24%;
    position: absolute;
    right: 0;
    bottom: 10px;
}

.breadcrumb {
    margin-bottom: 30px;
    text-align: left;
}

.breadcrumb .breadcrumb-item {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500 !important;
    font-size: 12px !important;
}

.breadcrumb .breadcrumb-item li {
    text-decoration: none;
    color: #fff;
    font-weight: 500 !important;
    font-size: 12px !important;
    margin-bottom: 0;
}

.breadcrumb .breadcrumb-item a {
    text-decoration: none;
    color: #fff;
    font-weight: 500 !important;
    font-size: 12px !important;
    margin-bottom: 0;
}

.breadcrumb .breadcrumb-item::after {
    float: right;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
}

.breadcrumb .breadcrumb-item a:hover {
    color: #fb7901;
}

/*******************************************/
.get-in-touch {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

/* .get-in-touch-left {
position: absolute;
top: 50%;
transform: translateY(-50%);
} */
.get-in-touch-left h4 {
    font-size: 34px;
    color: #060e62;
    font-family: 'gt-walsheim-regular';
    font-weight: 700;
    margin-bottom: 30px;
}

.get-in-touch-left p {
    font-size: 15px;
    color: #0e2557;
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 22px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-details img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.contact-details span {
    font-size: 15px;
    color: rgba(0, 0, 0, .6);
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    display: inline-block;
    line-height: 22px;
    vertical-align: middle;
}

.get-in-touch-right {
    box-shadow: 0 0 15px rgb(0 0 0 / 10%);
    padding: 30px 50px;
    border-radius: 5px;
    width: 70%;
}

.get-in-touch-right strong {
    transition: all 0.3s;
    pointer-events: none;
    padding: 0px;
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 14px;
    color: #39364e;
    display: block;
    margin-bottom: 10px;
}

.form-cont {
}

.contact-form-right img {
    display: block;
    width: 100%;
}

.form-cont input, .form-cont textarea, .form-cont select {
    width: 100%;
    padding: 14px 0;
    margin: 10px 0;
    color: #39364e;
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 15px;
    box-sizing: border-box;    /*-webkit-appearance: none;
    -moz-appearance: none;*/
    outline: -webkit-focus-ring-color auto 0px;
    background: rgba(255, 255, 255, .1);
    border-bottom: 2px solid #e7e7e7;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}

.form-cont input::placeholder, .form-cont textarea::placeholder {
    color: #39364e;
}

.form-cont textarea {
    min-height: 110px;
    resize: none;
}

.form-cont input:focus {
    top: -5px;
}

.form-cont select {
    margin: 0;
}

.form-cont .col-lg-6, .form-cont .col-lg-12 {
    padding: 0 5px;
}

/* .form-cont select {
width: 100%;
color: #39364e;
border: none;
font-family: gt-walsheim-regular;
font-weight: 400;
font-size: 15px;
box-sizing: border-box;
border-radius: 5px;
background-position: 0 0;
outline: -webkit-focus-ring-color auto 0px;    /* -webkit-appearance: none;
   -moz-appearance: none; */

/*  background: #fff;
 border-bottom: 2px solid #e7e7e7;
 margin-top: 0; */

/* } */

.form-cont button span {
    width: 0px;
    height: 2px;
    background: #fff;
    margin-left: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.form-cont button:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.form-cont button b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

.form-cont button {
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    font-size: 17px;
    color: #fff;
    margin: 40px auto 0;
    position: relative;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    padding: 0px 30px;
    background: #8abf3e;
    float: left;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: none;
}

.form-cont input::placeholder, .form-cont textarea::placeholder {
    color: #575757;
}

.fgroup.used label, .fgroup input:focus~label, .fgroup input.used~label, .fgroup input.used~label, .fgroup input.inused~label, .fgroup textarea:focus~label, .fgroup textarea.used~label, .fgroup textarea.inused, .fgroup select:focus~label, .fgroup select.used~label, .fgroup select.inused~label {
    top: 0px;
    left: 0;
    font-size: 12px;
    background: #fff;
    color: #39364e;
    padding: 3px;
}

.fgroup label {
    position: absolute;
    top: 28px;
    left: 0;
    transition: all 0.3s;
    pointer-events: none;
    padding: 0px;
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 14px;
    color: #39364e;
    display: revert;
}

.fgroup {
    position: relative;
    text-align: left;
    margin-bottom: 20px;
}

.home-page-sec12-input2 {
    position: relative;
    display: flex;
    margin-top: 20px;
}

.home-page-sec12-input2 input {
    width: unset;
    padding: 0;
    margin-right: 10px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .2);
    font-family: gt-walsheim-regular;
    font-size: 16px;
    background: #fff;
    box-sizing: border-box;
    border-radius: 30px;
    margin-top: 0;
}

.home-page-sec12-input2 label {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 13px;
    color: #000;
    padding: 0;
}

/*******************************************/
.find-us-address {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #e5e3df;
}

.find-us-left {
    width: 100%;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 40px rgb(0 0 0 / 10%);
}

.find-us-left h4 {
    font-family: gt-walsheim-regular;
    font-weight: 500;
    font-size: 21px;
    color: #060e62;
    margin-bottom: 20px;
}

.find-us-left p {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 15px;
    color: #0e2557;
    margin-bottom: 20px;
    line-height: 22px;
}

.find-us-left p:last-child {
    margin-bottom: 0px;
}

.find-us-right {
    width: 100%;
    background: #fff;
    padding: 0px;
    border-radius: 10px;
    box-shadow: 0 0 40px rgb(0 0 0 / 10%);
    display: block;
    overflow: hidden;
}

/*******************************************/
.service-solutions-right {
    position: relative;
    padding: 0 100px;
}

.pad-t-0 {
    padding-top: 0;
}

.service-solutions-right p {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, .65);
    padding: 0;
    line-height: 1.37em;
    margin-top: 0px;
}

.pad-tb-150 {
    padding: 150px 0;
}

.service-solutions-points-patch {
    background: #f4f4f4;
    padding: 100px 0;
}

.service-solutions-points-box {
    box-shadow: 0 25px 70px rgb(0 0 0 / 7%);
    background: #fff;
    padding: 25px 10%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.service-solutions-points-box-icon {
    text-align: center;
    font-size: 30px;
    font-family: gt-walsheim-regular;
    font-weight: 600;
    border: 2px solid #8abf3e;
    border-radius: 50%;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
}

.service-solutions-points-box p {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: rgba(0, 0, 0, .65);
    padding: 0;
    line-height: 1.37em;
    margin-top: 30px;
}

/*******************************************/
.leading-team {
    background: #fff;
    padding: 100px 0;
}

.mar-bot {
    margin-bottom: 20px;
}

.mar-0-auto {
    margin: 0 auto;
}

.wid-50 {
    width: 50%;
    margin: 0 auto;
}

.leading-team-box {
    margin: 0 40px 50px;
}

.leading-team-box img {
    border-radius: 5px;
    width: 100%;
}

.leading-team-box h4 {
    font-family: gt-walsheim-regular;
    font-weight: 600;
    font-size: 25px;
    color: #184341;
    padding: 0;
    line-height: 1.25em;
    margin-top: 20px;
}

.leading-team-box h5 {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    display: inline-block;
    font-size: 10px;
    color: rgb(144, 145, 151);
    background: rgb(241, 244, 245);
    padding: 6px;
    letter-spacing: 0.1em;
    margin-top: 15px;
    text-transform: uppercase;
}

.leading-team-box p {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 16px;
    color: #5f6973;
    padding: 0;
    line-height: 1.37em;
    margin-top: 15px;
}

.hear-trusted-clients.clients-logo-section .hear-trusted-client-logo-box {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    height: 70px;
    margin-top: 0;
    text-align: center;
}

.hear-trusted-clients.clients-logo-section .col-4 img {
    width: 55%;
    display: block;
    margin: 0 auto;
}

.hear-trusted-clients.clients-logo-section .common-header {
    margin-top: 50px;
}

.investing-digital-future.our-web-design-process-section .common-header {
    margin-bottom: 40px;
    text-align: center;
}

.investing-digital-future.our-web-design-process-section .investing-digital-future-right .common-header {
    text-align: left;
}

.investing-digital-future.our-web-design-process-section .accodina-row-first {
    margin-bottom: 60px;
}

.investing-digital-future.our-web-design-process-section {
    padding: 50px 0 100px;
}

.shaping-the-future-slider-box .author {
    text-align: left;
    margin-top: 30px;
}

.shaping-the-future-slider-box .author strong {
    display: block;
    font-family: gt-walsheim-regular;
    font-weight: 500;
    font-size: 21px;
    color: #fff;
    padding: 0;
    margin-bottom: 10px;
    line-height: 25px;
}

.shaping-the-future-slider-box .author span {
    font-size: 16px;
    line-height: 22px;
    color: #fff;
    font-weight: 400;
}

.latest-posts.related-posts {
    padding: 100px 0;
}

.statics-section {
    background: #fff;
    z-index: 5;
    position: relative;
    padding: 0 0 60px;
}

.statics-section .static-part .content-part strong {
    font-family: gt-walsheim-regular;
    font-weight: 700;
    font-size: 40px;
    color: #000;
    padding: 0;
    line-height: 50px;
    margin-top: 0;
    display: block;
    margin-bottom: 10px;
}

.statics-section .static-part .content-part span {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 20px;
    color: #000;
    padding: 0;
    line-height: 25px;
    margin-top: 0;
    display: block;
    margin-bottom: 10px;
}

.statics-section .static-part .content-part a {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 16px;
    color: #8cc037;
    padding: 0;
    line-height: 25px;
    margin-top: 30px;
}

.statics-section .col-lg-3 {
    border: 1px solid #ddd;
}

/* .statics-section .col-lg-3:first-child {
border-left: 1px solid #ddd;
}
 */
.statics-section .static-part {
    padding: 60px;
    text-align: center;
}

.statics-section .static-part .icon {
    margin-bottom: 30px;
    text-align: center;
}

.statics-section .static-part .icon svg {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    color: #000;
}

.custom-web-desgin {
    padding: 60px 0;
    background: #f8f8f8;/*     background-image: url(../images/side-bg.jpg);
     background-repeat: repeat-x;
     background-position: 0 112px; */
}

.custom-web-desgin .col-lg-4 {
    padding: 0 15px;
    display: flex;
    align-items: end;
}

.custom-web-desgin .col-lg-6 {
    padding: 0 15px;
}

.custom-web-desgin .col-lg-6 .content-part {
    padding-right: 60px;
}

.custom-web-desgin .content-part.right-side-part {
    text-align: left;
    padding-right: 0;
    padding-left: 60px;
}

.custom-web-desgin .content-part h2 {
    font-family: gt-walsheim-regular;
    font-weight: 700;
    font-size: 40px;
    color: #060e62;
    padding: 0;
    line-height: 50px;
    margin-top: 0;
}

.custom-web-desgin .content-part p {
    font-family: gt-walsheim-regular;
    font-weight: 100;
    font-size: 18px;
    color: #000;
    padding: 0;
    line-height: 25px;
    margin-top: 18px;
}

.custom-web-desgin .center-map-image {
    position: relative;
}

.custom-web-desgin .center-map-image .preoject-frams-slider {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    width: 76%;
    margin: 0 auto;
}

.custom-web-desgin .center-map-image .preoject-frams-slider .item img {
    margin: 0 auto;
    display: block;
}

.custom-web-desgin .center-map-image .main-mac-book {
    z-index: 5;
    position: relative;
}

.custom-web-desgin .center-map-image .main-mac-book img {
    width: 100%;
    height: 100%;
    display: block;
}

.smart-business-solutions.why-choose-greenspark-web {
    padding-bottom: 70px;
}

.smart-business-solutions.why-choose-greenspark-web .col-lg-3 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.common-button {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;    /* height: 100%; */
    padding: 10px;
    color: #fff;
    line-height: 1;
    font-family: 'gt-walsheim-regular';
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    box-sizing: border-box;
    padding: 15px 24px;
    font-size: 16px;
    box-sizing: border-box;
    background: #8abf3e;
    cursor: pointer;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
}

.common-button .arrow {
    top: 3px;
}

.common-button .arrow span {
    width: 0px;
    height: 2px;
    background: #fff;
    margin-left: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.common-button .arrow b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

.common-button:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.seo-package-prices {
    padding: 100px 0;
}

.seo-package-prices .common-header {
    text-align: center;
}

.seo-package-prices .common-header h2 {
    margin-bottom: 20px;
}

.seo-package-prices .col-lg-4 {
    padding: 0 15px;
}

.seo-package-prices .man-price-part {
    border: 1px solid #ddd;
    border-radius: 15px;
}

.seo-package-prices .man-price-part .center-part {
    padding: 40px;
}

.seo-package-prices .man-price-part .center-part h3 {
    font-family: gt-walsheim-regular;
    font-weight: 700;
    font-size: 18px;
    color: #8abf3e;
    padding: 0;
    line-height: 25px;
    margin-bottom: 15px;
}

.seo-package-prices .man-price-part .center-part h4 {
    font-family: gt-walsheim-regular;
    font-weight: 700;
    font-size: 40px;
    color: #060e62;
    padding: 0;
    line-height: 50px;
    margin-top: 0;
    margin-bottom: 20px;
}

.seo-package-prices .man-price-part .center-part p {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, .65);
    padding: 0;
    line-height: 1.37em;
    margin-top: 0px;
    margin-bottom: 15px;
}

.seo-package-prices .man-price-part .center-part ul {
    padding-left: 30px;
    margin-bottom: 30px;
}

.seo-package-prices .man-price-part .center-part ul li {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 15px;
    color: #494b5d;
    padding: 0;
    line-height: 25px;
    position: relative;
    margin-bottom: 10px;
}

.seo-package-prices .man-price-part .center-part ul li:last-child {
    margin-bottom: 0;
}

.seo-package-prices .man-price-part .center-part ul li:before {
    content: "\2714";
    font-size: 19px;
    position: absolute;
    top: 0;
    left: -27px;
    color: #8abf3e;
}

.main-portfolio-section {
    padding: 60px 0 100px;
}

.main-portfolio-section .common-header {
    margin-bottom: 60px;
    text-align: center;
}

.main-portfolio-section .thumb-part {
    position: relative;
    overflow: hidden;
}

.main-portfolio-section .thumb-part a {
    display: block;
}

.main-portfolio-section .thumb-part a .overlay {
    opacity: 0;
    display: flex;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-family: gt-walsheim-regular;
    z-index: 1;
    background-color: #8abf3e;
    background-image: url("../images/cross.webp");
    background-position: center center;
    background-repeat: no-repeat;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease-in 0s;
    cursor: pointer;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
}

.main-portfolio-section .thumb-part a .imag-part img {
    max-width: 100%;
    float: none;
    margin: 0;
    display: block;
}

.main-portfolio-section .thumb-part a:hover .overlay {
    opacity: 0.8;
    transition: all 0.4s ease-in 0s;
}

.main-portfolio-section.main-portfolio-details-page .col-lg-6 {
    padding: 0 15px;
}

/* .main-portfolio-section.main-portfolio-details-page {
position: relative;
overflow: hidden;
}
 */
.main-portfolio-section.main-portfolio-details-page .left-side-photos {
    position: relative;
}

.main-portfolio-section.main-portfolio-details-page .main-mac-book img {
    width: 100%;
    display: block;
}

.main-portfolio-section.main-portfolio-details-page .main-slider-website {
    position: absolute;
    top: 24px;
    right: 0;
    margin: 0 auto;
    width: 93%;
    margin: 0 auto;
    display: block;
    margin: 0 auto;
    text-align: center;
    left: 0;
    border-radius: 10px;
}

.main-portfolio-section.main-portfolio-details-page .main-slider-website .item img {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.main-portfolio-section.main-portfolio-details-page .main-slider-website .slick-dots {
    margin-top: 9px;
}

.main-portfolio-section.main-portfolio-details-page .main-slider-website .slick-dots li {
    display: inline-block;
    vertical-align: top;
    margin: 0 5px;
}

.main-portfolio-section.main-portfolio-details-page .main-slider-website .slick-dots li button {
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    padding: 0;
    font-size: 0;
    box-shadow: none;
    color: #ffffff;
    cursor: pointer;
    display: block;
    height: 11px;
    padding: 0;
    text-indent: -9999px;
    width: 11px;
    transition: 0.25s all linear;
    border: 0;
}

.main-portfolio-section.main-portfolio-details-page .main-slider-website .slick-dots li.slick-active button {
    background: none repeat scroll 0 0 rgba(208, 42, 57, 0.9);
    transition: 0.25s all linear;
}

.main-portfolio-section.main-portfolio-details-page .right-side-part {
    padding-left: 30px;
    text-align: left;
}

.main-portfolio-section.main-portfolio-details-page .right-side-part .common-header {
    text-align: left;
}

.main-portfolio-section.main-portfolio-details-page .right-side-part .common-header h2 {
    margin-bottom: 20px;
}

.main-portfolio-section.main-portfolio-details-page .right-side-part .common-header p {
    margin-bottom: 20px;
}

.main-portfolio-section.main-portfolio-details-page .right-side-part .digital-service-tag {
    margin-top: 40px;
}

.main-portfolio-section.main-portfolio-details-page .right-side-part .digital-service-tag h3 {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 20px;
    color: #000;
    padding: 0;
    line-height: 25px;
    margin-top: 0;
    display: block;
    margin-bottom: 10px;
}

.main-portfolio-section.main-portfolio-details-page .right-side-part .digital-service-tag span {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 16px;
    color: rgba(0, 0, 0, .65);
    padding: 0;
    line-height: 1.37em;
    margin-top: 0px;
    display: inline-block;
    vertical-align: middle;
    background: #ebebeb;
    border-radius: 6px;
    text-align: center;
    padding: 10px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.get-in-touch-right .radio-button-part strong {
    transition: all 0.3s;
    pointer-events: none;
    padding: 0px;
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 14px;
    color: #39364e;
    display: block;
    margin-bottom: 10px;
}

.get-in-touch-right .radio-button-part .form-check-inline {
    display: inline-block;
    vertical-align: middle;
}

.get-in-touch-right .radio-button-part .form-check-inline .form-check-label {
    position: static;
    display: inline-block;
    vertical-align: middle;
}

.get-in-touch-right .radio-button-part .form-check-inline .form-check-input {
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: middle;
}

.portfolio-listing-home {
    padding: 60px 0;
    background: #fff;
}

.portfolio-listing-home .common-header {
    text-align: center;
}

.portfolio-listing-home .portfolio-listing {
    margin-top: 0;
}

.portfolio-listing-home .portfolio-listing .item {
    padding: 0 15px;
}

.portfolio-listing-home .portfolio-listing .item .center-img {
    opacity: 0.8;
    transition: all 300ms ease;
    position: relative;/*     margin: 16px; */
    border: 10px solid #ecf7fb;
    margin: 16px;
}

.portfolio-listing-home .portfolio-listing .item .center-img img {
}

.portfolio-listing-home .portfolio-listing .item .center-img:before {
    content: " ";
    width: 100%;
    height: 100%;
    background: rgb(221 221 221 / 50%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
}

.portfolio-listing-home .portfolio-listing .item.slick-current .center-img {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    color: #e67e22;
    transform: scale(1);
    border: 0;
}

.portfolio-listing-home .portfolio-listing .item.slick-current .center-img img {
    display: block;
    width: 100%;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.3);
    border: 10px solid #fff;
}

.portfolio-listing-home .portfolio-listing .item.slick-current .center-img:before {
    content: none;
}

.portfolio-listing-home .portfolio-listing .slick-list {
    padding: 0 !important;
}

.main-portfolio-section .col-lg-4 {
    padding: 0 15px;
    margin-bottom: 30px;
}

.home-our-projects-sec-box {
    position: relative;
}

.home-our-projects-sec-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.portfolio-page-sec .home-our-projects-sec-box-cont {
    position: absolute;
    top: 0;
    padding: 40px;
    box-sizing: border-box;
    transition: all 0.3s linear;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8407738095238095) 20%, rgba(0, 0, 0, 0) 60%);
    opacity: 1;
}

.home-our-projects-sec-box-cont-area {
    position: absolute;
    bottom: 20px;
    transition: all 0.3s linear;
    width: 80%;
}

.home-our-projects-sec-box-cont h4 {
    font-size: 24px;
    line-height: 28px;
    color: #fff;
    font-weight: 500;
    font-family: gt-walsheim-regular;
    margin-bottom: 6px;
}

.home-our-projects-sec-box-cont p {
    color: #fff;
    font-size: 16px;
    line-height: 26px;
    font-weight: 300;
    font-family: gt-walsheim-regular;
}

.portfolio-arrow img {
    width: 100%;
}

.portfolio-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    transform: rotate(-35deg);
    opacity: 0;
    transition: all 0.3s linear;
    font-family: gt-walsheim-regular;
    animation: mymove 1s infinite;
}

.home-our-projects-sec-box-cont .com-btn {
    color: #fff;
    border-color: #fff;
    font-family: gt-walsheim-regular;
}

.portfolio-page-sec .home-our-projects-sec-box-cont .com-btn {
    margin-top: 15px;
    opacity: 0;
    transition: all 0.3s linear;
}

.com-btn span {
    vertical-align: middle;
    margin-left: 5px;
}

@keyframes mymove {
    0% {
        bottom: 20px;
        right: 20px;
    }

    50% {
        bottom: 30px;
        right: 10px;
    }

    100% {
        bottom: 20px;
        right: 20px;
    }

}

.portfolio-page-sec .home-our-projects-sec-box:hover .home-our-projects-sec-box-cont .com-btn {
    opacity: 1;
    transition: all 0.3s linear;
}

.home-our-projects-sec-box:hover .portfolio-arrow {
    opacity: 1;
    transition: all 0.3s linear;
}

.thank-you-section .banner-slider-contant p {
    margin-top: 15px;
}

.privacy-policy-details {
    padding: 100px 0;
}

.privacy-policy-details .heading3 {
    font-family: gt-walsheim-regular;
    font-weight: 400;
    font-size: 27px;
    color: #000;
    padding: 0;
    line-height: 34px;
    margin-top: 39px;
    margin-bottom: 13px;
}

.privacy-policy-details .heading3:first-child {
    margin-top: 0;
}

.privacy-policy-details p {
    color: #3D3D3D;
    font-family: 'gt-walsheim-regular';
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin-bottom: 25px;
}

.privacy-policy-details p a {
    color: #007bff
}

.privacy-policy-details ul {
    padding-left: 40px;
    margin-bottom: 25px;
}

.privacy-policy-details ul li {
    color: #494b5d;
    font-size: 18px;
    line-height: 28px;
    font-family: 'gt-walsheim-regular';
    font-weight: 400;
    margin-bottom: 15px;
    position: relative;
}

.privacy-policy-details ul li:before {
    content: "\2714";
    font-size: 19px;
    position: absolute;
    top: 0;
    left: -27px;
    color: #8abf3e;
}

/*******************************************/

/*******************************************/

/* responsive */
@media screen and (max-width:1600px) {
    .banner-slider-contant h2 {
        line-height: 56px;
        font-size: 50px;
    }

    .banner-slider-contant p {
        font-size: 18px;
    }

}

@media screen and (min-width:1601px) and (max-width:1800px) {
}

@media screen and (min-width:1431px) and (max-width:1440px) {
}

@media only screen and (min-device-width:800px) and (max-device-width:820px) {
}

@media only screen and (min-width:1300px) and (max-width:1440px) {
    .banner-slider-contant h2 {
        font-size: 84px;
        line-height: 80px;
    }

    .contact-us-banner-content h4 {
        width: 35%;
        vertical-align: bottom;
        position: absolute;
        bottom: 10px;
        right: 0;
    }

    .contact-us-banner-content h2 {
        font-size: 54px;
        line-height: 64px;
        width: 100%;
    }

    .investing-digital-future-right {
        padding: 0 50px;
    }

    .service-solutions-right {
        padding: 0 50px;
    }

    .banner-slider-contant h2 {
        line-height: 48px;
        font-size: 33px;
    }

    .banner-slider-contant a {
        margin-top: 18px;
    }

    .banner-content-area {
        padding: 0 31px;
    }

    .banner-slider-contant p {
        margin-top: 10px;
    }

    .statics-section .static-part {
        padding: 24px;
    }

    .statics-section .static-part .content-part strong {
        font-size: 34px;
        line-height: 42px;
    }

    .statics-section .static-part .content-part span {
        font-size: 18px;
        line-height: 22px;
    }

    .custom-web-desgin .content-part h2 {
        font-size: 32px;
        line-height: 44px;
    }

    .custom-web-desgin .content-part p {
        font-size: 17px;
        line-height: 22px;
    }

    .home-gallery .col-lg-3:nth-child(1) .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(2) .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(3) .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(4) .home-gallery-box-text {
        bottom: -23%;
    }

    .home-gallery .col-lg-3:nth-child(1):hover .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(2):hover .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(3):hover .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(4):hover .home-gallery-box-text {
        bottom: 20px;
    }

    .home-gallery-box-text {
        left: 20px;
        right: 20px;
    }

    .home-gallery-box-text p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 20px;
    }

    .home-gallery-box-text h4 {
        font-size: 23px;
        line-height: 22px;
    }

    footer .box p {
        padding-right: 20px;
    }

    .smart-business-solutions-box {
        padding: 25px;
    }

    .smart-business-solutions.why-choose-greenspark-web .col-lg-3 {
        padding: 0 9px;
        margin-bottom: 18px;
    }

    /*    .investing-digital-future-left-img1 {
           width: 202px;
           height: 266px;
       } */
    .investing-digital-future-left-img2 {
        width: 240px;
        height: 298px;
        top: 115px;
        left: 209px;
    }

    .get-in-touch-right {
        padding: 30px 29px;
        width: 87%;
    }

    .get-in-touch-right .common-header h2 {
        font-size: 28px;
        line-height: 44px;
    }

}

@media (max-width:1280px) {
    .contact-us-banner-content h4 {
        width: 35%;
        vertical-align: bottom;
        position: absolute;
        bottom: 10px;
        right: 0;
    }

    .contact-us-banner-content h2 {
        font-size: 54px;
        line-height: 64px;
        width: 100%;
    }

    .investing-digital-future-right {
        padding: 0 50px;
    }

    .service-solutions-right {
        padding: 0 50px;
    }

    .banner-slider-contant h2 {
        line-height: 48px;
        font-size: 33px;
    }

    .banner-slider-contant a {
        margin-top: 18px;
    }

    .banner-content-area {
        padding: 0 31px;
    }

    .banner-slider-contant p {
        margin-top: 10px;
    }

    .statics-section .static-part {
        padding: 24px;
    }

    .statics-section .static-part .content-part strong {
        font-size: 34px;
        line-height: 42px;
    }

    .statics-section .static-part .content-part span {
        font-size: 18px;
        line-height: 22px;
    }

    .custom-web-desgin .content-part h2 {
        font-size: 32px;
        line-height: 44px;
    }

    .custom-web-desgin .content-part p {
        font-size: 17px;
        line-height: 22px;
    }

    .home-gallery .col-lg-3:nth-child(1) .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(2) .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(3) .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(4) .home-gallery-box-text {
        bottom: -23%;
    }

    .home-gallery .col-lg-3:nth-child(1):hover .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(2):hover .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(3):hover .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(4):hover .home-gallery-box-text {
        bottom: 20px;
    }

    .home-gallery-box-text {
        left: 20px;
        right: 20px;
    }

    .home-gallery-box-text p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 20px;
    }

    .home-gallery-box-text h4 {
        font-size: 23px;
        line-height: 22px;
    }

    footer .box p {
        padding-right: 20px;
    }

    .smart-business-solutions-box {
        padding: 25px;
    }

    .smart-business-solutions.why-choose-greenspark-web .col-lg-3 {
        padding: 0 9px;
        margin-bottom: 18px;
    }

    /*   .investing-digital-future-left-img1 {
          width: 202px;
          height: 266px;
      } */
    .investing-digital-future-left-img2 {
        width: 240px;
        height: 298px;
        top: 115px;
        left: 209px;
    }

    .get-in-touch-right {
        padding: 30px 29px;
        width: 87%;
    }

    .get-in-touch-right .common-header h2 {
        font-size: 28px;
        line-height: 44px;
    }

}

@media screen and (min-width:1000px) and (max-width:1024px) {
    .contact-us-banner-content h4 {
        width: 35%;
        vertical-align: bottom;
        position: absolute;
        bottom: 10px;
        right: 0;
    }

    .contact-us-banner-content h2 {
        font-size: 54px;
        line-height: 64px;
        width: 100%;
    }

    .investing-digital-future-right {
        padding: 0 50px;
    }

    .service-solutions-right {
        padding: 0 50px;
    }

    .banner-slider-contant h2 {
        line-height: 48px;
        font-size: 33px;
    }

    .banner-slider-contant a {
        margin-top: 18px;
    }

    .banner-content-area {
        padding: 0 31px;
    }

    .banner-slider-contant p {
        margin-top: 10px;
    }

    .statics-section .static-part {
        padding: 24px;
    }

    .statics-section .static-part .content-part strong {
        font-size: 34px;
        line-height: 42px;
    }

    .statics-section .static-part .content-part span {
        font-size: 18px;
        line-height: 22px;
    }

    .custom-web-desgin .content-part h2 {
        font-size: 32px;
        line-height: 44px;
    }

    .custom-web-desgin .content-part p {
        font-size: 17px;
        line-height: 22px;
    }

    .home-gallery .col-lg-3:nth-child(1) .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(2) .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(3) .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(4) .home-gallery-box-text {
        bottom: -45%;
    }

    .home-gallery .col-lg-3:nth-child(1):hover .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(2):hover .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(3):hover .home-gallery-box-text, .home-gallery .col-lg-3:nth-child(4):hover .home-gallery-box-text {
        bottom: 20px;
    }

    .home-gallery-box-text {
        left: 20px;
        right: 20px;
    }

    .home-gallery-box-text p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 20px;
    }

    .home-gallery-box-text h4 {
        font-size: 23px;
        line-height: 22px;
    }

    footer .box p {
        padding-right: 20px;
    }

    .smart-business-solutions-box {
        padding: 25px;
    }

    .smart-business-solutions.why-choose-greenspark-web .col-lg-3 {
        padding: 0 9px;
        margin-bottom: 18px;
    }

    /*   .investing-digital-future-left-img1 {
          width: 202px;
          height: 266px;
      } */
    .investing-digital-future-left-img2 {
        width: 240px;
        height: 298px;
        top: 115px;
        left: 209px;
    }

    .get-in-touch-right {
        padding: 30px 29px;
        width: 87%;
    }

    .get-in-touch-right .common-header h2 {
        font-size: 28px;
        line-height: 44px;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont .com-btn {
        opacity: 1
    }

    .portfolio-arrow {
        opacity: 1;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont {
        padding: 20px;
    }

    .home-our-projects-sec-box-cont p {
        display: none;
    }

}

/* 1024 */
@media(max-width:768px) {
    .logo-nav {
        width: 100%;
    }

    .banner-slider-contant h2 {
        font-size: 64px;
        line-height: 60px;
    }

    .banner-slider-contant a {
        padding: 8px 16px;
        margin: 30px auto 0;
        line-height: 35px;
    }

    .top-banner .slide-arrow {
        width: 40px;
        height: 40px;
    }

    footer {
        padding: 50px 0 30px 0;
    }

    .copyright-text {
        margin-top: 20px;
        flex-direction: column;
    }

    footer .container .row .box {
        margin-bottom: 30px;
    }

    .copyright-text p {
        margin-bottom: 20px;
    }

    .latest-posts {
        padding: 60px 0 40px;
    }

    .min-hig {
        min-height: 500px;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont .com-btn {
        opacity: 1
    }

    .portfolio-arrow {
        opacity: 1;
    }

}

@media only screen and (min-device-width:800px) and (max-device-width:820px) {
}

@media screen and (min-width:0) and (max-width:1023px) {
    .service-solutions-points-patch {
        padding: 90px 0;
    }

    .pad-tb-150 {
        padding: 100px 0 !important;
    }

    .contact-us-banner-content h4 {
        font-size: 18px;
        margin-left: 0;
        margin-top: 30px;
        line-height: 1.3em;
        width: 70%;
        position: relative;
    }

    .investing-digital-future-right {
        padding: 0 50px;
    }

    .service-solutions-right {
        padding: 0 50px;
    }

    .banner-img {
        width: 100%;
    }

    .slick-initialized .slick-slide {
        position: relative;
    }

    .banner-slider-contant .banner-content {
        position: absolute;
        width: 100%;
        padding: 0;
        background: rgb(0 0 0 / 50%);
        height: 60vh;
    }

    .top-banner {
        margin-top: 70px;
    }

    .investing-digital-future {
        padding: 30px 0;
    }

    .banner-slider-contant h2 {
        font-size: 32px;
        line-height: 30px;
    }

    .banner-slider-contant h2 br {
        display: none;
    }

    .banner-slider-contant p {
        font-size: 16px;
        line-height: 20px;
        margin-top: 15px;
    }

    .banner-slider-contant h6 {
    }

    .banner-content-area {
        padding: 0;
        width: 91%;
    }

    .banner-img img {
        height: 60vh;
    }

    /*     .banner-content-area {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translate(0%, -50%);
        z-index: 75;
        width: 90%;
        margin: auto;
    }
     */
    .banner-slider-contant a {
        padding: 0px 30px;
        margin: 20px auto 0;
        line-height: 43px;
        font-size: 16px;
    }

    .smart-business-solutions {
        padding: 60px 0 0px;
    }

    .common-header h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .smart-business-solutions-box {
        padding: 0 40px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .investing-digital-future-right {
        padding: 0 20px;
    }

    .service-solutions-right {
        padding: 0 20px;
    }

    /*  .investing-digital-future-left-img1 {
         left: 0;
     } */

    /*   .min-hig {
          min-height: 360px;
      }
     */
    .investing-digital-future-left-img2 {
        height: auto;
        top: 52%;
        left: 15%;
        width: 250px;
    }

    .service-solutions-img2 {
        height: auto;
        top: 22%;
        left: 25%;
        width: 230px;
    }

    .home-gallery {
        padding: 60px 0;
    }

    .pad-lr-100 {
        padding: 0 20px;
    }

    .accordion .wrapper .toggle span {
        width: 86%;
        display: inline-block;
    }

    .shaping-the-future-left {
        margin-left: 0;
    }

    .shaping-the-future-bg-cont-right {
        display: none;
    }

    .shaping-the-future-bg-img img {
        transition: all 0.3s linear;
        width: 100%;
        min-height: 500px;
        object-fit: cover;
        display: block;
    }

    .shaping-the-future-slider-cont {
        padding: 0;
    }

    .shaping-the-future-slider-box h4 {
        font-size: 38px;
        line-height: 48px;
    }

    .shaping-the-future-slider-box p {
        padding: 0;
    }

    .shaping-the-future .slide-arrow {
        bottom: -20px;
    }

    .hear-trusted-bg {
        padding: 30px 0;
    }

    .hear-trusted-slider-box p {
        padding: 0;
        margin-left: 0px;
        width: 100%;
        margin-top: 30px;
    }

    .hear-trusted-slider-cont {
        padding: 0;
        flex-direction: column;
    }

    .hear-trusted-clients .slide-arrow.next-arrow {
        right: 30%;
    }

    .hear-trusted-clients .slide-arrow.prev-arrow {
        left: 30%;
    }

    .hear-trusted-clients .slide-arrow {
        bottom: -30px;
    }

    .latest-posts-box-img img {
        width: 100%;
        min-height: 400px;
        object-fit: cover;
    }

    .latest-posts-box-text {
        left: 10px;
        width: 92%;
    }

    .latest-posts-box-text h2 {
        font-size: 26px;
        line-height: 30px;
    }

    .project-in-mind-bg img {
        width: 100%;
        min-height: 280px;
        object-fit: cover;
    }

    .project-in-mind-bg h1 {
        font-size: 40px;
        padding: 0 10px;
        line-height: 45px;
    }

    .project-in-mind {
        padding: 40px 0 0;
    }

    .pad-t-0 {
        padding-top: 0;
    }

    .project-in-mind-bg a {
        margin-top: 10px;
    }

    footer {
        position: relative;
        z-index: 1;
    }

    .home-gallery-box {
        margin: 0 20px 10px;
        border-radius: 10px;
    }

    .contact-us-banner-content h2 {
        font-size: 36px;
        line-height: 40px;
    }

    .contact-us-banner img {
        min-height: 440px;
    }

    .contact-us-banner {
        min-height: 440px;
    }

    .contact-us-cont {
        min-height: 440px;
    }

    .contact-us-banner-content {
        left: 20px;
    }

    .get-in-touch-left {
        position: relative;
    }

    .get-in-touch-right {
        padding: 0px 20px 30px;
    }

    .find-us-left {
        padding: 30px;
        margin-bottom: 30px;
    }

    .find-us-right iframe {
        height: 400px;
    }

    .wid-50 {
        width: 100%;
    }

    .leading-team-box {
        margin: 0 0px 50px;
    }

    .leading-team {
        padding: 70px 0 50px;
    }

}

@media screen and (min-width:0) and (max-width:1023px) {
    .banner-content-area {
        height: auto;
        display: block;
    }

    .banner-slider-contant h2 br {
        display: none;
    }

    .header {
        padding: 0 6px;
    }

    .banner-slider-contant h2 {
        font-size: 30px;
        line-height: 39px;
        word-break: break-word;
    }

    .banner-img {
        padding-bottom: 60px;
    }

    .banner-img img {
        height: auto;
    }

    .statics-section .col-lg-3 {
        width: 50%;
    }

    .statics-section .static-part .icon svg {
        width: 39px;
        height: 39px;
    }

    .statics-section .static-part .icon {
        margin-bottom: 14px;
    }

    .logo-nav {
        margin: 0;
    }

    .statics-section .static-part .content-part span {
        font-size: 16px;
        line-height: 22px;
        word-break: break-word;
    }

    .statics-section .col-lg-3 {
        border: 1px solid #e4dcdc;
    }

    .custom-web-desgin {
        padding: 60px 15px;
    }

    .custom-web-desgin .col-lg-4 {
        padding: 0;
        display: block;
        align-items: end;
    }

    .custom-web-desgin .content-part {
        padding: 0 0 37px;
    }

    .custom-web-desgin .content-part.right-side-part {
        text-align: left;
        margin-top: 40px;
        padding-bottom: 0;
    }

    .custom-web-desgin .content-part h2 {
        font-size: 26px;
        line-height: 40px;
    }

    .custom-web-desgin .content-part p {
        font-size: 16px;
        line-height: 22px;
        margin-top: 11px;
    }

    .home-gallery {
        padding: 60px 15px;
    }

    .home-gallery .common-header p br {
        display: none;
    }

    footer .footer-logo img {
        width: 65%;
    }

    footer {
        padding: 60px 15px 0;
    }

    footer .box p {
        padding-right: 0;
    }

    .smart-business-solutions.why-choose-greenspark-web {
        padding: 60px 15px;
    }

    .smart-business-solutions-box {
        padding: 25px;
        margin-top: 0;
        margin-bottom: 0;
    }

    .smart-business-solutions-box h4 {
        margin-bottom: 12px;
    }

    .investing-digital-future {
        padding: 60px 15px;
    }

    /*    .min-hig {
           min-height: 329px;
       }

       .investing-digital-future-left-img1 {
           width: 160px;
           height: 194px;
       } */
    .investing-digital-future-left-img2 {
        height: auto;
        top: 17%;
        left: 33%;
        width: 210px;
    }

    .investing-digital-future-right {
        padding: 0;
        margin-top: 34px;
    }

    .investing-digital-future-right .common-header {
        margin-bottom: 15px !important;
    }

    .investing-digital-future-right p {
        margin-top: 0;
    }

    .seo-package-prices {
        padding: 60px 15px;
    }

    .seo-package-prices .col-lg-4 {
        padding: 0;
        margin-bottom: 15px;
    }

    .seo-package-prices .col-lg-4:last-child {
        margin-bottom: 0;
    }

    .seo-package-prices .man-price-part .center-part {
        padding: 25px;
    }

    .seo-package-prices .man-price-part .center-part h4 {
        font-size: 34px;
        margin-bottom: 11px;
    }

    .header .menu>.menu-item.active>a {
        border-bottom-color: #fff;
    }

    .main-portfolio-section {
        padding: 60px 15px 60px;
    }

    .main-portfolio-section .common-header h2 {
        margin-bottom: 20px;
    }

    .main-portfolio-section .common-header p br {
        display: none;
    }

    .main-portfolio-section.main-portfolio-details-page .col-lg-6 {
        padding: 0;
        margin-bottom: 40px;
    }

    .main-portfolio-section.main-portfolio-details-page .col-lg-6:last-child {
        margin-bottom: 0;
    }

    .main-portfolio-section.main-portfolio-details-page .right-side-part {
        padding-left: 0;
    }

    .main-portfolio-section.main-portfolio-details-page .main-slider-website {
        top: 9px;
        width: 93%;
    }

    .main-portfolio-section.main-portfolio-details-page .right-side-part .common-header h2 {
        margin-bottom: 11px;
    }

    .main-portfolio-section.main-portfolio-details-page .main-slider-website .slick-dots {
        margin-top: 5px;
    }

    .main-portfolio-section.main-portfolio-details-page .right-side-part .digital-service-tag h3 {
        margin-bottom: 20px;
    }

    .contact-us-banner, .contact-us-banner img, .contact-us-cont {
        min-height: 200px;
    }

    .get-in-touch {
        padding: 60px 15px;
    }

    .get-in-touch-left p br {
        display: none;
    }

    .get-in-touch-right {
        padding: 30px;
        margin-top: 40px;
    }

    .get-in-touch-right .common-header h2 {
        font-size: 28px;
        line-height: 33px;
    }

    .banner-slider-contant .common-button-part .button1 {
        margin-top: 0;
    }

    .portfolio-listing-home .portfolio-listing .item.slick-current .center-img {
        margin: 0;
    }

    .portfolio-listing-home .portfolio-listing .item.slick-current .center-img img {
        width: 80%;
        margin: 15px auto;
    }

    .custom-web-desgin .col-lg-6 {
        padding: 0;
    }

    .custom-web-desgin .content-part.right-side-part {
        padding-left: 0;
        margin-top: 30px;
    }

    .custom-web-desgin .col-lg-6 .content-part {
        padding-right: 0;
        padding-bottom: 0;
    }

    .main-portfolio-section .col-lg-4 {
        padding: 0;
        margin-bottom: 20px;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont {
        padding: 18px;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont .com-btn {
        opacity: 1
    }

    .portfolio-arrow {
        opacity: 1
    }

    .right-header-part {
        margin-left: 15px;
        margin-top: 20px;
    }

    .home-our-projects-sec-box-cont p {
        display: none;
    }

    .privacy-policy-details {
        padding: 60px 15px;
    }

    .privacy-policy-details p, .privacy-policy-details ul li {
        font-size: 16px;
        line-height: 25px;
    }

    .privacy-policy-details .heading3 {
        font-size: 25px;
    }

}

@media only screen and (min-device-width:1024px) and (max-device-width:1366px) and (-webkit-min-device-pixel-ratio:2) and (orientation:portrait) {
    .smart-business-solutions.why-choose-greenspark-web .col-lg-3 {
        padding: 0 8px;
        width: 33.33%;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont .com-btn {
        opacity: 1
    }

    .portfolio-arrow {
        opacity: 1;
    }

    .home-our-projects-sec-box-cont p {
        display: none;
    }

}

@media only screen and (min-device-width:1024px) and (max-device-width:1023px) {
    .portfolio-page-sec .home-our-projects-sec-box-cont .com-btn {
        opacity: 1
    }

    .portfolio-arrow {
        opacity: 1;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont {
        padding: 20px;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont .com-btn {
        opacity: 1
    }

    .portfolio-arrow {
        opacity: 1;
    }

    .investing-digital-future-left-img1 {
        padding-right: 30px;
    }

    .home-our-projects-sec-box-cont p {
        display: none;
    }

}

@media only screen and (min-device-width:800px) and (max-device-width:820px) {
    .smart-business-solutions.why-choose-greenspark-web .col-lg-3 {
        width: 49.33%;
    }

    .seo-package-prices .col-lg-4 {
        padding: 0 8px;
        width: 50%;
    }

    .main-portfolio-section .col-lg-4 {
        padding: 0 10px;
        margin-bottom: 20px;
        width: 50%;
    }

    .get-in-touch-right {
        margin-top: 0;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont {
        padding: 20px;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont .com-btn {
        opacity: 1
    }

    .portfolio-arrow {
        opacity: 1;
    }

    .investing-digital-future-left-img1 {
        padding-right: 30px;
    }

    .home-our-projects-sec-box-cont p {
        display: none;
    }

}

@media only screen and (min-device-width:768px) and (max-device-width:991px) {
    .smart-business-solutions.why-choose-greenspark-web .col-lg-3 {
        width: 49.33%;
    }

    .seo-package-prices .col-lg-4 {
        padding: 0 8px;
        width: 50%;
    }

    .main-portfolio-section .col-lg-4 {
        padding: 0 10px;
        margin-bottom: 20px;
        width: 50%;
    }

    .get-in-touch-right {
        margin-top: 0;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont {
        padding: 20px;
    }

    .portfolio-page-sec .home-our-projects-sec-box-cont .com-btn {
        opacity: 1
    }

    .portfolio-arrow {
        opacity: 1;
    }

    .investing-digital-future-left-img1 {
        padding-right: 30px;
    }

    .home-our-projects-sec-box-cont p {
        display: none;
    }

}
