/********** Template CSS **********/
:root {
    --primary: #00adf1;
    --secondary: #5F656F;
    --light: #F5F5F5;
    --dark: #02245B;
}
body {
    background-color: white;
    overflow-x: hidden;
    color: black;
 
}
ul {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    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;
    font-weight: 500;
    
}
.btn-1{
    background-color: var(--primary);
    color: white;
}

.btn-primary,
.btn-outline-primary:hover {
    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;
}


.topbar-right {
    position: relative;
    background: var(--primary);
}

.topbar-right::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 100%;
    top: 0;
    left: -15px;
    transform: skewX(-30deg);
    background-color: var(--primary);
}
 .btn-3{
   color: var(--primary);
}
.navbar .navbar-brand img{
    width: 190px;
}


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

.navbar .navbar-brand {
    position: relative;
    padding-right: 50px;
    height: 100px;
    display: flex;
    align-items: center;
    /* background: var(--primary); */
}
a.number {
    color: white;
}

.navbar .navbar-brand::after {
    position: absolute;
    content: "";
    width: 100px;
    height: 100%;
    top: 0;
    right: -35px;
    transform: skewX(-30deg);
    /* background-color: var(--primary); */
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.dropdown-menu{
    padding: 0;
}
.dropdown-item{
    padding: 8px 18px;
    border-bottom: 1px solid rgb(215, 213, 213);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        width: 100%;
    float: left;
        padding: 10px 0;
    }
    .navbar .dropdown-toggle::after{width: 10%;float: right;}



    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
        position: absolute;
    background: #fff;
    width: 100%;z-index: 9999;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
    z-index: 1;
}
.iso{
    color: #02245b;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 3.5rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}

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

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Facts ***/
.facts {
    position: relative;
    
    background: var(--dark);
}

.facts .border {
    border-color: rgba(255, 255, 255, .1) !important;
}
.service-img img {
    width: 100px;
}


/*** Features ***/
.btn-play {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    cursor: auto;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

@media (max-width: 992px) {
    .btn-play {
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%);
    }
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item {
    position: relative;
    margin: 65px 0 25px 0;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    height: 250px;
    
}

.service-item .service-img {
    position: absolute;
    padding: 12px;
    width: 130px;
    height: 130px;
    top: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-item .service-detail {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.service-item .service-title {
    position: absolute;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-title {
    top: -100%;
}

.service-item .service-text {
    position: absolute;
    overflow: hidden;
    padding: 65px 30px 25px 30px;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(2, 36, 91, .7);
    transition: .5s;
}

.service-item:hover .service-text {
    top: 0;
}

.service-item .service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100px;
    top: -100%;
    left: 0;
    transform: skewY(-12deg);
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover .service-text::before {
    top: -62px;
}

.service-item .btn {
    position: absolute;
    width: 130px;
    height: 50px;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    background: #FFFFFF;
    border: none;
    box-shadow: 0 0 45px rgba(0, 0, 0, .09);
    z-index: 2;
}

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


/*** Project ***/
.project-carousel {
    position: relative;
    background: var(--dark);
}

.project-item {
    position: relative;
    display: block;
}

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

.project-item:hover img,
.project-carousel .owl-item.center img {
    margin-top: -60px;
}

.project-item .project-title {
    position: absolute;
    padding: 0 15px;
    width: 100%;
    height: 80px;
    bottom: -110px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark);
    transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
    bottom: -60px;
}

.project-item .project-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 30px;
    top: -15px;
    left: 0;
    transform: skewY(-5deg);
    background: var(--dark);
    transition: .5s;
}

.project-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    transition: .5s;
    opacity: 0;
    z-index: 1;
}

.project-carousel:hover .owl-nav {
    opacity: 1;
}

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


/*** Team ***/
.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    display: flex;
    align-items: center;
    background: var(--primary);
    transition: .5s;
}

.team-item:hover .team-social {
    left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

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

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Footer ***/
.footer {
    color: white;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: white;
    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 {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}


.footer-widget__logo img{
width: 100%;
}
p.footer-widget__about-text{
    text-align: justify;
    color: white;
}

/* our-client-css-start */
#our-parteners {
    padding: 40px 0;
box-shadow: inset 0 10px 26px -10px rgba(181, 180, 180, 0.2);

 
    background-size: cover;
    overflow: hidden;
    position: relative;
}

#our-parteners .bg-design {
    padding-top: 30px;
}

.partener-slide {
    overflow: hidden;
    position: relative;
    margin: 0 10px;
    background: #f9f9f9;
}



.client-1 {
    width: 100%;
}



.partener-slide .client-2 {
    transition: 0.5s;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: -1;
}



.partener-slide img {
    width: 100%;
    mix-blend-mode: multiply;
}

#our-parteners .slick-initialized .slick-slide {
    margin: 0 5px;
}

