* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}
html{
    min-height: 100%;
    scroll-behavior: smooth;
}
a {
    color:#1b3486;
}
a, a:hover, a:focus {
    text-decoration: none;
}
body {
    font-family: 'Montserrat', sans-serif;
    font-weight:400;
    font-size: 1.125rem;
    line-height:1.875rem;
    color: #585858 !important;
    overflow-x: hidden;
}
h2{
    font-family: 'montextralight_demo';
    font-size: 3.125rem;
    line-height: 3.125rem;
    text-transform: uppercase;
    color:#181822;
}
h2 span{
    color:#dc3153;
    font-family: 'Allura', cursive;
    font-size: 5.625rem;
    line-height: 3.625rem;
    text-transform: capitalize;
}

  ul{
      margin: 0;
  }
  li{
      list-style-type: none;
  }
  .p140{
      padding:140px 0;
  }
  .p100{
      padding:100px 0;
  }
  .p60{
    padding:60px 0;
}
  .p70{
      padding:70px 0;
  }
  .p30{
    padding:30px 0;
}
 
  /** button set **/
 .bb-btn{
     display: inline-block !important;
     color:#fff !important;
     font-size: 1.25rem !important;
     line-height: 60px !important;
     font-weight: 400 !important;
     text-transform: uppercase !important;
     text-align: center !important;
     padding:0 30px !important;
     border:none;
     border-radius: 50px !important;
     white-space: nowrap;
    background: linear-gradient(to right, rgba(239, 197, 202, 1) 0%, rgba(210, 75, 90, 1) 50%, rgba(186, 39, 55, 1) 51%, rgba(241, 142, 153, 1) 100%);

     transition: all 0.5s ease !important;
     -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
     -ms-transition: all 0.5s ease;
     -o-transition: all 0.5s ease;
 }
 
 .btn-crs:hover,  .btn-crs:focus{
     color:#fff;
 }
 .btn-stroke{
    display: inline-block !important;
    color:#fff !important;
    font-size: 1.25rem !important;
    line-height: 60px !important;
    font-weight: 400 !important;
    border-radius: 50px !important;
    border:2px solid #fff;
    background:transparent;
    padding:0 30px !important;
    transition: all 0.5s ease !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
 }
 .btn-stroke:hover,  .btn-stroke:focus{
     background:#fff;
     color:#dc3153 !important;
 }
  /** end button set **/

  @font-face {
    font-family: 'montextralight_demo';
    src: url('../fonts/mont-extralightdemo-webfont.woff2') format('woff2'),
         url('../fonts/mont-extralightdemo-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
 /****************
  @
  @   Animation
  @
  ****************/
  @keyframes mymove {
    50% {background-position: center;}
  }
  /* type */
  
@keyframes type{ 
    from { width: 0; } 
  } 
  
  @keyframes type2{
    0%{width: 0;}
    50%{width: 0;}
    100%{ width: 100; } 
  } 
  
  @keyframes blink{
    to{opacity: .0;}
  }
  
  /** right-left **/
  .right-left {
    -webkit-animation: right-left 6s cubic-bezier(.39, .575, .565, 1) both;
    animation: right-left 6s cubic-bezier(.39, .575, .565, 1) both
}

@-webkit-keyframes right-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    25% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }
    75% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes right-left {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    25% {
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }
    75% {
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}
  /* slide-top */
  .slide-top {
	-webkit-animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}
 @-webkit-keyframes slide-top {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }
  @keyframes slide-top {
    0% {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
              opacity: 0;
    }
    100% {
      -webkit-transform: translateY(0px);
              transform: translateY(0px);
              opacity: 1;
    }
  }

/* Bounce To Right */
.hvr-bounce-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    border-radius: 50px;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
  .hvr-bounce-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
   background:#dc3153;
    -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.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-bounce-to-right:hover, .hvr-bounce-to-right:focus, .hvr-bounce-to-right:active {
    color:#fff !important;
  }
  .hvr-bounce-to-right:hover:before, .hvr-bounce-to-right:focus:before, .hvr-bounce-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
  .new-product-slider h4 {
    color: #ffffff !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right, rgba(239, 197, 202, 1) 0%, rgba(210, 75, 90, 1) 50%, rgba(186, 39, 55, 1) 51%, rgba(241, 142, 153, 1) 100%);
    padding: 6px 20px;
}
.aboutArea {
    background: #fff1f1;
}
.aboutArea img{
    width: 100%;
}
.buyer-seller-card img {
    width: 100%;
}
 /* Ripple In */
@-webkit-keyframes hvr-ripple-in {
    100% {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      opacity: 1;
    }
  }
  @keyframes hvr-ripple-in {
    100% {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      opacity: 1;
    }
  }
  .hvr-ripple-in {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
  }
  .hvr-ripple-in:before {
    content: '';
    position: absolute;
    border: #074dbe solid 4px;
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
  }
  .hvr-ripple-in:hover:before, .hvr-ripple-in:focus:before, .hvr-ripple-in:active:before {
    -webkit-animation-name: hvr-ripple-in;
    animation-name: hvr-ripple-in;
  }
  
  /** animation top-bottom**/
  .top-bottom {
    -webkit-animation: top-bottom 6s cubic-bezier(.39, .575, .565, 1) both;
    animation: top-bottom 6s cubic-bezier(.39, .575, .565, 1) both
}

@-webkit-keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(5px);
        transform: translateY(5px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes top-bottom {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
    50% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}
/** end animation top-bottom**/

/* Push */
@-webkit-keyframes hvr-push {
    50% {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  @keyframes hvr-push {
    50% {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
    }
    100% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }
  .hvr-push {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  }
  .hvr-push:hover, .hvr-push:focus, .hvr-push:active {
    -webkit-animation-name: hvr-push;
    animation-name: hvr-push;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
   /**************
  @
  @   Header
  @
  **************/
  header {
	z-index: 99;
	background:transparent;
	height: 5rem;
	padding: .8rem 0;
	position: relative;
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
header.Fixed{
	background: var(--whiteColor);
}
.logo {
	display: block;
	width: 10%;
}
.logo img{
    width: 100%;
    display: block;
}
header.Fixed .logo{
	width:10%;
	margin-top: -11px;
}
.navbar.bg-light {
	background-color: transparent !important;
	font-size: .875rem;
	height: 6.25rem
}

.menu-new li ul li:hover>a,
.menu-new li.current-menu-item a,
.responsive-menu,
.responsive-menu:hover {
	background: #924f64;
	color: #fff
}

header nav .container {
	min-height: 6.25rem
}

header.Fixed {
	z-index: 999;
	color: var(--blackColor);
	box-shadow: 0 0 4px 2px rgb(0 0 0 / 21%);
    background: #fff;
}

header.Fixed .navbar.bg-light {
	bottom: 0
}

.logo a {
	width: 14rem;
	display: block
}

.navbar-light .navbar-nav .active>.nav-link,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .show>.nav-link {
	color: rgb(255 255 255 / 90%)
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
	color: rgb(255 255 255 / 70%)
}

header a.btn-eppeok {
	margin-left: 1rem
}
.mouse {
    position: absolute;
    bottom: -10px;
	top:inherit;
    left: 50%;
    cursor: pointer;
	transform: translate(-50%, 0);
    z-index: 2;
}
.mouse img{
	-webkit-animation: 4s cubic-bezier(.39,.575,.565,1) .1s infinite top-bottom;
    animation: 4s cubic-bezier(.39,.575,.565,1) .1s infinite top-bottom;
}
header nav .menu-header-menu-container {
	display: -ms-flexbox !important;
	display: flex !important;
	-ms-flex-preferred-size: auto;
	flex-basis: auto;
	text-align: right !important;
	-ms-flex-positive: 1 !important;
	flex-grow: 1 !important;
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-ms-flex-align: center;
	align-items: center
}

header .btn-she {
	padding: 0 .8rem
}

footer ul,
header ul.d-flex.nav-end {
	padding-left: 0
}

header ul.d-flex.nav-end li {
	margin-left: 1rem;
	-ms-flex-item-align: center !important;
	align-self: center !important
}

header ul.d-flex.nav-end li a {
	display: block;
	position: relative
}

header ul.d-flex.nav-end li a .notification {
	display: block;
	position: absolute;
	width: 1.2rem;
	height: 1.2rem;
	line-height: 1.2rem;
	text-align: center;
	border-radius: 50px;
	color: #fff;
	font-size: .875rem;
	background: var(--themeColor);
	top: -2px;
	right: -13px
}
.right-nav ul li{
	margin-left: 2rem;
    font-size: 1.2rem;
    position: relative;
}
.right-nav ul li a:hover, .right-nav ul li a:focus{
    color: var(--themeColor);
}
.right-nav span.notification {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    line-height: 1.25rem;
    background: var(--themeColor);
    color: var(--whiteColor);
    text-align: center;
    font-size: 0.75rem;
    border-radius: 50%;
    position: absolute;
    top:0;
    right:-13px;
}
.menu-new {
	display: block
}

.menu-new li {
	display: inline-block;
	position: relative;
	z-index: 100
}

.menu-new li:first-child {
	margin-left: 0
}

.menu-new li a {
	font-weight: 400;
	padding: .625rem .5rem;
	display: block;
	color: #fff;
	transition: .2s ease-in-out;
	font-size: 1rem
}

.menu-new li a.btn-twenty {
	margin-left: .625rem
}

.menu-new li a:focus,
.menu-new li a:hover {
	opacity: .7
}

.menu-new li ul li:hover>a {
	opacity: 1
}

.menu-new ul {
	visibility: hidden;
	opacity: 0;
	margin: 0;
	padding: 0;
	width: 270px;
	position: absolute;
	left: 0;
	background: #fff;
	z-index: 99;
	transform: translate(0, 20px);
	transition: .2s ease-out
}

.menu-new ul:after {
	bottom: 100%;
	left: 20%;
	border: 6px solid rgba(255, 255, 255, 0);
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-bottom-color: #fff;
	margin-left: -6px
}

.menu-new ul li {
	display: block;
	float: none;
	background: 0 0;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #eee
}

.responsive-menu {
	display: none;
	width: 100%;
	padding: 20px 15px;
	font-weight: 600
}

a.homer {
	background: #fc6d58
}

.contact-area form,
footer {
	position: relative;
}

#navbarSupportedContent {
	justify-content: flex-end
}

#navbarSupportedContent li {
	margin: 0 .5rem;
	position: relative;
	align-self: center !important
}

#navbarSupportedContent li:last-child {
	margin-right: 0
}

#navbarSupportedContent a {
	color: var(--blackColor);
	font-weight: 500;
	transition: .3s;
	padding: 0;
	font-size: 1rem;
	text-transform: uppercase;
}
#navbarSupportedContent a.nav-link.active {
    color: #db2b4e;
}
header .navbar {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
    margin-top: -10px;
}
.right-nav a {
    color: var(--whiteColor);
	transition: .5s !important;
	-webkit-transition: .5s;
	-moz-transition: .5s;
	-ms-transition: .5s;
	-o-transition: .5s
}

@keyframes gradient {

	0%,
	100% {
		background-position: 0 50%
	}

	50% {
		background-position: 100% 50%
	}
}

.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	background-color: #fff;
	box-shadow: 0 1.1875rem 2.375rem rgba(0, 0, 0, .3), 0 .9375rem .75rem rgba(0, 0, 0, .22);
	transition: .1s ease-in-out;
	-webkit-transition: .1s ease-in-out;
	-moz-transition: .1s ease-in-out;
	-ms-transition: .1s ease-in-out;
	-o-transition: .1s ease-in-out
}

.counter-card,
.method-card:hover {
	box-shadow: 0 0 5px 2px rgb(0 0 0 / 21%)
}

.navbar-brand img {
	transition: .3s ease-in-out;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out
}
header{
    position: relative;
}
header.Fixed, header.Fixed .navbar.bg-light {
    position: fixed;
    right: 0;
    left: 0;
    top: 0
}
header.Fixed .navbar {
    margin-top: -5px;
}
/** banner **/
.banner {
    height:100vh;
    position: relative;
	    padding: 0;
}
.banner .slide-wrapper{
height: 100%;
}

.banner .carousel-inner, .banner .carousel-inner .carousel-item, .banner .carousel{
    height: 100%;
}

.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner .ban-caption{
    color:#fff;
    font-family: 'Montserrat', sans-serif;
        width: 40%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
   clip-path: polygon(0 0, 100% 0%, 100% 100%, 30% 100%);
    background: #b303037d;
}
.banner .ban-caption h1{
    text-transform: uppercase;
    font-size: 2.5rem;
    line-height: 2.625rem;
    font-weight: 300;
    padding: 2rem 4rem;
}
.banner .ban-caption h1 strong{
    font-weight: 600;
}
.banner .banner-caption .btn-LE img{
    width: auto;
    height: auto;
    margin-left: 10px;
    margin-top: -4px;
}

.banner .carousel-control-next-icon {
    background-image: url(../images/next.png);
    width: 58px;
    height: 58px;
}
.banner .carousel-control-prev-icon {
    background-image: url(../images/prev.png);
    width: 58px;
    height: 58px;
}
.scroll-down-arrow{
    position: absolute;
    bottom: 20px;
    color:#fff;
    opacity: 0.7;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 9;
    display: inline-block;
    -webkit-animation: top-bottom 4s cubic-bezier(.39, .575, .565, 1) 0.1s infinite;
    animation: top-bottom 4s cubic-bezier(.39, .575, .565, 1) 0.1s infinite;
}
.scroll-down-arrow i{
    color:#fff;
    font-size: 50px;
}
.stock{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 2;
    width: 75%;
}
.stock img{
    max-width:100% ;
}
/**  wp menu **/
.menu-new {
	display: block
}

.menu-new li {
	display: inline-block;
	position: relative;
	z-index: 100
}
.menu-new li.current-menu-item a{
    color: #dc3153;
}

.menu-new li:first-child {
	margin-left: 0
}

.menu-new li a {
    font-weight: 400;
    text-decoration: none;
    padding: 10px 14px;
    display: block;
    color: #ffffff;
    transition: all .2s ease-in-out 0s;
    font-size: 1rem;
    text-transform: uppercase;
}
header.Fixed .navbar.bg-light .menu-new li a{
        color: #000;
}
.menu-new li a.btn-twenty{
    margin-left: 10px;
}
.menu-new li a:hover, .menu-new li a:focus{
    color: #dc3153;
}
.menu-new li ul li:hover>a {
	color: #fff;
    background:  #dc3153;
    opacity: 1;
}

.menu-new ul {
	visibility: hidden;
	opacity: 0;
	margin: 0;
	padding: 0;
	width: 270px;
	position: absolute;
	left: 0;
	background: #fff;
	z-index: 99;
	transform: translate(0, 20px);
	transition: all .2s ease-out
}

.menu-new ul:after {
	bottom: 100%;
	left: 20%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-bottom-color: #fff;
	border-width: 6px;
	margin-left: -6px
}

.menu-new ul li {
	display: block;
	float: none;
	background: 0 0;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #eee
}

.menu-new ul li:last-child {
	border-bottom: none
}

.menu-new ul li a {
	font-size: 14px;
	font-weight: 400;
	display: block;
	color: #797979;
	background: #fff;
	text-align: left
}

.menu-new ul li a:hover,
.menu-new ul li:hover>a {
	background: #1b3486;
	color: #fff;
	padding: 20px 20px 20px 25px
}

.menu-new li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0)
}

