@font-face {
    font-family: 'Redcoat';
    src: url('../font/POE\ Redcoat\ New.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif !important; 
    background-color: #fff;
    color: #333 !important;
}
header {
    color: rgb(0, 0, 0);
    background-color: rgb(241, 241, 241);
    position: sticky;
    top: 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: black;
}


@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .cta-btn {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 10px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: rgb(0, 0, 0) !important;
        font-size: 17px;
        padding:0px 2px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        text-transform: uppercase;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: #011e3e;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu .dropdown ul {
        margin: 0;
        background: white;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 0;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown .drop-main-box{
        margin: 0;
        background: white;
        display: flex;
        align-items: baseline;
        position: absolute;
        visibility: hidden;
        left: -344px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 300px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: black !important;
        text-transform: uppercase;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: #ffffff !important;
        background-color: #011e3e;
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #ffffff;
        background-color: #404040;
        padding: 0 5px;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: black !important;
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: #404040;
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: #404040;
        color: white;
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: #252525 !important;
        color: rgb(255, 255, 255);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 0px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #ffffff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgb(255, 255, 255);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}
a{
    text-decoration: none !important;
}
.top-flex{
    display: flex; 
    justify-content: space-between;
    gap: 50px;
    align-items: center;
}
.top-info{
    width: 380px;
    text-align: center;
    background-color:#011e3e;
    clip-path: polygon(0 0, 81% 0, 100% 100%, 0% 100%);
}
.top-info img{
    width: 200px;
    margin: 0 auto;
}
.email-info-flex{
    display: flex;
    padding: 0 90px;
    gap: 50px;
}
.info-flex{
    gap: 20px;
    align-items: center;
}
.info-text{
    font-size: 18px;
}
.info-text a{
    color: #333;
}
.info-text span{
    font-size: 21px;
    font-weight: 700;
}

/* about css */
#about{
    padding: 70px 0;
    overflow: hidden;
}
.about-text{
    padding: 60px 40px!important;
    font-size: 17px;
    text-align: justify;
}
.about-text h5{
    color: #606060;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    text-align: left;
}
/* .about-text h5:after{
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 140px;
    height:2px;
    background-color: #252525;
    border-radius: 10rem;   
} */
.about-text h1{
    font-size: 57px;
    color: #011e3e;
    font-weight: 700;
    text-align: left    ;
    margin-bottom: 10px;
    font-family: "Oswald", sans-serif !important; 
}
.about-text button{
    background-color: #d8d8d8;
    border: none;
    padding:15px 50px;
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}
.about-flex{
    justify-content: center;
    align-items:center;
}

.button1 {
    display: inline-block;
    padding: .75rem 1.25rem;
    border-radius: 10rem;
    color: #fff;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: .15rem;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    &:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #606060;
      border-radius: 10rem;
      z-index: -2;
    }
    &:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background-color:#011e3e ;
      transition: all .3s;
      border-radius: 10rem;
      z-index: -1;
    }
    &:hover {
      color: #fff;
      &:before {
        width: 100%;
      }
    }
  }
  
  /* products */
  #product{
    background-image: url(../images/body-pattern.png);
  }
  .product-bg{
    background-color: #e0e0e282;
    padding: 50px 0 0;
  }
  .product-head{
    padding-bottom: 30px;
  }
  .product-head h5{
    color:#606060;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0px;
  }
  .product-head h2{
    color: #011e3e;
    font-size: 37px;
    font-weight: 700;
  }

  .cardBox{
    padding: 3px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 10px 0px,
      rgba(0, 0, 0, 0.5) 0px 2px 25px 0px;
  }
  


  .cardBox:before{
    content: "";
    position: absolute;
    width: 60%;
    height: 150%;
    transform: skew(45deg);
  background-color: #011e3e;
    transform-origin: center;
    
  }
  .cardBox:hover:before {
    width: 90%;
    height: 150%;
    transition: 300ms all linear;
  }
 
  .card{
    position: relative;
    width: 100%;
  }
  
  .image {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #011e3e93;
  }
  
  .card:hover .overlay{
    opacity: 1;
  }
  
  .text{
    color: white;
    font-size: 25px;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  #indusries-serve{
    padding: 60px 0 30px 0;
  }
  .slider-5{
    padding: 40px 0;
  }
  .slider-5 img{
    border: 1px solid rgb(204, 204, 204);
    padding: 10px;
    border-radius: 10px;
  }


  .footer a{color:#fff;text-decoration:none;padding:5px 0}.footer ul li{list-style:none;padding:8px 0px;font-size: 18px;}hr{margin:0}.brands a{margin:0 5px;padding:4px 10px}.footer-main{background-image:url(../images/bike-bg.avif);background-repeat:no-repeat;background-size:cover;background-position:0}.footer-bg a{text-align:left}.footer{background-color:#011e3edb}.footer-head{font-size:25px;font-weight:700}.footer-img{margin-bottom:10px}
  .list1 li{
    background-image: url(../images/valve.png);
    background-repeat: no-repeat;
    background-position-y: center;
    padding-left: 30px !important;
  }
  .flex-btn{
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .copyright{
    background-color: #010f1e;
    padding: 20px 0;
    color: white;
  }
  .copyright a{
    color: white;
  }
  dl, ol, ul{
    padding: 0 !important;
  }
.list{
    padding: 30px;
}
.list1{
    padding: 30px;
    padding-left: 70px !important;
}
.company-info{
    background-color: #011e3e;
    padding:70px 40px 40px 40px !important;
    clip-path: polygon(12% 0, 88% 0, 100% 100%, 0% 100%);
}
.cont-banner{
    background-image: url(../images/bike-bg.avif);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.about-page-banner{
    background-image: url(../images/about-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.cont-bg{
    background-color: #011e3ea7;
    padding: 30px 0;
}
.map-section{
    color: white;
    padding: 0px 0;
    font-weight: 700;
}
.map-section p{
    font-size: 17px;
}
.product-head-1 h5{
    color: #d5d4d4;
}
.product-head-1 h2{
    font-size: 55px;
    font-weight: 700;
}

.slider-1{
    padding: 30px 0;
}
.serve-text{
    text-align: center;
    background-color: #011e3e;
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0 0 10px 10px;
}
.serve-box img{
    width: 100% !important;
    border-radius: 10px 10px 0 0 ;
}   


/* products */
#product-page{
    background-image: url(../images/banner-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
}
.sub-about{
    padding: 90px 0;
    background-color: #011e3e8e;
}
.sub-about h1{
    margin-bottom: 20px;
}
.sub-about p{
    font-size: 18px;
}
.cable-bg{
    background-image: url(../images/bg-2.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 60px 0 40px  0;
}
.cable-img img{
    border: 2px solid #011e3e;
    border-radius: 20px;
    padding: 10px;
}
.about-text h6{
    font-size: 22px;
    font-weight: 800;
    color: #252525;
}
.product-list li{
    list-style-type: none;
    background-image: url(../images/settings.png);
    background-repeat: no-repeat;
    background-position-y: center;
    margin-bottom: 7px;
    padding-left: 20px;
}

/* about   */
#about-page{
    padding: 60px 0 40px 0;
    overflow: hidden;
}
.why-us-list{
    padding-top: 20px;
}
.why-us-list li{
    list-style-type: none;
    background-image: url(../images/check.png);
    background-repeat: no-repeat;
    background-position-y: center;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 500;
    padding-left: 40px;
}
#vision{
    padding: 40px 0;
}
.vision-box{
    box-shadow: 1px 0 4px grey;
    padding: 40px 30px;
    height: 100%;
    background-color: white;
}
.vision-box:hover{
    background-color: #011e3e;
    color: white;
    transition: 400ms all linear;
}
.value-img img{
    background-color: white;
    border-radius: 50%;
    padding: 10px;
}

.enq-sec{
  padding: 50px 0;
}
.enq-sec h2{
  padding-bottom: 25px;
  font-weight: 600;
  font-size: 36px;
  color: #011e3e;
}

/* Enquiry Form Css */

.form-control-feedback {
  display: none;
}

.has-feedback label~.form-control-feedback {
  top: 0 !important;
}

.error {
  text-align: left !important;
  display: table !important;
}

.thnak4 {
  margin-top: 50px;
}

.has-feedback .form-control {
 
  padding: 20px;
}

.form-group {
  margin: 15px 0 !important;
}

.form-group input {
  font-size: 16px !important;
  line-height: 24px;
  border-radius: 2px;
  border-bottom: 2px solid #011e3e;
  color: #000;
  font-weight: 500;
}
.has-feedback .form-control::placeholder{
  color: #000000;
}
.has-feedback .form-control{
  color: #000000;
}
.form-group textarea {
  font-size: 16px !important;
  line-height: 24px;
  border-radius: 2px;
  border-bottom: 2px solid #011e3e;
  font-weight: 500;
}

.form-group select {
  font-size: 16px !important;
  line-height: 24px;
  border-radius: 2px;
  border-bottom: 2px solid #011e3e;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  width: 100% !important;
}

.input-group .form-control:last-child,
.input-group-addon:last-child {
  font-size: 14px !important;
  line-height: 24px;
  border-radius: 2px;
  width: 100% !important;
  border-bottom: 2px solid #011e3e;
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
  margin: 20px 0;
  width: 100% !important;
}

.Submit-box {
  background-color: #011e3e;
  color: #fff;
  padding: 10px 15px;
  border: 1px solid #011e3e;
  font-size: 17px;
  border-radius: 2px;
  transition: 0.3s ease;
  font-weight: 600;
}

.Submit-box:hover {
  background-color: #000;
  border: 1px solid #000;
}

.form-control:focus {
  box-shadow: none !important;
  border: 1px solid #000 !important;
  border-bottom: 2px solid #011e3e;
}

.input-group>.form-control,
.input-group>.form-floating,
.input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}
.fill {
  font-size: 20px;
  font-weight: 600;
}
.get {
  font-size: 32px;
  color: #011e3e;
  padding-bottom: 10px;
}


/* Enquiry Form Css End*/

  #contact{padding:60px 0 0 0}.contact-info{padding-bottom:20px}.info-item{display:flex;gap:20px;margin-bottom:10px;align-items:center;padding:20px;box-shadow:1px 0 7px #b9b9b9}.info-item h3{font-size:20px}.info-item p{margin:0}.info-item img{background-color:#000;padding:15px;border-radius:50%}.info-item a{color:#333;}
  .m-banner{
    display: none;
  }
  @media only screen and (min-width: 320px) and (max-width: 767px){
    .m-banner{
        display: block;
    }
    .banner{
        display: none;
    }
  }
@media only screen and (min-width: 320px) and (max-width: 1200px){
    .email-info-flex{
        display: none;
    }
    .main-header{
        display: flex;
        justify-content: space-between;
    }
    .top-info{
        width: 100%;
    }
    .header{
        background-color: transparent;
    }
    #about{
        padding: 20px 0;
    }
    .about-text{
        padding: 20px 20px !important;
    }
    .product-bg{
        padding: 20px 0 0 0;
    }
    #indusries-serve{
        padding: 30px 0 0 0;
    }
    .vision-box{
        height: 97%;
    }
    .serve-text{
        width: 100%;
    }
    .map-section{
        padding: 20px 0;
    }
    .product-head-1 h2{
        font-size: 30px;
    }
    .company-info{
        clip-path:polygon(0% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .list1{
        padding: 20px !important;
    }
    .list{
        padding: 20px;
    }
 
    .serve-text{
        margin-bottom: 20px;
    }
    .top-info img{
        width: 150px;
    }
    .about-flex{
        flex-wrap: wrap-reverse !important;
    }
    .about-text h1{
        font-size: 37px;
    }
    .slider-5 img{
        width: 65%;
        margin: 0 auto;
    }
    .about-text h5{
        font-size: 18px;
    }
}
@media only screen and (min-width: 1201px) and (max-width: 1500px){
    .email-info-flex{
        gap: 10px;
        padding: 0 20px;
    }
    .info-text{
        font-size: 15px;
    }
    .serve-box img{
        width: 320px !important; 
    }
    .serve-text{
        width: 320px !important;    
    }
}


.whatsapp_btn {
    position: fixed;
    bottom: 28px;
    left: 20px;
    z-index: 11;
  }
  .button {
  display: inline-block;
  position: relative;
  }
  .button.is-play {
  background-color: #24d267;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 44%;
  bottom: 40%;
  }
  .button.is-play .button-outer-circle {
  background: #24d267;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  }
  .button.is-play .button-icon {
  position: absolute;
  top: 48%;
  left: 47%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  }
  .button.is-play .button-icon .triangle {
  -webkit-animation: fadeIn 7s ease;
          animation: fadeIn 7s ease;
  }
  .button.is-play .button-icon .path {
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  -webkit-animation: triangleStroke 3s;
          animation: triangleStroke 3s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  }
  .has-scale-animation {
  -webkit-animation: smallScale 3s infinite;
          animation: smallScale 3s infinite;
  }
  .has-delay-short {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  }
  @-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  }
  @keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
  }
  @-webkit-keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
  }
  @keyframes triangleStroke {
  from {
    stroke-dashoffset: 90;
  }
  to {
    stroke-dashoffset: 0;
  }
  }
  @-webkit-keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
  }
  @keyframes smallScale {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(1.5);
    opacity: 0;
  }
  }
  .is-play .fa{
    margin: -10px -4px !important;
    padding: 0 !important;
    font-size: 50px;
    color: #fff;
  }
  @media (max-width:768px){
    .button.is-play{
        width: 50px;
        height:50px;
    }
    .is-play .fa{
        font-size: 30px;
        margin: -1px !important;
        padding: 0 !important;
    }
    .whatsapp_btn {
    position: fixed;
    bottom: 18px;
    left: 10px;
    z-index: 11;
  }
  .app-image h3{
    font-size: 16px;
  }
  img.brand-image{
    width:100%;
  }
  .mob-map{
    display: block !important;
  }
  .desk-map{
    display: none;
  }
  }


  @media (max-width:576px){

    .enq-sec {
      padding: 35px 0;
  }
  .enq-sec h2{
    padding-bottom: 0;
    font-size: 26px;
  }

  }

  @media (max-width:450px){
    .enq-sec h2{
      font-size: 21px;
    }
    .has-feedback .form-control {
      padding: 15px;
    }
  }
  

  .mob-map{
    display: none;
  }

  
