@charset "utf-8";

/* CSS Document */

* {
    padding: 0px;
    margin: 0px;
}

textarea {
    resize: none;
}

.modal-open .modal {
    z-index: 9999999;
}

.modal-backdrop.show {
    z-index: 999999;
}

img {
    max-width: 100%;
}

body {
    font-family: 'Neuton', serif;
}

html {
    scroll-behavior: smooth;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
    outline: none;
}

h3 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    text-transform: capitalize;
}

h3 span {
    color: #00a1dd;
}


/* Site Under-Constriction Css */


/* make keyframes that tell the start state and the end state of our object */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    opacity: 0;
    /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1;
    /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}

.fade-in.three {
    -webkit-animation-delay: 8s;
    -moz-animation-delay: 8s;
    animation-delay: 8s;
}

.under_construction_page {
    background: url(../videos/video-to-gif-converter.gif) no-repeat center center;
    background-size: cover;
    height: 100vh;
}

.construction_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: url(../images/bg_under.jpg) no-repeat center center;
    background-size: cover;
}

.under_construction_page .msg {
    width: 500px;
    display: block;
    margin: auto;
}

.construction_container .logo {
    width: 300px;
}


/* Reset Css */

ul {
    padding-left: 0;
    list-style: none;
    margin: 0px;
}

a {
    display: inline-block;
    color: #231f20;
}

a:hover {
    text-decoration: none;
}

.modal-open,
.modal-open #header {
    padding-right: 17px !important;
}

.mobile_menu .icon-menu {
    color: #fff;
    background-color: #0f93d1;
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    line-height: 23px;
    text-transform: uppercase;
    margin: 6px 0px;
}

.mobile_menu .menu {
    overflow-x: scroll;
    background: #00a1dd repeat left top;
    right: -285px;
    /* start off behind the scenes */
    height: 100%;
    position: fixed;
    width: 285px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    z-index: 999999;
    top: 0px;
}

.mobile_menu .menu.open {
    right: 0px;
}


/* Basic styling */

.mobile_menu .menu ul {
    border-top: 1px solid #058fc2;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile_menu .menu li {
    margin: 0px;
}


/* .dropdown-toggle::after{ display: none;} */

.mobile_menu .menu a {
    border-bottom: 1px solid #058fc2;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    text-transform: capitalize;
    display: block;
    padding: 12px 10px;
}

.mobile_menu .icon-close {
    cursor: pointer;
    color: #fff;
}

header .mobile_menu .dropdown .dropdown-menu li a {
    border-bottom: 1px solid #00a1dd;
}

.mobile_menu .icon-close a {
    cursor: pointer;
    color: #fff;
    background-color: #058fc2;
    width: 40px;
    height: 45px;
    width: 45px;
    width: 45px;
    text-align: center;
    display: inline-block;
    line-height: 55px;
    font-size: 23px;
    padding: 6px;
}

.mobile_menu .icon-close a i {
    line-height: 34px;
    vertical-align: 9px;
    display: inline-block;
}

.mobile_menu .icon-menu {
    color: #fff;
    background-color: #00a1dd;
    height: 40px;
    width: 40px;
    cursor: pointer;
    font-size: 20px;
    padding: 10px;
    text-decoration: none;
    text-align: center;
    line-height: 23px;
    text-transform: uppercase;
    margin: 6px 0px;
}

.head_menudv.d-none.d-lg-block {
    width: 35%;
}

ul.square_dul {
    padding: 18px 0px 0px;
}

ul.square_dul li {
    margin-bottom: 8px;
    padding-left: 30px;
    text-align: left;
    font-size: 18px;
    position: relative;
}

ul.square_dul li:after {
    background-color: #00a1dd;
    content: '';
    display: block;
    height: 8px;
    width: 8px;
    position: absolute;
    left: 0px;
    top: 12px;
}

#companies_reqruitsec ul.square_dul {
    padding: 0px;
}


/* Home Page Css */

header {
    background: rgba(255, 255, 255, .9);
    padding: 4px 0px;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    border-bottom: 1px solid #f2f1f1;
}

header .logo {
    max-width: 210px;
    display: block;
    margin: auto;
}

header ul li a {
    font-size: 18px;
    font-weight: 500;
}


/* header ul li.dropdown a .dropdown-menu {
    top: 39px !important;
    border: none !important;
    border-radius: 0px !important;
    drop-shedow: 10px 10px 10px 10px #000 !important;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.13) !important;
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.13) !important;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.13) !important;
} */

header .dropdown-menu {
    position: absolute;
    top: 50px !important;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: 0px;
    drop-shedow: 10px 10px 10px 10px #000 !important;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.13) !important;
    -moz-box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.13) !important;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.13) !important;
}

.dropdown-item {
    font-weight: 300;
}

header .dropdown-menu .dropdown-item:focus,
header .dropdown-menu .dropdown-item:hover {
    color: #fff;
    text-decoration: none;
    background-color: #00a1dd;
}

header .dropdown-toggle::after {
    vertical-align: baseline;
}

#slider .owl-item {
    /* height: 100vh; */
    position: relative;
}

#slider .owl-item img {
    width: 100%;
    /* height: 100%;
    object-fit: cover; */
}

#slider .owl-item .cover {
    padding: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 2575, 2575, 0.85);
    display: flex;
    align-items: center;
}

#slider .owl-item .cover .container {
    position: relative;
    height: 100%;
    width: 100%;
}

#slider .owl-item .cover .container .slider-content {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 60%;
    transform: translate(0px, -50%);
    -moz-transform: translate(0px, -50%);
    -ms-transform: translate(0px, -50%);
    -o-transform: translate(0px, -50%);
    -webkit-transform: translate(0px, -50%);
}

#slider .owl-item .cover .slider-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
    text-align: center;
}

#slider .owl-item .cover .slider-content h2 {
    font-weight: 700;
    font-size: 62px;
    color: #231f20;
}

#slider .owl-item .cover .slider-content h2 small {
    font-weight: 500;
    font-size: 48px;
    color: #00a1dd;
}

#slider .owl-item .cover .slider-content h2 span {
    color: #00a1dd;
}

#slider .owl-item .cover .slider-content p {
    font-weight: 700;
    font-size: 24px;
    color: #231f20;
}

#slider .owl-item.active a {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

#slider .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

#slider .owl-item.active p {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
}

#slider .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 53%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

#slider .owl-nav .owl-prev span {
    font-size: 35px;
    color: #fff;
    line-height: 18px;
}

#slider .owl-nav .owl-prev:focus {
    outline: 0;
}

#slider .owl-nav .owl-prev:hover {
    background: #000 !important;
}

#slider .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 53%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

#slider .owl-nav .owl-next span {
    font-size: 35px;
    color: #fff;
    line-height: 18px;
    font-size: 1.6875rem;
    color: #fff;
}

#slider .owl-nav .owl-next:focus {
    outline: 0;
}

#slider .owl-nav .owl-next:hover {
    background: #000 !important;
}

#slider:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

#slider:hover .owl-next {
    right: 0px;
    opacity: 1;
}

#slider .slider_button {
    border: 2px solid #00a1dd;
    padding: 10px 35px;
    color: #231f20;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 18px;
    background: rgba(255, 255, 255, .7);
}

#slider .owl-theme .owl-nav {
    margin-top: 0px;
}

#about_us {
    background: url(../images/about_bg.png) no-repeat left top;
    background-size: cover;
    padding: 50px 0px;
}

#innerVision.our_visionsec h5 {
    width: 70%;
    width: auto;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 20px;
}

#about_us .about_contact h2 {
    font-size: 38px;
    font-weight: 700;
}

#about_us .about_contact h2 span {
    font-size: 22px;
    font-weight: 500;
    color: #00a1dd;
    display: block;
    margin-bottom: 10px;
}

#about_us .about_contact p {
    font-size: 18px;
    font-weight: 400;
    text-align: justify;
    line-height: 24px;
}

#about_us .about_contact a {
    font-size: 18px;
    font-weight: 700;
    color: #00a1dd;
}

#about_us .about_contact a i {
    vertical-align: text-bottom;
}

#about_us .video_part {
    position: relative;
    color: #fff;
}

#about_us .video_part .overlay {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

#about_us .video_part .overlay i {
    color: #fff;
    font-size: 70px;
}

#about_us .video_part::before {
    content: '';
    position: absolute;
    height: 300px;
    width: 300px;
    background: url(../images/video_graphic_1.png) no-repeat center center;
    background-size: cover;
    left: -150px;
    top: 18%;
    z-index: 1;
}

#about_us .video_part::after {
    content: '';
    position: absolute;
    height: 400px;
    width: 250px;
    background: url(../images/video_graphic_2.png) no-repeat center center;
    background-size: cover;
    right: -50px;
    bottom: -50px;
    z-index: 1;
}

#multi_companies {
    padding-bottom: 80px;
}

#multi_companies h3 {
    font-size: 38px;
    font-weight: 700;
    text-align: left !important;
}

#multi_companies h3 span {
    color: #00a1dd;
}

#multi_companies p {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    margin-top: 25px;
    text-align: justify;
}

#multi_companies a {
    font-size: 18px;
    font-weight: 700;
    color: #00a1dd;
}

#multi_companies a i {
    vertical-align: text-bottom;
}

#glimpsePartnerCompanies {
    padding: 60px 0px;
    background: #f2f1f1;
}

#glimpsePartnerCompanies h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

#glimpsePartnerCompanies h3 span {
    color: #00a1dd;
}

#glimpsePartnerCompanies .glimpseAllButton {
    font-size: 16px;
    font-weight: 700;
    color: #00a1dd;
    border: 1px solid #00a1dd;
    padding: 7px 25px;
    border-radius: 50px;
    margin-bottom: 30px;
}

#glimpsePartnerCompanies .glimpseAllButton i {
    vertical-align: text-bottom;
}

#glimpsePartnerCompanies .companyImgContainer {
    position: relative;
    margin-bottom: 30px;
}

#glimpsePartnerCompanies .companyImgContainer .companyOverlay {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    align-items: flex-end;
}

