:root {
  /** Font default */
  --font-family-default: "Poppins", sans-serif;
  --font-family-title: "Shippori Mincho", serif;
  --font-size-default: 14px;
  /*--font-size-title: 70px;*/
  --font-size-title: 4.375vw;
  --font-color-default: #454545;
  --font-color-title: #000000;
  /** Use for input, button, and any other element */
  --primary: #000000;
  --secondary: #87764e;
  --accent: #ab976c;
  --bg-color: #af9358;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --default-transition: all 0.3s ease-in-out;
}

/* Global */
body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  background: #FFFFFF;
  color: var(--font-color-default);
  margin: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

a, a:hover, a:link, a:active, a:focus {
  color: var(--font-color-default);
  outline: none;
  text-decoration: none;
}

.slick-slide, .slick-slide *, .slick-slide a {outline: none;}

.site_easing, #header_wrap a, .bm_info a, .burger_navigation li a, #footer_wrap a {
  -webkit-transition: var(--default-transition);
  -moz-transition: var(--default-transition);
  -ms-transition: var(--default-transition);
  -o-transition: var(--default-transition);
  transition: var(--default-transition);
}

#main-wrapper {
  position: relative;
  overflow: hidden;
}

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

.parallax_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 0;
}
  .parallax_bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
  }
    .safari-true .parallax_bg canvas,
    .mobile .parallax_bg canvas {
      background-attachment: scroll;
    }

.non_parallax_bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 0;
}
  .non_parallax_bg canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

.site_inner_container {
  position: relative;
  z-index: 3;
}
.canvas_img {
  position: relative;
}
  .canvas_img canvas {
    width: 100%;
    height: auto;
    display: block;
  }
  .canvas_img img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
  }
.filter_white {
  filter: brightness(0) invert(1);
}

/* Global Site Title START */
.global_site_title {

}
  .global_site_title h2,
  #content .global_site_title h2 {
    margin: 0;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
  }
    .global_site_title h2 em,
    #content .global_site_title h2 em {
      display: block;
      margin-bottom: 10px;
      color: var(--secondary);
      font-size: 18px;
      font-style: normal;
      letter-spacing: 0.6em;
    }
    .global_site_title h2 span,
    #content .global_site_title h2 span {
      display: block;
      color: var(--primary);
      font-size: var(--font-size-title);
      font-weight: 400;
      font-family: var(--font-family-title);
    }
    /* White Title */
    .global_site_title.white_text h2 span,
    #content .global_site_title.white_text h2 span {
      color: #ffffff;
    }

    /* Small Title */
    .global_site_title.small_title h2 span,
    #content .global_site_title.small_title h2 span {
      font-size: 40px;
    }

/* Global Site Title END */


/* Global Site Button START */
.global_site_btn {
  display: inline-block;
}
  .global_site_btn a,
  .global_site_btn > div {
    width: auto;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 18px;
    color: var(--font-color-default);
    font-size: 14px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
  }
    .global_site_btn a:hover,
    .global_site_btn > div:hover {
      text-shadow: 0 0 .01px var(--font-color-default), 0 0 .01px var(--font-color-default), 0 0 .01px var(--font-color-default);
    }
    .global_site_btn a::after,
    .global_site_btn > div::after {
      width: 42px;
      height: 42px;
      content: '';
      position: absolute;
      z-index: 1;
      top: calc(50% - 21px);
      right: 0;
      border-radius: 50%;
      background-color: var(--secondary);
      transition: var(--default-transition);
      opacity: 0;
    }
      .global_site_btn a:hover::after,
      .global_site_btn > div:hover::after {
        opacity: 1;
      }
    .global_site_btn a span,
    .global_site_btn > div span.site_btn {
      position: relative;
      z-index: 2;
      pointer-events: none;
    }
      .global_site_btn a span::after,
      .global_site_btn > div span.site_btn::after {
        width: 40px;
        height: 13px;
        content: '';
        display: inline-block;
        vertical-align: middle;
        margin-left: 8px;
        background-image: url(../../assets/images/icon-arrow.png);
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: center right;
      }
      .global_site_btn > div input[type="submit"] {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        font-size: 0;
        outline: none;
        border: none;
        background: transparent;
      }
  /* White Button */
  .global_site_btn.white_btn a,
  .global_site_btn.white_btn > div {
    color: #ffffff;
  }
    .global_site_btn.white_btn a:hover,
    .global_site_btn.white_btn > div:hover {
      text-shadow: 0 0 .01px #ffffff, 0 0 .01px #ffffff, 0 0 .01px #ffffff;
    }
      .global_site_btn.white_btn a span::after,
      .global_site_btn.white_btn > div span.site_btn::after {
        filter: brightness(0) invert(1);
      }
