:root {
  --main-font-family: "Montserrat", sans-serif;
  --title-font-family: "Literata", serif;
  --white-color: #fff;
  --black-color: #000000;
  --title-color: #394e39;
  --light-black-color: #0d0d0d;
  --light-gray-color: #f8f8f8;
  --font-color: #54595f;
  --main-color: #93A68A;
  --secondary-color: #ECE4D7;
  --default-shadow: 0px 0px 40px rgb(29 58 83 / 10%);
}

.container {
  max-width: 1320px;
}

.custom-content-container {
  margin: 200px 0 200px;
}

@media screen and (max-width: 992px) {
  .custom-content-container {
    margin: 100px 0 120px;
  }
}

.background-secondary {
  background-color: var(--secondary-color);
}

.text-main-color {
  color: var(--title-color) !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--main-font-family);
  font-size: 16px;
  font-weight: normal;
  color: var(--font-color);
  line-height: 30px;
}

a {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font-family);
  color: var(--title-color);
  margin-top: 0px;
  font-weight: 200;
  line-height: 1.2;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

p {
  color: var(--font-color);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
}

img {
  max-width: 100%;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus, .button:focus {
  text-decoration: none;
  outline: none;
}

a:focus, a:hover {
  color: inherit;
  text-decoration: none;
}

a, button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

*::-moz-selection {
  background: var(--black-color);
  color: var(--white-color);
  text-shadow: none;
}

::-moz-selection {
  background: var(--black-color);
  color: var(--white-color);
  text-shadow: none;
}

::selection {
  background: var(--black-color);
  color: var(--white-color);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--black-color);
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: var(--black-color);
  font-size: 14px;
  opacity: 1;
}

.back-to-top-wrapper, a, button, p, input, select, textarea, li {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.z-index {
  position: relative;
  z-index: 1;
}

.gx-35 {
  --bs-gutter-x: 35px;
}

.fix {
  overflow: hidden;
}

.p-relative {
  position: relative;
}

.class {
  stroke-dasharray: 189px, 191px;
  stroke-dashoffset: 0px;
}

.black-bg {
  background-color: var(--black-color);
}

.theme-bg {
  background-color: var(--main-color);
}

.grey-bg {
  background-color: var(--light-gray-color);
}

/**
 * NAVBAR
 */
.navigation-wrap {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 5px 0 5px;
  background: var(--white-color);
  box-shadow: var(--default-shadow);
}

.navigation-wrap .navbar-light {
  background: transparent;
}

.navigation-wrap .navbar-brand img {
  height: 50px;
  width: auto;
}

.navigation-wrap .navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}

@media screen and (min-width: 991px) {
  .custom-navigation-links li a {
    white-space: nowrap;
  }

  .custom-navigation-links li ~ li {
      margin-left: 30px;
  }
}

.navigation-wrap .navbar-toggler:active, .navigation-wrap .navbar-toggler:focus, .navigation-wrap .navbar-toggler:hover {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.navigation-wrap .navbar-light .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 1px solid var(--black-color);
  transition: all 300ms linear;
}

.navigation-wrap .navbar-light .navbar-toggler-icon:after, .navigation-wrap .navbar-light .navbar-toggler-icon:before {
  width: 24px;
  position: absolute;
  height: 1px;
  background-color: var(--black-color);
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}

.navigation-wrap .navbar-light .navbar-toggler-icon:after {
  top: 8px;
}

.navigation-wrap .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}

.navigation-wrap .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}

.navigation-wrap .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}

.navigation-wrap .nav-item {
  position: relative;
}

.navigation-wrap .nav-item .nav-link {
  text-transform: uppercase;
  transition: 0.2s;
}

.navigation-wrap .nav-item .nav-link:hover {
  color: var(--main-color);
}

.navbar-toggler {
  padding: 0 !important;
}

