
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Muli:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  font-family: "Roboto";
}

h1,
h2,
h3,
h4,
h5 {
  color: #111111;
}
h1 {
  color: #fff;
  font-size: 80px;
  font-weight: 900;
}
h2 {
  font-size: 48px;
  font-weight: 900;
}
h4 {

  font-size: 27px;
  font-weight: 900;
}

h5 {
  font-size: 22px;
  font-weight: 900;
}

h6 {
  font-family: "Roboto";
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

p {
  font-family: "Roboto";
  color: #63666b;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

ul,
li {
  list-style: none;
}

/* REUSEABLE CONTENT */

.bttn a {
  position: relative;
  font-family: "Muli";
  font-size: 15px;
  background: #fff;
  color: #111111;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  padding: 18px 25px;
  width: 180px;
  text-decoration: none;
  border: 1px solid #63666b;
  transition: 0.5s linear;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
  z-index: 111;
  margin-right: 15px;
}

.bttn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: #27ad6e;
  z-index: -1;
  -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s,
    background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  z-index: -1;
}

.bttn a:hover::before {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

.span {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  color: #1fb26c;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 65px;
  padding-bottom: 20px;
  position: relative;
}
.span::after {
  content: "";
  display: block;
  position: absolute;
  border-bottom: 2px solid #19abf4;
  width: 50px;
  top: 16px;
  left: -63px;
}

/* REUSEABLE CONTENT */

/**
    * Preloader
    */
 #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999999;
  width: 100%;
  height: auto;
}

#status {
  width: 902px;
  height: 478px;
  position: absolute;
  left: 50%;
  top: 40%;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 25px;
  text-align: center;
 
}

#status img {
  max-width: 100%;
  height: auto;
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}

@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
} 

/* ==========================
    HEADER START
 ============================*/

.head-content i {
  color: #fff!important;
  margin-right: 5px;
}
.header-top {
  padding: 20px 125px;
  border-bottom: 1px solid #e1e3e6;
  background: #1fb26c;	
}

.head-content a {
  font-family: "Roboto";
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  margin-right: 40px;
  text-decoration: none;
}
.head-social-icon a {
  font-size: 16px;
  color: #fff;
  padding: 11px;
  text-decoration: none;
  transition: 0.5s;
}

.head-social-icon a:hover {
  color: #1086ff;
}

.header {
  position: relative;
  width: 100%;
}

.navbar {
  padding: 0px 125px;
  height: 90px;
 
}
.header .nav-item {
  padding: 7px 19px;
}
.nav-link {
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  text-decoration: none;
  line-height: 60px;
  transition: 0.3s;
}

.nav-item .active,
.nav-link:hover {
  color: #1fb26c;
}

.dropdown-toggle::after {
  vertical-align: 3px;
  margin-left: 0;
  display: inline-block;
  width: 0;
  height: 0;
  content: "";
}

.dropdown-menu {
  border-radius: 0;
  border-bottom: 3px solid #1086ff;
  padding: 0;
  display: none;
}

.dropdown-item {
  font-family: "Muli";
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  width: 200px;
  padding: 12px 27px;
  text-decoration: none;
  line-height: 30px;
  border-radius: 0;
  border: none;
  transition: .5s;
  
}

.dropdown-item:hover {
  background-color: transparent;
  color: #1086ff;
}

.header-social a {
  font-size: 18px;
  color: #111111;
  margin-right: 35px;
  
}
.header-social {
  position: relative;
  margin-left: 25px;
  margin-top: 5px;
}

.header-social a span {
  font-family: "Roboto";
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: -4px;
  right: 30px;
  height: 15px;
  width: 15px;
  display: block;
  padding-left: 4px;
  border-radius: 50px;
  background: #1fb26c;
}

.dropdown-menu {
  top: 97%;
  transition: .5s ease-in-out;
}



.sticky {
  background: #ffffff;
  padding: 0px 125px;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  animation: sticky 0.5s;
  -webkit-animation: sticky 0.5s;
  box-shadow: 0px 1px 3px #e9e9e9;
}


@-webkit-keyframes sticky {
    0%{
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100%{
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

@keyframes sticky {
    0%{
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }
    100%{
        -webkit-transform: translateY(0%);
        transform: translateY(0%)
    }
}

.navbar-toggler-icon {
  font-size: 25px;
  display: none;
  margin-top: 15px;
}


.header-btn .button {
  background: #20b26b;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  padding: 12px 35px;
  border: none;
  outline: none;
  border-radius: 30px;
  transition: 0.5s;
  margin-left: 15px;
  cursor: pointer;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
.header-btn .button:hover {
  color: #fff;
}


.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #23aae2;
  z-index: -1;
  border-radius: 30px;
  -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s,
    background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  z-index: -1;
}

.button:hover::before {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}


.mobile-btn a {
  background: #1086ff;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  padding: 5px 0px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 3px;
  display: block;
  transition: 0.3s;
  display: none;
}
.mobile-btn.bttn a {
  width: 45px;
  border: none;
}


.header-social .show-btn {
  position: relative;
}

form .top-input {
  font-family: "Roboto";
  font-size: 14px;
  color: #111111;
  border: 2px solid #e0e3e7;
  background: #fff;
  padding: 14px 20px;
  width: 300px;
  position: absolute;
  top: 90px;
  outline: none;
  right: 395px;
  display: none;
  z-index: 999;
}


.shooping-cart {
  position: absolute;
  top: 57px;
  right: 35px;
  width: 300px;
  display: block;
  background: #fff;
  padding: 40px 30px;
  border-top: 3px solid #1fb26c;
  border-radius: 2px;
  box-shadow: 0px 0px 6px 0px #e2e2e2;
  display: none;
  max-height: 400px;
  z-index: 999;
}
.shooping-cart h6 a,
.shooping-cart h6 {
  font-size: 14px;
  color: #63666b;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
  margin-right: 0;
  text-decoration: none;
  transition: .3s;
}

.shooping-cart h6 a:hover {
  color: #ffa922;
}

.shooping-cart img {
  display: block;
  height: auto;
  width: 30px;
}

.shooping-cart .btn {
  background: #1fb26c;
  width: 100%;
  font-family: "Roboto";
  font-size: 15px;
  color: #fff;
  outline: none!important;
  padding: 10px 30px;
  margin-top: 20px;
  border: none;
  border-radius: 0px;
  text-transform: uppercase;
  transition: .5s;
}
.shooping-cart .btn a{
	color: #fff;
	text-decoration: none;
	margin-left: 20px;
}
.shooping-cart .btn:hover {
  background: #23aae2;
}

.shooping-cart .card-show {
  display: block;
}

/* ==========================
    HEADER END
 ============================*/

/* ==========================
    BANNER START
 ============================*/

.banner-section {
  background: url("../img/banner-pic/hero-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-bg {
  display: block;
  width: 100%;
  background-color: rgb(0 50 162 / 70%);
  padding: 10.3% 0%;
}


.banner-title p {
  color: #fff;
  padding-top: 25px;
}
.banner-title h6 {
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 5px;
}
.banner-bttn {
  display: inline-flex;
}
.banner-bttn a {
  background: #1086ff;
  color: #fff;
  margin-top: 25px;
  border: none;
  display: block;
}

.banner-bttn .btn-2 {
  background: #2ead65;
}
.bttn a.btn-2::before {
  background: #1086ff;
}

/* ==========================
    BANNER END
 ============================*/

/* ==========================
    SUPPORT START
 ============================*/

.support-section {
  padding-top: 125px;
  padding-bottom: 65px;
}

.support-title {
  padding: 25px 60px 0px 0px;
}

.support-title p {
  text-align: justify;
}
.support-title h5 {
  font-family: "ROboto";
  font-size: 20px;
  font-weight: 500;
  color: #6a6b71;
  padding: 25px 0px;
  line-height: 1.6;
}

.support-bttn a {
  color: #fff;
  background: #23aae2;
  border: none;
  margin-top: 20px;
}
.support-bttn a i {
  font-size: 15px;
  margin-left: 8px;
  transition: 0.5s;
}
.support-bttn a:hover i {
  margin-left: 10px;
}

.support-content:hover a {
  color: #27ad6e;
}

.support-icon,
.support-content .cls-1 {
  fill: #1086ff;
  transition: 0.5s;
}
.support-content:hover .cls-1 {
  fill: #ffffff;
}
.support-content:hover .support-icon {
  background: #1086ff;
}

.support-icon {
  background: #e4e8f9;
  height: 100px;
  width: 100px;
  border-radius: 50px;
  padding: 27px;
}
.support-content a {
  font-family: "Muli";
  font-size: 22px;
  color: #111111;
  font-weight: 900;
  text-decoration: none;
  margin-top: 35px;
  display: inline-block;
  transition: 0.5s;
}
.support-content p {
  padding-top: 10px;
  padding-bottom: 35px;
}

/* ==========================
    SUPPORT END
 ============================*/

/* ==========================
    PRODUCTS START
 ============================*/

.products-section {
  background: #eff3f9;
  padding-top: 50px;
  padding-bottom: 30px;
  overflow: hidden;
}
.products-title {
  text-align: center;
  padding-bottom: 15px;
}
.products-title span {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  color: #8e9197;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 10px;
}

.products-title h2 span {
  font-size: 48px;
  color: #34a5d1;
  font-weight: 900;
  text-transform: none;
}

.product-item {
  background: #f7f7f7;
  padding: 55px 0px;
  border-radius: 5px;
}
.product-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  transform: scale(1);
  transition: 0.5s;
  position: relative;
}
.product-item:hover img {
  transform: scale(1.1);
}
.slider .item:hover img {
  transform: scale(1.1);
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.price a {
  font-size: 13px;
  color: #111111;
  font-weight: 700;
  display: block;
  text-decoration: none;
  margin-top: 15px;
  margin-bottom: 5px;
  text-transform: capitalize;
  transition: 0.5s;
}
.price a:hover {
  color: #20b26b;
}
.slider .item:hover .price-content a {
  color: #20b26b;
}
.price span {
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 500;
  color: #20b26b;
}
.cart-bttn a {
  font-size: 13px;
  background: #ffffff;
  padding: 12px 20px;
  width: 140px;
  display: inline-block;
  margin-top: 25px;
  border-color: #d9dde4;
  transition: 0.3s;
  margin-right: 0;
}
.cart-bttn a i {
  font-size: 10px;
  margin-left: 5px;
}
.cart-bttn a::before {
  background: #20b26b;
}
.cart-bttn a:hover {
  color: #fff !important;
}
.owl-carousel .owl-item img {
  width: auto;
}
.slider.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: block;
}
.slider.owl-dot.active {
  display: none;
}

.slider.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  color: #63666b;
  height: 50px;
  width: 50px;
  outline: none;
  transition: 0.5s;
  border-radius: 5px;
}
.slider.owl-dots {
  display: none;
}
.slider.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 35%;
  transform: translate(-50%);
}
.slider.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 35%;
  right: -50px;
  transform: translate(-50%);
}
.slider.owl-carousel .owl-nav button.owl-prev i,
.slider.owl-carousel .owl-nav button.owl-next i {
  transition: 0.5s;
}

.slider.owl-carousel .owl-nav button.owl-next:hover i,
.slider.owl-carousel .owl-nav button.owl-prev:hover i {
  color: #fff;
}

.slider.owl-carousel .owl-nav button.owl-prev:hover,
.slider.owl-carousel .owl-nav button.owl-next:hover {
  background: #20b26b;
}

/* ==========================
    PRODUCTS END
 ============================*/

/* ==========================
    ABOUT START
 ============================*/

.about-section {
  padding-bottom: 0px;
}
.about-title {
  padding-left: 0px;
}

.about-title .span {
  padding-bottom: 15px;
}
.about-title p {
  padding-top: 25px;
}
.about-item {
  display: flex;
  padding: 30px 35px 0px 60px;
}

.about-icon {
  background: #e4e8f9;
  height: 90px;
  width: 90px;
  border-radius: 50px;
  padding: 22px 25px;
  margin-right: 30px;
  display: inline-flex;
}
.about-content a {
    font-size: 15px;
    color: #fff;
    font-weight: 900;
    display: block;
    text-decoration: none;
    transition: 0.5s;
    text-transform: capitalize;
    margin-bottom: 127px;
    transition: 0.5s;
}
.about-item:hover .about-content a {
  color: #1086ff;
}

.about-section .container-fluid {
  padding-left: 0;
}

/* ==========================
    ABOUT END
 ============================*/

/* ==========================
    COMPANY START
 ============================*/