/* Global Site Button END */


/* Header START */
#header_wrap {
  width: 100%;
  position: fixed;
  z-index: 1011;
  top: 0;
  left: 0;
  padding: 42px 0;
  font-size: 0;
  color: #ffffff;
  text-align: center;
  transition: var(--default-transition);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+100;Neutral+Density */
  background: linear-gradient(to bottom,  rgba(0,0,0,0.3) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
  .header_inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
  }
    .header_logo {
      display: none;
    }
      .header_logo img {
        width: auto;
        height: 58px;
      }
    .header_contact_info {
      padding-left: 51px;
      padding-right: 85px;
      padding-left: 3.1875%;
      padding-right: 5.3125%;
      position: relative;
    }
      .header_contact_info::before {
        width: 1px;
        height: 31px;
        content: '';
        position: absolute;
        top: calc(50% - 15.5px);
        left: 0;
        background-color: #ffffff;
        opacity: 0.3;
      }
      .headinfo {
        margin-bottom: 6px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
      }
        .headinfo:last-child {
          margin-bottom: 0;
        }
        .headinfo i {
          font-size: 15px;
          font-size: 0.938vw;
          margin-right: 14px;
        }
        .headinfo span {
          font-size: 18px;
          font-size: 1.125vw;
          margin-right: 14px;
          letter-spacing: 0.1em;
        }
        .headinfo a {
          color: inherit;
        }
          .headinfo a:hover {
            opacity: 0.6;
          }
    .bm_button {
      font-size: 0;
    }
      .bm_button_icon {
        width: 52px;
        height: 21px;
        cursor: pointer;
        transition: var(--default-transition);
      }
        .bm_button_icon:hover {
          opacity: 0.6;
        }
        .bm_button_icon span {
          width: 100%;
          height: 1px;
          display: block;
          background-color: #ffffff;
        }
          .bm_button_icon span:nth-child(2) {
            margin: 9px 0;
          }
/* Header END */


/* Fixed Header START */
#header_wrap.fixedhead {
  padding: 12px 0;
  background-color: var(--primary);
}
  #header_wrap.fixedhead .header_logo {
    display: block;
  }
  #header_wrap.fixedhead .header_contact_info {
    display: none;
  }
  #header_wrap.fixedhead .navigation {
    padding-left: 3.5625%;
  }
  #header_wrap.fixedhead #nav > li:hover > a {
    color: var(--secondary);
    opacity: 1;
  }
  #header_wrap.fixedhead #nav > li > .sub-menu {
    padding-top: 31px;
  }
  #header_wrap.fixedhead .bm_button_icon:hover {
    opacity: 1;
  }
  #header_wrap.fixedhead .bm_button_icon:hover span {
    background-color: var(--secondary);
  }


/* Navigation START */
.navigation {
  padding-right: 57px;
  padding-right: 3.5625%;
}
  #nav li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 15px;
    position: relative;
  }
    .home #nav li.hide_home,
    #header_wrap.fixedhead #nav li.hide_home {
      display: none;
    }
    #nav li a {
      display: block;
      padding: 0;
      color: #ffffff;
      font-size: 16px;
      font-size: 1vw;
      font-weight: 500;
      line-height: 20px;
      letter-spacing: 0.095em;
      text-transform: uppercase;
      position: relative;
    }
      #nav > li:hover > a {
/*        opacity: 0.6;*/
        color: var(--secondary);
      }
    #nav .sub-menu {
      list-style: none outside none;
      margin: 0;
      display: none;
      padding: 11px 0 0;
      position: absolute;
      z-index: 100;
      width: 100%;
      min-width: 204px;
      text-align: center;
    }
      #nav > li > .sub-menu {
        left: -150%;
        right: -150%;
        margin: 0 auto;
      }
      #nav .sub-menu li {
        width: 100%;
        padding: 0;
        position: relative;
      }
        #nav .sub-menu a {
          color: #000000;
          font-size: 15px;
          display: block;
          padding: 10px 5px;
          background-color: #ffffff;
          letter-spacing: 0.05em;
          position: relative;
        }
          #nav .sub-menu a:hover {
            color: #ffffff;
            background-color: var(--secondary);
          }
        #nav .sub-menu .sub-menu {
          margin-left: 100%;
          top: 0;
          padding: 0 !important;
        }
