/********** Template CSS **********/
:root {
    --primary: #4290c9;
    --secondary: #FF6922;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


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

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


/*** Button ***/
.btn {
    transition: .5s;
}

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

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

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

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

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


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

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

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

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

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
       padding: 10px 0 !important;
    }

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

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

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

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

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


/*** Header ***/
/*@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}
*/
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

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

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

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

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


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

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

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

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

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

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

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

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

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

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.text-primary {
    color: #4290c9 !important;
}
.btn-primary {
    color: #000;
    background-color: #4290c9 !important;
    border-color: #4290c9 !important;
}
.bg-primary {
    background-color: #4290c9 !important;
}
.cust-bx p{color:#000;}

.work-sec {
  padding: 60px 0 40px;
  text-align: center;
}
.head_box {
  margin-bottom: 80px;
}
.head_box h2 {
  margin: 0 0 10px;
}
.work-sec h2 {
  text-transform: uppercase;
}
.work-sec h2::before {
  background-color: #4290c9;
  bottom: 0;
  content: '';
  height: 4px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 60px;
}
.work-box {
  background-color:#f8f8f8;
  height: 100%;
  padding: 0 18px 30px;
}
.work-sec h4 {
  align-items: center;
  background-color: #4290c9;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 40px;
  font-weight: 800;
  height: 100px;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  top: -50px;
  width: 100px;
}

.work-sec h4::before {
  background-color: #4290c9;
  bottom: -20px;
  content: '';
  height: 20px;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 2px;
}
.work-box img {
  height: 70px;
}
.custom_btn {
  color: #fff !important;
  background: #b80808;
  border-radius: 30px;
  border: 1px solid #b80808;
  text-align: center;
  display: inline-block;
  min-width: 275px;
  font-size: 20px;
  line-height: 30px;
  padding: 12px 25px;
  transition: ease-in-out .3s;
  font-weight: 400;
}
.step_sec .custom_btn {
  margin-top: 30px;
} 


/*====sunil new ui css start here===*/
.expert-img {
    padding-top: 50px;
}

.expert-img img {
    border-radius: 10px;
}
.step-img img {
    width: 100%;
    border-radius: 5px;
    height: 440px;
    object-fit: cover;
    object-position: top;
}

@media(max-width: 767px){
.expert-img img {
    width: 100%;
}
.step-img {
    margin-bottom: 10px;
}


.work-sec.step_sec .row.align-items-center:nth-child(3) .col-md-6.col-lg-6:nth-child(1) {
    order: 2;
}

}

/*============================ New CSS ==========================================*/

p:not(:last-child) {
    margin-bottom: 10px;
}
#myBtn{display:none;position:fixed;bottom:20px;right:30px;z-index:99;font-size:28px;border:none;outline:0;background:#4793ca;color:#fff;cursor:pointer;padding:0;width:60px;height:60px;border-radius:100%}
#myBtn:hover{background-color:#555}
a,a:focus,a:hover{text-decoration:none!important;transition:ease-in-out .3s}
a{color:#4793ca}
button:focus{box-shadow:none!important}
ul{padding:0;margin:0}
img{max-width:100%;transition:ease-in-out .3s;width:auto;height:auto}
::placeholder{color:#000!important}
button:focus{outline:0!important}
.black_txt{color:#000!important}
.blackL_txt{color:#2a2e32!important}
.white_txt{color:#fff!important}
.blue_txt{color:#4793ca!important}
.gray_txt{color:#66696c!important}
h1, h2, h3, h4, h5, h6{color: #242424;}
.container{max-width:1280px}

.call_email a {
    color: #fff;
    font-size: 14px;
}
.header_sec {
    transition: ease-in-out .2s;
    background: #fff;
}
.header_sticky {
    border-bottom: 2px solid #ccc;
    position: fixed;
    z-index: 991;
    width: 100%;
    top: 0;
    left: 0;
}
.paddTB_70 {padding: 70px 0;}
.call_us span, .social_icon a {
    color: #4793ca;
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 20px;
}
.header_sec .navbar{background:none!important;padding:10px 20px}
.navbar-brand{margin:-30px 0 0;padding:0;max-width:150px}
.navbar-brand{margin:0;padding:0;max-width:190px}
.header_sticky .navbar-brand{margin:0}

.header_sec .navbar .nav-item:not(:last-child) {
    border-right: 2px solid #4793ca;
    padding-right: 0px;
      margin-right: 13px;
}
.header_sec .navbar .nav-item{transition:ease-in-out .3s}
.header_sec .navbar .navbar-nav .nav-link {
    font-size: 15px;
    color: #242424;
    padding:0;
    line-height: 15px;
    font-weight: 600;
    position: relative;
    border-bottom: 3px solid transparent;
}
.header_sec .navbar .navbar-nav .nav-link:hover, .header_sec .navbar .navbar-nav .active .nav-link {
    border-bottom: 3px solid #4793ca;
    color: #4793ca;
}
.custom_btn {
    color: #fff !important;
    background: #4793ca;
    border-radius: 10px;
    border: 1px solid #4793ca;
    text-align: center;
    display: inline-block;
    min-width: 175px;
    font-size: 18px;
    line-height: 30px;
    padding: 10px 25px;
    transition: ease-in-out .3s;
    font-weight: 400;
    text-transform: uppercase;
}
.black_btn {
    background: #242424;
    border: 1px solid #242424;
}
.custom_btn:hover {
    background: #4793ca;
    border: 1px solid #4793ca;
}
.blue_btn:hover {
    background: #cf0808;
    border: 1px solid #cf0808;
}
.btn_group .custom_btn:not(:last-child) {
    margin-right: 15px;
}
.call_us {
    display: flex;
    align-items: center;
}
.call_us span {
    width: 50px;
    height: 50px;
    border: 5px solid #4793ca;
    margin-right: 5px;
    font-size: 30px;
}
.call_us h6 {
    margin: 0 0 1px;
    font-weight: 600;
    font-size: 16px;
}
.call_us a {
    font-weight: 600;
    font-size: 20px;
}
.connect_btn {
    position: fixed;
    right: -56px;
    top: 35%;
    z-index: 99;
    border-radius: 5px 5px 0 0!important;
    transform: rotate(-90deg);
    font-size: 16px!important;
    font-weight: 600;
    padding: 6px 12px!important;
    min-width: inherit;
}
.connect_modal .modal-content {
    background: 0 0;
    border: none;
}
.connect_modal .modal-dialog {
    max-width: 650px;
}
.btn-close {
    position: absolute;
    z-index: 9;
    opacity: inherit!important;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 100%;
    right: -15px;
    top: -10px;
    color: #fff;
    border: 2px solid #4793ca;
}
/* Banner CSS Start here */
.bnr_sec {
    background: url(../img/bnr_bg.webp) no-repeat center/cover;
}
.bnr_sec .carousel-item {
    /* padding: 70px 0 100px; */
    position: relative;
    /* min-height: 476px; */
}
.bnr_sec .carousel-item::before, .contact_sec:before, .inner_bnr:before {
    content: "";
    display: block;
    background: rgba(255, 255, 255, 0.779);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}
.bnr_sec .container-fluid {
    height: 100%;
    display: flex;
    align-items: center;
}
.bnr_sec .container, .bnr_sec .container-fluid, .inner_bnr{
    z-index: 1;
    position: relative;
}
.bnr_txt {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.main_head {
    font-size: 35px;
    margin-bottom: 30px;
    color: #242424;
    text-transform: uppercase;
    font-weight: 700;
}
.bnr_txt h4 {
    color: #242424;
    margin-bottom: 40px;
    font-size: 28px;
}
.sec_head {
    font-size: 48px;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 600;
}
.btn_group{margin-top: 30px;}
.contact_form {
    background:#fff;
    padding: 30px;
    border-radius: 10px;
}
.contact_form .sec_head {
    font-size: 36px;
    margin-bottom: 20px;
}
.contact_form .form-group {
    margin-bottom: 12px;
    position: relative;
}
.contact_form .form-control {
    height: 55px;
    padding: 5px 15px;
    color: #000;
    border-radius: 4px;
    background-color: #ffff;
    font-size: 15px;
    border: none;
}
.contact_form textarea.form-control {
    height: 120px;
    resize: none;
}
.contact_form .row {
    margin: 0 -6px;
}
.contact_form .row > div {
    padding: 0 6px;
}
.contact_form .custom_btn {
    display: block;
    margin: 5px auto 0;
    max-width: 180px;
    width: 100%;
}
.carousel-indicators [data-bs-target]{
    height: 8px;
    background-color: #4793ca;
}
/* Banner CSS End here */


.custom_btn .fa {
    margin-right: 10px;
}
.about_txt p {
    margin: 20px 0;
}
.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
.owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.owl-nav button:not(:last-child) {
    margin-right: 10px;
}
.owl-nav button {
    width: 25px;
    height: 25px;
    color: #fc8004 !important;
    font-size: 24px !important;
    border: 1px solid #fc8004 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.about_txt {
    max-width: 550px;
}
/* About-sec CSS End here */
/* Move-Benifits-sec CSS start here */
.move_sec .head_box p {
    max-width: 100%;
}
.move_box {
    background: #f4f4f4;
    padding: 25px 30px;
    height: 100%;
}
.move_box:hover {
    background: #222;
}
.move_box:hover h4, .move_box:hover p {color: #fff;}
.move_icon img {
    height: 65px;
}
.move_box h4 {
    display: block;
    color: #242424;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.3;
    margin: 20px 0 10px;
}
/* Move-Benifits-sec CSS End here */
/* Gallery-sec CSS Start here */
.gallery_sec .blog_box h6 {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    padding: 15px;
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
}
.test_slider .item {
    padding-top: 20px;
}
.test_slider .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.test_slider .owl-nav button {
    width: 25px;
    height: 25px;
    color: #4793ca !important;
    font-size: 24px !important;
    border: 1px solid #4793ca !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
/* Gallery-sec CSS End here */

/* Service-sec CSS Start here */
.service_sec {
    padding: 30px 0;
}
.service_sec .btn_group {
    margin: 0;
}
.about_srvc {
    background: #242424;
    box-shadow: 0 2px 20px 0 rgb(0 0 0 / 10%);
    padding: 40px 20px;
    transition: all 0.3s ease 0s;
    height: 100%;
    border-radius: 10px;
}
.about_srvc:hover{transform: scale(1.1);}
.service_sec .about_srvc:hover{background: #ed9aa4;}
.service_sec .about_srvc:hover *{color:#fff}
.about_srvc .about_icon img, .work_step .about_icon img{filter: brightness(0) invert(1);}
.about_srvc h4 {
    margin: 25px 0 15px;
    font-size: 20px;
    color: #fff;
}
.about_srvc p{color: #fff;}
.about_srvc .custom_btn{margin-top: 20px;}
.gray_bg {
    background: #4793ca;
}
.col_row > div {
    margin-bottom: 24px;
}
.head_box p {
    max-width: 900px;
    margin: 0 auto;
}
.about_icon img {
    height: 70px;
}
.service_sec .blog_content h6 {
    font-size: 20px;
    line-height: normal;
}
/* Service-sec CSS End here */
.contact_sec {
    background: url(../img/bnr_slide.webp) center/cover;
    position: relative;
	background: #4793ca;
}
.contact_secs {
    background: url(../img/bnr_slide.webp) center/cover;
    position: relative;
}
.contact_sec:before, .inner_bnr:before{
    background: rgb(0 0 0 / 34%);
}
.contact_sec .container {
    position: relative;
    max-width: 1000px;
    z-index: 9;
}
.contact_sec .contact_form {
    max-width: 600px;
    padding: 40px 40px 50px;
    border-radius: 30px;
    background: rgb(29 27 27);
}
.contact_icon {
    min-width: 70px;
    margin: 0 15px 0 0;
    max-width: 70px;
    text-align: center;
    background: #4793ca;
    height: 70px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_icon img {
    max-height: 40px;
    filter: brightness(0) invert(1);
}
.contact_txt h3 {
    font-size: 24px;
    margin-bottom: 3px;
}
.contact_txt p, .contact_txt p a {
    color: #242424;
    margin: 0;
}

/* Step-sec css start here */
.step_box {
    padding: 20px 10px;
    border-radius: 14px;
    transition: ease-in-out .5s;
    background: #fff;
    cursor: pointer;
    height: 100%;
    text-align: center;
    
}
.service_sec .move_box, .step_box{
    display: flex;
    justify-content: flex-start;
    align-content: space-between;
    flex-wrap: wrap;
    justify-content: center;
}
.step_box > div, .service_sec .move_box > div{width: 100%;}
.step_icon {
    background: #fff;
    min-width: 70px;
    height: 70px;
    width: 70px;
    padding: 15px;
    margin: 0 auto;
    border-radius: 100%;
}
.step_box h4 {
    color: #000;
    margin: 20px 0 10px;
    font-size: 18px;
    font-weight: 700;
}
.step_box p {
    font-size: 14px;
    line-height: normal;
    color: #000;
}
.step_box .custom_btn {
    padding: 7px 10px;
    font-size: 14px;
    margin-top: 20px;
}
/* Step-sec css end here */

.blog_box {
    border: 1px solid #e2e2e2;
    box-shadow: 0 4.15631px 3.32505px rgba(221,221,221,.25);
    border-radius: 5px;
    height: 100%;
    background: #fff;
    position: relative;
}
.blog_img {
    height: 250px;
}
.blog_img img {
    width: 100%!important;
    object-fit: cover;
    height: 100%;
    object-position: top left;
}
.blog_content {
    padding: 20px;
}
.blog_content h6 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #2d3748;
    min-height: 34px;
    margin-bottom: 15px;
}
.blog_content p {
    font-size: 15px;
    line-height: 22px;
    color: #718096;
}
.date_box {
    margin-top: 20px;
}
.date_box span, .read_more {
    font-size: 14px;
    line-height: 14px;
    color: #718096;
}
.read_more {
    font-weight: 500;
    color: #4793ca;
}

.accordion-header {
    margin-bottom: 0;
}
.collapse_box .accordion-button {
    font-weight: 500;
    font-size: 20px;
    color: #242424;
    padding: 25px;
}

.footer_sec{background:#000 url(../img/footer_bg.webp) no-repeat center/cover;background-position:center top;padding:60px 0}
.footer_logo img{max-width:200px}
.footr_head {
    font-size: 24px;
    margin-bottom: 15px;
}
.footer_sec a,.footer_sec p{font-size:14px;color:#d6d6d6;line-height:normal}
.footer_sec a:hover, .copy_right a{color:#4793ca}
.footer_menu p {
    margin-bottom: 20px;
    line-height: 26px;
}
.footer_menu li {
    margin: 0 0 12px 0;
}
.footer_menu a {
    font-size: 14px;
    color: #fff;
    line-height: 22px;
    display: inline-block;
    font-weight: 500;
    padding: 0;
}
.footer_sec .contact_icon {
    min-width: 40px;
    max-width: 40px;
    margin-right: 15px;
    height: 40px;
}
.footer_sec .contact_icon img {
    max-height: 20px;
}
.footer_sec .social_icon {
    margin-top: 30px;
}
.footer_sec .adrs_box {
    margin-bottom: 10px;
}
.adrs_box {
    margin-bottom: 30px;
    align-items: center;
}
.social_icon {
    margin-top: 30px;
}
.social_icon a:not(:last-child){margin-right:15px}
.social_icon a {
    background: #fff;
    color: #000;
    font-size: 24px;
}
.social_icon a:hover {
    background: #4793ca;
    color: #000;
}
.fa-facebook {color: #4267b2;}
.fa-linkedin {color: #0077b5 ;}
.fa-instagram {color: #dc2743;}
.fa-twitter{color: #00aced;}
.social_icon a:hover .fa{color:#fff}
.copy_right {
    background: #2d2d2d;
    padding: 10px 0;
}
.copy_right p, .copy_right a {
    font-size: 14px;
    color: #fff;
}

/* NOC-page CSS start here */
.post_head {
    margin-bottom: 20px;
}
.post_image, .tble_content {
    margin:0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
}
.post_image img{
    margin:0 0 20px;
}
.post_content p {
    margin-bottom: 15px;
}
.post_content table tr {
    vertical-align: middle;
}
.category_menu {
    border: 1px solid #e4e4e4;
    padding: 15px;
    margin-bottom: 24px;
}
.category_menu h4, .category_menu li a:hover {
    color: #4793ca;
}
.category_menu > ul > li:not(:last-child) {
    margin-bottom: 15px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}
.category_menu li {font-size: 15px;}
.category_menu li li {
    margin-top: 5px;
}
.category_menu li a{color: #242424;}

/* NOC-page CSS end here */
/* Post-Landing-page CSS start here */
.inner_bnr.contact_sec {
    padding: 50px 0;
}
.inner_bnr .container {
    max-width: 1280px;
}
.side_bar h4 {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    margin: 12px 0 15px;
}
.side_bar li:hover {border-color:#4793ca !important;}
.side_bar li a span {
    display: block;
    font-size: 14px;
    color: #242424;
}
.side_bar li a span:first-child {
    font-size: 16px;
    font-weight: 600;
    color: #4793ca;
}
.side_bar li:hover a span{color: #4793ca;}
.blue_head {
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}
.blue_head h4 {
    background: #4793ca;
    padding: 15px 20px;
    color: #fff;
    margin: 0;
}
.post_list {
    padding: 20px;
}
.post_content .collapse_box .accordion-button {
    font-size: 20px;
    padding: 15px 25px;
}
.post_content .collapse_box{margin-bottom: 15px;}
.inner_bnr p {color: #fff;}
.post_content .test_slider {
    background: #e9e9e9;
    padding:30px 15px;
    margin: 20px 0;
    text-align: center;
}
.post_content .test_slider h6 {
    margin-top: 10px;
    padding: 0 10px;
}
.post_content .test_slider p {
    padding: 0 10px;
}
/* Post-Landing-page CSS end here */

.advntg_sec .carousel-item img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
}
.advntg_sec .carousel-item .container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advntg_sec .carousel-item .container h3 {
    background: rgb(255 255 255 / 88%);
    padding: 20px 30px;
    color: #4793ca;
    border: 4px solid;
}
.inner_bnr .main_head {
    color: #fff;
}

/* Modal Form CSS START */
.connect_modal .form-control {
    border: 1px solid #ccc;
}
.connect_modal .contact_form .sec_head {
    font-size: 26px;
}
.service_sec .move_box h4 {
    text-transform: uppercase;
}
/* Modal Form CSS END */
	  .kitchenImg_bg:before {
    content: "";
    display: block;
    width: 50%;
    height: 50%;
    background: #4793ca;
    position: absolute;
    left: 0;
    top: 0;
}
.kitchenImg_bg img {
    position: relative;
}
.kitchenImg_bg {
    padding: 25px 0 0 25px;
    border-radius: 10px;
}

.kitchenImg_bg, .kitchenImg_bg img {
    position: relative;
}
@media (min-width: 992px) {
    .content_scroll {
        max-height: 600px;
        overflow-y: auto;
        overflow-x: hidden;
        padding-right: 5px;
    }
}
.head_h3 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 600;
    color: #212529;
}
.weDo_txt h4, .weDo_txt h5 {
    color: #212529;
    margin-bottom: 10px;
    font-weight: 600;
}
.weDo_txt p {
    margin-bottom: 20px;
}
.chooseUs:before:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(31, 40, 47, .9);
}
.chooseUs{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 70px 0;
	background: #e7f1ff;
    background-attachment: fixed !important;
    width: 100%;
    height: 100%;
}
.chooseUs h2 {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    text-align: center;
    color:#000;
    margin-bottom: 40px;
}

/* Hides all sub-menus */
.menu-item-has-children > ul {
  display: none;
  position: absolute;
  padding:20px !important;
  z-index: 999;
  background:#fff;
  width: 357px !important;
  list-style:none;
}
.menu-item-has-children:hover > ul {
  display: block;
}
.menu-item-has-children:hover > ul li a::after {
  display:none;
}
.menu-item-has-children > ul li{padding:10px;border:none !important;}
.menu-item-has-children a::after {
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  content: "";
  border-top:
.3em solid;
  border-right:
.3em solid transparent;
  border-bottom:
0;
  border-left:
.3em solid transparent;
}

@media (min-width: 992px) {
  .menu-item-has-children {
    position: relative;
  }
}

.pagination, .pagi_nation {
	display:flex !important;
    justify-content: center !important;
    margin-top: 40px !important;
}
.pagination li:not(:last-child), .pagi_nation .page-numbers:not(:last-child){margin-right: 10px;}
.pagination a, .pagi_nation .page-numbers {
    width: 52px !important;
    height: 52px !important;
	 background: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 500 !important;
}
.page-item.active .page-link, .pagination a:hover, .pagi_nation .page-numbers:hover, .pagi_nation .page-numbers.current {
    background: #fff !important;
    border-color: #fff !important;
    color: #000 !important;
}
.wp-pagenavi {
  display: flex;
}
.wp-pagenavi span.current {
  font-weight: bold;
  background:#f8e9e9;
  border-radius:100% !important;
  width: 52px !important;
  height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
}
.wp-pagenavi span {
  border:1px solid #fff !important;
  padding-top: 10px !important;
  color: #fff !important;
}