:root {
  /** Font default */
  --font-family-title:"Marcellus", serif;
  --font-family-default: "Outfit", sans-serif;
  --font-size-default: 16px;
  --font-size-title: 60px;
  --font-color-default: #4e4e4e;
  --font-color-title: #2c2c2c;
  /** Use for input, button, and any other element */
  --primary: #191f2f;
  --secondary: #eddbd9;
  --accent-light: #5b6b8c;
  --accent-dark: #2f3847;
  --accent-pink: #a16d5f;
  --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;
}

a:hover {
    color: #8c8c8c;
}

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

.site-easing {
  -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;
}

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

.non-fixed-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  font-size: 0;
}
  .non-fixed-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;
  max-width: 1420px;
  margin: 0 auto;
}
.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);
}
.gradient-text {
  background: #EDDBD9;
  background: linear-gradient(to right, #EDDBD9 0%, #EDDBD9 77%, #A16D5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* GLOBAL SITE TITLE */


.global-title-wrap {
    display: block;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

  .global-title-widget {
    text-transform:uppercase;
    color: #000;
    position: relative;
    font-weight: 400;
    display: inline-block;
    font-size: 60px;
    line-height: 1;
    letter-spacing: 0;
    font-family: var(--font-family-title);
    letter-spacing: 0.015em;
  }

  .footer-form-wrap .global-title-wrap {
    text-align: left;
  }
  .footer-form-wrap .global-title-widget {
    color: #fff;
    font-size: 50px;
  }



/* GLOBAL SITE BUTTON */

  .global-button {
    display: flex;
    width: 100%;
    max-width: 250px;
    line-height: 60px;
    height: 60px;
    text-transform: uppercase;
    margin: 30px auto 5px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    padding: 0;
    font-size: 0;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    background: #000;

  }

  .global-button::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cfac6d+0,a18149+100 */
background: linear-gradient(to right,  rgba(207,172,109,1) 0%,rgba(161,129,73,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    opacity: 0;
    transform: scale(.6);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}


.global-button:hover::before {
    opacity: 1;
    transform: scale(1);
}



  .global-button:hover {
      border: 1px solid #787878;

  }

     .global-button span {
          color: #fff;
          font-size: 15px;
          text-transform:uppercase;
          position: relative;
          display: block;
          z-index: 3;
          font-weight: 100;
          transition: all .25s ease-in-out;
          -moz-transition: all .25s ease-in-out;
          -webkit-transition: all .25s ease-in-out;
          letter-spacing: 0.05em;

     }


      .global-button:hover span {
        color: #fff;

      }

     .r-more {
       display: flex;
       justify-content: center;
       position: relative;
       flex-flow: row wrap;
     }

      .r-more a:nth-child(2) {
        margin-left: 20px;
      }

 .flex-area {
   display: flex;
   justify-content: flex-end;
 }

/* HEADER */
#header-wrap {
    width: 100%;
    position: fixed;
    z-index: 1011;
    top: 0;
    left: 0;
    font-size: 0;
    transition: all 0.3s ease-in-out;
    text-align: center;

}


.main-header {
    width: 100%;
    z-index: 100;
    margin: 0 auto;
    position:absolute;
    height: auto;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    padding: 50px 0;
/* 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.65) 0%,rgba(0,0,0,0) 100%);*/ /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}

.custom-container {
   max-width: 1170px;
   margin: 0 auto;
}

.custom-container .row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin: 0 auto;
}

/* Header Logo */
 .hdr-logo-wrap {
   width: 30%;
}
 .hdr-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;

 }

.hdr-logo img {
    margin: 0 auto;
}

.hdr-info {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   color: #fff;
   font-size: 15px;
   font-weight: 500;
   margin-left: 28px;
   gap: 20px;
}

.hdr-info span:nth-child(1) {
   padding-right: 20px;
   border-right: 1px solid #fff;
   font-size: 18px;
}

 .hdr-info i {
   font-size: 13px;
   margin-right: 10px;
   color:#fff;
 }
 .hdr-info a {
   color:#fff;
 }
 .hdr-info a:hover {
   color:#fff;
 }


/* NAVIGATION */

.nav-wrapp {
    display: flex;
    justify-content:flex-end;
    align-items: center;
    margin-left: auto;
}

#nav {
  display: block;
}

