@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* font-family: 'Poppins', sans-serif; */
:root {
    --primary: #f3453b;
    --secondary: #0f59c9;
    --light-gray: #f0f2f8;
    --dark-gray: #252840;
}


* {
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: "Plus Jakarta Sans", sans-serif;
}

a {
    transition: all 0.3s ease;
    text-decoration: none !important;
    outline: none !important;
    color: var(--primary);
}

a:active {
    background-color: transparent;
}

ul {
    padding: 0;
    margin: 0;
}

ul,
li {
    list-style-type: none;
}

img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

p {
    color: #6d7a8c;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.auto-container {
    position: static;
    max-width: 1220px !important;
    padding: 0px 15px;
    margin: 0 auto;
}

.sec-title {
    text-align: center;
    margin-bottom: 20px;
}
.sec-title.title-left {
    text-align: left
}

.sec-title h2 {
    font-weight: 600;
    font-size: 42px;
    letter-spacing: 0;
    color: var(--dark-gray);
    text-transform: none;
    font-style: normal;
}
.sec-title h2 em {
    color: var(--primary);
    text-transform: none;
    font-style: normal;
}
.sec-title span {
    background: -webkit-linear-gradient(right, #f0f4fd, rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(240, 244, 253, 1.0), rgba(255, 255, 255, 0.0));
    font-weight: 600;
    margin-bottom: 10px;
    padding: 6px 20px;
    border-radius: 100px;
    display: inline-block;
    color: var(--secondary);
    font-size: 14px;
    letter-spacing: normal;
    border: 1px solid #dde7ff;
}

.sec-title p {
    font-size: 18px;
    color: #6d7a8c;
    font-weight: 400;
}




.readon-btn {
    color: var(--secondary);
    font-weight: 800;
    font-size: 13px;
    line-height: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
    transition: 0.5s ease;
}
.readon-btn:hover {
    color: var(--primary);
}
.readon-btn span {
    position: relative;
}
.readon-btn span::before {
    content: "";
    position: absolute;
    height: 1px;
    width: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width .3s;
    z-index: 1;
}
.readon-btn:hover span:before {
    width: 100%;
}
.readon-btn span:after {
    content: "";
    position: absolute;
    height: 1px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: #000;
}

.readon-btn.arrow-right::after {
    content: "\f061";
    font-family: FontAwesome;
    margin-left: 10px;
    font-size: 14px;
    vertical-align: middle;
}



.header {
    position: absolute;
    width: 100%;
    z-index: 9;
}

/* -----------------
Top Bar
--------------------*/

.top-bar {
    background-color: transparent;
    padding: 0px 40px;
    border-bottom: 1px solid #ffffff33;
}

.top-bar .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}
.top-bar .wrapper.right {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
.top-bar .wrapper ul li {
    display: inline-block;
    font-size: 14px;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.top-bar .wrapper.left ul li {
    display: inline-block;
    margin-right: 20px;
    padding: 13px 20px 11px 0;
    border-right: 1px solid #ffffff33;
    color: #fff;
    font-size: 14px;
}
.top-bar .wrapper.left ul li:last-child {
    border-right: none;
}
.top-bar .wrapper.left ul li i {
    margin-right: 7px;
    color: #ffffff;
}
.top-bar .wrapper.left ul li a {
    transition: all 0.3s ease;
    color: #fff;
}

.top-bar .wrapper.right ul {
    display: flex;
}
.top-bar .wrapper.right ul {
    color: #ffffff;
    padding-left: 10px;
    border-left: 1px solid #ffffff33;
}
.top-bar .wrapper.right ul li {
    display: inline-block;
    font-size: 14px;
    margin-left: 15px;
    padding: 5px 0;
}
.top-bar .wrapper.right ul li a {
    color: #fff;
    text-transform: capitalize;
    float: right;
    font-size: 13px;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.top-bar .wrapper.right ul li a:hover {
    color: var(--primary);
}



/* -----------------
Navbar
--------------------*/

.navbar {
    padding: 0px 40px;
    background-color: transparent !important;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    /* border-bottom: 1px solid #ffffff33; */
}

.fixed-header {
    background-color: #fff !important;
    width: 100%;
    z-index: 999;
    position: fixed;
    top: -1px;
    -webkit-box-shadow: 0 -2px 18px 0 #0000001c;
            box-shadow: 0 -2px 18px 0 #0000001c;
}

.navbar-brand .dark {
    display: none;
}

.fixed-header .navbar-brand .dark {
    display: block;
}
.fixed-header .navbar-brand .light {
    display: none;
}

/* .navbar {
  padding: 0;
  background-color: #fff !important;
  border-bottom: 1px solid #e7e7e7;
} */

/* Menu Lines */
.navbar .navbar-toggler {
    -webkit-box-shadow: none;
            box-shadow: none;
}
.navbar .navbar-toggler-icon {
    width: 24px;
    height: 0px;
    position: relative;
    padding: 0;
    float: left;
    margin: 14px 0;
    border-top: 2px solid var(--dark-gray);
}
.navbar .navbar-toggler-icon::before,
.navbar .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    display: block;
    border-top-width: 2px;
    border-top-style: solid;
    left: 0;
    right: 0;
    top: 0;
    -webkit-transition: 300ms ease all;
    -o-transition: 300ms ease all;
    transition: 300ms ease all;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transform-origin: -0.75px 1px;
    -ms-transform-origin: -.75px 1px;
    transform-origin: -0.75px 1px;
    border-top-color: var(--dark-gray);
}
.navbar .navbar-toggler-icon::before {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
}
.navbar .navbar-toggler-icon::after {
    -webkit-transform: translateY(7px);
    -ms-transform: translateY(7px);
    transform: translateY(7px);
}


.navbar .navbar-collapse {
    position: relative !important;
}

.menu-opened {
    background-color: #fff !important;
    padding-bottom: 40px;
}

.menu-opened .navbar-toggler-icon,
.menu-opened .navbar-toggler-icon::before,
.menu-opened .navbar-toggler-icon::after,
.fixed-header .navbar-toggler-icon,
.fixed-header .navbar-toggler-icon::before,
.fixed-header .navbar-toggler-icon::after {
    border-color: #000;
}

.navbar-nav {
    margin-left: 70px;
}

.navbar .dropdown {
    position: inherit;
}

.navbar-nav>li {
    padding: 0 50px 0 0;
}
.navbar-nav>li:last-child {
    padding-right: 0;
}

/* .navbar-nav>li:last-child {
    margin-right: 0;
} */

.navbar-nav li .nav-link {
    padding: 40px 0px !important;
    color: #fff !important;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    position: relative;
}
.fixed-header .navbar-nav li .nav-link {
    color: #000 !important;
    padding: 20px 0px !important;
}

/* .navbar-nav li .nav-link.active,
.navbar-nav li:hover .nav-link {
    opacity: 0.6;
} */


.dropdown-menu {
    width: 220px;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: 300ms ease all;
    -o-transition: 300ms ease all;
    transition: 300ms ease all;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.dropdown-menu li {
    position: relative;
}
.dropdown-menu li a {
    padding: 15px 30px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
}
.dropdown-menu li a:hover,
.sub-dropdown-menu li a:hover {
    background-color: var(--primary);
    color: #fff;
}

@media (min-width: 992px) {
    .dropdown-menu li a:before {
        position: absolute;
        content: '';
        left: 18px;
        top: 24px;
        width: 0;
        height: 2px;
        background-color: transparent;
        -webkit-transition: all .500s ease-in-out;
        transition: all .500s ease-in-out;
    }
    .dropdown-menu li:hover a:before {
        background-color: rgba(255, 255, 255, .50);
        width: 10px;
    }
    .dropdown-menu li:hover a {
        padding-left: 40px;
    }
}

.dropdown-menu,
.sub-dropdown-menu {
    border-bottom: none;
    border-left: none;
    border-right: none;
    border-top: none;
    background-color: var(--dark-gray);
    border-radius: 0;
    padding: 0px 0px !important;
    -webkit-box-shadow: 0 10px 10px 0 #00000017;
            box-shadow: 0 10px 10px 0 #00000017;
}

.dropdown-menu li a,
.sub-dropdown-menu li a {
    border-bottom: 1px solid rgba(0, 0, 0, .10);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.dropdown-menu li:last-child a {
    border-bottom: 0px solid;
}

.dropdown .dropdown-toggle::after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 14px;
    position: absolute;
    right: -18px;
    border: none;
}
/* .navbar-nav li.dropdown:hover .dropdown-toggle::after {
    content: "-";
} */

.navbar .contact-info {
    display: flex;
    gap: 15px;
}
.navbar .contact-info a {
    padding: 10px 26px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 50px;
    background-color: transparent;
    color: #fff;
    border: 2px solid rgb(255 255 255 / 30%);
    transition: all .3s ease-in-out;
}
.navbar .contact-info a i {
    margin-left: 6px;
}
.navbar .contact-info a:hover {
    background-color: #fff;
    color: #000;
}
.fixed-header .contact-info a {
    color: var(--dark-gray);
    border-color:#e4e4e4;
}
.fixed-header .contact-info a:hover {
    background-color: var(--dark-gray);
    border-color: var(--dark-gray);
    color: #fff;
}


@media only screen and (min-width: 992px) {
    .dropdown .dropdown-menu {
        display: block;
    }

    .sub-dropdown:hover .sub-dropdown-menu {
        display: block;
    }
}

/* -----------------
Banner Area
--------------------*/

/* .banner-slider .slide-1 {
    background: url("../images/banners/n-slider-01.jpg");
}
.banner-slider .slide-2 {
    background: url("../images/banners/n-slider-02.jpg");
} */
.banner-slider .slide {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.banner-slider .slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    background: #000000;
    opacity: 0.2;
    width: 100%;
    height: 100%;
}
.banner-slider .slide-content {
    position: relative;
    z-index: 2;
    height: 100vh;
}
.banner-slider .slide-content .content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
}
.banner-slider .slide-content .content .sub-heading {
    background: -webkit-linear-gradient(right, var(--secondary), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, var(--secondary), rgba(255, 255, 255, 0.0));
    margin-bottom: 25px;
    padding: 4px 25px;
    padding-right: 40px;
    border-radius: 50px;
    display: inline-block;
}
.banner-slider .slide-content .content .sub-heading span {
    font-size: 14px;
    line-height: 30px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.banner-slider .slide-content .content .sub-heading span i {
    margin-right: 6px;
    font-size: 18px;
}
.banner-slider .slide-content .content .heading h2 {
    font-size: 70px;
    line-height: 75px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}
.banner-slider .slide-content .content .heading h2 span {
    color: var(--primary);
}
.banner-slider .slide-content .content .text {
    padding-right: 120px;
    margin-bottom: 40px;
}
.banner-slider .slide-content .content .text p {
    color: #fff;
    font-size: 18px;
    opacity: .8;
}
.banner-slider .slide-content .content .buttons-wrap {
    display: flex;
    gap: 15px;
}
.banner-slider .slide-content .content .button a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 30px;
    background: aliceblue;
    text-transform: capitalize;
    display: inline-block;
    background-image: linear-gradient(to right, #0b58cb, #e94037, #0b58cb);
    background-size: 200% auto;
    color: #fff;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}
.banner-slider .slide-content .content .button-2 a {
    background-color: transparent;
    background-image: none;
    border: 1px solid #fff;
}
.banner-slider .slide-content .content .button a:hover {
    background-color: #fff;
    color: #000;
}


.banner-slider .owl-nav button {
    position: absolute;
    top: 55%;
    width: 40px;
    height: 40px;
    line-height: 40px !important;
    background-color: #00000080 !important;
    border-radius: 50px;
    transition: all 0.5s;
    opacity: 0;
    visibility: hidden;
}

.banner-slider .owl-nav button i {
    color: #fff;
    font-size: 14px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
.banner-slider:hover .owl-nav button {
    opacity: 1;
    visibility: visible;
}
.banner-slider .owl-nav .owl-prev {
    left: 0px;
}
.banner-slider .owl-nav .owl-next {
    right: 0px;
}
.banner-slider:hover .owl-nav .owl-prev {
    left: 50px;
}
.banner-slider:hover .owl-nav .owl-next {
    right: 50px;
}


.shape-image-animation {
    position: absolute;
    bottom: 0;
    z-index: 1;
    width: 100%;
    display: block;
}
.shape-image-animation svg{
    height: 100%;
    width: 100%;
}






/* .banner-bottom */
.banner-bottom {
    padding: 80px 0 120px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}
.banner-bottom .img-box {
    margin-left: 50px;
    border-radius: 10px;
    overflow: hidden;
}
.banner-bottom .inner {
    margin-top: 0px;
}

.banner-bottom .box {
    background-color: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px 0 #00000014;
}
.banner-bottom .box img {
    width: auto;
}
.banner-bottom .box .inner-box {
    display: flex;
    gap: 20px;
}
.banner-bottom .box .inner-box .icon {
    width: 100px;
    flex: 0 0 auto;
}
.banner-bottom .box .inner-box .content h2 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 25px;
    line-height: 24px;
    margin-bottom: 10px;
}
.banner-bottom .box .inner-box .content p {
    color: #7d8087;
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 0;
}


/* about-section */
.about-section {
    padding: 100px 0 60px;
}
.about-section .sec-title span i {
    margin-right: 6px;
    font-size: 16px;
}
.about-section .box {
    position: relative;
}
.about-section .img-wrap {
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
}
.about-section .img-1 {
    width: 100%;
}
.about-section .img-2 {
    width: 60%;
    position: absolute;
    bottom: -50px;
    right: -15px;
}
.about-section .img-wrap img {
    border-radius: 8px;
}
.about-section .content .text-wrap {
    margin-bottom: 50px;
}
.about-section .content .text-wrap p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #7d8087;
}
.about-section .content .text-wrap h4 {
    padding: 8px 25px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 20px;
    background: -webkit-linear-gradient(right, rgba(15, 89, 201, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(15, 89, 201, 1.0) 10%, rgba(255, 255, 255, 0.0) 95%);
    color: #fff;
    margin-bottom: 20px;
}

.about-section .progress-wrap .item {
    position: relative;
    margin-bottom: 20px;
}

.about-section .progress-wrap .item .progress-bar-title {
    position: absolute;
    top: 8px;
    left: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}
.about-section .progress {
    background-color: transparent;
    height: auto;
}
.about-section .progress-wrap .progress-bar {
    padding: 6px 20px;
    border-radius: 100px;
    text-align: right;
    font-weight: 700;
}
.about-section .progress-wrap .item:nth-child(2) .progress-bar {
    background: -webkit-linear-gradient(right, rgba(243, 69, 59, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(243, 69, 59, 1.0) 10%, rgba(255, 255, 255, 0.0) 95%);
    color: var(--primary);
}
.about-section .progress-wrap .item:nth-child(1) .progress-bar {
    background: -webkit-linear-gradient(right, rgba(15, 89, 201, 1.0), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(15, 89, 201, 1.0) 10%, rgba(255, 255, 255, 0.0) 95%);
    color: var(--secondary);
}

.about-section .clients-row {
    margin-top: 80px;
}
.about-section .clients-row a {
    padding: 0 30px;
    display: block;
}



/* services-section */
.services-section {
    background-color: var(--light-gray);
    padding: 100px 0;
}
.services-section .sec-title {
    margin-bottom: 20px;
}
.services-section .sec-title h2 em {
    display: block;
}
.services-section .text-inner p {
    font-size: 16px;
}

.services-section .box .img-box {
    padding-bottom: 0;
    overflow: hidden;
    border-radius: 6px;
}
.services-section .box .img-box img {
    transition: all 0.5s;
}
.services-section .box:hover .img-box img {
    transform: scale(1.1);
}
.services-section .box .box-content {
    position: relative;
    transform: translateY(0);
    background-color: #fff;
}
.services-section .box .box-content .inner {
    padding: 30px 25px;
    text-align: center;
}
.services-section .box .box-content .inner span {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 700;
    line-height: 26px;
    color: var(--primary);
}
.services-section .box .box-content .inner h3 {
    color: var(--secondary);
    position: relative;
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    margin: 0 0 16px 0;
}
.services-section .box .box-content .inner p {
    color: #7d8087;
    margin: 0;
}
.services-section .box .btn-wrap {
    padding: 20px 50px;
    border-top: 1px solid #e4e4e4;
    text-align: center;
}
.services-section .box .btn-wrap a {
    color: #000;
}
.services-section .box .btn-wrap a>span {
    display: inline-flex;
    align-items: center;
}
.services-section .box .btn-wrap a .btn-text {
    margin-left: -13px;
    font-size: 13px;
    color: var(--dark-gray);
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
    transition: transform .6s 125ms cubic-bezier(.1,.75,.25,1);
}
.services-section .box .btn-wrap a .btn-icon {
    margin-left: 6px;
    position: relative;
    font-size: 13px;
    margin-top: -1px;
    transition: opacity .4s .25s, transform .6s .25s;
    transition-timing-function: cubic-bezier(.1,.75,.25,1);
    line-height: 0;
    z-index: 3;
}
.services-section .box .btn-wrap a .btn-icon+.btn-icon {
    order: -2;
    opacity: 0;
    transition-delay: 0s;
    margin-left: 0;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
}
.services-section .box .btn-wrap a:hover .btn-text {
    transition-delay: .1s;
    transform: translateX(23px);
}
.services-section .box .btn-wrap a:hover {
    opacity: 1;
}
.services-section .box .btn-wrap a:hover .btn-icon {
    transition-delay: 0s;
    transform: translateX(10px);
    opacity: 0;
}
.services-section .box .btn-wrap a:hover .btn-icon+.btn-icon {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 225ms;
}

.services-section .custom-nav {
    text-align: right;
}
.services-section .custom-nav .owl-next {
    margin-left: 10px;
}
.services-section .custom-nav button{
    height: 56px;
    width: 56px;
    color: var(--dark-gray);
    border-radius: 100%;
    border: none;
    background-color: #fff;
    position: relative;
    bottom: inherit;
    left: 0;
    top: inherit;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-box-shadow: 0 0 25px rgba(0, 0, 0, .08);
    box-shadow: 0 0 25px rgba(0, 0, 0, .08);
}



/* industries-section */
.industries-section {
    background-color: var(--dark-gray);
    padding: 100px 0;
}
.industries-section .sec-title h2 {
    color: #fff;
}
.industries-section .item {
    padding: 50px 20px;
    border-width: 1px;
    border-color: #ffffff1a !important;
    transition: all .3s cubic-bezier(.645,.045,.355,1);
    position: relative;
    z-index: 2;
}
.industries-section .item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: var(--secondary);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .4s cubic-bezier(.12,0,.39,0);
    transition: .4s cubic-bezier(.12,0,.39,0);
}
.industries-section .item:hover::before {
    opacity: 1;
    visibility: visible;
}
.industries-section .item .icon-box {
    text-align: center;
}
.industries-section .item .icon-box i {
    font-size: 40px;
    color: #fff;
}
.industries-section .item .content {
    text-align: center;
    margin-top: 20px;
}
.industries-section .item .content h3 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}
.industries-section .colm:nth-child(1) .item,
.industries-section .colm:nth-child(2) .item,
.industries-section .colm:nth-child(3) .item,
.industries-section .colm:nth-child(4) .item,
.industries-section .colm:nth-child(5) .item {
    border-bottom: 1px solid #ffffff1a;
    border-right: 1px solid #ffffff1a;
}
.industries-section .colm:nth-child(6) .item {
    border-bottom: 1px solid #ffffff1a;
}
.industries-section .colm:nth-child(7) .item,
.industries-section .colm:nth-child(8) .item,
.industries-section .colm:nth-child(9) .item,
.industries-section .colm:nth-child(10) .item,
.industries-section .colm:nth-child(11) .item {
    border-right: 1px solid #ffffff1a;
}

.industries-bottom {
    background-color: #1e2033;
}
.industries-bottom img {
    width: auto;
}
.industries-bottom .inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
.industries-bottom .inner p {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
}
.industries-bottom .inner p a {
    border-bottom: 1px solid #fff;
}








.client-section {
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 100px 0;
}
.client-section .shape-1 {
    position: absolute;
    right: 0;
    top: 0%;
    z-index: -1;
}
.client-section .shape-2 {
    position: absolute;
    left: 0;
    top: 0%;    
}
.client-section .item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: linear-gradient(0deg, #0f59c917, #fff);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ebf2fb;
}
.client-section .item .img-box {
    width: 380px;
}
.client-section .item .content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-gray);
}

.client-section .item .content p {
    font-weight: 400;
    color: #6d7a8c;
}


/* client-two */
.client-two {
    padding: 100px 0;
}
.client-two .circle-wrap {
    display: flex;
    position: relative;
    z-index: 2;
}
.client-two .circle-wrap .info-box {
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: solid 15px #0f59c91f;
    display: flex;
    align-items: center;
    padding: 50px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
}
.client-two .circle-wrap .info-box h2 {
    color: var(--dark-gray);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}
.client-two .circle-wrap .nav-tabs {
    margin-left: 50px;
}
.client-two .circle-wrap .nav-tabs .nav-item {
    padding: 40px 0;
}
.client-two .circle-wrap .nav-tabs .tab2 {
    margin-left: 40px;
}
.client-two .circle-wrap .nav-tabs  li button {
    font-size: 18px;
    margin: 0 0px;
    font-weight: 600;
    display: block;
    text-align: left;
    padding: 0px 0;
    color: #7d8087;
    text-transform: capitalize;
    border: 2px solid transparent !important;
    position: relative;
    background-color: transparent !important;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
}
.client-two .nav-tabs li button.active, 
.client-two .nav-tabs li button:hover {
    color: var(--secondary);
}
.client-two .nav-tabs li button.active::after {
    content: "\f061";
    font-family: FontAwesome;
    font-size: 16px;
    margin-left: 20px;
}

.client-two .circle-wrap .nav-tabs {
    flex-direction: column;
    border: none;
}

.client-two .tab-content .content {
    display: flex;
    position: relative;
}
.client-two .tab-content .content .img-box {
    width: 300px;
    border-radius: 10px 100px 10px 10px;
    overflow: hidden;
    margin-top: -100px;
}
.client-two .tab-content .content .text {
    position: absolute;
    width: 300px;
    bottom: -60px;
    right: 0;
    padding: 30px 40px 20px 40px;
    border-radius: 10px 10px 100px 10px;
}
.client-two .tab-content .content .text.t1 {
    background-color: var(--secondary);
}
.client-two .tab-content .content .text.t2 {
    background-color: var(--primary);
}
.client-two .tab-content .content .text.t3 {
    background-color: var(--dark-gray);
}
.client-two .tab-content .content .text h3 {
    color: #fff;
}
.client-two .tab-content .content .text p {
    color: #fff;
    opacity: 0.8;
}











/* projects-heading */
.projects-section {
    padding: 80px 0;
    background: linear-gradient(0deg, #fff, #0f59c917);
}
.projects-section .nav-tabs {
    float: right;
    border-bottom: none;
}
.projects-section .nav-tabs li button {
    font-size: 18px;
    margin: 0 20px;
    font-weight: 600;
    display: inline-block;
    padding: 0px 0;
    color: #7d8087;
    text-transform: capitalize;
    border: 2px solid transparent !important;
    position: relative;
    background-color: transparent !important;
    cursor: pointer;
    -webkit-transition: .3s;
    transition: .3s;
}
.projects-section .nav-tabs li button.active,
.projects-section .nav-tabs li button:hover {
    color: var(--dark-gray);
    border-bottom: 2px solid var(--dark-gray) !important;
}



.projects-section .item {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}
.projects-section .item .img-box {
    position: relative;
    overflow: hidden;
}
.projects-section .item .img-box img {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: transform 300ms ease-in-out;
    -moz-transition: transform 300ms ease-in-out;
    transition: transform 300ms ease-in-out;
}
.projects-section .item:hover .img-box img {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.projects-section .item .inner {
    position: relative;
    will-change: transform;
    overflow: hidden;
}

.projects-section .tab-content {
    margin-top: 20px;
}
.projects-section .tab-content .content-box h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}











/* .testimonials-section */
.testimonials-section {
    padding: 100px 0;
}
.testimonials-section .sec-title h2 {
    font-weight: 700;
}
.testimonials-section img {
    width: auto !important;
}
.testimonials-section .item .logo {
    margin-bottom: 20px;
    display: block;
}
.testimonials-section .item p {
    font-size: 18px;
    font-weight: 500;
}
.testimonials-section .item h3 {
    font-weight: 800;
    color: var(--dark-gray);
    letter-spacing: 0.5px;
    font-size: 15px;
    text-transform: uppercase;
}
.testimonials-section .owl-nav button {
    outline: 0;
    cursor: pointer;
    height: 45px;
    width: 45px;
    font-size: 18px !important;
    margin-top: 0;
    position: absolute;
    top: 50%;
    color: var(--dark-gray);
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .3s;
    transition: .3s;
}
.testimonials-section .owl-nav .owl-prev {
    left: 90px;
    right: auto;
}
.testimonials-section .owl-nav .owl-next {
    right: 90px;
    left: auto;
}

.testimonials-section .box-item {
    border-radius: 6px;
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    -webkit-transition: all 350ms cubic-bezier(.37,0,.63,1);
    transition: all 350ms cubic-bezier(.37,0,.63,1);
    background-color: #fff;
}
.testimonials-section .box-item .logo {
    padding: 40px 0;
    text-align: center;
}
.testimonials-section .box-item img {
    width: 200px !important;
    margin: auto;
}

.testimonials-section .box-item .text {
    padding: 15px 0;
    border-top: 1px solid #dee2e6;
    text-align: center;
}

.testimonials-section .box-item .text p {
    font-size: 16px;
    font-weight: 500;
    color: #7d8087;
    margin-bottom: 0;
}
.testimonials-section .box-item .text p span {
    font-weight: 600;
    color: var(--dark-gray);
}






.inner-banner {
    position: relative;
    z-index: 2;
}
.inner-banner .container {
    max-width: 1300px;
}
.inner-banner img {
    /* height: 500px; */
}
.inner-banner .inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.inner-banner .content-box {
    position: absolute;
    left: 0;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
}
.inner-banner .content-box .caption-title {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 2.5vw;
}


.about-page {
    padding-top: 100px;
    padding-bottom: 60px;
}

.banner-bottom {
    background-color: #eeeff4;
    margin-bottom: 70px;
}



.management-section {
    background-image: url(../images/bg-1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left top;
    padding: 60px 0 230px;
}
.management-section .sec-title h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    background: -webkit-linear-gradient(right, var(--primary), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, var(--primary) 10%, rgba(255, 255, 255, 0.0) 95%);
    padding: 6px 25px;
    border-radius: 100px;
}
.management-section .img-wrap {
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
    border-radius: 10px;
    overflow: hidden;
}





/* services-page-section */

.services-page-section {
    padding: 50px 0 250px;
    background-color: #f1f2f7;
}

.services-page-section .box {
    border-radius: 10px;
    position: relative;
    z-index: 2;
    margin-bottom: 120px;
}
.services-page-section .box .img-wrap {
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
}
.services-page-section .box.right .img-wrap {
    margin-right: 20%;
}
.services-page-section .box.left .img-wrap {
    margin-left: 20%;
}
.services-page-section .box .content {
    position: absolute;
    bottom: -40px;
    right: 0;
    background-color: #fff;
    padding: 40px;
    max-width: 800px;
    width: 750px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
}
.services-page-section .box1 .content {
    background-color: var(--secondary);
}
.services-page-section .box2 .content {
    background-color: var(--primary);
}
.services-page-section .box3 .content {
    background-color: var(--dark-gray);
}
.services-page-section .box.right .content {
    right: 0;
}
.services-page-section .box.left .content {
    left: 0;
}
.services-page-section .box .content h3 {
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}
.services-page-section .box .content p {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 0;
}
.services-page-section .box .content .points li {
    font-size: 16px;
    color: #6d7a8c;
    font-weight: 400;
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
}
.services-page-section .box .content .points li::before {
    content: "\f061";
    font-family: FontAwesome;
    font-size: 16px;
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
}



/* 
.services-page-section {
    padding: 50px 0 230px;
    background-color: #f1f2f7;
}
.services-page-section .sec-title {
    margin-bottom: 40px;
}
.services-page-section .item {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}
.services-page-section .item .icon-wrap {
    position: relative;
    z-index: 2;
}
.services-page-section .item .icon-wrap::after {
    content: "";
    position: absolute;
    bottom: -30px;
    height: 100%;
    width: 1px;
    left: 50%;
    z-index: -1;
    background-color: var(--dark-gray);
    opacity: .1;
}
.services-page-section .item:last-child .icon-wrap::after {
    width: 0;
}
.services-page-section .item .icon {
    width: 70px;
    height: 70px;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    background-color: #fff;
    -webkit-transition: 350ms cubic-bezier(.165, .84, .44, 1.7);
    transition: 350ms cubic-bezier(.165, .84, .44, 1.7);
}

.services-page-section .item .icon h4 {
    margin-bottom: 0;
}
.services-page-section .item .content h3 {
    color: var(--dark-gray);
    font-weight: 700;
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 10px;
} */




.careers-section {
    /* background: linear-gradient(180deg, #f1f2f7 50%, #ebdcdc00 50%) !important; */
    padding-bottom: 230px !important;
}
.careers-section .sec-title > * {
    text-align: left !important;
}
.careers-section .inner {
    background-color: #fff;
    padding: 60px 60px 40px 60px;
    border-radius: 10px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
    height: auto !important;
    position: sticky;
    top: 80px;
}
.careers-section .contact-form {
    padding: 0px !important;
    border-radius: 0px;
}



.careers-section .accordion-box {
    margin-top: 0px;
}
.careers-section .accordion-box .sec-title h2 {
    text-align: left !important;
}

.careers-section .accordion-box .accordion-item {
    padding: 0;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 15px 40px 5px rgba(111, 111, 111, .15);
    border: none;
}
.careers-section .accordion-box .accordion-item h2 {
    border: none;
}
.careers-section .accordion-box .accordion-item .accordion-button {
    position: relative;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    padding: 15px 20px;
    background: no-repeat;
    font-size: 18px;
    line-height: 30px;
    color: var(--dark-gray);
    background-color: #fff;
    font-weight: 600;
    box-shadow: none;
}
.careers-section .accordion-box .accordion-item .accordion-button:not(.collapsed) {
    background: var(--secondary);
    color: #000;
    color: #fff;
}
.careers-section .accordion-box .accordion-item .accordion-button::after {
    content: "\f068";
    font-family: 'FontAwesome';
    color: var(--secondary);
    background: #fff;
    border-radius: 8px;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-image: none;
}
.careers-section .accordion-box .accordion-item .accordion-button.collapsed::after {
    content: "\f067";
}
.careers-section .accordion-box .accordion-item .accordion-body {
    background: #fff;
    padding: 20px;
}
.careers-section .accordion-box .accordion-item .accordion-body p {
    color: #7d8087;
}
.careers-section .accordion-box .accordion-item .accordion-body p span {
    color: var(--dark-gray);
    font-weight: 600;
}
.careers-section .accordion-box .accordion-item .accordion-button:not(.collapsed)::after {
    transform: none;
}






/* strengths-section */

@media (min-width: 941px) {
    .banner {
        overflow: hidden;
        position: relative;
    }
}
.strengths-item.bg1 {
    background-color: var(--light-gray);
}
.strengths-item.bg2 {
    background-color: var(--secondary);
    color: #fff;
}

.wrapper {
    padding-left: 25px;
    padding-right: 25px;
    margin: 0 auto;
    max-width: 1300px;
}
@media (min-width: 941px) {
    .banner__wrapper {
        display: flex;
        min-height: 470px;
    }
}
@media (min-width: 941px) {
    .wrapper {
        padding-left: 100px;
        padding-right: 100px;
    }
}

@media (min-width: 941px) {
    .media-block {
        height: auto;
        position: absolute;
    }
}
@media (min-width: 501px) {
    .media-block {
        height: auto;
        overflow: hidden;
        position: relative;
    }
}
@media (min-width: 941px) {
    .banner__media {
        order: 1;
        right: 0;
    }
}
@media (min-width: 941px) {
    .media-block--half-width {
        width: 50%;
    }
}

@media (min-width: 941px) {
    .media-block--half-width, .media-block--full-width {
        bottom: 0;
        margin: 0;
        overflow: hidden;
        position: absolute;
        top: -1px;
    }
}
@media (min-width: 941px) {
    .media-block {
        align-items: center;
        display: flex;
        margin-left: auto;
    }
}

.banner__content {
    padding-bottom: 50px;
    padding-top: 50px;
    width: 100%;
}
.content-block {
    overflow-wrap: break-word;
    word-wrap: break-word;
    z-index: 1;
}

@media (min-width: 941px) {
    .banner__content {
        align-self: center;
        padding-bottom: 130px;
        padding-top: 130px;
        position: relative;
        width: calc((23 / 58) * 100%);
    }
}
@media (min-width: 941px) {
    .banner__content {
        width: calc((23 / 55) * 100%);
    }
}
@media (min-width: 941px) {
    .banner--alternative .media-block--half-width {
        left: 0;
    }
    .banner--alternative .banner__media {
        margin-left: 0;
    }
    .banner--alternative .banner__content {
        margin-left: auto;
        order: 1;
    }
}



.strengths-item .banner__content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}
.strengths-item .banner__content .points li {
    font-size: 16px;
    color: #6d7a8c;
    font-weight: 400;
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
}
.strengths-item .banner__content .points li::before {
    content: "\f061";
    font-family: FontAwesome;
    font-size: 16px;
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
}
.strengths-item.bg2 .banner__content h2 {
    color: #fff;
}

.strengths-item.bg2 .banner__content p {
    color: #fff;
    opacity: 0.8;
    font-weight: 300;
}






.strengths-bs {
    margin-bottom: 4em;
}


.strengths-section {
    padding: 50px 0 250px;
    background-color: #f1f2f7;
}

.strengths-section .box {
    border-radius: 10px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}
.strengths-section .box .img-wrap {
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
}
.strengths-section .box.right .img-wrap {
    margin-right: 20%;
}
.strengths-section .box.left .img-wrap {
    margin-left: 20%;
}
.strengths-section .box .content {
    position: absolute;
    bottom: -40px;
    right: 0;
    background-color: #fff;
    padding: 40px;
    max-width: 800px;
    width: 750px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
}

.strengths-section .box.right .content {
    right: 0;
}
.strengths-section .box .content.left {
    left: 0;
}
.strengths-section .box .content h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}
.strengths-section .box .content .points li {
    font-size: 16px;
    color: #6d7a8c;
    font-weight: 400;
    margin-bottom: 5px;
    position: relative;
    padding-left: 30px;
}
.strengths-section .box .content .points li::before {
    content: "\f061";
    font-family: FontAwesome;
    font-size: 16px;
    color: var(--secondary);
    position: absolute;
    left: 0;
    top: 0;
}