#glimpsePartnerCompanies .companyImgContainer .companyOverlay h4 {
    font-size: 20px;
    color: #fff;
    padding: 10px;
    font-weight: 500;
    margin-bottom: 0px;
}

#glimpsePartnerCompanies .companyImgContainer .companyOverlay h4 span {
    font-weight: 300;
    display: block;
    font-size: 16px;
}

#clientsLogo {
    padding: 50px 0px;
}

#clientsLogo .owl-item a {
    border: 1px solid #999;
}

#clientsLogo h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

#clientsLogo h3 span {
    color: #00a1dd;
}

#clientsLogo .owl-carousel .owl-nav button span {
    background: #00a1dd;
    width: 22px;
    height: 22px;
    display: block;
    font-size: 30px;
    line-height: 13px;
    color: #fff;
    border-radius: 3px;
}

#jobInCompany {
    padding: 60px 0px;
    background: #f2f1f1;
}

#jobInCompany h3 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

#jobInCompany h3 span {
    color: #00a1dd;
}

#jobInCompany .job_list {
    background: #fff;
    padding: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

#jobInCompany .job_list img {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

#jobInCompany .job_list .jobDescription {
    flex: 1;
}

#jobInCompany .job_list .jobDescription h4 {
    font-size: 22px;
    font-weight: 700;
}

#jobInCompany .job_list .jobDescription p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
    line-height: 22px;
}

#jobInCompany .jobButtons .moreJobs {
    padding: 8px 25px;
    border: 1px solid #00a1dd;
    border-radius: 50px;
    margin: 15px;
    font-weight: 700;
    color: #120f12;
    margin-bottom: 0px;
}

#jobInCompany .jobButtons .uploadCV {
    padding: 8px 25px;
    background: #00cb30;
    border-radius: 50px;
    margin: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
}

#banner {
    padding: 80px 0px;
    background: url(../images/banner.jpg) no-repeat center center;
    background-size: cover;
}

#banner h4 {
    font-size: 38px;
    font-weight: 700;
}

#banner a {
    font-size: 18px;
    font-weight: 700;
    background: #00a1dd;
    color: '#fff';
    padding: 8px 30px;
    border-radius: 50px;
    color: #fff;
    margin-top: 20px;
}

#footer {
    padding-top: 40px;
}

#footer .footLogo {
    width: 200px;
    margin-bottom: 10px;
}

#footer p {
    font-size: 17px;
    text-align: justify;
    line-height: 23px;
}

#footer p:first-letter {
    text-transform: uppercase;
}

#footer h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

#footer .footerLinks {
    padding-left: 10px;
}

#footer .footerLinks li {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    width: 50%;
    float: left;
}

#footer .footerLinks li a {
    text-transform: capitalize;
}

#footer .footerContact {
    padding-left: 0px;
}

#footer .footerContact li {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

#footer .footerContact li i {
    position: absolute;
    left: 0px;
    top: 7px;
}

#footer .footSocial a {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 30px;
    margin-right: 15px;
}

#footer .foot_bottom {
    background: #0a6789;
    padding: 8px;
}

#footer .foot_bottom p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0px;
    text-align: center;
}


/* =========================================Inner Pages========================================== */


/* Company Detail */

#innerSlider {
    position: relative;
}

#innerSlider img {
    width: 100%;
}

#innerSlider .innerBannerContent {
    background: rgba(255, 255, 255, .75);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#innerSlider .innerBannerContent h2 {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-top: 130px;
    color: #00a1dd;
    text-transform: uppercase;
}

#innerSlider .innerBannerContent p {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

#innerSlider .innerBannerContent h2:after {
    content: '';
    width: 100px;
    margin: auto;
    display: block;
    margin-top: 15px;
    height: 1px;
    background: #333;
    display: none;
}

#innerPageAboutSection {
    padding: 30px 0px;
}

#innerPageAboutSection .detail_logo {
    padding: 0px;
    /* border: 1px dashed #999; */
}

#innerPageAboutSection .detail_about h4 {
    font-size: 26px;
    font-weight: 700;
    color: #120f12;
}

#innerPageAboutSection .detail_about h4 span {
    color: #00a1dd;
}

#innerPageAboutSection .detail_about h5 {
    font-size: 22px;
    font-weight: 700;
    color: #120f12;
}

#innerPageAboutSection .detail_about h6 {
    font-size: 20px;
    font-weight: 700;
    color: #120f12;
}

#innerPageAboutSection .detail_about p {
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
    color: #120f12;
}

#innerVision {
    background: #f2f1f1;
    padding: 40px 0px;
}

#innerVision h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

#innerVision p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    text-align: justify;
}

#whyChooseUs {
    padding-top: 50px;
}

#whyChooseUs h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    text-align: center;
}

#whyChooseUs h3 span {
    color: #00a1dd;
}

#whyChooseUs .chooseOption {
    border: 1px solid #dadada;
    padding: 10px;
    padding-top: 40px;
    text-align: center;
    position: relative;
    margin-bottom: 60px;
}

#whyChooseUs .chooseOption .wcuIcon {
    height: 80px;
    width: 80px;
    border: 1px dashed #999;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 50%;
    position: absolute;
    top: -30%;
    left: 0px;
    right: 0px;
    background: #fff;
}

#whyChooseUs .chooseOption .wcuIcon img {
    width: 100%;
}

#whyChooseUs .chooseOption p {
    font-size: 18px;
    text-align: justify;
    text-align-last: center;
    color: #120f12;
    line-height: 22px;
    margin-bottom: 0px;
    min-height: 93px;
}

#sectorsOfOperation {
    padding: 50px 0px;
    background: #f2f1f1;
}

.points {
    margin-top: 30px;
}

.points li {
    background: #fffff120;
    padding: 10px;
    padding-left: 40px;
    margin-bottom: 10px;
    position: relative;
    border: 1px solid #e4e4e4;
}

.points li:before {
    content: '\f00c';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 10px;
    color: #00a1dd;
}

.separator {
    width: 1px;
    background: #e0e0e0;
    height: 100%;
    margin: auto;
}

#methodOfOperation {
    padding: 50px 0px;
}

#methodOfOperation h4 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 30px;
}

#methodOfOperation h4:before {
    content: '';
    width: 140px;
    background: #ccc;
    display: block;
    height: 1px;
    margin: 10px auto;
}

#methodOfOperation ul li {
    padding: 10px;
    border-bottom: 1px solid rgb(238, 238, 238);
    display: flex;
    align-items: center;
}

#methodOfOperation ul li:last-child {
    border-bottom: none;
}

#methodOfOperation ul li span {
    height: 80px;
    width: 80px;
    background: #fff;
    border: 1px solid #e0e0e0;
    margin-right: 15px;
    border-radius: 50%;
    text-align: center;
    line-height: 80px;
    font-size: 24px;
    font-weight: 700;
    color: #00a1dd;
}

#methodOfOperation ul li .listDetail {
    flex: 1;
}

#methodOfOperation ul li .listDetail h5 {
    font-size: 22px;
    font-weight: 700;
}

#methodOfOperation ul li .listDetail p {
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
    margin-bottom: 0px;
}

#methodOfOperation.bg_list {
    background: #f2f1f1;
}

#methodOfOperation.bg_list ul li {
    border-bottom-color: #e2e2e2;
}

#affiliatedCountries {
    padding-top: 60px;
}

#affiliatedCountries.zep_buisness_affiliated {
    background-color: #f2f1f1;
}

#affiliatedCountries h3 {
    margin-bottom: 30px;
}

#affiliatedCountries .companyContainer {
    margin-bottom: 30px;
}

#affiliatedCountries .companyContainer h5 {
    text-align: center;
    font-size: 18px;
}

#affiliatedCountries .companyContainer img {
    border: 1px solid #e7e7e7;
    margin-bottom: 5px;
}

.countryCarousel {
    margin-top: 30px;
}


/* =================gallery_sec===========
==================================================== */

#gallery_sec {
    padding: 80px 0px;
    background: url(../images/gallery_bg.webp) no-repeat center center;
    background-size: cover;
    padding-top: 30px;
}

#gallery_sec ul li .gal_bx {
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    width: 250px;
    height: 250px;
    margin: auto;
}

#gallery_sec ul li:nth-child(2) {
    margin: 0px 0px;
}


/* -moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg); */

#gallery_sec ul li:nth-child(5) {
    margin-right: 0px;
}

#gallery_sec ul li:nth-child(5),
#gallery_sec ul li:nth-child(6) {
    margin-top: -120px;
}

#gallery_sec ul li:nth-child(8) .gal_bx {
    margin-top: -120px;
}

#gallery_sec ul li:nth-child(8) .gal_bx a {
    height: 250px;
    width: 250px;
    background-color: #ec008c;
    display: block;
    font-size: 20px;
    color: #fff;
    font-weight: 500;
    position: relative;
}

#gallery_sec ul li:nth-child(8) .gal_bx a span {
    display: block;
    width: 250px;
    height: 250px;
    position: absolute;
    left: 0px;
    right: 0px;
    text-align: center;
    top: 0px;
}

#gallery_sec ul li:nth-child(8) .gal_bx a span article {
    margin-top: 94px;
}

#gallery_sec h2.mheading {
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-top: 0px;
    margin-bottom: 0px
}

#gallery_sec hgroup p {
    font-size: 18px;
    text-align: center;
    color: #fff;
    font-weight: 300;
    margin-top: 0px;
}

#gallery_sec hgroup {
    margin-bottom: 80px;
}

#gallery_sec .thumb_gallery {
    height: 250px;
    width: 250px;
}

#gallery_sec .con-ac-ar,
#gallery_sec .activePopUpImg {
    height: 500px;
    width: 500px;
    margin: auto;
}

#gallery_sec ul li.col-3 {
    padding: 0px;
    -ms-flex: 0 0 23%;
    flex: 0 0 23%;
    max-width: 23%;
}

#gallery_sec.gallery_secinner ul li:nth-child(8) .gal_bx,
#gallery_sec.gallery_secinner ul li:nth-child(10) .gal_bx {
    margin-top: -120px;
}