/* Navigation END */


/* Burger Menu START */
body.show_menu {
  overflow: hidden;
}
.burger_menu_content_wrap {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1031;
  top: 0;
  right: -10%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  text-align: right;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.burger_menu_content_wrap.show_menu {
  right: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.bm_slide_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
  .burger_menu_content_wrap.show_menu .bm_slide_overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
    .burger_menu_content {
      width: 90%;
      max-width: 834px;
      height: 100%;
      display: inline-block;
      vertical-align: top;
      position: relative;
      z-index: 2;
      font-size: 0;
      padding: 29px 70px 70px;
      color: var(--font-color-title);
      text-align: left;
      background-color: #ffffff;
      background-image: url(../../assets/images/bg-burger-menu.jpg);
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow-y: scroll;
      -ms-overflow-style: none;  /* IE and Edge */
      scrollbar-width: none;  /* Firefox */
    }
      .burger_menu_content::-webkit-scrollbar {
          display: none;
      }
        .bm_close_btn {
          position: absolute;
          z-index: 5;
          top: 45px;
          right: 45px;
          color: var(--font-color-title);
          text-align: center;
          cursor: pointer;
          transition: var(--default-transition);
        }
          .bm_close_btn:hover {
            color: var(--secondary);
          }
          .bm_close_btn span {
            display: inline-block;
            vertical-align: middle;
            margin-right: 20px;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
          }
          .bm_close_btn i {
            display: inline-block;
            vertical-align: middle;
            font-size: 33px;
          }

        .bm_logo {
          font-size: 0;
        }
          .bm_logo img {
            max-width: 100%;
            height: auto;
          }
        .bm_content {
          position: relative;
          z-index: 2;
        }
          .bm_info_wrap {
            margin-bottom: 20px;
          }
            .bm_info_wrap:last-child {
              margin-bottom: 0;
            }
            .bm_info_wrap strong {
              display: block;
              margin-bottom: 15px;
              color: var(--primary);
              font-size: 13px;
              font-weight: 700;
              letter-spacing: 0.3em;
              text-transform: uppercase;
            }
            .bm_info {
              width: 100%;
              display: inline-block;
              vertical-align: middle;
              margin-bottom: 10px;
            }
              .bm_info a:hover {
                color: var(--secondary);
              }
            .bm_info i {
              margin-right: 12px;
              color: var(--secondary);
              font-size: 8px;
              display: inline-block;
              vertical-align: middle;
              text-align: center;
            }
              .bm_info i.ai-font-phone {
                font-size: 12px;
              }
            .bm_info span {
              color: var(--font-color-default);
              font-size: 13px;
              letter-spacing: 0.05em;
              display: inline-block;
              vertical-align: middle;
            }
          .burger_navigation {
            position: relative;
            z-index: 2;
            margin-top: 55px;
          }
            .burger_navigation {
              font-size: 0;
            }
              .burger_navigation .menu {
                width: 40%;
                display: inline-block;
                vertical-align: top;
              }
              .burger_navigation .menu:last-child {
                width: 60%;
              }
               .burger_navigation .menu > li {
                  position: relative;
                  padding: 0 0 35px;
                }
                  .burger_navigation .menu > li.menu-item-has-children {
                    padding-bottom: 10px;
                  }
                  .burger_navigation .menu:last-child > li.margin_top {
                    margin-top: 82px;
                  }
                .burger_navigation .menu > li > a {
                  display: inline-block;
                  color: var(--font-color-title);
                  padding: 0;
                  font-size: 24px;
                  font-family: var(--font-family-title);
                  letter-spacing: 0.05em;
                  text-transform: uppercase;
                }
                .burger_navigation .menu > li > a {
                  
                }
                  .burger_navigation .menu li:hover > a {
                    color: var(--secondary);
                  }
                  .burger_navigation .menu .sub-menu {
                    display: block;
                    padding: 20px 0 0 20px;
                  }
                  .burger_navigation .menu .sub-menu li {
                    display: block;
                    padding: 0 0 10px;
                    position: relative;
                  }
                  .burger_navigation .menu .sub-menu li a {
                    padding: 0;
                    color: var(--font-color-title);
                    font-size: 14px;
                    font-weight: 600;
                    letter-spacing: 0.025em;
                    text-transform: uppercase;
                  }
                    .burger_navigation .menu .sub-menu li:hover a {
                      color: var(--secondary);
                    }
/* Burger Menu END */


/* Burger Menu Floating SMI START */
.bm_floating_smis {
  width: 33px;
  position: absolute;
  z-index: 100;
  top: 40%;
  right: 43px;
  right: 5.15%;
  transform: translate(0,-50%);
  font-size: 0;
  text-align: center;
}
  .bm_floating_smis ul {
    position: relative;
  }
    .bm_floating_smis ul::after {
      width: 1px;
      height: 49px;
      content: '';
      display: inline-block;
      vertical-align: top;
      margin: 1px 0 15px;
      background-color: #9e9e9e;
    }
    .bm_floating_smis li {
      display: block;
    }
      .bm_floating_smis li a {
        width: 33px;
        height: 33px;
        display: inline-block;
        margin: 7.5px 0;
        color: var(--primary);
        border: 1px solid var(--primary);
        border-radius: 50%;
        transition: var(--default-transition);
      }
        .bm_floating_smis li a:hover {
          color: #ffffff;
          background-color: var(--secondary);
          border-color: var(--secondary);
        }
        .bm_floating_smis li a span {
          display: block;
          font-size: 18px;
          line-height: 33px;
        }
  .follow_text {
    min-width: 110px;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transform: rotate(-90deg);
    position: absolute;
    bottom: -55px;
    right: -38px;
  }
/* Burger Menu Floating SMI END */



/* FOOTER START */

  /* Footer Get In Touch START */
  #footer_git_wrap {
    margin-top: 100px;
    padding-bottom: 55px;
  }
    .footer_git_bg {
      width: 78.375%;
      height: calc(100% - 11px);
      top: auto;
      bottom: 0;
    }
      .footer_git_bg::before {
        width: 100%;
        height: 100%;
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        background: rgb(255,255,255);
        background: radial-gradient(circle, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
        opacity: 0.5;
      }
      .footer_git_bg canvas {
        opacity: 0.15;
        filter: grayscale(1);
      }
    .footer_git {
      padding-left: 9.1875%;
      padding-right: 9.1875%;
    }
      .contact_form_wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
        .contact_form_title {
          width: 49.311%;
          margin-bottom: 30px;
          padding-right: 6.125%;
        }
          .contact_form_text {
            margin-top: 45px;
            color: var(--font-color-default);
            font-size: 15px;
            line-height: 2;
            letter-spacing: 0.05em;
          }
        .contact_form {
          width: 50.689%;
          font-size: 0;
          position: relative;
          text-align: center;
        }
          .contact_form form {
            position: relative;
          }
          .form_field_wrap {
            width: 100%;
            display: inline-block;
            vertical-align: top;
            margin: 0 auto;
            position: relative;
          }
            .form_field {
              display: inline-block;
              vertical-align: top;
              margin-bottom: 13px;
            }
              .form_field:first-child {
                margin-left: 0;
              }
              .form_field_long {
                width: 100%;
              }
              .form_field_short {
                width: calc(50% - 9px);
                margin-left: 18px;
              }
                .form_field_short:first-child {
                  margin-left: 0;
                }
              .form_field input, .form_field textarea {
                width: 100%;
                height: 64px;
                padding: 0 20px;
                color: var(--font-color-default);
                font-size: 15px;
                letter-spacing: 0.1em;
                border: 1px solid #b0b0b0;
                background-color: transparent;
                outline: none;
                -webkit-appearance: none;
                -moz-appearance:    none;
                appearance:         none;
              }
              .form_field textarea {
                height: 142px;
                padding-top: 25px;
                resize: none;
                overflow-y: scroll;
                -ms-overflow-style: none;  /* IE and Edge */
                scrollbar-width: none;  /* Firefox */
              }
                .form_field textarea::-webkit-scrollbar {
                    display: none;
                }
          .form_submit {
            margin-top: 20px;
          } 
            .contact_form .ajax-loader, .contact_form .wpcf7-spinner {
              position: absolute;
              left: 0;
              right: 0;
              margin: 0 auto !important;
              bottom: -50px;
            }
            .contact_form .wpcf7-form-control-wrap {
              display: block;
            }
            .contact_form .use-floating-validation-tip span.wpcf7-not-valid-tip {
              width: auto;
              max-width: 100%;
              font-size: 12px;
              position: absolute;
              top: 10px;
            }
            .contact_form div.wpcf7-response-output,
            .contact_form .wpcf7 form .wpcf7-response-output {
              position: absolute;
              left: 0;
              right: 0;
              margin: 15px auto 0;
              color: var(--font-color-default) !important;
              font-size: 14px;
              text-align: center;
              background-color: #ffffff;
            }
  /* Footer Get In Touch END */


  /* Footer Contact Info START */
  #footer_bottom_wrap {
    padding: 0 0 86px;
  }
    .footer_bottom_bg {
      height: 81.5%;
      top: auto;
      bottom: 0;
    }
      .footer_bottom_bg::before {
        width: 100%;
        height: 50%;
        content: '';
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        background: rgb(255,255,255);
        background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
      }
    .footer_content {
      padding: 0 4.6875%;
      position: relative;
    }
      .footer_box {
        padding: 45px 0 70px;
        background-color: rgba(255,255,255,0.95);
      }
        .footer_box > .container {
          max-width: 100%;
        }
      .footer_contact_info {

      }
        .footer_contact_info > div {
          display: flex;
          align-items: flex-start;
          justify-content: space-between;
        }
          .footer_logo {
            font-size: 0;
            width: 40.36%;
          }
            .footer_logo img {
              max-width: 100%;
              height: auto;
            }
          .foot_info_wrap {

          }
            .foot_info_wrap strong {
              display: block;
              margin-bottom: 15px;
              font-size: 13px;
              font-weight: 700;
              letter-spacing: 0.3em;
              text-transform: uppercase;
            }
            .foot_info {
              margin-bottom: 13px;
            }
              .foot_info a:hover {
                color: var(--secondary);
              }
              .foot_info i {
                min-width: 16px;
                display: inline-block;
                vertical-align: top;
                margin-right: 8px;
                color: var(--secondary);
                font-size: 14px;
                text-align: center;
              }
                .foot_info i.ai-font-envelope-filled-a {
                  font-size: 8px;
                }
                .foot_info i.ai-font-location-c {
                  font-size: 16px;
                }
              .foot_info span {
                display: inline-block;
                vertical-align: top;
                letter-spacing: 0.05em;
              }
                .foot_info.address span {
                  line-height: 1.4;
                }
            .foot_smis {
              width: 100%;
              display: inline-block;
              margin-top: 10px;
              font-size: 0;
            }
              .foot_smis a {
                width: 25px;
                height: 25px;
                display: inline-block;
                margin-left: 10px;
                color: var(--primary);
                border: 1px solid var(--primary);
                border-radius: 50%;
                text-align: center;
                transition: var(--default-transition);
              }
                .foot_smis a:first-child {
                  margin-left: 0;
                }
                .foot_smis a:hover {
                  color: #ffffff;
                  background-color: var(--secondary);
                  border-color: var(--secondary);
                }
                .foot_smis a span {
                  display: block;
                  font-size: 15px;
                  line-height: 25px;
                }
  /* Footer Contact Info END */


  /* Footer Logos START */
  .footer_logos {
    margin-top: 90px;
    margin-left: -30px;
    margin-right: -30px;
    font-size: 0;
    text-align: center;
  }
    .footer_logos ul {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
      .footer_logos li {
        padding: 0 15px;
      } 
        .footer_logos li:first-child {
          padding-left: 0;
        }
        .footer_logos li:last-child {
          padding-right: 0;
        }
      .footer_logos li img {
        filter: grayscale(1);
        max-width: 100%;
        height: auto;
      }
  /* Footer Logos END */


  /* Footer Navigation START */
  .footer_navigation {
    margin-top: 74px;
    padding: 20px 0;
    font-size: 0;
    text-align: center;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
  }
    .footer_navigation li {
      display: inline-block;
      vertical-align: middle;
      padding: 0 20px;
    }
      .footer_navigation li:first-child {
        padding-left: 0;
      }
      .footer_navigation li:last-child {
        padding-right: 0;
      }
      .footer_navigation li a {
        color: var(--primary);
        font-size: 16px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
      }
        .footer_navigation li a:hover {
          color: var(--secondary);
        }
  /* Footer Navigation END */


  /* Footer Disclaimer START */
  .footer_disclaimer {
    margin-top: 50px;
    color: var(--font-color-default);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: center;
  }
    .footer_disclaimer p {
      font-weight: 600;
      line-height: 2.1;
    }
      .footer_disclaimer a:hover {
        color: var(--secondary);
      }
    .footer_links {
      font-size: 0;
      margin-top: 25px;
    }
      .footer_links a {
        position: relative;
        padding: 0 5px;
        font-size: 12px;
      }
        .footer_links a::before {
          width: 1px;
          height: 12px;
          content: '';
          position: absolute;
          top: calc(50% - 6px);
          left: -1px;
          background-color: var(--font-color-default);
        }
          .footer_links a:first-child::before {
            display: none;
          }
  /* Footer Disclaimer END */


  /* Footer Copyright START */
  .footer_copyright {
    margin-top: 25px;
    font-size: 12px;
    line-height: 1.7;
    letter-spacing: 0.05em;
    text-align: center;
  }
    .footer_copyright span {
      color: var(--secondary);
      font-weight: 700;
    }
    .footer_copyright a:hover {
      color: var(--secondary);
    }
    .footer_mls {
      margin-top: 29px;
      color: var(--secondary);
      font-size: 0;
      text-align: center;
    }
      .footer_mls span {
        display: inline-block;
        vertical-align: middle;
        font-size: 39px;
      }
        .footer_mls span.ai-font-eho {
          font-size: 31px;
          margin-right: 14px;
        }
  /* Footer Copyright END */

/* FOOTER END */


/* Global */
/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
  position: relative;
  width: 100%;
}
.ip-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}
.ip-banner canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 250px;
  background-color: var(--dark);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ip-banner .container {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ip-banner h1 {
  color: #ffffff;
  /*font-size: var(--font-size-title);*/
  font-size: 5vw;
  font-weight: 400;
  font-family: var(--font-family-title);
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
.ip-banner h1 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Adjust minimum height of page area */
#content-sidebar,
#content-full {
  min-height: 500px;
  margin-top: 20px;
}

/** Adjust width of content columns **/
#content-sidebar #content {
  width: 77.08%;
}

