/*your custom css goes here*/
.bg-alter{
    background-color: #0089d4;
}
.aiz-card-box .img{
	position: relative;
}
.aiz-card-box .img:after{
	position: absolute;
	content: '';
	height: 100%;
	width: 100%;
	transition: all 0.3s;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0);
}
.aiz-card-box:hover .img:after{
	background-color: rgba(0,0,0,0.5);
}
.aiz-card-box .quick-view{
	height: 32px;
	width: 32px;
	border-radius: 50%;
	background-color: #fff;
	line-height: 32px;
	text-align: center;
	opacity: 0;
	transform: translateY(10px);
    margin-left: -16px;
    margin-top: -16px;
}
.aiz-card-box:hover .quick-view{
	opacity: 1;
	transform: translateY(0px);
}

.custom-category-menu > li {
    position: relative;
}

.custom-category-menu ul {
    position: absolute;
    min-width: 200px;
    box-shadow: 0 6px 10px rgb(0 0 0 / 10%);
    z-index: 999999999999999;
}
.custom-category-menu > li > ul {
    top: 100%;
    left: 0;
    background: #fff;
	transition: all 0.3s;
    -wbkit-transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
    padding: 10px 0px;
}
.custom-category-menu > li:hover > ul {
    visibility: visible;
    opacity: 1;
}
.custom-category-menu ul ul {
    left: 100%;
    top: 0%;
    min-height: 100%;
    height: auto;
	transition: all 0.3s;
    -wbkit-transition: all 0.3s;
    visibility: hidden;
    opacity: 0;
    padding: 10px 0px;
}
.custom-category-menu ul > li:hover > ul {
    visibility: visible;
    opacity: 1;
}
.custom-category-menu > li > ul a:hover {
    background: var(--soft-primary);
}

.back_to_top_btn {
    display: inline-block;
    background-color: var(--primary);
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 5px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, 
    opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    line-height: 40px;
    color: #fff !important;
    font-size: 20px;
    cursor: pointer;
}

.back_to_top_btn.show {
    opacity: 1;
    visibility: visible;
}


.pb-30 {
    padding-bottom: 30px;
}
.pt-35 {
    padding-top: 35px;
}
.align-items-center {
    align-items: center!important;
}
.mr-25 {
    margin-right: 25px;
}

/*----------------------------------------*/
/*  09. SUBSCRIBE CSS START
/*----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe__content {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .subscribe__content {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .subscribe__content {
    margin-bottom: 30px;
  }
}
.subscribe__content h4 {
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: Roboto-Regular,'Helvetica Neue',Helvetica,Tahoma,Arial,Sans-serif;
}
.subscribe__content p {
  margin: 0;
  font-weight: 400;
  color: #222;
}
.subscribe__content p span {
  font-weight: 500;
}
.subscribe__form {
  width: 85%;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe__form {
    float: left;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .subscribe__form {
    float: left;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .subscribe__form {
    float: left;
    width: 100%;
  }
}
.subscribe__form input {
  width: 100%;
  height: 50px;
  line-height: 46px;
  padding-left: 20px;
  padding-right: 120px;
  border: 0;
  color: #979ca5;
  background: 0 0;
  border-radius: 30px;
  border: 2px solid #e4e7f0;
}
.subscribe__form input::placeholder {
  color: #979ca5;
  font-size: 14px;
}
.subscribe__form button {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 575px) {
  .subscribe__icon {
    margin-bottom: 15px;
  }
}
.subscribe__border {
  border-top: 1px solid #ebebeb;
}
/*----------------------------------------*/
/*  00. BUTTONS CSS START
/*----------------------------------------*/
/* btn */
.t-y-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  background-color: #fcb700;
  height: 45px;
  line-height: 42px;
  padding: 0 50px;
  color: #ffffff;
  border-radius: 30px;
  text-transform: initial;
  z-index: 1;
  text-transform: uppercase;
  border: 2px solid transparent;
  text-align: center;
}
.t-y-btn:hover {
  border-color: #e23e1d;
  color: #222;
  background: #ffffff;
}
.t-y-btn-sub {
  height: 50px;
  line-height: 50px;
  background: #e23e1d;
  color: #ffffff;
  text-transform: uppercase;
  padding: 0 25px;
  border-radius: 0 35px 35px 0;
  border: 0;
  text-align: center;
}
.t-y-btn-sub:hover {
  background: #e23e1d;
  color: #ffffff;
}



