* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg_color: #00aef7;
    --bg_blue: #2e3198;
    --white: #fff;
    --black: #000;
}

body {
    position: relative;
    overflow-x: hidden;
    font-family: "Arimo", sans-serif;
}

img {
    max-width: 100%;
    transition: ease-in-out .3s;
}

.img {
    position: relative;
    overflow: hidden;
}

.img::after {
    content: "";
    width: 0%;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    background-color: #fff;
    transition: 1s;

}


@keyframes mymove {
    from {
        width: 0%;
    }

    to {
        width: 100%;
        opacity: 0;
    }
}

p {
    font-size: 15px;
    line-height: 28px;
}

a {
    text-decoration: none;
    transition: ease-in-out .3s;
    font-family: "Inter", sans-serif;
}

li {
    list-style: none;
    font-family: "Inter", sans-serif;
}

ul {
    padding-left: 0;
}

.my {
    margin: 80px 0;
}

.logo img {
    width: 106px;
    position: relative;
    z-index: 9;
    border-radius: 50%;
}

.logo_head {
    position: relative;
    width: 100%;
    z-index: 999;
}

.search i {
    margin-right: 5px;
}

.search a {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.search a:hover {
    color: var(--bg_blue);
}

.search {
    padding: 6px 0;
    position: relative;
}

.search::after {
    content: "";
    width: 0%;
    height: 1.5px;
    position: absolute;
    bottom: 0%;
    left: 50%;
    background-color: var(--bg_blue);
    transition: ease-in-out .4s;
}

.search:hover::after {
    width: 100%;
    left: 0;
}

.header-contact li a {
    color: #000;
    font-size: 14px;
    font-weight: 600;
}

.nab_bar {
    display: flex;
    justify-content: center;
}

#myHeader.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    animation: slideDown 1s ease-out;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    background-color: #fff;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.clk_btn {
    position: absolute;
    right: 0;
    top: 32%;
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
}

.nab_bar li a {
    color: var(--black);
    padding: 38px 13px;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
}

.nab_bar li a:hover {
    color: var(--bg_blue);
}

.nab_bar li {
    position: relative;
    z-index: 9;
}

.nab_bar li::after {
    content: "";
    width: 0%;
    height: 2px;
    position: absolute;
    bottom: 32%;
    left: 50%;
    background-color: var(--bg_blue);
    transition: ease-in-out .4s;
}

.nab_bar li:hover::after {
    width: 100%;
    left: 0;
}

nav {
    position: relative;
}


.top_bg {
    padding-left: 145px;
}

.main_banner {
    position: relative;
}


.droupdown {
    position: absolute;
    background-color: #fff;
    border-top: 2px solid var(--bg_color);
    padding: 10px 0;
    left: 0;
    top: 100%;
    width: 290px;
    display: none;
    max-height: 490px;
    overflow: auto;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.droupdown li {
    padding: 0;
}

.droupdown li a {
    display: block;
    padding: 8px 15px;
    color: var(--black);
}

.droupdown li a:hover {
    background-color: var(--bg_blue);
    color: var(--white);
}

.banner_text {
    color: var(--white);
    z-index: 99;
    position: relative;
}


.nav_contact i {
    background-color: var(--bg_color);
    padding: 12px;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 5px;
    color: var(--white);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 2px 20px;
}

.banner_pera {
    margin: 15px 0;
}

.banner_head {
    font-size: 4rem;
    font-family: "Tilt Neon", sans-serif;
    color: #FFF;
    text-shadow: 0px 0px 20px #00affa, 0px 0px 20px #01aff9;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: uppercase;
    display: block;
    margin: 25px 0;
}

.form-block {
    background-color: var(--white);
    margin: 10px 0;
    position: relative;
    width: 70%;
    border-radius: 5px;
}

.form-block input {
    border: none;
    outline: none;
    padding: 18px 20px;
    width: 100%;
    border-radius: 5px;
    padding-right: 30px;
}

.form-block i {
    position: absolute;
    color: var(--bg_blue);
    right: 20px;
    top: 36%;
    font-size: 20px;
}

.banner_btn button {
    margin: 10px 0;
    padding: 17px 34px 14px !important;
    line-height: 1.2;
    text-transform: uppercase;
    transition: .25s cubic-bezier(.215, .61, .355, 1);
    font-weight: 600;
    letter-spacing: 1.2px;
    font-family: "Inter", Helvetica, Arial, "Droid Sans", "Arimo", sans-serif;
    font-size: 1rem;
    background-color: #FFF;
    border-radius: 50px;
    border: none;
}

.banner_btn button i {
    margin-right: 10px;
}

.banner_btn button:hover {
    color: #000;
    box-shadow: 0px 0px 8px 0px #01aff9, 0px 0px 20px 0px #01aff9;
}

.banner_text {
    padding: 15% 0;
}

.reversed a {
    margin: 40px 0 0;
    border-bottom: 1px solid #fff;
    font-size: 23px;
    font-weight: 600;
    line-height: 22px;
    color: var(--white);
    display: inline-block;
}

.home_ab .img {
    text-align: center;
}

.head_1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    font-family: "Inter", Helvetica, Arial, "Droid Sans", "Arimo", sans-serif;
}

