:root {
    /** Font default */
    --font-family-default: "Open Sans", sans-serif;
    --font-family-title: "Libre Baskerville", serif;
    --font-family-baskerville: "Baskervville", serif;
    --font-size-default: 16px;
    --font-size-title: 3.333vw;
    --font-color-default: #000000;
    --font-color-title: #000;
    /** Use for input, button, and any other element */
    --primary: #f2aa20;
    --secondary: #2b4050;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #343a40;
    --default-transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* 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:visited,
a:focus,
input,
input:focus,
textarea,
textarea:focus,
select:focus,
select {
    outline: none !important;
    text-decoration: none !important;
}

.slick-slide {
    outline: none !important;
}

.label-hide {
    display: none !important;
}

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

/*global photo*/
.global-photo {
    position: relative;
}

.global-photo canvas {
    display: block;
    width: 100%;
    -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-photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -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 title*/
.global-title {
    font-size: 18px;
    font-weight: 500;
    color: #8c8c8c;
    text-transform: uppercase;
    position: relative;
    line-height: 1;
    letter-spacing: 3px;
    max-width: max-content;
}

.global-title span {
    display: block;
    font-size: var(--font-size-title);
    font-weight: 400;
    font-family: var(--font-family-title);
    text-transform: capitalize;
    letter-spacing: 0;
    margin-left: -4px;
    margin-top: 20px;
    background: #F2AA20;
    background: linear-gradient(to right, #F2AA20 0%, #FACC1A 50%, #F2AB20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.global-title em {
    color: #bfbfbf;
    font-style: normal;
    margin-right: 10px;
    display: inline-block;
}

.global-title em i {
    color: var(--primary);
}

/*global btn*/
.global-btn {
    font-size: 15px;
    font-weight: 500;
    color: #000 !important;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 100%;
    max-width: 195px;
    height: 56px;
    background: transparent;
    -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-btn span {
    position: relative;
    display: block;
    z-index: 5;
}

.global-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-image: linear-gradient(90deg, rgba(242, 170, 32, 1) 0%, rgba(250, 204, 26, 0.6951155462184874) 100%);
    border-image-slice: 1;
    /*opacity: .7;*/
    z-index: 1;
}

.global-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(242, 170, 32);
    background: linear-gradient(90deg, rgba(242, 170, 32, 1) 0%, rgba(250, 204, 26, 0.6951155462184874) 100%);
    opacity: 0;
    -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-btn:hover::after {
    opacity: 1;
}

.global-btn:hover {
    color: #fff !important;
}

/*global arrow*/
.global-arrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
}

.global-arrow button {
    background: transparent;
    border: none;
    pointer-events: auto;
    padding: 5px;
    -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-arrow button:hover {
    opacity: .7;
}

.arrow-n,
.arrow-p {
    display: inline-block;
    width: 36px;
    height: 16px;
    background: url(../../assets/images/arrow-n.png) no-repeat;
    background-size: contain;
}

.arrow-p {
    background: url(../../assets/images/arrow-p.png) no-repeat;
    background-size: contain;
}

/*site bg*/
.site-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.site-bg canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.site-bg.fixed-bg canvas {
    background-attachment: fixed;
}

.name-Safari.safari-true .site-bg.fixed-bg canvas {
    background-attachment: local;
}

.site-bg.grayscale-bg canvas {
    filter: grayscale(1);
}

/* Sub Menu */
ul.header-nav-col li {
    position: relative;
    display: inline-block;
}

ul.header-nav-col .sub-menu {
    list-style: none outside none;
    margin: 0;
    background: transparent;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 194px;
    top: 50%;
    left: 50%;
    padding-top: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.show-fixed ul.header-nav-col .sub-menu {
    padding-top: 27px;
}

ul.header-nav-col .sub-menu a {
    color: #fff;
    display: block;
    padding: 12px;
    background: rgb(43 64 80 / 85%);
}

ul.header-nav-col .sub-menu a:hover {
    text-decoration: none;
    background: rgb(21 39 52 / 85%);
}

ul.header-nav-col .sub-menu .sub-menu {
    margin-left: calc(100% + 2px);
    top: 0;
    left: 0;
    padding-top: 0 !important;
}

ul.header-nav-col li:hover>.sub-menu {
    top: 100%;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

ul.header-nav-col .sub-menu li {
    position: relative;
    display: block;
}

ul.header-nav-col .sub-menu li:last-child {
    border-bottom: none;
}

/*fixed header*/
header.main-header.show-fixed {
    /*background: var(--secondary);*/
    padding: 10px 15px;
}

.show-fixed nav.header-nav ul.header-nav-col>li>a {
    /*color: var(--secondary);*/
}

/*main header*/
header.main-header {
    z-index: 1001;
    position: fixed;
    padding: 30px 15px 15px;
    width: 100%;
    background: var(--secondary);
    left: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.logo-holder a {
    position: relative;
    display: block;
    max-width: 278px;
    margin: 0 auto;
    /*min-height: 77px;*/
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.show-fixed .logo-holder a {
    max-width: 219px;
    /*min-height: 60px;*/
}

.logo-holder a img {
    margin: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.logo-holder a img.fixed-logo {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: scale(0.5);
}

/*.show-fixed .logo-holder a img.default {
    opacity: 0;
    transform: scale(0.5);
}

.show-fixed .logo-holder a img.fixed-logo {
    opacity: 1;
    transform: unset;
}*/

.header-nav .menu-main-nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header-nav-col.nav-left,
.header-nav-col.nav-right {
    width: 39%;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.logo-holder {
    width: 22%;
    margin: 0 auto;
}

.header-nav .header-nav-col.nav-left {
    text-align: right;
    padding-right: 35px;
}

.header-nav .header-nav-col.nav-right {
    text-align: left;
    padding-left: 44px;
}

.hdr-holder {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
}

/*end*/

/*header nav*/
#nav {
    display: none;
}

nav.header-nav {
    position: relative;
    text-align: center;
}

nav.header-nav ul.header-nav-col {
    font-size: 0;
    position: relative;
    z-index: 5;
}

nav.header-nav ul.header-nav-col>li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 0 41px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav.header-nav ul.header-nav-col.nav-right>li {
    margin: 0 32px;
}

nav.header-nav ul.header-nav-col>li>a {
    font-size: var(--font-size-default);
    color: #fff;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: block;
    position: relative;
    z-index: 5;
    padding: 15px 0;
    background: transparent;
    transform: translateZ(0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav.header-nav ul.header-nav-col>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 1px;
    background: var(--primary);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

nav.header-nav ul.header-nav-col>li:hover>a::after {
    width: 62%;
}

nav.header-nav ul.header-nav-col .sub-menu a {
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-align: center;
    margin-bottom: 1px;
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*end*/

/*Slide menu*/
.site-offcanvas {
    overflow: hidden;
    position: relative;
}

.site-offcanvas .offcanvas-backdrop.active {
    visibility: visible;
}

.site-offcanvas .offcanvas-backdrop {
    position: fixed;
    z-index: 1002;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
}

.slide-menu-content {
    position: fixed;
    bottom: 0;
    right: -50%;
    width: 100%;
    max-width: 1422px;
    height: 100%;
    opacity: 0;
    z-index: 1002;
    visibility: hidden;
    background: var(--secondary);
    -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;
}

.slide-menu-content.active {
    right: 0;
    opacity: 1;
    visibility: visible;
}

.slide-menu-inner-content {
    position: relative;
    height: 100%;
    overflow-y: auto;
    z-index: 2;
    padding: 110px 15px 15px 150px;
}

.slide-menu-nav {
    padding-top: 42px;
}

ul#slidenav {
    font-size: 0;
    margin-left: -34px;
}

ul#slidenav>li {
    margin-bottom: 71px;
    display: inline-block;
    vertical-align: top;
    padding: 0 44px;
}

ul#slidenav>li>a {
    padding: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-family-title);
    position: relative;
    transform: translateZ(0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

ul#slidenav>li ul.sub-menu a {
    font-size: 15px;
    color: #fff;
    font-weight: 500;
    padding: 0;
    margin-bottom: 12px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    transform: translateZ(0);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

ul#slidenav>li>a:hover,
ul#slidenav>li ul.sub-menu a:hover {
    opacity: .7;
}

ul#slidenav>li>.sub-menu {
    margin-top: 29px;
}

ul#slidenav>li>.sub-menu li {
    display: block;
    margin: 0 0 26px;
}

ul#slidenav>li>.sub-menu li:last-child {
    margin-bottom: 0;
}

ul#slidenav>li:nth-child(5) {
    min-width: 460px;
    padding-right: 20px;
}

ul#slidenav>li:nth-child(5)>.sub-menu {
    column-count: 2;
    column-gap: 100px;
}

ul#slidenav>li:nth-child(5)>.sub-menu li a {
    text-transform: capitalize;
}

ul#slidenav>li:nth-child(6) {
    padding-left: 30px;
}

.close-b-menu {
    font-size: 42px;
    cursor: pointer;
    z-index: 4;
    text-align: center;
    position: absolute;
    top: 50px;
    right: 45px;
    -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;
}

.close-b-menu em {
    background: #F2AA20;
    background: linear-gradient(to right, #F2AA20 0%, #FACC1A 50%, #F2AB20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.close-b-menu:hover {
    opacity: .7;
}

body.body-overflow {
    overflow: hidden;
}

.slide-menu-logo a {
    display: block;
    position: relative;
    max-width: 274px;
}

.slide-menu-logo {
    margin: 0 0 16px;
}

.slide-menu-col-wrap {
    display: flex;
    flex-wrap: wrap;
}

.slide-menu-col-1 {
    width: 67.224%;
    padding-right: 15px;
    position: relative;
}

.slide-menu-col-2 {
    width: 32.776%;
    padding-left: 67px;
}

.slide-menu-col-1::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 88%;
    background: rgb(242, 170, 32);
    background: linear-gradient(90deg, rgba(242, 170, 32, 1) 0%, rgba(250, 204, 26, 1) 50%, rgba(242, 170, 32, 1) 100%);
}

.slide-menu-contact.contact-details {
    margin-top: 42px;
}

/*end*/

/*burger menu*/
.header-nav .header-nav-col.nav-right li.b-menu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 48px;
    margin-left: 28%;
}

