*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Montserrat';
}
a{
    list-style-type:none;
    text-decoration: none;
    color: #000;
}
ul, ol{
    margin: 0;
    padding: 0;
    list-style: none;
}
.wrapper{
    padding: 80px 0;
}

/* === TobHeader design === */
.topHeader{
    width: 100%;
    background-color:#1f2e27;
    color: #fff;
    display:flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
}
.topHeader ul li a{
    color: #fff;
}
.topHeader ul li{
    display: inline-block;
}
.topHeader .info_details ul li{
    padding: 0 20px;
    border-right:1px solid #1c532c;
}
.topHeader .info_details ul li a{
    font-size: 16px;
}
.topHeader .info_details ul li a i.fa-phone-volume{
    font-size: 16px;
    transform: rotate(-30deg);
}
.topHeader .info_details ul li:last-child{
    border-right: 0;
}
.topHeader .info_details ul li:first-child{
    padding-left: 0;
}
.socialMedia{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.socialMedia ul li a{
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    border: 1px solid #fff;
    margin-right: 10px;
    border-radius: 50px;
    font-size: 12px;
    transition: all 0.5s ease-in-out;
}
.socialMedia ul li a:hover{
    background-color: #fff;
    color: #000;
}


/* === navigationBar === */
.navigationBar{
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 3px 8px #80808052;
    padding: 0;
    transition: all 0.7s ease-in-out;
}
.navigationBar .offcanvas-body .nav-item .nav-link {
    padding: 50px 18px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 550;
    font-size: 14px;
}
.navigationBar .offcanvas-body .nav-item .nav-link.active{
    color: #1c532c;
}
.navigationBar a.navbar-brand img {
    width: 100%;
    max-width: 120px;
    padding: 5px;
}
.dropdownItems{
    position:relative;
    transition: all 0.3s ease-in-out;
}
.FixedNavbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: all 0.7s ease-in-out;
}
.dropDownList {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    width: 260px;
    background-color: #1f2e27;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    transform: scale(1, 0);
    transform-origin: 0 0;
}
.dropdownItems:hover .dropDownList{
    transition: all 0.3s ease-in-out;
    visibility: visible;
    transform: scale(1);
}
.dropDownList li a:hover{
    background-color:#1c532c;
    color: #fff;
}
.dropDownList li a {
    color: #fff;
    display: block;
    width: 100%;
    padding: 8px;
    border-bottom: 1px solid #1c532c;
    transition: all 0.2s ease-in-out;
}

.queryBtn {
    background-color: #1c532c;
    width: 160px;
    height: 54px;
    line-height: 54px;
    text-align: center;
    color: #fff;
    margin-top: 36px;
    position:relative;
    z-index: 1;
    display: block;
    
}
.queryBtn:before{
    width:0;
    height: 100%;
    content: '';
    position:absolute;
    top: 0;
    left: 0;
    background-color:#1f2e27;
    z-index: -1;
    transition: all 0.5s ease-in-out;
}
.queryBtn:hover:before{
    width: 100%;
    transition: all 0.5s ease-in-out;
}
.queryBtn i{
    font-size: 12px;
    padding-left: 2px;
}

/* === Banner design === */
#SliderBox{
    width: 100%;
}
#SliderBox .item{
    padding: 12rem 0rem;
    text-align: center;
    color: #fff;
    width: 100%;
}
#SliderBox .slide1{
    width: 100%;
    background-image: url('../images/banner.jpg') ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position:relative;
}
#SliderBox .slide2{
    width: 100%;
    background-image: url('../images/banner2.jpg') ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position:relative;
}
#SliderBox .slide3{
    width: 100%;
    background-image: url('../images/banner3.jpg') ;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position:relative;
}
#SliderBox span {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
#SliderBox h1 {
    font-size: 70px;
    font-weight: 700;
    margin-bottom: 20px;
}
#SliderBox .slide a{
    display: inline-block;
    padding: 15px 30px;
    margin-right: 20px;
    margin-top: 10px;
}
#SliderBox .slide a.readBtn_more{
    background-color: #1c532c;
    color: #fff;
    font-weight: 400;
    letter-spacing: 0.5px;
    position:relative;
    z-index: 1;
}
#SliderBox .slide a.readBtn_more::before{
    position:absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: '';
    z-index: -1;
    background-color: #1f2e27;
    transition: all 0.5s ease-in-out;
}
#SliderBox .slide a.readBtn_more:hover::before{
    width: 100%;
}
#SliderBox .slide a.conttBtn{
    border: 1px solid #fff;
    color: #fff;
    position:relative;
    z-index: 1;
    font-weight: 400;
    letter-spacing: 0.5px;
}
#SliderBox .slide a.conttBtn:before{
    position:absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    content: '';
    background-color: #ffffff;
    transition: all 0.5s ease-in-out;
    color: #000;
    z-index: -1;
}
#SliderBox .slide a.conttBtn:hover{
    color: #000 !important;
    transition: all 0.5s ease-in-out;
}
#SliderBox .slide a.conttBtn:hover::before{
    width: 100%;
    columns: #fff;
}
#SliderBox button.owl-prev {
    position: absolute;
    top: 45%;
    left: 40px;
    color: #fff;
    z-index: 999;
}
#SliderBox button.owl-prev:hover{
    background: none;
    border: none;

}
#SliderBox button.owl-prev span{
    font-size: 40px;
}