.mansory-gallery {
    display: flex;
    flex-wrap: wrap;
    padding: 0.5rem;
    position: relative;
  }
  
  .mansory-gallery .column {
    flex: 25%;
  }
  
  .mansory-gallery .column img {
    border: 0.5rem solid #fff;
    border-radius: 1.5rem;
    box-sizing: border-box;
    display: block;
    width: 100%;
  }
  
  /* industry we serve */
  
  .inustry{
    padding: 4px 0 0px 0;
  }
  .inustry .row {
    --bs-gutter-x: 0;
  }
  .app-image {
    position: relative;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
  }
  .app-image img{
    width: 100%;
  }
  
  .app-image h3 {
    position: absolute;
    bottom: 20px;
    left: 15px;
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    transition: 0.5s;
  }
  
  .app-image::before {
    position: absolute;
    content: "";
    background-color: #000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.65;
    transition: 0.5s;
  }
  
  .app-image:hover::before {
    opacity: 0.8;
  }
  
  .app-image:hover h3 {
    bottom: 35px;
  }
  .indus-det{
    padding: 43px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .indus-det h2{
  font-size: 45px;
  text-transform: uppercase;
  padding: 0 0 10px;
  font-weight: 600;
  text-align: center;
  color: #000;
  }
  .indus-det p{
  padding-bottom: 10px;
  text-align: center;
  line-height: 28px;
  }
  
  @media (max-width: 768px) {
    .mansory-gallery .column {
      flex: 50%;
    }
  }
  
  @media (max-width: 500px) {
    .mansory-gallery .column {
      flex: 100%;
    }
  }
  