@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');

body {
    font-size: 16px;
    color: #3c3c3c;
    font-family: Tahoma, Verdana, Geneva, sans-serif;
}
h1, h2, h3, h4, h5, h6{
  font-family:Arial, Helvetica, sans-serif;

}
h1 {
    font-size: 30px;
   
}
h2 {
    font-size: 26px;
    
}
p {
    font-size: 14px;
   
} 
span {
    font-size: 14px;
    
}
a{
    color:#0C0404;
    text-decoration: none;
    font-size: 14px;
   
}
a:hover{
    color:black;
   
}


li {
    font-size: 14px;

}

.navbar-collapse{
        justify-content: end;
        padding-right: 10px;   
}
.logo-img{
        width: auto;
        height: 60px;
}
.nav-link {
    font-size: 14px;
    font-weight: 600;
}

.top-slide{
    width: fit-content;
    height: 110vh;
}
/* p {
    margin-top: 0;
    margin-bottom: 0rem;
} */


/* image zoom out  */
.image-container {
    position: relative;
    width: 300px; /* Adjust according to your design */
    height: 200px; /* Adjust according to your design */
    overflow: hidden;
}

.gallery-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.gallery-image.zoomed {
    transform: scale(1.0); 
}

.frame{
    height:100%;
    width:100%;
 }
  .frame{
     -webkit-animation: zoomeffect 15s infinite;
     -moz-animation: zoomeffect 10s infinite;
     animation: zoomeffect 20s infinite;
     max-height: 80vh;
  }
  @-webkit-keyframes zoomeffect{
          0%{
              background-position:center;
              transform:scale(0,1);
          }
          50%{
              background-position:center;
              transform:scale(2,1);
          }
          100%{
              background-position:center;
              transform:scale(1,1);
          }
  }
  @keyframes zoomeffect{
          0%{
              background-position:center;
              transform:scale(1,1);
          }
          50%{
              background-position:center;
              transform:scale(2,2);
          }
          100%{
              background-position:center;
              transform:scale(1,1);
          }
  } 

   /* slider in top section  end  */
   
.flex-1 {
    background-color: #4c84ea;
    text-decoration: none;
    color: white;
  }

.bgc-radius-transparent{
    display: flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:5px; 
    height:350px;
    width:500px;
    background-image:linear-gradient(45deg, rgba(48, 35, 174, 0.5) 40%, rgba(227, 8, 140, 0.5) 100%);
    border-radius: 20% 80% 36% 64% / 25% 26% 74% 75%;
}

.bgc-radius-transparent h1{
    font-size:28px;
    font-family: "Kaushan Script", cursive;
    padding:3px 6px 3px 6px; 
    font-weight: 400;
    font-style: normal;
}
.bgc-radius-transparent p{
      font-size:18px;
      padding: 5px 10px 5px 10px ;
      font-family: "Kaushan Script", cursive;
      margin-bottom: 3%;
}
.bgc-radius-transparent button{
    text-align:center;
    color:white;
    text-decoration: none;
    background-color:rgba(227, 8, 139, 0.625);  
}
.bgc-radius-transparent button:hover{
    color: white;
    background-color:rgba(49, 35, 174, 0.705) ; 
}




.btn-part{
    text-align: center;
    color: white;
    text-decoration: none;
    background-color: rgba(227, 8, 139, 0.625);
    display: none;
}

.carousel-item img{
    position: relative;   
    z-index: -1;
}



/* CSS */
.button-6 {
  align-items: center;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: .25rem;
  box-shadow: rgba(0, 0, 0, 0.02) 0 1px 3px 0;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  display: inline-flex;
  font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.25;
  margin: 0;
  min-height: 3rem;
  padding: calc(.875rem - 1px) calc(1.5rem - 1px);
  position: relative;
  text-decoration: none;
  transition: all 250ms;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: baseline;
  width: auto;
}

.button-6:hover,
.button-6:focus {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.1) 0 4px 12px;
  color: rgba(0, 0, 0, 0.65);
}

.button-6:hover {
  transform: translateY(-1px);
}

.button-6:active {
  background-color: #F0F0F1;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: rgba(0, 0, 0, 0.06) 0 2px 4px;
  color: rgba(0, 0, 0, 0.65);
  transform: translateY(0);
}





/*sandeep code */


/*card css*/

.card {
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    margin-top:10px;
    margin-bottom:10px;
    background-color:#FFF;
    width: 150px;
  }
  
  .card:hover {
    box-shadow: 0 5px 5px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  }
  .card > .card-inner {
    padding:10px;
  }
  .card .header h2, h3 {
    margin-bottom: 0px;
    margin-top:0px;
  }
  .card .header {
    margin-bottom:5px;
  }
  .card img{
    width:100%;
  }

  .image img{
    height: 150px;
    width: auto;
  }



