                @import url(../css/fancybox.css);
                @import url(../css/default.css);
                @import url(../css/owl.theme.default.css);
                @import url(../css/owl.carousel.css);
                @import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Roboto+Slab:wght@300;500;700;900&display=swap);
                /* <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700;800;900&family=Roboto+Slab:wght@300;500;700;900&display=swap" rel="stylesheet"> */
                
                * {
                    outline: 0;
                }
                
                body {
                    font-family: 'Montserrat', sans-serif;
                    font-weight: 400;
                    font-style: normal;
                    font-size: 19px;
                    color: #2c2c2c;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                
                .clr {
                    width: 100%;
                    float: left;
                }
                
                .img {
                    width: 100%;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                
                a,
                button {
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                    color: #000000;
                    outline: medium none;
                    cursor: pointer;
                    outline: 0;
                }
                
                .btn:focus,
                button:focus,
                .form-control:focus {
                    text-decoration: none;
                    outline: none;
                    box-shadow: none;
                }
                
                .btn:hover,
                a:hover,
                button {
                    color: #fdb811;
                    text-decoration: none;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                
                h1,
                h2,
                h3,
                h4,
                h5,
                h6 {
                    color: #000000;
                    font-weight: 400;
                    text-transform: normal;
                }
                
                ul {
                    margin: 0px;
                    padding: 0px;
                }
                
                li {
                    list-style: none;
                }
                
                header,
                footer,
                section {
                    width: 100%;
                    float: left;
                }
                
                hr {
                    border-bottom: 1px solid #fdb811;
                    border-top: 0 none;
                    margin: 30px 0;
                    padding: 0;
                }
                
                p {
                    font-size: 18px;
                    line-height: 26px;
                    color: #2c2c2c;
                    margin-bottom: 10px;
                }
                
                .title {
                    font-size: 42px;
                    line-height: 52px;
                    color: #0066a6;
                    font-weight: 700;
                    margin-bottom: 20px;
                    font-family: 'Roboto Slab', serif;
                }
                
                .title span {
                    color: #fdb811;
                }
                
                .sub-title {
                    font-size: 24px;
                    color: #222222;
                    line-height: 32px;
                    font-weight: 600;
                    margin-bottom: 15px;
                }
                
                .div-title {
                    font-size: 18px;
                    color: #1e1e1e;
                    font-weight: 600;
                    margin-bottom: 15px;
                }
                
                .read-more {
                    display: inline-block;
                }
                
                .read-more-btn {
                    font-size: 14px;
                    color: #000;
                    font-weight: 700;
                    background: #fdb811;
                    padding: 20px 45px;
                    border-radius: 50px;
                    display: inline-block;
                }
                
                .read-more-btn:hover {
                    color: #ffffff;
                    background: #005890;
                }
                
                .read-more-btn-2 {
                    background: #005890;
                    color: #fff;
                    position: relative;
                    padding-left: 70px;
                }
                
                .read-more-btn-2:hover {
                    color: #ffffff;
                    background: #fdb811;
                }
                
                .read-more-btn-2 img {
                    background: #0066a6;
                    border-radius: 50%;
                    width: 61px;
                    height: 61px;
                    position: absolute;
                    left: 0;
                    top: 0;
                    padding: 10px;
                    box-shadow: 5px 0px 6px #00000059;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                /* .read-more-btn-2:hover img {
  background: #fdb811;
} */
                
                .shake:hover {
                    animation: shake 1500ms 3 linear;
                    -moz-animation: shake 1500ms 3 linear;
                    -webkit-animation: shake 1500ms 3 linear;
                    -o-animation: shake 1500ms 3 linear;
                }
                
                @keyframes shake {
                    0% {
                        transform: translate(0px, 3px);
                    }
                    50% {
                        transform: translate(0px, -3px);
                    }
                    100% {
                        transform: translate(0, 0);
                    }
                }
                
                @-moz-keyframes shake {
                    0% {
                        transform: translate(0px, 3px);
                    }
                    50% {
                        transform: translate(0px, -3px);
                    }
                    100% {
                        transform: translate(0, 0);
                    }
                }
                
                @-webkit-keyframes shake {
                    0% {
                        transform: translate(0px, 3px);
                    }
                    50% {
                        transform: translate(0px, -3px);
                    }
                    100% {
                        transform: translate(0, 0);
                    }
                }
                
                @-ms-keyframes shake {
                    0% {
                        transform: translate(0px, 3px);
                    }
                    50% {
                        transform: translate(0px, -3px);
                    }
                    100% {
                        transform: translate(0, 0);
                    }
                }
                
                @-o-keyframes shake {
                    0% {
                        transform: translate(0px, 3px);
                    }
                    50% {
                        transform: translate(0px, -3px);
                    }
                    100% {
                        transform: translate(0, 0);
                    }
                }
                
                .pulse {
                    animation: pulse 1s infinite ease-in-out alternate;
                }
                
                @keyframes pulse {
                    from {
                        transform: scale(0.8);
                    }
                    to {
                        transform: scale(1.2);
                    }
                }
                
                .body-bg {
                    background-image: url(../image/bg/body-bg.jpg);
                    background-repeat: repeat-y;
                    background-attachment: fixed;
                    background-position: center;
                    background-size: cover;
                }
                /* g_header */
                
                .sticky-header.g_header {
                    position: fixed;
                    top: -70px;
                    left: 0;
                    right: 0;
                    z-index: 999;
                    -webkit-transition: all .6s;
                    -o-transition: all .6s;
                    transition: all .6s;
                }
                
                .sticky-header.g_header .main-nav {
                    border-bottom: none;
                    padding-top: 10px;
                    padding-bottom: 10px;
                    margin: 0 auto;
                    text-align: center;
                    float: unset;
                }
                
                .sticky-header.g_header .main-nav .middle-section .logo {
                    width: 50px;
                }
                
                @keyframes smoothScroll {
                    0% {
                        transition: all 0.6s ease-in-out;
                    }
                    100% {
                        transition: all 0.6s ease-in-out;
                    }
                }
                
                .sticky-header.g_shrink {
                    top: 0px;
                    z-index: 999;
                    background-color: #0066a6ea;
                    animation: smoothScroll 1s step-start;
                    -webkit-transition: all .6s;
                    -o-transition: all .6s;
                    transition: all .6s;
                }
                
                .sticky-header .nav-section ul li a {
                    color: #fff;
                }
                /* g_header */
                /* main header */
                
                .top-header {
                    padding: 6px 0;
                }
                
                .top-left {
                    width: 100%;
                    float: left;
                }
                
                .top-contact li {
                    display: inline-block;
                    margin-right: 15px;
                }
                
                .top-contact li:last-child {
                    margin-right: 0px;
                }
                
                .top-contact li a {
                    font-size: 16px;
                    color: #0066a6;
                }
                
                .top-contact li a .svg {
                    width: 20px;
                    height: 20px;
                    object-fit: contain;
                    margin-right: 8px;
                }
                
                .top-contact li .brand {
                    width: 100%;
                }
                
                .main-nav {
                    width: 100%;
                    float: left;
                    border-bottom: dashed 2px #838383;
                    padding-bottom: 20px;
                }
                
                .width-section {
                    width: 38%;
                    float: left;
                    padding-right: 15px;
                    padding-left: 15px;
                }
                
                .width-section-2 {
                    width: 24%;
                    float: left;
                    padding-right: 15px;
                    padding-left: 15px;
                }
                
                .nav-section ul li {
                    display: inline-block;
                    /* margin-right: 25px; */
                    position: relative;
                }
                
                .nav-section ul li a {
                    font-size: 17px;
                    color: #0066a6;
                    font-weight: 600;
                    text-transform: uppercase;
                }
                
                .nav-section ul li a span {
                    display: block;
                    text-align: center;
                    margin: 0 auto;
                    background: #fff;
                    border-radius: 50%;
                    height: 60px;
                    width: 60px;
                    line-height: 60px;
                    margin-bottom: 10px;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                
                .nav-section ul li:hover a span {
                    background: #fdb811;
                }
                
                .nav-section ul li:hover a {
                    color: #fdb811;
                }
                
                .nav-section ul li a span img {
                    width: 30px;
                    position: absolute;
                    left: 50%;
                    top: 30%;
                    transform: translate(-50%, -50%);
                }
                
                .nav-section ul li a span .normal-icon {
                    opacity: 1;
                }
                
                .nav-section ul li a span .hover-icon {
                    opacity: 0;
                }
                
                .nav-section ul li:hover a span .hover-icon {
                    opacity: 1;
                }
                
                .nav-section ul li:hover a span .normal-icon {
                    opacity: 0;
                }
                
                .nav-section ul li.active a span {
                    background: #fdb811;
                }
                
                .nav-section ul li.active a {
                    color: #fdb811;
                }
                
                .nav-section ul li.active a span .hover-icon {
                    opacity: 1;
                }
                
                .nav-section ul li.active a span .normal-icon {
                    opacity: 0;
                }
                
                .middle-section {
                    text-align: center;
                }
                
                .middle-section .logo {
                    width: 100%;
                }
                
                .middle-section .home-icon {
                    width: 30px;
                    margin-top: 20px;
                    opacity: 0;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                
                .middle-section:hover .home-icon {
                    opacity: 1;
                }
                /* DropDown Menu  */
                
                .nav-section ul li .dropdown-menu {
                    position: absolute;
                    top: 100%;
                    min-width: 200px;
                    padding: 0;
                    margin: 0;
                    background-color: #fff;
                    border: none;
                    border-radius: 0;
                }
                
                .nav-section ul li .dropdown-menu ul {
                    width: 100%;
                    float: left;
                }
                
                .nav-section ul li .dropdown-menu ul li {
                    width: 100%;
                    float: left;
                    position: relative;
                }
                
                .nav-section ul li .dropdown-menu ul li a {
                    font-size: 14px;
                    color: #0066a6;
                    font-weight: 600;
                    text-transform: uppercase;
                    padding: 8px 8px;
                    width: 100%;
                    float: left;
                    background: #ffffff;
                }
                
                .nav-section ul li .dropdown-menu ul li:hover a {
                    color: #000000;
                    background: #fdb811;
                }
                
                .nav-section ul li a .caret {
                    display: inline-block;
                    width: 0;
                    height: 0;
                    margin-left: 2px;
                    vertical-align: middle;
                    border-top: 4px solid;
                    border-right: 4px solid #0000;
                    border-left: 4px solid #0000;
                }
                /* DropDown Menu  */
                /* main header */
                /* about us */
                
                .about-left {
                    padding-right: 40px;
                    text-align: center;
                }
                
                .svg_wave_bg {
                    position: relative;
                    bottom: 0px;
                    right: 0px;
                    left: 0px;
                    height: 100%;
                    width: 100%;
                    z-index: -1;
                }
                
                .svg_wave_bg img {
                    transform: none !important;
                }
                
                .svg_wave_bg svg {
                    position: absolute;
                    left: 0;
                    bottom: 0px;
                    width: 100%;
                    -webkit-transform-origin: bottom center;
                    -ms-transform-origin: bottom center;
                    transform-origin: bottom center;
                }
                
                .st0 {
                    fill: #fdb811;
                }
                
                .st1 {
                    fill: #0066a6;
                    enable-background: new;
                }
                
                .st2 {
                    fill: #fdb811;
                    enable-background: new;
                }
                
                .st3 {
                    fill: #f3f3f3;
                    /* fill: url(#../image/bg/body-bg.jpg);
  enable-background: new;
  background-size: contain; */
                }
                
                .st4 {
                    fill: #BBE0F6;
                }
                
                .social-icon-header {
                    position: fixed;
                    right: 0;
                    top: 50%;
                    transform: translateY(-50%);
                    z-index: 99;
                }
                
                /* .fl-fl {
                    padding: 5px;
                    width: 150px;
                    height: 60px;
                    position: fixed;
                    right: -90px;
                    border-radius: 50px 0px 0px 50px;
                    z-index: 1000;
                    background: transparent;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                } */
                
                /* .fl-fl:hover {
                    background: #005890;
                    right: 0;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                } */
                
                .social-icon-header a img {
                    background: #0066a6;
                    border-radius: 50%;
                    width: 60px;
                    height: 60px;
                    position: absolute;
                    left: 0px;
                    top: 0px;
                    padding: 10px;
                    box-shadow: #00000059 -3px 0px 8px;
                }
                
                .social-icon-header a span {
                    width: 100%;
                    height: 60px;
                    line-height: 48px;
                    padding-left: 72px;
                    font-size: 25px;
                    color: #fff;
                }
                
                @-webkit-keyframes scroll-inner {
                    from {
                        margin-top: 15%;
                    }
                    to {
                        margin-top: 50%;
                    }
                }
                
                @keyframes scroll-inner {
                    from {
                        margin-top: 15%;
                    }
                    to {
                        margin-top: 50%;
                    }
                }
                /* about us */
                /* how-we-work-section */
                
                .how-we-work-section {
                    padding-top: 100px;
                }
                
                .work-box {
                    width: 100%;
                    float: left;
                    margin-bottom: 25px;
                }
                
                .work-box .number {
                    float: left;
                    width: 60px;
                    height: 60px;
                    line-height: 60px;
                    text-align: center;
                    background: #fdb811;
                    border-radius: 50%;
                    font-size: 26px;
                    font-weight: 600;
                    color: #fff;
                }
                
                .work-box .process-text {
                    float: left;
                    width: 85%;
                    padding-left: 20px;
                }
                /* how-we-work-section */
                /* project-section */
                
                .section-title .title {
                    position: relative;
                }
                
                .section-title .line::before {
                    position: absolute;
                    content: "";
                    top: 50%;
                    left: 0;
                    width: 25%;
                    height: 2px;
                    border-bottom: dashed 2px #838383;
                }
                
                .section-title .line::after {
                    position: absolute;
                    content: "";
                    top: 50%;
                    right: 0;
                    width: 25%;
                    height: 2px;
                    border-bottom: dashed 2px #838383;
                }
                
                .project-carousel .project-img img {
                    width: 100%;
                    border-radius: 20px 0 0 20px;
                }
                
                .project-carousel .project-img {
                    height: 100%;
                }
                
                .project-carousel .project-img img {
                    height: 100%;
                }
                
                .project-text {
                    width: 100%;
                    height: 100%;
                    float: left;
                    background: #fff;
                    padding: 30px 50px;
                    flex-flow: column;
                }
                
                .project-name {
                    font-size: 30px;
                    color: #000;
                    line-height: 44px;
                    font-weight: 600;
                    margin-bottom: 15px;
                }
                
                .project-carousel.owl-theme .owl-nav.disabled+.owl-dots {
                    margin-top: 40px;
                }
                
                .project-carousel.owl-theme .owl-dots .owl-dot span {
                    width: 15px;
                    height: 15px;
                    margin: 0px 5px;
                    border-radius: 50%;
                    background: #c2c3be;
                }
                
                .project-carousel.owl-theme .owl-dots .owl-dot.active span,
                .project-carousel.owl-theme .owl-dots .owl-dot:hover span {
                    background: #808175;
                }
                /* project-section */
                /* product-service */
                
                .services-box {
                    width: 100%;
                    float: left;
                    background: #ffffff;
                    padding: 10px;
                    border-radius: 10px;
                    margin-bottom: 30px;
                    box-shadow: 0px 0px 30px #afc5eb54;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                
                .services-box:hover {
                    transform: scale(1.01);
                    -webkit-transform: scale(1.01);
                    -moz-transform: scale(1.01);
                    -o-transform: scale(1.01);
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                
                .services-box:hover .div-title {
                    color: #f8a318;
                }
                
                .services-box img {
                    border-radius: 10px;
                }
                
                .services-box .service-icon {
                    width: 35px;
                }
                
                .services-box p {
                    font-size: 15px;
                    line-height: 18px;
                }
                /* product-service */
                /* client-section */
                
                .client-carousel .client-img img {
                    width: 100%;
                }
                
                .client-carousel.owl-theme .owl-nav.disabled+.owl-dots {
                    margin-top: 40px;
                }
                
                .client-carousel.owl-theme .owl-dots .owl-dot span {
                    width: 15px;
                    height: 15px;
                    margin: 0px 5px;
                    border-radius: 50%;
                    background: #c2c3be;
                }
                
                .client-carousel.owl-theme .owl-dots .owl-dot.active span,
                .client-carousel.owl-theme .owl-dots .owl-dot:hover span {
                    background: #808175;
                }
                
                .client-img ul {
                    width: 100%;
                    float: left;
                }
                
                .client-img ul li {
                    display: inline-block;
                    width: 16.3%;
                    padding: 3px 3px 0 3px;
                }
                /* client-section */
                /* happy-client-section */
                
                .happy-client-box {
                    width: 100%;
                    text-align: center;
                }
                
                .happy-client-box img {
                    margin-bottom: 15px;
                    width: 70px;
                }
                
                .happy-client-box .title {
                    color: #fdb811;
                    margin-bottom: 15px;
                }
                
                .happy-client-box h4 {
                    font-size: 26px;
                    color: #000;
                    font-weight: 500;
                    font-family: 'Roboto Slab', serif;
                    margin-bottom: 0;
                }
                /* happy-client-section */
                /* partners-section */
                
                .partners-carousel .client-img img {
                    width: 160px;
                    height: 180px;
                    object-fit: contain;
                }
                
                .partners-carousel.owl-theme .owl-nav.disabled+.owl-dots {
                    margin-top: 40px;
                }
                
                .partners-carousel.owl-theme .owl-dots .owl-dot span {
                    width: 15px;
                    height: 15px;
                    margin: 0px 5px;
                    border-radius: 50%;
                    background: #c2c3be;
                }
                
                .partners-carousel.owl-theme .owl-dots .owl-dot.active span,
                .partners-carousel.owl-theme .owl-dots .owl-dot:hover span {
                    background: #808175;
                }
                /* partners-section */
                /* client-testimonial-section */
                
                .testimonial-carousel {
                    width: 83%;
                    margin: 0 auto;
                }
                
                .slider2.owl-carousel .carousel-caption-box {
                    position: relative;
                    text-align: center;
                }
                
                .slider2.owl-carousel .carousel-caption-box .testimonial-arrow {
                    width: 100%;
                    height: 30px;
                    object-fit: contain;
                    opacity: 0;
                    margin-top: 50px;
                    margin-bottom: 10px;
                }
                
                .slider2.owl-carousel .owl-item.active.center .carousel-caption-box .testimonial-arrow {
                    opacity: 1;
                }
                
                .slider2.owl-carousel .carousel-caption-box h4 {
                    font-size: 24px;
                    color: #999999;
                    font-weight: 700;
                    margin-bottom: 0px;
                    font-style: italic;
                }
                
                .slider2.owl-carousel .carousel-caption-box h5 {
                    font-size: 14px;
                    color: #999999;
                    font-weight: 500;
                    margin-bottom: 0;
                    font-style: italic;
                }
                
                .testimonial-carousel .slider p {
                    font-size: 24px;
                    line-height: 28px;
                    color: #999999;
                    font-style: italic;
                    text-align: center;
                }
                
                .slider2.owl-carousel .owl-item.active.center .carousel-caption-box h4 {
                    color: #fdb811;
                }
                
                .slider2.owl-carousel .owl-item.active.center .carousel-caption-box h5 {
                    color: #fdb811;
                }
                /* client-testimonial-section */
                /* main-footer */
                
                .main-footer {
                    background: #0066a6;
                }
                
                .top-footer {
                    width: 85%;
                    float: left;
                    padding: 80px 0;
                    padding-left: 100px;
                }
                
                .top-footer .title {
                    color: #ffffff;
                }
                
                .middle-footer {
                    width: 100%;
                    float: left;
                    border-top: solid 2px #88b8d5;
                    border-bottom: solid 2px #88b8d5;
                }
                
                .footer-nav {
                    width: 100%;
                    float: left;
                    padding: 40px 0 40px 80px;
                }
                
                .footer-nav ul {
                    width: 50%;
                    float: left;
                }
                
                .footer-nav ul li {
                    margin-bottom: 20px;
                }
                
                .footer-nav ul li a {
                    font-size: 19px;
                    line-height: 26px;
                    color: #f7f7f7;
                }
                
                .footer-contact {
                    width: 100%;
                    float: left;
                    padding: 40px 0 15px;
                    padding-left: 0px;
                    border-left: solid 2px #88b8d5;
                    padding-left: 50px;
                }
                
                .footer-contact ul {
                    width: 100%;
                    float: left;
                }
                
                .footer-contact ul li {
                    margin-bottom: 25px;
                    font-size: 19px;
                    line-height: 26px;
                    color: #f7f7f7;
                    position: relative;
                    padding-left: 50px;
                }
                
                .footer-nav ul li:hover a {
                    color: #fdb811;
                }
                
                .footer-contact ul li .footer-icon {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 18px;
                }
                
                .footer-contact ul li a {
                    font-size: 19px;
                    line-height: 26px;
                    color: #f7f7f7;
                }
                
                .footer-contact ul li:hover a {
                    color: #fdb811;
                }
                
                .footer-contact ul li a .social-icon {
                    width: 40px;
                    margin-right: 20px;
                }
                
                .copyright {
                    width: 100%;
                    float: left;
                    padding: 50px 0;
                }
                
                .copyright p {
                    font-size: 18px;
                    line-height: normal;
                    color: #fff;
                    margin-bottom: 0;
                    font-weight: 400;
                }
                /* main-footer */
                /* particles */
                
                canvas {
                    display: block;
                    vertical-align: bottom;
                }
                /* ---- particles.js container ---- */
                
                .particles.g_header .particles-css {
                    position: fixed;
                    width: 100%;
                    height: 100%;
                    top: 200px;
                    background-image: url("");
                    background-repeat: no-repeat;
                    background-size: cover;
                    background-position: 50% 50%;
                    z-index: -1;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                
                .particles.g_shrink .particles-css {
                    top: 60px;
                    -webkit-transition: all 0.5s ease-out 0s;
                    -moz-transition: all 0.5s ease-out 0s;
                    -ms-transition: all 0.5s ease-out 0s;
                    -o-transition: all 0.5s ease-out 0s;
                    transition: all 0.5s ease-out 0s;
                }
                /* ---- stats.js ---- */
                
                .count-particles {
                    position: absolute;
                    top: 0px;
                    left: 0;
                    width: 100px;
                    color: #fff;
                    font-size: .8em;
                    text-align: left;
                    text-indent: 4px;
                    line-height: 14px;
                    padding-bottom: 2px;
                    font-family: Helvetica, Arial, sans-serif;
                    font-weight: bold;
                }
                
                .js-count-particles {
                    font-size: 1.1em;
                }
                
                #stats,
                .count-particles {
                    user-select: none;
                    -webkit-user-select: none;
                    margin-top: 5px;
                    margin-left: 5px;
                }
                
                #stats {
                    border-radius: 3px 3px 0 0;
                    overflow: hidden;
                }
                
                .count-particles {
                    border-radius: 0 0 3px 3px;
                }
                
                .page-bg-1 {
                    position: absolute;
                    left: 0;
                    top: -280px;
                    width: 230px;
                    height: auto;
                    z-index: 1;
                }
                
                .page-bg-2 {
                    position: absolute;
                    right: 0;
                    bottom: -280px;
                    width: 230px;
                    height: auto;
                }
                
                .testimonial-bg-1 {
                    position: absolute;
                    right: 200px;
                    top: -100px;
                    width: 130px;
                    height: auto;
                }
                
                .testimonial-bg-2 {
                    position: absolute;
                    right: 60px;
                    top: 20%;
                    width: 200px;
                    height: auto;
                }
                
                .testimonial-bg-3 {
                    position: absolute;
                    left: 240px;
                    top: 30%;
                    width: 100px;
                    height: auto;
                }
                
                .testimonial-bg-4 {
                    position: absolute;
                    left: -120px;
                    bottom: -30px;
                    z-index: -1;
                    width: 450px;
                    height: auto;
                }
                
                /* .footer-bg {
                    position: absolute;
                    left: 100px;
                    bottom: 0px;
                    width: 400px;
                    height: auto;
                }
                 */
                /* .footer-bg-2 {
                    position: absolute;
                    right: 80px;
                    top: -150px;
                    width: 750px;
                    height: auto;
                } */
                
                .page-bg-img {
                    width: 100%;
                    height: 100%;
                }
                /* particles */
                
                .mobile-nav {
                    display: none;
                }
                
                .sidenav {
                    display: none;
                }
                /* breadcrumb page css */
                
                .breadcrumb {
                    padding: 0;
                    margin-bottom: 0;
                    background-color: transparent;
                    border-radius: 0;
                    -webkit-box-pack: center;
                    -moz-box-pack: center;
                    -ms-flex-pack: center;
                    -webkit-justify-content: center;
                    justify-content: center;
                }
                
                .breadcrumb .breadcrumb-item.active {
                    color: #fdb811;
                }
                
                .breadcrumb .breadcrumb-item a {
                    color: #0066a6;
                }
                
                .breadcrumb .breadcrumb-item {
                    font-size: 14px;
                    color: #0066a6;
                    font-weight: 600;
                    text-transform: uppercase;
                }
                /* breadcrumb page css */
                /* certificates */
                
                .masonry {
                    -webkit-column-gap: 1em;
                    -moz-column-gap: 1em;
                    column-gap: 1em;
                    -moz-column-gap: 1.5em;
                    -webkit-column-gap: 1.5em;
                    column-gap: 1.5em;
                }
                
                .certificates-box .img {
                    max-width: 100%;
                }
                
                .masonry .item {
                    display: inline-block;
                    background: #ffffff;
                    padding: 15px;
                    margin: 0 0 1.5em;
                    width: 100%;
                    transition: 1s ease all;
                    -webkit-transition: 1s ease all;
                    box-sizing: border-box;
                    -moz-box-sizing: border-box;
                    -webkit-box-sizing: border-box;
                    box-shadow: 2px 2px 4px 0 #ccc;
                    /* float: left; */
                }
                
                @media only screen and (max-width:320px) {
                    .masonry {
                        -moz-column-count: 1;
                        -webkit-column-count: 1;
                        column-count: 1;
                    }
                }
                
                @media only screen and (min-width:321px) and (max-width:768px) {
                    .masonry {
                        -moz-column-count: 2;
                        -webkit-column-count: 2;
                        column-count: 2;
                    }
                }
                
                @media only screen and (min-width:769px) and (max-width:1200px) {
                    .masonry {
                        -moz-column-count: 3;
                        -webkit-column-count: 3;
                        column-count: 3;
                    }
                }
                
                @media only screen and (min-width:1201px) {
                    .masonry {
                        -moz-column-count: 3;
                        -webkit-column-count: 3;
                        column-count: 3;
                    }
                }
                
                .certificates-title .div-title {
                    font-size: 16px;
                    color: #0066a6;
                    text-align: center;
                    margin-bottom: 0;
                    margin-top: 15px;
                    text-transform: uppercase;
                }
                
                .certificates-box:hover .certificates-title .div-title {
                    color: #fdb811;
                }
                /* certificates */
                /* leadership-team-section */
                
                .leadership-head {
                    position: relative;
                }
                
                .leadership-head figcaption {
                    position: absolute;
                    left: 0;
                    right: 0;
                    bottom: 0;
                }
                
                .leadership-inner-column {
                    width: 100%;
                    float: left;
                    padding-left: 100px;
                }
                
                .leadership-head figcaption .profile-heading {
                    font-size: 16px;
                    color: #ffffff;
                    font-weight: 600;
                    margin-bottom: 0px;
                    background: #041e42;
                    color: #fff;
                    padding: 10px 10px;
                    text-transform: uppercase;
                    display: block;
                    text-align: center;
                }
                
                .leadership-el_text blockquote {
                    padding: 15px 20px;
                    background-color: #f2f2f2;
                    margin: 20px 0 20px;
                    border-left: 5px solid #FFC31D;
                    font-style: italic;
                    color: #686868;
                }
                
                .leader-profile {
                    width: 100%;
                    float: left;
                    margin-top: 50px;
                }
                
                .top-image {
                    margin-bottom: 15px;
                    position: relative;
                    overflow: hidden;
                }
                
                .top-image:before {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background-color: #0765a0;
                    -webkit-transition: 0.4s;
                    -o-transition: 0.4s;
                    transition: 0.4s;
                    opacity: 0;
                }
                
                .top-image img {
                    margin: 0 auto;
                    -webkit-transition: 0.4s all linear;
                    -o-transition: 0.4s all linear;
                    transition: 0.4s all linear;
                    -webkit-transform: scale(1, 1);
                    -ms-transform: scale(1, 1);
                    -o-transform: scale(1, 1);
                    transform: scale(1, 1);
                }
                
                .top-image .overlay {
                    position: absolute;
                    left: 0;
                    right: 0;
                    text-align: center;
                    bottom: 0;
                    margin-bottom: -40px;
                    opacity: 0;
                    visibility: hidden;
                    -webkit-transition: all 0.3s ease;
                    -o-transition: all 0.3s ease;
                    transition: all 0.3s ease;
                }
                
                .top-image .overlay .profile-scocial {
                    text-align: center;
                }
                
                .top-image .overlay .profile-scocial li {
                    display: inline-block;
                    padding-right: 3px;
                }
                
                .top-image .overlay .profile-scocial li a {
                    display: block;
                    position: relative;
                    z-index: 11;
                }
                
                .top-image .overlay .profile-scocial li a img {
                    width: 35px;
                    height: 35px;
                    object-fit: contain;
                }
                
                .leader-profile:hover .top-image img {
                    -webkit-transform: scale(1.05, 1.05);
                    -ms-transform: scale(1.05, 1.05);
                    -o-transform: scale(1.05, 1.05);
                    transform: scale(1.05, 1.05);
                    opacity: 0.2;
                }
                
                .leader-profile:hover .top-image:before {
                    opacity: 0.9;
                }
                
                .leader-profile:hover .overlay {
                    margin-bottom: 40px;
                    opacity: 1;
                    visibility: visible;
                }
                
                .leader-profile:hover .overlay .profile-scocial li a img {
                    opacity: 1;
                }
                
                .leader-profile figcaption p {
                    margin-bottom: 0;
                }
                /* leadership-team-section */
                /* client-section */
                
                .img-zoom {
                    overflow: hidden;
                    cursor: pointer;
                }
                
                .img-zoom img {
                    -webkit-transform: scale(1);
                    transform: scale(1);
                    -webkit-transition: 0.5s ease-in-out;
                    transition: 0.5s ease-in-out;
                }
                
                .img-zoom:hover img {
                    -webkit-transform: scale(1.08, 1.08);
                    transform: scale(1.08, 1.08);
                }
                
                .client-row {
                    width: 100%;
                    float: left;
                }
                
                .client-box {
                    width: 23%;
                    float: left;
                    position: relative;
                    margin: 1%;
                    padding: 10px;
                    border: 1px solid #e2ddd7;
                    background: #fff;
                    transition: all 0.5s linear 0s;
                }
                
                .client-box:hover {
                    box-shadow: #0000002e 0px 8px 16px;
                    -webkit-transform: translate3d(0, -2px, 0);
                    transform: translate3d(0, -2px, 0);
                }
                
                .client-box img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
                /* client-section */
                /* tech-partners-section */
                
                .tech-partners {
                    width: 100%;
                    float: left;
                    box-shadow: 1px 1px 20px 9px #0000000d;
                    -webkit-box-shadow: 1px 1px 20px 9px #0000000d;
                    -moz-box-shadow: 1px 1px 20px 9px #0000000d;
                    padding: 30px;
                    background: #fff;
                }
                
                .tech-partners-box {
                    width: 100%;
                    float: left;
                    padding: 10px;
                    background: #fff;
                    -webkit-transition: all 0.4s ease;
                    transition: all 0.4s ease;
                    display: -webkit-box;
                    display: -moz-box;
                    display: -ms-flexbox;
                    display: -webkit-flex;
                    display: flex;
                    -webkit-box-align: center;
                    -moz-box-align: center;
                    -ms-flex-align: center;
                    -webkit-align-items: center;
                    align-items: center;
                }
                
                .tech-partners-box .partners-left {
                    width: 20%;
                    float: left;
                }
                
                .tech-partners-box .partners-left img {
                    width: 100%;
                    padding-right: 30px;
                }
                
                .tech-partners-box .partners-right {
                    width: 80%;
                    float: left;
                }
                
                .tech-partners-box:hover {
                    background: #eeeeee;
                    box-shadow: 1px 1px 20px 9px #0000000d;
                    -webkit-box-shadow: 1px 1px 20px 9px #0000000d;
                    -moz-box-shadow: 1px 1px 20px 9px #0000000d;
                    -webkit-transition: all 0.4s ease;
                    transition: all 0.4s ease;
                    transform: scale(1.01);
                }
                
                .tech-partners-box .left-border-block {
                    font-size: 17px;
                    line-height: 26px;
                    margin-bottom: 0;
                }
                
                .left-border-block {
                    border-left: 3px solid #1471ac;
                    margin: 0 0 25px 0px;
                    padding-left: 20px;
                    font-size: 22px;
                    line-height: 28px;
                    color: #000;
                }
                
                .porto-separator {
                    width: 100%;
                    float: left;
                }
                
                .porto-separator hr {
                    width: 100%;
                    float: left;
                    background-image: -webkit-linear-gradient(left, #fdb811, transparent);
                    background-image: linear-gradient(to right, #fdb811, transparent);
                    height: 3px;
                    margin: 20px 0 30px;
                    border-bottom: none;
                }
                /* tech-partners-section */
                /* contact-section */
                
                .contact-bg-img {
                    position: absolute;
                    right: 0;
                }
                
                .contact-bg-img img {
                    width: 100%;
                    height: auto;
                    float: right;
                }
                
                .icon-box-item {
                    margin-top: 30px;
                }
                
                .icon-img {
                    float: left;
                    width: 50px;
                }
                
                .icon-img img {
                    width: 30px;
                }
                
                .content-container {
                    width: 90%;
                    float: left;
                }
                
                .content-container p {
                    margin-bottom: 6px;
                }
                
                .content-container .div-sub-title {
                    margin-bottom: 6px;
                }
                
                .contact-form-box {
                    position: absolute;
                    top: -150px;
                    right: 10%;
                }
                
                .contact-form {
                    width: 500px;
                    height: 100%;
                    background: #0066a6;
                    padding: 30px;
                    border-radius: 20px;
                    float: left;
                }
                
                .contact-form .form-group {
                    width: 100%;
                    float: left;
                    margin-bottom: 15px;
                }
                
                .contact-form .form-control {
                    font-size: 17px;
                    line-height: inherit;
                    color: #000000;
                    margin-bottom: 0px;
                    padding: 5px 8px;
                    height: 40px;
                }
                
                .contact-form textarea.form-control {
                    height: 120px;
                    resize: none;
                }
                
                .contact-form .form-label {
                    font-size: 18px;
                    line-height: inherit;
                    color: #ffffff;
                    font-weight: 600;
                    margin-bottom: 0px;
                }
                /* contact-section */
                /* product-section */
                
                .product-left {
                    width: 100%;
                    float: left;
                }
                
                .product-list {
                    width: 100%;
                    float: left;
                }
                
                .product-list .category-nav {
                    width: 100%;
                    float: left;
                }
                
                .product-list .category-nav li {
                    margin-bottom: 8px;
                    position: relative;
                }
                
                .product-list .category-nav li a {
                    font-size: 16px;
                    line-height: inherit;
                    color: #041e42;
                    font-weight: 500;
                    border-left: 5px solid #0000;
                    background-color: #dbdfe7;
                    padding: 10px 10px;
                    display: block;
                }
                
                .product-list .category-nav li:hover a {
                    border-color: #FFC31D;
                    background-color: #0066a6;
                }
                
                .product-list .category-nav li:hover a {
                    color: #ffffff;
                }
                
                .product-list .category-nav li.active a {
                    border-color: #FFC31D;
                    background-color: #0066a6;
                }
                
                .product-list .category-nav li.active a {
                    color: #ffffff;
                }
                
                .company-details {
                    width: 100%;
                    float: left;
                    background-color: #ffffff;
                    padding: 10px 10px;
                }
                
                .company-details .sub-title {
                    font-size: 20px;
                    line-height: inherit;
                    color: #041e42;
                    font-weight: 500;
                    margin-bottom: 15px;
                }
                
                .company-details ul li {
                    font-size: 15px;
                    line-height: inherit;
                    color: #041e42;
                    font-weight: 500;
                    position: relative;
                    margin-bottom: 10px;
                    padding-left: 25px;
                }
                
                .company-details ul li img {
                    display: inline-block;
                    position: absolute;
                    left: 0;
                    top: 5px;
                    width: 15px;
                }
                
                .product-right {
                    width: 100%;
                    float: left;
                }
                
                .product-img {
                    width: 100%;
                    float: left;
                }
                
                .product-text {
                    width: 100%;
                    float: left;
                }
                
                .product-text blockquote {
                    padding: 15px 20px;
                    background-color: #f2f2f2;
                    margin: 20px 0 20px;
                    border-left: 5px solid #FFC31D;
                    font-style: italic;
                    color: #686868;
                    font-size: 16px;
                }
                /* product-section */
                /* responsive css */
                
                @media (min-width:1200px) {
                    .container {
                        max-width: 1170px;
                    }
                }
                
                @media (max-width:1480px) {
                    .page-bg-1 {
                        top: -130px;
                        width: 150px;
                    }
                    .page-bg-2 {
                        bottom: -130px;
                        width: 150px;
                    }
                    .testimonial-bg-1 {
                        right: 170px;
                        top: -90px;
                        width: 80px;
                    }
                    .testimonial-bg-2 {
                        right: 70px;
                        width: 100px;
                    }
                    .testimonial-bg-4 {
                        width: 320px;
                    }
                    .testimonial-bg-3 {
                        left: 100px;
                        top: 40%;
                        width: 70px;
                    }
                    .title {
                        font-size: 36px;
                        line-height: 46px;
                    }
                    .project-name {
                        font-size: 26px;
                        line-height: 30px;
                    }
                    /* .footer-bg-2 {
                        top: -100px;
                        width: 530px;
                    } */
                    .footer-bg {
                        /* left: 20px; */
                        width: 100%;
                    }
                }
                
                @media (max-width:1366px) {}
                
                @media (max-width:1280px) {}
                
                @media (max-width:1200px) {
                    .pb-100 {
                        padding-bottom: 50px;
                    }
                    .pt-100 {
                        padding-top: 50px;
                    }
                    .top-contact li .brand {
                        width: 75%;
                        float: right;
                    }
                    .top-contact li a .svg {
                        width: 16px;
                        height: 16px;
                    }
                    .nav-section ul li a {
                        font-size: 15px;
                    }
                    .middle-section {
                        padding: 0 15px;
                    }
                    .width-section {
                        width: 40%;
                    }
                    .width-section-2 {
                        width: 20%;
                    }
                    .title {
                        font-size: 26px;
                        line-height: 34px;
                    }
                    p {
                        font-size: 15px;
                        line-height: 20px;
                    }
                    .sub-title {
                        font-size: 20px;
                        line-height: 24px;
                        margin-bottom: 10px;
                    }
                    .div-title {
                        font-size: 16px;
                    }
                    .read-more-btn {
                        font-size: 13px;
                        padding: 12px 25px;
                    }
                    .read-more-btn-2 img {
                        width: 43px;
                        height: 43px;
                        padding: 7px;
                    }
                    .read-more-btn-2 {
                        padding-left: 60px;
                    }
                    .work-box .number {
                        width: 50px;
                        height: 50px;
                        line-height: 50px;
                        font-size: 18px;
                    }
                    .work-box .process-text {
                        width: 86%;
                        padding-left: 10px;
                    }
                    .nav-section ul li a span {
                        height: 50px;
                        width: 50px;
                        line-height: 50px;
                    }
                    .nav-section ul li a span img {
                        width: 20px;
                    }
                    .client-img ul li {
                        width: 16.2%;
                    }
                    .project-name {
                        font-size: 22px;
                        margin-bottom: 0;
                    }
                    .project-text {
                        padding: 10px 20px;
                    }
                    .page-bg-1 {
                        top: -100px;
                        width: 100px;
                    }
                    .page-bg-2 {
                        bottom: -100px;
                        width: 100px;
                    }
                    .happy-client-box h4 {
                        font-size: 18px;
                    }
                    .happy-client-box img {
                        width: 50px;
                    }
                    .slider2.owl-carousel .carousel-caption-box .testimonial-arrow {
                        height: 24px;
                    }
                    .testimonial-bg-1 {
                        right: 90px;
                        top: -80px;
                        width: 60px;
                    }
                    .testimonial-bg-2 {
                        right: 40px;
                        width: 80px;
                    }
                    .testimonial-bg-3 {
                        left: 100px;
                        width: 60px;
                        top: 55%;
                    }
                    .testimonial-bg-4 {
                        width: 290px;
                    }
                    .slider2.owl-carousel .carousel-caption-box h4 {
                        font-size: 18px;
                    }
                    .slider2.owl-carousel .carousel-caption-box h5 {
                        font-size: 14px;
                    }
                    .testimonial-carousel .carousel-indicators {
                        padding-top: 60px;
                    }
                    .slider2.owl-carousel .carousel-caption-box::after {
                        top: -50px;
                    }
                    /* .footer-nav {
                        padding: 20px 0px 20px 180px;
                    } */
                    .footer-bg {
                        width: 100%;
                        /* left: 20px; */
                    }
                    /* .footer-bg-2 {
                        top: -90px;
                        width: 360px;
                    } */
                    .top-footer {
                        width: 80%;
                        float: left;
                        padding: 40px 0px 40px 40px;
                    }
                    .footer-contact ul li {
                        margin-bottom: 15px;
                        font-size: 14px;
                        line-height: 18px;
                        padding-left: 40px;
                    }
                    .footer-contact ul li a {
                        font-size: 14px;
                        line-height: 18px;
                    }
                    .footer-nav ul li a {
                        font-size: 15px;
                        line-height: 18px;
                    }
                    .footer-nav ul li {
                        margin-bottom: 14px;
                    }
                    .copyright {
                        padding: 30px 0px;
                    }
                }
                
                @media (max-width:1024px) {}
                
                @media (max-width:991px) {
                    .client-box {
                        width: 33.33%;
                    }
                    .contact-bg-img {
                        position: relative;
                        padding: 20px 0;
                    }
                    .contact-form-box {
                        position: relative;
                        top: 0;
                        right: 0;
                        padding: 0;
                        margin: 15px 0;
                    }
                    .footer-contact {
                        border-left: transparent;
                    }
                    .main-nav-mob .navbar-light .navbar-nav .nav-link {
                        color: #fff;
                        text-transform: uppercase;
                    }
                    .main-nav {
                        display: none !important;
                    }
                    .mobile-nav {
                        display: block;
                        padding: 10px 0px;
                        width: 100%;
                        float: left;
                    }
                    .mobile-nav.g_header {
                        position: relative;
                        top: 0px;
                        left: 0;
                        right: 0;
                        z-index: 999;
                        -webkit-transition: all .6s;
                        -o-transition: all .6s;
                        transition: all .6s;
                    }
                    .mobile-nav.g_header .container {
                        padding: 0;
                    }
                    .mobile-nav.g_shrink .container {
                        padding: 0 15px;
                    }
                    .mobile-nav.g_shrink {
                        position: fixed;
                        z-index: 999;
                        background-color: #ffffffec;
                        animation: smoothScroll 1s step-start;
                        -webkit-transition: all .6s;
                        -o-transition: all .6s;
                        transition: all .6s;
                    }
                    @keyframes smoothScroll {
                        0% {
                            transition: all 0.6s ease-in-out;
                        }
                        100% {
                            transition: all 0.6s ease-in-out;
                        }
                    }
                    .top-contact li a {
                        font-size: 12px;
                    }
                    .top-contact li a .svg {
                        width: 13px;
                        height: 13px;
                    }
                    .top-contact li .brand {
                        width: 45px;
                        height: 30px;
                        object-fit: contain;
                        float: right;
                        background: #fff;
                        padding: 0 5px;
                    }
                    .mobile-logo .logo {
                        width: 180px;
                    }
                    .mobile-toggle .list {
                        width: 30px;
                    }
                    .main-nav-mob {
                        width: 80%;
                        float: right;
                        height: 100%;
                        background: #005890;
                        padding: 40px 40px 0;
                    }
                    .sidenav {
                        height: 100%;
                        width: 0%;
                        position: fixed;
                        z-index: 999;
                        top: 0;
                        right: 0;
                        background-color: #0D2E5D93;
                        overflow-x: hidden;
                        transition: 0.5s;
                        padding: 0;
                        display: block;
                    }
                    .closebtn {
                        position: absolute;
                        top: 20px;
                        right: 30px;
                        font-size: 60px;
                        line-height: 40px;
                        color: #fff;
                        z-index: 999;
                    }
                    .nav-section ul li {
                        display: block;
                        position: relative;
                    }
                    .title {
                        font-size: 26px;
                        line-height: 34px;
                        margin-bottom: 25
                    }
                    .sub-title {
                        font-size: 24px;
                        line-height: 22px;
                    }
                    .mt-50 {
                        margin-top: 20px;
                    }
                    .mb-50 {
                        margin-bottom: 20px;
                    }
                    p {
                        font-size: 14px;
                        line-height: 20px;
                    }
                    .about-right {
                        margin-top: 20px;
                        width: 100%;
                        float: left;
                    }
                    .about-left {
                        padding-right: 0;
                    }
                    .about-right img {
                        width: 100%;
                    }
                    .how-we-work-section {
                        padding-top: 40px;
                    }
                    .how-we-work-left {
                        margin-top: 20px;
                    }
                    .mob-order-1 {
                        -webkit-box-ordinal-group: 2;
                        -ms-flex-order: 1;
                        order: 1;
                    }
                    .section-title .line::before {
                        width: 15%;
                    }
                    .section-title .line::after {
                        width: 15%;
                    }
                    .client-img ul li {
                        width: 19%;
                    }
                    .happy-client-box {
                        margin-bottom: 30px;
                    }
                    .happy-client-box h4 {
                        font-size: 18px;
                    }
                    .happy-client-box .title {
                        font-size: 32px;
                    }
                    .testimonial-carousel .slider p {
                        font-size: 18px;
                        line-height: 24px;
                    }
                    .slider2.owl-carousel .carousel-caption-box h4 {
                        font-size: 20px;
                    }
                    .slider2.owl-carousel .carousel-caption-box h5 {
                        font-size: 16px;
                    }
                    .slider2.owl-carousel .carousel-caption-box::after {
                        top: -35px;
                    }
                    .partners-carousel .client-img img {
                        width: 100px;
                        height: 60px;
                    }
                    .partners-carousel.owl-theme .owl-nav.disabled+.owl-dots {
                        margin-top: 10px;
                    }
                    .top-footer {
                        width: 100%;
                        float: left;
                        padding: 20px 0;
                    }
                    .footer-nav {
                        padding: 20px 0;
                        border-right: none;
                    }
                    .footer-bg {
                        display: none;
                    }
                    .footer-contact ul li {
                        margin-bottom: 22px;
                    }
                    .footer-contact {
                        padding: 20px 0px 20px;
                    }
                    .page-bg-img {
                        display: none;
                    }
                    .footer-contact ul li .footer-icon {
                        width: 22px;
                    }
                    .project-carousel.owl-theme .owl-dots .owl-dot span {
                        width: 10px;
                        height: 10px;
                    }
                    .client-carousel.owl-theme .owl-dots .owl-dot span {
                        width: 10px;
                        height: 10px;
                    }
                    .partners-carousel.owl-theme .owl-dots .owl-dot span {
                        width: 10px;
                        height: 10px;
                    }
                    .product-text {
                        margin-top: 30px;
                    }
                    .contact-form {
                        width: 100%;
                    }
                }
                
                @media (max-width:768px) {}
                
                @media (max-width:767px) {
                    .product-section img {
                        margin-top: 30px;
                    }
                    .leadership-inner-column {
                        padding-left: 0px;
                    }
                    .top-left ul {
                        -webkit-box-pack: center;
                        -moz-box-pack: center;
                        -ms-flex-pack: center;
                        -webkit-justify-content: center;
                        justify-content: center;
                        margin-bottom: 10px;
                    }
                    .col-lg-6.col-md-6.col-12.d-flex.justify-content-end {
                        -webkit-box-pack: center !important;
                        -moz-box-pack: center !important;
                        -ms-flex-pack: center !important;
                        -webkit-justify-content: center !important;
                        justify-content: center !important;
                    }
                    .mobile-logo .logo {
                        width: 160px;
                    }
                    .project-carousel .project-img img {
                        border-radius: 0px;
                    }
                    .project-text {
                        padding: 10px 30px;
                    }
                    .testimonial-carousel {
                        width: 100%;
                    }
                    .testimonial-carousel .slider p {
                        font-size: 16px;
                        line-height: 22px;
                    }
                    .project-carousel.owl-theme .owl-nav.disabled+.owl-dots {
                        margin-top: 20px;
                    }
                }
                
                @media (max-width:575px) {
                    .product-text {
                        margin-top: 30px;
                    }
                    .leadership-head {
                        width: 220px;
                        margin: auto;
                        margin-bottom: 30px;
                    }
                    .client-box {
                        width: 50%;
                    }
                    .title {
                        font-size: 20px;
                        line-height: 24px;
                    }
                    .social-icon-header a img {
                        width: 50px;
                        height: 50px;
                        padding: 7px;
                    }
                    /* .fl-fl {
                        width: 142px;
                        height: 50px;
                    } */
                    .social-icon-header a span {
                        height: 50px;
                        line-height: 38px;
                        padding-left: 65px;
                        font-size: 20px;
                    }
                    .main-nav-mob .navbar-light .navbar-nav .nav-link {
                        font-size: 16px;
                        color: #fff;
                        line-height: 20px;
                        padding: 22px 0px 0px;
                        text-align: left;
                        text-transform: uppercase;
                    }
                    .main-nav-mob {
                        width: 75%;
                        padding: 20px 10px 0px;
                    }
                    .read-more.mr-4 {
                        margin-right: 0 !important;
                        margin-bottom: 20px;
                    }
                    .work-box .process-text {
                        padding-left: 20px;
                    }
                    .work-box .number {
                        width: 50px;
                        height: 50px;
                        line-height: 50px;
                        font-size: 20px;
                    }
                    .project-carousel {
                        padding: 0 15px;
                    }
                    .project-text {
                        padding: 10px;
                    }
                    .project-text p {
                        text-align: justify;
                    }
                    .client-img ul li {
                        width: 49%;
                    }
                }
                
                @media (max-width:390px) {
                    .work-box .process-text {
                        width: 80%;
                    }
                    .section-title .line::before {
                        opacity: 0;
                    }
                    .section-title .line::after {
                        opacity: 0;
                    }
                }
                /* responsive css */
                
                .happy-client-box .title .icon {
                    font-size: 30px;
                    font-weight: 500;
                    padding: 0px 10px;
                    padding-top: -10px;
                    position: relative;
                    top: -5px;
                }
                
                .product-text ul li {
                    margin-bottom: 10px;
                    font-size: 20px;
                    font-weight: 500;
                    list-style-type: disc;
                    margin-left: 20px;
                }
                
                .dropdown-item:hover {
                    background: rgb(0, 88, 144);
                    color: #fff;
                }
                
                .facet-typehead {
                    padding: 15px;
                    background-color: #fdb914;
                    font-weight: bold;
                }