#nav li:nth-child(1) {
  margin-left: 0;
}

#nav a {
    font-size: 15px;
    font-weight: 400;
    color:#fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: block;
    padding: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

#nav a:hover {
  color: #fefefe;
}

#nav li a:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;

}

    #nav li:hover a:after {

       width: 100%;
       left: 0;

    }

#nav li {
    position:relative;
}
#nav > li {

    display: inline-block;
    vertical-align: middle;
    margin: 0 30px;
    position:relative;

}


#nav > li:last-child{
    margin-right: 0;
}

#nav > li:hover > a{
    color:#fefefe;
}


/* Sub Menu */


#nav .sub-menu a {
    color: #fff;
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.79);
    text-align: center;
}

#nav .sub-menu a:hover {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cfac6d+0,a18149+100 */
background: linear-gradient(to right,  rgba(207,172,109,1) 0%,rgba(161,129,73,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    color: #fff !important;
}

#nav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}

#nav li:hover > .sub-menu {
    display: block;
}

#nav .sub-menu li {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    border-left: none;
}

#nav .sub-menu li:first-child{
    padding: 0 0 0 0;
}

  #nav .sub-menu li a:after {
    display: none;
  }

#nav .sub-menu {
    background: transparent;
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
    transform: translateX(-50%) translateY(20px);
    position: absolute;
    min-width: 180px;
    list-style: none outside none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    text-align: center;
    padding-top: 22px;
    pointer-events: none;

}

#nav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}
#nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
}
#nav .sub-menu li {
    position: relative;
}


/***Header Short***/

.fixed-header {
    background: rgba(0, 0, 0, 1);
    position: fixed;
    z-index: 101;
    width: 100%;
    left: 0;
    top: -100px;
    transition: all ease .3s;
    -moz-transition: all ease .3s;
    -webkit-transition: all ease .3s;
    padding: 10px 0;
}

.fixed-header.active{
    top: 0;
}


/*** Fixed Nav ***/

.navigation {
  display: inline-block;
  position: relative;
}

#fixednav li {
    position:relative;
    margin: 0 18px;
    display: inline-block;

}

#fixednav li:nth-child(1){
  margin-left:0;
  border-left: none;
}

#fixednav .sub-menu {
    background: transparent;
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    width: max-content;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    position: absolute;
    min-width: 180px;
    list-style: none outside none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    text-align: center;
    padding-top: 30px;
    pointer-events: none;
}
#fixednav .sub-menu a {
    color: #fff;
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.79);
    text-align: left;
}
#fixednav .sub-menu a:hover {
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#cfac6d+0,a18149+100 */
background: linear-gradient(to right,  rgba(207,172,109,1) 0%,rgba(161,129,73,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

    color: #fff;
    text-decoration: none;
}
#fixednav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}
#fixednav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}
#fixednav .sub-menu li {
    position: relative;
}


#fixednav {
  display: block;
}

#fixednav a {
    font-size: 15px;
    font-weight: 400;
    color:#fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: block;
    padding: 0;
    transition: all ease .4s;
    -moz-transition: all ease .4s;
    -webkit-transition: all ease .4s;
}

#fixednav a:hover {
  color: #132e4f;
}

#fixednav li a:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

    #fixednav li:hover a:after {

       width: 100%;
       left: 0;

    }

#fixednav li {
    position:relative;

}
#fixednav > li {

    display: inline-block;
    vertical-align: middle;
    margin: 0 18px;

}

#fixednav > li:last-child{
    margin-right: 0;
}
#fixednav > li:first-child:before {
    display: none;
}

