body{overflow-x:hidden; font-family: 'Cambay', sans-serif;
}

.navbar{  box-shadow: 0px 3px 5px 0px #febe054d;}
.nav-link {font-size:17px; font-weight:501; color:rgb(0, 0, 0) !important;}
.navbar-nav{column-gap:15px;}

.social-icons a{color:white;}

:root{
    --primary-clr: #febe05 ;}
.bgbanner{ background:var(--primary-clr);
   
}

.bgbanner h1{display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}
.hcolor{color:var(--primary-clr);}
.bg-clr{background-color:var(--primary-clr);color:black;}
.social-icons a:hover{color:var(--primary-clr);}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-clr);
  
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active  {
  color: black !important;
}


.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.dropdown-item:hover{background: transparent; padding-left:25px; transition:0.5s;}

.dropdown-toggle::after {
   transition: transform 0.15s linear; 
}

.show.dropdown .dropdown-toggle::after {
  transform: translateY(3px);
}

.dropdown-menu {
  margin-top: 0;
}



@-webkit-keyframes zoom{
  from{
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.5, 1.5);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.5, 1.5);
  }
}

.carousel-inner .carousel-item > img {
  -webkit-animation: zoom 20s;
  animation: zoom 20s;
}
.carousel-item img {height:650px;}

.ser-image img{width:170px; height:170px; border-radius: 50%; margin-top:-75px; outline:10px solid white;}

.my-color{color:var(--primary-clr);}

.services .card{box-shadow: 0px 0px 14px -3px rgb(188, 188, 188);}
.services .card:hover .ser-image img{outline-color: var(--primary-clr); transition:0.5s;} 
.services .card:hover{background-color: var(--primary-clr); transition:0.5s;}

.top-header {background-color: var(--primary-clr); color:black;}

.my-btn{color:black; background:var(--primary-clr); border-radius:10px;}

.about{background:linear-gradient(rgba(238, 238, 238, 0.8),rgba(253, 253, 253, 0.6)),url(../img/banner.jpg) center center fixed;background-size: cover; padding:40px 0; color:rgb(0, 0, 0);}

.about img{box-shadow: 1px 1px 11px 4px rgb(252 189 6 / 53%); padding:5px;}

.about img:hover{box-shadow:  1px 10px 11px 4px rgb(113 175 103 / 50%);}
/*****/