#gallery_sec.gallery_secinner ul li:nth-child(9) .gal_bx {
    margin-top: -120px;
}

#gallery_sec.gallery_secinner ul li:nth-child(9) .gal_bx {
    width: 519px;
    height: 519px;
    margin-left: -126px;
}

#gallery_sec.gallery_secinner ul li:nth-child(9) .gal_bx .thumb_gallery {
    height: 519px;
    width: 519px;
}

#gallery_sec.gallery_secinner ul li:nth-child(12) .gal_bx,
#gallery_sec.gallery_secinner ul li:nth-child(14) .gal_bx {
    margin-top: -253px;
}

#gallery_sec.gallery_secinner ul li:nth-child(16) .gal_bx,
#gallery_sec.gallery_secinner ul li:nth-child(17) .gal_bx,
#gallery_sec.gallery_secinner ul li:nth-child(18) .gal_bx {
    margin-top: -375px;
}

#gallery_sec.gallery_secinner ul li:nth-child(19) .gal_bx,
#gallery_sec.gallery_secinner ul li:nth-child(20) .gal_bx,
#gallery_sec.gallery_secinner ul li:nth-child(21) .gal_bx {
    margin-top: -250px;
}

#gallery_sec.gallery_secinner .gal_ul2 {
    margin-top: -266px;
    position: relative;
    z-index: 3;
    display: none;
}

#gallery_sec.gallery_secinner .gal_ul1 {
    /* position: relative;
	z-index: 9; */
}

#gallery_sec.gallery_secinner .gal_ul2.open {
    display: flex;
}

#background_overlay {
    z-index: 99999 !important;
}


/* #gallery_sec .gal_bx {
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	overflow: hidden;
	width: 300px;
	height: 300px;
}

#gallery_sec .gal_bx img {
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
}

.polygon-clip-rhombus {
	-webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
	-webkit-clip-path: url("#polygon-clip-rhombus");
	clip-path: url("#polygon-clip-rhombus");
} */

.gallery_container>a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery_container>a>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery_container {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(22%, 1fr));
    grid-auto-rows: auto;
    grid-auto-flow: dense;
}


/* .horizontal {
    grid-column: span 1.5;
    grid-row: span 1.5;
} */

.vertical {
    grid-row: span 1.5;
}

.big {
    grid-column: span 1.5;
    grid-row: span 1.5;
}

#gallery_sec {
    background: #f2f1f1;
    padding: 60px 0px;
}

#gallery_sec h3 {
    margin-bottom: 30px;
}

#zepClients {
    padding: 60px 0px;
}

#zepClients .clientTile {
    border: 1px solid #e2e2e2;
    padding: 10px;
    margin-bottom: 10px;
}

#zepClients h3 {
    margin-bottom: 30px;
}

#zepClients .nav-pills .nav-link {
    background: rgb(224, 224, 224);
    color: #333;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0px;
}

#zepClients .nav-pills .nav-link.active {
    background: #00a1dd;
    color: #fff;
}


/* Contact us Page */

.diffrent_ofcinfo {
    margin-bottom: 30px;
}

#contact_page .mapContainer {
    margin: 60px 0px;
}

#contact_page img {
    max-width: 100%;
}

#contact_page .contact_info h4 {
    background: #333;
    padding: 15px;
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

#contact_page {
    padding-top: 50px;
}

#contact_page .contact_info .contact_bx {
    background: #fff;
    border: 1px solid #f2f1f1;
}

#contact_page .contact_info .contact_bx ul {
    padding: 0px 15px;
}

#contact_page .col-sm-4 .contact_info ul {
    min-height: 293px;
}

#contact_page .diffrent_ofcinfo .contact_info ul {
    min-height: 235px;
}

#contact_page .contact_info li {
    padding: 10px;
    padding-left: 40px;
    position: relative;
    font-size: 16px;
}

#contact_page .contact_info li i {
    position: absolute;
    left: 0px;
    top: 17px;
}

#contact_page .contact_form h4 {
    background: #333;
    padding: 15px;
    text-align: left;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

#contact_page .contact_form form {
    padding: 15px;
    background: #fff;
    border: 1px solid #f2f1f1;
}

.input-group>.intl-tel-input.allow-dropdown {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
}

.input-group>.intl-tel-input.allow-dropdown>.flag-container {
    z-index: 4;
}

.iti-flag {
    background-image: url("../images/flags.png");
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (min--moz-device-pixel-ratio: 2),
only screen and (-o-min-device-pixel-ratio: 2 / 1),
only screen and (min-device-pixel-ratio: 2),
only screen and (min-resolution: 192dpi),
only screen and (min-resolution: 2dppx) {
    .iti-flag {
        background-image: url("../images/flags.png");
    }
}

#contact_page .contact_form form input,
#contact_page .contact_form form textarea {
    border-radius: 0px;
    resize: none;
}

#contact_page .contact_form form textarea {
    height: 95px;
}

#contact_page .contact_form form button {
    background: #00a1dd;
    padding: 8px 30px;
    width: max-content;
    margin: auto;
    display: block;
    border-radius: 0px;
}


/* About Us Page */


/* #about_us.aboutUsPage {
    padding-bottom: 0px;
} */

.aboutUsPage .moreAbout {
    font-size: 18px;
    font-weight: 500;
}


/* Career Pages */

.dataDynamic {
    padding: 30px 0px;
    border-bottom: 1px solid #e6e6e6;
    display: none;
}

.dataDynamic .detailSocial a {
    border: 1px solid #f2f1f1;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin-left: 10px;
}

.dataDynamic .visitWebsite {
    background: #00a1dd;
    padding: 8px 20px;
    color: #fff;
}

.dataDynamic .downloadBrochure {
    background: #dd6600;
    padding: 8px 20px;
    color: #fff;
}

#career_page .careerPageInfo {
    padding: 60px 0px;
}

#career_page .careerPageInfo h3 {
    font-size: 28px;
    text-align: left;
}

#career_page .careerPageInfo p {
    font-size: 18px;
    font-weight: 500;
    text-align: justify;
}

#career_page .careerForm {
    text-align: center;
    border-top: 3px solid #00a1dd;
    background: #f7f7f7;
    padding: 20px;
}

#career_page .careerForm h4 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

#career_page .careerForm input,
#career_page .careerForm select,
#career_page .careerForm textarea {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    border-radius: 0px;
    height: 60px;
}

.file-input {
    display: inline-block;
    text-align: left;
    background: #fff;
    padding: 12px;
    width: 100%;
    position: relative;
    border-radius: 3px;
    border: 1px solid #ccc;
    border-radius: 0px;
}

.file-input>[type='file'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

.file-input>.button {
    display: inline-block;
    cursor: pointer;
    background: #eee;
    padding: 5px 16px;
    border-radius: 2px;
    margin-right: 8px;
}

.file-input:hover>.button {
    background: dodgerblue;
    color: white;
}

.file-input>.label {
    color: #333;
    white-space: nowrap;
    opacity: .3;
}

.file-input.-chosen>.label {
    opacity: 1;
}

#career_page .careerForm button {
    font-size: 18px;
    font-weight: 500;
    background: #00a1dd;
    color: #fff;
    border-radius: 0px;
    height: 40px;
    padding: 0px 30px;
    width: max-content;
    display: block;
    margin: auto;
}

#about_us.aboutUsPage .video_part::after {
    display: none;
}

#about_us.aboutUsPage .visionChairman {
    margin-top: 60px;
    padding: 20px;
    /* background: #f2f1f1; */
    border: 1px solid #ccc;
}

#about_us.aboutUsPage .visionChairman p {
    font-size: 18px;
    font-weight: 500;
}

#about_us.aboutUsPage .visionChairman h3 {
    text-align: left;
}

#about_us.aboutUsPage .visionChairman h4 {
    text-align: center;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 25px;
    text-align: justify;
}

#about_us.aboutUsPage p {
    text-align: justify;
}

#about_us.aboutUsPage .visionChairman h5 {
    font-size: 22px;
    font-weight: 700;
    background-color: #00a1dd;
    color: #fff;
    margin-bottom: 0px;
    text-align: center;
}

#about_us.aboutUsPage .visionChairman h6 {
    font-size: 18px;
    font-weight: 700;
    background-color: #00a1dd;
    color: #fff;
    margin-bottom: 0px;
    text-align: center;
    padding-bottom: 8px;
}


/* JobPage */

#JobPage .jobListContainer {
    padding-top: 60px;
}

#JobPage .jobListContainer .jobList {
    background: #fff;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-bottom: 30px;
}

#JobPage .jobListContainer .jobList img {
    width: 100px;
    display: block;
    height: 100px;
    border-radius: 50%;
    /* margin-right: 30px; */
}

#JobPage .jobListContainer .jobList .jobDescription {
    padding: 0px 30px;
    flex: 1;
}

#JobPage .jobListContainer .jobList .jobDescription h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

#JobPage .jobListContainer .jobList .jobDescription p {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}

#JobPage .jobListContainer .jobList .jobDescription h6 {
    font-size: 18px;
    font-weight: 700;
    color: #00a1dd;
}

#JobPage .jobListContainer .jobList a {
    background: #00a1dd;
    padding: 8px 20px;
    border-radius: 3px;
    color: #fff;
    display: block;
    width: max-content;
}


/* Tidfore Company Detail Page */

#tidforeProducts {
    background: #f2f1f1;
    padding: 60px 0px;
}

#tidforeProducts h3 {
    margin-bottom: 30px;
    /* font-size: 28px;
    font-weight: 700;  */
}

#tidforeProducts a {
    position: relative;
}

#tidforeProducts a p {
    font-size: 18px;
    font-weight: 700;
    background: rgba(0, 0, 0, .7);
    padding: 10px;
    text-align: center;
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0px;
    margin-bottom: 0px;
}

#tidforeProducts .nav-link {
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    color: #333;
    border-bottom: 2px solid transparent;
    border-radius: 0px;
}

#tidforeProducts .nav-link.active {
    color: #00a1dd;
    border-bottom: 2px solid #00a1dd;
    border-radius: 0px;
    position: relative;
}