#content-full #content {
  width: 100%;
}

/* Adjust width of sidebar */
.sidebar {
  width: 20.83%;
}

/* fullwidth template */
.page-template-template-fullwidth #content {
  padding-left: 15px;
  padding-right: 15px;
}
.page-template-template-fullwidth #content ihf-search[data-eureka-id*=""].ihf-eureka {
  margin-left: -15px;
  margin-right: -15px;
}

/* Adjust line height of page elements */
#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
  line-height: 1.7;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .archive-title,
#content .entry-title {
  color: var(--font-color-title);
  font-size: var(--font-size-title);
  font-weight: 400;
  font-family: var(--font-family-title);
  line-height: 1;
  text-transform: uppercase;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
  color: var(--font-color-title);
  font-size: 25px;
  font-weight: 400;
  font-family: var(--font-family-title);
  line-height: 1;
  text-transform: uppercase;
}

#content .entry a:hover {
  color: var(--secondary);
}

ul.sitemap-list li.page-item--1 {
  display: none;
}

/* POJO START */
body #pojo-a11y-toolbar {
  bottom:0 !important;
  top: auto !important;
}
body #pojo-a11y-toolbar.pojo-a11y-toolbar-left .pojo-a11y-toolbar-toggle {
  top:auto !important;
  bottom:0 !important;
}
button:focus-visible, a:focus-visible {
  outline-style: solid !important;
  outline-width: 5px !important;
  outline-color: red !important;
  transition: none !important;
}