.ab_text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    color: #282a32;
    margin: 0 0 10px;
}

.btn_ab {
    margin-top: 25px;
}

.all_btn {
    display: inline-block;
    align-items: center;
    text-align: center;
    border: 2px solid var(--bg_blue);
    background-color: initial;
    color: var(--bg_blue);
    font-family: "Inter", Helvetica, Arial, "Droid Sans", "Arimo", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    border-radius: 40px;
    line-height: 1.2;
    padding: 16px 33px 15px;
    text-transform: uppercase;
    transition: .25s cubic-bezier(.215, .61, .355, 1);
}

.all_btn:hover {
    background-color: var(--bg_blue);
    color: var(--white);
}

.manpower .card-body {
    position: relative;
    padding: 24px;
}

.cardInfoContainer {
    display: block;
    box-shadow: 3px 8px 16px 0 rgba(0, 0, 0, .06);
    background-color: #fff;
    margin: 0 13px;
    height: 100%;
    text-align: left;
}

.card-body .title {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 10px;
}

.specializations {
    overflow: hidden;
}

.card-body p {
    color: #282a32;
    margin-top: 0;
    margin-bottom: 20px;
}

.head_2 {
    display: block;
    font-size: 24px;
    color: var(--bg_blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.manpower {
    background-color: #EFEFEF;
    padding: 60px 0;
}

.manpower_btn a {
    color: var(--bg_blue);
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    border-bottom: 1px solid #2e3198;
}

.manpowe .img {
    text-align: center;
}

.create {
    background-color: #282a32;
    overflow: hidden;
}

.create_contant {
    padding-right: 20%;
    color: var(--white);
    padding-left: 10%;
}

.create_btn .all_btn {
    border-color: #fff;
    color: var(--white);
    margin-top: 20px;
}

.create_btn .all_btn:hover {
    background-color: var(--white);
    color: var(--bg_blue);
}

.specializations_box {
    box-shadow: 3px 8px 16px 0 rgba(0, 0, 0, .06);
    background-color: #fff;
    margin: 0 13px;
    height: 100%;
    border-radius: .25rem;
    padding: 30px;
    text-align: left;
}

.specializations_box .img {
    text-align: center;
    margin-bottom: 20px;
}

.specializations_box .img img {
    width: 109px;
}

.specializations_box span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 10px;
}

.specializations_box a {
    color: var(--bg_blue);
    font-size: 18px;
    text-align: center;
    display: block;
    font-weight: 600;
    margin-top: 25px;
}

.powering {
    background-color: #efefef;
    padding: 70px 0;
}

.power_text {
    padding: 40px 30px;
}

.power_itewm img {
    height: 100%;
}

.power_itewm {
    background-color: var(--white);
}

.powering_head {
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
}

.huManpower {
    background-color: #282a32;
    color: var(--white);
    overflow: hidden;
}

.huManpower img {
    width: 100%;
    height: 100%;
}

.huManpower_contant {
    padding: 94px 100px 67px 38px;
}

.huManpower_contant .all_btn {
    color: #fff;
    border-color: #fff;
}

.huManpower_contant .all_btn:hover {
    background-color: #fff;
    color: #000;
}

.huManpower_btn {
    margin-top: 30px;
}

footer {
    margin-top: 50px;
}

footer .container {
    padding-top: 40px;
    padding-bottom: 60px;
    border-top: 1px solid #c9cacc;
}

.footer-nav-block .title {
    display: block;
    padding: 8px 0 24px;
    color: #282a32;
    font-size: 14px;
    font-weight: 600;
    transition: .25s cubic-bezier(.215, .61, .355, 1);
}

.footer-nav-block a {
    display: block;
    transition: .25s cubic-bezier(.215, .61, .355, 1);
    font-size: .8125rem;
    line-height: 25px;
    font-family: Helvetica, Arial, "Droid Sans", "Arimo", sans-serif;
    word-break: break-all;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
    font-size: 13px;
    color: #67696f;
}

.footer-nav {
    border-right: 1px solid #c9cacc;
}

.footer-nav-block a:hover {
    opacity: .5;
}

.footer-disclaimer-icons-sub {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    gap: 30px;
}

.footer-disclaimer {
    background-color: #000;
    padding-top: 50px;
    color: #fff;
}

.footer-disclaimer-icons-sub .icon {
    padding: 1rem 0;
}

.footer-disclaimer p {
    font-family: "Inter", Helvetica, Arial, "Droid Sans", "Arimo", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    margin: 48px 0;
}

.footer-disclaimer-links a {
    position: relative;
    display: inline-block;
    padding: 0 10px;
    font-size: 12px;
    color: #fff;
    font-weight: 400;
}

.footer-disclaimer-links a {
    border-right: 2px solid #fff;
}

.footer-disclaimer-links a:last-child {
    border: none;
}

.footer-disclaimer-links {
    padding: 3rem 0;
    border-bottom: 1px solid #fff;
}

.sub-footer-disclaimer-inner {
    padding: 50px 0 70px;
}

.copyright {
    font-size: 14px;
    text-align: left;
    display: block;
}

.socal_media a {
    color: var(--white);
    font-size: 27px;
}

.socal_media {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px 50px;
}

.ab_text_in p{
    font-size: 16px;
}




.contact {
    position: relative;
    padding: 60px 0;
}

.contact form input,
select,
textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 15px 20px;
    background-color: #f3f3f4;
    font-size: 14px;
    border: none;
    outline: none;
}