#SliderBox button.owl-next {
    position: absolute;
    top: 45%;
    right: 40px;
    color: #fff;
    z-index: 999;
}
#SliderBox button.owl-next:hover{
    background: none;
    border: none;

}
#SliderBox button.owl-next span{
    font-size: 40px;
}


/* ======= About Section Design ======== */
.aboutInfo{
    background-image: url('../images/about_bg.png');
    width: 100%;
    background-size: 50%;
    background-position: bottom right;
    background-repeat: no-repeat;
}
.aboutInfo .imgAbout {
    display: flex;
    gap: 20px;
}
.aboutInfo .imgAbout .a_image img:first-child{
    margin-bottom: 24px;
}
.aboutInfo .conttAbout{
    padding-left: 80px;
}
.aboutInfo .conttAbout span{
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
}
.aboutInfo .conttAbout span:before {
    position: absolute;
    top: 9px;
    right: -65px;
    width: 50px;
    height: 2px;
    background-color: #1c532c;
    content: '';
}
.aboutInfo .conttAbout h1{
    font-weight: 700;
    font-size: 40px;
    padding: 5px 0;
}
.mission {
    margin-top: 50px;
}
.mission h3 {
    font-weight: 500;
}
.aboutInfo .readMoreBtn {
    display: block;
    width: 155px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    color: #1f2e27;
    border: 2px solid #1c532c;
    font-weight: 500;
    margin-top: 30px;
}
.aboutInfo .readMoreBtn i{
    font-size: 14px;
}

/* ==== Services Section ==== */
.our_services_column{
    width: 100%;
    border-top: 1px solid #E4E4E4;
}
.our_services_column .serTitle {
    text-align: center;
    width: 300px;
    margin: 0 auto 50px auto;
}
.our_services_column .serTitle span{
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 18px;
    position: relative;
}
.our_services_column .serTitle span::before{
    position:absolute;
    top:10px;
    left:-70px;
    width:50px;
    height:2px;
    background:#1c532c;
    content:'';
}
.our_services_column .serTitle span::after{
    position:absolute;
    top:10px;
    right: -70px;
    width:50px;
    height:2px;
    background:#1c532c;
    content:'';
}
.our_services_column h2{
    font-size: 42px;
    font-weight: 700;
}
.our_services_column .serTitle {
    text-align: center;
    margin-bottom: 50px;
}
.our_services_column .imgBox {
    position: relative;
    overflow: hidden;
}
.our_services_column .imgBox img{
    transition: all 0.5s ease-in-out;
}
.our_services_column .imgBox:hover img{
    transform: scale(1.3);
    transition: all 0.5s ease-in-out;
}
.our_services_column .ser_contents {
    margin-bottom: 20px;
}
.our_services_column .imgBox img{
    position:relative;
}
.our_services_column .imgBox img::before{
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    content: '';
    z-index:12000;
}
.our_services_column .contt {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #fff;
}
.our_services_column .contt > a{
    color: #fff;
}
.our_services_column .contt h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 12px 0;
    position:relative;
}
.our_services_column .contt h3::before{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 2px;
    background: #fff;
    content: '';
}
.our_services_column .contt p {
    font-weight: 300;
    padding:0 10px;
}
.our_services_column .contt .read_more_btn {
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #818181;
    color: #818181;
    line-height: 30px;
    transition: all 0.4s ease-in-out;
}
.our_services_column .contt .read_more_btn:hover{
    color: #000;
    background-color: #fff;
    border-color: #fff;
}