.carousel-wrap {
    margin: 30px auto;
    padding: 0;
    width: 100%;
    position: relative;
  }
  
  /* fix blank or flashing items on carousel */
  .owl-carousel .item {
    position: relative;
    z-index: 100; 
    -webkit-backface-visibility: hidden; 
  }
  
  /* end fix */
  .owl-nav > div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: #cdcbcd;
  }
  
  .owl-nav i {
    font-size: 52px;
  }
  
  .owl-nav .owl-prev {
    left: -10px;
  }
  
  .owl-nav .owl-next {
    right: -10px;
  }

  

  /****************/

  figure.snip0015 {
    font-family: 'Raleway', Arial, sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    /* margin: 10px; */
    /* min-width: 220px; */
    /* max-width: 100%; */
    /* max-height: 220px; */
    width: 100%;
    background: #000000;
    text-align: center;
  }
  figure.snip0015 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  figure.snip0015 img {
    opacity: 1;
    width: 100%;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
  }
  figure.snip0015 figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 3em 3em;
    width: 100%;
    height: 100%;
  }
  figure.snip0015 figcaption::before {
    position: absolute;
    top: 50%;
    right: 30px;
    bottom: 50%;
    left: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
    content: '';
    opacity: 0;
    background-color: #ffffff;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  figure.snip0015 h2,
  figure.snip0015 p {
    margin: 0 0 5px;
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s,-webkit-transform 0.35s,-moz-transform 0.35s,-o-transform 0.35s,transform 0.35s;
  }
  figure.snip0015 h2 {
    word-spacing: -0.15em;
    font-weight: 300;
    text-transform: uppercase;
    -webkit-transform: translate3d(0%, 50%, 0);
    transform: translate3d(0%, 50%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  figure.snip0015 h2 span {
    font-weight: 800;
  }
  figure.snip0015 p {
    font-weight: 200	;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  figure.snip0015 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    color: #ffffff;
  }
  figure.snip0015:hover img {
    opacity: 0.35;
  }
  figure.snip0015:hover figcaption h2 {
    opacity: 1;
    -webkit-transform: translate3d(0%, 0%, 0);
    transform: translate3d(0%, 0%, 0);
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  figure.snip0015:hover figcaption p {
    opacity: 0.9;
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
  }
  figure.snip0015:hover figcaption::before {
    background: rgba(255, 255, 255, 0);
    top: 30px;
    bottom: 30px;
    opacity: 1;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
  }
  
  .products .item{margin: 0 10px;}

  /*********/

  .testimonials{background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url('../img/banner.jpg') center center fixed;background-size: cover; padding:40px 0; }

  .demo{
    background: linear-gradient(112deg, #ffffff 50%, rgb(254, 190, 5) 50%);
    max-width: 900px;
    margin: auto;
}
.testimonials .carousel-caption {
    position: initial;
    z-index: 10;
    padding: 5rem 8rem;
    color: rgba(78, 77, 77, 0.856);
    text-align: center;
    font-size: 1.2rem;
    font-style: italic;
    font-weight: bold;
    line-height: 2rem;
}
@media(max-width:767px){
    .testimonials  .carousel-caption {
        position: initial;
        z-index: 10;
        padding: 3rem 2rem;
        color: rgba(78, 77, 77, 0.856);
        text-align: center;
        font-size: 0.7rem;
        font-style: italic;
        font-weight: bold;
        line-height: 1.5rem;
    }
}
.testimonials  .carousel-caption img{
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    margin-top: 2rem;
}
@media(max-width:767px){
    .testimonials .carousel-caption img{
        width: 4rem;
        border-radius: 4rem;
        margin-top: 1rem;
        
    }
}
.testimonials  #image-caption{
    font-style: normal;
    font-size: 1rem;
    margin-top: 0.5rem;
}

@media(max-width:767px){
    .testimonials  #image-caption{
        font-style: normal;
        font-size: 0.6rem;
        margin-top: 0.5rem;
    }
}
.testimonials  .btn-ctr{
    background-color:var(--primary-clr);
    color:black;
    padding: 1.4rem;
}
@media(max-width:767px){
    .testimonials  .btn-ctr{
        padding: 0.8rem;
    }
}
.testimonials  .carousel-control-prev{
    justify-content: flex-start;
}

.testimonials .carousel-control-next {
    justify-content: flex-end;
}
.testimonials  .carousel-control-prev,.carousel-control-next{
    transition: none;
    opacity: unset;
}
/*about section*/
.bannerimg{background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)) ,url('../img/banner.jpg')center center no-repeat ;background-size: cover;padding:70px 0;}

.about-section p{text-align: justify;}
.air{outline: 4px solid #88eeaa ;padding: 2px;}

.backimg{background: url('../img/banner.jpg')center center no-repeat ;background-size: cover;min-height: 550px; color:#fff;}


.box{-webkit-box-shadow: -6px -1px 231px 103px rgba(235,228,235,1);
  -moz-box-shadow: -6px -1px 231px 103px rgba(235,228,235,1);
  box-shadow: -6px -1px 231px 103px rgba(235,228,235,1);}
  
  


  .smooth-offset-box-shadow:hover{

    transition: all 1s;
    box-shadow: inset 0 0 20px 20px #4c83ad;
 
}

/*card*/


.hidden {
  display: none !important;
  opacity: 0; }

.bg-blue {
  background-color: #3aa6ef;
  color: white; }



 /*.card {*/
 /* margin: 2rem;*/
 /* position: relative;*/
 /* background-color: rgba(255, 255, 255, 0.8);*/
 /* padding: 2rem 0;*/
 /* border-radius: 10px;*/
 /* font-family: "Roboto", sans-serif;*/
 /* box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.14), 0 2px 1px -1px rgba(0, 0, 0, 0.12), 0 1px 3px 0 rgba(0, 0, 0, 0.2);*/
 /* transition: box-shadow 0.1s linear, transform 0.15s ease-out; }*/
  
  .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 17px 2px rgba(0, 0, 0, 0.14), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 7px 8px -4px rgba(0, 0, 0, 0.2); }
    
   /*.card .overlay {*/
   /* position: absolute;*/
   /* top: 0;*/
   /* left: 0;*/
   /* border-radius: 10px; }*/
    
   /* .card .overlay.path-circle {*/
   /*   transition: clip-path 0.3s ease-out;*/
   /*   clip-path: circle(1rem at 94.9% 15%); }*/
   /*   .card .overlay.path-circle:hover {*/
   /*     clip-path: circle(133% at 94.9% 15%); }*/
   /* .card .overlay h2 {*/
   /*   color: white !important; }*/
  /* .card i {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #3aa6ef;
    z-index: 2;
    cursor: pointer; }
    
    .card i::before {
      content: "";
      width: 50%;
      height: 50%;
      position: absolute;
      top: 25%;
      left: 25%;
      background-color: white;
      z-index: -1; }
      
  .card .card-body {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 10px; }
    
    .card .card-body h2 {
      font-weight: 900;
      color: #3aa6ef } */



      /***********/

      /*

.vision-mission .card-big-shadow {
   /* max-width: 320px;
    position: relative;
}

.vision-mission  .coloured-cards .card {
    margin-top: 30px;
}

.vision-mission  .card[data-radius="none"] {
    border-radius: 0px;
}
.vision-mission  .card {
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
    background-color: #FFFFFF;
    color: #252422;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}


.vision-mission  .card[data-background="image"] .title,
.vision-mission  .card[data-background="image"] .stats, .vision-mission  .card[data-background="image"] .category, .vision-mission .card[data-background="image"] .description, .card[data-background="image"] .content,.vision-mission  .card[data-background="image"] .vision-mission .card-footer, .vision-mission .card[data-background="image"] small, .vision-mission .card[data-background="image"] .content a,.vision-mission  .card[data-background="color"] .title,.vision-mission  .card[data-background="color"] .stats, .vision-mission  .card[data-background="color"] .category,.vision-mission  .card[data-background="color"] .description, .card[data-background="color"] .content,.vision-mission  .card[data-background="color"] .card-footer,.vision-mission  .card[data-background="color"] small, .vision-mission  .card[data-background="color"] .content a {
    color: #FFFFFF;
}
.vision-mission  .card.card-just-text .content {
    padding: 11px 60px;
    text-align: center;
}
.vision-mission  .card .content {
    padding: 20px 20px 10px 20px;
}
.vision-mission .card[data-color="blue"] .category {

    color: #7a9e9f;
}

.vision-mission .card .category, .vision-mission  .card .label {
    font-size: 14px;
    margin-bottom: 0px;
}
.card-big-shadow:before {
    background-image: url("http://static.tumblr.com/i21wc39/coTmrkw40/shadow.png");
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    bottom: -12%;
    content: "";
    display: block;
    left: -12%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}
.vision-mission  h4, .vision-mission  .h4 {
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.2em;
}
.vision-mission  h6, .vision-mission .h6 {
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
}
.vision-mission .card .description {
    font-size: 16px;
    color: #66615b;
}
.vision-mission .content-card{
    margin-top:30px;    
}
.vision-mission  a:hover,.vision-mission  a:focus {
    text-decoration: none;
}

/*======== COLORS ===========
.vision-mission .card[data-color="blue"] {
    background: #b8d8d8;
}
.vision-mission .card[data-color="blue"] .description {
    color: #506568;
}

.vision-mission  .card[data-color="green"] {
    background: #d5e5a3;
}
.vision-mission .card[data-color="green"] .description {
    color: #60773d;
}
.vision-mission .card[data-color="green"] .category {
    color: #92ac56;
}

.vision-mission .card[data-color="yellow"] {
    background: #ffe28c;
}
.vision-mission .card[data-color="yellow"] .description {
    color: #b25825;
}
.vision-mission .card[data-color="yellow"] .category {
    color: #d88715;
}
*/
      /************************/

/*contact-us page start*/


.contact-bannerimg{background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.6)) ,url('../img/banner.jpg')center center no-repeat ;background-size: cover;padding:70px 0;}