.contact_box {
    background-color: var(--bg_blue);
    padding: 30px 35px;
    color: #fff;
}

.contact_box li {
    margin-bottom: 25px;
}

.contact_box li samp {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 5px;
    display: block;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.contact_box li a {
    color: #fff;
    display: block;
}

.contact_box .socal_media a {
    color: #fff;
    font-size: 18px;
    background-color: transparent;
}

.socal_media {
    display: flex;
    gap: 12px;
}

.co_bg {
    position: absolute;
    left: 0;
    width: auto;
    z-index: -1;
    animation-name: rightToLeft;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}









/* Search Style */
#search {
    position: fixed;
    top: -100%;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform: translate(0px, -100%) scale(0, 0);
    -moz-transform: translate(0px, -100%) scale(0, 0);
    -ms-transform: translate(0px, -100%) scale(0, 0);
    -o-transform: translate(0px, -100%) scale(0, 0);
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;

}

#search.open {
    -webkit-transform: translate(0px, 0px) scale(1, 1);
    -moz-transform: translate(0px, 0px) scale(1, 1);
    -ms-transform: translate(0px, 0px) scale(1, 1);
    -o-transform: translate(0px, 0px) scale(1, 1);
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
    z-index: 106;
    display: block;
    top: 0
}

.form_box {
    margin: auto;
    width: 60%;
    display: flex;
    padding-top: 10%;
    justify-content: center;
}