.company-section {
  background: url("../img/order-pic/delivary-back.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.company-bg {
  display: block;
  width: 100%;
  background-color: rgb(0 40 121 / 90%);
  padding-top: 120px;
  padding-bottom: 223px;
}
.company-content {
  text-align: center;
  cursor: pointer;
}
.company-content h4 {
  color: #ffffff;
  margin-top: 35px;
	font-size: 24px;
}
.company-icon {
  height: 100px;
  width: 100px;
  padding: 25px 0px;
  position: relative;
  margin: auto;
  border-radius: 50%;
  transition: 0.5s;
}
.company-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100px;
  width: 100px;
  border: 2px dashed #fff;
  border-radius: 50%;
  transition: 0.5s;
}
.company-content:hover .company-icon::after {
  transform: rotate(90deg);
}
.company-icon .cls-1 {
  fill: #ffa922;
  transition: 0.5s;
}

.company-content:hover .company-icon .cls-1 {
  fill: #ffffff;
}
.company-content:hover .company-icon {
  background: #fff;
}

/* ==========================
    COMPANY END
 ============================*/

/* ==========================
    ORDER START
 ============================*/

.order-section {
  padding-bottom: 120px;
}
.order-content {
  background: #ffffff;
  box-shadow: 0px 5px 10px #eae9ee;
  margin-top: -155px;
  padding-right: 90px;
  padding-bottom: 65px;
  border-radius: 5px;
}

.order-pic img {
  display: block;
  margin: auto;
  margin-top: 40px;
}
.order-title {
  margin-top: 73px;
  padding-bottom: 6px;
}

.nice-select,
.order-section .form .text {
  font-family: "Roboto";
  font-size: 14px;
  background: #eff3f9;
  color: #999999;
  font-weight: 400;
  text-transform: capitalize;
  border: none;
  outline: none;
  width: 100%;
  padding: 19px 20px;
  margin-bottom: 20px;
  border-radius: 3px;
  margin-top: 0;
  outline: none;
}
.nice-select {
  height: 60px;
  line-height: 24px;
}
.area-text {
  font-family: "Roboto";
  font-size: 14px;
  background: #eff3f9;
  color: #999999;
  font-weight: 500;
  text-transform: capitalize;
  border: none;
  outline: none;
  width: 100%;
  height: 125px;
  padding: 0px 20px 80px 20px;
  border-radius: 3px;
  outline: none;
}

.order-bttn {
  position: relative;
  font-size: 15px;
  background: #27ad6e;
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  padding: 16px 25px;
  width: 180px;
  text-decoration: none;
  transition: 0.5s linear;
  text-align: center;
  border-radius: 30px;
  border: none;
  outline: none!important;
  overflow: hidden;
  z-index: 111;
  margin-right: 15px;
  cursor: pointer;
  margin-top: 20px;
}

.order-bttn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  background: #34a4d6;
  z-index: -1;
  -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s,
    background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  z-index: -1;
}

.order-bttn:hover::before {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

/* ==========================
    ORDER END
 ============================*/

/* ==========================
     TEAM START
 ============================*/

.team-section {
  padding-bottom: 120px;
}

.team-title {
  padding-bottom: 0px;
}
.team-title span {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  color: #8e9197;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 10px;
}
.team-title h2 {
  font-size: 30px;
  color: #2da7d8;
  font-weight: 900;
  text-transform: none;
}
.team-title h2 span {
  font-size: 30px;
  color: #20b26b;
  font-weight: 900;
  text-transform: none;
}
.team-pic {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 5px;
}
.team:hover img {
  transform: scale(1.1);
  border-radius: 5px;
}

.team-pic img {
  width: 100%;
  display: block;
  height: auto;
  transform: scale(1);
  transition: .3s linear;
 
}
.team-overlay {
  position: absolute;
  bottom: 0;
  top: 100%;
  background: #0a1f80d5;
  color: #f1f1f1;
  width: 100%;
  height: 120px;
  transition: 0.3s ease;
  color: white;
  font-size: 20px;
  padding: 40px;
  text-align: center;
  display: block;
}

.team-pic:hover .team-overlay {
  top: 70%;
}
.team-overlay a {
  color: #fff;
  font-size: 16px;
  background: #506a9e;
  height: 40px;
  width: 40px;
  display: inline-block;
  border-radius: 50px;
  padding: 11px 0px;
  margin: 0px 2px;
  transition: 0.5s;
  line-height: 0;
}
.team-overlay a:hover {
  background: #ffa922;
}

.team-content {
  text-align: center;
  background: #eff3f9;
  padding: 25px 0px;
  margin-top: 10px;
  border-radius: 5px;
}
.team-content a {
  font-family: "Muli";
  font-size: 22px;
  font-weight: 900;
  color: #111111;
  font-weight: 900;
  text-decoration: none;
  transition: 0.5s;
}
.team:hover .team-content a {
  color: #1086ff;
}
.team-content span {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 400;
  color: #63666b;
  padding-top: 5px;
  display: block;
}

/* ==========================
     TEAM END
 ============================*/

/* ==========================
     WORK START
 ============================*/

.work-section {
  padding-bottom: 80px;
}
.work-title {
  padding-left: 40%;
  padding-bottom: 10px;
}

.work-item {
  display: flex;
  padding: 30px 35px 0px 40%;
}
.work-icon {
  background: #e4e8f9;
  height: 80px;
  width: 80px;
  border-radius: 50px;
  padding: 20px 25px;
  margin-right: 35px;
}
.work-content a {
  font-family: "Muli";
  font-size: 22px;
  color: #111111;
  font-weight: 900;
  display: block;
  text-decoration: none;
  transition: 0.5s;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: 0.5s;
}
.work-item:hover .work-content a {
  color: #1086ff;
}

.work-section .container-fluid {
  padding-right: 0;
  overflow: hidden;
}

.workink-pic {
  position: relative;
}
.workink-pic img {
  width: 100%;
  height: auto;
  display: block;
}

.video-btn {
  background-color: #fff;
  border-radius: 50%;
  color: #1086ff;
  display: block;
  text-align: center;
  line-height: 60px;
  margin: 0 auto;
  position: relative;
  height: 90px;
  width: 90px;
  z-index: 1;
}

.workink-pic .video-btn i {
  top: 17px;
}
.video-btn i {
  position: relative;
  z-index: 1;
  top: 17px;
}
.video-btn:hover i {
  color: #1086ff;
}

.video-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-animation: beat infinite 1.2s;
  animation: beat infinite 1.2s;
  height: 100%;
  width: 100%;
  background-color: #e1e3e6;
  border-radius: 50%;
  z-index: -1;
}

.video-btn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  border-radius: 50%;
  height: 100%;
  width: 100%;
}

.video-box:after,
.video-box-round:after {
  background-color: transparent;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  opacity: 0.2;
}

.video-box-round {
  border-radius: 5px;
  overflow: hidden;
}

.video-box .video-btn,
.video-box-round .video-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