/* High contrast and Negative contrast break canvas elements with backgrounds */
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
  display:none !important;
}
/* POJO END */


/* Breadcrumbs START */
#content #breadcrumbs {
  display: none;
}
.ip-banner #breadcrumbs {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
  color: #ffffff;
}
.ip-banner #breadcrumbs a {
  color: inherit;
}
.ip-banner #breadcrumbs a:hover {
  color: var(--secondary);
}
/* Breadcrumbs END */



/* Buy + Sell START */
.post-page-buysell #content-sidebar,
.post-page-buysell #content-full {
  min-height: auto;
}
.ip_buysell_text {
  margin-top: 50px;
  text-align: center;
}
.ip_buysell_btns_wrap {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0;
}
.ip_buysell_btns {
  width: 40%;
  padding: 0 30px;
}
.ip_buysell_btns a {
  display: block;
  position: relative;
  overflow: hidden;
}
.ip_buysell_btns a::before {
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: 0.5;
  transition: var(--default-transition);
}
.ip_buysell_btns a:hover::before {
  opacity: 0.7;
  background-color: var(--secondary);
}
.ip_buysell_btns span {
  width: 100%;
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 0;
  color: #ffffff;
  font-size: 25px;
  font-weight: 400;
  font-family: var(--font-family-title);
  text-transform: uppercase;
  transform: translate(0,-50%);
}
/* Buy + Sell END */