#fixednav > li:hover > a{
    color:#fff;
}


/* Sub Menu */

#fixednav .sub-menu .sub-menu {
    margin-left: 100%;
    top:0;
}

#fixednav li:hover > .sub-menu {
    display: block;
}

#fixednav .sub-menu li {
    position: relative;
    display: block;
    padding: 0;
    margin: 0;
    border-left: none;
}

#fixednav .sub-menu li:first-child{
    padding: 0 0 0 0;
}

  #fixednav .sub-menu li a:after {
    display: none;
  }

.fixed-header:not(.active) {
   opacity: 0;
   pointer-events: none;
}

/*** Footer ***/

.footer {
    font-size: 12px;
    font-weight: 500;
    width: 100%;
    padding: 100px 15px;
    text-align: left;
    color: #fff;
    position: relative;
    z-index: 2;
    background: #000;
}

.footer-top {
        position: relative;
        padding: 0;
        max-width: 1220px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        z-index: 2;
        gap: 75px;
    }

        .footer-top .title-wrap {
             text-align: center;
             margin-bottom: 15px;
        }

           .footer-right {
             width: 55%;
           }
           .footer-form {
            width: 45%;
           }


            .footer-form {

                margin: 0;
                font-size: 0;
                position: relative;
                z-index: 5;
            }

            .footer-form-wrap {
                display: block;
            }

               .footer-form-wrap .title-wrap  {
                text-align: left;
               }

                .footer-form-wrap .title-wrap .title-widget {
                     font-size: 40px;
                     color: #fff;
                     font-weight: 400;
                }

                .form-field-wrap {
                    width: 100%;
                    display: flex;
                    align-items: flex-end;
                    position: relative;
                    justify-content: center;
                }

                    .form-field-long {
                        width: 100%;
                        margin-bottom: 10px;
                    }
                    .form-field-short {
                        width: 48.90%;
                        display: inline-block;
                        vertical-align: top;
                        margin-left: 3.15%;
                        margin-bottom: 10px;
                    }

                    .form-field-short:first-child {
                        margin-left: 0;
                    }
                        .form-field-short input,
                        .form-field-long input,
                        .form-field-wrap textarea {
                            width: 100%;
                            height: 50px;
                            padding: 0 20px;
                            color: #fff;
                            font-size: 15px;
                            font-weight: 400;
                            letter-spacing: 0.05em;
                            border: 1px solid #cfac6d;
                            background-color: transparent;
                            text-transform: uppercase;
                            outline: none;
                            -webkit-appearance: none;
                            -moz-appearance:    none;
                            appearance:         none;

                        }


                        .form-field-wrap textarea {
                            height: 238px;
                            padding-top: 20px;
                            padding-right: 40px;
                            overflow-y: scroll;
                            -ms-overflow-style: none;
                            scrollbar-width: none;
                            resize: none;

                        }


               .form-submit {
                    width: 30px;
                    height: 30px;
                    position: absolute;
                    bottom: 24px;
                    right: 4px;
                    cursor: pointer;
                }
                    .form-submit .ai-font-paper-airplane-alt {
                        color: #fff;
                        font-size: 30px;
                        pointer-events: none;
                        transition: all 0.3s ease-in-out;
                        right: 15px;
                    }
                        .form-submit:hover .ai-font-paper-airplane-alt {
                            color: #cfac6d;
                        }
                    .form-submit input[type="submit"] {
                        width: 100%;
                        height: 100%;
                        position: absolute;
                        z-index: 2;
                        top: 0;
                        left: 0;
                        padding: 0;
                        font-size: 0;
                        border: none;
                        background: transparent;
                        outline: none;
                        -webkit-appearance: none;
                        -moz-appearance:    none;
                        appearance:         none;
                    }

                    .footer-form .ajax-loader, .footer-form .wpcf7-spinner {
                        position: absolute;
                        left: 0;
                        right: 0;
                        margin: 0 auto !important;
                        bottom: -50px;
                    }
                    .footer-form .wpcf7-form-control-wrap {
                        display: block;
                    }
                    .footer-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
                        width: auto;
                        max-width: 100%;
                        font-size: 11px;
                        position: absolute;
                        top: 10px;
                    }
                    .footer-form div.wpcf7-response-output,
                    .footer-form .wpcf7 form .wpcf7-response-output {
                        position: absolute;
                        left: 0;
                        right: 0;
                        margin: 10px auto 0;
                        color: #fff;
                        font-size: 12px;
                        text-align: center;
                    }


                .footer-contact-wrap {
                    font-size: 15px;
                    color: #fff;
                    letter-spacing: 0.02em;
                    font-weight: 400;
                }

                .footer-contact-wrap a.site-name img {
                  margin: 0 auto 20px;
                }


                .footer-contact-wrap a {
                    color: #fff;
                        -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
                }
                .footer-contact-wrap a:hover {
                    color: #cfac6d;
                }

