:root {
  /** Font default */
  --font-family-default: "Open Sans", sans-serif;
  --font-family-title: "Playfair Display", serif;
  --font-size-default: 14px;
  --font-size-title: 18px;
  --font-color-default: #333;
  --font-color-title: #6c757d;
  /** Use for input, button, and any other element */
  --primary: #6b6b6b;
  --secondary: #47cfcb;
  --accent: #f8b3b8;
  --success: #28a745;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #000;
  --white-text: #fff;
  --animate: all .3s ease-in-out;
  --animate2: all .5s ease-in-out;
  --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.playfair {
    font-family: var(--font-family-title);
}

/* 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;
}

.hdrnav {
     display: flex;
     width: 100%;     
     justify-content: center;
     align-items: center;
}    
   
    .hdrnav > li {
        position: relative;        
    }

        .hdrnav > li.separator {
            width: 1px;
            height: 19px;
            background: #fff;
            opacity: .3;
            margin: 0 clamp(20px, 2.375vw, 38px);
        }

            .hdrnav > li.separator:last-of-type {
                display: none;
            }

            .header.fixed .hdrnav > li.separator {
                background: #b2b2b2;
            }

        .hdrnav > li:first-of-type {
            margin-left: 0;
        }

        .hdrnav > li > a {
            font-size: clamp(13px, 0.938vw, 15px);
            color: var(--white-text);
            text-transform: uppercase;            
            line-height: 1;
            padding: 20px 0;            
            display: block;
            position: relative;
            transition: var(--animate);
        }

            .header.fixed .hdrnav > li > a {
                padding: 40px 0;
                color: #6b6b6b;
            }

            .hdrnav > li:is(:hover, :focus) > a {
                color: var(--secondary);
            }

                .header.fixed .hdrnav > li:is(:hover, :focus) > a {
                    color: var(--accent);
                } 

.hdrnav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    padding: 0;
    min-width: 200px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    transition: var(--animate);
    opacity: 0;
    visibility: hidden;
}
    
    .hdrnav li:hover > .sub-menu,
    .hdrnav li:focus > .sub-menu,
    .hdrnav li:focus-within > .sub-menu {
        opacity: 1;
        visibility: visible;
    }   

    .hdrnav .sub-menu li {
        display: block;
        position: relative;
        padding: 0;
        margin-bottom: 1px;
    }

    .hdrnav .sub-menu a {
        font-size: clamp(12px, 0.813vw, 13px);
        color: var(--white-text);        
        text-transform: uppercase;
        line-height: 1;
        padding: 15px 0;
        display: block;        
        padding: 15px !important;        
        transition: var(--animate);
        position: relative;
        background: var(--accent);
        text-align: center;
    }        

    .hdrnav .sub-menu a:is(:hover, :focus) {        
        background: var(--secondary);
        color: var(--white-text);        
    }

    .hdrnav .sub-menu .sub-menu {
        margin-left: 100%;
        top: 0;
    }

.home a, .header a, .fixed-header a, footer a, .sidebar a {
     text-decoration: none !important;
     outline: 0;
}

.transition {
    transition: var(--animate);
}

.transition2 {
    transition: var(--animate2);
}

#main-wrapper {
     overflow: hidden;
}

.flex {
    display: flex;
}

.j-center {
    justify-content: center;
}

.j-end {
    justify-content: flex-end;
}

.j-spacebet {
    justify-content: space-between;
}

.j-spacearound {
    justify-content: space-around;
}

.a-start {
    align-items: flex-start;
}

.a-center {
    align-items: center;
}

.a-end {
    align-items: flex-end;
}

.flex-wrap {
    flex-wrap: wrap;
}


.flex-column {
    flex-direction: column;
}

.pos-relative {
    position: relative;
}

.canvas-img {
    display: block;
    position: relative;
    overflow: hidden;
}
    
    .canvas-img canvas {
        display: block;
        width: 100%;
        height: auto;        
    }

    .canvas-img img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transition: var(--animate2);
        object-fit: cover;
    }
    #hp-instagram .canvas-img video {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        height: 100%;
        object-fit: cover;
        object-position: center;
        z-index: 1;
    }

.home section,
footer {
    position: relative;
}
    
.accent,
.accent2 {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

    .accent canvas,
    .accent2 canvas {
        background-size: cover;
        width: 100%;
        height: 100%;
        background-position: top center
    }

        html:not(.safari) .accent.fixed canvas,
        html:not(.mobile) .accent.fixed canvas,
        html:not(.safari) .accent2.fixed canvas,
        html:not(.mobile) .accent2.fixed canvas {
            background-attachment: fixed;
        }            

    .accent.grayscale canvas,    
    .canvas-img.grayscale img,
    .accent2.grayscale canvas {
        filter: grayscale(1);
    }

    .accent:before,
    .accent:after,
    .accent2:before,
    .accent2:after {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

.section-title {}

    .section-title.center {
        text-align: center;
    }
    
     .section-title :is(h1, h2) {        
        font-family: var(--font-family-title);
        font-size: 4vw !important;
        margin: 0 !important;        
        font-weight: 600 !important;
        letter-spacing: .05em;
        color: var(--secondary);
        line-height: 1;
        text-transform: uppercase;
        position: relative;  
    }       

        .section-title :is(h1 span, h2 span) {
            font-family: var(--font-family-default);
            display: block;            
            font-size: 1.188vw !important;            
            position: relative;
            color: #838383;
            font-weight: 400 !important;
            letter-spacing: .04em;
            margin-bottom: 10px;            
        }

            .section-title.light :is(h1, h2) {
                color: var(--white-text);
            }

            .section-title.light :is(h1 span, h2 span) {
                color: var(--secondary);
            }            

        .section-title.white :is(h1, h2, h1 span, h2 span) {
            color: var(--white-text);
        }

.hp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18.125vw;
    height: 3.313vw;
    /*color: var(--accent);*/
    color: var(--white-text);
    background: var(--accent);
    border: 1px solid var(--accent);
    font-size: 0.875vw;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: var(--animate2);
}
    
    .hp-btn:is(:hover, :focus) {
        /*background: var(--accent);*/
        background: var(--secondary);
        color: var(--white-text);
        border-color: var(--secondary);
    }