#tidforeProducts .nav-link.active:before {
    content: '\f0de';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0px;
    right: 0px;
    margin: auto;
    color: #00a1dd;
    bottom: -16px;
}

#tidforeCounter {
    background: url(../images/0.jpg) no-repeat center center;
    background-size: cover;
}

#tidforeCounter h3 {
    margin-bottom: 30px;
    color: #fff;
}

#tidforeCounter .tidforeOverlay {
    background: rgba(0, 0, 0, .7);
    padding: 60px 0px;
}

#tidforeCounter .tidforeOverlay .tidforeCounterTile {
    border: 1px solid #fff;
    padding: 15px;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

#tidforeCounter .tidforeOverlay .tidforeCounterTile h4 {
    font-size: 42px;
    margin-bottom: 0px;
}

#tidforeCounter .tidforeOverlay .tidforeCounterTile p {
    font-size: 18px;
    margin-bottom: 0px;
}

#tidforeStarting {
    padding-top: 60px;
    padding-bottom: 40px;
}

#tidforeStarting ul {
    position: relative;
}

#tidforeStarting ul:after {
    content: '...';
    height: 20px;
    width: 40px;
    background: #ffae00;
    /* outline: 2px solid #ffae00; */
    position: absolute;
    top: -9px;
    border-radius: 3px;
    /* left: 0px; */
    right: 0px;
    /* margin: auto; */
    color: #000;
    font-size: 26px;
    line-height: 4px;
    text-align: center;
}

#tidforeStarting ul li {
    border-top: 2px solid #ffae00;
    position: relative;
    padding-top: 20px;
}

#tidforeStarting ul li:before {
    content: '';
    height: 20px;
    width: 20px;
    background: #ffae00;
    /* outline: 2px solid #ffae00; */
    position: absolute;
    top: -11px;
    border-radius: 50%;
    left: 0px;
    right: 0px;
    margin: auto;
}

#tidforeStarting ul li strong {
    font-size: 26px;
    color: #ffae00;
}

#tidforeStarting ul li p {
    font-size: 18px;
    color: #333;
    margin-bottom: 0px;
}

#tidforeGroup {
    background: #f2f1f1;
    padding: 60px 0px;
}

#tidforeGroup h3 {
    margin-bottom: 30px;
}

#tidforeGroup ul li {
    /* background: #fff; */
    color: #333;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    border: 1px solid #e2e2e2;
}

#tidforeGroup ul li:hover {
    background: #fff;
    border-color: transparent;
}

#tidforeBase {
    padding: 60px 0px;
}

#tidforeBase p {
    font-size: 20px;
    color: #333;
}

#tidforeBase .baseOverlay {
    background: rgba(0, 0, 0, .8);
    padding: 5px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

#tidforeBase img {
    width: 100%;
}

#researchAndSDevelopment {
    padding: 30px 0px;
}

#researchAndSDevelopment ul li {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    font-size: 700;
}

#certificate {
    padding: 60px 0px;
    background: #f2f1f1;
}

#certificate h3 {
    margin-bottom: 30px;
}

#certificate img {
    width: 300px;
    display: block;
    margin: auto;
}

#awards {
    background: url(../images/qualificationBg.png) no-repeat center center;
    background-size: cover;
}

#awards .awardOverlay {
    background: rgba(0, 0, 0, .7);
    padding: 60px 0px;
}

#awards .awardOverlay ul {
    border: 1px solid #fff;
    padding: 15px;
    border-radius: 5px;
}

#awards .awardOverlay ul li {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

#awards .awardOverlay h3 {
    color: #fff;
    margin-bottom: 30px;
}

#tidforeDose {
    background: #f2f1f1;
    padding: 40px 0px;
}

#tidforeDose h4 {
    font-size: 26px;
    font-weight: 700;
    color: #120f12;
    margin-bottom: 20px;
}

#tidforeDose h4 span {
    color: #00a1dd;
}

#tidforeDose .detail_about h5 {
    font-size: 22px;
    font-weight: 700;
    color: #120f12;
}

#tidforeDose .detail_about h6 {
    font-size: 20px;
    font-weight: 700;
    color: #120f12;
}

#tidforeDose .detail_about p {
    font-size: 18px;
    font-weight: 500;
    color: #120f12;
    line-height: 20px;
}

#tidforeDose .detail_about p {
    font-size: 18px;
    font-weight: 500;
    color: #120f12;
    line-height: 20px;
}

#tidforeProducts .runningProjects {
    margin-top: 40px;
}

#tidforeProducts .runningProjects .card {
    margin-bottom: 70px;
}

#tidforeProducts .runningProjects .card p {
    font-size: 18px;
    font-weight: 700;
    background: rgba(0, 0, 0, .7);
    padding: 10px;
    text-align: center;
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0;
    margin-bottom: 0px;
    margin: auto;
    left: 0px;
    right: 0px;
    line-height: 20px;
}

#tidforeProducts .runningProjects .card p span {
    background: #00a1dd;
    color: #fff;
    /* margin-top: -20px; */
    width: max-content;
    margin: auto;
    margin-top: -20px;
    margin-bottom: 10px;
    padding: 5px;
    border-radius: 3px;
}

#innerSlider.tidforeSlider h2 {
    font-size: 42px;
    text-transform: uppercase;
}

#innerSlider.tidforeSlider h2 span {
    color: #00a1dd;
}


/* Tidfore page Slider Start */

#tidforeSlider .owl-item,
#zepjobSlider .owl-item {
    height: auto;
    position: relative;
}

#tidforeSlider .owl-item img,
#zepjobSlider .owl-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#tidforeSlider .owl-item .cover,
#zepjobSlider .owl-item .cover {
    padding: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 2575, 2575, 0.85);
    display: flex;
    align-items: center;
}

#tidforeSlider .owl-item .cover .slider-content,
#zepjobSlider .owl-item .cover .slider-content {
    position: relative;
    padding: 56px 0px;
    overflow: hidden;
    text-align: center;
    margin-top: 120px;
}

#tidforeSlider .owl-item .cover .slider-content h2,
#zepjobSlider .owl-item .cover .slider-content h2 {
    font-weight: 700;
    font-size: 24px;
    color: #231f20;
    text-transform: uppercase;
}

#tidforeSlider .owl-item .cover .slider-content h2 span,
#zepjobSlider .owl-item .cover .slider-content h2 span {
    color: #00a1dd;
    font-size: 48px;
}

#tidforeSlider .owl-item.active h2,
#zepjobSlider .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

#tidforeSlider .owl-nav .owl-prev,
#zepjobSlider .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 55%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

#tidforeSlider .owl-nav .owl-prev span,
#zepjobSlider .owl-nav .owl-prev span {
    font-size: 35px;
    color: #fff;
    line-height: 18px;
}

#tidforeSlider .owl-nav .owl-prev:focus,
#zepjobSlider .owl-nav .owl-prev:focus {
    outline: 0;
}

#tidforeSlider .owl-nav .owl-prev:hover,
#zepjobSlider .owl-nav .owl-prev:hover {
    background: #000 !important;
}

#tidforeSlider .owl-nav .owl-next,
#zepjobSlider .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 55%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
}

#tidforeSlider .owl-nav .owl-next span,
#zepjobSlider .owl-nav .owl-next span {
    font-size: 35px;
    color: #fff;
    line-height: 18px;
    font-size: 1.6875rem;
    color: #fff;
}

#tidforeSlider .owl-nav .owl-next:focus,
#zepjobSlider .owl-nav .owl-next:focus {
    outline: 0;
}

#tidforeSlider .owl-nav .owl-next:hover,
#zepjobSlider .owl-nav .owl-next:hover {
    background: #000 !important;
}

#tidforeSlider:hover .owl-prev,
#zepjobSlider:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

#tidforeSlider:hover .owl-next,
#zepjobSlider:hover .owl-next {
    right: 0px;
    opacity: 1;
}

#tidforeSlider .slider_button,
#zepjobSlider .slider_button {
    border: 2px solid #00a1dd;
    padding: 10px 35px;
    color: #231f20;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 20px;
    font-size: 18px;
    background: rgba(255, 255, 255, .7);
}

#tidforeSlider .owl-theme .owl-nav,
#zepjobSlider .owl-theme .owl-nav {
    margin-top: 0px;
}


/* Tidfore page Slider End */

.achievements {
    padding: 40px;
    background: #f2f1f1;
}

.achievements h3 {
    margin-bottom: 30px;
}

.achievements li {
    padding: 10px;
    padding-left: 60px;
    min-height: 80px;
    background: #fff;
    margin-bottom: 15px;
    font-size: 18px;
    border-radius: 50px;
    position: relative;
}

.achievements li span {
    position: absolute;
    left: 0;
    font-size: 32px;
    line-height: 80px;
    color: #fff;
    font-weight: 700;
    background: #00a1dd;
    border-radius: 50px 0px 0px 50px;
    height: 80px;
    top: 0px;
    width: 46px;
    text-align: center;
}

.achievements li p {
    margin: 0px;
}

.achievementImages {
    padding: 50px;
}

.achievementImages .achivTiles {
    margin-bottom: 30px;
}

.achievementImages .achivTiles p {
    padding: 5px 10px;
    background: rgb(31, 31, 31);
    color: #fff;
    font-size: 18px;
    text-align: center;
}

.turnover {
    background: url(../images/turnoverImg.jpg) no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
}

.turnover .turnoverOverlay {
    background: rgba(0, 0, 0, .8);
    padding: 60px 0px;
}

.turnover h2 {
    font-size: 32px;
    text-align: center;
    color: #fff;
}

.turnover h2 span {
    font-size: 38px;
    font-weight: 700;
    color: #00a1dd;
}

#zepModal .close,
#zepreal_emodal .close,
#zepjob_modal .close,
#album_gallerymodal .close,
#excellodv_modal .close {
    float: none;
    font-weight: 700;
    line-height: 0;
    color: #000;
    text-shadow: none;
    opacity: 1;
    font-size: 40px;
    position: absolute;
    right: -20px;
    top: 0px;
    color: #fff;
}

