/*
  TABLE OF CONTENT

  0. General
  1. Header
  2. Footer
  3. Buttons
  4. Accordion
  5. Phone Block
  6. Forms
  7. Counter
  8. Play video
  9. Info BOX

*/

/*
  0. General
*/
.landing {
  font-family: "Montserrat-regular", sans-serif !important;
}

.landing h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 65px;
}

.landing h1:nth-child(1) {
  width: 696px;
}

.landing h2 {
  margin-bottom: 24px;
}

.landing p > a {
  text-decoration: underline;
}
.landing a:hover {
  color: #EC9A19;
}

.landing .my-8 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.landing .h-100 {
  height: 100%;
}

.landing .h-100 > img {
  height: 100%;
}

.landing .w-100 {
  width: 100%;
}

.landing .w-100 img {
  width: 100%;
}

.landing .h-100 .kt-inside-inner-col {
  height: 100%;
}

.landing .wp-block-group {
  max-width: inherit;
  padding: initial;
}

@media ( max-width: 850px ) {
  .landing h1 {
    font-size: 38px;
    line-height: 45px;
  }

  .landing .order-reverse {
    order: -1;
  }

  .landing .gap-3 .kt-row-column-wrap {
    gap: 12px;
  }

  .landing h1:nth-child(1) {
    width: auto;
  }

  .landing .my-8 {
    margin-top: 16px;
    margin-bottom: 16px;
  }
}

/*
  1. Header
*/

.landing header {
  display: flex;
  height: 110px;
  background-color: white;
}

.landing header .is-flex {
  justify-content: center;
}

.landing header .is-flex .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing header .is-flex .landing-logo-link {
  width: 130px;
  height: 40px;
}

.landing header .is-flex .logo img {
  width: 130px;
  height: 40px;
}

/*
  2. Footer
*/
.footer-spacing {
  height: 86px;
}

.landing .sub-footer {
  display: none;
}

/*
  3. Buttons
*/
.landing .wp-block-button__link {
  display: inline-block;
  padding: .9em 2.5em;
  color: #fff;
  font-size: calc(1.4rem * 1);
  font-family: "Montserrat-regular", sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  border: solid 1px #EC9A19;
  background-color: #EC9A19;
  border-radius: 40px;
  transition: all .5s;
}

.landing .wp-block-buttons {
  width: initial !important;
  margin: initial !important;
}

.landing .wp-block-button__link:hover {
  text-decoration: none;
  color: #EC9A19;
  background-color: #fff;
}

.landing .wp-block-button__link:visited {
  color: #fff;
}
.landing .wp-block-button__link:visited:hover {
  color: #EC9A19;
}

.landing .wp-block-button__link.has-white-background-color:hover {
  border: solid 1px #fff !important;
  background-color: #EC9A19 !important;
  color: #fff !important;
}

.landing .wp-block-button__link.has-white-background-color:visited {
  color: #EC9A19 !important;
}

.landing .wp-block-button__link.has-white-background-color:visited:hover {
  color: #fff !important;
}

.landing .gform_button {
  display: inline-block;
  padding: .9em 2.5em !important;
  color: #fff !important;
  font-size: calc(.9rem* 1) !important;
  font-family: "Montserrat-regular", sans-serif !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  border: solid 1px #EC9A19 !important;
  background-color: #EC9A19 !important;
  border-radius: 0 !important;
  transition: all .5s !important;
  text-transform: uppercase !important;
  line-height: 20px !important;
}

.landing .gform_button:hover {
  text-decoration: none !important;
  color: #EC9A19 !important;
  background-color: #fff !important;
}

@media ( max-width: 850px ) {
  .landing .wp-block-button__link, .landing .gform_button {
    padding: .9em 1.5em;
  }
}

/*
  4. Accordion
*/