/*** burger-menu ***/

.out-click {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    display: none;
}

.burger-menu {
    position: fixed;
    width: 90%;
    max-width: 450px;
    height: 100vh;
    padding: 90px 90px 30px;
    z-index: 1002;
    top: 0;
    right: 0;
    transform: translateX(100%);
    transition: var(--animate2);
    background: var(--secondary);
    font-size: 0;
    color: var(--white-text);
}
    
    .burger-menu .simplebar-scrollbar::before {
      background: var(--primary);
    }

    .burger-menu .simplebar-content {
        display: flex;
        align-items: center;
    }
    
    .burger-menu.open-nav {
        transform: translateX(0);
    }

    .burger-close {
        position: absolute;
        right: 55px;
        top: 55px;
        font-size: 40px;
        color: var(--white-text);
        cursor: pointer;
        transition: var(--animate);
        z-index: 10;
    }

        .burger-close:is(:hover, :focus) {
            color: var(--accent);
        }

    .burger-content {
        width: 100%;
        height: 100%;
        overflow: auto;
        padding: 0;
        position: relative;
        z-index: 9;
    }

        .burger-content .hdrnav {
            flex-direction: column;
            align-items: flex-start;
        }

            .burger-content .hdrnav > li {                
                margin: 32px 0;
            }

            .burger-content .hdrnav > li > a {
                font-size: 25px;
                padding: 0;
            }

                 .burger-content .hdrnav > li:is(:hover, :focus) > a {
                    color: var(--accent);
                 }

            .burger-content .sub-menu {
                display: none;
                position: relative;
                left: 0;
                transform: translateX(0);
                opacity: 1;
                visibility: visible;                
                background: transparent;
                padding: 0;
                transition: none;
                padding: 20px 0 0 20px;
            }

                .burger-content .sub-menu a {
                    background: transparent;
                    font-size: 16px !important;
                    color: #eee;
                    padding: 10px 0 !important;
                    text-align: left;
                }

                .burger-content .sub-menu a:is(:hover, :focus) {
                    color: var(--primary) !important;
                    background: transparent;
                }