.header-burger-menu {
    position: relative;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.bm-line span {
    width: 100%;
    height: 2px;
    display: block;
    margin: 12px 0;
    background: rgb(242, 170, 32);
    background: linear-gradient(90deg, rgba(242, 170, 32, 1) 0%, rgba(250, 204, 26, 1) 100%);
    -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;
}

.bm-line span:nth-child(2) {
    width: 30px;
}

.header-burger-menu:hover span {
    opacity: .7;
}

/*end*/

/*contact details*/
.contact-details {
    font-size: 0;
}

.contact-details span {
    display: flex;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 16px;
}

.contact-details span a {
    color: #fff;
    position: relative;
    -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;
}

.contact-details span a:hover {
    opacity: .7;
}

.contact-details span>em {
    font-size: 20px;
    display: block;
    min-width: 22px;
    margin-right: 18px;
    color: #f3ac1f;
    margin-top: 5px;
}

span.cd-email em {
    font-size: 14px;
}

span.cd-loc em {
    font-size: 23px;
}

span.cd-phone em {
    font-size: 17px;
}

span.cd-phone>i {
    display: block;
    position: relative;
    top: -2px;
    margin: 0 5px;
}

.cd-smi a {
    font-size: 21px;
    color: #fff;
    margin: 0;
    pointer-events: auto;
    position: relative;
    z-index: 4;
    width: 40px;
    height: 40px;
    margin-right: 18px;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 100%;
    -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;
}

.cd-smi a:hover {
    background: var(--primary);
}

.cd-smi {
    padding: 3px 0 0 41px;
}

/*end*/

/*footer*/
footer.main-footer {
    position: relative;
    padding: 330px 15px 145px;
    background: #000;
}

.ftr-bg canvas {
    opacity: .3;
}

.ftr-inner {
    position: relative;
    z-index: 5;
    max-width: 1368px;
    margin: 0 auto;
}

.gt-title {
    margin-bottom: 60px;
}

.gt-title .global-title {
    text-align: center;
    margin: 0 auto;
}

.gt-title .global-title em {
    display: none;
}

.home .gt-title .global-title em {
    display: initial;
}

.gt-form {
    max-width: 1096px;
    margin: 0 auto;
}

.gt-form form {
    position: relative;
    margin: 0 -18px;
    font-size: 0;
    z-index: 1;
}

.gt-fields input,
.gt-fields textarea {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .7px;
    text-transform: uppercase;
    background: transparent;
    width: 100%;
    height: 70px;
    color: #fff;
    padding: 0;
    border-radius: 0;
    resize: none;
    border: none;
    border-bottom: solid 1px #fff;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.gt-form textarea {
    padding-top: 28px;
    height: 122px;
    padding-right: 35px;
    overflow-y: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.gt-fields.gt-textarea {
    width: 100%;
    margin-bottom: 0;
    position: relative;
}

.gt-fields {
    position: relative;
    width: 50%;
    padding: 0 18px;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 31px;
}

.gt-form div.wpcf7 .ajax-loader {
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -18px;
}

.gt-form span.wpcf7-not-valid-tip {
    font-size: 14px;
}

.gt-form span.wpcf7-form-control-wrap {
    display: block;
}

.gt-form div.wpcf7-response-output {
    margin: auto;
    position: absolute;
    width: calc(100% - 36px);
    font-size: 14px;
    color: #fff;
    text-align: center;
    left: 0;
    right: 0;
    margin-top: 5px;
}

.gt-form .wpcf7-spinner {
    position: absolute;
    bottom: -24px;
    left: 0;
    right: 0;
    margin: auto;
}

.gt-form .use-floating-validation-tip span.wpcf7-not-valid-tip {
    position: absolute;
    top: auto;
    bottom: 5px;
    left: 0;
    z-index: 100;
    border: 1px solid #ff0000;
    background: #fff;
    padding: .2em .8em;
    width: auto;
    right: auto;
}

.gt-btn {
    position: absolute;
    bottom: 22px;
    right: 18px;
    width: 32px;
    height: 32px;
}

.gt-btn input {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0;
    padding: 0;
    background: transparent;
}

.gt-btn .airplane-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: url(../../assets/images/airplane.png) no-repeat;
    background-size: contain;
    -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;
}

.gt-btn:hover .airplane-icon {
    opacity: .7;
}

/*footer content*/
.ftr-content {
    position: relative;
    padding: 144px 0 0;
}

.ftr-col-wrap {
    display: flex;
    flex-wrap: wrap;
}

.ftr-col1,
.ftr-col3 {
    width: 24.562%;
    padding-left: 25px;
}

.ftr-col2 {
    margin-top: 52px;
    width: 50.876%;
}

.ftr-title {
    font-size: 28px;
    font-weight: 400;
    font-family: var(--font-family-baskerville);
    color: #f3ac1f;
    margin: 0 0 31px;
    max-width: max-content;
    background: #F2AA20;
    background: linear-gradient(to right, #F2AA20 0%, #FACC1A 50%, #F2AB20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ftr-logo a {
    display: block;
    max-width: 535px;
    margin: 0 auto;
    position: relative;
}

.ftr-col3 .ftr-title {
    margin-bottom: 24px;
    padding-bottom: 5px;
}

/*end*/

/*footer nav*/
ul.footernav {
    font-size: 0;
    column-count: 2;
}

ul.footernav>li {
    display: block;
    margin: 0 0 25px;
}

ul.footernav>li>a {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: .7px;
    position: relative;
    -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;
}

ul.footernav>li>a:hover {
    opacity: .7;
}

/*end*/

/*disclaimer*/
.ftr-disclaimer {
    position: relative;
    max-width: 1178px;
    margin: 38px auto 0;
}

.ftr-disclaimer p {
    line-height: 2;
    letter-spacing: 0.24px;
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    text-align: center;
}

.ftr-disclaimer a {
    color: #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;
}

.ftr-disclaimer a:hover {
    opacity: .7;
}

/*end*/

/*copyright & mls*/
.footer-copyright,
.footer-copyright a {
    font-size: 13px;
    font-weight: 300;
    letter-spacing: .8px;
    color: #fff;
    line-height: 1.2;
    margin-top: 32px;
    text-align: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.footer-copyright span {
    font-weight: 700;
    color: var(--primary);
}

.footer-copyright a:hover {
    opacity: .7;
}

.footer-copyright a[href="https://www.agentimage.com"] {
    color: var(--primary);
    text-decoration: underline !important;
}

.footer-copyright a[href="https://www.agentimage.com"]:hover {
    opacity: .7;
}

/*end*/

/*mls*/
.mls {
    font-size: 23px;
    color: var(--primary);
    text-align: center;
    margin: 29px 0 0;
}

.mls em {
    margin: 0 2px;
}

/*pojo*/
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;
}

/*end*/

/* Global */
/*******************************************************
 *
 * 4. IP Styles
 *
 *******************************************************/
.ip-banner {
    position: relative;
    width: 100%;
    margin-top: 122px;
}

.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,
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.2;
    letter-spacing: .6px;
}

#content p {
    line-height: 2;
    letter-spacing: .6px;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */
#content .entry-title,
#content .archive-title {
    display: block;
    font-size: var(--font-size-title);
    font-weight: 400;
    font-family: var(--font-family-title);
    text-transform: capitalize;
    letter-spacing: 0;
    background: #F2AA20;
    background: linear-gradient(to right, #F2AA20 0%, #FACC1A 50%, #F2AB20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: normal !important;
}

/* Styles for category/archive/search/etc subheadings (h2) */
#content .archive-subtitle {}

#content .entry-custom-title {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-family-default);
    color: #8c8c8c;
    text-transform: uppercase;
    position: relative;
    line-height: 1;
    letter-spacing: 3px;
    max-width: max-content;
    background: transparent;
    -webkit-text-fill-color: unset;
}