@media (max-width: 767px) {
  .navbar-collapse {
    margin: 35px 0 35px 0;
  }

  .navigation-wrap .nav-item:after {
    display: none;
  }

  .navigation-wrap .nav-item .nav-link {
    padding: 10px 0 10px 0;
  }

  .navigation-wrap .nav-item a {
    transition: 0.2s;
  }

  .navigation-wrap .nav-item:hover a {
    margin-left: 8px;
  }

  .navigation-wrap .dropdown-toggle::after {
    position: absolute;
    display: block;
    top: 10px;
    left: -23px;
    width: 1px;
    height: 11px;
    content: "";
    border: none;
    background-color: var(--black-color);
    vertical-align: 0;
    transition: all 200ms linear;
  }
}

/**
 * BACK TO TOP
 */
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}
.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--main-color);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--white-color);
  border-radius: 50%;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/**
 * MAINTENANCE
 */
.maintenance-container {
  padding: 220px 0 200px 0;
  border-bottom: 1px solid var(--secondary-color);
}

/**
 * BUTTONS
 */
.tp-btn-black {
  height: 50px;
  line-height: 50px;
  padding: 0 38px;
  display: inline-block;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  color: var(--white-color);
  background-color: var(--black-color);
  position: relative;
  z-index: 1;
  text-align: center;
}

.tp-btn-black span svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  color: var(--main-color);
  display: inline-block;
}

.tp-btn-black.height {
  height: 60px;
  line-height: 60px;
}

.tp-btn-black.theme-bg {
  background-color: var(--main-color);
}

.tp-btn-black.theme-bg svg {
  color: var(--black-color);
}

.tp-btn-black.theme-bg:hover {
  color: var(--white-color);
  background-color: var(--black-color);
}

.tp-btn-black:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.tp-btn-border-lg {
  height: 50px;
  line-height: 48px;
  padding: 0 38px;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  color: var(--black-color);
  text-align: center;
  border: 1px solid var(--black-color);
  position: relative;
  z-index: 1;
}

.tp-btn-border-lg span svg {
  position: absolute;
  top: 51%;
  transform: translateY(-50%);
  right: -25px;
  color: var(--main-color);
  display: inline-block;
  z-index: 1;
}

.tp-btn-border-lg.white-border {
  color: var(--white-color);
  border: 1px solid var(--white-color);
}

.tp-btn-border-lg.white-border:hover {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

.tp-btn-border-lg.grey-border {
  border: 1px solid var(--main-color);
}

.tp-btn-border-lg.grey-border:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.tp-btn-border-lg:hover {
  color: var(--white-color);
  background-color: var(--black-color);
}

.tp-btn-border {
  height: 50px;
  line-height: 50px;
  padding: 0 30px;
  display: inline-block;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
  color: var(--black-color);
  text-align: center;
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 2;
}
.tp-btn-border span svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px;
  color: var(--main-color);
  display: inline-block;
}
.tp-btn-border.height {
  height: 65px;
  line-height: 65px;
  border: 2px solid var(--main-color);
  color: var(--white-color);
}
.tp-btn-border.height:hover {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 2px solid var(--main-color);
}
.tp-btn-border:hover {
  color: var(--white-color);
  background-color: var(--main-color);
  border: 1px solid var(--main-color);
}

/**
 * BREADCRUMB
 */
.breadcrumb__pt {
  padding-top: 55px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .breadcrumb__pt {
    padding-top: 56px;
  }
}
.breadcrumb__height {
  height: 336px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .breadcrumb__pt {
    padding-top: 45px;
  }

  .breadcrumb__height {
    height: 300px;
  }
}