/* ----------------------
Contact Section
------------------------*/
.contact-section .sec-title > * {
    text-align: left;
}
.contact-section .wrap {
    padding: 60px 60px 60px 60px;
    background: #ffffff;
}
.contact-section {
    background: #f1f2f7;
    padding: 50px 0 230px;
}

.contact-section .contact-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact-section .inner {
    background-color: #fff;
    padding: 60px 60px 40px 60px;
    border-radius: 10px;
    box-shadow: 0 20px 100px rgba(0, 0, 0, .1);
    height: 100%;
}

.contact-section .contact-form {
    padding: 0 0 0 40px;
    border-radius: 30px;
}

.contact-section .contact-info {
    margin-top: 30px;
}
.contact-section .contact-info .item span {
    display: block;
    color: #7d8087;
    font-weight: 400;
}
.contact-section .contact-info .item p,
.contact-section .contact-info .item a {
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 700;
}


.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 20px 20px 20px 20px;
    border-style: solid;
    border-width: 0px 0px 0px 0px;
    border-radius: 10px;
    border-color: #FFFFFF;
    background-color: #F9F9F9;
    width: 100%;
    opacity: 1;
    outline: none;
    font-family: 'Roboto', sans-serif;
}




.contact-form fieldset {
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--primary);
}

.contact-form button {
    margin-top: 0px;
    font-size: 16px;
    color: #fff;
    background-color: #070F3A;
    padding: 17px 30px 17px 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border: none;
    display: block;
    margin: auto;
    border-radius: 50px;
    font-weight: 500;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.contact-form button:hover {
    background-color: var(--primary);
}

.contact-form textarea {
    padding: 20px;
    height: 120px;
}

.contact-form::-webkit-input-placeholder {
    /* Edge */
    color: #cacaca;
}

.contact-form:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #cacaca;
}