@-webkit-keyframes beat {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

@keyframes beat {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

/* ==========================
     WORK END
 ============================*/

/* ==========================
     BRANCH START
 ============================*/

 .branch-section {
   overflow: hidden;
 }

 .branch-section .contact-form {
  position: absolute;
  top: 75%;
  left: 24%;
  z-index: 99;
  transform: translate(-24%, -75%);
}

.testimonial-title,
.branch-title {
  text-align: center;
  padding-bottom: 40px;
}
.testimonial-title span,
.branch-title span {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  color: #8e9197;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 10px;
}
.testimonial-title h2 span,
.branch-title h2 span {
  font-family: "Muli";
  font-size: 48px;
  color: #ffa922;
  font-weight: 900;
  text-transform: none;
}



/* ==========================
     BRANCH END
 ============================*/

/* ==========================
     TESTIMONIAL START
 ============================*/

.testimonial-section {
  background: url("../img/testimonials/testimonial-back.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.testimonial-bg {
  display: block;
  width: 100%;
  background-color: rgb(0 40 121 / 85%);
  padding-top: 120px;
  padding-bottom: 110px;
}
.testimonial-title span,
.testimonial-title h2 {
  color: #fff;
}

.testimonial-slider {
  background-color: #fff;
  padding: 30px 40px;
  margin-top: 80px;
  position: relative;
  margin-bottom: 30px;
}
.testimonial-slider:before{
  background-image: url('../img/shape.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  width: 100%;
  left: 0;
  height: 30px;
  position: absolute;
  bottom: -30px;
  display: block;
  content: '';
}

.testimonial-pic img {
  position: absolute;
  top: -50px;
  height: 120px;
  width: 120px;
  border-radius: 50%;
}

.testimonial-pic a {
  font-family: "Muli";
  font-size: 22px;
  color: #111111;
  font-weight: 900;
  display: block;
  text-decoration: none;
  transition: 0.5s;
  text-transform: capitalize;
  margin-bottom: 15px;
  margin-left: 135px;
  transition: 0.5s;
}
.testimonial-pic i {
  font-size: 60px;
  margin-left: auto;
  color: #d9dde4;
  opacity: 0.9;
}
.testimonial-slider p {
  font-family: "Roboto";
  font-size: 20px;
  font-weight: 400;
}

.slider-2.owl-carousel .owl-nav.disabled {
  display: none;
}
.slider-2.owl-carousel .owl-dots.disabled {
  display: block;
}

.slider-2.owl-carousel button.owl-dot {
  outline: none;
}
.slider-2 .owl-dots span {
  height: 10px;
  width: 10px;
  display: block;
  background: #8e9197;
  margin: 60px 5px 0px 5px;
  text-align: center;
  border-radius: 10px;
}

.slider-2 button.owl-dot.active span {
  background: #ffa922;
}

.slider-2 .owl-dots {
  text-align: center;
}

.testimonial svg {
  background: #fff;
}

/* ==========================
     TESTIMONIAL END
 ============================*/

/* ==========================
     JOURNAL START
 ============================*/

.journal-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.journal-title {
  text-align: center;
  padding-bottom: 40px;
}

.journal-title span {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  color: #8e9197;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 10px;
}

.journal-title h2 span {
  font-family: "Muli";
  font-size: 48px;
  color: #ffa922;
  font-weight: 900;
  text-transform: none;
}

.journal-photo {
  background: #ffffff;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 5px;
}
.journal-photo:hover {
  box-shadow: 0px 10px 20px #e9e8ed;
}
.journal-photo img {
  height: auto;
  width: 100%;
  display: block;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.journal-item {
  padding: 15px 16px 30px 30px;
  border: 1px solid #ddd;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: .5s;
}
.journal-photo:hover .journal-item {
  border-color: #fff;
}
.journal-content {
  font-family: "Roboto";
  font-weight: 400;
  color: #111111;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.journal-content a {
  font-family: "Roboto";
  font-weight: 400;
  color: #63666b;
  font-size: 15px;
  text-decoration: none;
  transition: 0.5s;
}
.journal-content i {
  color: #ffa922;
  padding-right: 8px;
}

.journal-content a:hover {
  text-decoration: none;
}
.journal-photo .read-btn {
  font-family: "Muli";
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  text-transform: capitalize;
  margin-top: 25px;
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
  text-decoration: none;
  transition: 0.5s;
}

.journal-photo .read-btn:hover {
  color: #1086ff;
}

.read-btn i {
  padding-top: 5px;
  font-size: 12px;
  transition: 0.2s;
}
.read-btn:hover i {
  color: #1086ff;
  margin-left: 5px;
}
.journal-photo h4 a {
  font-family: "Muli";
  font-size: 22px;
  font-weight: 900;
  color: #111111;
  text-decoration: none;
  transition: 0.5s;
}
.journal-photo:hover h4 a {
  color: #1086ff;
}

/* ==========================
     JOURNAL END
 ============================*/

/* ==========================
     CLIENT START
 ============================*/

.client-section {
  padding: 120px 0px;
}

.client-title h4 {
  color: #8e9197;
  text-align: center;
  padding-bottom: 55px;
}
.client-logo img {
  cursor: pointer;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
    -webkit-transition: all .2s ease;
     -moz-transition: all .2s ease;
       -o-transition: all .2s ease;
      -ms-transition: all .2s ease;
          transition: all .2s ease;
          opacity: .2;
  
}
.client-logo img:hover {
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  opacity: 1;
}

.slider-3.owl-carousel .owl-nav.disabled {
  display: none;
}


.client-section-2 {
  padding-bottom: 120px;
}
/* ==========================
     CLIENT END
 ============================*/

/* ==========================
     CONTACT START
 ============================*/

.contact-section {
  background: #0c1328;
  padding-top: 110px;
  padding-bottom: 80px;
}

.contact-title h4 {
  color: #fff;
  padding-bottom: 20px;
}

.contact-link a {
  font-family: "Roboto";
  font-size: 16px;
  color: #8e9197;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  transition: 0.3s;
}
.contact-link a:hover {
  color: #1086ff;
  margin-left: 5px;
}

.email {
  font-family: "Roboto";
  font-size: 14px;
  color: #999999;
  padding: 13px 20px;
  border: none;
  outline: none;
  border-radius: 30px;
  width: 100%;
}

.search .box i {
  font-size: 20px;
  color: #ffff;
  position: absolute;
  left: 22px;
  top: 15px;
  cursor: pointer;
}

.search .box button{
  height: 47px;
  width: 65px;
  outline: none;
  border: none;
  border-radius: 30px;
  background: #1086ff;
  border-radius: 50px;
  position: absolute;
  right: 15px;
  cursor: pointer;
  transition: .3s;
}
.search .box button:hover {
  background: #ffa922;
}

/* ==========================
     CONTACT END
 ============================*/

/* ==========================
     FOOTER START
 ============================*/

.footer-section {
  background: #0c1328;
  padding-top: 25px;
  padding-bottom: 15px;
  border-top: 1px solid #353b4c;
}

.footer-content {
  padding-top: 8px;
}

.footer-content a {
  font-family: "Roboto";
  font-size: 16px;
  text-decoration: none;
  color: #ffa922;
  font-weight: 400;
}

.footer-social a {
  color: #fff;
  font-size: 14px;
  background: #4f5464;
  height: 40px;
  width: 40px;
  display: inline-block;
  border-radius: 50px;
  padding: 13px 14px;
  margin: 0px 5px;
  transition: 0.5s;
  line-height: 0!important;
}

.footer-social a:hover {
  background: #ffa922;
}

/* ==========================
     FOOTER END
 ============================*/

/* ==========================
     BLOG PAGE START
 ============================*/

/* ==========================
     BANNER START
 ============================*/

.page-banner {
  background: url(../img/about/blog-page-back.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

.page-banner-bg {
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgb(0 40 121 / 90%);
  padding: 7% 0%;
}

.page-title h2 {
  font-size: 60px;
  color: #fff;
  text-transform: capitalize;
  padding-bottom: 15px;
}
.page-title a {
  font-family: "Muli";
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  text-transform: capitalize;
  text-decoration: none;
}
.page-title span {
  color: #ffffff;
}

/* ==========================
     BANNER END
 ============================*/

/* ==========================
     BLOG-ITEM-START
 ============================*/

.item-section {
  padding-top: 60px;
}

.blog-pic {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.blog-pic img {
  height: auto;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  transform: scale(1);
  transition: 0.5s;
}

.blog-pic img:hover {
  transform: scale(1.1);
  border-radius: 3px;
}

.blog-item:hover img {
  transform: scale(1.1);
}
.blog-bg:hover img {
  transform: scale(1.1);
}

.blog-item {
  background: #ffffff;
  padding: 35px 20px 35px 45px;
  position: relative;
  margin-top: -40px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  max-width: 700px;
  margin-left: 30px;
  box-shadow: 0px 5px 15px #f4f3f6;
  z-index: 1;
}

.round::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.blog-content {
  font-family: "Roboto";
  font-weight: 400;
  color: #111111;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 15px;
}
.blog-content .icon {
  padding-left: 30px;
}
.blog-content a {
  font-family: "Roboto";
  font-weight: 400;
  color: #63666b;
  font-size: 15px;
  text-decoration: none;
  transition: 0.5s;
}
.blog-content i {
  color: #ffa922;
  padding-right: 8px;
}

.blog-content a:hover {
  text-decoration: none;
}
.blog-pic .fancy-box .video-box.round-os {
  margin: 0;
}

.blog-item h4 a {
  font-family: "Muli";
  font-size: 27px;
  font-weight: 900;
  color: #111111;
  text-decoration: none;
  transition: 0.5s;
  margin-bottom: 30px;
  line-height: 1.5;
  display: inline-block;
}
.blog-item:hover h4 a {
  color: #ffa922;
}

.blog-item:hover.blog-pic img {
  transform: scale(1.2);
}

 
.blog-single-pic img{
  border-radius: 5px;

}

.blog-item .read-btn {
  font-family: "Muli";
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  text-transform: capitalize;
  margin-top: 10px;
  display: inline-block;
  padding-bottom: 10px;
  position: relative;
  text-decoration: none;
  transition: 0.5s;
}

.blog-item .read-btn:hover {
  color: #1086ff;
}

.read-btn i {
  padding-top: 5px;
  transition: 0.5s;
  font-size: 12px;
}
.read-btn:hover i {
  margin-left: 5px;
}

.slider-4.owl-carousel .owl-nav button.owl-prev,
.slider-4.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 45%;
  font-size: 20px;
  color: #7b8491;
  background: #ffffff;
  right: 10px;
  height: 70px;
  width: 70px;
  border-radius: 50px;
  padding: 0px 10px;
  outline: none;
  box-shadow: none;
}

.slider-4.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 45%;
  left: 10px;
}

.blog-slider {
  margin-top: -65px;
}

/* SEARCH BAR START */

.search-bar {
  margin-top: 60px;
}
.item-section form {
  top: 0;
  font-family: "Roboto";
  font-size: 15px;
  font-weight: 400;
  position: relative;
}
.item-section .search {
  position: relative;
  background: #eff3f9 !important;
  color: #999999;
  border: none;
  padding: 18px 20px;
  width: 100%;
}
.search:focus {
  outline: none;
}
.item-section form i {
  position: absolute;
  top: 22px;
  right: 20px;
  color: #7b8491;
  cursor: pointer;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page-item .page-link {
  font-size: 16px;
  color: #111111;
  border-radius: 50px;
  height: 50px;
  width: 50px;
  margin: 0px 10px;
  padding: 12px 20px;
}
.page-item .page-link:hover {
  background: #1086ff;
  outline: none;
  color: #fff;
}

.pagination {
  margin-top: 75px;
  justify-content: center;
  padding-bottom: 100px;
}

/* SEARCH BAR END */

.right-border {
  position: relative;
}
.right-border::before {
  content: "";
  position: absolute;
  bottom: 32px;
  left: 140px;
  width: 15px;
  border-top: 3px solid #20b26b;
}
.right-border::after {
  content: "";
  position: absolute;
  bottom: 32px;
  left: 160px;
  width: 15px;
  border-top: 3px solid #20b26b;
}

.recent-post h5 {
  padding-top: 45px;
  padding-bottom: 20px;
}

.recent-content {
  padding-bottom: 35px;
}

.recent-content img {
  width: 80px;
  height: 80px;
  display: block;
  cursor: pointer;
  margin-right: 20px;
}

.recent-discription .ttl a {
  font-family: "Muli";
  font-size: 17px;
  color: #111111;
  font-weight: 900;
  text-transform: none;
  transition: 0.5s;
  text-decoration: none;
}
.recent-discription .ttl a:hover {
  color: #1086ff;
}

.recent-discription .date a {
  font-family: "Roboto";
  font-size: 15px;
  color: #63666b;
  font-weight: 400;
  text-transform: none;
  transition: 0.5s;
  text-decoration: none;
  margin-top: 5px;
  display: block;
}
.recent-discription .date a:hover {
  color: #1086ff;
}
.recent-content:hover .ttl a {
  color: #1086ff;
}

.cata-title {
  margin-top: 20px;
  padding-bottom: 15px;
}

.category .right-border::before {
  left: 128px;
}

.category .right-border::after {
  left: 148px;
}
.cata-content a i {
  margin-right: 5px;
  font-size: 18px;
}
.cata-content a {
  font-family: "Roboto";
  font-weight: 400;
  font-size: 16px;
  color: #63666b;
  padding-bottom: 15px;
  display: block;
  transition: 0.5s;
	text-decoration: none;
}
.cata-content a:hover {
  color: #1086ff;
  margin-left: 5px;
  text-decoration: none;
}

.ads-pic img {
  display: block;
  max-width: 100%;
  height: auto;
}

.popular .right-border::before {
  bottom: 10px;
  left: 130px;
}

.popular .right-border::after {
  bottom: 10px;
  left: 150px;
}

.popular-title {
  margin-top: 45px;
}
.link-up {
  margin-top: 15px;
}
.link-up ul {
  display: inline-block;
}
.link-up ul li {
  display: inline-block;
  margin: 8px 6px;
}
.link-up ul li a {
  background-color: #f7f7f7;
  font-family: "Roboto";
  font-size: 14px;
  color: #7f8183;
  padding: 10px 22px;
  display: block;
  transition: 0.5s;
}
.link-up ul li a:hover {
  text-decoration: none;
  background: #1086ff;
  color: #fff;
}

.news-title {
  margin-bottom: 25px;
}

.news-btn a {
  background: #1086ff;
  color: #ffffff;
  border: none;
  margin-top: 20px;
}

/* ==========================
     BLOG END
    ============================*/

/* ==========================
     BLOG SINGLE START
    ============================*/

/* ==========================
     BLOG SINGLE ITEM START
    ============================*/

    .blog-single {
      overflow: hidden;
    }
.blog-single-item .blog-content {
  margin-top: 15px;
}

.blog-single-item h4 a {
  font-family: "Muli";
  font-size: 26px;
  font-weight: 900;
  color: #111111;
  text-decoration: none;
  transition: 0.5s;
  margin-bottom: 10px;
  line-height: 1.5;
  display: inline-block;
}
.blog-single-item h4 a:hover {
  color: #ffa922;
}

.blog-single-item p {
  padding-top: 5px;
  text-align: justify;
}
.blog-single-item h5 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding: 0px 30px;
  line-height: 1.8;
  padding-top: 5px;
  padding-bottom: 10px;
}

.blog-single-pic img {
  width: 100%;
  display: block;
  height: auto;
  margin-top: 15px;
  margin-bottom: 35px;
}

.blog-para {
  text-align: justify;
  margin-bottom: 30px;
}

.like-post {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 25px;
}

.like-post p i {
  margin-top: 10px;
  margin-right: 10px;
}

.b-single-social a {
  font-size: 15px;
  color: #63666b;
  padding: 0px 8px;
  transition: 0.5s;
}
.b-single-social a:hover {
  color: #1086ff;
}

.change-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 15px;
}

.change-btn .next-post img,
.change-btn .prev-post img {
  transition: 0.5s;
  margin-right: 20px;
  cursor: pointer;
}

.change-btn .next-post img {
  transition: 0.5s;
  margin-left: 20px;
  cursor: pointer;
}

.change-btn a {
  font-family: "Muli";
  font-size: 14px;
  color: #111111;
  font-weight: 800;
  text-decoration: none;
  text-transform: capitalize;
}

.change-btn .prev-post i {
  position: absolute;
  top: 22px;
  left: 25px;
  color: #111111;
}
.change-btn .next-post i {
  position: absolute;
  top: 22px;
  right: 40px;
  color: #111111;
  z-index: 1;
}

.change-btn .next-post:hover img,
.change-btn .prev-post:hover img {
  opacity: 0.5;
}
.change-btn .prev-post:hover i,
.change-btn .next-post:hover i {
  color: #111111;
}

.owner {
  background: #eff3f9;
  display: flex;
  padding: 45px 30px;
  align-items: center;
  justify-content: center;
}
.owner:hover a {
  color: #1086ff;
}
.owner img {
  height: 100px;
  width: 100px;
  display: block;
}
.owner-discription {
  margin-left: 25px;
}
.owner-discription h5 a {
  font-family: "Muli";
  font-size: 20px;
  color: #111111;
  font-weight: 900;
  letter-spacing: 0;
  padding-bottom: 5px;
  text-decoration: none;
  transition: 0.5s;
}
.owner-discription p {
  margin-bottom: 8px;
}
.owner-icon i {
  font-size: 15px;
  padding: 0px 8px;
  color: #7b8491;
  transition: 0.3s;
  text-decoration: none;
}
.owner-icon i:hover {
  color: #1086ff;
}

.comment {
  padding-top: 50px;
  padding-bottom: 30px;
}

.comment-content {
  display: flex;
  padding-bottom: 40px;
  transition: 0.5s;
}
.comment-content a {
  text-decoration: none;
}

.comment-content img {
  height: 100px;
  width: 100px;
  display: block;
}
.comment-discrip {
  margin-left: 30px;
}

.comment-name {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
}
.comment-name a {
  font-family: "Muli";
  font-size: 20px;
  color: #111111;
  text-transform: capitalize;
  font-weight: 900;
  text-decoration: none;
  transition: 0.3s;
}

.comment-discrip span {
  font-family: "Roboto";
  font-size: 16px;
  color: #ffa922;
  font-weight: 400;
  margin-left: 30px;
}

.comment-discrip .comment-replay a {
  font-family: "Muli";
  font-size: 14px;
  color: #111111;
  text-transform: capitalize;
  font-weight: 700;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}

.comment-discrip .comment-replay a:hover {
  color: #1086ff;
}

.comment-content:hover .comment-name a {
  color: #1086ff;
}

.post-title h4 {
  padding-bottom: 10px;
  padding-top: 20px;
  text-transform: capitalize;
}
.post-title p {
  padding-bottom: 5px;
}
.subject {
  font-family: "Roboto";
  font-size: 15px;
  color: #63666b;
  border: 1px solid #e0e3e7;
  height: 200px;
  width: 100%;
  padding: 20px;
  outline: none;
}
.text {
  font-family: "Roboto";
  font-size: 14px;
  color: #7f8183;
/*  border: 1px solid #e0e3e7;*/
/*  width: 100%;*/
 /* padding: 18px 20px;*/
  margin-top: 20px;
  outline: none;
}
.submit-btn {
  position: relative;
  font-size: 15px;
  background: #1086ff;
  color: #ffffff;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  padding: 20px 25px;
  width: 180px;
  text-decoration: none;
  transition: 0.5s linear;
  text-align: center;
  border-radius: 30px;
  border: none;
  outline: none;
  overflow: hidden;
  z-index: 111;
  margin-right: 15px;
  cursor: pointer;
  margin-top: 30px;
  margin-bottom: 0px;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #34a5d1;
  z-index: -1;
  border-radius: 30px;
  -webkit-transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  -webkit-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transition: -webkit-transform 0.3s, opacity 0.3s,
    background-color 0.3s;
  transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
  z-index: -1;
}

.submit-btn:hover::before {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg);
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
}

/* ==========================
     BLOG SINGLE END
    ============================*/

/* ==========================
     ABOUT PAGE START
    ============================*/

/* ==========================
     FEATURE START
    ============================*/

.feature-section {
  padding-top: 115px;
  padding-bottom: 60px;
}

.feature-title {
  padding-bottom: 30px;
}

.feature-title span {
  font-family: "Roboto";
  font-size: 16px;
  font-weight: 600;
  color: #8e9197;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  padding-bottom: 10px;
}

.feature-title h2 span {
  font-size: 48px;
  color: #20b26b;
  font-weight: 900;
  text-transform: none;
}

/* ==========================
     FEATURE END
    ============================*/

/* ==========================
     ABOUT COMPANY START
    ============================*/

.about-company-bg {
  display: block;
  height: 100%;
  width: 100%;
  background-color: rgb(0 40 121 / 90%);
  padding: 5% 0%;
}

.about-item .about-icon .cls-1 {
  fill: #1086ff;
}

/* ==========================
        ABOUT TESTIMONIAL START
    ============================*/

.about-testimonial-section {
  padding-top: 120px;
  padding-bottom: 115px;
}

.about-testimonial-section .testimonial-title span,
.about-testimonial-section .testimonial-title h2 {
  color: #111111;
}

.about-testimonial-section .testimonial-title h2 span {
  color: #ffa922;
}

.about-testimonial-section .testimonial-slider {
  background: #eff3f9;
  margin-bottom: 30px;
}

.about-testimonial-section .testimonial-slider:before{
  background-image: url('../img/shape2.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  width: 100%;
  left: 0;
  height: 30px;
  position: absolute;
  bottom: -30px;
  display: block;
  content: '';
}


/* ==========================
    ABOUT TESTIMONIAL END
============================*/

/* ==========================
    TEAM-PAGE START
============================*/

.team-page-section {
  padding-top: 120px;
  padding-bottom: 70px;
}

.team-page-section .team {
  margin-bottom: 50px;
}

/* ==========================
    PRODUCT-PAGE START
============================*/

.product-section .category {
  margin-top: 45px;
}
.price .right-border::before {
  bottom: 15px;
  left: 130px;
}

.price .right-border::after {
  bottom: 15px;
  left: 155px;
}

#slider-range {
  background: #eaeff0;
  position: relative;
  max-width: 290px;
  height: 5px;
  margin-top: 20px;
}
#slider-range .ui-slider-range {
  background: #20b26b;
  position: absolute;
  height: 5px;
}
#slider-range .ui-slider-handle {
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #20b26b;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  top: -5px;
  width: 15px;
  height: 15px;
  outline: none;
}
.middle,
.amount {
  font-family: "Roboto";
  padding-top: 25px;
  color: #63666b;
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
  max-width: 30px;
  text-transform: capitalize;
}

.product .right-border::before {
  bottom: 9px;
  left: 155px;
}

.product .right-border::after {
  bottom: 9px;
  left: 180px;
}

.product-section .product-item {
  background: #f7f7f7;
}

.product-section .product-block {
  margin-bottom: 60px;
}

.product-section .product-block:hover img {
  transform: scale(1.1);
}

.product-single-block:hover .price-content a,
.product-block:hover .price-content a {
  color: #1086ff;
}

.product-single-block:hover img {
  transform: scale(1.1);
}
.product-section .pagination {
  margin-top: 0px;
  padding-bottom: 0px;
  margin-bottom: 0;
}

#item_review {
  display: none;
  padding-top: 30px;
}

/* ==========================
    SINGLE PRODUCT START
============================*/

.product-section {
  padding-top: 120px;
  padding-bottom: 120px;
}

.product-section .product-item {
  padding: 85px 0px;
}

.product-section .search-bar {
  margin-top: 0;
}

.rating {
  margin-bottom: 10px;
}
.rating i {
  font-size: 11px;
  color: #b1b4b7;
  margin-right: 3px;
  cursor: pointer;
}
.rating span {
  margin-left: 15px;
  color: #7f8183;
}
.rating i:nth-of-type(1),
.rating i:nth-of-type(2),
.rating i:nth-of-type(3) {
  color: #fe4c4c;
}

.product-content .product-price {
  color: #8e9197;
}

.product-content a {
  font-family: "Muli";
  font-size: 22px;
  font-weight: 900;
  color: #111111;
  text-decoration: none;
  transition: 0.5s;
}

.product-price {
  align-items: center;
  padding-top: 5px;
  padding-bottom: 15px;
}

.product-price a {
  font-size: 20px;
  font-weight: 700;
  color: #20b26b;
  text-decoration: none;
  transition: 0.5s;
}
.product-price h6 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  padding-top: 8px;
  margin-left: 20px;
}