/* header */

.header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding: 45px 15px 0;
    z-index: 99;
    transition: var(--animate2);
}
    
    .header.fixed {
        background: #fff;
        padding-top: 0;
    }
    
    .hdr-inner {
/*        max-width: 1140px;*/
        max-width: 1240px;
        margin: 0 auto;
        align-items: flex-start;
        transition: var(--animate);
    }

        .header.fixed .hdr-inner {
            align-items: center;
        }

        .hdr-logo {
            margin-right: 30px;
        }

            .hdr-logo img {
                filter: invert(1);
            }

            .header.fixed img {
                max-width: 72px;
                filter: invert(0);
            }

            .hdr-logo span {
                color: var(--white-text);
                font-size: 28px;
                letter-spacing: .05em;
                margin-left: 12px;
                padding: 12px 0 12px 12px;
                border-left: 1px solid rgba(255,255,255,.7);
            }

                .header.fixed .hdr-logo span {
                    color: var(--dark);
                    border-left: 1px solid #787878;
                }

        .hdr-burger {
            margin-left: clamp(30px, 5.938vw, 95px);
            width: 50px;            
        }            
            
            .hdr-burger-inner {                       
                height: 24px;
                width: 50px;                
                flex-direction: column;
                align-items: flex-end;
                cursor: pointer;
            }

                .hdr-burger-inner span {
                    display: block;
                    width: 38px;
                    height: 2px;
                    background: #fff;
                    transition: var(--animate);
                }

                    .header.fixed .hdr-burger-inner span {
                        background: var(--secondary);
                    }

                    .hdr-burger-inner span:nth-of-type(2) {
                        width: 100%;
                    }

                    .hdr-burger-inner:is(:hover, :focus) span {
                        background: var(--secondary);
                        width: 100%;
                    }

                        .header.fixed .hdr-burger-inner:is(:hover, :focus) span {
                            background: var(--accent);
                            width: 100%;
                        }

.footer {
    padding: clamp(55px, 5.938vw, 95px) 15px 55px;
}

    .footer-inner {
        width: 71.563vw;
        margin: 0 auto;
    }        

        .footer-logo .f-logo-wrap img {
            width: clamp(90px, 7.938vw, 127px);
        }

        .footer-logo .f-logo-wrap span {
            margin-left: 27px;
            padding: 30px 0 30px 27px;
            border-left: 1px solid #ccc;
            font-size: clamp(24px, 2.500vw, 40px);
            color: #000;
        }

        .footer-mid {
            margin: 35px 0 50px;
        }

            .footer-contact {
                margin-right: max(50px, 6.188vw);
            }

            .footer .footer-title {
                font-family: var(--font-family-title);
                font-size: max(24px, 1.938vw);
                font-weight: 600;
                letter-spacing: .05em;
                color: var(--secondary);
                text-transform: uppercase;
                margin-bottom: 30px;
            }

            .f-contact-wrap {
                font-size: 1vw;
                color: #6b6b6b;
                letter-spacing: .05em;
            }

                .f-contact-wrap > div > div {
                    display: flex;
                    align-items: center;
                    line-height: 1.500vw;
                    margin-bottom: 8px;
                }

                    .f-contact-wrap .f-contact-left {
                        margin-right: max(50px, 6.188vw);
                    }

                    .f-contact-wrap .f-contact-right div:first-of-type {
                        align-items: flex-start;
                    }

                    .f-contact-wrap > div > div span {
                        color: var(--secondary);
                        font-size: 16px;
                        margin-right: 20px;
                    }

                        .f-contact-wrap > div > div > span.ai-font-envelope {
                            font-size: 12px;
                        }

                        .f-contact-wrap > div > div > span.ai-font-location-c {
                            font-size: 22px;
                            float: left;
                            padding-top: 5px;
                        }

                        .f-contact-wrap > div > div > span.ai-font-business-card {
                            font-size: 20px;
                        }

            .footernav {
/*                display: flex;*/
                flex-direction: column;
                flex-wrap: wrap;
/*                height: 8.500vw;*/
                width: 21.25vw;
                column-count: 2;
            }

            .footernav li {
                margin-bottom: 1.250vw;
                line-height: 23px;
            }

                .footernav a {
                    font-size: 1vw;
                    color: #6b6b6b;
                    letter-spacing: .05em;
                    text-transform: uppercase;
                }

    .footer-disc {
        padding-top: 55px;
        border-top: 1px solid #dadada;
        color: #6b6b6b;
        font-size: max(12px, 0.875vw);
        line-height: max(20px, 1.500vw);
        letter-spacing: .05em;        
        margin-bottom: 40px;
    }

    .footer .copyright {
        color: #6b6b6b;
        font-size: max(11px, 0.875vw);
        line-height: max(20px, 1.500vw);
        letter-spacing: .05em;
    }

        .footer .copyright .ai-icon {
            display: inline-block;
            font-size: 2vw;
            color: var(--secondary);
            margin-left: 3px;
        }

    .footer a {
        color: #6b6b6b;
        transition: var(--animate);
    }

        .footer a:is(:hover, :focus) {
            color: var(--secondary);
        }

