/********** Template CSS **********/
body {
    /* background-color: #8186a3; */

}

:root {
    --primary: #0dcaf0;
    --light: #F8F8F8;
    --dark: #252525;
    /* brown colour  #B78D65 */
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

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

.carouselAbout {
    height: 100vh;
}

@media (max-width: 768px) {
    .carouselAbout {
        height: 40vh;
    }

    .carouselAboutpage {
        height: 22vh;
    }

}


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

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


/*** Button ***/
.btn {
    font-weight: 500;
    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;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


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

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

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

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

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

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

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

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

}


/*** Header ***/

/* for Investors Tab start */

.icons::after{
    border: none;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    float:right;
    margin-right: 20px;
}

ul li{
    list-style: none;
}
ul li a{
    text-decoration: none;
    color: #000;
}

/*.dropdown-menu ul li a:hover{*/
/*    background-color: var(--primary);*/
/*}*/

/*ul li:hover a{*/
/*    color: #000;*/
/*}*/

/*ul li:hover{*/
/*    color: var(--primary);*/
/*}*/


.dropdown-menu ul{
    display: block;
    /* margin: 10px; */
}

.dropdown-menu ul li {
    width: 250px;
    padding: 10px;
    margin: -10px;
}

.dropdown-menu-1{
    display: none;
}

ul li:hover > a:first-child{
     color: var(--primary);
}

.dropdown-menu ul li:hover .dropdown-menu-1{
    display: block;
    position: absolute;
    top: 0px;
    left: 260px;
    padding: 5px 0 20px 0;
    background-color: #fff;
}

.dropdown-menu-2{
    display: none;
}

.dropdown-menu ul li:hover .dropdown-menu-2 {
    display: block;
    position: absolute;
    top: 100px;
    left: 260px;
    padding: 10px 10px 20px 0;
    background-color: #fff;
}

.dropdown-menu-2-1{
    display: none;
}

.dropdown-menu ul li:hover .dropdown-menu-2 ul li:hover .dropdown-menu-2-1{
    display: block;
    position: absolute;
    top: 150px;
    left: 50px;
    padding: 5px 15px 20px 0;
    background-color: #fff;
}

.dropdown-menu ul li:hover .dropdown-menu-2 ul li:hover .dropdown-menu-2-1 ul li{
    width: 280px;
}
/* for Investors Tab end */

.aboutustitle {
    margin-top: -50px;
}

.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0);
}

@media (max-width: 768px) {
    .aboutustitle {
        margin-top: 20px;
    }

    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;

        width: 85%;
        height: 70%;
        object-fit: cover;
        justify-content: center;
        /* margin-left: 90px; */

    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), url(../img/AboutUs/About\ Us\ Banner.jpg) center center no-repeat;
    background-size: cover;
}

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


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    /* margin-bottom: -10px; */

}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: #b4edf9;
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


.video iframe{
    width: 100%;
    height:400px;
}

@media(max-width:767px) {
.video iframe{
    width: 100%;
    height:250px;
}
    
}


/*** About & Feature ***/
.container-xxl {
    margin-top: -100px;
}

.newmyhomeimg img {
    height: 80vh;
    width: 33vw;
}


.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

@media(max-width:767px) {

    .about-img img,
    .feature-img img {
        position: absolute;
        width: 80%;
        height: 80%;
        object-fit: cover;

    }

    .newmyhomeimg img {
        height: 80%;
        width: 100%;
        margin-left: 35px;
        /* margin-right: 20px; */
    }

    .ABOURPARAWIDTH {
        width: 125%;
        font-size: 15px;
    }
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid #0dcaf0;
    z-index: -1;
}

.countinghomeno {
    border: 5px solid#0dcaf0;
    /* padding: 30px; */

}

.btnform:hover {
    background-color: gray;
}

.policy p{
    /*text-align: center;*/
    margin-top: 0px;
}

.policy ol{
    margin-top: 0px;
}

.policy ol li{
    margin-left: 50px;
}




/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

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

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

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

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}




/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.aboutteammargin {
    margin-top: -10px;
}

.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

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


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.firstpagefoote {
    margin-bottom: -500px;
    padding-bottom: 10px;
}


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    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;
    /* color: var(--primary); */
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
    background-color: #777777;
}

.footer .form-control {
    border-color: #777777;
}

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

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

.footer .copyright a:hover {
    /* color: var(--primary); */
}

.counter {
    background-color: #f5f5f5;
    padding: 20px 0;
    border-radius: 5px;
}

.count-title {
    font-size: 40px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.count-text {
    font-size: 13px;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 0;
    text-align: center;
}

.fa-2x {
    margin: 0 auto;
    float: none;
    display: table;
    color: #9de0ed;
}

/* --------------------slider logo client------------------------ */
.brands {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px
}

.brands_slider_container {
    height: 180px;
    border: solid 7px #0dcaf0;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    padding-left: 97px;
    padding-right: 97px;
    background: whITE;
}



.brands_slider {
    height: 100%;
    margin-top: 50px;
}

.brands_item {
    height: 100%;
}

.brands_item img {
    max-width: 100%;
}

.brands_nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    cursor: pointer
}