.contact-form::-moz-placeholder {
    color: #cacaca;
}

.contact-form::-ms-input-placeholder {
    color: #cacaca;
}

.contact-form::placeholder {
    color: #cacaca;
}

form fieldset .radio {
    margin-top: 10px;
    position: relative;
}

form fieldset .radio li {
    margin: 0 10px;
}

.contact-form input[type="radio"] {
    width: auto;
    margin-bottom: 0;
}

form fieldset .radio li label {
    width: auto;
}


.contact-section .contact-box {
    background: url("../images/contact.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #070F3A;
    padding: 70px 50px 50px 50px;
    height: 100%;
}

.contact-section .contact-box .sec-title > * {
    color: #fff;
}

.contact-section .contact-box .address-box {
    display: flex;
    margin-bottom: 35px;
}

.contact-section .contact-box .address-box .icon {
    margin-right: 25px;
    width: 40px;
    height: 40px;
}

.contact-section .contact-box .address-box .text span {
    font-size: 18px;
    line-height: 27px;
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 5px;
    font-family: 'Roboto', sans-serif;
}
.contact-section .contact-box .address-box .text p {
    color: #ffffff;
    margin-bottom: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}
.contact-section .contact-box .address-box .text a {
    color: #ffffff;
}




/* partners-section */
.partners-section {
    padding: 80px 0;
}
.partners-section img {
    width: auto;
}



/* footer-top */
.footer-top {
    padding: 200px 0;
    background-image: url("../images/demo-it-business-08.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.footer-top::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-gray);
    opacity: 0.5;
    z-index: -1;
}

.footer-top .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}
.footer-top .inner .sub-heading {
    background: -webkit-linear-gradient(right, rgba(24, 25, 28, .5), rgba(255, 255, 255, 0.0));
    background: linear-gradient(to right, rgba(24, 25, 28, .5), rgba(255, 255, 255, 0.0));
    margin-bottom: 25px;
    padding: 4px 25px;
    padding-right: 40px;
    border-radius: 50px;
    display: inline-block;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.footer-top .inner .sub-heading i {
    margin-right: 10px;
}
.footer-top .inner h2 {
    font-size: 65px;
    line-height: 65px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}
.footer-top .inner a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 30px;
    background: aliceblue;
    text-transform: capitalize;
    display: inline-block;
    background-image: linear-gradient(to right, #0b58cb, #e94037, #0b58cb);
    background-size: 200% auto;
    color: #fff;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin-top: 30px;
}

/* -----------------
Footer Section
--------------------*/
footer {
    background: #fff;
    padding-bottom: 0px;
    position: relative;
}
footer .shape-image-animation {
    top: -150px;
    bottom: auto;
}

footer .footer-content {
    padding: 20px 0 70px;
}

footer .widget h2 {
    color: var(--dark-gray);
    font-size: 22px;
    text-transform: capitalize;
    font-weight: 700;
    margin-bottom: 10px;
}

footer .widget p {
    color: #0c121db3;
    margin: 0;
}
footer .widget-about .logo-box {
    margin-bottom: 20px;
}
footer .widget-about .logo-box img {
    width: auto;
}
footer .widget-about p {
    text-align: left;
    font-weight: 400;
    font-size: 16px;
}

footer .widget-links .nav-links ul {
    padding: 0;
    list-style-type: none;
}

footer .widget-links .nav-links ul li {
    margin-bottom: 0;
}

footer .widget-links .nav-links ul li a {
    color: #7d8087;
    font-size: 16px;
    padding: 3px 0;
    font-weight: 400;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: 0.3s ease;
    -o-transition: 0.3s ease;
    transition: 0.3s ease;
}

footer .widget-links .nav-links ul li:hover a,
footer .widget-links .nav-links ul li:hover a:before {
    color: var(--primary);
    background-color: transparent;
}

footer .widget-contact .contact-info ul {
    padding: 0;
}

footer .widget-contact .contact-info ul li {
    position: relative;
    color: #fff;
    padding-bottom: 20px;
}
footer .widget-contact .contact-info ul li span {
    display: block;
    color: #7d8087;
    font-weight: 400;
}
footer .widget-contact .contact-info ul li i {
    position: absolute;
    left: 0;
    width: 20px;
    height: 40px;
    color: var(--primary);
    font-size: 18px;
    margin-right: 0px;
    text-align: center;
    border-radius: 60px;
    line-height: 37px;
}

footer .widget-contact .contact-info ul li p {
    display: -ms-grid;
    display: grid;
    text-align: left;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 700;
}

footer .widget-contact .contact-info ul li p,
footer .widget-contact .contact-info ul li a {
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 700;
}

footer .widget-contact .contact-info ul li a.email {
    margin-top: 10px;
}

/* footer .widget-contact .contact-info h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
} */

/* ----------------------
Footer Bottom Section
------------------------*/
.footer-bottom {
    padding: 30px 0px;
    border-top: 1px solid #e4e4e4;
    position: relative;
}

.footer-bottom p,
.footer-bottom p a {
    margin: 0;
    color: #7d8087;
    font-size: 14px;
    font-weight: 500;
}

.footer-bottom .copyrights {
    float: left;
}

.footer-bottom .design {
    float: right;
}

.social-icons {
    margin-top: 20px;
    margin-bottom: 0px;
}

.social-icons li {
    display: inline-block;
    margin: 0 8px;
}

.social-icons li a {
    display: block;
    background-color: #ffffff;
    border-radius: 50px;
    text-align: center;
    line-height: 42px;
    -webkit-transition: 600ms ease all;
    -o-transition: 600ms ease all;
    transition: 600ms ease all;
}
.social-icons li a:hover i {
    color: var(--primary);
}
.social-icons li a i {
    color: var(--dark-gray);
    font-size: 18px;
}

/* ----------------------
Go To Top
------------------------*/

.scroll-top {
    width: 55px;
    height: 55px;
    line-height: 40px;
    border: none;
    position: fixed;
    bottom: 50px;
    right: 50px;
    font-size: 22px;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    z-index: 99;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
    background: var(--secondary);
    -webkit-transition: 0.5s ease;
    -o-transition: 0.5s ease;
    transition: 0.5s ease;
  }
  .scroll-top .fa {
    color: #fff;
  }
  .scroll-top:hover{
    background: var(--primary);
  }
  .scroll-top.show {
    bottom: 65px;
  }
  .scroll-top span{
    color: #fff;
  }
  /* .scroll-top:after {
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 1;
    background: -o-radial-gradient(center, ellipse, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0) 80%);
  } */
  






.captcha-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.captcha-img img {
    width: 200px;
}

#captcha_reload i {
    color: #000000;
    font-size: 22px;
    line-height: 40px;
    padding-left: 10px;
}

#captcha-field {
    margin: 0;
}

