/*******************************************************
 *
 * Landing Page - Sell My Home
 *
 *******************************************************/
 :root {
    --body-font: 'Lato', sans-serif;
    --title-font: 'Italiana', sans-serif;
    --philosopher: 'Philosopher', sans-serif;
    /** Use for input, button, and any other element */
    --primary-color: #000000;
    --secondary-color: #b5926e;
    --gradient: linear-gradient(to right, rgba(181,146,110,1) 0%,rgba(191,162,130,1) 47%,rgba(181,146,110,1) 100%);
    --primary: #000000;
    --secondary: #b5926e;
    --default-transition: 0.3s ease-in-out;
}

.footer-address {
    display: block !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 35px;
}

.footer-contacts > span:last-child {
    display: none;
}

.footer-contacts span:nth-child(2) {
    border-right: 0 !important;
    padding-right: 0;
}

.attachment-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.attachment-fixed canvas {
    background-attachment: fixed!important;
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.attachment-scroll {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.attachment-scroll canvas {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.site-img {
    display: block;
    position: relative;
}

.site-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.site-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: 1;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.custom-container {
    padding: 0 0;
    width: calc(100% - 50px);
    max-width: 1500px;
    margin: 0 auto;
}

/* Global Title */
.global-title, .global-title h2 {
    display: block;
    position: relative;
}

.global-title h2 span {
    font-size: 72px;
    font-family: var(--title-font);
    text-transform: uppercase;
    line-height: 1;
    color: var(--secondary-color);
    display: block;
    margin-left: 40px;
}

.global-title h2 small {
    font-size: 30px;
    font-family: var(--body-font);
    display: inline-block;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    margin-bottom: -17px;
    position: relative;
    padding: 19px 16px;
    /* border-left: 2px solid var(--secondary-color); */
    border-left: 0;
}

.global-title.is-black h2 small {
    border-color: #000;
}

.global-title.is-black h2 span {
    color: #000;
}

.global-title.is-white h2 small {
    color: #fff;
}

.global-title.is-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

/* Global Button */
.global-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    max-width: 210px;
    height: 53px;
    background-color: transparent;
    font-size: 13px;
    letter-spacing: 0.500em;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    border: none;
    padding: 0;
    color: #000;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.global-btn > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.global-btn:before, .global-btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    pointer-events: none;
}

.global-btn:before {
    border: 1px solid var(--secondary-color);
    margin: -6px 6px;
}

.global-btn:after {
    border: 1px solid #000;
}

.global-btn span:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--gradient);
    margin: -7px 6px;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all var(--default-transition);
    -webkit-transition: all var( --default-transition);
    -o-transition: all var( --default-transition);
    transition: all var( --default-transition);
}

.global-btn.is-white:after {
    border-color: #fff;
}

.global-btn.is-white {
    color: #fff;
}

.global-btn:focus, .global-btn:hover {
    color: #fff;
}

.global-btn:focus:before, .global-btn:hover:before {
    opacity: 0;
    visibility: hidden;
}

.global-btn:focus span:before, .global-btn:hover span:before {
    opacity: 1;
    visibility: visible;
}

/*Global Slide Controls*/
.global-slide-control {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    pointer-events: none;
}

.global-slide-control button {
    width: 60px;
    height: 70px;
    border: none;
    display: inline-block;
    vertical-align: middle;
    background-color: transparent;
    font-size: 22px;
    line-height: 1;
    padding: 0;
    border-bottom: 1px solid #000;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    pointer-events: auto;
    font-weight: 700;
}

.global-slide-control button:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
}

#inner-page-wrapper {
    margin-bottom: 0;
    z-index: auto;
}

#inner-page-wrapper > .container {
    padding: 0;
    width: 100%;
}

.ip-banner {
    display: none;
}

.header-btn a {
    text-align: center;
    width: 300px;
    max-width: 100%;
}

.header-nav {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 57px;
    margin-left: auto;
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1028;
    width: 100%;
    font-size: 0;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100px;
    padding: 29px 0;
}

.header-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.logo a {
    display: block;
    position: relative;
    pointer-events: none;
}

.logo img {
    max-width: 100%;
    height: auto;
}

.header-nav {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-right: 57px;
    margin-left: auto;
}

/* Sub Menu */
#nav > li {
    padding: 0 24px;
}

#nav {
    margin: 0 -24px;
    display: none;
}

#nav li {
    position: relative;
    display: inline-block;
}

#nav li a {
    font-size: 15px;
    letter-spacing: 0.050em;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    position: relative;
    line-height: 1;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

#nav > li > a:before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    opacity: 0;
}

