h1, h2, h3, h4{font-family: Gabriola;}
.container{max-width:1230px;}
.bg-voilet {background-color: #F44336!important;}
.bg-cyan {
    background-color: #3bffc9!important;
}
.whats-app{font-size: 17px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;}
.whats-app i{font-size: 30px; color: #ee4057;}
.whats-app span:first-child{
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 3rem;
}

.bg-yellow{
	background-color: #FFEB3B !important;
}
.text-black{color:#000 !important;}
p{ letter-spacing: 1.3px;
    font-size: 15px;
    line-height: 2;}
/*----------Top-header---------------*/
.top-header i{font-size: 16px}
.top-header a{color: #212529;font-size: 12px; letter-spacing: 1.3px}
.locate ul li{border-right:1px dashed #eee;}
.locate ul li:last-child{border-right:unset;}
/*Headaer*/
.navbar-brand {
    padding-top: .9125rem;
    padding-bottom: .9125rem;
    position: relative;
}
.logo-img{position: relative; z-index: 20; max-width:300px;}
.navbar-brand:after{
	content: "";
    position: absolute;
    right: -26px;
    height: 100%;
    width: 100px;
    transform: skew(-25deg);
    top: 0;
}
.navbar-brand:before{
	content: "";
    position: absolute;
    right: 100%;
    top: 0px;
    height: 100%;
    width: 2000%;
}
.navbar-brand:before, .navbar-brand:after, .navbar-brand{background-color: #FFEB3B}
.navbar-dark .navbar-nav .active>.nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show>.nav-link {
    color: #000;
}
.navbar-dark .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.02rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    text-transform: uppercase;
    opacity: 1!important;
}
.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: #e8178e;
}
.sticky-top{box-shadow:0 2px 5px 0 rgba(0,0,0,.3);}
.sticky-top .navbar .navbar-brand img {
    max-width: 235px;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.sticky-top .navbar .navbar-brand {
    padding-top: .6125rem;
    padding-bottom: .6125rem;
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.offcanvas-toggle{z-index: 20}
/*slider banner*/
@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1, 1);
  }
  to {
    -webkit-transform: scale(1.2, 1.2);
  }
}

@keyframes zoom {
  from {
    transform: scale(1, 1);
  }
  to {
    transform: scale(1.2, 1.2);
  }
}
.carousel-inner img {
      width: 100%;
      height: 100%;
      
  }
 #banner_slider img{
 	-webkit-animation: zoom 20s;
    animation: zoom 20s;
 }

/*Offert-type*/
.offer-type i{font-size: 30px}
.offer-type .icon{
	width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    background: #3bffc9;
    color: #000;
    justify-content: center;
    border-radius: 100%;
}
.offer-type p{font-size: 13px}
.offer-type .media{border-right:1px dashed #eee;}
.offer-type .media:last-child{border-right:unset;}


.content-heading h2{
	background: linear-gradient(-180deg, #231f20, #231f20, #ee4057, #ee4057);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100% 100%;
    font-weight: 900 !important;
}
.content-heading p{font-size:14px;}
/*About Section*/
.img-box{
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}
.img-box .img-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.45);
    opacity: 1;
       text-align: center;
    justify-content: center;
    transition: all .3s ease-out;
}
.img-box .img-overlay:after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    opacity: 0.5;
    z-index: 1;
    outline-style: double;
    outline-color: #fff;
    outline-offset: -8px;
    outline-width: medium;
}
.img-box .img-overlay h4{color:#fff; font-size: 2rem; padding: 1rem;}
.img-box:hover .img-overlay:after{
    opacity: 1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;;
}
.img-box:hover img {
    -webkit-transform: scale(1.1,1.1) rotate(1deg);
    transform: scale(1.1,1.1) rotate(1deg);
    -webkit-transition: all 3s;
    transition: all 3s;
}

.light-gradient-green {
    background: linear-gradient(245deg, #75f7d3, rgb(255, 241, 121));
    background-size: 400% 400%;
    -webkit-animation: gradient-lemon 30s ease infinite;
    -moz-animation: gradient-lemon 30s ease infinite;
    animation: gradient-lemon 30s ease infinite;
}
@-webkit-keyframes gradient-lemon {
    0%{background-position:0% 11%}
    50%{background-position:100% 90%}
    100%{background-position:0% 11%}
}
@-moz-keyframes gradient-lemon {
    0%{background-position:0% 11%}
    50%{background-position:100% 90%}
    100%{background-position:0% 11%}
}
@keyframes gradient-lemon { 
    0%{background-position:0% 11%}
    50%{background-position:100% 90%}
    100%{background-position:0% 11%}
}
.contact-info {
    list-style-type: none;
    padding: 0;
}
.footer-top p{font-size: 14px}
.footer-top ul li {
    padding-right: 4px;
    list-style-type: none;
}
.contact-info li {
    position: relative;
    color: #000;
    padding-left: 30px;
    margin-bottom: 10px;
    line-height: 24px;
    font-size: 14px;
    font-weight: 400;
}
.contact-info li .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    line-height: 24px;
    font-size: 20px;
}
.quick-links ul li a {
    display: block;
    font-size: 14px;
    color: #000;
    line-height: 22px;
    padding-bottom: 7px;
    padding-left: 15px;
    position: relative;
    font-weight: 400;
}
.social-media ul li{
  background-color: #365899;
}
.social-media ul li:nth-child(2){
  background-color: #2edbff;
}
.social-media ul li:nth-child(3){
  background:linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}
.social-media ul li:nth-child(4){background-color: #2977c9;}
.social-media ul li a{color:#fff;}
.social-media ul li:hover{
    box-shadow: -3px 3px 0px #212529;
    border-radius: .55rem;
    transition: 0.3s ease-in-out;
    transform: scale(1.1);
    margin-right: 0.5rem;
}
.social-media ul li:last-child:hover{margin-left: 0.5rem;}
.inner-banner {
    position: relative;
}
.inner-banner:before {
    background: rgba(0, 0, 0, 0.51) none repeat scroll 0 0;
    content: " ";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.Inbanner-img {
    width: 100%;
    height: 100%;
    position: relative;
}
.img-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    align-items: center;
    display: flex;
    width: 100%;
    z-index: 1;
}
.inner-banner .img-overlay .content-heading p {
    color: yellow;
    font-size: 1.5rem;
}
.inner-banner .img-overlay .content-heading h3 {
    font-weight: 900;
    color: #fff;
    font-size: 3rem;
}
.sidebar_category .list-group-item{background-color: unset; font-size: 13px; text-transform: uppercase;}
.promtional_products .card{min-height: 350px}

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.5;}
}
.blink{
    text-decoration: blink;
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 0.6s;
    -webkit-animation-iteration-count:infinite;
    -webkit-animation-timing-function:ease-in-out;
    -webkit-animation-direction: alternate;
}

.box-img{
    width: 75px;
    height: 75px;
    display: flex;
    object-fit: fill;
    margin-bottom: 1rem;
}
.testimonial{
    background: url(../images/slider-4.jpg) no-repeat; 
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}
.testimonial:before{
    content:'';
    position: absolute;
    top:0;
    background:rgba(248, 249, 250, 0.83);
    bottom: 0;
    left:0;
    right: 0;
}
.testimonial .carousel-indicators{position: relative;}
.box-img img{border-radius: 100%}
.requierd-document{line-height:2.5rem}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:95px;
	right:25px;
	background-color:#25d366;
	color:#000;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float_phone{bottom:165px; background-color:#ffeb3b}
.my-float{
	margin-top:16px;
}
.float_phone .my-float{font-size:22px; margin-top: 20px;}