#content .entry-custom-title span {
    display: block;
    font-size: var(--font-size-title);
    font-weight: 400;
    font-family: var(--font-family-title);
    text-transform: capitalize;
    letter-spacing: 0;
    margin-left: -4px;
    margin-top: 15px;
    background: #F2AA20;
    background: linear-gradient(to right, #F2AA20 0%, #FACC1A 50%, #F2AB20 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.ip-container footer.main-footer {
    padding-top: 100px;
}

#ai-modern-about #breadcrumbs {
    padding: 0 50px;
}

#ai-modern-about .ai-modern-about-title h2 span {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 0.06em;
    color: var(--primary);
}

#ai-modern-about .ai-modern-about-contact li a {
    line-height: 1.7;
}

body #ai-modern-about {
    margin-top: 0;
}

button.btn.dropdown-toggle.bs-placeholder.btn-default,
button.btn.dropdown-toggle.btn-default {
    border-radius: 0;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%;
    height: 44px;
    text-align: left;
    resize: none;
    border: none;
    border-bottom: 1px solid #838383;
    padding: 0 15px 0 30px;
    background: url(../../assets/images/qs-arrow.png) no-repeat scroll right 1px center;
    -webkit-appearance: none;
    box-shadow: none !important;
    outline: none !important;
}

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