/* ====== core value ===== */
.core_values{
    width: 100%;
    padding: 3rem 0;
    background-image: url(../images/core-value-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-color: #091e3ed9;
    background-blend-mode: overlay;
    color: #fff;
}
.core_values .coreTitle h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
}
.core_values .btn_assets h3 {
    color:#000;
    margin-bottom: 0;
    padding: 5px 0;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 24px;
}
.core_values .btn_assets h4{
    margin-bottom: 0;
    padding: 5px 0;
    font-size: 24px;
    color: #000;
    font-weight: 400;
    letter-spacing: 0.5px;
}
.core_values .nav-item {
    margin-left: 25px;
}
.core_values #myTabContent {
    margin: 30px 20px 20px 20px;
}
.core_values #home-tab, #profile-tab, #contact-tab {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 0;
    background-color: #fff;
}
.core_values .nav-tabs{
    border: 0;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .innovation_pic{
    filter: invert(1);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
    background-color: #1c532c !important;
    border: #1c532c;
    color: #000;
    position:relative;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active .innovation_pic{
    filter: invert(0);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active h3{
    color: #fff;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active .collaboration_pic{
    filter: invert(1);
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active .excellence_pic{
    filter: invert(1);
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active h4{
    color: #fff;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active::before{
    position: absolute;
    left: 44%;
    bottom: -34px;
    content: '';
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #1c532c;
    transform: rotate(180deg);

}

/* ==== Our Team Column ===== */
.ourTeam_column{
    width: 100%;
    background-image: url('../images/team_bg.png');
    background-position: left;
    background-repeat: no-repeat;
}
.ourTeam_column .headingTitle{
    text-align: center;
    margin-bottom: 30px;
}
.ourTeam_column .headingTitle h2 {
    font-weight: 700;
    font-size: 42px;
}
.ourTeam_column .headingTitle p {
    width: 90%;
    margin: 0 auto;
}
.ourTeam_column .teamAssets{
    padding: 20px;
    box-shadow: 0px 0px 8px #d3d3d380;
    text-align: center;
    border-bottom: 2px solid #1c532c;
    width: 100%;
    background-color: #fff;
    height: 660px;
}
.ourTeam_column .teamAssets .content_box {
    padding: 15px 0 0 0;
}
.ourTeam_column .teamAssets .content_box h4{
    font-weight:600;
    margin-bottom:3px;
    font-size:22px;
}
.social_media{
    margin-bottom: 30px;
}
.social_media ul li {
    display: inline-block;
}
.social_media ul li a{
    display:block;
    width:35px;
    height:35px;
    line-height:35px;
    text-align:center;
    border:1px solid #1c532c;
    border-radius:50px;
    margin-right:10px;
    font-size:14px;
    transition: all 0.3s ease-in-out;
}
.social_media ul li a:hover{
    background-color: #000;
}
.social_media ul li a:hover i{
    color: #fff;
}
.social_media ul li a i{
    color: #000;
}

/* === Case Studies ==== */
.caseStudies {
    margin: 100px 0 30px 0;
}
.caseStudies h2{
    font-size:42px;
    font-weight:700;
}
.imgBox img{
    width: 100%;
}
.contentsBox {
    padding: 20px;
}
.contentsBox h5 {
    font-size: 20px;
    font-weight: 600;
}
.studiesBoxs1 {
    background-color: #FAFAFA;
    margin-bottom: 50px;
    border:1px solid #CFCFCF;
}
.studiesSpace{
    margin-bottom: 30px;
}
.studiesBox2 {
    background-color: #FAFAFA;
    border:1px solid #CFCFCF;
}

/* Call Back Section Start Here */
.call_back_section{position: relative; width: 100%;}
    .call_back_section:before{position: relative;display: block;height: 60px;width: 100%;background-color: var(--white);content: "";z-index: 1;}
    .call_back_section:after {position: relative;display: block;height: 60px;width: 100%;background-color: var(--white);content: "";z-index: 1;}
    .call_back_section .outer_box{position: relative;z-index: 5; padding: 0 0 40px 0;}
    .call_back_section .outer_box:before{position: absolute;left: 0;top: 0;height: 100%;width: 100%;background-color: #e6e6e6;opacity: .90;content: ""; z-index: -1;}
    .call_back_section .call_info{position: relative;text-align: left;padding: 110px 0;padding-right: 100px;}
    .call_back_section .call_info h2{position: relative;padding-bottom: 15px;font-weight: 700;font-size: 38px;
    color: var(--heading);line-height: 50px;}
    .call_back_section .call_info h2 span{color: var(--second);}
    .call_back_section .call_info h2:before{position: absolute;bottom: 0;height: 3px;width: 80px;background-color: var(--second);content: "";}
    .call_back_section .call_info p{position: relative;font-size: 17px;line-height: 32px;font-weight: 400;color: var(--heading);}
    .call_back_section .call_form{position: relative;margin: -60px 0;}
    .call_back_section .call_form:before{position: absolute;left: -50px;top: 0;border-left: 50px solid transparent;border-bottom: 60px solid #222222;
    content: "";}
    .call_back_section .call_form .cb_form{padding: 75px 60px 50px;background-color: #222222;}
    .call_back_section .call_form .cb_form .subtitle{color: #fff;}
    .call_back_section .call_form .cb_form .subtitle:before, .call_back_section .call_form .subtitle:after{background: #fff;}
    .call_back_section .call_form .cb_form h3{color:#fff;font-weight: 700;font-size: 40px;padding-top: 10px;margin-bottom: 30px;}
    .call_back_section .call_form .cb_form form .form-group{margin-bottom: 20px;}
    .call_back_section .call_form .cb_form form .form-group .form_control{display: block;font-size: 16px;line-height: 24px;color:#fff;
    font-weight: 400;padding: 15px 0px;width: 100%;height: 50px;background-color: transparent;outline: none;border: none;border-bottom: 1px solid #f1f1f1;}
    .call_back_section .call_form .cb_form form .form-group .form_control::placeholder {color: var(--white);opacity: 1;font-weight: 500;font-size: 15px;}
    .call_back_section .call_form .cb_form form .form-group textarea.form_control{height: 100px;max-height: 120px;min-height: 90px;resize: vertical;
    outline: none;border: none;border-bottom: 1px solid #f1f1f1;}
    button.main_btn {
        display: block;
        width: 150px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        font-weight: 500;
        border: 0;
        outline: none;
    }
    /* Call Back Section End Here */


/* === footerBox === */
 .footerBox {
    width: 100%;
    padding: 5rem 0;
    background-image: url(../images/footer_bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #0e0e0e;
    background-blend-mode: overlay;
    color: #fff;
}
.footerBox .aboutInfo{
    padding: 0 30px 0 0;
}
.footerBox .aboutInfo h2{
    font-weight: 600;
}
.footer_logo_Box {
    padding: 10px;
    background-color: #fff;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 5px;
}
.readMore_btn {
    display: block;
    width: 150px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    text-align: center;
    background-color: #1c532c;
    font-size: 16px;
}
.readMore_btn i {
    font-size: 12px;
}

.ListItems h3 {
    font-size: 24px;
    margin-bottom: 20px;
}
.ListItems ul li a{
    color:#fff;
    letter-spacing:0.4px;
    font-weight:300;
    margin-bottom:5px;
    display:inline-block;
}
.ListItems ul li a i{
    font-size:12px;
    margin-right:5px;
}  
.infoDetails h3 {
    font-size: 24px;
    margin-bottom: 20px;
} 
.infoDetails .info {
    display: flex;
    gap: 20px;
}
.infoDetails .info p a{
    color: #fff;
}
.infoDetails .info .icon i {
    font-size: 22px;
}
.footerBox .socialIcon ul{
    display:flex;
    align-items:center;
    margin-top:30px;
}
.footerBox .socialIcon ul li a {
    color: #091e3e;
    display:block;
    width:40px;
    height:40px;
    line-height:40px;
    margin-right:10px;
    background-color:#fff;
    text-align:center;
    border-radius:50px;
    transition: all 0.5s ease-in-out;
}
.footerBox .socialIcon ul li a:hover{
    background-color: #353535;
    color: #fff;
}


/* ==== Copyright Box ==== */
.copyright__Box {
    text-align: center;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.copyright__Box p{
    margin-bottom: 0px;
    color: #000;
    font-weight: 400;
    font-size: 18px;
}
.copyright__Box p a{
    color: #000;
    font-weight: 600;
    font-style: italic;
    text-decoration: underline;
}


/* ===== Inner pages ===== */
.about-one{
    width: 100%;
    padding: 8rem 0;
    background-image: url('../images/about-cover-bg.jpg');
    background-position:center;
    background-size: cover;
    color: #fff;
    background-color:#00000073;
    background-blend-mode: overlay;
    text-align: center;
}
.about-one .contents_assets h2{
    font-size:36px;
    letter-spacing:0.5px;
    text-transform:uppercase;
    font-weight:600;
}
.about_column{
    width: 100%;
    padding: 8rem 0;
    background-image: url('../images/inner_bg.jpg');
    background-position:center;
    background-size: cover;
    color: #fff;
    background-color:#00000082;
    background-blend-mode: overlay;
}
.about_column .contents_assets {
    text-align: center;
}
.about_column .contents_assets h2{
    font-size:36px;
    letter-spacing:0.5px;
    text-transform:uppercase;
    font-weight:600;
}
.about_column .contents_assets p{
    padding:30px 80px;
}
.about_column .contents_assets ul{
    display:flex;
    align-items:center;
    justify-content:center
}
.about_column .contents_assets ul li a{
    color:#fff;
    margin-left:10px;
    
}


/* ==== services page ==== */
.listItems ul li a {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    box-shadow: 0px 0px 8px #dddddd;
    transition: all 0.3s ease-in-out;
    border-bottom: 1px solid #1c532c;
}
.listItems ul li a:hover{
    background-color: #1c532c;
    color: #fff;
}
.listItems ul li a i{
    font-size: 14px;
    margin-right: 5px;
}
.imgContents .contt {
    padding: 20px 0;
}
.imgContents .contt h2{
    font-weight:700;
}
.imgContents .contt h3{
    font-size:22px;
   font-weight:500;
   color:#1c532c;
   margin-top: 30px;
}
.imgContents .contt ul li {
    margin-bottom: 12px;
}

.caseStudiesBox {
    padding: 0 0 100px 0;
}
.caseStudiesBox .caseStudies{
    margin: 50px 0 30px 0;
}


/* ==== services pages ===== */
.imgContents .contt .items {
    display: flex;
    gap: 10px;
}
.imgContents .contt .items i{
    font-size:8px;
    position:relative;
    top:6px;
}
 


.footer_logo_Box img {
    max-width: 160px;
}

/* contact inner page */

.outer_box .img_info img {
    width: 100%;
    max-width: 516px;
}
.head_details h4 {
    padding: 10px 0;
    font-size: 32px;
    font-weight: 600;
    border-bottom: 2px solid #000;
}
.call_back_section .info i {
    font-size: 20px;
}
.call_back_section .info {
    display: flex;
    gap: 10px;
    align-items: center;
}
.call_back_section .call_info p{
    margin-bottom: 8px;
    font-weight: 500;
}

.recent_blogs {
    box-shadow: 0px 0px 6px #e1e1e1;
    padding: 20px;
}
.register_officeB {
    color: #000;
    font-weight: 600;
    font-size: 18px;
    margin-top: 20px;
    display: block;
}
/* ========= Our Partner Section ========== */
.ourPartner_Box {
    margin: 20px auto 70px auto;
}
.ourPartner_Box .headingTitle {
    display: block;
    text-align: center;
    padding-bottom: 30px;
}
.ourPartner_Box .headingTitle h2{
    font-weight: 700;
    font-size: 42px;
}
.ourPartner_Box .item {
    width: 100%;
    box-shadow: 0px 0px 7px #9d9d9d70;
    height: 190px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ourPartner_Box .item img {
    width: 100%;
    max-width: 200px;
    display: block;
    margin: 0 auto;
}
.ourPartner_Box .item.excel-partner img{
    max-width:fit-content;
}
.ourPartner_Box .owl-carousel.owl-drag .owl-item{
    padding: 5px;
}

/* ==== Top to button scroll */

button.top_to_bottom_btn {
    width: 40px;
    height: 40px;
    line-height: 40px;
    outline: none;
    background-color: #fff;
    border: 2px solid #1c532c;
    border-radius: 50px;
    font-size: 18px;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 12000;
    cursor: pointer;
    display: none;
}

/* ==== Career section ===== */
.career {
    width: 100%;
    padding: 50px 0;
}
.career .career_title{
    margin-bottom: 20px;
}
.career .career_title h2{
    font-weight: 700;
    margin-bottom: 10px;
}
.career .career_title span {
    font-size: 20px;
    color: #ffffff;
    background-color: black;
    padding-bottom: 0;
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.career #accordionFlushExample {
    margin-top: 40px;
}
.accordion-button:focus{
    border: 0;
    outline: none;
}
.accordion-button:not(.collapsed) {
    background-color: #1c532c;
    color: #fff;
    border: 0;
    outline: none;
}
.career ul.list_items li {
    display: block;
    margin-bottom: 10px;
}



/*====== Drop Your CV ======*/
.drop_cv_secc .cv_assets{
    text-align: center;
}
.drop_cv_secc .cv_assets h1 {
    color:#1c532c;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0;
}
.drop_cv_secc .cv_assets p{
    text-align: center;
    color: #000;
}
.drop_cv_secc .upload_cv_box {
    display: block;
    padding: 20px;
    width: 50%;
    margin: 20px auto 50px auto;
    border: dashed 3px #707070;
    cursor: pointer;
}
.drop_cv_secc .upload_cv_box ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
.drop_cv_secc .upload_cv_box ul li{
    display: inline-block;
    
}
.drop_cv_secc .upload_cv_box ul li:nth-child(1) a{
    color: #707070;
}
.drop_cv_secc .upload_cv_box ul li i{
    font-size: 24px;
    margin-right: 10px;
    color: #000;
}
.drop_cv_secc .upload_cv_box .upload_cv_btn{
    background: transparent linear-gradient(270deg, #339b51, #1c532c) 0% 0% no-repeat padding-box;
    border-radius: 10px;
    display: inline-block;
    padding: 8px 20px;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-left: 20px;
    outline: none;
    border:none;
    overflow: hidden;
}
.drop_cv_secc .upload_cv_box .upload_cv_btn::before{
      position: absolute;
      content: "";
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      background: transparent linear-gradient(270deg, #FF3E33, #F68D22) 0% 0% no-repeat padding-box;
      transition: opacity 0.5s linear;
      z-index: -1;
      opacity: 0;
}
.drop_cv_secc .upload_cv_box .upload_cv_btn:hover::before{
    opacity: 1;
}
.drop_cv_secc .upload_cv_box form{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 30px;
}
.drop_cv_secc .upload_cv_box form span i{
    font-size: 24px;
}
.drop_cv_secc .upload_cv_box label{
    padding: 10px;
    display: table;
    color: #707070;
}
/*.drop_cv_secc .upload_cv_box input[type="file"] {
    display: none;
}*/


/* ==== Media Query ==== */
@media (min-width:992px) and (max-width:1199px){
    .our_services_column .imgBox img {
        position: relative;
        height: 320px;
    }
    .our_services_column .imgBox > a{
        display: block;
        width: 100%;
        height: 320px;
    }
}

@media (max-width:1199px){
    .aboutInfo .conttAbout {
        padding-left: 0;
    }
    .aboutInfo .imgAbout{
        display: block;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }
    .imgAbout .a_image {
        margin-bottom: 30px;
    }
    .navigationBar .offcanvas-body .nav-item .nav-link {
        padding: 50px 10px;
    }
}


@media (max-width:991px){
    .navigationBar .offcanvas-body .nav-item .nav-link {
        padding: 12px 10px;
    }
    .core_values #myTabContent{
        margin: 0;
    }
}

@media (max-width:767px){
    .info_details {
        text-align: center;
        padding-top: 10px;
    }
    .socialMedia {
        justify-content: center;
        padding: 10px 0 10px 0;
    }
    .aboutInfo .conttAbout {
        padding-top: 50px;
    }
    .core_values .coreTitle h2{
        text-align: center;
        font-size: 30px !important;
    }
    .core_values #home-tab, #profile-tab, #contact-tab{
        margin-bottom: 50px;
    }
    .ourTeam_column .teamAssets{
        margin-bottom: 20px;
    }
   .footerBox .ListItems {
        margin-bottom: 30px;
    }
    .footerBox .aboutInfo{
        margin-bottom: 30px;
    }
    #SliderBox h1{
        font-size: 45px;
    }
    .imgAbout img[src="images/pic3.jpg"]{
        display: none;
    }
    .topHeader .info_details ul li{
        border-right: 0;
        padding: 5px 0;
    }
    .our_services_column .serTitle span{
        font-size: 16px;
    }
    .call_back_section .call_info{
        padding-right: 0;
    }
    .recent_blogs{
        margin-bottom: 30px;
    }
    .drop_cv_secc .upload_cv_box{
        width: 100%;
    }
    .drop_cv_secc .upload_cv_box .upload_cv_btn{
        overflow: visible;
    }
}

@media (max-width:480px){
    .copyright__Box p {
        font-size:16px;
    }
    .copyright__Box p a{
        display:block;
    }
    .about_column .contents_assets p {
        padding: 30px 20px;
    }
    .ourTeam_column .teamAssets{
        height: auto;
    }
    
}