/*card css*/

.collections{
    font-size: 40px;
}





.bgc-radius-transparent-next{
    display: flex;
    align-items:end;
    justify-content:center;    
    color:white;
    padding:5px; 
    height:auto;
    width:100%; 
    top: 10%;
    /* margin-top: 135px; */
    text-align: center;
}

.bgc-radius-transparent-next button{
    text-align:center;
    color:white;
    text-decoration: none;
    background-color:rgba(227, 8, 139, 0.625);  
}
.bgc-radius-transparent-next button:hover{
    color: white;
    background-color:rgba(49, 35, 174, 0.705); 
}




.footer-seconds-div .nav {
    text-align: right;
    justify-content: end;
}

.footer-seconds-div-part p {
    font-size: 14px;
    color:white;
    padding-top: 10px;
 }
    .footer-seconds-div ul{
      padding-top: 10px;
    }
 .footer a{
    text-decoration: none;
    color:white;
    font-size: 14px;
} 
.footer a:hover{
    color:white;
} 
  
  .dropdown .dropbtn {
    cursor: pointer;
    font-size: 16px;  
    border: none;
    outline: none;
    color: black;
    /* padding: 9px 5px; */
    background-color: inherit;
    font-family: inherit;
    margin: 0;
  }
  
  /* .navbar a:hover, .dropdown:hover .dropbtn, .dropbtn:focus {
    background-color: #ddd;
  } */
  
.navbar-collapse .navbar-nav li a:hover{
  background-color: #ddd;
}
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    /* color: black; */

    color: #252525;
    opacity: 0.8;
    padding: 8px 9px;
    text-decoration: none;
    display: block;
    text-align: left;
    margin: 5px;
  }
  
  .dropdown-content a:hover {
    background-color: #ddd;
  }
  
  .show {
    display: block;
  }
  .nav-link{
    color: #252525;
    opacity: 0.8;
  }
  .dropdown-content a{
    color: #252525;
    opacity: 0.8;
  }

.collections{
    font-size: 1.75rem;
    font-family: Poppins, sans-serif;
    font-weight: 500;
  
}

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

/* Reseting */

.container{
    transform-style: preserve-3d;
}

.container .box{
    position: relative;
    width: 300px;
    height: 300px;
    margin: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
}

.container .box .body{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 0.9s ease;
}



.container .box .body .imgContainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* transform-style: preserve-3d; */
}

.container .box .body .imgContainer img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .box .body .content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    backface-visibility: hidden;
    /* transform-style: preserve-3d; */
    transform: rotateY(180deg);
}

.container .box:hover .body{
    transform: rotateY(180deg);
}

