
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}
.success-message-style {
    color: #06BBCC;
    position: absolute;
    top: 100px;
    z-index: 9;
    font-size: 20px;
    transform: translate(-50%, -50%);
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}
.navbar-light .dropdown-item{
    padding: 0.5rem 1rem;
    font-size: .8rem;
    text-transform: uppercase;
    font-weight: bold;
}
@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    .contact-page-header .header-carousel .owl-carousel-item{
                min-height: auto;
    }
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/home/homepage-banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

/*** Contact Page ***/
.contact-page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/home/contactus.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Circular Texbox***/
.circular-text-box {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-image: url(./../img/company/vision_mission.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}


.row-justified {
  display: flex;
  justify-content: center;
  gap: 250px;
}

.element {
  /* Add styling for individual elements if needed */
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Solutions ***/
.solutions-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.solutions-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .solutions-carousel::before,
    .solutions-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .solutions-carousel::before,
    .solutions-carousel::after {
        width: 300px;
    }
}

.solutions-carousel .owl-item .solutions-text,
.solutions-carousel .owl-item.center .solutions-text * {
    transition: .5s;
}

.solutions-carousel .owl-item.center .solutions-text {
    background: var(--primary) !important;
}

.solutions-carousel .owl-item.center .solutions-text * {
    color: #FFFFFF !important;
}

.solutions-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.solutions-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.solutions-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--dark);
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.solution-section p{
    text-align: justify;
}
.solution-section .service-item{
    min-height: 482px;
}
.solution-section .service-item{
    background-color: transparent;
    border: 1px solid var(--primary);
}
.solution-section .service-item:hover{
    background-color: var(--primary);
    border: 1px solid var(--primary);
}



/* Service Tab Section Start */

.service-tab-section .service-box .contents .btn-style-one {
    margin-top: 20px;
}
.service-tab-section .service-box .content-list li {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    padding: 4px 0px;
    padding-left: 27px;
    list-style: none;
    position: relative;
}
.service-tab-section .tab-content .section-title::after, .service-tab-section .tab-content .section-title::before {
 display: none;
}
.service-tab-section .service-box .content-list {
    padding-left: 0;
}

.service-tab-section .service-box .content-list li i {
    position: absolute;
    left: 0;
    top: 9px;
}
.service-tab-section .service-box img {
    border-radius: 14px;
    width: 100%;
    box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
}

.service-tab-section .tabs .nav-tabs li:not(:last-child) {
    margin-right: 10px;
}
.service-tab-section .tabs .nav-tabs > li, .tabs .nav-pills > li {
    margin-bottom: 10px;
}

.service-tab-section .tab-content {
    position: relative;
    float: left;
    width: 100%;
    z-index: 99;
}