.kt-blocks-accordion-header{
  background: transparent !important;
}
.kt-blocks-accordion-title{
  color: #584F40 !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  cursor: pointer;
  font-family: "Montserrat-regular", sans-serif;
}
.kt-accordion-pane{
  background: #fff !important;
  box-shadow: 0px 4px 15px 0px rgba(144, 112, 88, 0.15);
  border: none !important;
  padding: 28px 36px !important;
  margin-bottom: 20px;
}
.kt-accordion-panel-inner{
  padding-left: 14px !important;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* color: var(--wp--preset--color--m-600); */
}

.kt-accordion-panel-inner a{
  color: #EC9A19;
  text-decoration: none;
}

.kt-accordion-panel-inner a:hover {
  text-decoration: underline;
}

.kt-blocks-accordion-icon-trigger{
  content: url('../icons/arrow.svg') !important;
  width: 40px;
  height: 40px;
  /* right: 28px !important; */
}
.kt-accordion-panel-active > .kt-blocks-accordion-icon-trigger{
  transform: rotate(90deg);
  /* right: 28px !important; */
}
.kt-blocks-accordion-icon-trigger:hover{
  transform: scale(1.2);
  cursor: pointer;
}

@media ( max-width: 850px ) {
  .kt-accordion-pane{
      padding: 14px 18px !important;
  }
  .kt-blocks-accordion-title{
      font-size: 14px !important;
  }
  .kt-accordion-panel-inner{
      font-size: 12px !important;
      line-height: 24px !important;
  }
  .kt-blocks-accordion-icon-trigger, .kt-accordion-panel-active > .kt-blocks-accordion-icon-trigger{
      right: 0px !important;
  }
}

/*
  5. Phone Block
*/
.min-phone {
  position: relative;
}

.min-phone img {
  position: absolute;
  transform: translateY(-35%);
}

@media ( max-width: 850px ) {
  .min-phone img {
    position: relative;
    transform: translateY(0%);
  }
}

/*
  6. Forms
*/
.landing .gform-body {
  margin-top: 24px !important;
}

.landing .gform_body .gform_fields {
  row-gap: 24px !important;
}

.landing .gfield_label, .gform-field-label {
  text-transform: uppercase !important;
  color: #584F40 !important;
  font-weight: 400 !important;
  font-size: calc(.9rem* .8) !important;
  font-family: "Montserrat-regular", sans-serif !important;
}

.landing .gform_body input, .gform_body select{
  border: 1px solid#8F3C16 !important;
  box-shadow: none !important;
  color: #757575 !important;
  font-size: calc(.9rem* 1) !important;
  font-weight: 400 !important;
  font-family: "Montserrat-regular", sans-serif !important;
}

.landing .gform_body select {
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
}

.landing .gform_body a {
  color: #EC9A19 !important;
}

.landing .gform_body a:hover {
  text-decoration: underline !important;
}

.landing .gfield_required {
  color: #584F40 !important;
}

.landing .gform_required_legend {
  display: none !important;
}

.landing .gfield_description {
  border: none !important;
  padding: 0 !important;
  color: #584F40 !important;
  font-weight: 400 !important;
  font-size: calc(.9rem* .8) !important;
  font-family: "Montserrat-regular", sans-serif !important;
  margin-top: 24px !important;
}

.landing .gform_confirmation_message {
  background-color: rgba(211, 108, 31, 0.2); /* #EC9A19 */
  font-weight: 600;  color: #584F40;
  padding: 4px 8px;
  width: fit-content;
  }

/*
  7. Counter
*/

.kb-count-up-number {
  color: #fff !important;
  font-family: 'Dancing script', sans-serif !important;
  font-weight: bold !important;
  font-size: 48px !important;
}

/*
  8. Play video
*/
.kb-svg-icon-fas_play {
  height: 20% !important;
}

/*
  9. Info BOX
*/
@media ( max-width: 850px ) {
  .landing .kt-blocks-info-box-link-wrap {
    gap: 14px !important;
  }
}