#nav > li:focus-within > a:before, #nav > li:hover > a:before {
    opacity: 1;
    width: 100%;
}

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

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    padding: 0;
    position: absolute;
    width: 100%;
    min-width: 195px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

#nav .sub-menu li a {
    display: block;
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-transform: uppercase;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

#nav .sub-menu > li {
    position: relative;
    display: block;
    background-color: rgba(0,0,0,.90);
    margin: 0 auto;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

#nav .sub-menu li:hover {
    background-color: var(--secondary-color);
}

#nav .sub-menu li:hover > a {
    color: #fff;
    text-decoration: none;
}

#nav li:focus-within > .sub-menu, #nav li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 42px;
}

#nav li > .sub-menu .sub-menu {
    margin-left: calc(100% + 1px);
    top: 0;
    padding-top: 0!important;
}

#nav li {
    border: none!important;
}

/* Footer */
.footer-main-container, #footer-main, .footer-container, .footer-logo, .footer-contact-holder, .copyright, .mls-logo {
    display: block;
    position: relative;
}

.footer-container {
    padding: 65px 0 36px;
    background-color: #000;
    font-size: 0;
}

.footer-container .custom-container {
    max-width: 1430px;
}

.footer-main-container:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 100%;
    height: 69%;
    pointer-events: none;
    height: 100%;
    z-index: 1;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(143,117,92,1)),color-stop(50%, rgba(122,100,78,1)),to(rgba(72,58,44,1)));
    background: -o-linear-gradient(top, rgba(143,117,92,1) 0%,rgba(122,100,78,1) 50%,rgba(72,58,44,1) 100%);
    background: linear-gradient(to bottom, rgba(143,117,92,1) 0%,rgba(122,100,78,1) 50%,rgba(72,58,44,1) 100%);
    opacity: 0.70;
}

.footer-bg {
    height: 100%;
}

.footer-logo {
    margin-bottom: 45px;
    text-align: center;
}

.footer-main {
    z-index: 5;
    position: relative;
}


.footer-logo a {
    display: inline-block;
    position: relative;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

.footer-info-holder span {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.075em;
    color: #fff;
    display: block;
}

.footer-info-holder {
    text-align: center;
    margin-bottom: 33px;
}

.footer-info-holder span:not(:last-child) {
    margin-bottom: 10px;
}

.footer-contacts, .footer-smi {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

.footer-contact-holder {
    text-align: center;
    padding-bottom: 40px
}

.footer-contacts span {
}

.footer-contacts span {
    font-size: 14px;
    letter-spacing: 0.075em;
    line-height: 1;
    color: #fff;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 0 17px;
}

.footer-contacts span em {
    display: inline-block;
    vertical-align: middle;
    font-size: 11px;
    letter-spacing: 0.075em;
    color: #cbc3b1;
    font-style: italic;
    margin-right: 5px;
    font-weight: 400;
}

.footer-contacts span a {
    color: inherit;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-contacts span a:hover {
    color: var(--secondary-color);
}

.footer-contacts span:not(:last-child) {
    border-right: 1px solid #fff;
}

.footer-contacts span:first-child {
    padding-left: 0;
}

.footer-contacts span:last-child {
    padding-right: 0;
}

.footer-contacts {
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px solid #fff;
}

.footer-smi a {
    display: inline-block;
    vertical-align: middle;
    font-size: 20px;
    line-height: 1;
    color: #cbc3b1;
    -webkit-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
}

.footer-smi a:hover {
    color: var(--secondary-color);
}

.footer-smi a:not(:last-child) {
    margin-right: 17px;
}

.footer-nav-wrap {
    display: block;
    position: relative;
    text-align: center;
    margin: 60px 0 55px;
    display: none;
}

#footer-nav > li {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}

#footer-nav > li > a {
    font-size: 15px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

#footer-nav > li > a:hover {
    color: var(--secondary-color);
}

#footer-nav > li:not(:last-child) {
    margin-right: 43px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,.50);
    padding-top: 40px;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.050em;
    color: #fff;
    font-weight: 400;
    margin-bottom: 15px;
    text-align: center;
}

.copyright span {
    text-transform: uppercase;
}


.copyright a {
    color: inherit;
    -webkit-transition: all var(--default-transition);
    -o-transition: all var(--default-transition);
    transition: all var(--default-transition);
}

.copyright a:hover {
    color: var(--secondary-color);
}

.mls-logo {
    text-align: center;
}

.mls-logo span {
    display: inline-block;
    vertical-align: middle;
    font-size: 23px;
    color: #fff;
    margin: 0 5px;
}