#captcha-error {
    text-align: center;
}

#captcha-error p {
    margin: 0;
}

#captcha_reload i {
    color: #000;
    font-size: 20px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

#captcha-field {
    margin-top: 0px;
}

#captcha_image {
    width: 80%;
    height: 100%;
    margin: 0 0px 0 0;
    text-align: center;
}

#success_message {
    text-align: center;
    background-color: #dff2d5;
    padding: 5px 10px;
    border: 1px solid #399d04;
    margin-top: 20px;
}

#success_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.help-block.error,
#file-error p {
    color: #f00;
    font-size: 14px;
}

#employment_type-error {
    position: absolute;
    top: 100%;
}

#error_message {
    text-align: center;
    background-color: #f2d5d5;
    padding: 5px 10px;
    border: 1px solid #9d0404;
    margin-top: 20px;
}

#error_message h3 {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}



@media only screen and (max-width: 1366px) {
    .about-section .img-wrap::after {
        right: 15px;
    }
    .banner-slider .slide-content .content .heading h2 {
        font-size: 3vw;
        line-height: 3vw;
    }
    .banner-slider .slide-content .content .text {
        margin-bottom: 10px;
    }
    .banner-slider .slide {
        background-position: center !important;
    }
    .banner__content {
        padding-bottom: 80px;
        padding-top: 80px;
    }
}