.ftr-info-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 50px;
    margin-top: 20px;
}
                    .ftr-info > span {
                        display: flex;
                        justify-content:flex-start;
                        align-items: center;
                        margin: 8px 0;
                        line-height: 22px;
                        font-size: 15px;

                    }

                    .ftr-info i {
                       display: block;
                       font-size: 12px;
                       margin-right:8px;
                       color: #fff;

                    }
                    .ftr-info .ai-font-phone {
                        font-size: 16px;
                    }
                    .ftr-info .ai-font-location-c {
                        font-size: 18px;
                    }

                        .footer-smi-wrap {
                            display: block;
                            margin: 0;
                        }

                        .footer-smi-wrap span {
                             display: block;
                             font-size: 20px;
                             font-family: var(--font-family-title);
                             text-transform: uppercase;
                        }

                        .footer-smi-wrap a {
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            font-size: 20px;
                            color: #fff;
                            margin: 0;
                            width: 35px;
                            height: 35px;
                            background: #cfac6d;
                            border-radius: 50%;
                            text-align: center;
                            margin-top: 10px;
                        }

                        .footer-smi-wrap a:hover {
                           color: #000;
                        }

                .footer-right-inner .menu-main-container {
                  display: flex;
                }

                .footer-right-inner a:hover,
                .footer-right-inner a:focus {
                    color: #cfac6d;
                }

 .top-nav {
    position: relative;
    padding: 0 0 40px;
 }

 .footer-dis {
   display: block;
   font-size: 12px;
   color: #fff;
   line-height: 26px;
   font-weight: 400;
   padding-top: 20px;
   margin-top: 20px;
   border-top: 1px solid #cfac6d;
 }

.footer-dis a {
    color: #fff;
}

 .footer-dis a:hover {
    color: #cfac6d;
 }

  .footer li {
    display: inline-block;
    padding: 0 15px;
    line-height: 10px;
    text-transform: uppercase;
  }

  .footer li a {
    color:#000;
    font-size: 14px;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    font-weight: 400;
    letter-spacing: 0.05em;
  }


.cont-add {
   font-size: 14px;
   letter-spacing: 0.05em;
   display: flex;
   align-items: center;
   justify-content: center;

}

 .cont-add i.ai-font-location-c {
    margin-right: 10px;
    font-size: 18px;
 }

 .footer li a:hover {
    color: #ccc;
 }

 .copy-wrap {
   display: block;
   align-items: center;
   margin-top: 15px;
 }


  .footer .copyright {
         color:#fff;
         padding: 20px 0 0;
         letter-spacing: 0.015em;
         line-height: 26px;
         font-weight: 300;
         font-size: 12px;
         text-transform: capitalize;

  }

.footer .copyright span {
   text-transform: capitalize;
}

  .footer .copyright a {
     color: #fff;
    transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
  }