/* 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;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    font-family: var(--font-family-title);
    font-size: 50px;
    font-weight: 600 !important;
    letter-spacing: .05em;
    color: var(--secondary);
    line-height: 1;
    text-transform: uppercase;
    line-height: 1;
} 

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {
    font-size: clamp(30px, 2.500vw, 40px);
    color: var(--dark);
    line-height: 1;
}

/* CF7 override */

div.wpcf7-response-output {
    text-align: center;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    width: 100%;
    max-width: 210px;
    font-size: clamp(10px, 0.875vw, 14px);
    left: 0;
    z-index: 50;
}


.wpcf7-spinner {
    position: absolute;
}

/* ihf override */

#ihf-main-container .mc-total-payment-subline {
    color: #666;
}

.leaflet-container .leaflet-top.leaflet-right {
    z-index: 999;
}

#ihf-main-container ul {
    margin-left: 0;
}

#listings-details .listings-form textarea {
    padding-right: 50px !important;
}

/* POJO accessibility */

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;
}

body.pojo-a11y-grayscale {
    overflow-x: hidden;
    overflow-y: auto;
}

body.pojo-a11y-grayscale {
    filter: none !important;
    -webkit-filter: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    -ms-filter: none !important;
    -o-filter: none !important;
}
body.pojo-a11y-grayscale #main-wrapper {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
}

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;
}

/** Archive Default Layout (Archive Page) */
#content .archive-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

#content .archive-list:before,
#content .archive-list:after {
    display: none;
}

#content .archive-list > article {
    float: none;
}

#content .archive-list .post {
    border-bottom: none;
}

#content .archive-list .archive-thumbnail,
#content .archive-list .archive-content {
    width: 100%;
}

#content .archive-list .archive-thumbnail a {
    display: block;
    outline: none;
}

#content .archive-list .archive-thumbnail canvas {
    display: block;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

#content .archive-list .article-long .archive-thumbnail {
    width: 60%;
}

#content .archive-list .article-long .archive-has-thumbnail {
    width: 37%;
    margin-left: 3%;
}

#content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
    margin-top: 0;
    font-size: 32px;
}

#content .archive-list .article-long p {
    font-size: 22px;
}

#content .archive-more {
    font-style: normal;
    text-decoration: none;
}


body.single-post .entry-thumbnail img {
    width: 100%;
    max-width: 100%;
    display: block;
}


.page-id-15 .aios-contact-photo img {
    height: auto;
}

html .aios-contact-form input[type="submit"] {
    background: var(--accent);
    color: #fff;
    border: 0;
}

html .aios-contact-form input[type="submit"]:hover {
    background: var(--secondary);
}

/* pre-launch */

body.ihf-results-template #inner-page-wrapper > .container {
    width: 100%;
}

