/*-------------------------------
         Footer CSS
-------------------------------*/
.footer-wrap {
  position: relative;
  border-top: 1px solid #f1f1f1;
}

.footer-wrap .footer-top .footer-widget {
  margin: 0 0 30px;
}

.footer-wrap .footer-top .footer-widget .footer-widget-title {
  line-height: 1.4;
  margin: 0 0 20px;
  color: var(--clr_thunder);
}

.footer-wrap .footer-top .footer-widget .footer-menu li {
  padding-bottom: 10px;
  display: block;
}

.footer-wrap .footer-top .footer-widget .footer-menu li a {
  position: relative;
  color: var(--clr_scorpion);
  display: inline-block;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer-wrap .footer-top .footer-widget .footer-menu li a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  content: "";
  background-color: var(--clr_scorpion);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-wrap .footer-top .footer-widget .footer-menu li a i {
  font-size: 14px;
  margin-right: 5px;
}

.footer-wrap .footer-top .footer-widget .footer-menu li a:hover {
  color: var(--clr_thunder);
}

.footer-wrap .footer-top .footer-widget .footer-menu li a:hover:after {
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.footer-wrap .footer-top .footer-widget .footer-menu li:last-child {
  padding-bottom: 0;
}

.footer-wrap .footer-top .footer-widget .payment-option {
  margin: 30px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.footer-wrap .footer-top .footer-widget .payment-option li {
  width: 30%;
}

.footer-wrap .footer-bottom {
  padding: 15px 0 15px;
  border-top: 1px solid #f1ebe1;
}

.footer-wrap .footer-bottom .copyright-text p {
  color: var(--clr_thunder);
  margin: 0;
}

.footer-wrap .footer-bottom .copyright-text p a {
  color: var(--clr_jaffa);
}

.footer-wrap .footer-bottom .footer-bottom-menu {
  text-align: right;
}

.footer-wrap .footer-bottom .footer-bottom-menu li {
  display: inline-block;
  margin: 0 13px;
  position: relative;
}

.footer-wrap .footer-bottom .footer-bottom-menu li:before {
  position: absolute;
  top: 5px;
  left: -15px;
  content: "";
  background: #fff;
  width: 2px;
  height: 15px;
  -webkit-transform: skew(-18deg);
          transform: skew(-18deg);
}

.footer-wrap .footer-bottom .footer-bottom-menu li:first-child:before {
  display: none;
}

.footer-wrap .footer-bottom .footer-bottom-menu li:last-child {
  margin-right: 0;
}

.footer-wrap .footer-bottom .footer-bottom-menu li a {
  color: var(--clr_white);
}

/*-----------------------------
    Newsletter CSS
-----------------------------*/
.newsletter-bg-1 {
  background-image: url(/images/newsletter-bg.png);
}

.newsletter-wrap {
  position: relative;
}

.newsletter-wrap .dot-shape {
  position: absolute;
  top: 80%;
  left: 40px;
  z-index: 1;
  height: 70%;
}

@media only screen and (min-width: 1200px) {
  .newsletter-wrap.style1, .newsletter-wrap.style2, .newsletter-wrap.style3 {
    padding: 100px;
  }
}

.newsletter-wrap.style1 .form-group input {
  border-radius: 20px 0 0;
}

.newsletter-wrap.style1 .form-group button {
  border-radius: 0 0 20px;
}

.newsletter-wrap.style2 .newsletter-form h3 {
  text-align: center;
}

.newsletter-wrap.style2 .newsletter-form h3 span {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 5px;
  display: block;
}

.newsletter-wrap.style2 .newsletter-form h3 br {
  display: none;
}

.newsletter-wrap.style2 .newsletter-form p {
  text-align: center;
  margin: 0 0 15px;
}

.newsletter-wrap.style2 .newsletter-form .form-group input {
  border-radius: 50px;
}

.newsletter-wrap.style2 .newsletter-form .form-group .btn {
  border-radius: 50px;
}

.newsletter-wrap.style3 .newsletter-form p {
  margin-bottom: 15px;
}

.newsletter-wrap.style3 .newsletter-form h3 br {
  display: none;
}

.newsletter-wrap.style3 .newsletter-form span {
  font-size: 15px;
  color: var(--clr_jaffa);
  font-weight: 400;
  position: relative;
  margin-left: 28px;
  margin-bottom: 10px;
  display: block;
}

.newsletter-wrap.style3 .newsletter-form span:before {
  position: absolute;
  top: 10px;
  left: -30px;
  content: "";
  background-color: var(--clr_jaffa);
  width: 25px;
  height: 1px;
}

.newsletter.newsletter-bg-1 {
  border-radius: 15px;
}

.newsletter-form {
  background: var(--clr_white);
  padding: 40px;
}

.newsletter-form h3 {
  font-size: 35px;
  line-height: 1.1;
  font-weight: 700;
}

.newsletter-form p {
  margin: 0 0 30px;
}

.newsletter-form .form-group input {
  width: 100%;
  height: 60px;
  padding: 10px 15px;
  font-size: 15px;
  background: transparent;
  text-align: center;
  border: 1px solid var(--clr_grey);
}

/*---------------------------
    Responsive CSS
--------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1360px) {
  .newsletter-form h3 {
    font-size: 42px;
  }
}

@media only screen and (min-width: 768px) {
  .copyright-text {
    text-align: right;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newsletter-wrap {
    padding: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .newsletter-form h3 {
    font-size: 32px;
  }
  .newsletter-wrap {
    padding: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .social-profile {
    text-align: center;
  }
  .copyright-text {
    text-align: center;
    margin: 10px 0 0;
  }
  .newsletter.container {
    padding: 0;
  }
  .newsletter-wrap {
    padding: 50px 15px;
  }
  .newsletter-wrap.style3 .newsletter-form {
    padding: 20px 30px 30px;
  }
  .newsletter-form {
    padding: 30px 0px 0;
    text-align: center;
    background-color: var(--clr_heath);
  }
  .newsletter-form h3 {
    font-size: 30px;
  }
  .footer-wrap .footer-bottom {
    padding: 20px 0 15px;
  }
}

@media only screen and (max-width: 575px) {
  .footer-widget {
    text-align: left;
  }
}

.curve-shape {
  position: absolute;
  bottom: 10%;
  right: 40px;
  height: 100%;
}
/*# sourceMappingURL=footer.css.map */