#aios-testimonials.aios-testimonials-page h1 {
  display: none;
}


/* Communities Page START */
.ip_markets_list {
  margin-top: 55px;
  font-size: 0;
  text-align: center;
}
  .ip_markets_item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding: 0 17.5px;
  }
    .ip_markets_item a {
      display: block;
      position: relative;
    }
      .ip_markets_item a::before {
        width: 100%;
        height: 48.5%;
        content: '';
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        background: rgb(0,0,0);
        background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 90%, rgba(0,0,0,1) 100%);
        opacity: 0.8;
        transition: var(--default-transition);
      }
        .ip_markets_item a:hover::before {
          opacity: 0;
        }
      .ip_markets_item a::after {
        width: 100%;
        height: 48.5%;
        content: '';
        position: absolute;
        z-index: 1;
        bottom: 0;
        left: 0;
        background: rgb(171,151,108);
        background: linear-gradient(180deg, rgba(171,151,108,0) 0%, rgba(171,151,108,1) 90%, rgba(171,151,108,1) 100%);
        opacity: 0;
        transition: var(--default-transition);
      }
        .ip_markets_item a:hover::after {
          opacity: 1;
        }
      .ip_markets_name {
        width: 100%;
        position: absolute;
        z-index: 2;
        bottom: 25px;
        left: 0;
        right: 0;
        color: #ffffff;
        font-size: 25px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
      }