.product-content p {
  text-align: justify;
}

.purses {
  display: flex;
  align-items: center;
  padding-top: 5px;
}

.quantity input[type="number"] {
  border-top: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  color: #111111;
  margin-left: 45px;
  margin-right: 10px;
  text-align: center;
  width: 40px;
  height: 40px;
  border: 1px solid #d9dde4;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
  border-radius: 3px;
	padding-left: 10px;
}

.quantity {
	display: flex;
	border-radius: 6px;
}
.quantity span {
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 10px;
	text-align: center;
	height: 30px;
	width: 20px;
  vertical-align: top;
  border-radius: 3px;
}
.decressQnt i {
	background: #ffffff;
  font-size: 14px;
  color: #7b8491;
  height: 40px;
  width: 40px;
  border-radius: 0;
  border: 1px solid #d9dde4;
  margin-left: 15px;
  display: inline-block;
  border-radius: 3px;
  padding: 12px;
}
.incressQnt i{
  background: #ffffff;
  color: #7b8491;
  font-size: 14px;
  height: 40px;
  width: 40px;
  border-radius: 0;
  border: 1px solid #d9dde4;
  border-radius: 3px;
  padding: 12px;
  
}


.purses .count {
  font-family: "Muli";
  background: #ffffff;
  font-size: 14px;
  height: 40px;
  max-width: 40px;
  border-radius: 0;
  color: #111111;
  padding: 0px 7px;
  border: 1px solid #d9dde4;
  margin: 5px;
  outline: none;
}

/* .purses span */
.single-category span,
.single-tag span {
  font-weight: 700;
  font-size: 18px;
  color: #111111;
  margin-right: 15px;
}


.purses a {
  font-family: "Roboto";
  font-size: 12px;
  color: #20b26b;
  font-weight: 600;
  text-decoration: none;
  margin-left: 30px;
}

.single-btn .cart-bttn a {
  font-size: 16px;
  margin-top: 5px;
  font-weight: 700;
  width: 150px;
  margin-bottom: 80px;
}

.nav-pills .nav-link {
  border-radius: 0px;
  border-color: #e5e8e9;
  transition: 0.3s;
  margin-bottom: 25px;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #fff;
    background-color: #20b26b;
}
.product-btn.bttn a::before {
  background: transparent !important;
}

.single-product-content p {
  margin-top: 25px;
  text-align: justify;
}
.product-btn .nav-link {
  line-height: 20px;
}

.product-related h3 {
  font-family: "Muli";
  font-size: 36px;
  color: #111111;
  font-weight: 900;
  padding-top: 30px;
}

.product-single-block {
  margin-top: 20px;
}


/* BACK TO TOP */

#toTop {
  position: fixed;
  bottom: 30px;
  right: 0;
  cursor: pointer;
 display: none;
  z-index: 10;
}

.back-to-top img {
  background: #2fad65;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  padding: 8px 5px;
  border-radius: 5px;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  margin-right: 28px;
          
}

.back-to-top img:hover {
  background: #2ea7d6;
  color: #ffffff;
}

/* END */



/* Header-02 */


.header02 .logo {
  display: none;
}

.header02 .header-top {
  width: 100%;
  position: relative;
}
.header02 .right-side {
    display: flex;
}
.header02 .headCont {
  font-family: "Roboto";
  font-weight: 500;
  font-size: 16px;
  position: relative;
  padding-left: 25px;
  color: #63666b;
}
.header02 .headCont a {
  font-family: "Roboto";
  font-weight: 400;
  color: #63666b;
  font-size: 16px;
  text-decoration: none;
  transition: .5s;
}
.header02 .headCont:hover i,
.header02 .headCont:hover a{
  color: #1086ff;
}
.header02 .headCont:last-of-type {
  margin-left: 60px;
}
.header02 .headCont i {
  position: absolute;
  left: 0;
  top: 5px;
  transition: .5s;
}
.header02 .header-top-btn a{
  position: relative;
  background-color: #1086ff;
  font-size: 15px;
  color: #fff;
  z-index: 1;
  padding: 13px 30px;
  text-transform: capitalize;
  font-weight: 600;
  width: 100%;
  border-radius: 3px;
  border: none;
  display: block;
  transition: .3s;
}

.header02 .nice-select {
  height: 0;
  line-height: 0;
  margin-bottom: 0;
  z-index: 999;
  background: #1086ff;
  color: #fff;
  margin-top: 5px;
  padding: 19px 38px 19px 20px;
}


.header02 .nice-select .list,
.header02 .nice-select .option.focus, .nice-select .option.selected.focus {
  background: #1086ff;
  color: #fff;
}

.header02 .nice-select .option:hover {
  background-color: #ffa922;
}

.header02 .nice-select:after {
  border-color: #fff;
  right: 23px
}

.header02 .navbar {
  padding: 0px;
  height: 90px;
 
}


.header02 form .top-input {
  right: 34%;
}

/* Banner-01 start */


.banner-02 {   
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  position: relative;
  overflow: hidden;
}


.banner-02 .banner-bg {
  display: block;
  width: 100%!important;
  background-image: url("../img/banner-pic/hero-background2.jpg");
  position: relative;
  top: 0 !important;
  height: 100%;
}

canvas {
top: 0 !important;
}


/* PRICING START */

.pricing {
  padding-top: 115px;
  padding-bottom: 120px;
}

.pricing-title span {
  font-family: "Roboto";
    font-size: 16px;
    font-weight: 600;
    color: #8e9197;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding-bottom: 10px;
}

.pricing-title h2 span {
  font-family: "Muli";
    font-size: 48px;
    color: #ffa922;
    font-weight: 900;
    text-transform: none;
  text-transform: capitalize;
}
.pricing-title h2 {
  padding-bottom: 40px;
  text-transform: capitalize;
}
.pricing-card {
  border: 1px solid #e4e7e9;
  border-radius: 3px;
  text-align: center;
  padding: 30px;
  transition: .5s;
  cursor: pointer;
  
}


.buisness-item {
  background: #f6f7f8;
  padding-top: 35px;
  padding-bottom: 35px;
  border-radius: 3px;
  box-shadow: 0px 0px 15px #e4e7e9;
  transition: .5s;
 
}
.buisness-item h4 {
  padding-top: 25px;
  transition: .5s;
}

.pricing-card:hover h4 {
  color: #fff;
  transition: .5s;
}

.pricing-card h4:hover {
  color: #fff;  
}

.pricing-item {
  background-color: #f6f7f8;
  margin-top: 20px;
  padding-top: 35px;
  padding-bottom: 50px;
  border-radius: 3px;
  transition: .5s;
}
.pricing-item h2 {
  font-size: 40px;
  padding-bottom: 10px;
  transition: .5s;
}
.pricing-item ul li a {
  font-family: "Roboto";
  font-size: 15px;
  color: #7f8183;
  font-weight: 400;
  display: block;
  padding: 6px;
  text-decoration: none;
  transition: .5s;
}
.pricing-item .pricing-btn a {
  font-family: "Muli";
  color: #fff;
  font-size: 14px;
  background: #111111;
  padding: 15px 55px;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 25px;
  transition: .5s;
  letter-spacing: 1px;
}
.pricing-card .pricing-btn a:hover {
  background: #fff;
  color: #111111;
}