body.aios-custom-ihomefinder-details-template div#listings-details:before {
    content: "";
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    display: block;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

html #listings-results .listings-grid .listings-col.dark-bg .listings-footer {
    background: var(--accent);
}

html #listings-results .listings-grid .listings-col:hover .listings-footer {
    background: var(--secondary);
}

html .aios-custom-ihomefinder-results-template #content-full .entry-title {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

html #listings-details .listings-description h2,
html #listings-details .listings-accordion h2,
html #listings-details .listings-form h2 span, 
html #listings-details .listings-address{
    color: var(--secondary);
}


input#ihf-login-user-password,
input#ihf_inforeq_password {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none !important;
    box-shadow: none !important;
    display: block;
    width: 100%;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    border: none !important;
    border-bottom: 1px solid #a5a5a5 !important;
    border-radius: 0 !important;
    padding: 0 !important;
    color: #636363;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: none;
}

.aios-about-img img {
    height: auto;
}

.aios-custom-ihomefinder-results-template .ip-banner {
    display: block;
}

.aios-custom-ihomefinder-results-template:not(.aios-custom-ihomefinder-shortcode) #inner-page-wrapper>.container {
    padding-left: 15px;
    padding-right: 15px;
}

#content .aios-contact-title span {
	color: inherit;
}



/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
/* Styles for category/archive/search/etc subheadings (h2) */
/* 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) {
    .footernav  {
        column-count: 1;
    }
    #content .archive-list .article-long .archive-has-thumbnail {
        width: 100%;
        margin: 0 auto;
    }

    #content .archive-list .article-long .archive-thumbnail {
        width: 100%;
    }

    #content .archive-list .article-long .archive-has-thumbnail .archive-subtitle {
        margin-top: .75em;
    }

    #content .archive-list .article-long p {
        font-size: 16px;
    }

    .hide-mobile {
        display: none !important;
    }

    .column-m {
        flex-direction: column;
    }

    .full-width-m {
        width: 100% !important;
    }

    .mobile-center {
        text-align: center !important;
    }

    .m-flex-center {
        justify-content : center;
    }

    .hp-btn {
        width: 275px;
        height: 45px;
        font-size: 12px;
    }

    .section-title :is(h1, h2) {
        font-size: clamp(28px, 5.045vw, 50px) !important;
    }

        .section-title :is(h1 span, h2 span) {
            font-size: clamp(12px, 1.615vw, 16px) !important;
        }
    
    .header {
        position: relative;
        padding: 80px 15px 20px;
        background: #fff;
    }

        .hdr-logo {
            margin: 0;            
        }

            .hdr-logo img {
                filter: invert(0);
            }

            .hdr-logo span {
                color: var(--dark);
                border-color: #787878;
            }

    .f-logo-wrap img {
        /*max-width: 80px;*/
    }

    .footer-logo .f-logo-wrap span {        
        padding-left: 20px;
        margin-left: 20px;
    }

    .footer-contact {
        margin-right: 0;
    }

        .f-contact-wrap {
            font-size: 14px;
            margin-bottom: 40px;
        }

            .f-contact-wrap .f-contact-left,
            .f-contact-wrap .f-contact-right {
                margin-right: 0;        
                width: 100%;
            }

                .f-contact-wrap > div > div {
                    justify-content: center;
                    margin-bottom: 15px;
                    line-height: 22px;
                }

                    .f-contact-wrap > div > div span {
                        margin-right: 10px;
                    }

    .footernav {
        height: 100%;
        width: 100%;
    }

        .footernav li {
            margin: 10px 0;
        }

        .footernav a {
            font-size: 14px;
        }

    .footer .copyright .ai-icon {
        font-size: 24px;
        margin-top: 10px;
    }

    #content .entry-title, #content .archive-title {
        font-size: clamp(36px, 7.045vw, 50px);
    }
      
  /* 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%;
  }
 
}
/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
  .ip-banner .container {
    width: 100%;
  }
}
/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */

.grecaptcha-badge {
    z-index: 99999;
}