.error404 .use-floating-validation-tip .wpcf7-not-valid-tip {
    position: absolute;
    top: 2px;
    width: auto;
}

#ihf-main-container span.glyphicon.glyphicon-remove-circle {
    color: #fff !important;
}

.post-page-get-a-free-home-valuation #inner-page-wrapper {
    margin-bottom: 0;
}

.post-page-get-a-free-home-valuation #aios-home-valuation-wrap {
    padding: 120px 0;
}

.post-page-get-a-free-home-valuation .aios-home-valuation-step-wrap .aios-home-valuation-form p {
    text-align: center;
}

.single-aios-communities p#breadcrumbs {
    max-width: 100% !important;
    padding: 0 !important;
}

.page-template-template-classic-properties:not(.aios-custom-ihomefinder-shortcode) #inner-page-wrapper>.container article,
body.aios-custom-ihomefinder-template-classic:not(.aios-custom-ihomefinder-shortcode) #inner-page-wrapper>.container article {
    padding: 0 15px;
}

.aios-custom-ihomefinder-results-template .ai-classic-properties-heading {
    padding: 0;
}

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

#aios-home-valuation-wrap .aios-home-valuation-agent-photo img {
    max-height: 500px;
}

.aios-custom-ihomefinder-details-template #ai-classic-properties-details-wrap .ai-classic-pd-slideshow-wrap .splide__arrows {
    left: 15px !important;
    right: 15px !important;
}