#excellodv_modal .modal-header,
#album_gallerymodal .modal-header,
#zepModal .modal-header,
#zepreal_emodal .modal-header,
#zepjob_modal .modal-header {
    padding: 0px;
}

#excellodv_modal .modal-body,
#album_gallerymodal .modal-body,
#zepModal .modal-body,
#zepreal_emodal .modal-body,
#zepjob_modal .modal-body {
    padding: 5px;
}

#excellodv_modal .modal-dialog,
#album_gallerymodal .modal-dialog,
#zepModal .modal-dialog,
#zepreal_emodal .modal-dialog,
#zepjob_modal .modal-dialog {
    max-width: 720px
}

#excellodv_modal .modal-body h1,
#album_gallerymodal .modal-body h1,
#zepModal .modal-body h1,
#zepreal_emodal .modal-body h1,
#zepjob_modal .modal-body h1 {
    font-weight: 900;
    font-size: 2.3em;
    text-transform: uppercase;
}

#excellodv_modal .modal-body a.pre-order-btn,
#album_gallerymodal .modal-body a.pre-order-btn,
#zepModal .modal-body a.pre-order-btn,
#zepreal_emodal .modal-body a.pre-order-btn,
#zepjob_modal .modal-body a.pre-order-btn {
    color: #000;
    background-color: gold;
    border-radius: 1em;
    padding: 1em;
    display: block;
    margin: 2em auto;
    width: 50%;
    font-size: 1.25em;
    font-weight: 6600;
}

#excellodv_modal .modal-body a.pre-order-btn:hover,
#album_gallerymodal .modal-body a.pre-order-btn:hover,
#zepModal .modal-body a.pre-order-btn:hover,
#zepreal_emodal .modal-body a.pre-order-btn:hover,
#zepjob_modal .modal-body a.pre-order-btn:hover {
    background-color: #000;
    text-decoration: none;
    color: gold;
}


/*  */


/* Our Clients Page */

#clientsPage {
    padding: 60px 0px;
}

#clientsPage .clintItem a {
    padding: 10px;
    border: 1px solid #ccc;
    position: relative;
    margin-bottom: 30px;
}

#clientsPage .clintItem a .itemOverlay {
    background: rgba(0, 0, 0, .7);
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    color: #fff;
    top: 0px;
    left: 0px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    padding: 10px;
}

#clientsPage .clintItem a:hover .itemOverlay {
    opacity: 1;
}


/* payment page */

#payment_page {
    padding: 60px 0px;
    background: #f2f1f1;
}

#payment_page h3 {
    margin-bottom: 30px;
}

#payment_page input,
#payment_page .form-control {
    border-radius: 0px;
    font-size: 18px;
}

#payment_page textarea {
    border-radius: 0px;
    height: 120px;
    resize: none;
    font-size: 18px;
}

#payment_page .form-group {
    position: relative;
}

#payment_page textarea,
#payment_page input {
    padding-left: 40px;
}

#payment_page .form-group i {
    position: absolute;
    top: 13px;
    left: 18px;
    color: #00a1dd;
    z-index: 99;
}

.input-group-text {
    background-color: #00a1dd;
    border-color: #00a1dd;
    color: #fff;
}

#payment_page button {
    display: block;
    margin: 0px;
    width: 100%;
    border-radius: 0px;
    background: #00a1dd;
    font-size: 18px;
    font-weight: 700;
}


/* Doomshell page */

#doomshellCounter {
    padding: 30px 0px;
}

#doomshellCounter .counterTile {
    background-color: #fff;
    padding: 22px 22px 30px;
    width: 80%;
    margin: auto;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25);
}

#doomshellCounter h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 10px;
}

#doomshellCounter i {
    font-size: 22px;
}

#doomshellCounter p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 0px;
    width: 78%;
    margin: auto;
    line-height: 1;
}

#doomshellServices {
    padding: 60px 0px;
    background: #f2f1f1;
}

#doomshellServices h3 {
    margin-bottom: 30px;
}

#doomshellServices .technologiesTile {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 15px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    width: 100%;
}

#doomshellServices .technologiesTile p {
    font-size: 16px;
    margin-bottom: 0px;
    min-height: 62px;
    line-height: 20px;
}

#doomshellPortfolio {
    padding-top: 60px;
}

#doomshellPortfolio h3 {
    margin-bottom: 30px;
}

#doomshellPortfolio .fav_probox {
    margin-bottom: 25px;
}

#doomshellPortfolio .fav_probox {
    overflow: hidden;
}

#doomshellPortfolio .card {
    background-color: transparent;
    border: none;
}

#doomshellPortfolio .card-img-overlay {
    left: 0px;
    right: 0px;
    top: 0px;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#doomshellPortfolio .card-img-overlay img {
    width: 100px;
    margin: auto;
    border-radius: 8px;
}

#doomshellPortfolio .card-img-overlay h5 {
    font-size: 24px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0px;
}

#doomshellPortfolio .card-img-overlay p {
    text-align: center;
    font-size: 18px;
    color: #fff;
}

#doomshellPortfolio .fav_probox img.card-img {
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
}

#doomshellPortfolio .fav_probox:hover img.card-img {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}


/* Excello Detail Page */

#excelloServices {
    padding-top: 40px;
    background: #fff;
}

#excelloServices small {
    font-size: 16px;
}

#excelloServices h3 {
    font-weight: 400;
    margin-bottom: 30px;
}

#excelloServices h3 span {
    font-weight: 700;
}

#excelloServices ul {
    height: 360px;
    overflow: hidden;
}

#excelloServices ul.commercial.viewCommercial,
#excelloServices ul.residential.viewResidential {
    height: auto;
    overflow: inherit;
}

#excelloServices ul li {
    border-bottom: 1px dashed #e6e6e6;
    padding-bottom: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

#excelloServices ul li img {
    width: 40px;
}

#excelloServices ul li .service_detail {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

#excelloServices ul li .service_detail h4 {
    margin-bottom: 0px;
    font-size: 18px;
}

#excelloServices ul li .service_detail p {
    margin-bottom: 0px;
}

#excello_service_img {
    padding-top: 30px;
}

#excello_service_img .gallery_container {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(15%, 1fr));
    grid-auto-rows: auto;
    grid-auto-flow: dense;
}

#whyChooseExcello {
    background: #f2f1f1;
}

#whyChooseExcello .whyUs {
    background: #f2f1f1;
}

#whyChooseExcello .whyUs li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    margin-bottom: 10px;
}

#whyChooseExcello .whyUs li::before {
    content: '\f00c';
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 0px;
    color: #00a1dd;
}

#excelloClient {
    padding: 60px 0px;
}

#excelloClient .clientTile {
    border: 1px solid #e2e2e2;
    padding: 10px;
    margin-bottom: 10px;
}


/* New India News Page */

#newsVideo {
    padding: 60px 0px;
    background: #f2f1f1;
}

#newsVideo h3 {
    margin-bottom: 30px;
}

#newsVideo .video_tile {
    /* margin-bottom: 30px; */
    position: relative;
    border-radius: 5px 5px 0px 0px;
}

#newsVideo p {
    /* margin-bottom: 30px; */
    background: #333;
    padding: 5px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

#newsVideo .video_tile img {
    border-radius: 10px;
}

#newsVideo .video_tile .videoOverlay {
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    border-radius: 5px 5px 0px 0px;
}

#newsVideo .video_tile .videoOverlay i {
    color: #fff;
    font-size: 40px;
}

#newsVideo .video_tile:hover .videoOverlay i {
    color: #ff3a20;
}

#excelloVideos {
    padding-top: 40px;
}

#videoGallery .video a img {
    width: 100%;
}

#videoGallery .no-gutters>.col,
#videoGallery .no-gutters>[class*=col-] {
    padding-right: 5px !important;
    padding-left: 5px !important;
}

#videoGallery .video .exVideoOverlay {
    background: rgba(0, 0, 0, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 97%;
    position: absolute;
    top: 0px;
    right: 0px;
    margin: 0px .25rem;
}

#videoGallery .video .exVideoOverlay i {
    color: #fff;
    font-size: 40px;
}

#videoGallery .video a:hover .exVideoOverlay i {
    color: #ff3a20;
}

#excelloVideos button span {
    background: #00a1dd;
    width: 22px;
    height: 22px;
    display: block;
    font-size: 30px;
    line-height: 13px;
    color: #fff;
    border-radius: 3px;
}


/* Zep Job real estate page */

#zepRsProjects {
    background: #f2f1f1;
    padding: 60px 0px;
}

#zepRsProjects a {
    color: #333;
}

#zepRsProjects h3 {
    margin-bottom: 30px;
}

#zepRsProjects h5 {
    font-size: 20px;
    font-weight: 700;
}

#zepRsProjects p {
    font-size: 18px;
    text-align: justify;
    line-height: 28px;
    margin-bottom: 15px;
}

#zepRsSectors {
    padding-top: 60px;
}

#zepRsSectors h3 {
    margin-bottom: 30px;
}

#zepRsSectors {
    padding-top: 60px;
}

#zepRsSectors a {
    margin-bottom: 0px;
    position: relative;
}

#zepRsSectors a .sectorOverlay {
    background: rgba(0, 0, 0, .65);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 15px;
}

#zepRsSectors a .sectorOverlay h5 {
    font-size: 20px;
    font-weight: 700;
}

#zepRsSectors a .sectorOverlay p {
    font-size: 15px;
    text-align: justify;
    line-height: 18px;
    margin-bottom: 0px;
    font-weight: 300;
}

#zepRsSectors .margin_bottom {
    margin-bottom: 24px;
}

#zepWhyChooseUs {
    background: #f2f1f1;
    padding: 60px 0px;
}

#zepWhyChooseUs.zep_buisness_accordiansec {
    background-color: #fff;
}

#zepWhyChooseUs p {
    font-size: 18px;
    line-height: 22px;
}

#zepWhyChooseUs .accordion>.card>.card-header {
    padding: 0px;
    margin-top: 15px;
    border: 1px solid #cccccc80;
    background-color: transparent !important;
}

