:root {
  --pb-ff-body: 'Urbanist', sans-serif;
  --pb-ff-heading: 'Urbanist', serif;
  --pb-fw-normal: normal;
  --pb-fw-thin: 100;
  --pb-fw-elight: 200;
  --pb-fw-light: 300;
  --pb-fw-regular: 400;
  --pb-fw-medium: 500;
  --pb-fw-sbold: 600;
  --pb-fw-bold: 700;
  --pb-fw-ebold: 800;
  --pb-fw-black: 900;
  --pb-fs-body: 16px;
  --pb-fs-p: 16px;
  --pb-fs-h1: 48px;
  --pb-fs-h2: 38px;
  --pb-fs-h3: 30px;
  --pb-fs-h4: 18px;
  --pb-fs-h5: 16px;
  --pb-fs-h6: 14px;
  --pb-color-common-white: #ffffff;
  --pb-color-common-black: #000000;
  --pb-color-common-yellow: #FF9D15;
  --pb-color-common-yellow-2: #FF5E14;
  --pb-color-common-purple: #657EFF;
  --pb-color-heading-primary: #221F3F;
  --pb-color-text-body: #6D6C79;
  --pb-color-theme-primary: #FB5252;
  --pb-color-theme-secondary: #57D288;
  --pb-color-gradient-1: linear-gradient(81deg, #E8411D 0%, #FAAC52 100%);
  --pb-color-gradient-2: linear-gradient(80deg, #47479F 0%, #9191D7 100%);
  --pb-color-grey-1: #F4F5F9;
  --pb-color-border-1: rgba(109, 108, 121, 0.2);
  --pb-color-border-2: rgba(15, 27, 36, 0.1);
  --pb-color-border-3: rgba(255, 255, 255, 0.1);
  --pb-color-border-4: rgba(109, 108, 121, 0.5);
  --pb-color-shadow-1: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.footer-section {
  position: relative;
  z-index: 1;
}
.footer-section .footer-bg {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 991px) {
  .footer-wrap {
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 991px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .site-logo {
  margin-bottom: 35px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .site-logo {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .footer-widget .section-heading {
    margin-bottom: 20px;
  }
}
.footer-widget .section-heading .section-title {
  font-size: 48px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .section-heading .section-title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-widget .section-heading .section-title {
    font-size: 30px;
  }
}
.footer-widget .footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
  list-style: none;
}
.footer-widget .footer-links li:not(:last-of-type) {
  margin-right: 20px;
}
.footer-widget .footer-links li a {
  font-size: 15px;
  font-weight: 500;
  color: var(--pb-color-heading-primary);
}
.footer-widget .footer-links li a:hover {
  color: var(--pb-color-theme-primary);
}
.footer-widget .widget-title {
  color: var(--pb-color-heading-primary);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .widget-title {
    margin-bottom: 20px;
  }
}
.footer-widget .desc {
  max-width: 400px;
  width: 100%;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .desc {
    margin-bottom: 20px;
  }
}
.footer-widget .footer-form {
  max-width: 400px;
  width: 100%;
  position: relative;
}
.footer-widget .footer-form .form-control {
  background-color: var(--pb-color-grey-1);
  border: none;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  padding: 15px;
  padding-left: 20px;
  padding-right: 60px;
  border: 1px solid #657EFF;
  border-radius: 30px;
}
.footer-widget .footer-form .submit {
  background-color: #657EFF;
  color: var(--pb-color-common-white);
  height: 55px;
  width: 55px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border-radius: 0 30px 30px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-left: 1px solid transparent;
}
.footer-widget .footer-form .submit i {
  margin-right: 5px;
}
.footer-widget .footer-form .submit:hover {
  background-color: transparent;
  border-left: 1px solid #657EFF;
  color: var(--pb-color-heading-primary);
}
.footer-widget .footer-social {
  display: flex;
  align-items: center;
  list-style: none;
  margin-top: 40px;
}
@media only screen and (max-width: 991px) {
  .footer-widget .footer-social {
    margin-top: 20px;
  }
}
.footer-widget .footer-social li:not(:last-of-type) {
  margin-right: 10px;
}
.footer-widget .footer-social li a {
  color: var(--pb-color-heading-primary);
  height: 35px;
  width: 35px;
  font-size: 14px;
  border: 1px solid rgba(34, 31, 63, 0.2);
  border-radius: 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-widget .footer-social li a:hover {
  background-color: #0866FF;
  color: var(--pb-color-common-white);
  border: 1px solid #0866FF;
}
.footer-widget .footer-social li:nth-child(2):hover a {
  background-color: #229EF2;
  border: 1px solid #229EF2;
}
.footer-widget .footer-social li:nth-child(3):hover a {
  background-color: #0681BA;
  border: 1px solid #0681BA;
}
.footer-widget .footer-social li:nth-child(4):hover a {
  background-color: #EB044F;
  border: 1px solid #EB044F;
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer-widget .footer-list li a {
  font-size: 16px;
  font-weight: 500;
}
.footer-widget .footer-list li a i {
  font-size: 14px;
  color: var(--pb-color-heading-primary);
  margin-right: 10px;
}

.footer-2 .footer-widget .footer-form {
  margin-top: 30px;
}
.footer-2 .footer-widget .footer-form .form-control {
  color: var(--pb-color-heading-primary);
  border: 1px solid #E7E7EB;
  border-radius: 5px;
  font-weight: 600;
}
.footer-2 .footer-widget .footer-form .form-control::-webkit-input-placeholder {
  color: var(--pb-color-heading-primary);
}
.footer-2 .footer-widget .footer-form .form-control:-moz-placeholder {
  color: var(--pb-color-heading-primary);
}
.footer-2 .footer-widget .footer-form .form-control::-moz-placeholder {
  color: var(--pb-color-heading-primary);
}
.footer-2 .footer-widget .footer-form .form-control:-ms-input-placeholder {
  color: var(--pb-color-heading-primary);
}
.footer-2 .footer-widget .footer-form .submit {
  background: var(--pb-color-gradient-2);
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-2 .footer-widget .footer-form .submit:hover {
  color: var(--pb-color-common-white);
  background: var(--pb-color-gradient-1);
  border-left: 1px solid var(--pb-color-border-1);
}
.footer-2 .footer-widget.widget-2 {
  padding-left: 70px;
}
@media only screen and (max-width: 991px) {
  .footer-2 .footer-widget.widget-2 {
    padding-left: 0;
  }
}
.footer-2 .footer-widget .footer-contact {
  list-style: none;
}
.footer-2 .footer-widget .footer-contact li {
  display: flex;
  column-gap: 10px;
  font-size: 16px;
  color: var(--pb-color-text-body);
}
.footer-2 .footer-widget .footer-contact li:not(:last-of-type) {
  margin-bottom: 15px;
}
.footer-2 .footer-widget .footer-contact li i {
  color: var(--pb-color-heading-primary);
  line-height: 1;
  margin-top: 5px;
}
.footer-2 .footer-widget .widget-title.title-2 {
  margin-top: 30px;
  margin-bottom: 20px;
}
.footer-2 .footer-widget .footer-social li a {
  background-color: var(--pb-color-common-white);
  border: 1px solid transparent;
}
.footer-2 .footer-widget .footer-social li a:hover {
  background-color: #0866FF;
  color: var(--pb-color-common-white);
  border: 1px solid #0866FF;
}
.footer-2 .footer-widget .footer-social li:nth-child(2):hover a {
  background-color: #229EF2;
  border: 1px solid #229EF2;
}
.footer-2 .footer-widget .footer-social li:nth-child(3):hover a {
  background-color: #0681BA;
  border: 1px solid #0681BA;
}
.footer-2 .footer-widget .footer-social li:nth-child(4):hover a {
  background-color: #EB044F;
  border: 1px solid #EB044F;
}

.footer-3 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.footer-3 .footer-text {
  position: absolute;
  top: 45%;
  left: -120px;
  transform: translateY(-50%) rotate(-90deg);
}
@media (max-width: 1170px) {
  .footer-3 .footer-text {
    display: none;
  }
}
.footer-3 .footer-text .market {
  font-size: 92px;
  font-weight: 700;
  margin-bottom: 0;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--pb-color-common-purple);
}
.footer-3 .footer-social {
  list-style: none;
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
}
@media (max-width: 1170px) {
  .footer-3 .footer-social {
    display: none;
  }
}
.footer-3 .footer-social li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-3 .footer-social li a {
  color: var(--pb-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--pb-color-common-white);
  border-radius: 5px;
}
.footer-3 .footer-social li a:hover {
  background-color: var(--pb-color-common-white);
  color: var(--pb-color-heading-primary);
}
.footer-3 .footer-content .site-logo {
  margin-bottom: 55px;
}
.footer-3 .footer-content .footer-page-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 10px;
  list-style: none;
}
.footer-3 .footer-content .footer-page-list li:not(:last-of-type) {
  margin-right: 40px;
}
.footer-3 .footer-content .footer-page-list li a {
  color: var(--pb-color-common-white);
  font-size: 15px;
  font-weight: 500;
}
.footer-3 .footer-content .footer-page-list li a:hover {
  color: var(--pb-color-theme-primary);
}
.footer-3 .footer-content .footer-page-list.list-1 {
  margin-bottom: 20px;
}
.footer-3 .footer-content .footer-form {
  position: relative;
  max-width: 765px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 50px;
}
.footer-3 .footer-content .footer-form .form-control {
  background-color: transparent;
  color: var(--pb-color-common-white);
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #6D6C79;
  padding: 20px 170px 20px 30px;
  border-radius: 60px;
  box-shadow: none;
  outline: none;
}
@media only screen and (max-width: 767px) {
  .footer-3 .footer-content .footer-form .form-control {
    padding: 20px 135px 20px 30px;
  }
}
.footer-3 .footer-content .footer-form .form-control::-webkit-input-placeholder {
  color: var(--pb-color-common-white);
  font-size: 16px;
  font-weight: 500;
}
.footer-3 .footer-content .footer-form .form-control:-moz-placeholder {
  color: var(--pb-color-common-white);
  font-size: 16px;
  font-weight: 500;
}
.footer-3 .footer-content .footer-form .form-control::-moz-placeholder {
  color: var(--pb-color-common-white);
  font-size: 16px;
  font-weight: 500;
}
.footer-3 .footer-content .footer-form .form-control:-ms-input-placeholder {
  color: var(--pb-color-common-white);
  font-size: 16px;
  font-weight: 500;
}
.footer-3 .footer-content .footer-form button {
  background-color: var(--pb-color-theme-primary);
  color: var(--pb-color-common-white);
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border-radius: 60px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border: 1px solid transparent;
}
@media only screen and (max-width: 767px) {
  .footer-3 .footer-content .footer-form button {
    font-size: 13px;
    padding: 15px 20px;
  }
}
.footer-3 .footer-content .footer-form button:hover {
  background-color: var(--pb-color-common-white);
  color: var(--pb-color-heading-primary);
}
.footer-3 .copyright-content p {
  color: rgba(255, 255, 255, 0.7);
}
.footer-3 .copyright-content .copy-list li a {
  color: rgba(255, 255, 255, 0.7);
}

.copyright-area {
  padding: 25px 0;
  border-top: 1px solid var(--pb-color-border-1);
}

.copyright-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
@media only screen and (max-width: 991px) {
  .copyright-content {
    justify-content: center;
  }
}
.copyright-content p {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .copyright-content p {
    font-size: 14px;
    text-align: center;
  }
}
.copyright-content .copy-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .copyright-content .copy-list {
    justify-content: center;
  }
}
.copyright-content .copy-list li:not(:last-of-type) {
  margin-right: 30px;
}

/* !END: Theme Footer CSS */
.footer-list .dropdown .dropdown-menu {
  transition: max-height 0.5s ease;
  display: block;
  padding: 0;
  border: none;
  background: transparent;
  overflow: hidden;
  max-height: 0px;
  position: relative !important;
  transform: unset !important;
}
.footer-list .dropdown .dropdown-menu.show {
  max-height: 100px;
}
.footer-list .dropdown .dropdown-menu li {
  display: flex;
  align-items: center;
  margin: 4px 0;
}
.footer-list .dropdown .dropdown-menu li .dropdown-item {
  width: auto;
  padding-right: 0;
}
.footer-list .dropdown .dropdown-menu li a {
  color: var(--pb-color-text-body);
}
.footer-list .dropdown .dropdown-menu li a:hover {
  color: var(--pb-color-theme-primary);
}

/*# sourceMappingURL=footer.css.map */