.menu-new ul ul {
	left: 169px;
	top: 0;
	visibility: hidden;
	opacity: 0;
	transform: translate(20px, 20px);
	transition: all .2s ease-out;
}

.menu-new ul ul:after {
	left: -6px;
	top: 10%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #fff;
	border-width: 6px;
	margin-top: -6px
}

.menu-new li>ul ul:hover {
	visibility: visible;
	opacity: 1;
	transform: translate(0, 0)
}

.responsive-menu {
	display: none;
	width: 100%;
	padding: 20px 15px;
	background: #1b3486;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600
}

.responsive-menu:hover {
	background: #1b3486;
	color: #fff;
	text-decoration: none
}

a.homer {
	background: #fc6d58
}
.mouse {
    position: absolute;
    bottom: 20px;
    left: 50%;
    cursor: pointer;
    z-index: 1;
    -webkit-animation: top-bottom 4s cubic-bezier(.39, .575, .565, 1) 0.1s infinite;
    animation: top-bottom 4s cubic-bezier(.39, .575, .565, 1) 0.1s infinite;
}
.mouse img{
    width: auto;
    height: auto;
}

/**  end wp menu **/
.banner-bottom-label{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#efc5ca+0,d24b5a+50,ba2737+51,f18e99+100;Red+Gloss+%233 */
background: linear-gradient(to right,  rgba(239,197,202,1) 0%,rgba(210,75,90,1) 50%,rgba(186,39,55,1) 51%,rgba(241,142,153,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    background-size: 100%;
    color:#fff;
    padding: 25px 0;
    font-family: 'montextralight_demo';
    text-transform: capitalize;
    text-align: center;
    font-size: 2.75rem;
    line-height: 1.75rem;
}
.suggestion {
    background: #fff1f1;
}

.aboutImg img {
    width: 100%;
    border-radius: 2rem;
        object-fit: cover;
}

.aboutImg.aboutA {
    width: 100%;
}

.aboutImg.aboutB {
    width: 60%;
    margin-top: -4rem;
    float: right;
    position: relative;
}

.aboutImg.aboutB img {
    border: 10px solid #fff;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
    border-bottom-left-radius: 100%;
    height: 18rem;
}
/*****************
@
@   New for you
@
*****************/
.newForYou h4{
    font-family: 'montextralight_demo';
    font-size: 1.625rem;
    line-height: 2rem;
    color:#181822;
    text-transform: uppercase;
}
.new-product-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.new-product-card {
    height: 400px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}
.new-product-slider .col-sm-12{
    padding: 0 5px !important;
}
.latest .slick-next {
    background-image: url(../images/next-arrow.png);
    right:0;
  
}
.latest .slick-prev {
    background-image: url(../images/prev-arrow.png);
    left:0;
}
.latest .slick-slider{
    margin-top: 35px;
}
.latest .slick-prev, .latest .slick-next{
    width: 55px;
    height: 159px;
    z-index: 9;
}
.new-product-card {
    height: 350px;
    margin: 0 10px;
    position: relative;
}
.newForYou .carousel-control-next{
    right: -10px;
}
.newForYou .carousel-control-prev{
    left:-10px;
}
.new-product-card a{
    display: block;
    overflow: hidden;
    height: 100%;
    transition: all 0.5s ease !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.new-product-card a:hover{
    transform: scale(1.2);
}
.newForYou .carousel-control-next, .newForYou .carousel-control-prev{
    width: auto !important;
}
.circle-num{
    display: inline-block;
    background: url(../images/elipse-bg.png);
    width: 135px;
    height: 135px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 6.1875rem;
    line-height: 135px;
    transform: scale(0.7);
    position: relative;
}
.circle-num:after{
    content: "";
    width: 280%;
    height: 6px;
    background-repeat: repeat;
    background: url(../images/dot.png);
    position: absolute;
    top: 50%;
    right: -390px;
}
.buyer-seller-tab .col-lg-4:last-child .circle-num:after{
    display: none;
}
/************************
@
@    Buyer and seller
@
************************/
.buyer-seller{
    background:#fff;
}
.buyer-seller .nav-tabs .nav-link, .award .nav-tabs .nav-link{
    border-radius: 50px;
    padding: 0 30px;
    line-height: 60px;
    border:2px solid #dc3153;
    color:#dc3153;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.25rem;
    
  transition: all 0.5s ease !important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.buyer-seller .nav-tabs .nav-link.active, .award .nav-tabs .nav-link.active{
    color:#fff;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#a4a2e1+0,bbb1e2+50,cebde3+100 */
    background: linear-gradient(to right, rgba(239, 197, 202, 1) 0%, rgba(210, 75, 90, 1) 50%, rgba(186, 39, 55, 1) 51%, rgba(241, 142, 153, 1) 100%);
border:2px solid transparent;
}
.buyer-seller .nav-tabs .nav-link:hover, .buyer-seller .nav-tabs .nav-link:focus, 
.award .nav-tabs .nav-link:hover, .award .nav-tabs .nav-link:focus{
    color:#fff;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#a4a2e1+0,bbb1e2+50,cebde3+100 */
    background: linear-gradient(to right, rgba(239, 197, 202, 1) 0%, rgba(210, 75, 90, 1) 50%, rgba(186, 39, 55, 1) 51%, rgba(241, 142, 153, 1) 100%);
border:2px solid transparent;
}
.buyer-seller .nav-tabs, .award .nav-tabs{
    border-bottom: none;
    -ms-flex-pack: center!important;
    justify-content: center!important;
    margin-top: 45px;
}
.buyer-seller .nav-tabs .nav-item, .award .nav-tabs .nav-item{
    margin: 0 8px;
}
.buyer-seller-tab .tab-pane, .award .tab-pane{
    margin-top: 60px;
}

.buyer-seller-card h3{
    color:#25486a;
    font-weight: 400;
    margin-bottom: 22px;
}
.buyer-seller-card p{
    padding: 0 30px;
    min-height: 170px;
}
.productionArea, .productionArea h2{
    color:#fff;
}
.productionArea h2 span {
    color: #ffa3b5;
}
.productionCard {
    background: #8f001d;
    padding: 20px 7px;
    border-radius: 20px;
    height: 100%;
}
.productionCard h3 {
    font-size: 20px;
}
.productionCard ul {
    text-align: left;
    font-size: 14px;
    color: #ffbdbd;
}
.productionArea .row{
    margin-bottom: 20px;
}
a.ban-btn {
    background: linear-gradient(to right, rgba(239, 197, 202, 1) 0%, rgba(210, 75, 90, 1) 50%, rgba(186, 39, 55, 1) 51%, rgba(241, 142, 153, 1) 100%);
    color: #fff;
    padding:  1rem 0.75rem;
    position: fixed;
    z-index: 99;
    transform: translateY(-50%);
    left: 0;
    top: 50%;
    writing-mode: vertical-rl;
        transition: .5s !important;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
a.ban-btn:hover, a.ban-btn:focus{
    background: rgba(210, 75, 90, 1);
}
ul.navbar-nav i {
    margin-right: 7px;
}
/*****************
@
@   Shop me
@
*****************/
.shop-me{
    background: url(../images/violet-bg.jpg);
    background-size: cover;
    animation: backgroundScroll 10s linear infinite;
}
@keyframes backgroundScroll {
    /* Starts at the original position (0, 0) */
    from {
        background-position: 0 0;
    }

    /* Moves the background image to the left by its full width (e.g., -400px or -100%) */
    to {
        background-position: -400px 0;
    }
}

.shop-me .shop-img{
    width: 235px;
    height: 235px;
    margin: 0 auto 20px;
    position: relative;
}
.shop-me .shop-img:after{
    content: "";
    background:url(../images/img-border.png);
    width: 254px;
    height: 253px;
    position: absolute;
    top:-10px;
    left:-10px;
    z-index: -1;
}
.shop-me .shop-img img{
    width:100%;
    height: 100%;
    object-fit: cover;
}
.shop-me p{
    width: 70%;
    margin: 0 auto;
}
.progress-area {
    margin-top: 35px;
}
.shop-me .carousel-control-next-icon {
    background-image: url(../images/shop-right.png);
    width: 124px;
    height: 124px;
}
.shop-me .carousel-control-prev-icon {
    background-image: url(../images/shop-left.png);
    width: 124px;
    height: 124px;
}
.shop-me h4{
    font-size: 1.625rem;
    line-height: 1.625rem;
    text-transform: uppercase;
    font-family: 'montextralight_demo';
    letter-spacing: 3px;
    color:#181822;
    margin-top: 50px;
    margin-bottom: 20px;
}
.shop-me .carousel-item{
    padding-top: 20px;
}
/*****************
@
@   Sell
@
*****************/
.sell-card{
    height: 350px;
    margin: 0 15px;
    position: relative;
}
.sell-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sell-overlay{
position: absolute;
top:0;
left:0;
right:0;
bottom: 0;
background: rgb(255 255 255 / 61%);
opacity: 0;
transition: all 0.5s ease !important;
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
}
.icon-set{
    -ms-flex-pack: center!important;
    justify-content: center!important;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.icon-set a{
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    display: inline-block;
    background: #f7f7f7;
    color:#565656;
    border-radius: 50%;
    margin: 0 8px;
    transition: all 0.5s ease !important;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}
.icon-set a:hover, .icon-set a:focus{
    background: #b6aaf3;
    color: #fff;
}
.icon-set a i{
    font-size: 20px;
}
.sell-overlay h5{
    color:#25486a;
    font-size: 1.1rem;
    line-height: 1.1rem;
    font-weight: 800;
    text-transform: capitalize;
    margin: 0;
}
.sell-overlay p{
    color:#424242;
    font-size: 1rem;
    line-height: 2rem;
    font-family: 'montextralight_demo';
    font-weight: 600;
    margin: 0;
}
.sell-overlay span{
    color:#5293ff;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.5rem;
}
.sell-bottom-text{
    position: absolute;
    bottom: 20px;
    left:50%;
    transform: translate(-50%, 0);
    width:100%;
    text-align: center;
}
.sell-card:hover .sell-overlay{
   opacity: 1;
}
.sell .slick-slider{
    margin-top: 35px;
}
.sell .slick-prev, .sell .slick-next{
    width: 55px;
    height: 159px;
    z-index: 9;
}
.sell .slick-next{
    background: url(../images/next-arrow.png);
    right: 0;
}
.sell .slick-prev{
    background: url(../images/prev-arrow.png);  
    left:0;
}
/*****************
@
@   Dress up
@
*****************/
.dress-up{
background: url(../images/violet-bg-2.jpg);
background-size: cover;
}
.dress-up h2 span{
    color:#000;
}
.dress-vid{
    position: relative;
}
.dress-vid img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dress-vid:after{
    content: "";
    background:url(../images/white-pattern.png);
    width:100%;
    height: 100%;
    position: absolute;
    right: -70px;
    top:-20px;
    background-repeat: no-repeat;
    animation: fadeInLeft 2s infinite;
    -webkit-animation: fadeInLeft 2s infinite;
}


/*****************
@
@   Suggestion
@
*****************/
.suggestion .suggestion-form{
    padding: 45px 30px;
    border-radius: 20px;
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 15%);
    background: #fff;
}
.suggestion .suggestion-form h4{
    font-family: 'montextralight_demo';
    color:#141820;
    font-size: 1.875rem;
    line-height: 1.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.suggestion i {
    background: #dc3153;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    line-height: 34px;
    text-align: center;
    display: inline-block;
}
.suggestion ul li a{
    color: #585858;
}
.suggestion .form-control{
    border-radius: 0;
    border:none;
    border-bottom: 1px solid #ccc;
    padding: 7px 0;
    margin-bottom: 15px;
}
.suggestion ::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #9ea0a6 !important;
    font-size: 1rem !important;
  }
  .suggestion ::-moz-placeholder { /* Firefox 19+ */
    color: #9ea0a6 !important;
    font-size: 1rem !important;
  }
  .suggestion :-ms-input-placeholder { /* IE 10+ */
    color: #9ea0a6 !important;
    font-size: 1rem !important;
  }
  .suggestion :-moz-placeholder { /* Firefox 18- */
    color: #9ea0a6 !important;
    font-size: 1rem !important;
  }
  .suggestion textarea.form-control{
      height: 100px;
  }
  .suggestion h2{
      padding-top: 50px;
  }
  .suggestion h4{
      color:#141820;
      font-weight: 700;
      font-size: 1.75rem;
      line-height: 2.1875rem;
  }
  .suggestion p{
      color:#141820;
      font-size: 1.375rem;
      line-height: 2rem;
      width: 60%;
      float: right;
  }

/*****************
@
@   Footer
@
*****************/

.footer_content{
    position: relative;
    background-image: url(../images/wave2.png);
    background-repeat: repeat;
    overflow: hidden;
    }
    .footer_content .logo2{
    padding-top:70px;
    }
    .footer_content p{
    font-size:22px;
    line-height: 32px;
    padding-right:100px;
    color:#181822;
    margin: 30px 0;
    }
    .footer_content .mobile1{
    position: absolute;
    }
    .footer_content .mobile2{
     margin-left:250px;
     margin-top:35px;
    }
    .footer_content .btn-set a{
        margin: 0 4px;
        transition: all 0.5s ease !important;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }
    .footer_content .btn-set a:hover,  .footer_content .btn-set a:focus{
        opacity: 0.7;
    }
    .footerInner{
        background-color: #16162a;
        padding-top:50px;
      }
      .footerInner ul{
        padding: 0;
      } 
      .footerInner .logo3{
      padding-bottom:15px;
      }
      .social_icons .icon {
        position:relative;
        text-align:center;
        width:0px;
        height:0px;
        padding:20px;
        border-top-right-radius:  20px;
        border-top-left-radius:   20px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius:  20px; 
      }
      .social_icons .icon i {
        font-size:20px;
        position:absolute;
        left:9px;
        top:10px;
      }
       .social_icons .icon.social.fb {
        float:left;
        margin:0 5px 0 0;
        cursor:pointer;
       color: #fff;
        background-color: #2857a4;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;  
      }
      .social_icons .icon.social.in {
        float:left;
        margin:0 5px 0 0;
        cursor:pointer;
        color: #fff;
         background-color: #272728;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s; 
        margin-left: 10px; 
      }
      .social_icons .icon.social.yo {
        float:left;
        margin:0 5px 0 0;
        cursor:pointer;
        color: #fff;
        background-color: #df2a2a;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s; 
        margin-left: 10px; 
      }
      .social_icons .icon.social.fb:hover {
        background:#fff ;
        color:#2857a4;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;  
      }
      .social_icons .icon.social.in:hover {
        background:#fff ;
        color:#272728;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;  
      }
      .social_icons .icon.social.yo:hover {
        background:#fff ;
        color:#df2a2a;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;  
      }
      
       .social_icons .icon.social.fb i {
        left:13px;
        top:10px;
        
      }
      .social_icons .icon.social.tw i {
        left:11px;
        
      }
      .social_icons .icon.social.in i {
        left:11px;
         
      }
      .footerInner h6{
      font-size: 20px;
      color: #fff;
      font-weight: 200px;
      text-align:left;
      text-transform: uppercase;
      padding-bottom: 15px;
      padding-right:10px;
      font-family: [Raleway];
      }
      .footerInner p{
      font-size: 16px;
      color: #a1a1ab;
      text-align:left;
      padding-right: 50px;
      line-height: 26px;
      
      }
      .footerInner .links{
      font-size: 16px;
      text-align:left;
      }
      .links ul li a{
      color: #a1a1ab;
      transition: all 0.5s ease !important;
      -webkit-transition: all 0.5s ease;
      -moz-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
      -o-transition: all 0.5s ease;
      }
      .links ul li a:hover,  .links ul li a:focus{
          color:#fff;
      }
      .email_area i{
        position:absolute;
        color: #dc3153;
        right: 15px;
        top:50%;
        transform: translate(0, -50%);
      }
      .end{
      background-color: #16162a; 
      }
      .mobile-img {
        position: absolute;
        right: 0;
        top: 0;
    }
   footer.footerInner .email_area{
    position: relative;
    margin-top: 28px;
    }
    footer.footerInner input[type="email"]{
        border-radius: 50px;
        border:none;
        line-height: 50px;
        background:#25253d;
        position: relative;
        color:#fff;
        padding:0 15px;
        padding-right: 40px;
    }
    footer.footerInner input[type="email"].form-control:focus{
        box-shadow: 0 0 0 0.2rem hsla(348, 71%, 53%, 0.39);
    }
    .bottom-footer{
        padding:20px 0;
        border-top:1px solid rgb(204 204 204 / 35%);
        margin-top: 25px;
    }
    .bottom-footer p{
        margin: 0;
        font-size: 0.875rem;
    }
    .bottom-foot-link a{
        color:#7c7c7c;
        font-size: 0.875rem;
        padding:0 10px;
        border-right: 1px solid #7c7c7c;
        transition: all 0.5s ease !important;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -ms-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }
    .bottom-foot-link a:hover, .bottom-foot-link a:focus{
        color:#fff;
    }
    .bottom-foot-link a:last-child{
        border-right:none;
    }
    /** inner page **/
    .inner-banner{
        height: 300px;
        position: relative;
    }
     .inner-banner::before{
        content: "";
        position: absolute;
        top:0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #000;
        opacity: 0.5;
     }
     .inner-banner img{
        width: 100%;
        height: 100%;
        object-fit: cover;
     }
     .inner-ban-caption{
        position: absolute;
        top:50%;
        left: 50%;
        transform: translate(-50%, -50%);
     }
     .inner-ban-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-family: 'Allura', cursive;
     }
    .inner-ban-caption h1{
    font-size: 4.5rem;
    line-height: 5rem;
    font-weight: 800;
    margin: 0;
      }
      .galleryPage  a.example-image-link img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: 70% 50%;
}
.galleryPage .example-image-link {
    display: block;
    margin-bottom: 1rem;
}
.suggestion li {
    margin-bottom: 1rem;
}
.performance {
    background-size: cover !important;
    background-attachment: fixed !important;
    position: relative;
}
.performance::before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    right: 0;
    bottom: 0;
    opacity: 0.5;
        background: #000;
}
.performance h2{
    color: #fff;
}
.performance .container{
    position: relative;
    z-index: 2;
}
.performance ul li {
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    list-style-type:square;
}
.award li {
    list-style-type: unset;
}
.nationalCamp li {
    margin-bottom: 1rem;
    list-style-type: square;
}
.productionPage .productionCard {
    background: #8f001d;
    padding: 20px 7px;
    border-radius: 20px;
    max-height: 15rem;
    margin: 1.25rem 0;
}
.productionPage .productionCard ul {
    overflow: auto;
    height: 90%;
}
::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}
::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}
::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #D62929;
}
.mapArea iframe{
    width: 100%;
    display: block;
}
/*****************
@
@   Responsive
@
*****************/
@media (max-width:1199px){
    .banner {
        height: 600px;
    }
    .banner-bottom-label{
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .new-product-card {
        height: 280px;
    }
    .sell-card {
        height: 400px;
    }
    .footer_content .btn-set a img{
        max-width: 100%;
    }
    .mobile-img img{
        max-width: 100%;
    }
}
@media (max-width:1023px){
    .dress-vid:after{
        width: 80%;
        height: 80%;
        right: -20px;
        top: -20px;
    }
}
@media (max-width:991px){
    .logo a {
        width: 270px;
    }
    .menu-new{
        text-align: center;
        background: #fff;
        width: 100%;
    }
    
    .menu-new li {
        display: block;
        border-bottom:1px solid rgb(142 142 142 / 26%);
    }
    .menu-new li:last-child{
        border-bottom:none;
    }
    .menu-new li a {
        padding: 10px 5px;
        font-size: 16px;
    }
    
    .menu-new ul{
        width: 100%;
        position: relative
    }
    .menu-new ul li a{
        text-align:center;
    }
    .menu-new ul ul, .menu-new ul{
        display: none;
    }
    .menu-new li:hover>ul{
        display: block;
    }
    .menu-new ul:after{
        left: 50%;
    }
    .logo a {
        width: 140px;
    }
    header .justify-content-between{
        width: 100%;
    }
    .menu-new li a.btn-crs{
        display: block !important;
    }
    .banner .banner-caption {
        position: absolute;
        width: 90%;
        left: 50%;
        text-align: center !important;
        transform: translate(-50%, 0);
    }
    .about, .career-wrap {
        padding: 120px 0 100px;
        text-align: center;
    }
   
    .banner {
        height: 450px;
    }
    .banner-bottom-label {
        font-size: 1.2rem;
        line-height: 1.2rem;
    }
    .circle-num:after{
        display: none;
    }
    .buyer-seller-card p{
        min-height: auto;
    }
    .shop-me .carousel-control-prev-icon{
        width: 100px;
        height: 100px;
    }
    .shop-me .carousel-control-next-icon{
        width: 100px;
        height: 100px;
    }
    h2 span{
        font-size: 3.625rem;
    line-height: 3.625rem;
    }
    .sell-card {
        height: auto;
    }
    .sell .slick-next{
        right: 10px;
    }
    .sell .slick-prev{
        left: 10px;
    }
    .dress-up, .suggestion .text-right{
        text-align: center !important;
    }
    .dress-up .dress-vid{
        margin: 50px auto 0;
        width: 80%;
    }
    .suggestion p{
        width: 100%;
        float: none;
    }
    .footer_content{
        text-align: center;
        padding: 0 0 400px;
    }
    .footer_content p{
        padding-right: 0;
    }
    .btn-set{
        -ms-flex-pack: center!important;
        justify-content: center!important;
    }
    .footerInner .col-lg-3{
        padding: 30px 0;
    }
    .navbar-toggler:focus{
        box-shadow: none;
    }
    header{
        height: 4rem;
    }
    .navbar-nav{
        background: #fff;
    }
    #navbarSupportedContent li{
        padding: 1rem 0;
        border-bottom: 1px solid #ccc;
        width: 100%;
        text-align: center;
    }
    .new-product-card {
        height: auto;
    }
    .new-product-card h4{
        display: none;
    }
    .aboutArea{
        text-align: center;
    }
    .aboutImg.aboutB img{
            height: 24rem;
    }
    .buyer-seller .nav-tabs .nav-link, .award .nav-tabs .nav-link{
            font-weight: 400;
    font-size: 0.8rem;
    }
    .buyer-seller-card {
    margin-bottom: 2rem;
}
.productionCard{
    height: auto;
    margin-bottom: 2rem;
}
}
@media (max-width:639px){
    .banner {
        height:auto;
    }
    .banner .ban-caption h1{
        font-size:1.2rem;
        line-height: 1.2rem;
    }
    .banner .ban-caption {
        position: relative;
        width: 100%;
        clip-path: inherit;
        text-align: center;
    }
    .banner .ban-caption h1{
        margin: 0;
    }
    h2{
        font-size:1.5rem;
        line-height: 1.5rem; 
    }
    .p100{
        padding:40px 0;
    }
    .buyer-seller .nav-tabs .nav-link{
        font-size: 1rem;
        padding: 0 10px;
        border: 1px solid #a5a3e1;
    }
    .buyer-seller .nav-tabs .nav-item {
        margin: 0 2px;
    }
    .shop-me .carousel-control-next-icon, .shop-me .carousel-control-prev-icon{
        width: 50px;
        height: 50px;
    }
    .progress-area img{
        max-width: 100%;
    }
    .footer_content{
        padding: 0 0 300px;
    }
    .footerInner .col-lg-3 {
        padding: 30px 15px;
    }
        .aboutImg.aboutB img {
        height: 20rem;
    }

}

@media (max-width:575px){
        .aboutImg.aboutB img {
        height: 16rem;
    }
    .bottom-footer .d-flex {
    display: block !important;
    text-align: center;
}
.bottom-footer p{
        text-align: center;
    padding: 0;
}
.award ul#myTab {
    display: block !important;
}
.award ul#myTab li button{
    width: 100%;
    margin-bottom: 1rem;
}
.logo{
    width: 17%;
}
.inner-ban-caption {
    width: 100%;
    text-align: center;
}
.nationalCamp .aboutImg {
    margin-bottom: 2rem;
}
}
@media (max-width:479px){
    .aboutImg.aboutB img {
        height: 12rem;
    }

}