.service-tab-section .btn-style-one {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 27px;
    padding: 8px 36px;
    background: #48bdc5;
    border: 1px solid #48bdc5;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Source Sans Pro", sans-serif;
    transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.service-tab-section .service-box .content-list {
    padding-left: 0;
}
.service-tab-section .service-box .content-list li {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    padding: 4px 0px;
    padding-left: 27px;
    list-style: none;
    position: relative;
}

.service-tab-section .service-box .contents {
    margin-left: 30px;
}
.service-tab-section .service-box .section-title h3:before {
    position: absolute;
    left: 0px;
    content: "";
    bottom: 0px;
    background: #333333;
    height: 1px;
    width: 55px;
}

.service-tab-section .service-box .section-title h3 {
    position: relative;
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    padding-bottom: 20px;
    margin-bottom: 45px;
    color: #000;
    text-transform: uppercase;
}

.service-tab-section  .tabs .nav-tabs {
    text-align: center;
    border-bottom: 0;
    margin-bottom: 20px;
}

.service-tab-section .tabs .nav-tabs li a {
    text-transform: capitalize;
    font-size: 20px;
    padding: 10px 25px;
    font-weight: 600;
    color: #4d4d4d;
    font-family: "Source Sans Pro", sans-serif;
    border: 2px solid #48bdc5;
    border-radius: 0;
    transition: all 0.3s ease;
  }
  .service-tab-section .tabs .nav-tabs li a.active, .service-tab-section .tabs .nav-tabs li a:hover {
    color: #fff;
    background: #48bdc5;
    border: 2px solid #48bdc5;
  }

.service-tab-section {
    position: relative;
  }
  .service-tab-section .outer-box {
    position: relative;
    z-index: 1;
  }
  @media only screen and (min-width: 1920px) {
    .service-tab-section .tab-list-column .tab-list {
      margin-left: 30% !important;
      margin-right: -30% !important;
    }
  }  
  .service-tab-section .tab-content .inner-box {
    padding-left: 0px;
  }
  .service-tab-section .tab-list-column {
    width: 100% !important;
  }

  .service-tab-section .tab-list-column .tab-list,
.service-tab-section .tab-content .inner-box {
    float: none !important;
    padding-left: 115px !important;
    max-width: 700px !important;
  }

  .service-tab-section .tab-content {
    width: 100% !important;
  }

  .service-tab-section .tab-content .content-list {
    margin-top: 40px !important;
  }
  .service-tab-section .tab-list-column .tab-list,
  .service-tab-section .tab-content .inner-box {
      margin-left: 0px !important;
    }
    .navbar-light.sticky-top{
        justify-content: space-between;
    }
    @media (min-width:992px){
        .navbar-expand-lg .navbar-collapse {
            flex-grow: initial;
        }
    }

    @media only screen and (max-width: 567px) {
   
        .service-tab-section .tab-list-column .tab-list,
      .service-tab-section .tab-content .inner-box {
          padding-left: 20px !important;
        }
      }

      .service-tab-section .service-box .contents {
        margin-left: 0;
        margin-top: 50px;
    }
    .service-tab-section .tab-content .content-list {
        margin-top: 40px !important;
    }


    /* Custom Logo */

    .logo img{
        max-width: 25%;
    }
    .logo .logo-tagline {
        font-size: 10px;
    }
    .contact-us{
        font-size: 17px;
    }
    .required{
        color:red;
    }


    /* Career Page */

    .inner-page-main-wrapper {
        margin-top: 100px;
        margin-bottom: 100px;
    }
    .inner-page-main-wrapper .trending-main-box .trending-upper-text .icon-img:hover {
        box-shadow: none;
        cursor: pointer;
    }
    .inner-page-main-wrapper .trending-main-box .trending-upper-text .icon-img:hover:after {
        z-index: 10;
        border: 2px dashed var(--dark);
        -webkit-transform: rotate(360deg);
        -webkit-transition-duration: 9s;
        -webkit-transition-delay: now;
        -webkit-animation-timing-function: linear;
        -webkit-animation-iteration-count: infinite;
    }
    .inner-page-main-wrapper .trending-main-box {
        border: 1px solid #e5e5e5;
        text-align: center;
        padding: 35px 20px;
        border-radius: 4px;
        margin-bottom: 30px;
        transition: all 0.5s;
    }
    .ps-rel {
        position: relative;
    }
    .inner-page-main-wrapper .trending-main-box .trending-upper-text {
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px;
    }
    .inner-page-main-wrapper .trending-main-box .trending-lower-text {
        padding-top: 20px;
    }
    .inner-page-main-wrapper .trending-main-box .trending-lower-text {
        padding-top: 20px;
    }
    .inner-page-main-wrapper .trending-main-box .trending-upper-text .icon-img {
        width: 100%;
        max-width: 90px;
        height: 90px;
        box-shadow: 0 0 0 2px #efefef;
        margin: auto;
        position: relative;
        border-radius: 50%;
        padding: 20px 0px;
    }
    .inner-page-main-wrapper .trending-main-box .trending-upper-text p {
        color: #797979;
        padding-top: 8px;
    }

    .inner-page-main-wrapper .trending-main-box .trending-upper-text .icon-img:after {
        top: -2px;
        left: -2px;
        padding: 0;
        z-index: -1;
        content: "";
        width: 94px;
        height: 94px;
        border-radius: 50%;
        position: absolute;
    }
    .inner-page-main-wrapper .trending-main-box .trending-upper-text h5 {
        font-size: 20px;
        padding-top: 20px;
    }
    .inner-page-main-wrapper .trending-main-box .trending-lower-text .custom-btn{
        display: inline-block;
        text-align: center;
        line-height: 45px;
        width: 48%;
        height: 45px;
        padding: 0px 20px;
        border-radius: 30px;
        margin-top: 16px;
        position: relative;
        overflow: hidden;
    }
    .inner-page-main-wrapper .trending-main-box .trending-lower-text .custom-btn1 {
            color: #fff;
            background-color: var(--primary);
    }
    .inner-page-main-wrapper .trending-main-box .trending-lower-text .custom-btn2 {
        color: var(--dark);
        border: 1px solid var(--dark);
        background-color: #fff;
}
    .inner-page-main-wrapper .trending-main-box .trending-lower-text .custom-btn:hover {
        background-color: var(--dark);
        color: #fff
    }

    /* Career Details Start */

    .career-details{
        background-color: #f2f5fc;
        margin: 0px ;
        padding: 100px 0;
        }

    .inner-page-main-wrapper .develop_main_wrapper {
        background: #fff;
        padding: 30px;
        border-radius: 4px;
        box-shadow: 5px 0px 20px rgba(17, 17, 17, 0.0392156863);
        margin-bottom: 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .inner-page-main-wrapper .develop_main_wrapper .bid_button {
        display: flex;
    }
    .inner-page-main-wrapper .develop_main_wrapper .develop-cont h3 {
        font-size: 22px;
    }
    .inner-page-main-wrapper .develop_main_wrapper .develop-cont ul {
        display: flex;
        align-items: center;
        justify-content: start;
        margin-top: 15px;
    }
    .inner-page-main-wrapper .develop_main_wrapper .develop-cont h3 small {
        font-size: 16px;
        font-weight: 400;
        margin-left: 15px;
        color: var(--dark);
    }
    .inner-page-main-wrapper .develop_main_wrapper .develop-cont h3 small i {
        color: var(--primary);
    }
    .inner-page-main-wrapper .develop_main_wrapper .develop-cont ul li {
        padding-right: 30px;
        color: #655c5c;
    }
    .inner-page-main-wrapper .develop_main_wrapper .develop-cont ul li i {
        margin-right: 7px;
        color: #0060aa;
    }
    ul {
        padding: 0px;
        list-style-type: none;
    }
    .inner-page-main-wrapper .develop_main_wrapper .bid_button a {
        display: inline-block;
        border: 1px solid var(--primary);
        background-color: var(--primary);
        color: #fff;
        width: 200px;
        text-align: center;
        height: 50px;
        line-height: 50px;
        border-radius: 30px;
        position: relative;
        overflow: hidden;
    }


    /* 2nd Box */

    .inner-page-main-wrapper .descript_main_wrapper {
        background: #fff;
        padding: 0 0px 15px;
        border-radius: 4px;
        box-shadow: 5px 0px 20px rgba(17, 17, 17, 0.0392156863);
        margin-bottom: 30px;
        float: left;
        width: 100%;
    }

    .inner-page-main-wrapper .descript_main_wrapper {
        background: #fff;
        padding: 0 0px 15px;
        border-radius: 4px;
        box-shadow: 5px 0px 20px rgba(17, 17, 17, 0.0392156863);
        margin-bottom: 30px;
        float: left;
        width: 100%;
    }
    .inner-page-main-wrapper .descript_main_wrapper h4 {
        font-size: 22px;
        padding: 30px;
        border-bottom: 1px solid #eeeeee;
    }
    .inner-page-main-wrapper .descript_main_wrapper p {
        padding: 30px;
        display: inline-block;
    }
    .inner-page-main-wrapper .descript_main_wrapper h4 {
        font-size: 22px;
        padding: 30px;
        border-bottom: 1px solid #eeeeee;
    }
    .inner-page-main-wrapper .descript_main_wrapper ul {
        padding: 0 30px 30px;
        display: inline-block;
        padding-top: 15px !important;
    }
    .inner-page-main-wrapper .descript_main_wrapper ul li {
        padding-top: 7px;
    }
    .inner-page-main-wrapper .descript_main_wrapper ul li span {
        color: #0060aa;
        padding-right: 15px;
        width: 30px;
        float: left;
    }
    .img-fluid{
        width: 100%;
    }
    .inner-page-main-wrapper .descript_main_wrapper ul li p {
        width: calc(100% - 45px);
        float: left;
        padding: 0;
        margin: 0;
        padding-bottom: 15px;
    }
    .inner-page-main-wrapper p{
        margin: 0;
    }
    .inner-page-main-wrapper .descript_main_wrapper h4 {
        font-size: 22px;
        padding: 30px;
        border-bottom: 1px solid #eeeeee;
    }

    /* Sidebar */
    .inner-page-main-wrapper .descript_main_wrapper .job-overview {
        width: 100%;
        display: inline-block;
    }
    .inner-page-main-wrapper .descript_main_wrapper .job-overview {
        width: 100%;
        display: inline-block;
    }
    .inner-page-main-wrapper .descript_main_wrapper .job-overview li .job-icon {
        width: 40px;
        float: left;
    }
    .inner-page-main-wrapper .descript_main_wrapper .job-overview li .job-text {
        width: calc(100% - 40px);
        float: left;
    }
    .inner-page-main-wrapper .descript_main_wrapper .job-overview li .job-text {
        width: calc(100% - 40px);
        float: left;
    }
    .inner-page-main-wrapper .descript_main_wrapper .job-overview li .job-text p {
        padding: 0;
        color: #111;
    }
    .inner-page-main-wrapper .descript_main_wrapper .job-overview li .job-text span {
        width: 100%;
        font-size: 14px;
        color: #797979;
    }

    .inner-page-main-wrapper .sidebar_widget {
        border-radius: 4px;
        background-color: #fff;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }
    .inner-page-main-wrapper .sidebar_widget .title-sidebar {
        font-size: 20px;
        padding: 30px;
        border-bottom: 1px solid #eeeeee;
    }
    .cat {
        padding: 30px;
        float: left;
    }
    .cat label {
        width: 160px;
        background: transparent;
        margin-bottom: 15px;
        margin-right: 15px;
    }
    .cat label input {
        position: absolute;
        display: none;
        color: #797979 !important;
    }
    .cat label input + span {
        color: #797979;
    }
    .cat label span {
        text-align: center;
        border-radius: 30px;
        display: block;
        padding: 8px 12px;
        border: 1px solid #797979;
    }



    .inner-page-main-wrapper .descript_main_wrapper .job-overview li .job-icon i {
        font-size: 20px;
        color: #0060aa;
    }
    .inner-page-main-wrapper .descript_main_wrapper .job-overview li + li {
        margin-top: 4px;
        padding-top: 60px;
    }
    .inner-page-main-wrapper .descript_main_wrapper ul li {
        padding-top: 7px;
    }
    .skills.float_left {
        float: left;
        width: 100%;
    }
    @media (max-width:767px){
        .inner-page-main-wrapper .develop_main_wrapper {
            display: block;
        }
        .inner-page-main-wrapper .develop_main_wrapper .bid_button {
            margin-top: 20px;
        }
        .inner-page-main-wrapper .develop_main_wrapper .bid_button {
            margin-top: 20px;
        }
        .inner-page-main-wrapper .develop_main_wrapper .develop-cont ul {
            display: block;
        }
        .inner-page-main-wrapper {
            padding: 55px 0px;
        }
        .header-carousel .owl-carousel-item video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
    }


/* Community Involvment CSS Starting */

.events-section .welcome-block-1 {
    position: relative;
    display: block;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, .1);
}
.events-section .img-responsive{
    display: block;
    max-width: 100%;
    height: auto;
}
.events-section .welcome-block-1 .welcome-block-content {
    position: relative;
    overflow: hidden;
    padding: 30px 20px 24px 20px;
    background-color: #ffffff;
}
.events-section .welcome-block-1 .welcome-block-content:before {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    content: '';
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.events-section .welcome-block-1 .welcome-block-content:before {
    background-color: #ffb400;
}
.events-section .welcome-block-1 h5 {
    text-transform: uppercase;
    font-weight: 800;
}
.events-section h5 {
    font-size: 18px;
}
.events-section a {
    color: #333;
    transition: all 0.3s ease 0s;
}
.events-section p {
    font-size: 14px;
    color: #848484;
    line-height: 30px;
}
.events-section p {
    margin: 0 0 10px;
}
.events-section .welcome-block-1:hover {
    box-shadow: 5px 5px 20px rgba(0, 0, 0, .2);
}
.events-section .welcome-block-1:hover .welcome-block-content:before {
    width: 100%;
}
.events-section .welcome-block-1 .welcome-block-content:before {
    background-color: var(--primary);
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    content: '';
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.events-section .welcome-block-1 .welcome-block-content:before {
    background-color: var(--primary);
}
.events-section .welcome-block-1:hover h5 a{
    color: var(--primary);
}

.dropdown-item.active, .navbar a.nav-link.dropdown-toggle.active, .navbar a.nav-item.nav-link.dropdown-item.active {
    color: #fff;
    text-decoration: none;
    background-color: #06BBCC;
}

.navbar a.nav-link.dropdown-toggle, .navbar a.nav-item.nav-link.dropdown-item{
    padding-left: 1rem;
    padding-right: 1rem;
}


div#aboutus .gx-4 p.mb-0{display:flex;}