@media only screen and (max-width: 1199px) {
    .navbar .contact-info {
        display: none;
    }
    .banner-slider .slide {
        background-position: center top !important;
    }
    .banner-slider .slide-content .content {
        width: 60%;
    }
    .banner-bottom .inner {
        margin-top: 0;
    }
    .about-section {
        padding: 50px 0;
    }
    .sec-title h2 {
        font-size: 30px;
    }
    .subscribe-section .right-box .inner-img-box {
        display: flex;
        position: relative;
        flex-direction: column;
        gap: 10px;
    }
    .subscribe-section .right-box .inner-img-box .img-box {
        margin-right: 0;
    }
    .subscribe-section .right-box .inner-img-box .content-box .title {
        left: 0;
        transform: none;
        width: 100%;
    }
    .subscribe-section .right-box .skills-set {
        margin-top: 80px;
    }
    .testimonials-section .inner .sec-title h2 {
        font-size: 32px;
    }

    .careers-section {
        padding-bottom: 140px !important;
    }
    .client-two .tab-content .content {
        justify-content: center;
        margin-top: 50px;
    }
    .client-two .tab-content .content .img-box {
        margin-top: 0;
    }
    .client-two .tab-content .content .text {
        position: relative;
        bottom: 0;
        right: 0;
    }
    .projects-section .nav-tabs {
        float: left;
        margin-bottom: 40px;
    }
    .projects-section .nav-tabs li button {
        margin: 0 30px 0 0;
    }
    footer .shape-image-animation {
        display: none;
    }
    footer {
        padding-top: 60px;
    }

    .footer-top .left-box h3 {
        padding-left: 60px;
    }
    
}