.tax-community-group #inner-page-wrapper {
  padding-top: 50px;
}
/* Communities Page END */


/* Contact Page START */
.post-page-contact .aios-cu-contact span span.address {
  display: inline-block;
  vertical-align: top;
}
.post-page-contact #footer_git_wrap {
  display: none;
}
/* Contact Page END */

body.page-id-15 .footer_bottom_bg::before {
  height: 0;
}
body.page-id-15 .footer_bottom_bg {
    height: 100%;
}

.tax-community-group #aios-communties-element .aoe-img img {
  max-width: 100%;
}

body .aios-communities-seneca .aioscomu-list:hover .aioscomu-photo::before {
	opacity: .60;
 }

 .custom-cz button.btn.dropdown-toggle.bs-placeholder.btn-default,
 .custom-cz button.btn.dropdown-toggle.btn-default,
 .custom-cz button.btn.dropdown-toggle.btn-default:hover {
    width: 100%;
    height: 51px;
    display: block;
    padding: 0 5px;
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    box-shadow: none;
}

.custom-cz .bs-searchbox .form-control {
    color: #000;
}


.ip-featured-img, .ip-featured-img canvas {
  display: block;
  position: relative;
}

.ip-featured-img canvas {
  height: 100%;
  width: 100%;
}

.ip-featured-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.ip-featured-img {
  margin: 0 auto;
  max-width: 420px;
}

.ip-dm-photo-left {
  text-align: left;
}
.ip-dm-photo-left .ip-featured-img {
  display: inline-block;
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
  width: auto;
  position: absolute;
}
.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

#content .listings-info #breadcrumbs {
    display: block;
}

.grecaptcha-badge {
    z-index: 1000 !important;
}

body.page-id-15 .aios-cu-main {
    padding-bottom: 70px;
}

/* PL  */
body.page-id-524 #header_wrap {
  z-index: 1052;
}

span.filter-option.pull-left {
    text-overflow: ellipsis;
}
.show-on-scroll {
  display: none !important;
}

/* Large Desktop Screens */
@media only screen and (min-width: 1601px) {
  :root {
    --font-size-title: 70px;
  }
  .ip-banner h1 {
    font-size: 80px;
  }
}

/* Small Desktop Screens */
@media only screen and (min-width: 992px) {
  body.page-id-517 #inner-page-wrapper #content .row {
    display: flex;
    align-items: center;
  }
  
}

@media only screen and (max-width: 1440px) {

}

@media only screen and (max-width: 1366px) {
  .header_contact_info {
    padding-right: 3.1875%;
  }
  #header_wrap.fixedhead .navigation {
    padding-left: 2.5625%;
    padding-right: 2.5625%;
  }
  .footer_content {
    padding: 0 2.6875%;
  }
  .footer_logos {
    margin-left: 0;
    margin-right: 0;
  }
}