.form_box input {
    width: 100%;
    padding: 12px;
    border-radius: 5px 0px 0px 5px;
    border: none;
    outline: none;
}

.form_box button {
    border: none;
    padding: 0 15px;
    border-radius: 0 5px 5px 0;
}

#search .close {
    position: fixed;
    top: 15px;
    right: 15px;
    opacity: 1;
    font-size: 20px;
    color: var(--black);
    cursor: pointer;
    background-color: var(--white);
    padding: 5px 15px;
    border-radius: 3px;
}


.head_banner .slick-dots {
    display: flex;
    justify-content: center;
    margin: 0;
    left: 40%;
    position: absolute;
    bottom: 20px;
    gap: 8px;
}

.head_banner .slick-dots li button {
    border-radius: 7px;
    background-color: var(--white);
    font-size: 0;
    padding: 4px 10px;
    margin: 2px 0;
    border: none;
}

.head_banner .slick-dots li.slick-active button {
    background-color: var(--white);
    border-radius: 7px;
    padding: 4px 20px;
}

.head_banner {
    background-size: cover;
    background-position: center center;
}

/* Search Style */




@keyframes fadeInUpSD {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


.head_item.slick-slide.slick-current.slick-active .banner_text {
    animation-name: fadeInUpSD;
    animation-duration: 1s;
    opacity: 1;
}


.banner_img {
    display: flex;
    justify-content: center;
}

.nav_bar_nav {
    display: flex;
    justify-content: space-between;
    width: 88%;
}

.logo {
    width: 12%;
}

.contact_nav a {
    color: #67696f;
    font-size: .75rem;
    display: block;
}

.contact_nav {
    position: absolute;
    top: 0;
    right: 8%;
    border-bottom: 1px solid #67696f;
    border-left: 1px solid #67696f;
    border-right: 1px solid #67696f;
    padding: 2px 11px;
    border-radius: 0 0 10px 10px;
}

.header-contact li a:hover {
    color: var(--bg_blue);
}

.header-contact li {
    padding: 6px 0;
    position: relative;
}

.header-contact li::after {
    content: "";
    width: 0%;
    height: 1.5px;
    position: absolute;
    bottom: 0%;
    left: 50%;
    background-color: var(--bg_blue);
    transition: ease-in-out .4s;
}

.header-contact li:hover::after {
    width: 100%;
    left: 0;
}
.seeall a{
    color: var(--bg_blue);
    font-weight: 600;
    font-size: 22px;
    display: block;
}
.seeall{
    text-align: end;
}

.insights_text{
    padding: 25px;
}
.insights_head{
    display: block;
   font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 10px;
}
.insights_item{
    border-radius: 15px;
    display: block;
    box-shadow: 3px 8px 16px 0 rgba(0, 0, 0, .06);
    background-color: #fff;
    margin: 15px 13px;
    position: relative;
    z-index: 9;
    overflow: hidden;
    height: 500px;
}
.insights_item::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ededed;
    z-index: -1;
    transition: ease-in-out .3s;
}
.insights_item:hover::after{
    top: 0;
}
.insights_item a{
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--bg_blue);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: underline;
}


.upper-box {
    padding: 54px 55px 38px 28px;
    background-color: #2e3198;
    border-radius: 5px;
}

.upper-box .big_head {
    color: var(--white);
    margin-bottom: 30px;
}