@media only screen and (max-width: 991px) {
    .top-bar {
        display: none;
    }
    .sec-title {
        text-align: left;
    }
    .sec-title h2 {
        text-align: left;
    }
    .header {
        position: relative;
    }
    .navbar {
        background-color: #fff !important;
        padding: 20px 20px;
    }
    .navbar-brand .light {
        display: none;
    }
    .navbar-brand .dark {
        display: block;
    }
    .navbar-nav {
        margin-top: 30px;
        margin-left: 0;
    }
    .navbar-nav li .nav-link {
        padding: 10px 0px !important;
        color: var(--black) !important;
    }
    .dropdown .dropdown-toggle::after {
        content: "\f107";
        font-family: FontAwesome;
    }
    .navbar-nav li.dropdown:hover .dropdown-toggle::after {
        content: "\f107";
        font-family: FontAwesome;
    }
    .banner-slider .slide-content .content .text p {
        font-size: 1.5vw;
    }
    .banner-slider .slide-content .content {
        width: 80%;
    }
    .about-section .clients-row {
        justify-content: center;
        width: 80%;
        margin: 20px auto;
    }
    .about-section .clients-row a {
        margin-bottom: 30px;
    }
    .about-section .img-2 {
        right: 0;
    }
    .about-section .content {
        margin-top: 50px;
    }
    .services-section {
        padding: 80px 0;
    }
    .services-section .sec-title {
        margin-bottom: 0;
    }
    .services-section .sec-title h2 {
        font-size: 40px;
        font-weight: 800;
        text-align: left;
    }
    .services-section .sec-title h2 em {
        display: inline-block;
    }
    .services-section .text-inner p {
        text-align: left;
    }
    .services-section .custom-nav {
        text-align: center;
    }
    .services-section .box {
        margin-bottom: 50px;
    }
    .services-section .box .box-content .inner h3,
    .services-section .box .box-content .inner p {
        text-align: left;
    }

    .client-section .item {
        align-items: center;
    }
    .careers-section .accordion-box {
        margin-top: 50px;
    }

    footer .shape-image-animation {
        display: none;
    }
    
    
    .projects-section .sec-title {
        margin-bottom: 0;
    }
    .projects-section .sec-title h2 {
        font-size: 40px;
    }
    .projects-section .nav-tabs {
        float: left;
        margin-bottom: 10px;
    }
    .projects-section .tabs {
        float: none;
        text-align: center;
        margin-bottom: 30px;
    }

    .client-two .circle-wrap .nav-tabs {
        margin-top: 30px;
        margin-left: 0;
    }
    .client-two .circle-wrap .nav-tabs .nav-item {
        padding: 10px 0;
    }
    .client-two .circle-wrap .nav-tabs .tab2 {
        margin-left: 00px;
    }
    .client-two .tab-content .content {
        justify-content: flex-start;
    }


    .strengths-section {
        padding: 100px 0;
        margin-bottom: 60px;
    }
    .strengths-section .box .content {
        position: relative;
        width: 100%;
        max-width: 100%;
    }
    .banner-bottom .img-box {
        margin-left: 0px;
    }

    .services-page-section {
        padding: 50px 0;
        margin-bottom: 60px;
    }
    .services-page-section .box {
        margin-bottom: 50px;
    }
    .services-page-section .box.left .img-wrap {
        margin-left: 0;
    }
    .services-page-section .box.right .img-wrap {
        margin-right: 0;
    }
    .services-page-section .box .content {
        position: relative;
        bottom: 0;
        width: 100%;
    }
    .wrapper {
        padding-top: 80px;
    }
    .banner__content {
        padding-bottom: 60px;
        padding-top: 40px;
    }

    .footer-top .inner h2 {
        font-size: 35px;
        line-height: 45px;
    }
    .contact-section {
        padding: 100px 0;
        margin-bottom: 60px;
        padding-bottom: 60px !important;
    }
    .contact-section .contact-form {
        padding: 0 0 0 0px;
        margin-top: 40px;
    }

    .scroll-top.show {
        bottom: 105px;
    }
    footer .footer-content {
        padding: 20px 0 10px;
    }
    footer .widget {
        margin-bottom: 40px;
    }
    .footer-bottom .copyrights,
    .footer-bottom .design {
        float: none;
    }
    .footer-bottom .copyrights p,
    .footer-bottom .design p {
        text-align: center;
    }
}