.container .box .body .content div{
    transform-style: preserve-3d;
    padding: 10px;
    background: linear-gradient(45deg, #FE0061,#FFEB3B);
    transform: translateZ(100px);
}

.container .box .body .content div h3{
    letter-spacing: 1px;
}
.content p{
    font-size: 15px !important;
}
.imgContainer{
    position: relative;
    height: 300px;
    width: auto;
}
.imgsection{
    position: absolute;
    height: 300px;
    width: auto;
    
}
/*09.09.2024*/
*{
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  
  h1{
    font-size: 2.5rem;
    font-family: 'Montserrat';
    font-weight: normal;
    color: #444;
    text-align: center;
    margin: 2rem 0;
  }
  
  .wrapper{
    width: 100%;
    margin: 0 auto;
    max-width: 80rem;
  }
  
  .cols{
    /* display: -webkit-box;
    display: -ms-flexbox; */
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .col{
    width: calc(25% - 2rem);
    margin: 1rem;
    cursor: pointer;
  }
  
  .container{
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
      -webkit-perspective: 1000px;
              perspective: 1000px;
  }
  
  .front,
  .back{
    background-size: cover;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.25);
    border-radius: 10px;
      background-position: center;
      -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      text-align: center;
      min-height: 280px;
      height: auto;
      border-radius: 10px;
      color: #fff;
      font-size: 1.5rem;
  }
  
  .back{
    background: #cedce7;
    background: -webkit-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
    background: -o-linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
    background: linear-gradient(45deg,  #cedce7 0%,#596a72 100%);
  }
  
  .front:after{
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      content: '';
      display: block;
      opacity: .4;
      background-color: #000;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: 10px;
  }
  .container:hover .front,
  .container:hover .back{
      -webkit-transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      -o-transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
      transition: transform .7s cubic-bezier(0.4, 0.2, 0.2, 1), -webkit-transform .7s cubic-bezier(0.4, 0.2, 0.2, 1);
  }
  
  .back{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
  }
  
  .inner{
      -webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
              transform: translateY(-50%) translateZ(60px) scale(0.94);
      top: 50%;
      position: absolute;
      left: 0;
      width: 100%;
      padding: 2rem;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      outline: 1px solid transparent;
      -webkit-perspective: inherit;
              perspective: inherit;
      z-index: 2;
  }
  
  .container .back{
      -webkit-transform: rotateY(180deg);
              transform: rotateY(180deg);
      -webkit-transform-style: preserve-3d;
              transform-style: preserve-3d;
  }
  
  .container .front{
      -webkit-transform: rotateY(0deg);
              transform: rotateY(0deg);
      -webkit-transform-style: preserve-3d;
              transform-style: preserve-3d;
  }
  
  .container:hover .back{
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  
  .container:hover .front{
    -webkit-transform: rotateY(-180deg);
            transform: rotateY(-180deg);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  /* translusent page code */
.container:hover .translusent-front{
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
-webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.container .translusent-back{
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
-webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.translusent-back{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}



  /* translusent page code */

  
  .front .inner p{
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }
  
  .front .inner p:after{
    content: '';
    width: 4rem;
    height: 2px;
    position: absolute;
    background: #C6D4DF;
    display: block;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -.75rem;
  }
  
  .front .inner span{
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat';
    font-weight: 300;
  }

  /* Gallery page css */
  .front .inner p {
    font-size: 20px;
    margin-bottom: 2rem;
    position: relative;
}
  .banner{
    background-image: url('../image//collectioin_banner.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
  }
  .hero-image {
    background-image: url("../image/16.jpg");
  }
  
  .hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

  }
  .hero-text h1{
    color: white !important;
  }
  
  .hero-text button {
    border: none;
    outline: 0;
    display: inline-block;
    padding: 10px 25px;
    color: black;
    background-color: #ddd;
    text-align: center;
    cursor: pointer;
  }
  
  .hero-text button:hover {
    background-color: #555;
    color: white;
  }
  .w3-dropdown-content{
    min-width: 200px !important;
}
  /*end  Gallery page css */



/*start about-us page css */
  .about-us-text p {
    font-size: 15px;
    margin-bottom: 1rem;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
 
}

.about-us-ul li {
    font-size: 15px;
    font-family: system-ui,-apple-system,system-ui,"Helvetica Neue",Helvetica,Arial,sans-serif;
 
}

/*end about-us page css */


/* contact-us code */
.team-boxed .people {
  padding:50px 0;
}


.team-boxed .item .boxs {
  text-align:center;
  padding:10px;
  /* background-color:#fff; */
  margin-bottom:10px;
  background-color:#f5f5f5
}

.team-boxed .item .name {
  font-weight:bold;
  color: #3c3c3c;
  margin-top:18px;
  margin-bottom:8px;
  color:inherit;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.team-boxed .item .title {
  text-transform:uppercase;
  font-weight:bold;
  color: #3c3c3c;
  letter-spacing:2px;
  font-size:13px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.team-boxed .item .description {
  color: #3c3c3c;
  font-size:15px;
  /* margin-top:5px;
  margin-bottom:10px; */
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.team-boxed 
img {
  max-width:160px;
}

.team-boxed .social {
  font-size:16px;
  /* color: #3c3c3c; */
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.team-boxed .social a {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  color: #3c3c3c;
  display:inline-block;
 
}


.box-text{
  text-align: left;
}
.box-text .description{
  font-size:13px;
  /* margin-top:5px;
  margin-bottom:10px; */
  color: #3c3c3c;
 
}
.container .boxs {
    position: relative;
   /* width: 300px; */
   width: auto;
     /* height: 400px !important;  */
    height: 430px!important;
    margin: 5px;
    transform-style: preserve-3d;
    perspective: 1000px;  
    cursor: pointer;
    text-align: center;
    margin-bottom: 30px;
}
.team-boxed .item img {
    max-width: 80px;
    min-height: 80px;
}
@media only screen and (min-width:1024px) and (max-width:1250px){
  .social .description{
  font-size: 12px !important;
  }
}

/* @media (max-width: 1250px) { 
  .team-boxed .item .boxs {
    min-height: 300px;
  }  
}  */

@media only screen and (min-width: 996px) and (max-width: 1200px) {
   
  .team-boxed .item .boxs {
  min-height: 250px;
  }
  .box-text .description {
  font-size: 12px !important;
  }
  .container .boxs {
  height: 350px !important;
  }

}
/*end contact-us code */

 /* sink page css */

 .item {
	display: block;
	/* width: 100%; */
  /* width:auto; */
  height: auto;
	margin-bottom: 5px;

	img {
		width: 100%;
	}
}

.hero-text h1{
  font-size:50px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 800;
}

  @media screen and (max-width: 576px){
  
    .cols {
        display: -webkit-box;
        display: -ms-flexbox;
        display: inline !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .front .inner p {
        font-size: 28px;
        margin-bottom: 2rem;
        position: relative;
    }
    .col {
        width: calc(25% - 2rem);
        margin: 0 0px 1rem;
        cursor: pointer;
    }
    .banner{
        height: 250px;    
    }
    .container .boxs {
      position: relative;
     width: auto;
       height: auto !important; 
     
      margin: 5px;
      transform-style: preserve-3d;
      perspective: 1000px;  
      cursor: pointer;
      text-align: center;
      margin-bottom: 10px;
  }
  
}
  
  @media screen and (max-width: 48rem){
    .col{
      width: calc(100% - 0rem);
    }
    .front .inner p {
        font-size: 20px;
        margin-bottom: 2rem;
        position: relative;
    }
  }

  @media (max-width: 876px) {
    .frame{
        height:400px;
     }
    .bgc-radius-transparent{
        margin-bottom:5%;
        display: flex;
        align-items:center;
        justify-content:center;
        text-align:center;
        color:white;
        padding: 5px 10px 5px 10px;
        height:350px;
        width:450px;
        background-image:linear-gradient(45deg, rgba(48, 35, 174, 0.5) 40%, rgba(227, 8, 140, 0.5) 100%);
        border-radius: 20% 80% 36% 64% / 25% 26% 74% 75%;
    }  
    

   
} 
@media (max-width: 460px) {
    .frame{
        height:450px;
     }

    .bgc-radius-transparent{
        margin-bottom:5%;
        display: flex;
        align-items:center;
        justify-content:center;
        text-align:center;
        color:white;
        padding:5px 10px 5px 10px; 
        height:360px;
        width:370px;
        background-image:linear-gradient(45deg, rgba(48, 35, 174, 0.5) 40%, rgba(227, 8, 140, 0.5) 100%);
        border-radius: 20% 80% 36% 64% / 25% 26% 74% 75%;
    }  

    .button.navbar-toggler.collapsed {
        margin-bottom: 10px;
    }
   
        

    
} 


    /* footer media query */

  
@media (max-width: 576px) {       
    .footer .footer-seconds-div-part{
      font-size: 14px;
      text-align: center;     
    }
    .footer .footer-seconds-div .nav{
      font-size: 14px;
      text-align: center;  
      justify-content: center;  
    } 
   
     .carousel-item .btn-part{
        text-align: center;
        color: white;
        text-decoration: none;
        background-color: rgba(227, 8, 139, 0.625);
        display: block;
       
    }
    .fw-bolder {
        font-size: 18px;
    }
    .event-section h3{
        font-size: 15px;
        padding-top: 15px;
    }
    .fast p{
        font-size: 15px;
    }
    .bgc-radius-transparent{
        display: none;
    }
    .bgc-radius-transparent-next {
        display: block !important;
    }
    .collections {
        font-size: 28px !important;;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-weight: 800;
        font-style: normal;
    }
    .dropdown{
    
        padding-left: 13px;
    }
    .carousel-content-text h5{
        font-size:38px;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
    }
    .top-50 {
        top: 30% !important;
    }
    .carousel-content-text h5{
        padding-bottom: 30px;
    }
    .coln {
      width: calc(100% - 2rem) !important;
      margin: 1rem;
      cursor: pointer;
  }
  .hero-text h1{
    font-size:18px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 800;
    width: 100%;
  }
  .logo-img{
    width: auto;
    height: 50px;
  }
  .footer a {
    text-decoration: none;
    color: white;
    font-size: 12px;
}
.footer-seconds-div-part p {
  font-size: 12px;
  color: white;
}
.carousel-content-text h5 {
  font-size: 20px;
  font-weight: 800;
}
.footer-seconds-div ul {
  padding-top: 0px;
}
.footer-seconds-div-part p{
  padding-bottom: 5px !important;
}
    
    
   

}

 @media (max-width: 768px) {
      .footer-seconds-div-part {
        text-align: left;
        font-size: 14px;
    }
    .dropdown{
    
        padding-left: 13px;
    }
    
  
    
 } 
 @media (max-width: 992px) {

  .dropdown{
  
      padding-left: 13px;
  }
  .container .boxs {
    position: relative;
   /* width: 300px; */
   width: auto;
    
    height: auto;
    margin: 5px;
    transform-style: preserve-3d;
    perspective: 1000px;  
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
}
  

  
} 


 @media (max-width: 1668px) {
    .bgc-radius-transparent-next {
        display: none;
     }
     /*.team-boxed .item .boxs {
      height:350px;
    } */


  
} 
.translusent img{
height: 80%;
/*border-radius: 10%  10% !important;*/
}

.Inlays-div h5{
 font-size: 16px;
}