.pricing-card ul li a:hover,
.pricing-card h2:hover {
  color: #fff;
}

.pricing-card:hover ul li a {
  color: #fff;
} 
.pricing-card:hover h2 {
  color: #fff;
}
.pricing-card:hover .pricing-btn a{
  background: #fff;
  color: #111111;
}


.pricing-card:hover {
  border-color: #1086ff;
 
}
.pricing-card:hover .pricing-item,
.pricing-card:hover .buisness-item {
  background: #1086ff;
}

/* PRICING END */

/* COUNT SECTION START */

.count-section {
  background: url(../img/counter-bg/conter-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.count-bg {
  display: block;
  width: 100%;
  background-color: rgb(0 40 121 / 85%);
  margin-bottom: 120px;
 padding-top: 150px;
 padding-bottom: 130px;

}


.s-fun .timer {
  color: #fff;
  font-family: "Muli";
  font-size: 48px;
  font-weight: 400;
  line-height: 0;
  margin-bottom: 20px;

}

.s-fun span {
  font-family: "Roboto";
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  display: block;
}

.s-fun i {
  color: #fff;
  font-size: 60px;
  margin-bottom: 40px;
}



/* Journal section */

.journal-2 {
  padding-top: 0;
}

.team-2 {
  padding-top: 120px;
}


/* HEADER----03 */


.header.header02.header03 {
    position: absolute;
    z-index: 999;
    width: 100%;
}

.wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 5px;
}


.my-btn a{
  font-family: 'Muli';
  position: relative;
  background-color: #1086ff;
  font-size: 14px;
  color: #fff!important;
  z-index: 1;
  padding: 45px 40px;
  text-transform: uppercase;
  font-weight: 600;
  width: 100%;
  line-height: 0;
  border-radius: 3px;
  text-decoration: none;
  display: block;
  transition: .3s;
}
.my-btn a:before {
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  background-color: #1086ff;
  position: absolute;
  left: -23px;
  top: 0;
  transform: skew(-19deg);
  z-index: -1;
  transition: .3s;
}
.my-btn a:hover {
  color: #fff!important;
  background: #ffa922;
}
.my-btn a:hover:before{
  background: #ffa922;
}

.header03 .header-top {
  color: #fff;
  border-bottom: none;
  padding: 10px 0px;
  z-index: 999;
}

.header03 .headCont a,
.header03 .headCont {
  color: #fff;
}

.header03 .headCont:hover i,
.header03 .headCont:hover a {
  color: #ffa922;
}

.header03 .header-social {
  display: none;
}

/* BANNER */

.banner-03 .banner-bg {
 padding-top: 21%;
 padding-bottom: 12%;
}

.banner-03 {
  background-image: url("../img/banner-pic/background3.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}


/* 4. about */

.about-text {
	position: absolute;
    bottom: 0px;
    right: 30px;
    text-align: center;
    border-radius: 10px;
      background: linear-gradient(to right, #25ace4, #1fb26c);
    padding: 24px;
     width: 203px;
  height: 167px;
    font-size: 20px;
color: #fff;
font-weight: 700;
}


.about-text span {
font-size: 80px;
    color: #fff;
    position: relative;
    display: block;
    font-weight: 600;
    margin-bottom: -26px;
    margin-top: -23%;
}
.about-text span sub {
    font-size: 24px;
    color: #5e17df;
    font-weight: 400;
    margin-left: -20px;
}
.about-title > span {
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	background: #5e17df;
	height: 30px;
	display: inline-block;
	text-align: center;
	line-height: 30px;
	margin-bottom: 30px;
}
.about-title h2 {
	font-size: 45px;
    margin-bottom: 0 !important;
}
.about-title h5{
   color: #5e17df;
    font-size: 22px;
    margin-bottom: 15px;
}
.about-title .title-strong{
    color: #4f4f4f;
    font-weight: 500;
    font-size: 18px;
}
.about-title .title-strong span {
    padding: 3px 12px;
    background: #5e17df;
    border-radius: 5px;
    color: #fff;
}
.about-title p span {
	display: inline-block;
	height: 2px;
	width: 40px;
	background: #5e17df;
	margin-right: 20px;
	position: relative;
	top: -5px;
}
.about-title p {
	margin-bottom: 0;
}
.about-content p {
	margin-bottom: 45px;
}
.about-content li {
    display: flex;
    margin-bottom: 10px;
}
.about-title h2 span {
    color: #5e17df;
}
.about-content .exprince{
      border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 2.5px 4.33px 15px 0px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding: 30px 0;
}
.about-content .exprince h5 {
    margin-top: 15px;
    margin-bottom: 0;
    font-size: 25px;
    font-weight: 500;
    color: #0595b8;
}
.about-content .exprince p{
    margin-bottom: 0;
}


.section-t h2 {
	font-size: 350px;
	position: absolute;
	left: 0;
	right: 0;
	text-align: center;
	z-index: -1;
	color: #010f2e;
	opacity: .05;
	margin: 0;
	font-weight: 500;
	font-style: italic;
	top: -35px;
	line-height: 1;
}
.second-about {
	top: 0;
transform: translate(6%,-50px);
left: 0;
right: 0;
bottom: 0;
}
.second-atitle > span {
	font-size: 16px;
	font-weight: 500;
	text-transform: uppercase;
	color: #5e17df;
	letter-spacing: 2px;
	display: inline-block;
	margin-bottom: 20px;
	background: transparent;
}
.s-about-content p {
	margin-bottom: 15px;
}
.about-content strong{
    color: #4e4e4e;
}

.ads{
	margin-top: 20px;
}



/** main-footer **/

/** main-footer **/

.main-footer{
  position: relative;
  background-color: #001a56;
}

.main-footer .pattern-layer .pattern-3{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 165px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}

.main-footer .footer-top{
  position: relative;
  width: 100%;
  padding: 155px 0px 25px 0px;
}
.pull-left {
    float: left;
}
.pull-right {
    float: right;
}
.main-footer .footer-top .text h2{
  font-size: 30px;
  line-height: 60px;
  color: #fff;
  font-weight: 600;
  margin: 0px;
}

.main-footer .footer-top .text h2 span{

}

.main-footer .footer-top .support-box a{
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 18px;
  line-height: 25px;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 17.5px 40px;
  border-radius: 30px;
  z-index: 1;
  transition: all 500ms ease;
}

.main-footer .footer-top .support-box a i{
  margin-right: 18px;
}

.main-footer .footer-top .line-shape{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 22px;
  background-repeat: no-repeat;
}
.copyright p{
	text-align: center;
}
.main-footer .widget-section{
  position: relative;
  width: 100%;
  padding: 50px 0px 40px 0px;
}
.main-footer .footer-top { 
    padding: 50px 0px 25px 0px;
}
.pattern-layer{
  position: absolute;
  width: 100%;
  height: 150px;
  top: -122px;
  background: transparent;
  overflow: hidden;
}
.pattern-layer .air{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url(../img/wave.png);
  background-size: 1000px 100px
}
.pattern-layer .air.air1{
  animation: wave 30s linear infinite;
  z-index: 10;
  opacity: 1;
  animation-delay: 0s;
  bottom: 0;
}
.pattern-layer .air.air2{
  animation: wave2 15s linear infinite;
  z-index: 9;
  opacity: 0.5;
  animation-delay: -5s;
  bottom: 10px;
}
.pattern-layer .air.air3{
  animation: wave 30s linear infinite;
  z-index: 8;
  opacity: 0.2;
  animation-delay: -2s;
  bottom: 15px;
}
.pattern-layer .air.air4{
  animation: wave2 5s linear infinite;
  z-index: 7;
  opacity: 0.7;
  animation-delay: -5s;
  bottom: 20px;
}
@keyframes wave{
  0%{
    background-position-x: 0px; 
  }
  100%{
    background-position-x: 1000px; 
  }
}
@keyframes wave2{
  0%{
    background-position-x: 0px; 
  }
  100%{
    background-position-x: -1000px; 
  }
}
.main-footer .logo-widget{
  position: relative;
  margin-top: -10px;
}

.main-footer .logo-widget .footer-logo{
  position: relative;
  margin-bottom: 0px;
}

.main-footer .logo-widget .text{
  position: relative;
  display: block;
  margin-bottom: 31px;
}

.main-footer .logo-widget .text p{
  color: #fff;
}

.main-footer .logo-widget .schedule-box h6{
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

.main-footer .logo-widget .schedule-box .list li{
  position: relative;
  display: block;
  font-size: 15px;
  color: #fff;
  line-height: 26px;
  margin-bottom: 4px;
}

.main-footer .logo-widget .schedule-box .list li:last-child{
  margin-bottom: 0px;
}

.main-footer .widget-title{
  position: relative;
  display: block;
  margin-bottom: 0px;
}

.main-footer .widget-title h4{
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
}

.main-footer .contact-widget .info-list li{
  position: relative;
  display: block;
  font-size: 15px;
  line-height: 30px;
  color: #fff;
  padding-left: 34px;
  margin-bottom: 10px;
}

.main-footer .contact-widget .info-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .contact-widget .info-list li a{
  display: -webkit-box;
  color: #fff;
	text-decoration: none;
}

.main-footer .contact-widget .info-list li a:hover{

}

.main-footer .contact-widget .info-list li i{
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 20px;
}

.main-footer .contact-widget .info-list li:first-child i{
  top: 10px;
}

.main-footer .links-widget .links-list li{
  position: relative;
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 13px;
}

.main-footer .links-widget .links-list li:last-child{
  margin-bottom: 0px;
}

.main-footer .links-widget .links-list li a{
  position: relative;
  display: inline-block;
  color: #fff;
		text-decoration: none;
}

.main-footer .links-widget .links-list li a:hover{

}

.main-footer .links-widget .links-list li a:before{
  position: absolute;
  content: '';
  width: 0%;
  height: 1px;
  left: 0px;
  bottom: 4px;
  transition: all 500ms ease;
}

.main-footer .links-widget .links-list li a:hover:before{
  width: 100%;
}

.main-footer .subscribe-widget p{
  font-size: 15px;
  line-height: 26px;
  color: #fff;
  margin-bottom: 43px;
}

.main-footer .subscribe-widget .form-group{
  position: relative;
  margin: 0px;
  border-radius: 30px;
  overflow: hidden;
}

.main-footer .subscribe-widget .form-group input[type="email"]{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 30px;
  font-size: 16px;
  color: #808080;
  padding: 10px 70px 10px 30px;
  transition: all 500ms ease;
}

.main-footer .subscribe-widget .form-group button{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 500ms ease;
}

.main-footer .subscribe-widget .form-group input:focus{

}

.main-footer .pattern-layer .pattern-1{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 694px;
  height: 389px;
  background-repeat: no-repeat;
}

.main-footer .pattern-layer .pattern-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 384px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.footer-bottom{
  position: relative;
  width: 100%;
  background-color: #001442;
  padding: 20px 0px;
}

.footer-bottom .bottom-inner{
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom .copyright p{
  font-size: 15px;
  line-height: 40px;
  color: #fff;
}

.footer-bottom .copyright p a{
	color: #fff;
	font-weight: 900;
		text-decoration: none;

}

.footer-bottom .copyright p a:hover{
  text-decoration: underline;
}

.footer-bottom .social-links li{
  position: relative;
  display: inline-block;
  margin: 0px 3.5px;
}

.footer-bottom .social-links li a{
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}

.footer-bottom .social-links li a:hover{

}

.footer-bottom .footer-nav li{
  position: relative;
  display: inline-block;
  margin-right: 30px;
  font-size: 15px;
  line-height: 40px;
  color: #fff;
}

.footer-bottom .footer-nav li:last-child{
  margin: 0px !important;
}

.footer-bottom .footer-nav li a{
  position: relative;
  display: inline-block;
  color: #fff;
}

.footer-bottom .footer-nav li a:hover{

}

.footer-bottom .footer-nav li:before{
  position: absolute;
  content: '';
  background-color: #fff;
  width: 1px;
  height: 15px;
  top: 14px;
  right: -17px;
}

.footer-bottom .footer-nav li:last-child:before{
  display: none;
}
.main-footer .footer-top .support-box a {
    background-color: #20b26b;
	text-decoration: none;
}



/** main-slider **/

.main-slider{
  position:relative;
}
.main-slider .top-text:before{
  position: absolute;
  content: '';
  background: url("../img/banner-pic/wave-icon-1.png");
  width: 33px;
  height: 8px;
  left: 0px;
  top: 10px;
  background-repeat: no-repeat;
}
.main-slider .pattern-layer{
  position: absolute;
  top: 0px;
  right: 0px;
  width: 1035px;
  height: 640px;
  top: 0px;
  right: 0px;
  background-repeat: no-repeat;
  animation-name: slideInRight;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-timing-function: linear;
  -webkit-animation-name: slideInRight;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: slideInRight;
  -moz-animation-duration: 2s;
  -moz-animation-iteration-count: 1;
  -moz-animation-timing-function: linear;
  -ms-animation-name: slideInRight;
  -ms-animation-duration: 2s;
  -ms-animation-iteration-count: 1;
  -ms-animation-timing-function: linear;
}

.main-slider .slide{
  position:relative;
  width: 100%;
  padding: 50px 0px 50px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.main-slider .content-box{
  position: relative;
  display: block;
  max-width: 530px;
  width: 100%;
  padding-top: 20px;
  z-index: 1;
}

.main-slider .top-text{
  position:relative;
  display: inline-block;
  padding-left: 43px;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  opacity: 0;
  margin-bottom: 9px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  -webkit-transform: translateY(-50px);
  -moz-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  -o-transform: translateY(-50px);
  transform: translateY(-50px);
}

.main-slider .active .top-text{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 500ms;
}

.main-slider h1{
  position:relative;
  display: block;
  font-size: 55px;
  line-height: 80px;
  color: #006ee1;
  font-weight: 700;
  margin-bottom: 33px;
  opacity:0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateX(-50px);
  -moz-transform: translateX(-50px);
  -ms-transform: translateX(-50px);
  -o-transform: translateX(-50px);
  transform: translateX(-50px);
}

.main-slider .active h1{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1000ms;
}

.main-slider .text{
  position:relative;
  font-size: 18px;
  line-height: 26px;
  color: #222;
  font-weight: 700;
  margin-bottom: 47px;
  opacity:0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateX(50px);
  -moz-transform: translateX(50px);
  -ms-transform: translateX(50px);
  -o-transform: translateX(50px);
  transform: translateX(50px);
}

.main-slider .active .text{
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 1000ms;
}

.main-slider .btn-box{
  opacity:0;
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.main-slider .active .btn-box{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 1500ms;
}

.main-slider .btn-box .theme-btn.style-one{
  margin-right: 8px;
}

.main-slider .image-box{
  position: relative;
  padding-right: 65px;
}
.image-box{
    display: inline-block;
    max-width: 100%;
    height: auto;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
}


.main-slider .image-box .bg-layer{
  position: absolute;
  right: -75px;
  bottom: 0px;
  width: 972px;
  height: 625px;
  background-repeat: no-repeat;
  z-index: -1;
}
.large-container {
    max-width: 1570px;
    padding: 0px 15px;
    margin: 0 auto;
}
.main-slider .image-box .image{
  opacity:0;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.main-slider .active .image-box .image{
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  transition-delay: 1000ms;
}

.main-slider .active .image-box .image img{
  position: relative;
  width: auto;
}

/* slide nav */


.main-slider .owl-dots{
  position: absolute;
  text-align: center;
  left: 50%;
  bottom: 52px;
  display: none;
}

.main-slider .owl-nav{
  position:absolute;
  top:43%;
  z-index:1;
  width:100%;
  transform: translateY(-50%);
}

.main-slider .owl-nav [class*="owl-"]{
  position: absolute;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  width: 50px;
  height: 50px;
  line-height:50px;
  margin: 0px;
  cursor: pointer;
  border-radius: 50%;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider .owl-nav .owl-prev{
  position:absolute;
  left: 30px;
}

.main-slider .owl-nav .owl-next{
  position:absolute;
  right: 30px;
}

.main-slider .owl-nav [class*="owl-"]:hover{
  color: #fff;
}
.main-slider .owl-nav [class*="owl-"] {
    background: #1fb26c;
}
.main-slider .owl-nav [class*="owl-"]:hover {
    background: #1086ff;
    color: #fff;
}
.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav{
  display: none !important;
}

/** shine-animation **/

 
 #starshine {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
   overflow: hidden;
 }

  #starshine1 {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
   overflow: hidden;
 }

  #starshine2 {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: 1;
   overflow: hidden;
 }
 
 .shine {
   display: block;
   position: absolute;
   background-image: url("../img/banner-pic/glitter.png");
   background-repeat: no-repeat;
   background-position: center;
   background-size: 100% 100%;
   overflow: hidden;
   z-index: 2;
   opacity: 0;
   width: 130px;
   height: 130px;
   -webkit-animation: glitter 6s linear 0s infinite normal;
   animation: glitter 6s linear 0s infinite normal;
   text-indent: -9999px;
 }

 .shine-two{
   background-image: url("../img/banner-pic/glitter-2.png") !important;
 } 
 
 .shine.shine-1 {
   top: 50%;
   left: 5%;
   -webkit-animation-delay: 1s;
   animation-delay: 1s;
 }
 
 .shine.shine-2 {
   top: 65%;
   left: 40%;
   -webkit-animation-delay: 2s;
   animation-delay: 2s;
 }
 
 .shine.shine-3 {
   top: 26%;
   left: 83%;
   -webkit-animation-delay: 4s;
   animation-delay: 4s;
 }
 
 @-webkit-keyframes glitter {
     0% {
         -webkit-transform: scale(0.3) rotate(0deg);
         opacity: 0;
     }
     25% {
         -webkit-transform: scale(1) rotate(360deg);
         opacity: 1;
     }
     50% {
         -webkit-transform: scale(0.3) rotate(720deg);
         opacity: 0;
     }
     100% {
         -webkit-transform: scale(0.3) rotate(0deg);
         opacity: 0;
     }
 }
 
 @keyframes glitter {
     0% {
         -webkit-transform: scale(0.3) rotate(0deg);
         transform: scale(0.3) rotate(0deg);
         opacity: 0;
     }
     25% {
         -webkit-transform: scale(1) rotate(360deg);
         transform: scale(1) rotate(360deg);
         opacity: 1;
     }
     50% {
         -webkit-transform: scale(0.3) rotate(720deg);
         transform: scale(0.3) rotate(720deg);
         opacity: 0;
     }
     100% {
         -webkit-transform: scale(0.3) rotate(0deg);
         transform: scale(0.3) rotate(0deg);
         opacity: 0;
     }
 }
 
 @-moz-keyframes glitter {
     0% {
         -moz-transform: scale(0.3) rotate(0deg);
         opacity: 0;
     }
     25% {
         -moz-transform: scale(1) rotate(360deg);
         opacity: 1;
     }
     50% {
         -moz-transform: scale(0.3) rotate(720deg);
         opacity: 0;
     }
     100% {
         -moz-transform: scale(0.3) rotate(0deg);
         opacity: 0;
     }
 }


/* Project Grid */
.py-130{
	margin-top: 20px;
	margin-bottom: 130px!important;
}
.project-grid-item {
  margin-bottom: 10px;
}
  .project-grid-item .image {
    position: relative; }
    .project-grid-item .image img {
      width: 100%; }
    .project-grid-item .image:before {
      content: '';
      z-index: 1;
      opacity: 0;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      mix-blend-mode: multiply;
      background: var(--heading-color); }
    .project-grid-item .image .plus {
      z-index: 2;
      color: white;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      font-size: 75px;
      width: 100px;
      height: 100px; }
      .project-grid-item .image .plus:after, .project-grid-item .image .plus:before {
        width: 0;
        height: 0;
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        -webkit-transition: 0.5s;
        -o-transition: 0.5s;
        transition: 0.5s;
        background: white; }
  .project-grid-item .content {
    padding: 15px 30px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-shadow: 3px 0 60px rgba(103, 77, 243, 0.2);
    box-shadow: 3px 0 60px rgba(103, 77, 243, 0.2); }
    .project-grid-item .content h4 {
      margin-bottom: 0; }
      @media only screen and (max-width: 991px) {
        .project-grid-item .content h4 {
          font-size: 20px; } }
    .project-grid-item .content h5 {
      margin-bottom: 0; }
    .project-grid-item .content .detail-btn {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      margin-left: 5px;
      color: var(--heading-color);
      width: 45px;
      height: 45px;
      background: var(--lighter-color);
      line-height: 45px;
      border-radius: 50%;
      text-align: center; }
      @media only screen and (max-width: 375px) {
        .project-grid-item .content .detail-btn {
          display: none; } }
  .project-grid-item:hover .image:before {
    opacity: 0.65; }
  .project-grid-item:hover .plus:after {
    width: 100%;
    height: 2px; }
  .project-grid-item:hover .plus:before {
    width: 2px;
    height: 100%; }

.project-active .project-grid-item {
  margin-bottom: 30px; }
  @media only screen and (min-width: 376px) {
    .project-active .project-grid-item .content {
      padding-top: 8px;
      padding-bottom: 8px; } }



/*
Choose Us Area Style
======================================================*/
.ptb-100 {
    padding-top: 40px;
    padding-bottom: 100px;
}
.choose-us-content {
  margin-right: 0px;
}

.choose-us-content .top-title {
  font-size: 16px;
  font-weight: 600;
  color: #1fb26c;
  margin-bottom: 10px;
  display: block;
}

.choose-us-content h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.choose-us-content p {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  padding-left: 15px;
}

.choose-us-content p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background-color: #1fb26c;
}
.para {
   color: #63666b;
    font-size: 16px;
    font-weight: normal;
    line-height: 22px;
	text-align: justify;
	
}
.choose-us-content .col-lg-6:nth-child(2) .single-counter {
  border-right: none;
}

.choose-us-content .col-lg-6:nth-child(3) .single-counter {
  border-bottom: none;
}

.choose-us-content .col-lg-6:nth-child(4) .single-counter {
  border-right: none;
  border-bottom: none;
}

.single-counter {
  background-color: #f1f7f8;
  padding: 30px;
  text-align: center;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.single-counter h2 {
  color: #11a63d;
  font-size: 40px;
}

.single-counter h2 .target {
  margin-left: -8px;
  font-size: 36px;
  position: relative;
  top: 2px;
}

.single-counter .title {
  font-size: 16px;
}

.choose-us-img {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  margin-left: 30px;
}

.choose-us-img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  bottom: -30px;
  width: 300px;
  height: 300px;
  background-color: #1fb26c;
  z-index: -1;
}

.color-title{
	color: #fff;
	text-align: center;
}

/********************************************************
    18. Product description tab CSS Start
********************************************************/
.e-pdtab-wrap {
    padding: 45px 0 0;
}
.e-star-rating input {
    display: none;
}
.e-star-rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: 24px;
    justify-content: flex-end;
}
.e-star-rating :checked ~ label, .e-star-rating label:hover, .e-star-rating label:hover ~ label {
    color: rgb(254 192 7);
}
.e-star-rating label {
    color: #ccc;
    cursor: pointer;
    margin: 0;
}
.e-pdtab-tabs {
    border-bottom: 1px solid #dde3f0;
    padding: 0 20px;
}
.tab-content-inner {
    padding: 20px 20px;
}
.e-pdtab-tabs > li {
    padding-right: 20px;
}
.e-pdtab-tabs > li:last-child {
    padding-right: 0;
}
.e-pdtab-tabs > li > a {
    color: var(--sub-txt-color);
    font-weight: 500;
    position: relative;
    padding: 26px 0px 14px 0px;
    display: inline-block;
}
.e-pdtab-tabs > li > a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    height: 3px;
    width: 0%;
    background: rgb(96, 186, 190);
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
}
.e-pdtab-tabs > li > a.active:after {
    width: 86%;
}
.e-pdtab-inner {
    background: #fbfbfb;
}
.pdtab-addinfo > li p span {
    font-weight: 700;
    color: var(--sub-txt-color);
}
.pdtab-addinfo > li {
    margin-bottom: 20px;
}
.pdtab-rev-title, .pdtab-rev-stitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--sub-txt-color);
}
.pdtab-rev-stitle {
    font-weight: 400;
    margin:15px 0 5px 0;
}
.e-field-inner::placeholder {
    color: var(--txt-color);
    opacity: 1;
  }
  
.e-field-inner:-ms-input-placeholder { 
    color: var(--txt-color);
  }
  
.e-field-inner::-ms-input-placeholder { 
    color: var(--txt-color);
  }
.mb-30 {
    margin-bottom: 30px;
}
.mb-10 {
    margin-bottom: 10px;
}
/* form field */
.e-field-inner {
    border:1px solid #e9e9e9!important;
    background-color: #fcfcfd;
    width: 100%;
    height: 50px;
    padding: 0 20px;
    color: var(--txt-color);
}
textarea.e-field-inner {
    height: 170px;
    padding: 20px;
    resize: none;
}



/*** 

====================================================================
	Contact Info Section Two
====================================================================

***/

.contact-info-section-two{
	position:relative;
	padding:120px 0px 0px;
}

.info-block{
	position:relative;
	margin-bottom:40px;
}

.info-block .inner-box{
	position:relative;
	padding:15px 30px;
	text-align:center;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	border:1px solid #dbdbdb;
	height: 450px;
}

.info-block .inner-box:hover{
	border-color:var(--main-color);
}

.info-block .icon-outer{
	position:relative;
	display:inline-block;
	font-size: 30px;
}

.info-block .icon-outer:before{
	position:absolute;
	content:'';
	left:-15px;
	top:-5px;
	width:45px;
	height:45px;
	opacity:0.10;
	border-radius:50px;
	background-color:#20b26b;
}

.info-block .icon-outer .icon{
	position:relative;
	line-height:1em;
	color:var(--main-color);
	font-size:var(--font-50);
	font-family: "Flaticon";
}

.info-block h4{
	font-weight:500;
	text-transform:capitalize;
	margin-top:var(--margin-top-20);
}

.info-block .text{
	font-weight:500;
	line-height:30px;
	color:var(--color-five);
	font-size:var(--font-20);
	text-transform:capitalize;
	margin-top:var(--margin-top-10);
}

.info-block .text a{
	font-weight:500;
	color:var(--color-five);
}

.info-block .text a:hover{
	color:var(--main-color);
}

.contact-info-section-two .form-box{
	position:relative;
	z-index:1;
	padding:40px 35px 10px;
	background-color:#fff;
	border:1px solid #d7d7d7;
	margin-bottom: 140px;
}

.contact-info-section-two .form-box h3{
	position:relative;
	font-weight:500;
	color:#20b26b;
	margin-bottom:30px;
	text-align: center;
}

/*** 

====================================================================
	Contact Form
====================================================================

***/

.contact-form{
	position:relative;
}

.contact-form .form-group{
	margin-bottom:25px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:10px 20px;
	color: #000;
	height:54px;
	font-size:14px;
	border-radius:0px;
	background-color: #fff;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	border:1px solid #d7d7d7;
	box-shadow:0px 5px 10px rgba(0,0,0,0.05);
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus{
	border-color:#d7d7d7;
	background-color:#fff;
}

.contact-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	height:200px;
	resize:none;
	line-height:24px;
	border-radius:0px;
	padding:15px 20px 25px;
	color: var(--color-nineteen);
	font-size:var(--font-14);
	background-color: #fff;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	box-shadow:0px 5px 10px rgba(0,0,0,0.05);
	border:1px solid #d7d7d7;
}

.contact-form .form-group button{
	background:#20b26b;
}
.pbmit-social-links li {
    display: inline-block;
    margin-right: 4px;
}
.pbmit-social-links{
    margin-top: 10px;
} 
.pbmit-social-links li a{
    width: 45px;
    height: 45px;
    color: #fff;
    background-color: #20b26b;
    display: block;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
}   
.pbmit-social-links li a:hover{
   background-color: #2da7d8; 
}  



.checkout_btn {
  text-align: right;
}
.checkout_btn a {
  background: #de4e43;
  color: #ffffff;
  font-size: 15px;
  padding: 3px 14px;
  line-height: 30px;
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
  margin-bottom: 0;
}
.checkout_btn a:hover {
  background: #242424;
  color: #ffffff;
}

.coupon_area {
  margin-bottom: 60px;
}


@media only screen and (min-width: 1200px){
.section--padding {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
	}
.checkout__checkbox {
    position: relative
}

.checkout__checkbox--input {
    position: absolute;
    left: -1px;
    top: 4px;
    opacity: 0;
    cursor: pointer;
    z-index: 999
}

.checkout__checkbox--input:checked~.checkout__checkbox--checkmark {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color)
}

.checkout__checkbox--input:checked~.checkout__checkbox--checkmark::before {
    display: block
}

.checkout__checkbox--label {
    padding-left: 0rem;
    cursor: pointer;
    color: var(--primary-color);
    font-size: 1.4rem
}

@media only screen and (min-width:768px) {
    .checkout__checkbox--label {
        font-size: 1.5rem
    }
}

.checkout__checkbox--checkmark {
    height: 1.8rem;
    width: 1.8rem;
    border: 1px solid var(--border-color);
    border-radius: .3rem;
    display: block;
    position: absolute;
    top: 4px;
    left: 0;
    background: var(--body-background-color);
    -webkit-transition: var(--transition);
    transition: var(--transition)
}

.checkout__checkbox--checkmark::before {
    left: .5rem;
    top: .3rem;
    width: .5rem;
    height: .8rem;
    border: solid #fff;
    border-top-width: medium;
    border-right-width: medium;
    border-bottom-width: medium;
    border-left-width: medium;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none
}

.checkout__input--label {
    display: inline-block;
    color: #000;
	    margin-top: 10px;
}

.checkout__input--label__star {
    color: #de4e43;
}

.checkout__input--field {
    width: 100%;
    border: 1px solid #d7d7d7;
    height: 2.8rem;
    padding: 0 1.5rem;
	    margin-top: 10px;
}


.checkout__input--field:focus {
    border-color: #d7d7d7;
}

.checkout__notes--textarea__field {
    width: 100%;
    border: 1px solid #d7d7d7;
    padding: 1rem 1.5rem .5rem;
    resize: none
}

.checkout__notes--textarea__field:focus {
    border-color: var(--secondary-color)
}

@media only screen and (max-width:991px) {
    .checkout__section--header {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start
    }
}

.checkout__header--title {
    line-height: 2.2rem;
    color: #000;
}

@media only screen and (min-width:1200px) {
    .checkout__header--title {
        line-height: 2.4rem
    }
}

@media only screen and (max-width:575px) {
    .checkout__header--title {
        margin-bottom: .8rem
    }
}

.layout__flex--item {
    color: var(--foreground-sub-color)
}

@media only screen and (max-width:991px) {
    .layout__flex--item {
        margin-top: 1rem
    }
}

.layout__flex--item__link {
    color: var(--secondary-color)
}

.section__shipping--address {
    padding: 3rem 0 2rem
}

.section__shipping--address.pt-10 {
    padding-top: 1rem
}

.section__shipping--address.pt-0 {
    padding-top: 0
}

.checkout__input--select {
    position: relative
}

.checkout__input--select__field {
    width: 100%;
    height: 2.8rem;
    padding: .5rem 1.5rem;
    border: 1px solid #d7d7d7;
    -webkit-appearance: none;
    cursor: pointer;
	color: #757575;
}

.checkout__input--select__field:focus {
    border-color:#FF0004;
}

.previous__link--content {

    margin-left: 2rem;
    color: var(--secondary-color)
}

@media only screen and (max-width:575px) {
    .previous__link--content {
        margin-left: 0;
        margin-top: 1rem
    }
}

.checkout__footer {
    border: 0
}

@media only screen and (max-width:575px) {
    .checkout__content--step__footer {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }
}
.border-radius-10 {
    border-radius: 1rem;
}
.checkout__sidebar {
    background: #fafafa;
    border: 1px solid #d7d7d7!important;
    padding: 2rem 2.5rem;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
	margin-top: 118px;
}

@media only screen and (max-width:991px) {
    .checkout__sidebar {
        padding: 3rem 1.8rem
    }
}

@media only screen and (max-width:767px) {
    .checkout__sidebar {
        margin-top: 3rem
    }
}

.product__thumbnail {
    width: 7rem;
    border: 1px solid var(--border-color);
    position: relative;
    line-height: 1
}

.product__thumbnail--quantity {
    position: absolute;
    top: -6px;
    right: 8px;
    width: 1.5rem;
    height: 1.5rem;
    line-height: 26px;
    background: #20b26b;
    color: #fff;
    text-align: center;
    border-radius: 50%;
}
.product__description--name {
    font-size: 12px;
    line-height:24px;
    font-weight: 500;
}

.product__description--name a {
    color:#000;
}

.product__description--name a:hover {
    color: var(--secondary-color)
}

.product__description--variant {
    font-size: 1.2rem;
    color: #000;
    line-height: 2rem
}

.checkout__product--table .cart__table--body__list {
    padding: 1rem 2rem 1rem 0
}

.checkout__product--table .cart__table--body__list:last-child {
    padding-right: 0
}

.checkout__discount--code {
    margin-bottom: 2.5rem
}

.checkout__discount--code__input--field {
    width: 100%;
    border: 1px solid var(--border-color);
    height: 4rem;
    padding: 0 1.5rem;
    font-size: 1.4rem
}

.checkout__discount--code__input--field:focus {
    border-color: var(--secondary-color)
}

@media only screen and (min-width:768px) {
    .checkout__discount--code__input--field {
        height: 4.4rem
    }
}

.checkout__discount--code__btn {
    height: 4rem;
    line-height: 4rem;
    margin-left: 2rem;
    padding: 0 2.5rem;
    font-size: 1.4rem
}

@media only screen and (min-width:768px) {
    .checkout__discount--code__btn {
        height: 4.2rem;
        line-height: 4.2rem;
        font-size: 1.5rem
    }
}

@media only screen and (min-width:1200px) {
    .checkout__discount--code__btn {
        font-size: 1.6rem
    }
}

.checkout__total {
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem
}

.checkout__total--table {
    width: 100%
}

.checkout__total--calculated__text {
    font-size: 1.3rem;
    color: var(--foreground-sub-color)
}

.checkout__total--title {
    color: var(--foreground-sub-color)
}

.checkout__total--footer__list {
    padding-top: 3rem;
    position: relative
}

.checkout__total--footer__list::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #e4e4e4;
    top: 1.5rem;
    left: 0
}

.checkout__total--footer__title {
    font-size: 1.6rem;
    color: #000;
}

.checkout__total--footer__amount {
    font-size: 1rem;
    font-weight: 600;
    color:#000;
}


@media only screen and (min-width:1200px) {
    .checkout__order--summary__title {
        font-size: 22px;
        line-height: 2.4rem;
		color:#000;
    }
}

@media only screen and (max-width:575px) {
    .payment__history--inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.payment__history--list {
    margin-right: 1.5rem
}

@media only screen and (max-width:1199px) {
    .payment__history--list {
        margin-bottom: 1rem
    }
}

.payment__history--list:last-child {
    margin-right: 0
}

@media only screen and (max-width:1199px) {
    .payment__history--list {
        margin-right: 1rem
    }
}

.payment__history--link {
    background: #d7d7d7;
    color: #000;
    border: 1px solid #d7d7d7;
    padding: 0 1.2rem;
	font-size: 12px;
}

@media only screen and (min-width:1200px) {
    .payment__history--link {
        height: 45px;
        line-height: 45px
    }
}

.checkout__now--btn {
    width: 100%;
    text-align: center;
    font-size: 1.4rem
}

@media only screen and (min-width:1200px) {
    .checkout__now--btn {
        font-size: 1.6rem;
        height: 4.8rem;
        line-height: 4.6rem
    }
}

.continue__shipping--btn {
    font-size: 1.4rem
}

@media only screen and (min-width:1200px) {
    .continue__shipping--btn {
        font-size: 1.6rem;
        height: 4.4rem;
        line-height: 4.4rem
    }
}


.primary__btn-one {
    font-weight: 500;
    display: inline-block;
    font-size: 1.3rem;
    line-height: 2.2rem;
    height: 3.8rem;
    padding: 0 2rem;
    letter-spacing: .2px;
    border-radius: 0.5rem;
    background: #de4e43;
    color: #fff;
    border: 0;
}
.primary__btn-one:hover{
	background: #000;
}

.checkout__product--table {
  margin-bottom: 2rem;
}

.checkout__product--table .cart__table--body__list {
  padding: 1rem 1rem 1rem 0;
}

.checkout__product--table .cart__table--body__list:last-child {
  padding-right: 0;
}

.checkout__discount--code {
  margin-bottom: 2.5rem;
}

.checkout__discount--code__input--field {
  width: 100%;
  border: 1px solid var(--border-color2);
  height: 4rem;
  padding: 0 1.5rem;
}

.checkout__discount--code__input--field:focus {
  border-color: var(--secondary-color);
}

@media only screen and (min-width: 768px) {
  .checkout__discount--code__input--field {
    height: 4.5rem;
  }
}

.checkout__discount--code__btn {
  height: 4rem;
  line-height: 4rem;
  margin-left: 2rem;
  padding: 0 2.5rem;
  font-size: 1.4rem;
}

@media only screen and (min-width: 768px) {
  .checkout__discount--code__btn {
    height: 4.5rem;
    line-height: 4.5rem;
    font-size: 1.5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .checkout__discount--code__btn {
    font-size: 1.6rem;
  }
}

.checkout__total {
  border-top: 1px solid var(--border-color2);
  padding-top: 1.2rem;
}

.checkout__total--table {
  width: 100%;
}

.checkout__total--calculated__text {
  font-size: 1.3rem;
  color: var(--text-gray-color);
}

.checkout__total--title {
  color: var(--text-gray-color);
}

.checkout__total--footer__list {
  padding-top: 3rem;
  position: relative;
}

.checkout__total--footer__list::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #e4e4e4;
  top: 1.5rem;
  left: 0;
}

.checkout__total--footer__title {
  font-size: 1.3rem;
}

.checkout__total--footer__amount {
  font-size: 1.5rem;
  font-weight: 600;
}



.payment__history {
  margin-top: 2rem;
}

.payment__history--title {
  font-size: 24px;
  line-height: 2.2rem;
}


@media only screen and (max-width: 575px) {
  .payment__history--inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.payment__history--list {
  margin-right: 1.5rem;
}

@media only screen and (max-width: 1199px) {
  .payment__history--list {
    margin-bottom: 1rem;
  }
}

.payment__history--list:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 1199px) {
  .payment__history--list {
    margin-right: 1rem;
  }
}

.payment__history--link {
  background: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 0 1.2rem;
  font-size: 1.4rem;
}

@media only screen and (min-width: 1200px) {
  .payment__history--link {
    font-size: 1.6rem;
    padding: 0 2rem;
    height: 4.8rem;
    line-height: 4.6rem;
  }
}

.checkout__now--btn {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
}

@media only screen and (min-width: 1200px) {
  .checkout__now--btn {
    font-size: 1.6rem;
    height: 4.8rem;
    line-height: 4.6rem;
  }
}

.continue__shipping--btn {
  font-size: 1.4rem;
}

@media only screen and (min-width: 1200px) {
  .continue__shipping--btn {
    font-size: 1.6rem;
    height: 4.8rem;
    line-height: 4.6rem;
  }
}

@media only screen and (min-width: 1200px){
.primary__btn {
    line-height: 4.8rem;
    height: 4.8rem;
    font-size: 1.6rem;
}
	}
@media only screen and (min-width: 992px){
.primary__btn {
    line-height: 4.4rem;
    height: 4.4rem;
    padding: 0 2.5rem;
}
	}
@media only screen and (min-width: 768px){
.primary__btn {
    line-height: 4rem;
    height: 4rem;
    padding: 0 2.2rem;
    font-size: 1.5rem;
}
	}
.primary__btn {
    font-weight: 400;
    display: inline-block;
    font-size: 18px;
    line-height: 3.4rem;
    height: 3.4rem;
    padding: 0 1.5rem;
    letter-spacing: 0.2px;
    border-radius: 0.3rem;
    background: #20b26b;
    color: #fff;
    border: 0;
}
.primary__btn:hover{
	background: #000;
	color: #fff;
	text-decoration: none;
}
.previous__link--content {
    margin-left: 2rem;
    color: #20b26b;
	text-decoration: none!important;
}
.previous__link--content:hover{
	color: #000;
}

/* 13. cart page css here */
.cart_page_bg {
  background: #F5F5F9;
  padding: 55px 0 133px;
}
@media only screen and (max-width: 767px) {
  .cart_page_bg {
    padding: 55px 0 111px;
  }
}

.shopping_cart_area {
  background: #ffffff;
  padding: 20px;
  border: 1px solid #ebebeb;
}

.header_cart_page {
  border-bottom: 1px solid #ebebeb;
}

.other_bread {
  padding-top: 41px;
  padding-bottom: 41px;
}

.table_desc {
  border: 1px solid #ebebeb;
  margin-bottom: 60px;
}
.table_desc .cart_page table {
  width: 100%;
}
.table_desc .cart_page table thead tr th {
  border-bottom: 3px solid #20b26b;
  border-right: 1px solid #ebebeb;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px;
  text-align: center;
}
.table_desc .cart_page table tbody tr td {
  border-bottom: 1px solid #ebebeb;
  border-right: 1px solid #ebebeb;
  text-align: center;
  padding: 10px;
}
.table_desc .cart_page table tbody tr td.product_remove {
  min-width: 100px;
}
.table_desc .cart_page table tbody tr td.product_remove a {
  font-size: 20px;
  color: #222222;
}
.table_desc .cart_page table tbody tr td.product_remove a:hover {
  color: #c40316;
}
.table_desc .cart_page table tbody tr td.product_thumb {
  max-width: 180px;
}
.table_desc .cart_page table tbody tr td.product_thumb a img {
  width: 100px;
}
.table_desc .cart_page table tbody tr td.product_name {
  min-width: 180px;
}
.table_desc .cart_page table tbody tr td.product_name a {
  color: #222222;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
}
.table_desc .cart_page table tbody tr td.product_name a:hover {
  color: #c40316;
}
.table_desc .cart_page table tbody tr td.product-price {
  min-width: 130px;
  color: #222222;
  font-size: 16px;
  font-weight: 500;
}
.table_desc .cart_page table tbody tr td.product_quantity {
  min-width: 180px;
}
.table_desc .cart_page table tbody tr td.product_quantity label {
  font-weight: 500;
  margin-right: 5px;
}
.table_desc .cart_page table tbody tr td.product_quantity input {
  width: 60px;
  height: 40px;
  padding: 0 5px 0 10px;
  background: none;
  border: 1px solid #ebebeb;
}
.table_desc .cart_page table tbody tr td .product_total {
  min-width: 120px;
}

.cart_page table thead tr:last-child th, .table_desc table tbody tr td:last-child {
  border-right: 0;
}

.cart_submit {
  text-align: right;
  padding: 12px;
}
@media only screen and (max-width: 767px) {
  .cart_submit {
    text-align: center;
  }
}
.cart_submit button {
  background: #222222;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 38px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 3px;
}
.cart_submit button:hover {
  background: #c40316;
}

.coupon_inner {
  padding: 10px 20px 25px;
}
@media only screen and (max-width: 767px) {
  .coupon_inner {
    padding: 10px 14px 25px;
  }
}
.coupon_inner p {
  font-size: 13px;
  margin-bottom: 20px;
}
.coupon_inner button {
  background: #222222;
  border: 0;
  color: #ffffff;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  height: 38px;
  line-height: 18px;
  padding: 10px 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 3px;
}
.coupon_inner button:hover {
  background: #c40316;
}
.coupon_inner input {
  border: 1px solid #ebebeb;
  height: 42px;
  background: none;
  padding: 0 20px;
  margin-right: 20px;
  font-size: 12px;
  color: #222222;
}
@media only screen and (max-width: 767px) {
  .coupon_inner input {
    margin-bottom: 24px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .coupon_inner input {
    margin-bottom: 24px;
    width: 100%;
  }
}
.coupon_inner a {
  display: block;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 10px;
  border-radius: 3px;
}
.coupon_inner a:hover {
  color: #c40316;
}

.coupon_code {
  border: 1px solid #ebebeb;
}
@media only screen and (max-width: 767px) {
  .coupon_code.left {
    margin-bottom: 50px;
  }
}
.coupon_code h3 {
  color: #ffffff;
  line-height: 36px;
  padding: 5px 15px;
  background: #222222;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .coupon_code h3 {
    line-height: 28px;
    padding: 5px 15px;
    font-size: 15px;
  }
}

.cart_subtotal {
  display: flex;
  justify-content: space-between;
}
.cart_subtotal p {
  font-weight: 600;
  font-size: 14px;
}
@media only screen and (max-width: 767px) {
  .cart_subtotal p {
    font-size: 13px;
  }
}
.cart_subtotal p.cart_amount {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .cart_subtotal p.cart_amount {
    font-size: 13px;
  }
}
.cart_subtotal p span {
  margin-right: 30px;
}
.checkout_btn {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .checkout_btn {
    text-align: center;
  }
}
.checkout_btn a {
  background: #20b26b;
  color: #ffffff;
  font-size: 15px;
  padding: 3px 14px;
  line-height: 30px;
  font-weight: 500;
  display: inline-block;
  text-transform: capitalize;
	text-decoration: none;
  margin-bottom: 0;
}
.checkout_btn a:hover {
  background: #222222;
  color: #ffffff;
}
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 5px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 5px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 5px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 5px;
}
.ui-slider-horizontal .ui-slider-range {
  background: #c40316;
  height: 5px;
}

.ui-slider-horizontal {
  height: 3px;
  background: #dbdbdb;
  border: none;
  width: 92%;
  margin: 0 auto;
  margin-bottom: 22px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
  background: #fff;
  border: 0;
  border-radius: 0;
  width: 19px;
  height: 19px;
  top: -7px;
  cursor: pointer;
  border-radius: 50%;
  border: 5px solid #c40316;
}

.widget_list.widget_filter form {
  padding-top: 10px;
}
.widget_list.widget_filter form input {
  background: none;
  border: none;
  font-size: 12px;
  float: right;
  text-align: right;
  line-height: 31px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget_list.widget_filter form input {
    width: 65px;
  }
}
.widget_list.widget_filter form button {
  height: 30px;
  line-height: 30px;
  padding: 0 20px;
  text-transform: capitalize;
  color: #ffffff;
  background: #222222;
  border: 0;
  border-radius: 30px;
  transition: 0.3s;
}
.widget_list.widget_filter form button:hover {
  background: #20b26b;
}

.services-details{
	padding-top: 50px;
	margin-bottom: 120px!important;
}
.services-details__content{
	margin-bottom: 150px;
}
.services-details__content h1{
	color: #000;
	font-size: 30px;
	text-align: center;
	margin-bottom: 20px;
}
.services-details__content .feature-list .single-item {
  position: relative;
  display: block;
  border: 1px solid #e1e8e4;
  padding: 16px 0px 15px 32px;
  margin-bottom: 20px;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.services-details__content .feature-list .single-item .icon-box {
  color: #000;
  position: absolute;
  left: 8px;
  top: 20px;
  font-size: 18px;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.services-details__content .feature-list .single-item .title a{
  display: block;
  margin: 0;
  font-size: 15px;
  line-height: 32px;
  font-weight: 500;
  text-transform: uppercase;
	color: #222;
	text-decoration: none;
}
.services-details__content .feature-list .single-item:hover {
  background-color: #20b26b;
  color: #fff;
}
.services-details__content .feature-list .single-item:hover .title a{
  color: #fff;
}
.services-details__content .feature-list .single-item:hover .icon-box {
  color: #fff;
}

.whats-app {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    right: 15px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
}
.whats-app:hover{
	color: #fff;
}
.my-float {
    margin-top: 16px;
}

@media only screen and (max-width: 767px) {
	.choose-us-content {
    margin-bottom: 30px;
    margin-right: 0;
  }
  .choose-us-content .top-title {
    font-size: 14px;
  }
  .choose-us-content h2 {
    font-size: 28px;
  }
  .choose-us-content .pe-0 {
    padding-right: 12px !important;
  }
  .choose-us-content .ps-0 {
    padding-left: 12px !important;
  }
  .choose-us-content .col-lg-6:nth-child(3) .single-counter {
    border-bottom: 1px solid #e5e5e5;
  }
	.choose-us-img {
    margin-left: 0;
    margin-bottom: 0;
  }
  .choose-us-img::before {
    display: none;
  }
}

@media only screen and (min-width: 500px) and (max-width: 767px) {
	  .choose-us-content {
    margin-bottom: 6px;
  }
  .choose-us-content .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.choose-us-content {
    margin-bottom: 6px;
    margin-right: 0;
  }
  .choose-us-content .top-title {
    font-size: 14px;
  }
  .choose-us-content h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .choose-us-content .pe-0 {
    padding-right: 12px !important;
  }
  .choose-us-content .ps-0 {
    padding-left: 12px !important;
  }
  .choose-us-content .col-lg-6:nth-child(3) .single-counter {
    border-bottom: 1px solid #e5e5e5;
  }
	.choose-us-img {
    margin-left: 0;
    margin-bottom: 0;
  }
  .choose-us-img::before {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.choose-us-content {
    margin-right: 0;
  }
}


.p-relative{
	position: relative;
}

.multi-social {
  font-size: 45px;
  list-style: none;
}
.multi-social i.fa-facebook-f {
  background: #3b5997;
}
.multi-social i.fa-twitter {
  background: #54abf0;
}
.multi-social i.fa-pinterest-p {
  background: #c8232c;
}
.multi-social i.fa-linkedin-in {
  background: #0077b5;
}
.multi-social i.fa-vimeo-v {
  background: #86c9ef;
}
.multi-social i.fa-youtube {
  background: #ff0000;
}
.multi-social i.fa-instgram {
  background: #d63084;
}
.multi-social a {
  display: inline-block;
}
.multi-social a i {
  width: var(--icon-size);
  height: var(--icon-size);
  line-height: var(--icon-size);
  text-align: center;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
  margin-right: 7px;
  transition: 0.3s ease-in-out;
}
.multi-social a i:hover {
  background-color: var(--secondary-color);
}
.multi-social a:last-child i {
  margin-right: 0;
}