.list-style-three li {
    position: relative;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 17px;
    padding-left: 46px;
    padding-bottom: 12px;
    border-bottom: 1px solid #686868;
}
.list-style-three li i {
    position: absolute;
    left: 0;
    color: var(--white);
    font-size: 19px;
}
.list-style-three a {
    display: block;
    color: var(--white);
}
.upper-box .big_head {
    font-size:25px;
    display:block;
    color: var(--white);
    margin-bottom: 30px;
}
.upper-box .socal_media a {
    color: #fff;
    font-size: 20px;
    padding: 10px 11px;
}
.staffing{
     padding: 120px 0 100px;
    background-color: #282a32;
    color:#fff;
}
.staffing img{
    width:70px;
    margin-bottom: 10px;
}
.staffing span{
    display:block;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 10px;
}
.staffing p{
    color:#a3a5aa;
}
.staffing a{
      color: var(--bg_blue);
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    text-decoration: underline;
}
.business{
        background: linear-gradient(to bottom, #386097, #027ac5);
            position: relative;
    padding: 54px 0;
    color:#fff;
}

.business .all_btn{
    color:#fff;
    border: 2px solid #fff;
}

.contents{
    background: #2e3198;
    padding:50px 0;
}
.industry {
    box-shadow: 3px 8px 16px 0 rgba(0, 0, 0, .06);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 235px;
     background: #fff;
     margin:15px;
}

.industry .title {
    display:block;
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    text-align: center;
    letter-spacing: normal;
    color: #282a32;
    text-transform: none;
}
.industry img{
    width: 54px;
    margin-bottom: 30px;
}
.contents .head_1{
    color:#fff;
}
.videos{
    margin-left:80px;
}

.proven{
    background-color: #efefef;
    padding:50px 0;
}
.course-accordion{
    background-color: #2e3198;
    padding: 20px 40px 20px 27px;
    font-size: 18px;
    border-radius: 10px;
    border: none;
    margin-bottom:10px;
    color:#fff;
    width:100%;
    text-align: left;

}
button.course-accordion:after {
      content: '\002B';
      color: white;
      font-weight: bold;
      float: right;
      margin-left: 5px;
    }

    button.course-accordion.active:after {
      content: "\2212";
    }

    .course-panel {
      padding: 0 18px;
      background-color: transparent;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.2s ease-out;
      width: 96%;
      font-family: "Raleway";
      font-size: 15px;
      line-height: 1.6em;
      letter-spacing: .4px;
      font-weight: 400;
      font-style: normal;
      color: rgba(0, 0, 0, .88);
    }
.card-body span{
        font-size: 100px;
    font-weight: 400;
    letter-spacing: -.04em;
    line-height: 100px;
    color:#2e3198;
    display:block;
}
.card-body p{
    font-size:20px;
}
.card_work{
        box-shadow: 3px 8px 16px 0 rgba(0, 0, 0, .06);
        min-height: 396px;
}
.cardworkforce .tittle{
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 30px;
    display:block;
}
.cardworkforce{
    padding:20px;
    background: #fff;
}

.cardInfoContainer_btn a{
    font-size: 18px;
    font-weight: 600;
    color: var(--bg_blue);
}
.in_main_head{
    background: #f3f3f4;
    padding: 54px 0;
}
.workforce_2{
    background: rgb(243, 243, 244);
        padding: 60px 0;
}








.ab_text h2,
.ab_text h3 {
    font-size: 21px;
}


.social-share ul {
    display: flex;
    margin-top: 10px;
    position: relative;
    z-index: 99;
}

.social-share button {
    border: none;
    background-color: var(--black);
    color: #fff;
    padding: 6px 10px;
    margin-right: 8px;
    font-size: 16px;
    border-radius: 5px;
}

.ab_item {
    width: 47%;
    float: left;
    margin-right: 40px;
}

.social-share button:hover {
    background-color: #000;
}

.share-btn-box {
    margin-top: 20px;
}

.share-btn {
    font-weight: bold;

}

.inner_header {
    position: relative;
}

.inner_header img {
    height: 330px;
    width: 100%;
    object-fit: cover;
}

.inner_header::after {
    content: "";
    background: linear-gradient(90deg, #090d25 29.03%, rgba(31, 33, 45, 0));
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.inner_header .inner_text {
    position: absolute;
    top: 60%;
    z-index: 9;
    left: 5%;
    text-align: left;
    width: auto;
}

.inner_hrad {
    font-size: 35px;
    color: #fff;
    font-weight: bolder;
    text-transform: uppercase;
}

.brade_crom {
    display: flex;
}

.brade_crom a {
    color: #fff;
}

.brade_crom span {
    color: #fff;
}

.what-app {
    position: fixed;
    z-index: 99;
}

.btn-whatsapp-pulse-border {
    bottom: 30px;
    right: 20px;
    animation-play-state: paused;
}

.marcket-plase a {
    display: block;
    margin-bottom: 10px;
}


.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 30px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 20px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.what-app i {
    font-size: 38px;
    color: #fff;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}







@media only screen and (max-width: 850px) {
    .toggle {
        visibility: visible;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
        margin: 0 0 0 auto;
    }

    .toggle>* {
        width: 80%;
        height: 3px;
        background: var(--black);
        margin: 3px 0;
    }

    .toggle.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .toggle.active .line2 {
        opacity: 0;
    }

    .toggle.active .line3 {
        transform: rotate(45deg) translate(-7px, -8px);
    }

    .nab_bar {
        position: absolute;
        flex-direction: column;
        width: 100%;
        top: 100%;
        left: 0;
        background-color: var(--white);
        z-index: 9999;
        display: none;
    }


    .nab_bar li {
        border-bottom: 1px solid #e2e2e2;
    }

    .nab_bar li a {
        color: #000;
        padding: 13px 25px;
        display: block;
    }

    .droupdown {
        position: revert;
        width: 100%;
        background-color: var(--bg_blue);
        height: 300px !important;
        overflow: auto;
    }

    .clk_btn {
        position: absolute;
        right: 0;
        top: 0;
        color: var(--white);
        cursor: pointer;
        width: 47px;
        height: 46px;
        line-height: 37px;
        background: #000;
        text-align: center;
    }

    .droupdown li {
        padding: 0 !important;
    }

    .droupdown li a {
        color: #fff;
    }



    .col-md-4.top_call.text-center {
        display: none;
    }



    .inner_hrad {
        font-size: 25px;
    }

    .inner_header img {
        height: 200px;
    }

    .navbar_n {
        order: 3;
    }

    .inner_header .inner_text {
        top: 50%;
    }

    .header-contact {
        margin-left: 20px;
    }

    .nab_bar li::after {
        bottom: 0;
        height: 1px;
    }
}

@media only screen and (max-width: 767px) {
    .head_item img {
        display: none;
    }

    .form-block {
        width: 90%;
    }

    .banner_head {
        font-size: 2rem;
    }

    .ab_text {
        margin-top: 20px;
    }

    .create_contant {
        padding: 30px 15px;
    }

    .socal_media {
        padding: 20px 0;
    }

    .copyright {
        text-align: center;
    }
    .contact_box{
        margin-bottom: 20px;
    }
    .ab_item {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 20px;
}
.videos{
    margin-left:0px;
}
}

@media only screen and (max-width: 550px) {
    .logo {
        width: 20%;
    }

    .nav_bar_nav {
        width: 80%;
    }

    .form-block input {
        padding: 12px 20px;
    }

    .head_1 {
        font-size: 20px;
        margin-bottom: 2px;
    }

    .my {
        margin: 40px 0;
    }

    .huManpower_contant {
        padding: 30px 25px 40px 20px;
    }

    .all_btn {
        font-size: 14px;
        padding: 14px 24px 13px;
    }

    .form-block {
        width: 100%;
    }

    .ab_text p {
        font-size: 17px;
    }

    .footer-disclaimer-icons-sub .icon img {
        width: 104px;
    }

    .footer-disclaimer-icons-sub .icon {
        padding: 0rem 0;
    }

    .manpower {
        padding: 30px 0;
    }

    .footer-disclaimer p {
        padding: 21px 0;
        margin: 3px 0;
    }

    .cardInfoContainer {
        margin: 0 0;
    }

    .footer-disclaimer-links {
        padding: 1rem 0;
    }

    .sub-footer-disclaimer-inner {
        padding: 30px 0 25px;
    }
    .socal_media{
            gap: 10px 30px;
    }
    .insights_item{
        height: auto;
    }
    .insights_head{
            margin-bottom: 45px;
    }
}