.our-client-heding {
    display: flex;
    justify-content: center;
    align-items: center;
}
.chhose-us{
    box-shadow: inset 10px 10px 26px -10px rgba(103, 103, 103, 0.1);
}

.footer-bottom {
    padding: 15px 0;
    background-color: black;
}
.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright {
    color: white;
}
.powerd-by {
    color: white;
}
.powerd-by a {
    color: white;
}
.dropdown-menu::-webkit-scrollbar {
    width: 7px;
}

/* Track */
.dropdown-menu::-webkit-scrollbar-track {
    background: #cfcece;
}

/* Handle */
.dropdown-menu::-webkit-scrollbar-thumb {
    background: #7c7b7b;
}

/* Handle on hover */
/* .dropdown-menu{
    height: 450px;
    overflow-y: scroll;
} */
.drop-down-nav-1::-webkit-scrollbar-thumb:hover {
    background: #b4b2b2;
}
.carousel-control-prev {
    left: -40px;
}
.carousel-control-next {
    right: -40px;
}
.about-us p{
    text-align: justify;
}
.about-2{
    position: relative;
    top: 30px;
}

/* about-us-css-start */
#pages-banner{
    padding: 50px 0px;
    position: relative;
    background-position: top;
    background-size: cover;
    background-image: url('../img/breadcrumb-img.jpg');
}
  
  #pages-banner::before{
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    content: "";
  }

  .inner-page-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 99;
}
.inner-page-content h1{
    color: white;
}
.breadcrumb-row ul{
    display: flex;
}
.breadcrumb-row ul li a{
    color: white;
}
.breadcrumb-row ul li {
    position: relative;
    display: inline-block;
    padding: 0 20px 0 10px;
    color: white;
}
.breadcrumb-row ul li::after{
    content: "\f105";
    font-family: "fontawesome";
    position: absolute;
    top: 50%;
    right: -5px;
    font-size: 16px;
    color: white;
    transform: translate(-50%, -50%);

}
.breadcrumb-row ul li:last-child::after{
display: none;
padding-right: 10px;
}
.breadcrumb-row ul li:first-child{
    padding-left: 0;
  }

  .wehelp-section{
    position: relative;
    display: block;

    padding: 40px 0;
  }
  
  .wehelp-section .image-box{
    position: relative;
    display: block;
  }
  
  .wehelp-section .image-box img{
    max-width: none;
    float: right;
    width: 100%;
  }
  
  .wehelp-section .content-box{
    position: relative;
    display: block;
    margin:0px 0px 0px -25px;
    background: #262425;
    padding: 73px 50px 73px 70px;
    height: 97%;
  }
  
  .wehelp-section .content-box:before{
    position: absolute;
    content: '';
    background: url(../images/icons/pattern-4.png);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background-repeat: no-repeat;
    background-position: left center;
  }
  
  .wehelp-section .content-box:after{
    position: absolute;
    content: '';
    background: url('../images/pattern-5.png');
    width: 233px;
    height: 233px;
    top: -70px;
    right: -130px;
    background-repeat: no-repeat;
    z-index: -1;
  }
  
  .wehelp-section .content-box .top-content .top-text{
    position: relative;
    display: block;
    font-size: 16px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 6px;
  }
  
  .wehelp-section .content-box .top-content .top-text:before{
    position: absolute;
    content: '';
    background: url('../images/pattern-6.png');
    width: 79px;
    height: 72px;
    top: -90px;
    right: -45px;
    background-repeat: no-repeat;
  }
  
  .wehelp-section .content-box .top-content h1{
    position: relative;
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 48px;
    margin-bottom: 10px;
  }
  
  .wehelp-section .content-box .top-content h2{
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    color: #277d28;
    font-weight: 700;
    margin-bottom: 21px;
  }
  
  .wehelp-section .content-box .top-content .text{
    position: relative;
    display: block;
    color: #d0cfcf;
  }
  
  .wehelp-section .content-box .top-content{
    position: relative;
    display: block;
    margin-bottom: 30px;
  }
  
  .wehelp-section .content-box .lower-content .single-item .icon-box{
    position: relative;
    display: inline-block;
    color: #fff;
    margin-bottom: 5px;
    transition: all 500ms ease;
  }
  
  .wehelp-section .content-box .lower-content .single-item:hover .icon-box{
    color: #277d28;
  }
  
  .wehelp-section .content-box .lower-content .single-item h5{
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .wehelp-section .content-box .lower-content .single-item h5 a{
    position: relative;
    display: inline-block;
    color: #fff;
  }
  
  .wehelp-section .content-box .lower-content .single-item h5 a:hover{
    color: #ff443e;
  }
  
  .wehelp-section .content-box .lower-content .single-item .text{
    position: relative;
    display: block;
    color: #e0e0e0;
  }
  
  .wehelp-section .content-box .btn-box{
    position: absolute;
    left: -50px;
    bottom: -21px;
  }
  
  .wehelp-section .content-box .btn-box a{
    position: relative;
    display: inline-block;
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    background: #277d28;
    padding: 27px 51px;
    text-align: center;
    z-index: 1;
  }
  
  .wehelp-section .content-box .btn-box a:hover{
    background: #000000;
  }
  
  .wehelp-section .content-box .btn-box a:before{
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.3);
    width: 250px;
    height: 1px;
    left: 15px;
    top: 15px;
  }
  
  .wehelp-section .content-box .btn-box a:after{
    position: absolute;
    content: '';
    background: rgba(255, 255, 255, 0.3);
    width: 250px;
    height: 1px;
    left: 15px;
    bottom: 17px;
  }
  
  .wehelp-section .content-box .anim-icon-1{
    position: absolute;
    top: 60px;
    right: 70px;
    background: url('../images/cap-3.png');
    width: 75px;
    height: 43px;
    background-repeat: no-repeat;
  }
  .icon-box {
    width: 50px;
    margin: auto;
}
.icon-box img{
    width: 100%;
    filter: invert(1);
}
.single-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }



  section#contact-page {
    padding: 40px 0;
}
.map-area iframe{
    width: 100%;
}
.info-item {
    display: flex;
    background-color: var(--primary);
    align-items: center;
    padding: 20px 20px;
}
.row.contact-page-info {
    justify-content: center;
}
.location-contact-page {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.info-content {
    padding-left: 20px;
}
.info-content p {
    font-size: 20px;
    color: white;
}
.info-content a {
    color: white;
}
.contact-page-heading h2 {
    color: var(--btn-bg-hover);

}
.contact-page-heading h5 {
    font-size: 42px;
}

#project-us{
    padding: 50px 0;
}
.link-panel-start {
    display: flex;
    padding: 15px 10px;
    position: relative;
    color: white;
    border-left: 10px solid var(--primary);
    z-index: 1;
    overflow: hidden;
    background-color: var(--dark);
    cursor: pointer;
}
.links-panel{
    display: flex;
    flex-direction: column;
    gap: 5px;

}
.project-img img{
    width: 100%;
}
.projects-name-1 h2{
    margin-bottom: 15px;
}
.projects-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.projects-description p{
    text-align: justify;
    color: black;
}
.project-ul-list{
    text-decoration: none;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.project-ul-list li{
    position: relative;
}
.project-ul-list li{
    position: relative;
    padding-left: 30px;
}
.project-ul-list li::after{
    position: absolute;
    content: "\f24d";
    top: 0;
    font-size: 20px;
    color: var(--primary);
    font-family: fontawesome;
    left: 0;
}


.tabcontent{
    display: none;
    animation: fadeEffect 1s;
}
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
  }