.mls-logo span:first-child {
    margin-left: 0;
}

.mls-logo span:last-child {
    margin-right: 0;
}

.mls-logo span.ai-font-realtor-mls {
    font-size: 31px;
}

/* remove landing popup */
.landing-popup-container {
    display: none
}

body.popup-active {
    overflow: auto
}

/* hero */
#hero {
    background: #000;
    min-height: 800px;
}

.hero-banner {
    background: #000;
    position: relative;
}

.hero-banner .custom-container {
    max-width: 1198px;
    width: 95%;
}

.hero-banner-bg {
    opacity: .30;    
}

.hero-main {
    padding: 200px 0 0;
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-content {
    width: 55%;
    padding-top: 110px;
}

.hero-content h1 {
    font-size: 66px;
    font-family: var(--title-font);
    text-transform: uppercase;
    margin-bottom: 35px;
}

.hero-content h1 span {
    display: block;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.5;
    padding-right: 100px;
}

.hero-form {
    width: 45%;
}

.hero-form-box {
    background: #000;
    border: 2px #b5926e solid;
    border-radius: 20px;
    max-width: 495px;
    margin: 0 auto;
    padding: 80px 55px;
    position: relative;
    top: 50px;
}


.hero-form h2 {
    font-size: 30px;
    font-family: var(--title-font); 
    margin-bottom: 30px;
}

.hero-form h2 span {
    display: block;
}

.hero-form-box  .lp-field {
    margin: 5px 0;
    position: relative;
}

.lp-field .wpcf7-not-valid-tip {
    position: absolute;
    right: 0;
    left: auto;
}

.hero-form-box .wpcf7 {
    position: relative;
}

.hero-form-box div.wpcf7-response-output {
    position: absolute;    
    color: #fff !important;
}

.hero-form-box  .lp-field .wpcf7-form-control{
    width: 100%;
    height: 65px;
    border: 0;
    color: #5f5f5f;
    font-size: 15px;
    padding: 0 20px;
}

.hero-form-box .global-btn {
    max-width: none;
}

.hero-form-box .lp-submit {
    margin-top: 40px;
}

/* ctas */
#ctas {
    padding: 150px 0 100px;
}

.ctas-title {
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.ctas-title p {
    font-size: 18px;
    margin: 30px auto 40px;
    max-width: 565px;
    line-height: 1.5;
}

.ctas-list {
    font-size: 0;
    margin-bottom: 60px;
}

.ctas-item {
    display: inline-block;
    width: 25%;
    vertical-align: top;
    padding: 0 10px;
}

.ctas-item-img {
    background: #000;
}

.ctas-item-img img {
    opacity: .80;
}

.ctas-item-img-label {
    position: absolute;
    left: -5px;
    bottom: -10px;
    font-size: 40px;
    color: #fff;
    z-index: 1;
    text-transform: uppercase;    
    font-size: 70px;
    font-weight: 700;
}

.ctas-btn .global-btn {
    margin: 0 auto;
    min-width: 330px;
}

.ctas-item-text {
    padding: 25px 0;
}

.ctas-item-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.ctas-item-title span {
    display: block;
}

.ctas-item-text p {
    font-size: 17px;
    line-height: 1.5;
}

/* about */
#about {
    background: #f7f7f7;
    padding: 100px 0;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 59.5%;
    height: 90%;
    background: url(../../images/sell-my-home/about-monogram.png) no-repeat top;
    background-size: contain;
    opacity: .05;
}

.about-main {
    font-size: 0;
}

.about-img {
    width: 40%;
    display: inline-block;
    vertical-align: top;
}

.about-txt {
    width: 60%;
    display: inline-block;
    vertical-align: top;
    margin-left: auto;
    padding-left: 75px;
}

.about-txt .global-title h2 {
    margin-bottom: 20px;
}

.about-txt p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.about-txt .global-title h2 span {
    margin-left: 0;
}

/* featured-content */
#featured-content .custom-container {
    max-width: 1600px;
    width: 100%;
}

.featured-content-item {
    padding: 100px 0;
}

.featured-content-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.featured-content-item::before {
    content: '';
    width: 300px;
    height: 100px;
    background: #b5926e;
    position: absolute;
    top: 0;
    right: 0;
    background-image: url(../../images/sell-my-home/feat-content-accent.jpg);
    background-size: cover;
}

.featured-content-item:nth-child(even) {
    flex-direction: row-reverse;
}

.featured-content-item:nth-child(even)::before {
    left: 0;
    right: auto;
}

.featured-content-item-img{
    width: 40%;
}