.brands_nav i {
    color: #e5e5e5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease
}

/* ------------------------------------------------------------------ */
/* head,
body {
     background-color: lightcyan 
} */

.card {
    cursor: pointer;

    padding: 20px;

}

.hd {
    font-size: 25px;
    font-weight: 550
}

.card.hover,
.card:hover {
    box-shadow: 0 20px 40px #0dcaf0
}

.img {
    margin-bottom: 35px;
    -webkit-filter: drop-shadow(5px 5px 5px #0dcaf0);
    filter: drop-shadow(5px 5px 5px #0dcaf0)
}

.card-title {
    font-weight: 600
}

button.focus,
button:focus {
    outline: 0;
    box-shadow: none !important
}

.ft {
    margin-top: 25px
}

.chk {
    margin-bottom: 5px
}

.rck {
    margin-top: 20px;
    padding-bottom: 15px
}

.card-title {
    color: #0dcaf0;
}

.text-muted {
    font-size: 0.8vw;
}

/* ------------------------------------------ */
.px-3 {
    justify-content: center;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 80px;
}

.PRODUCTTITLE {
    justify-content: center;
    text-align: center;
    font-size: 200%;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 10PX;
}

/* ------------------------------------our associates--------------------------------------------? */
/* body {
    background-color: #E3F2FD;
} */

.heading {
    font-size: 40px;
    font-weight: 600;
    color: #9de4f3;

}


.line1 {
    color: #000;
    font-size: 12px;

}

.line2 {
    color: #000;
    font-size: 12px;

}

.line3 {
    color: #000;
    font-size: 12px;

}

.cards {

    transition: all 0.2s ease;
    cursor: pointer;
    padding: 5px;
    height: 261px;


}



.cards:hover {

    box-shadow: 5px 6px 6px 2px #0dcaf0;
    transform: scale(1.1);
}

/* ---------------------------------- certificate--------------------------------------------? */
/*@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');*/

/** {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    font-family: 'Poppins', sans-serif*/
/*}*/

.certificate {
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    color: #0dcaf0;
}

/* body
{
    min-width: 100vw;
    min-height: 100vh;
    display:flex;
    justify-content: center;
    align-items: center;
    background: #16384c;
} */

.container .row .imgContainer{
margin: 10px 10px;

}

.container .row .imgContainer img{
    width: 300px;
    height: 225px;
}

.container .row h2{
    text-align: center;
    padding: 10px 10px;
    font-size: larger;
}

.policy .card1 {
    max-width: 100%;
    height: auto;
    margin: 30px 10px;
    padding: 20px 15px;
    box-shadow: 0 2px 05px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
    margin-top: 2%;
    margin-bottom: 2%;
    border-radius: 25px;
}

.policy .card1:hover{
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-10px);
}

.container .card {
    max-width: 300px;
    height: 215px;
    margin: 30px 10px;
    padding: 20px 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
    margin-top: 5%;
    margin-bottom: 5%;
}

.container .card:hover {
    height: 200px;
}

.container .card .imgContainer {
    position: relative;
    width: 250px;
    height: 250px;
    top: -50px;
    left: 10px;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.container .card .imgContainer img {
    max-width: 100%;
    border-radius: 4px;
}

.container .card .content {
    position: relative;
    margin-top: -140px;
    padding: 10px 15px;
    text-align: center;
    color: #111;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease-in-out;
}

.container .card:hover .content {
    visibility: visible;
    opacity: 1;
    margin-top: -40px;
    transition-delay: 0.3s;
}


@media (max-width: 420px) {
/*    .container .row .imgContainer{*/
/*margin: 10px 10px;*/

/*}*/

.container .row .imgContainer{
    margin-left: -25px;
}

    .container .card .imgContainer {
        left: -2px;
    }

    .container .card:hover {
        height: 250px;
    }


}

/* ---------------------------------------------------------COUNTER-------------------------------------------------------------------- */
.container {
    /* margin-top:100px; */
}

.counter-box {
    display: block;
    background: navy;
    padding: 40px 20px 37px;
    text-align: center;
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: whitesmoke;
    font-size: 18px;
    font-weight: 500;
}

.counter-box i {
    font-size: 60px;
    margin: 0 0 15px;
    color: #d2d2d2;
}

.counter {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #666;
    line-height: 28px
}

.counter-box.colored {
    background: #3acf87;
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    color: #fff
}

.counterhome {
    /* padding: 20px; */
    margin: 10px;
}

/* -----------------------------------------------------------------PRODUCT-------------------- */
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 15px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px 10px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 3px 10px 3px;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    background: #88e1f3;
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    top: 35px;
    left: 35px;
    border-top: 3px solid #fff;
    border-left: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
    display: block;
    content: "";
    width: 48px;
    height: 48px;
    position: absolute;
    bottom: 35px;
    right: 35px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transition: all 0.5s ease 0s;
    z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
    text-align: center;
    z-index: 4;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: #95e9fa;
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
    top: 15px;
    left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
    bottom: 15px;
    right: 15px;
}

.MILESTONE {
    justify-content: center;
    text-align: center;
    padding-bottom: 80px;
    margin-top: -120PX;
}

/* --------------------------------about form-------------------------------------- */
.aboutform {
    width: 40%;
    justify-content: center;
    margin-left: 30%;
    /* margin-bottom: 100px; */

}

.aboutform .formfile :hover {
    cursor: pointer;



}

.aboutform .mb-3 placeholder {

    color: inherit;
}

@media (max-width:767px) {
    .aboutform {
        width: 80%;
        margin: 5%;
        padding: 0%;
        /* height: 180%; */

    }
    
}

/* -------------------------------------google map-----------------------------------? */
.contactmap {
    width: 90%;
    justify-content: center;

    margin-left: 5%;
    margin-right: 5%;
}

.contactmap .map-container {
    justify-content: center;
}

/* ---------------------------------------------galleys css--------------------------------------------- */

/* Center website */
.main {
    max-width: 1000px;
    margin: auto;
}

h1 {
    font-size: 50px;
    word-break: break-all;
}

.row {
    margin: 8px 16px;
    padding: 20px;
}

/* Add padding BETWEEN each column (if you want) */
.row,
.row>.column {
    padding: 8px;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    display: none;
    /* Hide columns by default */
}

@media(max-width:767px) {
    .column {
        float: left;
        width: 50%;
        display: none;
        /* Hide columns by default */
    }
}

/* Clear floats after rows */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Content */
.content {
    background-color: white;
    padding: 10px;
}

/* The "show" class is added to the filtered elements */
.show {
    display: block;
}

/* Style the buttons */
.btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    /* background-color: white; */
    cursor: pointer;
}