#zepWhyChooseUs.zep_buisness_accordiansec img {
    max-width: 100%;
}

#zepWhyChooseUs.zep_buisness_accordiansec .accordion>.card>.card-header {
    position: relative;
}

#zepWhyChooseUs.zep_buisness_accordiansec .accordion>.card>.card-header .accordian_bx {
    position: absolute;
    left: 0px;
    top: 0px;
    bottom: 0px;
    height: 47px;
    width: 50px;
    z-index: 99;
    background-color: #00a1dd;
    padding: 3px;
}

#zepWhyChooseUs.zep_buisness_accordiansec .accordion>.card>.card-header .accordian_bx .accordian_bxinner {
    position: relative;
}

#zepWhyChooseUs.zep_buisness_accordiansec .accordion>.card>.card-header .accordian_bx .accordian_bxinner:after {
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-left: 16px solid #00a1dd;
    border-bottom: 24px solid transparent;
    position: absolute;
    right: -18px;
    top: -3px;
    bottom: 0px;
    height: 100%;
    z-index: 99;
    content: '';
}

#zepWhyChooseUs.zep_buisness_accordiansec .accordion>.card>.card-header .accordian_bx .accordian_bxinner img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    margin-top: -2px;
}

#zepWhyChooseUs.zep_buisness_accordiansec .accordion>.card>.card-header {
    max-width: 1170px;
    width: 1170px;
    margin: auto;
    margin-top: 12px;
}

#zepWhyChooseUs.zep_buisness_accordiansec .accordion>.card .card-body {
    padding: 0px;
}

#zepWhyChooseUs .accordion>.card>.card-header .card-title {
    transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    -webkit-transition: .5s;
    padding: 10px 15px;
    display: block;
    margin-bottom: 0px;
    font-size: 18px;
    cursor: pointer;
}

#zepWhyChooseUs .accordion>.card>.card-header.collapsed .card-title {
    background-color: rgba(0, 0, 0, .03);
    color: #333;
}

#zepWhyChooseUs .accordion>.card>.card-header .card-title:hover,
#zepWhyChooseUs .accordion>.card>.card-header .card-title {
    background-color: #00a1dd;
    color: #fff;
}

#zepWhyChooseUs.zep_buisness_accordiansec .accordion>.card>.card-header .card-title {
    padding-left: 80px;
}

#zepWhyChooseUs .card {
    background-color: transparent;
    border: none;
    border-radius: 0;
}


/* ========competent_sec=========
===================================== */

#competent_sec .cometent_dv {
    padding: 30px 0px;
}

#competent_sec img {
    max-width: 100%;
}

#competent_sec h3 {
    text-align: left;
}

#competent_sec h6 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

#competent_sec p {
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
}


/* =========sales_leasesec========
======================================= */

#sales_leasesec {
    background-color: #f2f1f1;
    padding: 50px 0px;
}

#sales_leasesec img {
    max-width: 100%;
}

#sales_leasesec .sales_leasesec_dvtxt {
    padding: 30px 70px;
}

#sales_leasesec .sales_leasesec_dvimg {
    position: relative;
}

#sales_leasesec .sales_leasesec_dvimg .sales_leasesec_dvimginner {
    position: relative;
    overflow: hidden;
}

#sales_leasesec .sales_leasesec_dv1 .sales_leasesec_dvimg .sales_leasesec_dvimginner:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-bottom: 550px solid #f2f1f1;
    border-left: 50px solid transparent;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
}

#sales_leasesec .sales_leasesec_dv1 .sales_leasesec_dvimg:before {
    content: '';
    display: block;
    background-color: #00a1dd;
    position: absolute;
    top: -20px;
    height: 40px;
    width: 100px;
    right: 30px;
}

#sales_leasesec .sales_leasesec_dv1 .sales_leasesec_dvimg:after {
    content: '';
    display: block;
    background-color: #fff;
    position: absolute;
    right: -25px;
    bottom: 100px;
    height: 70px;
    width: 140px;
    z-index: 99;
}

#sales_leasesec .sales_leasesec_dv2 .sales_leasesec_dvimg:before {
    content: '';
    display: block;
    background-color: #00a1dd;
    position: absolute;
    top: -20px;
    height: 40px;
    width: 100px;
    left: 30px;
}

#sales_leasesec .sales_leasesec_dv2 .sales_leasesec_dvimg:after {
    content: '';
    display: block;
    background-color: #fff;
    position: absolute;
    left: -25px;
    bottom: 100px;
    height: 70px;
    width: 140px;
    z-index: 99;
}

#sales_leasesec .sales_leasesec_dv h3 {
    text-align: left;
}

#sales_leasesec .sales_leasesec_dv p {
    text-align: justify;
    line-height: 28px;
}

#sales_leasesec .sales_leasesec_dv2 .sales_leasesec_dvimg .sales_leasesec_dvimginner:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-bottom: 550px solid #f2f1f1;
    border-right: 50px solid transparent;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
}


/* =========property_mangmentsec=====
========================================= */

#property_mangmentsec {
    padding: 50px 0px;
    background-color: #fff;
}

#property_mangmentsec img {
    max-width: 100%;
}

#property_mangmentsec .property_mangimg {
    width: 80%;
    position: relative;
}

#property_mangmentsec .property_mangimg:before {
    content: '';
    display: block;
    background-color: #00a1dd;
    width: calc(100% - 20px);
    height: 10px;
    position: absolute;
    top: -20px;
    right: -10px;
    z-index: 9;
}

#property_mangmentsec .property_mangimg:after {
    content: '';
    display: block;
    background-color: #00a1dd;
    width: 10px;
    height: 95%;
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 9;
}

#property_mangmentsec h3 {
    text-align: left;
}

#property_mangmentsec p {
    text-align: justify;
    font-size: 16px;
    line-height: 28px;
}

#property_mangmentsec .property_mangeswitch1 h6 {
    font-size: 20px;
    text-align: left;
    font-weight: bold;
    margin-bottom: 0px;
}

#property_mangmentsec .property_mangeswitch1 p {
    font-size: 16px;
    text-align: justify;
    line-height: 28px;
}

#property_mangmentsec .property_mangeswitch1 {
    padding: 6px 0px;
}


/* =========real_statequote=========
========================================== */

#real_statequote {
    padding: 35px 0px;
}

#real_statequote .real_statequoteinner {
    position: relative;
    background-color: #fff;
    padding: 30px;
    -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.31);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.31);
}

#real_statequote .real_statequoteinner:before {
    font-weight: 900;
    content: '\f10d';
    display: block;
    font-family: "Font Awesome 5 Free";
    color: #00a1dd;
    font-size: 50px;
    left: 50px;
    top: -40px;
    position: absolute;
}

#real_statequote .real_statequoteinner:after {
    font-weight: 900;
    content: '\f10e';
    display: block;
    font-family: "Font Awesome 5 Free";
    color: #00a1dd;
    font-size: 50px;
    right: 50px;
    bottom: -40px;
    position: absolute;
}

#real_statequote .real_statequoteinner p {
    font-size: 35px;
    text-align: center;
    word-spacing: 12px;
}

#real_statequote .real_statequoteinner p span {
    display: inline-block;
    color: #00a1dd;
}


/* ========res_comer_sec========
===================================== */

#res_comer_sec {
    padding: 50px 0px;
    background-color: #00a1dd;
}

#res_comer_sec h3 {
    text-align: left;
    color: #fff;
}

#res_comer_sec .owl-carousel {
    position: relative;
}

#res_comer_sec .owl-carousel .owl-dots {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 12px;
    text-align: center;
}

#res_comer_sec .owl-theme .owl-dots .owl-dot.active span,
#res_comer_sec .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #00a1dd;
}


/* ==========tidfore_galsec=======
==================================== */

#tidfore_galsec,
#work_shopsec {
    padding: 50px 0px;
}

#tidfore_galsec img,
#work_shopsec img {
    max-width: 100%;
}

#tidfore_galsec ul li,
#work_shopsec ul li {
    margin-bottom: 15px;
}

#work_shopsec {
    background-color: #f2f1f1;
}


/* =========construction_sec=========
========================================== */

#construction_sec {
    padding: 50px 0px 90px;
}

#construction_sec img {
    max-width: 100%;
}

#construction_sec .construction_imgdv {
    position: relative;
}

#construction_sec .construction_imgdv .construction_posimg {
    position: absolute;
    width: 190px;
    bottom: -50px;
    right: 0px;
    border: 6px solid #fff;
}

#construction_sec .construction_imgdv .construction_imgdvinner {
    width: calc(100% - 95px);
}

#construction_sec h3 {
    text-align: left;
}

#construction_sec p {
    line-height: 28px;
    text-align: justify;
    font-size: 16px;
}


/* ==========job_seekersec=======
==================================== */

#job_seekersec {
    padding: 50px 0px;
    background: url(../images/job_seekerbnr.jpg) no-repeat right bottom;
    background-size: 100% 100%;
}

#job_seekersec.freelancer_dv {
    background-image: none;
}

#job_seekersec a {
    font-size: 18px;
    font-weight: 700;
    background: #00a1dd;
    color: '#fff';
    padding: 8px 30px;
    border-radius: 50px;
    color: #fff;
    margin-top: 20px;
}

#job_seekersec p {
    font-size: 18px;
    line-height: 28px;
    text-align: justify;
}

#job_seekersec h3 {
    text-align: left;
}

#job_seekersec .job_seekerimg {
    width: 80%;
    position: relative;
}

#job_seekersec .job_seekerimg:before {
    content: '';
    display: block;
    background-color: #00a1dd;
    width: calc(100% - 20px);
    height: 10px;
    position: absolute;
    top: -20px;
    right: -10px;
    z-index: 9;
}

#job_seekersec .job_seekerimg:after {
    content: '';
    display: block;
    background-color: #00a1dd;
    width: 10px;
    height: 95%;
    position: absolute;
    right: -20px;
    top: -20px;
    z-index: 9;
}

#job_seekersec.freelancer_dv .job_seekerimg {
    width: 80%;
    position: relative;
    float: right;
}