.featured-content-item-txt p {
    margin-bottom: 30px;
    line-height: 1.5;
    font-size: 18px;
}

.featured-content-item-txt .global-title h2 {
    margin-bottom: 30px;
}

.featured-content-item-txt .global-title h2 span {
    margin-left: 0;
}

.featured-content-item-txt .global-title h2 small {
    padding-left: 0;
}

.featured-content-btns {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.featured-content-btns .global-btn {
    max-width: none;
    margin: 0 10px;
}

.featured-content-item-txt {
    padding: 0 90px;
    width: 60%;
}

/*Testimonials*/
.testi-container, .testi-main, .testi-slide-holder, .testi-slide, .testi-content, .testi-more-btn {
    display: block;
    position: relative;
}

.testi-container {
    padding: 0 0 98px;
    font-size: 0;
}

.testi-container .global-title h2 span {
    margin-left: 0;
}

.testi-bg {
    width: 50%;
}

.testi-bg:before {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255,255,255,0)),to(rgba(255,255,255,1)));
    background: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
    z-index: 1;
}

.testi-main {
    z-index: 5;
}

.testi-main .global-title {
    margin-bottom: 45px;
}

.testi-item {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    position: relative;
}

.testi-slide:not(.slick-initialized) .testi-item:nth-child(n+2) {
    display: none;
}

.testi-content {
    text-align: center;
}

.testi-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

.testi-content span.testi-author {
    font-size: 16px;
    line-height: 1;
    color: #000;
    display: block;
    margin-top: 34px;
    font-weight: 700;
}

.testi-more-btn a {
    margin: 0 auto;
}

.testi-more-btn {
    margin: 70px auto 0;
}

.testi-more-btn .global-btn {
    max-width: 340px;
}

.testi-container .custom-container {
    max-width: 1285px;
}

.testi-slide {
    max-width: 944px;
    margin: 0 auto;
}

.testi-slide-control {
    top: 25%;
}

/*******************************************************
 *
 * Mobile styles and other media queries
 *
 *******************************************************/
@media only screen and (max-width: 1560px) {
    #nav li a {
        font-size: 14px;
    }

    #nav > li {
        padding: 0 20px;
    }

    #nav {
        margin: 0 -20px;
    }

    #nav .sub-menu li a {
        font-size: 13px;
    }

    .header-nav {
        margin-right: 50px;
    }

}

@media only screen and (max-width: 1440px) {
    .header-wrapper > .container {
        padding: 0 40px;
    }

    .header-nav {
        margin-right: 45px;
    }

    .logo img {
        max-width: 150px;
        width: 100%;
    }

    .footer-container .custom-container, .welc-container .custom-container, .about-container > .custom-container, .fl-container > .custom-container {
        padding: 0 40px;
    }
}

@media only screen and (max-width: 1366px) {
    .global-title h2 span {
        font-size: 60px;
        margin-left: 35px;
    }

    .global-title h2 small {
        font-size: 25px;
        padding: 15px 15px;
        margin-bottom: -12px;
    }

    .global-slide-control button {
        width: 50px;
        height: 60px;
        font-size: 20px;
    }

    .header-wrapper > .container {
        padding: 0 30px;
    }

    #nav li a {
        font-size: 13px;
    }

    #nav > li {
        padding: 0 18px;
    }

    #nav {
        margin: 0 -18px;
    }

    #nav .sub-menu li a {
        font-size: 12px;
    }
    
}

@media only screen and (max-width: 1280px) {
    .global-title h2 small {
        font-size: 23px;
    }

    .global-btn {
        max-width: 190px;
        height: 50px;
        letter-spacing: 0.400em;
        font-size: 12px;
    }

    .logo img {
        max-width: 130px;
    }

    #nav > li {
        padding: 0 15px;
    }

    #nav {
        margin: 0 -15px;
    }

    .header-btn a {
        width: 270px;
    }

    .hero-img-main canvas, .hero-img-bg canvas {
        background-attachment: scroll!important;
    }
}