/* Add a grey background color on mouse-over */
.btn:hover {
    background-color: #ddd;
}

/* Add a dark background color to the active button */
.btn.active {
    background-color: #666;
    color: white;
}

#myBtnContainer {
    justify-content: center;
    text-align: center;

}

#myBtnContainer .btn {
    padding-left: 25px;
    padding-right: 25px;
}

.portfolio {
    justify-content: center;
    text-align: center;
    margin-top: 50px;
    padding-bottom: 30px;
}

.submibutton {
    justify-content: center;
    text-align: center;
}

/* ----------------------------------------------------------------------------------------------------------- */
.abouthome {
    margin-top: 80px;
}

.homeproduct {
    margin-top: 150px;
}

.whyheading {
    font-size: 3vw;
}

.whypara {
    font-size: 1vw;
}

.whyrow {
    font-size: 1vw;
}

.aboutformbg {
    width: 100%;
    height: 80vh;
    background-image: url(/img/OURPIC/images.jfif);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.aboutform {
    /* padding-TOP: 10px; */
    /*margin-bottom:50px;*/
}

.aboutcontacthed {
    justify-content: center;
    text-align: center;
    padding-top: 20PX;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.CAREERFORMBG {
    background-image: url(/img/OURPIC/images\ \(1\).jfif);
    width: 100%;
    height: 100VH;

    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.CAREERFORM {
    padding-top: 10PX;
    /*margin-bottom:500px;*/
}

.careerheading {
    text-align: center;
    padding-top: 40px;
}

.careerpara {
    text-align: center;
    padding-bottom: 40px;
}

.HOMESLIDERHEAD {
    font-size: 40PX;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

@media(max-width:767px) {
    .HOMESLIDERHEAD {
        font-size: 5VW;
        font-weight: 900;

    }

    .whyheading {
        font-size: 5vw;
    }

    .whypara {
        font-size: 3vw;
    }

    .whyrow {
        font-size: 3vw;
    }

    .abouthomemar {
        margin-top: -200px;
    }

    .aboutteammargin {
        margin-top: -50px;
    }


}

.homecompanydet {
    padding: 12px;
    border-radius: 15px;
    justify-content: center;
    text-align: center;
    /* margin-top: -140px; */
    margin-bottom: 10%;


}

.homeourclient {
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    font-size: 40px;
    margin-bottom: -40PX;
    color: #0dcaf0;
}

.homeourclientdown {
    /* margin-top: -40px; */

    /* margin-bottom: -70PX; */
}

/* ---------------------------------------------------------sticky button----------------------------- */

@media(max-width:767px) {
    .modal .modal-content {
        width: 120%;
        margin-left: -25px;

    }

}



input[type=text],
input[type=password] {
    width: 100%;
    /* padding: 10px 20px; */
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.submit {
    margin-top: 15px;
}

.popup-btn a {
    top: 520px;
    position: fixed;
    right: -10px;
    z-index: 1000;
    transform: rotate(-90deg);
    background-color: red;
    padding: 10px 20px 35px;
    height: 0px;
    background-color: #000;
    color: #fff;
}

.popup-btn a:hover {
    text-decoration: none;
    color: #fff;
}

.form-part {
    padding: 20px 0px;
}

.modal-header {
    padding: 10px 0px !important;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1 !important;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    padding-top: 60px;
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    width: 80%;
    padding: 20px;
    border: 3px solid #000 !important;
}

.close {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 35px;
    font-weight: bold;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    text-align: center;
}

.close:hover,
.close:focus {
    cursor: pointer;
}

.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* -------------------------------------------------------------------------- */
body {
    /* background:#eee; */
}

.brands {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px
}

.brands_slider_container {
    height: 130px;
    border: solid 1px #e8e8e8;
    box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.1);
    padding-left: 97px;
    padding-right: 97px;
    background: #fff;
}

.brands_slider {
    height: 100%;
    margin-top: 50px;
}

.brands_item {
    height: 100%;
}

.brands_item img {
    max-width: 200%;
}

.brands_nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 5px;
    cursor: pointer
}

.brands_nav i {
    color: #e5e5e5;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease
}

.brands_nav:hover i {
    color: #676767
}

.brands_prev {
    left: 40px
}

.brands_next {
    right: 40px
}

.ENQUIRYBUTTON {
    padding: 10px;
}

.galleryheading {
    justify-content: center;
    text-align: center;
}

@media(max-width:767px) {
    .coveringboutwidth {
        margin: 0%;
        padding: 0%;
        width: 90%;
    }

    .container-xxl {
        margin-top: -100px;
    }

    .abouthome {
        margin-left: -8%;

        /* margin-top:5px; */
    }

    .homecompanydet {
        justify-content: center;
        text-align: center;
        margin-left: 80px;
        /* margin-top: -2%; */

    }

    .imgContainer {
        padding: 20px;
    }

    .whyheading {
        font-size: 80px;
    }

    .whypara {
        font-size: 15px;
        margin-left: -40px;
        width: 130%;
    }

    .whypara2 {
        font-size: 15px;
        width: 190%;
        margin-left: -80px;

    }

    .headwhynew {
        font-size: 20px;
        width: 150%;
        margin-left: -80px;

    }

    .popup-btn a {
        top: 570px;
        position: fixed;
        right: -25px;
        z-index: 1000;
        transform: rotate(-90deg);
        background-color: red;
        padding: 10px 20px 35px;
        height: 0px;
        background-color: #000;
        color: #fff;
    }

    .aboutformbg {
        margin-bottom: -20px;
    }

    .newenquiry a {

        top: 230px;
        position: fixed;
        right: -35px;
        z-index: 1000;
        transform: rotate(-90deg);
        background-color: red;
        padding: 10px 20px 35px;
        height: 0px;
        background-color: #000;
        color: #fff;
    }

    .brands_slider_container {
        padding: 15%;
    }


}



.OURINFRASTRUCTURE {
    justify-content: center;
    background-color: rgb(193, 239, 228);
}

.infraheading {
    text-align: center;
    color: #0dcaf0;
    margin-top: 70px;
    margin-bottom: 20px;
    font-size: 40PX;
}

.infraimg {
    display: flex;
    justify-content: center;

}

.infraimgwidth {
    width: 60%;
    margin-bottom: 30px;
}


.contactmap {
    display: none;
}

.contactusbanner img {
    width: 100%;
    /* height:20%; */
}

@media (max-width: 480px) {
    .infraimg img {
        display: none;
    }

    .infraimgres {
    display: flex;
    justify-content: center;
    }
    
    .infraimgwidthres {
        width: 90%;
        margin-bottom: 30px;
    }
}

@media (min-width: 480px) and (max-width: 2000px) {
    .infraimgres img{
        display: none;
    }
}

@media(max-width:767px) {
    .OURINFRASTRUCTURE {
        margin-top: -80px;
        background-color: whitesmoke;
    }

    .infraimgwidth {
        width: 90%;
        margin-bottom: 30px;
    }

    .homeproduct {
        width: 100%;
    }


}

@media screen and (max-width: 600px) {
    .abouthome {
        width: 100%;
    }

    .homeproducttitle {
        margin-top: -130px;
        margin-bottom: -40px;


    }

    .PRODUCTTITLE {
        font-size: 25px;
    }
    /* .aboutpagefooter{
        margin-top: 12%;
        height: 50%;
    } */


}