#job_seekersec.freelancer_dv .job_seekerimg:before {
    content: '';
    display: block;
    background-color: #00a1dd;
    width: calc(100% - 20px);
    height: 10px;
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 9;
}

#job_seekersec.freelancer_dv .job_seekerimg:after {
    content: '';
    display: block;
    background-color: #00a1dd;
    width: 10px;
    height: 95%;
    position: absolute;
    left: -20px;
    top: -20px;
    z-index: 9;
}

#job_seekersec img {
    max-width: 100%;
}


/* ========companies_reqruitsec=========
============================================== */

#companies_reqruitsec {
    padding: 50px 0px;
    background-color: #f2f1f1;
}

#companies_reqruitsec h3 {
    text-align: center;
}

#companies_reqruitsec hgroup p {
    text-align: center;
    font-size: 18px;
}

#companies_reqruitsec p {
    text-align: justify;
    line-height: 28px;
    font-size: 18px;
}

#companies_reqruitsec img {
    max-width: 100%;
}

#companies_reqruitsec hgroup {
    margin-bottom: 30px;
}

#zepreal_emodal #block div,
#zepreal_emodal #block div video {
    z-index: 99 !important;
}


/* =========delish_brandssec==========
 ============================================ */

#delish_brandssec {
    padding: 50px 0px;
    background-color: #fff;
}

#delish_brandssec h3 {
    text-align: left;
}

#delish_brandssec p {
    text-align: justify;
    line-height: 28px;
    font-size: 18px;
}

#delish_brandssec img {
    max-width: 100%;
}

#job_seekersec.dalish_dabasec {
    padding: 50px 0px;
    background: url(../images/dalish_secbg.jpg) no-repeat right bottom;
    background-size: 100% 100%;
}


/* ==========serv_varitysec=========
 ============================================= */

#serv_varitysec {
    padding: 50px 0px;
    background-color: #f4f5fd;
}

#serv_varitysec hgroup p {
    text-align: center;
    font-size: 18px;
}

#serv_varitysec hgroup h3 {
    text-align: center;
}

#serv_varitysec h3 {
    text-align: left;
}

#serv_varitysec p {
    text-align: justify;
    font-size: 18px;
    line-height: 28px;
}

#serv_varitysec img {
    max-width: 100%;
}

#serv_varitysec .serv_varitydiv {
    padding: 35px 0px;
}


/*==========our_team_sec=========
=========================================*/

#our_team_sec {
    background-color: #fff;
    padding: 35px 0px;
    position: relative;
}

#our_team_sec .element_img {
    position: absolute;
    right: 0px;
    top: -70px;
}

#our_team_sec .team_box h5 {
    font-size: 24px;
    color: #3a3a3c;
    text-align: center;
    margin-top: 18px;
}

#our_team_sec .team_box .d-none.d-md-block {
    display: none !important;
}

#our_team_sec .team_box h6 {
    font-size: 20px;
    color: #606060;
    text-align: center;
}

#our_team_sec .team_box {
    position: relative;
    overflow: hidden;
}

#our_team_sec .team_box .team_box_overlay {
    display: none;
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: -194px;
    width: 90%;
    margin: auto;
    background-color: #fff;
    z-index: 5;
    padding: 20px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
}

#our_team_sec .team_box .team_box_overlay ul {
    margin-top: 30px;
}

#our_team_sec .team_box .team_box_overlay ul li a {
    height: 40px;
    width: 40px;
    background-color: #f3f6f8;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    line-height: 46px;
    text-align: center;
}

#our_team_sec .team_box .team_box_overlay ul li a i {
    display: inline-block;
    color: #9290a3;
    font-size: 20px;
}

.client_logosec_inner.client_logosec_inner2 {
    border: none;
}

#our_team_sec .team_box .team_box_overlay h5 {
    color: #4e81ee;
}

#our_team_sec .team_box:hover .team_box_overlay {
    bottom: 0px;
}


/* ======delish_groupgalsec======
====================================== */

#delish_groupgalsec {
    padding: 50px 0px 20px;
}

#delish_groupgalsec img {
    max-width: 100%;
}

#delish_groupgalsec ul li {
    margin-bottom: 10px;
}

#delish_groupgalsec hgroup p {
    text-align: center;
    font-size: 18px;
}

#delish_groupgalsec .delish_hotelmn {
    position: relative;
}

#delish_groupgalsec hgroup {
    margin-bottom: 25px;
}

#delish_groupgalsec .delish_hotelmn .delish_hotelmninner {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    background-color: rgba(0, 161, 221, .8);
    padding: 20px;
    z-index: 99;
}

#delish_groupgalsec .delish_hotelmn .delish_hotelmninner .delish_hotelmnhead {
    position: relative;
    height: 100%;
    width: 100%;
}

#delish_groupgalsec .delish_hotelmn .delish_hotelmninner .delish_hotelmnhead h3 {
    color: #fff;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 99;
}

#delish_groupgalsec .dalish_gal1 {
    padding: 25px 0px;
}


/* ========embience_sec======
================================== */

#embience_sec {
    padding: 35px 0px;
    background-color: #f4f5fd;
}

#embience_sec img {
    max-width: 100%;
}

#embience_sec ul li {
    margin-bottom: 15px;
}


/* ========our_missionsec===== 
================================== */

.our_missionsec {
    padding-top: 20px !important;
}

.our_visionsec {
    padding-bottom: 20px !important;
}


/* ==========tranding_andistrisec======
======================================== */

#tranding_andistrisec {
    padding: 50px 0px;
}

#tranding_andistrisec .distri_bx .distri_bxtxt {
    padding: 10px;
}

#tranding_andistrisec .distri_bx h5 {
    font-size: 22px;
    font-weight: bold;
    color: #000;
    text-align: left;
}

#tranding_andistrisec .distri_bx p {
    text-align: justify;
    color: #000;
    font-size: 16px;
    line-height: 28px;
}

#tranding_andistrisec .distri_bx {
    margin-bottom: 24px;
}

#tranding_andistrisec .distri_bx img {
    width: 100%;
}


/* #tranding_andistrisec h3{ font-size: 30px; text-align: left;} */

#tranding_andistrisec p {
    text-align: justify;
}

#tranding_andistrisec h5 {
    text-align: center;
    color: #000;
    font-size: 28px;
    font-weight: bold;
}


/* ==========buisness_conssec=========
============================================ */

#buisness_conssec {
    padding: 50px 0px;
    background-color: #f2f1f1;
}

#buisness_conssec p {
    font-size: 16px;
    text-align: justify;
    line-height: 28px;
}

#companies_reqruitsec.buisn_consmission {
    padding: 0px;
    margin-top: 40px;
}

#buisness_conssec hgroup h4,
#buisness_conssec hgroup p {
    text-align: left;
}

#buisness_conssec hgroup h4 {
    font-size: 38px;
    font-weight: 700;
}


/* =========zbm_helpingsec=========
========================================= */

#tranding_andistrisec.zbm_helpingsec hgroup h3 {
    text-align: center;
}

.zbm_helpingsec hgroup p {
    text-align-last: center;
    -moz-text-align-last: center;
    -ms-text-align-last: center;
}

#tranding_andistrisec.zbm_helpingsec .distri_bx {
    position: relative;
    border: 1px solid #ddd;
    padding-bottom: 12px;
}

.zbm_helpingsec a {
    background: #00a1dd;
    padding: 8px 20px;
    color: #fff;
    display: none;
}

#tranding_andistrisec.zbm_helpingsec .distri_bx .text-center {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 10px;
}

#tranding_andistrisec.zbm_helpingsec .distri_bx h5 {
    text-align: center;
}

#tranding_andistrisec.zbm_helpingsec .distri_bx p {
    margin-bottom: 0px;
    text-align-last: center;
    -moz-text-align-last: center;
    -ms-text-align-last: center;
}

#tranding_andistrisec.zbm_helpingsec .col-md-4 {
    -ms-flex-item-align: stretch!important;
    align-self: stretch!important;
}

#tranding_andistrisec.zbm_helpingsec .distri_bx {
    height: 100%;
}


/* =========setup_companysec=====
    ====================================== */

#setup_companysec {
    padding: 50px 0px;
    background-color: #f2f1f1;
}

#setup_companysec p {
    text-align: justify;
    font-size: 18px;
    line-height: 28px;
    text-align-last: center;
    -moz-text-align-last: center;
    -ms-text-align-last: center;
}

#setup_companysec img {
    max-width: 100%;
}

#setup_companysec h3 {
    margin-bottom: 20px;
}


/* ========basic_stepco_sec======
 ===================================== */

#basic_stepco_sec {
    padding: 50px 0px;
}

#basic_stepco_sec p,
#basic_stepco_sec h3 {
    text-align: center;
}

#basic_stepco_sec hgroup p {
    font-size: 18px;
    width: 70%;
    margin: auto;
}

#basic_stepco_sec hgroup {
    margin-bottom: 40px;
}

#basic_stepco_sec .basic_stepbx {
    text-align: center;
}

#basic_stepco_sec .basic_stepbx i {
    font-size: 50px;
    text-align: center;
}

#basic_stepco_sec .basic_stepbx h5 {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
}

#basic_stepco_sec .basic_stepbx p {
    font-size: 18px;
    text-align: center !important;
}


/* ========metal_tredingsec=====
================================= */

a.view_manchor {
    background: #00a1dd;
    padding: 8px 20px;
    color: #fff;
    display: table;
}

#metal_tredingsec {
    padding: 50px 0px;
    background-color: #f2f1f1;
}

#metal_tredingsec p {
    text-align: justify;
    line-height: 28px;
    font-size: 18px;
}

#metal_tredingsec .metal_tredowl {
    margin-top: 70px;
}

#metal_tredingsec .metal_tredbx_txt {
    background-color: #fff;
    padding: 8px;
}

#metal_tredingsec .metal_tredbx_txt h5 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 0px;
    color: #000;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #00a1dd;
}


/* ========raw_materialsec======
==================================== */

#raw_materialsec {
    padding: 50px 0px;
}

#raw_materialsec p {
    text-align: justify;
    line-height: 28px;
    font-size: 18px;
}