@media only screen and (max-width: 767px) {
    .shape-image-animation {
        display: none;
    }
    .banner-slider .slide-content .content {
        width: 100%;
    }
    .banner-slider .slide-content .content .heading h2 {
        font-size: 45px;
        line-height: 55px;
    }
    .industries-section .colm:nth-child(2) .item,
    .industries-section .colm:nth-child(6) .item,
    .industries-section .colm:nth-child(10) .item {
        border-right: none;
    }
    .industries-section .colm:nth-child(9) .item,
    .industries-section .colm:nth-child(10) .item {
        border-bottom: 1px solid #ffffff1a;
    }
    .banner-slider .slide-content .content .sub-heading span {
        font-size: 12px;
        line-height: 20px;
    }
    .banner-slider .slide-content .content .text p {
        font-size: 3.5vw;
    }

    .about-section .box .wrapper {
        top: 90%;
        left: 0;
    }
    .about-section .img-wrap::after {
        right: -25px;
    }
    .about-section .img-wrap::after {
        display: none;
    }
    .testimonials-section .logo {
        margin-top: 40px;
    }
    .testimonials-section .logo img {
        margin: auto;
    }
    .testimonials-section .item p,
    .testimonials-section .item h3 {
        text-align: center;
    }

    .management-section {
        padding: 100px 0;
        margin-bottom: 60px;
    }
    .management-section .content {
        margin-top: 40px;
    }

    .services-page-section {
        padding: 100px 0;
        margin-bottom: 60px;
    }
    .services-page-section .content-box {
        margin-top: 40px;
    }
    .contact-section .inner {
        padding: 30px;
    }

    .client-two .circle-wrap .info-box {
        width: auto;
        height: auto;
        border-radius: 50%;
        border: none;
        background-color: transparent;
        display: flex;
        align-items: center;
        padding: 0px;
        box-shadow: none;
    }
    .client-two .tab-content .content .img-box {
        width: 100%;
    }
    .client-two .tab-content .content .text {
        width: 100%;
    }
    .client-two .tab-content .content {
        flex-direction: column;
        gap: 20px;
    }


    .footer-top {
        padding: 70px 0 100px;
    }
    footer {
        padding-top: 80px;
    }
}


@media only screen and (max-width: 575px) {
    .client-section .item {
        flex-direction: column;
        align-items: self-start;
    }
    .client-section .item .img-box {
        width: 100px;
    }
    .clients-row .col {
        flex: 1 0 100%;
    }
    .industries-section .item {
        border-right: none !important;
    }
    .testimonials-section img {
        margin: auto;
    }
    .banner-bottom .box .inner-box {
        flex-direction: column;
    }
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 50px;
        right: 0px;
        font-size: 19px;
    }
}

@media only screen and (max-width: 425px) {
   .sec-title h2 {
        font-size: 32px !important;
        font-weight: 800;
    }
    .banner-slider .slide-content .content {
        height: 700px;
        top: 70%;
    }
    .banner-slider .slide-content .content .buttons-wrap {
        flex-direction: column;
    }
}