.aios-custom-ihomefinder-details-template #ai-classic-properties-details-wrap .ai-classic-pd-slideshow-wrap .splide__arrow {
    font-size: 40px;
    text-shadow: 1px 1px 1px #000;
    transform: none !important;
    color: #fff;
}

#listings-details .listings-hero .listings-slideshow-splide:after {
    display: none !important;
}

#listings-details .listings-hero:after {
    content: "";
    position: absolute;
    z-index: 3;
    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;
    display: block !important;
}

#listings-details .listings-slideshow-text span {
    text-shadow: 1px 2px 2px #000 !important;
}

.aios-custom-ihomefinder-results-template #content #breadcrumbs,
.aios-custom-ihomefinder-results-template #content h1.entry-title {
    max-width: 100%;
    padding: 0;
}

.aiosp-wrap .aiosp-ref-\#agents-popup-form input[type=submit]:hover {
    color: var(--aios-agents-primary-color) !important;
}

.aios-custom-ihomefinder-details-template #ai-classic-properties-details-wrap .ai-listings-details-form .listings-field button {
    margin-top: 25px;
}

.aios-custom-ihomefinder-details-template #ai-classic-properties-details-wrap .ai-listings-details-form .wpcf7-spinner {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: -55px;
}

#ihf-main-container.ihf-modal-container .modal input[type=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;
}