#raw_materialsec .rawmetal_tredowl {
    margin-top: 70px;
}


/* =========oil_andgas_sec=======
====================================== */

#oil_andgas_sec a.view_manchor {
    background-color: #fff;
    color: #00a1dd;
}

#oil_andgas_sec {
    padding: 50px 0px;
    background-color: #f2f1f1;
}


/* #oil_andgas_sec h3{ color: #fff;} */

#oil_andgas_sec p {
    text-align: justify;
    font-size: 18px;
    line-height: 28px;
}

#oil_andgas_sec .owl-carousel {
    position: relative;
}

#oil_andgas_sec h3 {
    text-align: left;
}

#oil_andgas_sec .owl-carousel .owl-dots {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 12px;
    text-align: center;
}

#oil_andgas_sec .oil_angas_crausal {
    margin-top: 50px;
}


/* ========news_eventsec==========
================================= */

#news_eventsec {
    padding: 0px 0px;
}

#news_eventsec img {
    max-width: 100%;
}

#news_eventsec .media_bx .media_bxtxt {
    padding: 12px;
    background-color: #f8f7f7;
}

#news_eventsec .media_bx .media_bxtxt h4,
#news_eventsec .media_bx .media_bxtxt h4 a {
    margin-top: 12px;
    color: #00a1dd;
    text-align: left;
    font-weight: bold;
    margin-bottom: 0px;
}

#news_eventsec .media_bx .media_bxtxt p {
    font-size: 18px;
    text-align: justify;
    line-height: 28px;
}

#news_eventsec .media_bx {
    margin-bottom: 30px;
}

#news_eventsec .media_bx .media_bximg {
    position: relative;
}

#news_eventsec .media_bx .media_bximg .date {
    position: absolute;
    right: 10px;
    bottom: -28px;
    z-index: 99;
}

#news_eventsec .media_bx .media_bximg .date strong {
    background-color: #f8f7f7;
    padding: 8px;
    text-align: center;
    color: #000;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    width: 80px;
    display: block;
}

#news_eventsec .media_bx .media_bximg .date span {
    background-color: #00a1dd;
    padding: 2px 8px;
    text-align: center;
    color: #fff;
    font-weight: normal;
    font-family: 'Poppins', sans-serif;
    width: 80px;
    display: block;
}

#zepClients.news_eventmnpg {
    padding-bottom: 30px;
}


/* =========success_sec====
================================= */

#success_sec img {
    max-width: 100%;
}

#success_sec {
    margin-top: 50px;
    position: relative;
}

#success_sec.home_successsec {
    margin-top: 0px;
}

#success_sec h3 {
    text-align: center;
    color: #fff;
    font-size: 45px;
}

#success_sec img {
    display: none;
}

#success_sec p {
    text-align: center;
    width: 80%;
    margin: auto;
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
}

#success_sec {
    margin-top: 0px;
    background: url(../images/success_secbg.jpg) no-repeat center top;
    background-size: cover;
}

#success_sec .success_secinner {
    background-color: rgba(0, 161, 221, .9);
    padding: 40px 0px;
}

#success_sec .counter_bx>i {
    display: block;
    color: #fff;
    text-align: center;
    font-size: 50px;
}

#success_sec .counter_bx .counter-value {
    color: #fff;
    font-size: 35px;
}

#success_sec .counter_bx ul li i {
    color: #fff;
    font-size: 30px;
}

#success_sec .counter_bx ul {
    text-align: center;
    margin-top: 20px;
}

#success_sec .counter_bx h5 {
    text-align: center;
    color: #fff;
    font-size: 24px;
}


/* =========hotel_facilities_sec=======
============================================== */

#hotel_facilities_sec {
    padding: 50px 0px;
    background-color: #f4f5fd;
}

#hotel_facilities_sec .facilities_bx {
    margin-top: 30px;
}

#hotel_facilities_sec .facilities_bx h5 {
    text-align: left;
    font-size: 32px;
    color: #00a1dd;
    margin-bottom: 15px;
}

#hotel_facilities_sec .facilities_bx ul li {
    margin-bottom: 10px;
    text-align: left;
    padding-left: 20px;
    position: relative;
    font-size: 20px;
}

#hotel_facilities_sec .facilities_bx ul li:after {
    content: '';
    display: block;
    background-color: #00a1dd;
    height: 8px;
    width: 8px;
    position: absolute;
    left: 0px;
    top: 13px;
}

.we_accept_cardssec {
    margin-top: 40px;
}

.we_accept_cardssec ul {
    margin-top: 30px;
}

.rooms_crausaldv {
    margin-top: 40px;
}


/* =========our_storysec=======
======================================= */

#our_storysec {
    padding: 50px 0px;
    background-color: #f4f5fd;
}

#our_storysec .our_storyinner {
    border: 12px solid #7bc8e4;
    padding: 30px;
}

#our_storysec p {
    text-align: justify;
    font-size: 18px;
    line-height: 28px;
}

#our_storysec h3 {
    text-align: left;
}

#our_storysec h6 {
    font-size: 22px;
    text-align: center;
    background-color: #fff;
    padding: 8px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.31);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.31);
}

#our_storysec h6 span {
    color: #00a1dd;
}


/* =========delish_mvisionsec=========
========================================== */

#delish_mvisionsec {
    padding: 50px 0px 90px;
}

#delish_mvisionsec img {
    max-width: 100%;
}

#delish_mvisionsec .mvisiondel_imgdv {
    position: relative;
}

#delish_mvisionsec .mvisiondel_imgdv .mvisiondel_posimg {
    position: absolute;
    width: 190px;
    bottom: -50px;
    right: 0px;
    border: 6px solid #fff;
}

#delish_mvisionsec .mvisiondel_imgdv .mvisiondel_imgdvinner {
    width: calc(100% - 95px);
}

#delish_mvisionsec h3 {
    text-align: left;
}

#delish_mvisionsec p {
    line-height: 28px;
    text-align: justify;
    font-size: 16px;
}


/* Album Page */

#albumPage {
    padding-top: 60px;
    /* background: #f2f1f1; */
}

#albumPage .albumTile {
    position: relative;
    margin-bottom: 50px;
}

#albumPage a {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

#albumPage a:before {
    content: '';
    background: #d2d0d0;
    height: 100%;
    width: 100%;
    position: absolute;
    transform: rotate(5deg);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

#albumPage a:after {
    content: '';
    background: #d2d0d0;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0px;
    transform: rotate(-5deg);
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

#albumPage a img {
    border-radius: 5px;
    position: relative;
    z-index: 9;
}

#albumPage .albumOverlay {
    position: absolute;
    bottom: 0px;
    height: max-content;
    width: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 10;
    border-radius: 5px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}

#albumPage .albumOverlay .albumContent {
    text-align: center;
}

#albumPage .albumOverlay .albumContent h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0px;
}

#albumPage .albumOverlay .albumContent p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0px;
}

#albumPage a:hover:before {
    transform: rotate(-0deg);
}

#albumPage a:hover:after {
    transform: rotate(-0deg);
}

#job_applymodal .modal-dialog {
    max-width: 920px;
    background: #fff;
    margin-top: 10vh;
}

#job_applymodal .modal-dialog-centered::before,
#job_applymodal .modal-dialog-centered {
    min-height: inherit;
    height: initial;
}

#job_applymodal .modal-body {
    padding: 0px;
}

#job_applymodal button.close {
    position: absolute;
    right: -15px;
    background: #fff;
    height: 30px;
    width: 30px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 50%;
    opacity: 1;
    top: -15px;
}

#job_applymodal button.close span {
    display: block;
    font-size: 37px;
    margin-top: -9px;
}

#job_applymodal .modal-dialog h3 {
    font-size: 32px;
    margin: 0px 0px 15px 0px;
}

#job_applymodal .modal-dialog h4 {
    margin: 0px 0px 25px 0px;
}

#job_applymodal .modal-dialog .f-style label {
    top: 9px;
    left: 12px;
}

#job_applymodal .modal-dialog .f-style.active label {
    top: -12px;
    left: 12px;
}

#job_applymodal .modal-dialog .form-control {
    border-radius: 0px;
}

#job_applymodal .modal-dialog .site_btn {
    border-radius: 0px;
}

.modal-content {
    border: none;
}


/* ==========tidfore_servicepro_sec=======
================================================= */

#tidfore_servicepro_sec {
    padding: 45px 0px;
}

#tidfore_servicepro_sec .achievementImages {
    padding: 0px;
}

#tidfore_servicepro_sec .achievementImages .achivTiles p {
    padding: 5px 2px;
    font-size: 16px;
}


/* ========industrial_parksec======
======================================== */

#industrial_parksec {
    padding: 50px 0px;
    background-color: #f2f1f1;
}

#industrial_parksec img {
    max-width: 100%;
}

#industrial_parksec ul li {
    margin-bottom: 30px;
}


/* ========tid_officesec======
======================================== */

#tid_officesec {
    padding: 50px 0px;
    background-color: #fff;
}

#tid_officesec img {
    max-width: 100%;
}

#tid_officesec ul li {
    margin-bottom: 30px;
}


/* ========tid_projectsec======
======================================== */

#tid_projectsec {
    padding: 50px 0px;
    background-color: #f2f1f1;
}

#tid_projectsec img {
    max-width: 100%;
}

#tid_projectsec ul li {
    margin-bottom: 30px;
}


/* ==========tidfore_videossec==========
============================================= */

.tidfore_videossec {
    padding-bottom: 50px;
}

.tidfore_videossec .video a {
    display: block;
    position: relative;
}

.tidfore_videossec #videoGallery .video .exVideoOverlay,
.tidfore_videossec #videoGallery .video img {
    width: 100%;
    margin: 0px;
}

.tidfore_videossec h5 {
    padding: 12px;
    color: #000;
    text-align: left;
    font-size: 22px;
    line-height: 27px;
    background-color: #f2f1f1;
    margin-bottom: 0px;
}

.container {
    max-width: 1170px;
    width: auto;
    margin: auto;
    padding: 0px 15px;
}