.footer .copyright a:hover {
    color: #cfac6d;
}

.ftr-logo {
}

.ftr-logos {
   display: block;
   font-size: 23px;
   margin-top: 15px;
   color: #fff;

}

.copyright-wrapp {
   margin: 0 auto;
}





/* 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: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.ip-banner h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
.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;
}

#content .entry a:hover {
  color: var(--accent-light);
}
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-grayscale,
#pojo-a11y-toolbar .pojo-a11y-btn-light-background,
#pojo-a11y-toolbar .pojo-a11y-btn-high-contrast,
#pojo-a11y-toolbar .pojo-a11y-btn-negative-contrast {
    display:none !important;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute !important;
    top: 20% ;
    left: 20% ;
    font-size: 12px ;
    padding: 0.2em 0.8em ;
    width: auto ;
}

.wpcf7 form .wpcf7-response-output {
  text-align: center;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle,
#content .archive-title,
#content .entry-title {
  color: #000;
  font-size: 60px;
  font-weight: 200;
  font-family: var(--font-family-title);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#content .archive-subtitle {
  font-size: 25px;
}

#inner-page-wrapper {
    margin-bottom: 230px;
}

[class^=ai-font]:before {
    font-family: agentimage!important;
}

body.pojo-a11y-readable-font em[class^=ai-font] {
    font-family: agentimage!important;
}


.page-id-6 #content .entry-title {
    text-align: center;
}


.amh-header-buttons.amh-3a .amh-center .amh-phone, .amh-header-buttons.amh-3a .amh-center a.amh-phone {
    display: none !important;
}















#agents-results .agents-col:nth-child(even) .agents-name span {
    text-align: right;
}





@media only screen and (min-width: 768px) {
    .listing-module-page .container-theme-filter {
        width: auto;
        margin-left: -15px;
        margin-right: -15px;
    }
}
@media only screen and (min-width: 1601px) {


}

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


}

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



}


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

.footer-form-wrap .global-title-widget {
    font-size: 40px;
}

.ftr-info-wrap {
    gap: 10px;
}


}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {

.fixed-header,
.nav-wrapp,
.fixed-logo,
.fixed-smi .smi-links,
.connect-content {
    display: none !important;
}

.main-header {
    position: relative;
    padding: 70px 0 30px;
    height: auto;
    text-align: center;
    top: 0;
    background: #000;
}

.custom-container .row {
    display: block;
}

.hdr-logo img {
    margin: 0 auto;
}

.hdr-logo {
    justify-content: center;
}


  #content .archive-title, #content .entry-title {
    font-size: 40px;
  }

  #pojo-a11y-toolbar {
    display:none;
  }

.footer-top {
    flex-wrap: wrap;

}

.footer-form,
.footer-right {
    width: 100%;
}

.ftr-logo img {
   margin: 20px auto;
}

.ftr-info > span {
    justify-content: center;
}
.ftr-info-wrap {
    display: block;
}

.footer, .footer-smi-wrap {
    text-align: center;
}
.footer-smi-wrap a {
    margin: 20px auto;
}

.footer-top {
    gap: 20px;
}

.page-id-7 #agents-results .agents-img {
   width: 100%;
   max-width: 400px;
   margin: 0 auto;
}


}
/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .ip-banner .container {
    width: 100%;
  }
  #content .archive-title, #content .entry-title {
    font-size: 30px;
  }



}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {

.global-title-widget {
    font-size: 28px;
}
.ftr-info > span {
    font-size: 13px;
}

.form-field-wrap {
    display: block;
}

.form-field-short {
    width: 100%;
    margin-left: 0!important;
}

    .footer-form-wrap .global-title-widget {
        font-size: 30px;
    }


#listings-results .listings-grid .listings-address {
    font-size: 16px !important;
    line-height: 1 !important;
}
#listings-results .listings-grid .listings-address span {
     font-size: 14px !important;
    line-height: 1 !important;
}



}