.active-tabs.tabcontent{
    display: block;
}
.active-tabs.link-panel-start:before{
    width: 100%;
    transition: 0.5s;
}
.link-panel-start{
    position: relative;
}
.link-panel-start:before{
    position: absolute;
    height: 100%;
    width: 0;
    top: 0;
    left: 0;
    background-color: var(--primary);
    content: "";
    z-index: -1;

}
.project-ul-list p{
    margin-bottom: 10px;
}
.link-panel-1{
    flex-direction: row;
}
.product-data-a{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
p.about-prod {
    text-align: justify;
}
.product-data-a-img img{
    width: 100%;
}
ul.inner-producsts li{
    margin-left: 20px;
}
.alt-link-a a{
    color: white;
}

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


.dropbtn {
    color: #000;
    margin-right: 35px;
    padding: 20px 0;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
    border: none;
    cursor: pointer;    background: none;
  }
  
  .dropbtn:hover, .dropbtn:focus {
    background-color: #fff;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown a:hover {background-color: #ddd;}
  
  .show {display: block;}



@media screen and (max-width:768px){
    .carousel-control-next {right: -10px;}
    .carousel-control-prev {left: -10px;}
.banner img{position: relative !important;}
.show {position: relative;}
.project-ul-list{margin-bottom: 20px;}
.dropdown-content{box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);}

}
@media screen and (max-width:500px){
    .carousel-control-next {right: 15px;}
    .carousel-control-prev {left: 15px;}
    .navbar .navbar-brand::after{display: none;}
    .btn-lg-square{display: none !important;}
    .pe-5 {padding-right: 1rem !important;}
    .navbar .navbar-brand{padding-right: 10px;}
    .ps-5 {padding-left: 1rem !important;}
    .contact-page-heading h5 {font-size: 22px;}
    .inner-page-content h1 {color: white;font-size: 20px;font-weight: 400;}
    .links-panel{display: block;}
    .breadcrumb-row ul {display: inline-block;}
    .breadcrumb-row ul li{padding: 0 20px 0 0px;}
    .inner-side-bar {margin-top: 20px;}
}