#ai-classic-properties-details-wrap .ai-classic-pd-slideshow-wrap.disable-overlay .ai-classic-pd-slide-main:after {
    opacity: 0;
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
@media only screen and (min-width: 1921px) {
    :root {
        --font-size-title: 70px;
    }
}

@media only screen and (max-width: 1740px) {
    .header-nav .header-nav-col.nav-right li.b-menu {
        margin-left: 0;
    }
}

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

    /*header*/
    nav.header-nav ul.header-nav-col>li {
        margin: 0 31px;
    }

    nav.header-nav ul.header-nav-col.nav-right>li {
        margin: 0 22px;
    }

    .header-nav .header-nav-col.nav-right li.b-menu {
        left: 90%;
    }

    .show-fixed ul.header-nav-col .sub-menu {
        padding-top: 18px;
    }

    /*end*/

    /*slide menu*/
    .slide-menu-content {
        max-width: 90%;
    }

    .slide-menu-inner-content {
        padding: 70px 15px 15px 70px;
    }

    ul#slidenav>li {
        padding: 0 40px;
    }

    /*end*/
}

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

    .ip-banner {
        margin-top: 115px;
    }

    /*header*/
    nav.header-nav ul.header-nav-col>li {
        margin: 0 21px;
    }

    nav.header-nav ul.header-nav-col.nav-right>li {
        margin: 0 12px;
    }

    /*end*/

    /*slide menu*/
    .slide-menu-inner-content {
        padding: 50px 15px 15px 50px;
    }

    ul#slidenav>li {
        padding: 0 30px;
    }

    ul#slidenav>li:nth-child(5) {
        min-width: 405px;
    }

    .close-b-menu {
        font-size: 32px;
    }

    /*end*/
}

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

    .ip-banner {
        margin-top: 100px;
    }

    .site-bg.fixed-bg canvas {
        background-attachment: local !important;
    }

    .global-title {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .global-title em {
        margin-right: 0;
    }

    .global-btn {
        font-size: 14px;
        letter-spacing: 1px;
    }

    /*header*/
    nav.header-nav ul.header-nav-col>li {
        margin: 0 11px;
    }

    nav.header-nav ul.header-nav-col.nav-right>li {
        margin: 0 5px;
    }

    nav.header-nav ul.header-nav-col>li>a {
        font-size: 14px;
    }

    .header-nav .header-nav-col.nav-right li.b-menu {
        min-width: 40px;
    }

    /*end*/

    /*slide menu*/
    .slide-menu-inner-content {
        padding: 30px 15px 15px 30px;
    }

    ul#slidenav>li {
        padding: 0 10px;
    }

    ul#slidenav {
        margin-left: -15px;
    }

    ul#slidenav>li:nth-child(5) {
        min-width: 342px;
        padding-right: 15px;
    }

    ul#slidenav>li:nth-child(5)>.sub-menu {
        column-gap: 36px;
    }

    ul#slidenav>li:nth-child(6) {
        padding-left: 15px;
    }

    .slide-menu-col-2 {
        padding-left: 30px;
    }

    /*end*/

    /*footer*/
    footer.main-footer {
        padding: 200px 15px 70px;
    }

    .gt-form {
        max-width: 896px;
    }

    .ftr-content {
        padding: 74px 0 0;
    }

    .ftr-col1,
    .ftr-col3 {
        padding-left: 0;
    }

    .ftr-col2 {
        padding: 0 30px;
    }

    /*end*/

}

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

    /* The following are used on inner pages. Please edit carefully. */
    .ip-banner {
        margin-top: 0;
    }

    .inner {
        width: 100%;
    }

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

    .outer {
        width: 100%;
        min-width: 100%;
    }

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

    /*end*/

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

    .aios-mobile-header-wrapper {
        z-index: 1001 !important;
    }

    :root {
        --font-size-title: 45px;
    }

    body.body-overflow {
        overflow: unset;
    }

    nav.header-nav ul.header-nav-col,
    .site-offcanvas {
        display: none !important;
    }

    .global-title {
        margin: 0 auto;
        text-align: center;
    }

    .global-btn {
        margin: 0 auto;
    }

    .global-btn {
        max-width: 170px;
        height: 46px;
    }

    /*header*/
    header.main-header {
        z-index: 101;
        position: relative;
        padding: 70px 15px 15px;
        background: var(--secondary);
    }

    header.main-header.show-fixed {
        padding: 70px 15px 15px;
    }

    .logo-holder {
        width: 100%;
    }

    .logo-holder a {
        max-width: 219px;
    }

    .logo-holder a img.default {
        /*opacity: 0;*/
    }

    .logo-holder a img.fixed-logo {
        /*opacity: 1;
        transform: unset;*/
    }

    /*end*/

    /*footer*/
    footer.main-footer {
        padding: 100px 15px 50px;
    }

    .gt-title {
        margin-bottom: 30px;
    }

    .gt-fields {
        margin-bottom: 15px;
    }

    .ftr-col-wrap>div {
        width: 100%;
    }

    .ftr-title {
        margin: 0 auto 30px;
    }

    .contact-details span {
        justify-content: center;
    }

    .cd-smi {
        padding: 0;
        text-align: center;
    }

    .ftr-col2 {
        padding: 0;
    }

    .ftr-logo a {
        max-width: 435px;
    }

    .ftr-col3 {
        margin-top: 30px;
    }

    ul.footernav {
        text-align: center;
        column-count: 1;
    }

    /*end*/

    #ai-modern-about #breadcrumbs {
        padding: 0 15px;
        margin-left: auto;
        margin-right: auto;
        max-width: 750px;
    }

    body #agents-results .agents-col:nth-child(even) .agents-item,
    body #agents-results .agents-col:nth-child(even) .agents-main {
        flex-direction: unset;
    }

    body #agents-results .agents-contact {
        justify-content: center;
    }

    .aios-roadmaps-default-wrapper .aios-roadmaps-default-content img {
        height: auto !important;
    }

    #listings-details .listings-hero:after {
        display: none !important;
    }

    #agents-single .agents-img {
        max-width: 360px;
        margin: auto;
    }

    #agents-results .agents-img {
        max-width: 350px;
        margin: auto;
    }
}

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

    :root {
        --font-size-title: 35px;
    }

    /*footer*/
    .gt-fields {
        margin-bottom: 10px;
        width: 100%;
    }

    /*end*/
}

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

    :root {
        --font-size-title: 30px;
    }

    /*get in touch*/

    /*end*/

    /*footer*/

    /*end*/
}