@media only screen and (max-width: 1280px) {
  .navigation {
    padding-right: 1%;
  }
  #nav li {
    padding: 0 12px;
  }
  .header_contact_info {
    padding: 0 2%;
  }
  .footer_git {
    padding-left: 4.1875%;
    padding-right: 4.1875%;
  }
}


/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
  .parallax_bg canvas {
    background-attachment: scroll;
  }
  #header_wrap.fixedhead .navigation {
    padding-left: 1%;
    padding-right: 1%;
  }
  #nav li {
    padding: 0 10px;
  }

  .footer_git {
    padding-left: 2.1875%;
    padding-right: 2.1875%;
  }
  .footer_logo {
    width: 35%;
  }

  .footer_navigation li {
    padding: 0 12px;
  }
  .footer_navigation li a {
    font-size: 14px;
  }
}


/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
  .select2-dropdown {
      z-index: 1 !important;
  }
  .digi-mkt-img-desk {
    display: none;
}
.digi-mkt-img-mob {
  display: block !important;
}
  #pojo-a11y-toolbar {
    display:none;
  }

  :root {
    --font-size-title: 70px;
  }
  .ip-banner h1 {
    font-size: 60px;
  }

  .global_site_title {
    text-align: center;
  }
  #header_wrap {
    position: relative;
    z-index: 2;
    margin-top: 52px;
    padding: 20px 0;
    background-color: var(--primary);
  }
  .header_logo {
    display: block;
  }

  #footer_git_wrap {
    margin-top: 60px;
    text-align: center;
  }
  .footer_git_bg {
    width: 100%;
  }
  .footer_git {
    padding-left: 15px;
    padding-right: 15px;
  }
  .contact_form_wrap {
    flex-flow: column;
  }
  .contact_form_title {
    width: 100%;
    padding-right: 0;
  }
  .contact_form {
    width: 100%;
  }

  .footer_contact_info > div {
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .footer_logo {
    width: 100%;
  }
  .foot_info_wrap {
    margin-top: 40px;
  }
  .foot_info.address span {
    display: inline;
  }

  .footer_logos,
  .footer_navigation {
    margin-top: 50px;
  }
  .footer_logos ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer_logos li {
    padding: 15px !important;
  }
  .footer_navigation li {
    display: block;
    padding: 10px 0;
  }

  .footer_links {
    display: flex;
    align-items: center;
    flex-flow: column;
  }
  .footer_links a {
    padding: 5px 0;
    line-height: 1.2;
  }
  .footer_links a::before {
    display: none;
  }
  /* The following are used on inner pages. Please edit carefully. */
  .inner {
    width: 100%;
  }
  #content-sidebar,
  #content-full {
    width: 100%;
  }
  .outer {
    width: 100%;
    min-width: 100%;
  }
  #content-sidebar #content {
    width: 100%;
  }


  /* Buy + Sell START */
  .ip_buysell_btns_wrap {
    flex-flow: column;
  }
  .ip_buysell_btns {
    width: 100%;
    max-width: 360px;
    padding: 10px 0;
  }
  /* Buy + Sell END */


  /* Communities Page START */
  .ip_markets_item {
    width: 100%;
    max-width: 500px;
    padding: 0;
    margin: 0 auto 30px;
  }
  /* Communities Page END */
  
  .ip-dm-photo-left {
    margin-top: 40px;
  }

   body.page-id-18 .aiosp-wrap .aiosp-container .aios-popup-body {
      padding: 15px;
  }
}


/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  :root {
    --font-size-title: 45px;
  }
  .form_field_short {
    width: 100%;
    margin-left: 0;
  }
  .ip-banner .container {
    width: 100%;
  }
  .ip-banner h1 {
    font-size: 40px;
  }
  .footer_logos ul {
          flex-direction: column;
      }
}


/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
  :root {
    --font-size-title: 32px;
  }
  .global_site_title.small_title h2 span,
  #content .global_site_title.small_title h2 span {
    font-size: 30px;
  }
  .global_site_btn a, .global_site_btn > div {
    letter-spacing: 0.1em;
  }
  .global_site_title h2 em, #content .global_site_title h2 em {
    letter-spacing: 0.3em;
  }
  .ip-banner h1 {
    font-size: 30px;
  }
}