.breadcrumb__title {
  font-weight: 700;
  font-size: 68px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .breadcrumb__title {
    font-size: 62px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb__title {
    font-size: 53px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb__title {
    font-size: 52px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb__title {
    font-size: 45px;
  }
}
@media (max-width: 767px) {
  .breadcrumb__title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb__title {
    margin-bottom: 0;
  }
}

.breadcrumb__list {
  display: inline-block;
}

.breadcrumb__list span {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
}

.breadcrumb__list span a {
  color: var(--white-color);
  transition: 0.2s;
}

.breadcrumb__list span a:hover {
  color: var(--main-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .breadcrumb__list span {
    font-size: 17px;
  }
}

.breadcrumb__list span.dvdr i {
  font-size: 15px;
  display: inline-block;
  margin: 0 13px;
}

.breadcrumb__list span a {
  color: var(--white-color);
}

@media (max-width: 767px) {
  .breadcrumb__content {
    flex-wrap: wrap;
  }
}

/**
 * ACCORDION
 */
.tp-custom-accordion .accordion-items {
  margin-bottom: 20px;
}
.tp-custom-accordion .accordion-buttons {
  position: relative;
  width: 100%;
  font-weight: 700;
  font-size: 20px;
  text-align: left;
  padding: 25px 30px;
  padding-right: 55px;
  transition: 0.3s;
  font-family: var(--title-font-family);
  color: var(--black-color);
  background-color: #f8f8f8;
  display: flex;
  align-items: start;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 15px;
    padding-left: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons {
    font-size: 17px;
  }
}
.tp-custom-accordion .accordion-buttons::after {
  position: absolute;
  content: "\f068";
  font-family: "Font Awesome 5 Pro";
  top: 21px;
  right: 20px;
  font-weight: 700;
  font-size: 12px;
  opacity: 1;
  transition: 0.3s;
  height: 28px;
  width: 28px;
  line-height: 27px;
  border-radius: 50%;
  text-align: center;
  color: var(--main-color);
  border: 1px solid var(--main-color);
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-buttons::after {
    right: 20px;
  }
}
.tp-custom-accordion .accordion-buttons span {
  margin-right: 5px;
  display: inline-block;
}
.tp-custom-accordion .accordion-buttons.collapsed::after {
  content: "\f067";
}
.tp-custom-accordion .collapsed {
  position: relative;
  z-index: 99;
}
.tp-custom-accordion .accordion-body {
  padding-top: 17px;
  padding-bottom: 2px;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-custom-accordion .accordion-body {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .tp-custom-accordion .accordion-body {
    font-size: 13px;
    padding-right: 0;
    line-height: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-custom-accordion .accordion-body {
    font-size: 14px;
  }
}

/**
 * TITLE
 */
.tp-section-subtitle {
  color: var(--main-color);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  display: inline-block;
  text-transform: capitalize;
  padding-bottom: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-subtitle {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .tp-section-subtitle {
    font-size: 14px;
  }
}

.tp-section-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-section-title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-section-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-section-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-section-title {
    font-size: 38px;
  }
  .tp-section-title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .tp-section-title {
    font-size: 29px;
  }
  .tp-section-title br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-section-title {
    font-size: 34px;
  }
  .tp-section-title br {
    display: none;
  }
}

/**
 * BLOG
 */

/**
 * FOOTER
 */
.tp-footer-logo {
  padding-bottom: 15px;
}

.tp-footer-list ul li {
  list-style-type: none;
}

.tp-footer-list ul li:not(:last-child) {
  margin-bottom: 10px;
}

.tp-footer-list ul li a {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  position: relative;
  margin-left: 20px;
  transition: 0.3s;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-list ul li a {
    font-size: 14px;
  }
}

.tp-footer-list ul li a::after {
  position: absolute;
  content: "";
  top: 50%;
  left: -20px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color: rgba(84, 89, 95, 0.2);
}

.tp-footer-list ul li a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -20px;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  transform: translateY(-50%) scale(0);
  background-color: var(--black-color);
  transition: 0.3s;
}

.tp-footer-list ul li a:hover::before {
  transform: translateY(-50%) scale(1);
}

.tp-footer-title {
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  padding-top: 10px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-footer-title {
    font-size: 21px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-title {
    font-size: 20px;
  }
}
.tp-footer-contact ul li {
  list-style-type: none;
  position: relative;
  padding-left: 23px;
}

.tp-footer-contact ul li:not(:last-child) {
  margin-bottom: 12px;
}

.tp-footer-contact ul li span {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--main-color);
}

.tp-footer-contact ul li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.5s linear;
  background-image: linear-gradient(#a6a182, #a6a182), linear-gradient(#a6a182, #a6a182);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-footer-contact ul li a {
    font-size: 14px;
  }
}

.tp-footer-contact ul li a:hover {
  background-size: 0% 1px, 100% 1px;
}

.footer-links-section {
  display: flex;
  justify-content: end;
}

@media screen and (max-width: 992px) {
  .footer-links-section {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .footer-links-section, .footer-simple-contact {
    display: block !important;
    text-align: center !important;
  }

  .footer-simple-contact ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-simple-contact ul li {
    display: flex;
    align-items: center;
  }

  .footer-copyright-row {
    flex-direction: column-reverse;
  }

  .footer-copyright-row .tp-copyright-left {
    margin-top: 20px;
  }
}

.tp-copyright-border {
  border-top: 1px solid rgba(84, 89, 95, 0.2);
}

.tp-copyright-height {
  padding: 17px 0;
}

.tp-copyright-left p {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  margin-bottom: 0;
}

.tp-copyright-left a, .tp-copyright-right a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  transition: 0.3s;
  position: relative;
}

.tp-copyright-left a:after, .tp-copyright-right a:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: auto;
  height: 1px;
  width: 0;
  background-color: var(--main-color);
  transition: 0.7s;
  display: inline-block;
}

.tp-copyright-left a:hover:after, .tp-copyright-right a:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}

.tp-copyright-right a:not(:last-child) {
  margin-right: 20px;
}

/**
 * SLIDER
 */
.tp-slider-title {
  font-size: 68px;
  font-weight: 200;
  line-height: 1.1;
  color: var(--title-color);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-title {
    font-size: 64px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-title {
    font-size: 53px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-title {
    font-size: 54px;
  }
  .tp-slider-title br {
    display: none;
  }
}

@media (max-width: 767px) {
  .tp-slider-title {
    font-size: 34px;
  }
  .tp-slider-title br {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-title {
    font-size: 48px;
  }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-slider-title {
    font-size: 40px;
  }
}

.tp-slider-title span {
  color: var(--main-color);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-2-content {
    margin-bottom: 80px;
  }
}

.tp-slider-2-content .tp-slider-title {
  line-height: 1.1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 58px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 44px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 51px;
  }
}

@media (max-width: 767px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 45px;
  }
}

@media only screen and (min-width: 440px) and (max-width: 575px) {
  .tp-slider-2-content .tp-slider-title {
    font-size: 34px;
  }
}

.tp-slider-2-content p {
  margin-right: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-content p {
    margin-right: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-content p {
    margin-right: 40px;
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-2-content p {
    margin-right: 0px;
    font-size: 14px;
  }
}

.tp-slider-2-height {
  padding-top: 240px;
  padding-bottom: 145px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-slider-2-height {
    padding-top: 190px;
    padding-bottom: 170px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-height {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-height {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .tp-slider-2-height {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.tp-slider-2-bg {
  position: relative;
}

.tp-slider-2-bg::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  height: 100%;
  width: 30%;
  background-color: var(--main-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-bg::after {
    width: 32%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-slider-2-bg::after {
    display: none;
  }
}
.tp-slider-2-active {
  margin-right: -545px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-slider-2-active {
    margin-right: -480px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-slider-2-active {
    margin-right: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-active {
    margin-right: -370px;
  }
}

@media (max-width: 767px) {
  .tp-slider-2-active {
    margin-right: -205px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-active {
    margin-right: -405px;
  }
}

.tp-slider-2-wrapper {
  position: relative;
}

.tp-slider-2-wrapper .swiper-slide img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  min-height: 500px;
  border: 2px solid #5d7f5d;
}

.tp-slider-2-wrapper .swiper-slide {
  height: auto;
}

.tp-slider-2-wrapper .swiper-content {
  height: 100%;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-slider-2-wrapper {
    margin-left: 30px;
  }
}

@media (max-width: 767px) {
  .tp-slider-2-wrapper {
    margin-left: 15px;
    padding-left: 7px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-slider-2-wrapper {
    margin-left: 25px;
    padding-left: 0px;
  }
}

.tp-slider-2-wrapper::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  transform: scale(1.08);
  border: 4px solid var(--main-color);
}

/**
 * PROJECT
 */
.tp-project-filter button {
  color: #24231d;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  height: 60px;
  line-height: 60px;
  padding: 0 30px;
  margin: 0 12px;
  border: 1px solid var(--main-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-filter button {
    height: 50px;
    line-height: 50px;
    padding: 0 24px;
    margin: 0 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-filter button {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    margin: 0 5px;
  }
}

@media (max-width: 767px) {
  .tp-project-filter button {
    height: 45px;
    line-height: 45px;
    padding: 0 20px;
    margin: 0 5px;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-project-filter button {
    padding: 0 35px;
  }
}

.tp-project-filter button:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}

.tp-project-filter button.active {
  color: var(--white-color);
  background-color: var(--main-color);
}

.tp-project-3-item {
  overflow: hidden;
  border: 1px solid var(--main-color);
}

.tp-project-3-item:hover .tp-project-3-thumb::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.tp-project-3-item:hover .tp-project-3-thumb img {
  transform: scale(1.1);
}

.tp-project-3-thumb {
  overflow: hidden;
}

.tp-project-3-thumb img {
  width: 100%;
  -webkit-transition: all 600ms linear;
  transition: all 600ms linear;
}

.tp-project-3-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}

.tp-project-3-title {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 600;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-3-title {
    font-size: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-project-3-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .tp-project-3-title {
    font-size: 18px;
  }
}

.tp-project-3-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  font-weight: 300;
}

.tp-project-3-title a:hover {
  background-size: 0% 1px, 100% 1px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-3-title-box {
    margin-bottom: 30px;
  }
}

.tp-project-3-content {
  position: absolute;
  bottom: 20px;
  left: 0px;
  right: 0;
  margin: 0 20px;
  padding: 25px 30px;
  background-color: var(--black-color);
  margin-top: 0px;
  width: max-content;
  max-width: 80%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-3-content {
    padding: 25px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-3-content {
    padding: 25px 20px;
  }
}

.tp-project-3-content span {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding-left: 50px;
  position: relative;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-project-3-content span {
    font-size: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-3-content span {
    font-size: 14px;
  }
}

.tp-project-3-content span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 18px;
  height: 1px;
  width: 40px;
  margin-right: 12px;
  border-radius: 5px;
  transform: translateY(-4px);
  background-color: var(--main-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-3-top-text p {
    font-size: 14px;
  }
}

.tp-project-4-item {
  margin-bottom: 35px;
  overflow: hidden;
  line-height: 0;
}

.tp-project-4-item.active .tp-project-4-content {
  transform: perspective(400px) rotateX(0deg);
}

.tp-project-4-item.active .tp-project-4-thumb::after {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.tp-project-4-item.active .tp-project-4-thumb img {
  transform: scale(1.1);
}

.tp-project-4-thumb {
  overflow: hidden;
}

.tp-project-4-thumb img {
  width: 100%;
  -webkit-transition: all 600ms linear;
  transition: all 600ms linear;
}

.tp-project-4-thumb::after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  pointer-events: none;
}

.tp-project-4-title {
  color: var(--white-color);
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 4px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-4-title {
    font-size: 22px;
  }
}

.tp-project-4-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
}

.tp-project-4-title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.tp-project-4-content {
  position: absolute;
  bottom: 0px;
  left: 0px;
  padding: 40px;
  margin: 25px;
  padding-bottom: 45px;
  display: inline-block;
  background-color: var(--black-color);
  transform: perspective(400px) rotateX(-90deg);
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-4-content {
    padding: 25px;
    margin: 20px;
  }
}

.tp-project-4-content p {
  max-width: 290px;
  padding-bottom: 2px;
  color: var(--white-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-project-4-content p {
    font-size: 14px;
  }
}

/**
 * SERVICE
 */
.tp-service-2-title {
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-2-title {
    font-size: 21px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-2-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-2-title {
    font-size: 22px;
  }
}

.tp-service-2-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  font-weight: 200;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}

.tp-service-2-title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.tp-service-2-text p {
  margin-bottom: 11px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-service-2-text p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-2-text p {
    font-size: 13px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-service-2-text p {
    font-size: 14px;
  }
}

.tp-service-2-text a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  color: var(--black-color);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.tp-service-2-text a:hover {
  color: var(--main-color);
}

.tp-service-style-3 .tp-service-2-item {
  padding: 40px 35px;
  background-color: #f8f8f8;
}

@media (max-width: 767px) {
  .tp-service-style-3 .tp-service-2-item {
    padding: 40px 25px;
  }
}

@media (max-width: 767px) {
  .tp-service-style-3 .tp-service-2-text p {
    font-size: 13px;
  }
}

.tp-service-style-3 .tp-service-2-title {
  line-height: 1.2;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-style-3 .tp-service-2-title br {
    display: none;
  }
}

.tp-service-style-4 .tp-service-2-item {
  padding: 80px 38px;
  position: relative;
  min-height: 444px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-service-style-4 .tp-service-2-item {
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-service-style-4 .tp-service-2-item {
    padding: 40px 25px;
  }
}

@media (max-width: 767px) {
  .tp-service-style-4 .tp-service-2-item {
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tp-service-style-4 .tp-service-2-item {
    padding: 40px 28px;
  }
}

.tp-service-style-4 .tp-service-2-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  opacity: 0;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  visibility: hidden;
  background-size: cover;
  background-color: var(--black-color);
}

.tp-service-style-4 .tp-service-2-item.active::after {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.tp-service-style-4 .tp-service-2-item.active .tp-service-2-title {
  color: var(--white-color);
}

.tp-service-style-4 .tp-service-2-item.active .tp-service-2-text p {
  color: var(--white-color);
}

.tp-service-style-4 .tp-service-2-item.active .tp-service-2-text a {
  color: var(--white-color);
}

.tp-service-style-4 .tp-service-2-content {
  position: relative;
  z-index: 1;
}

/**
 * ABOUT
 */
.tp-about-bg {
  position: relative;
  z-index: 2;
}

.tp-about-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 13.5%;
  background-color: var(--white-color);
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-about-bg::after {
    height: 7.5%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-bg::after {
    height: 100%;
  }
}

.tp-about-big-text {
  position: absolute;
  content: "";
  top: 0;
  right: 20.6%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tp-about-big-text {
    right: 9.6%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-big-text {
    right: 7.6%;
  }
}

.tp-about-big-text h6 {
  color: var(--main-color);
  font-size: 148px;
  font-style: normal;
  font-weight: 700;
  opacity: 0.05;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-about-big-text h6 {
    font-size: 130px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-about-text p {
    font-size: 14px;
  }
}

.tp-hover-distort-wrapper {
  position: relative;
}

.tp-hover-distort-wrapper .canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.tp-hover-distort-img {
  opacity: 0;
  object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tp-hover-distort-img {
    width: 100%;
  }
}

.tp-hover-distort-img.back {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * PRODUCT
 */

.tp-product-content-box {
  padding: 35px 30px;
}

.tp-product-item {
  background: var(--white-color);
}

.tp-product-item:hover .tp-product-thumb img {
  transform: scale(1.1);
}

.tp-product-title {
  font-size: 20px;
  font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-title {
    font-size: 17px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-title-box {
    margin-bottom: 20px;
  }
}

.tp-product-title a {
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}

.tp-product-title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.tp-product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--black-color);
}

.tp-product-thumb img {
  height: 300px;
  object-fit: cover;
  width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-product-price {
    font-size: 24px;
  }
}

.tp-product-thumb {
  overflow: hidden;
}

.tp-product-thumb img {
  transition: 1.3s all ease;
}

.tp-product-active {
  margin: -30px;
  padding: 30px;
}

.table td {
  padding: 18px;
}

/**
 * CONTACT
 */
.tp-contact-right {
  margin-left: -20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tp-contact-right {
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-right {
    margin-top: 40px;
    margin-left: 0;
  }
}

.tp-contact-text p {
  margin-right: 95px;
  color: var(--white-color);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tp-contact-text p {
    font-size: 14px;
    margin-right: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-text p {
    font-size: 14px;
    margin-right: 0;
  }
}

.tp-contact-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.tp-contact-shape-1 img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.tp-contact-box {
  margin-left: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-box {
    margin-left: 0;
  }
}

.tp-contact-box ul li {
  list-style-type: none;
}

.tp-contact-box ul li:not(:last-child) {
  margin-bottom: 30px;
}

.tp-contact-box p {
  color: var(--black-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-box p {
    font-size: 14px;
  }
}

.tp-contact-icon-2 span {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  background-color: #f8f8f8;
  display: inline-block;
  margin-right: 28px;
  color: var(--black-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-icon-2 span {
    margin-right: 18px;
  }
}

.tp-contact-content h5 {
  font-size: 20px;
  font-weight: 600;
}

.tp-contact-content a {
  color: var(--black-color);
  background-repeat: no-repeat;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  transition: background-size 0.6s linear;
  background-image: linear-gradient(#000000, #000000), linear-gradient(#000000, #000000);
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-contact-content a {
    font-size: 14px;
  }
}

.tp-contact-content a:hover {
  background-size: 0% 1px, 100% 1px;
}

.tp-form-box-style-2 {
  margin-right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .tp-form-box-style-2 {
    margin-right: 0;
  }
}

.table td,
.table th {
  border-top: 1px solid #eaedff;
}

/**
 * ANIMATIONS
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-90 {
  padding-top: 90px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-120 {
  padding-bottom: 120px;
}

/**
 * OVERRIDES
 */
.wp-block-file a {
  height: 50px !important;
  line-height: 50px !important;
  padding: 0 38px !important;
  display: inline-block !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: normal !important;
  text-transform: uppercase !important;
  transition: all 0.3s ease-in-out !important;
  color: var(--white-color) !important;
  background-color: var(--main-color) !important;
  position: relative !important;
  z-index: 1 !important;
  text-align: center !important;
}

.wp-block-file a:hover {
  color: var(--white-color) !important;
  background-color: var(--black-color) !important;
}

/**
 * WPFORMS
 */
.wpforms-submit, .wpforms-submit.custom-form-button {
  background: var(--main-color) !important;
  padding: 16px 40px !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  height: auto !important;
  max-height: inherit !important;
  border-radius: 0 !important;
  text-transform: uppercase !important;
  font-weight: normal !important;
  transition: 0.2s !important;
}

div.wpforms-container-full button[type=submit]:hover,
button[id='wpforms-submit-52']:hover,
.wpforms-submit:hover, .wpforms-submit:active,
.wpforms-submit.custom-form-button:hover, .wpforms-submit.custom-form-button:active {
  background: var(--secondary-color) !important;
  color: var(--white-color) !important;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.wpforms-container input {
  padding: 2px 20px !important;
  border-radius: 0 !important;
}

.wpforms-container input:focus, .wpforms-container textarea:focus {
  border: 1px solid var(--main-color) !important;
  outline: none !important;
  box-shadow: none !important;
}

.wpforms-container input, .wpforms-container textarea {
  border: 1px solid var(--main-color) !important;
  font-size: 13px !important;
  color: var(--black-color) !important;
  background-color: var(--white-color) !important;
}

.wpforms-container .wpforms-field-label {
  color: var(--white-color) !important;
  font-weight: normal !important;
}

.tp-form-box .wpforms-container .wpforms-field-label {
  color: var(--black-color) !important;
  font-weight: normal !important;
}

div.wpforms-container-full .wpforms-field-sublabel, .wp-core-ui div.wpforms-container-full .wpforms-field-sublabel {
  color: var(--white-color) !important;
}