.decoration{
line-height: 1em;
letter-spacing: 1px;
}
/*GET IN TOUCH WITH US*/

/*.contact-box{height:200px;}*/
.contact-box:hover i{background:var(--primary-clr) !important; cursor:pointer; 
   transition: all 1s;
  box-shadow: inset 0 0 20px 20px #2f2f2f;}
 

.bg-form{
padding: 15px;
background: #e7e7e7; 

}

.rounded-border{
  border-radius: 20px;
}

.bg-map{background-color:#a3c73912;
}

.social-icons-contact{height:50px;}
form button{
  background-color:#a84389;

}
.form-control:focus{box-shadow:none;}

.map-icons .boxes {
  display: flex;
  flex-direction: column;
  text-align: center;
  color:#070707;
}
.map-icons.boxes button {
  
  padding: 10px;
  color: black;
  transition: all 0.5s ease;
  border: 1px solid transparent;
  
}
 .boxes .ef1 .fa-twitter:hover, body div .boxes .fa-twitter .fa-twitter:hover, body div .boxes .ef1 .fa-twitter:active, body div .boxes .fa-twitter .fa-twitter:active {
  background-color: transparent;
}
.boxes .ef1 .ef1:hover, body div .boxes .fa-twitter .ef1:hover, body div .boxes .ef1 .ef1:active, body div .boxes .fa-twitter .ef1:active {
  background-color: lightblue;
  border: 1px solid white;
}
.boxes .ef1:hover, body div .boxes .fa-twitter:hover, body div .boxes .ef1:active, body div .boxes .fa-twitter:active {
  background-color: lightblue;
  color: white;
  border-radius: 25%;
  outline: none;
}
 .boxes .ef2 .fa-facebook:hover, body div .boxes .fa-facebook .fa-facebook:hover, body div .boxes .ef2 .fa-facebook:active, body div .boxes .fa-facebook .fa-facebook:active {
  background-color: transparent;
}
 .boxes .ef2 .ef2:hover, body div .boxes .fa-facebook .ef2:hover, body div .boxes .ef2 .ef2:active, body div .boxes .fa-facebook .ef2:active {
  background-color: navy;
  border: 5px inset white;
  outline: 5px solid white;
}
.boxes .ef2:hover, body div .boxes .fa-facebook:hover, body div .boxes .ef2:active, body div .boxes .fa-facebook:active {
  background-color: navy;
  color: white;
  border-radius: 5%;
  outline: none;
}
 .boxes .ef3 .fa-linkedin:hover, body div .boxes .fa-linkedin .fa-linkedin:hover, body div .boxes .ef3 .fa-linkedin:active, body div .boxes .fa-linkedin .fa-linkedin:active {
  background-color: transparent;
  border: none;
}
.boxes .ef3 .ef3:hover, body div .boxes .fa-linkedin .ef3:hover, body div .boxes .ef3 .ef3:active, body div .boxes .fa-linkedin .ef3:active {
  background-color: steelblue;
  box-shadow: 1px 2px 3px 4px cadetblue;
  outline: 1px 1px 1px solid white;
}
 .boxes .ef3:hover, body div .boxes .fa-linkedin:hover, body div .boxes .ef3:active, body div .boxes .fa-linkedin:active {
  background-color: steelblue;
  color: white;
  border: 5px outset white;
  border-radius: 25%;
  outline: none;
}
 .boxes .ef4 .fa-pinterest:hover, body div .boxes .fa-pinterest .fa-pinterest:hover, body div .boxes .ef4 .fa-pinterest:active, body div .boxes .fa-pinterest .fa-pinterest:active {
  background-color: transparent;
}
.boxes .ef4 .ef4:hover, body div .boxes .fa-pinterest .ef4:hover, body div .boxes .ef4 .ef4:active, body div .boxes .fa-pinterest .ef4:active {
  background-color: red;
  border: 4px solid white;
  outline: 5px solid black;
}
 .boxes .ef4:hover, body div .boxes .fa-pinterest:hover, body div .boxes .ef4:active, body div .boxes .fa-pinterest:active {
  background-color: red;
  color: white;
  border-radius: 50%;
  outline: none;
}
.boxes .ef5 .fa-instagram:hover, body div .boxes .fa-instagram .fa-instagram:hover, body div .boxes .ef5 .fa-instagram:active, body div .boxes .fa-instagram .fa-instagram:active {
  background: none;
  background-color: transparent;
  border: none;
}
.boxes .ef5 .ef5:hover, body div .boxes .fa-instagram .ef5:hover, body div .boxes .ef5 .ef5:active, body div .boxes .fa-instagram .ef5:active {
  background: linear-gradient(45deg, pink, purple);
  outline: 5px solid black;
}
.boxes .ef5:hover, body div .boxes .fa-instagram:hover, body div .boxes .ef5:active, body div .boxes .fa-instagram:active {
  background: linear-gradient(45deg, pink, purple);
  color: white;
  border: 5px solid purple;
  border-radius: 25%;
  outline: none;
}
 .boxes .ef6 .fa-github:hover, body div .boxes .fa-github .fa-github:hover, body div .boxes .ef6 .fa-github:active, body div .boxes .fa-github .fa-github:active {
  background: none;
  background-color: transparent;
  border: none;
}

footer{
background: url("../img/footer.jpg") center center fixed; background-size: cover; color:white;
}

footer a:hover{color:var(--primary-clr) !important;}

@media only screen and (max-width: 1199px) {
  .contact-box {
    height:auto;
  }
  
 
}


.product-slider .owl-carousel .owl-item img {
  display: block;
  width: auto !important;
  -webkit-transform-style: preserve-3d;
  border-radius:20px;
  margin:auto;
  height:280px;
}

.our-products .owl-carousel .owl-item img {
  display: block;
  width: 100% !important;
  -webkit-transform-style: preserve-3d;
  border-radius:20px;
  margin:auto;
  height:300px;
}

.our-products .owl-carousel .item{
    margin:15px;
}

@media all and (min-width: 992px) {
	.dropdown-menu li{ position: relative;}
	.nav-item .submenu{ 
		display: none;
		position: absolute;
		left:100%; top:-7px;
	}
	.nav-item .submenu-left{ 
		right:100%; left:auto;
	}
	.dropdown-menu > li:hover { background-color: #f1f1f1; }
	.dropdown-menu > li:hover > .submenu {display: block; }
}	

.banner-heading {background:linear-gradient(rgba(255,255,255,0.5),rgba(255,255,255,0.5)),url('../img/banner.jpg') center center fixed; background-size:cover; padding:100px 0;}

.product-details ul{list-style-type:none;}
.product-details li{display:flex;text-align:justify;}
.product-details li::before {
  content: '\f058';
  font-family: "Font Awesome 5 free"; 
  font-weight: 900;
  padding:1px 10px;
  color:var(--primary-clr);
}

 aside.fixed {position: fixed; width:26.39%;}
 
 
 .products img{height:280px; width:100%; object-fit:cover;}
@media (max-width: 768px){
    .carousel-item img {height:auto;}
    .products img{height:auto; width:100%;}
     .bgbanner h1{ height: 200px;}
    } 
@media (max-width: 991px){
    aside.fixed {position: static; width:100%;}
    }
    
    .news-section p{text-align:justify;}
    
    .news-section img{height:250px; object-fit:cover;}
.trending-news img{height:100px; object-fit:cover;}




/*************************
.slideshow-items {
  width: 100%;
}
.slideshow-thumbnails {
  width: 100px;
}
#slideshow-items-container { display: inline-block; position: relative; }

#lens { background-color: rgba( 233, 233, 233, 0.4 ) }
#lens, #result { position: absolute; display: none; z-index: 1; }
.slideshow-items { display: none; }
.slideshow-items.active { display: block; }
.slideshow-thumbnails { opacity: 0.5; }
.slideshow-thumbnails.active { opacity: 1; }
#lens, .slideshow-items, .slideshow-thumbnails, #result { border: solid var(--light-grey-2) 1px; }*/

/******************/

/*.show {
  width: 400px;
  height: 400px;
}*/

.small-img {
  width: 350px;
  height: 70px;
  margin-top: 10px;
  position: relative;
  left: 25px;
}

.small-img .icon-left, .small-img .icon-right {
  width: 12px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

/*.small-img .icon-left { transform: rotate(180deg) }*/

.small-img .icon-right { right: 0; }

.small-img .icon-left:hover, .small-img .icon-right:hover { opacity: .5; }

.small-container {
  width: 310px;
  height: 70px;
  overflow: hidden;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.small-container div {
  width: 800%;
  position: relative;
}

.small-container .show-small-img {
  width: 70px;
  height: 70px;
  margin-right: 6px;
  cursor: pointer;
  float: left;
}

.small-container .show-small-img:last-of-type { margin-right: 0; }


.products-banner .carousel-caption {top:35%;}

.profile img{height:300px; object-fit:cover;}

.my-front-banner img{height:600px; object-fit:cover;}

@media only screen and (max-width: 768px) {
  .my-front-banner img{height:auto;}
  
 
}