/* iPad(landscape) | iPad(landscape) | Galaxy Tab 4 (landscape) | Galaxy Tab 3 (landscape) */
@media only screen and (max-width: 1199px) {
    .global-title h2 span {
        font-size: 50px;
        margin-left: 25px;
    }

    .global-btn {
        height: 45px;
        letter-spacing: 0.300em;
        font-size: 11px;
        max-width: 165px;
    }

    .global-slide-control button {
        width: 45px;
        height: 50px;
        font-size: 17px;
    }

    #nav > li {
        padding: 0 10px;
    }

    #nav {
        margin: 0 -10px;
    }

    #nav li a {
        letter-spacing: 0.020em;
        font-size: 12px;
    }

    #nav .sub-menu li a {
        font-size: 11px;
    }

    #nav .sub-menu {
        min-width: 170px;
    }

    .footer-container .custom-container {
        /* max-width: 930px; */
    }

    .footer-logo img {
        max-width: 170px;
    }

    .header-btn a {
        width: 215px;
    }

    .footer-contacts {
        padding-right: 10px;
        margin-right: 10px;
    }

    .footer-contacts span {
        font-size: 13px;
        letter-spacing: 0.010em;
        padding: 0 15px;
    }

    .footer-nav-wrap {
        margin: 40px 0;
    }

    #footer-nav > li:not(:last-child) {
        margin-right: 35px;
    }

    #footer-nav > li > a {
        font-size: 14px;
    }

    .copyright {
        padding-top: 30px;
    }
}

/* iPad(portrait) | Galaxy Tab 4(portrait)  */
@media only screen and (max-width: 991px) {
    .global-title h2 {
        text-align: center;
    }

    .global-title h2 span {
        margin-left: 0;
    }

    .global-title h2 small {
        padding: 10px 10px;
        margin-bottom: 5px;
    }

    .global-title {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .global-btn {
        font-size: 12px;
    }

    .global-slide-control {
        position: relative;
        top: 0!important;
        left: 0!important;
        -webkit-transform: none!important;
        -ms-transform: none!important;
        transform: none!important;
        max-width: 108px;
        margin: 25px auto 0;
    }

    .header-nav {
        display: none;
    }

    .footer-contacts span {
        display: block;
        border: none!important;
        padding: 0;
        font-size: 14px;
        letter-spacing: 0.020em;
    }

    .footer-contacts, .footer-smi {
        display: block;
    }

    .footer-contacts {
        padding: 0;
        margin: 0 0 15px;
        border: none;
    }

    .footer-contacts span:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-container {
        padding: 50px 0 30px;
    }

    .landing-popup-col {
        display: block;
        width: 100%!important;
    }

    .landing-popup-row {
        display: block;
    }

    .landing-popup-wrapper {
        display: block;
        padding: 50px 10px;
    }    

    .header-wrapper {
        position: relative;
        background-color: #000;
        display: block;
        padding: 15px 0;
        min-height: 0;
    }
    
    .global-slide-control.fc-slide-control, .global-slide-control.fl-slide-control {
        width: 100%!important;
        max-width: 500px!important;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
    }

    #footer-nav > li:not(:last-child) {
        margin-right: 0;
    }

    #footer-nav > li {
        padding: 2px 10px;
    }

    #footer-nav > li > a {
        font-size: 13px;
    }

    .copyright {
        padding-top: 30px;
        font-size: 13px;
        line-height: 1.2;
    }

    .footer-nav-wrap {
        margin: 30px 0;
    }

    .ctas-item {
        width: 50%;
    }

    .about-img {
        width: 100%;
        max-width: 575px;
        margin: 0 auto 60px;
        display: block;
    }

    .about-txt {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .featured-content-item {
        flex-wrap: wrap;
        justify-content: center;
    }

    .featured-content-btns {
        flex-wrap: wrap;
    }

    .featured-content-btns .global-btn {
        margin: 15px 0;
    }

    .featured-content-item-txt{
        width: 100%;
        margin-bottom: 60px;
    }

    .featured-content-item {
        padding-top: 140px;
    }

    .featured-content-item::before {
        left: 50% !important;
        transform: translateX(-50%);
        right: auto !important;;
    }

    .hero-main {
        flex-wrap: wrap;
    }

    .hero-form {
        width: 100%;
    }

    .hero-content {
        width: 100%;
        text-align: center;        
    }
    .hero-content p {
        padding-right: 0;
    }
}

/* Galaxy Tab 3(portrait) | Galaxy S5(landscape) */
@media only screen and (max-width: 767px) {
    .qs-title h2 {
        font-size: 30px;
    }

    .footer-container .custom-container, .welc-container .custom-container, .about-container > .custom-container, .fl-container > .custom-container {
        padding: 0 15px;
    }
}

/* Galaxy S5(portrait) | iPod Touch(landscape) | iPod Touch(portrait) */
@media only screen and (max-width: 480px) {
    .global-title h2 span {
        font-size: 35px;
    }

    .global-title h2 small {
        font-size: 18px;
    }

    .footer-info-holder span {
        line-height: 1.2;
    }

    .ctas-item {
        width: 100%;
    }

}