@import url('https://fonts.googleapis.com/css?family=Kodchasan:200,300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rouge+Script&display=swap');
body {
    font-family: 'Kodchasan', sans-serif;
    /*overflow-x: hidden;*/
}

ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

p {
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    color: #636a6a;
}

a:hover {
    text-decoration: none;
}

.trs {
    transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
}

header {
    position: fixed;
    padding-top: 0px;
    z-index: 6667;
    width: 100%;
    top: 0px;
    background: rgba(32, 32, 32, 0.45);
}

header.sticky {
    background: rgba(32, 32, 32, 0.65);
}

.logo-warp {
    width: 100%;
    max-width: 130px;
    display: inline-block;
    float: left;
    padding: 15px 0;
    margin-left: 15px;
}

.logo-warp img {
    width: 100%;
}

.header-menu {
    float: left;
}


/** menu **/

.menu-mobile-icon {
    display: none;
}

.main-navigation {
    float: left;
    margin-left: 35px;
}

.nav {
    position: relative;
}

.nav>a {
    display: none;
}

.nav li {
    position: relative;
    list-style: none;
    margin-right: 20px;
}

.nav li a {
    font-family: 'Kodchasan', sans-serif;
    display: block;
    position: relative;
    font-size: 14px;
    color: #efefef;
    font-weight: 500;
    padding: 35px 0px;
    display: inline-block;
    height: 86px;
    transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
}

.nav li a.child-menu {
    padding-right: 30px;
}

.nav li a.child-menu:after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 14px;
    color: #005599;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 19px;
    right: 15px;
    margin-top: 0px;
}

.nav li a:active {
    color: #007dc6;
}


/* first level */

.nav>ul {
    margin-bottom: 0px;
}

.nav>ul>li {
    width: auto;
    height: 100%;
    float: left;
}

.nav>ul>li>a {
    text-align: center;
    cursor: pointer
}

.nav>ul>li:not( :last-child)>a {
    /*border-right: 1px solid #cc470d;*/
}

.nav>ul>li:hover>a,
.nav>ul:not( :hover)>li.active>a {
    color: #efefef;
}

.main-navigation .nav li a:after,
.main-navigation .nav li a:after {
    content: "";
    position: absolute;
    background: #f0a532;
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* ie10+ */
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    /* ie6-9 */
    height: 4px;
    width: 0px;
    bottom: 0px;
    left: 0px;
    /* border-radius: 0 0 10px 10px; */
    transition: all .5s ease 0s;
    -webkit-transition: all .5s ease 0s;
    -moz-transition: all .5s ease 0s;
    -o-transition: all .5s ease 0s;
    -ms-transition: all .5s ease 0s;
}

.main-navigation .nav li:hover a:after,
.main-navigation .nav li.active a:after {
    width: 100%;
}


/* second level */

.nav li ul {
    background-color: #fff;
    display: none;
    position: absolute;
    top: 100%;
    z-index: 9999;
    width: 260px;
}

.nav li:hover ul {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
}

.nav li:hover ul li ul {
    display: none;
}

.nav li:hover ul li:hover ul {
    display: block;
    left: 100%;
    top: 0px;
}

.nav li:not( :first-child):hover ul {
    left: -1px;
}

.nav li ul a {
    font-size: 1.25em;
    /* 20 */
    border-top: 1px solid #bbbbbb;
    padding: 0.75em;
    /* 15 (20) */
    color: #6e6e6e;
    display: block;
}

.nav li ul li a:hover,
.nav li ul:not( :hover) li.active a {
    background-color: #70c93b;
    color: #fff;
}

.top-right {
    float: right;
}

.top-right-right {
    float: right;
    height: 86px;
    border-left: rgba(255, 255, 255, 0.1) 1px solid;
}

.login-btns {
    height: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.3);
}

.login-btns a {
    font-family: 'Kodchasan', sans-serif;
    position: relative;
    font-size: 13px;
    color: #eeeeee;
    font-weight: 500;
    padding: 15px 0px;
    margin: 0 8px;
    display: inline-block;
}

.top-enq-btn {
    float: left;
}

.top-enq-btn a {
    display: block;
    width: 208px;
    height: 36px;
    text-align: center;
    /*background:#efbb16;*/
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* ie10+ */
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    /* ie6-9 */
    padding: 7px 15px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.top-enq-btn a img {
    width: 13px;
    margin-right: 5px;
}

.top-enq-btn a:hover {
    background: -moz-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(205, 128, 10, 1)), color-stop(100%, rgba(254, 181, 68, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ie10+ */
    background: linear-gradient(90deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd800a', endColorstr='#feb544', GradientType=1);
    /* ie6-9 */
}

.home-banner-outer {
    position: relative;
}


/*Flex Slider*/

.home-banner {
    width: 100%;
    margin: 0 auto;
    box-shadow: none;
    border: 0px;
}

.home-banner li {
    position: relative;
}

.home-banner li img {
    width: 100%;
}

.home-banner li .meta {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0px;
    right: 0px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background: rgba(32, 32, 32, 0.2);
    padding: 50px 80px;
    padding-top: 150px;
}

.meta-in {
    margin: auto 0;
    margin: auto 0;
    width: 100%;
    text-align: center;
}

.meta-in img {
    width: 100%;
    max-width: 600px;
}

.home-banner li h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    color: #232b5e;
}

.home-banner li h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    color: #fe682d;
    text-transform: uppercase;
    margin-top: 10px;
    position: relative;
    padding-bottom: 20px;
}

.home-banner li h2 span {
    color: #000000;
    font-size: 36px;
}

.home-banner li h2:before {
    content: "";
    position: absolute;
    width: 130px;
    height: 4px;
    background: #fe682d;
    bottom: 0px;
    left: 0px;
}

.home-banner li h2:after {
    content: "";
    position: absolute;
    width: 27px;
    height: 4px;
    background: #232b5e;
    bottom: 0px;
    left: 135px;
}

.banner-description {
    margin-top: 20px;
}

.banner-description p {
    font-family: 'Oswald', sans-serif;
    font-size: 32px;
    line-height: 48px;
    color: #232a5e;
    font-weight: 500;
}

.banner-btns {
    margin-top: 10px;
}

.banner-btns a.btn {
    display: inline-block;
    padding: 13px 30px;
    background: #232b5e;
    border-radius: 0px;
    color: #fff;
    text-transform: uppercase;
}

.banner-btns a.banner-orange-btn {
    background: #fe682d;
    margin-right: 10px;
}

.banner-btns a.blue-orange-btn {
    background: #232b5e;
}

.flex-control-nav {
    display: none;
}

.flex-control-paging li a {
    width: 30px;
    height: 3px;
    display: block;
    background: #fff;
}

.flex-control-paging li a:hover {
    background: #fe682d;
}

.flex-control-paging li a.flex-active {
    background: #fe682d;
    cursor: default;
}

.home-banner li h3,
.home-banner li h2,
.home-banner li .banner-description,
.home-banner li a.banner-orange-btn,
.home-banner li a.blue-orange-btn {
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}

.home-banner li.flex-active-slide .meta h3,
.home-banner li.flex-active-slide .meta h2,
.home-banner li.flex-active-slide .meta .banner-description,
.home-banner li.flex-active-slide .meta a.banner-orange-btn,
.home-banner li.flex-active-slide .meta a.blue-orange-btn {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
    -webkit-animation-duration: .6s;
    animation-duration: .6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

.home-banner li.flex-active-slide .meta h2 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

.home-banner li.flex-active-slide .meta .banner-description {
    -webkit-animation-delay: .6s;
    animation-delay: .6s;
}

.home-banner li.flex-active-slide .meta a.banner-orange-btn {
    -webkit-animation-delay: .8s;
    animation-delay: .8s;
}

.home-banner li.flex-active-slide .meta a.blue-orange-btn {
    -webkit-animation-delay: .9s;
    animation-delay: .9s;
}

.flex-direction-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    /*left: 30px;
		display:none;*/
}

.flex-direction-nav li {
    width: 22px;
    height: 40px;
    display: block;
    position: absolute;
}

.flex-direction-nav a {
    width: 22px;
    height: 40px;
    display: block;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 1;
}

.flex-direction-nav li.flex-nav-prev {
    left: 15px;
}

.flex-direction-nav li.flex-nav-next {
    right: 15px;
}

.flex-direction-nav a.flex-prev {
    background-image: url(../images/banner_left_arrow.png);
    left: 0px;
}

.flex-direction-nav a.flex-next {
    background-image: url(../images/banner_right_arrow.png);
    left: 0px;
}

.home-banner:hover a.flex-prev {}

.home-banner:hover .flex-next {}

.flex-direction-nav a:before {
    display: none;
}

.home-banner:hover .flex-next:hover,
.home-banner:hover .flex-prev:hover {
    opacity: 1;
}

.flex-direction-nav a.flex-next:before {
    content: '\f105';
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
    }
}


/* the wrapper element that will become the outer circle */

.arrow-wrap {
    position: absolute;
    z-index: 99999;
    left: 50%;
    bottom: 50px;
    width: 38px;
    height: 48px;
    margin-left: -11px;
    display: block;
    color: #fff;
    text-align: center;
    cursor: pointer;
    margin-bottom: 20px;
    background: url(../images/banner-bottom-arrow.png) no-repeat center center;
    background-size: 30px auto;
}

.bounce {
    bottom: 0;
    margin-top: -25px;
    margin-left: -25px;
    -webkit-animation: bounce 1s infinite;
}

@-webkit-keyframes bounce {
    0% {
        bottom: 5px;
    }
    25%,
    75% {
        bottom: 15px;
    }
    50% {
        bottom: 20px;
    }
    100% {
        bottom: 0;
    }
}

.home-about {
    background: url(../images/aboutbanner.png) no-repeat top center;
    background-size: 100% auto;
    position: relative;
    padding: 100px 0;
}

h2.main-head {
    font-size: 36px;
    line-height: 48px;
}

h2.main-head span {
    font-family: 'Rouge Script', cursive;
    color: #bf7809;
    font-size: 52px;
}

.building-process {
    padding-bottom: 80px;
}

.process-step .btn:focus {
    outline: none
}

.process {
    display: table;
    width: 100%;
    position: relative
}

.process-row {
    display: table-row
}

.process-step button {
    bottom: 0px;
    background: #fff;
    box-shadow: 0 2px 11px 0 rgba(0, 0, 0, .1);
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    position: absolute;
    left: 50%;
    margin-left: -30px;
}

.process-row:before {
    bottom: 30px;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    z-order: 0;
    border-bottom: #c4c4c4 1px dashed;
}

.process-step {
    display: table-cell;
    text-align: center;
    position: relative;
    padding-bottom: 65px;
    width: 14%;
}

.process-step p {
    margin-top: 4px;
    font-weight: 600;
}

.btn-circle {
    width: 54px;
    height: 54px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%
}

.tab-content>.active {
    display: block;
    opacity: 1;
}

.btn-info {
    color: #fff;
    background-color: #ffb543 !important;
    border-color: #ffb543 !important;
    position: relative;
    box-shadow: none !important;
}

.btn-info:before {
    content: "";
    position: absolute;
    width: 68px;
    height: 68px;
    display: block;
    border: #feb544 1px solid;
    border-radius: 50%;
    left: 0px;
    top: 0px;
    margin-top: -8px;
    margin-left: -8px;
}

.building-process-tab {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.building-process .tab-content {
    padding-top: 30px;
}

.tab-content-left {
    min-height: 160px;
}

.tab-content-left span {
    font-size: 140px;
    color: #f8f8f8;
    position: absolute;
    right: 0px;
    top: 0px;
}

.tab-content-left h3 {
    font-size: 26px;
    line-height: 32px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    padding-top: 40px;
}

.tab-content-left h3:before {
    content: "";
    position: absolute;
    background: #ffb543;
    height: 4px;
    width: 60px;
    bottom: 0px;
    left: 0px;
}

.tab-content-right {
    padding-top: 30px;
}

.tab-content-right p {
    font-size: 18px;
    color: #646464;
    line-height: 28px;
}

.manager-section {
    padding: 100px 0;
    background: #fff;
}

.manager-warp-in {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.manager-content-warp {
    margin-top: 100px;
}

.manager-content-warp p {
    font-size: 18px;
    color: #646464;
    line-height: 28px;
}

a.yellow-btn {
    text-align: center;
    display: inline-block;
    /* background: #efbb16; */
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 15px 30px;
}

a.yellow-btn:hover {
    background: -moz-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(205, 128, 10, 1)), color-stop(100%, rgba(254, 181, 68, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ie10+ */
    background: linear-gradient(90deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd800a', endColorstr='#feb544', GradientType=1);
    /* ie6-9 */
}

.Schedule-meeting-form input {
    border-radius: 0px;
    box-shadow: none;
    border: 0px;
    height: 46px;
}

.Schedule-meeting-form select {
    border-radius: 0px;
    box-shadow: none;
    border: 0px;
    height: 46px;
}

.Schedule-meeting-form input.send-btn {
    text-align: center;
    /* background: #efbb16; */
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.Schedule-meeting-form input.send-btn:hover {
    background: -moz-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(205, 128, 10, 1)), color-stop(100%, rgba(254, 181, 68, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ie10+ */
    background: linear-gradient(90deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd800a', endColorstr='#feb544', GradientType=1);
    /* ie6-9 */
}

.addui-slider {
    display: block;
    box-sizing: border-box;
}

.addui-slider * {
    box-sizing: border-box;
}

.addui-slider:not(.addui-slider-isrange) {
    cursor: pointer;
}

.addui-slider .addui-slider-track {
    display: block;
    position: relative;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0;
}

.addui-slider .addui-slider-track .addui-slider-range {
    display: block;
    background: #ffffff;
    border-radius: 0;
    position: absolute;
    top: -1px;
}

.addui-slider .addui-slider-track .addui-slider-handle {
    display: block;
    width: 18px;
    height: 18px;
    position: absolute;
    border-radius: 50%;
    cursor: pointer;
    z-index: 0;
    background: #f3a835;
}

.addui-slider .addui-slider-track .addui-slider-handle .addui-slider-value {
    display: block;
    float: right;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-top: 0px;
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s, background 1s, transform 1s, margin 1s, border-radius 1s;
    transform: scale(1, 0) rotate(-135deg);
    transform-style: preserve-3d;
    position: absolute;
    z-index: 1;
}

.addui-slider .addui-slider-track .addui-slider-handle .addui-slider-value span {
    display: block;
    transform: rotate(135deg);
    width: 100%;
    height: 100%;
    text-align: center;
    font-weight: 600;
    line-height: 27px;
    position: absolute;
    z-index: 1;
    margin-top: -13px;
}

.addui-slider .addui-slider-track .addui-slider-handle.addui-slider-handle-active .addui-slider-value {
    opacity: 1;
    transform: scale(1, 1) rotate(-135deg);
    margin-top: 10px;
}

.addui-slider-handle.addui-slider-handle-l.addui-slider-handle-active.right-value .addui-slider-value {
    margin-left: 6px;
    font-size: 14px;
}

.addui-slider-handle.addui-slider-handle-l.addui-slider-handle-active.left-value .addui-slider-value {
    margin-left: -28px;
    font-weight: 700;
}

.addui-slider .addui-slider-track .addui-slider-handle:after {
    display: block;
    content: " ";
    width: 10px;
    height: 10px;
    background: #f3a835;
    border-radius: 5px;
    position: relative;
    top: 2px;
    left: 0;
}

.addui-slider.addui-slider-vertical {
    height: calc(100% - 50px);
    width: 50px;
    margin: 25px 16px;
}

.addui-slider.addui-slider-vertical .addui-slider-track {
    height: 100%;
    width: 4px;
    top: 0;
    left: 23px;
}

.addui-slider.addui-slider-vertical .addui-slider-track .addui-slider-range {
    width: 4px;
    height: auto;
}

.addui-slider.addui-slider-vertical .addui-slider-track .addui-slider-handle {
    left: -24px;
    top: auto;
    transform: translateY(50%);
}

.addui-slider.addui-slider-vertical .addui-slider-track .addui-slider-handle.addui-slider-handle-l {
    z-index: 2;
}

.addui-slider.addui-slider-horizontal {
    height: auto;
    width: 100%;
    margin: 0;
    padding: 12px 0px 12px 0;
}

.addui-slider.addui-slider-horizontal .addui-slider-track {
    height: 4px;
    width: 100%;
    top: 8px;
    left: 0;
}

.addui-slider.addui-slider-horizontal .addui-slider-track .addui-slider-range {
    width: auto;
    height: 4px;
}

.addui-slider.addui-slider-horizontal .addui-slider-track .addui-slider-handle {
    left: auto;
    top: -8px;
    transform: translateX(-50%);
}

.addui-slider .addui-slider-track .addui-slider-handle:hover .addui-slider-value span {
    font-size: 12px !important;
}

.gallery {
    padding-top: 50px;
}

.contnt-gallery {
    /*background: #bfb102;*/
    font-family: 'Poppins', sans-serif;
    font-size: 29px;
    font-weight: 300;
    /* min-height: 100%; */
    /* width: 100%; */
    position: relative;
    margin: auto;
}

.contnt-gallery h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    letter-spacing: 0px;
    line-height: 41px;
    font-weight: 300;
    /* margin-left: 30px; */
    /* padding-left: 0px; */
}

.contnt-gallery span {
    font-family: 'Great Vibes', cursive;
    font-size: 36px;
}

.no-padding {
    padding: 1px
}

.photo {
    max-width: 33.33%;
}

.photoGrid {
    padding: 0px;
    width: 100%;
    overflow-x: hidden;
    z-index: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 50px;
}

.photoGrid .item {
    display: -ms-flexbox;
    display: flex;
    padding: 15px 15px;
    width: 25%;
}

.new-inventory-wrapper {
    position: relative;
}

.widthitem {
    min-width: 340px;
}

.photoGrid .item img {
    width: 100%;
}

.photoGrid .item .imghold img {
    /* min-height:445px;*/
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(3, 3, 3, 0.65);
    z-index: 12;
    opacity: 0;
    background-image: url(../images/overlay_logo.png);
    background-repeat: no-repeat;
    background-size: 100px auto;
    background-position: right 15px bottom 15px;
    transition: .5s ease;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    -o-transition: .5s ease;
    -ms-transition: .5s ease;
}

.photoGrid .item:hover .product-overlay {
    opacity: 1;
}

.product-overlay img {
    top: 50%;
    left: 50%;
    z-index: 20;
    position: relative;
    width: 38px !important;
    height: 38px !important;
    margin-top: -16px;
    margin-left: -16px;
}

div.ppt {
    display: none !important;
}

.product-overlay span {
    top: 60%;
    left: 50%;
    z-index: 20;
    position: relative;
    margin-top: 0px;
    margin-left: -66px;
    color: #FFF;
    text-transform: uppercase;
    font-size: 12px;
}

.Schedule-meeting {
    background: url(../images/Schedule_meeting_bg.jpg);
    background-size: cover;
    padding: 150px 0;
    position: relative;
}

.Schedule-meeting:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(21, 21, 21, 0.7);
    top: 0px;
    left: 0px;
}

.Schedule-meeting h2.main-head {
    color: #e8e4e8;
}

.Schedule-meeting-form {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

footer {
    background: #151515;
    padding: 120px 0;
}

.center-text {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
}

.center-text h4 {
    color: #bf7809;
    font-size: 18px;
    font-weight: 800;
}

.center-text p {
    color: #a7a7a7;
}

.footer-logos {}

.footer-links {
    border-top: #2d2d2d 1px solid;
    border-bottom: #2d2d2d 1px solid;
    padding: 15px 0;
}

.footer-links a {
    display: inline-block;
    font-size: 13px;
    color: #a7a7a7;
    margin: 10px 15px;
}

.footer-links a:hover {
    color: #eea431;
}

.footer-links a.footer-social {
    float: right;
}

.footer-links a.footer-social span {
    display: inline-block;
    background: #8a8a8a;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: #151515;
    font-size: 12px;
    text-align: center;
}

.copy-right-text {
    font-size: 13px;
    color: #a7a7a7;
}

.powered-by {
    text-align: right;
}

.mobile-spec {
    display: none;
}


/******************************
Inner Pages
********************************/

.inner-banner {
    background: url(../images/inner_banner.jpg) no-repeat;
    background-size: cover;
    min-height: 260px;
    padding: 45px 0;
    text-align: center;
    padding-top: 120px;
    position: relative;
}

.inner-banner:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: -moz-linear-gradient(270deg, rgba(98, 96, 96, 0.8) 0%, rgba(33, 33, 33, 0.8) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(98, 96, 96, 0.8)), color-stop(100%, rgba(33, 33, 33, 0.8)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(270deg, rgba(98, 96, 96, 0.8) 0%, rgba(33, 33, 33, 0.8) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(270deg, rgba(98, 96, 96, 0.8) 0%, rgba(33, 33, 33, 0.8) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(270deg, rgba(98, 96, 96, 0.8) 0%, rgba(33, 33, 33, 0.8) 100%);
    /* ie10+ */
    background: linear-gradient(180deg, rgba(98, 96, 96, 0.8) 0%, rgba(33, 33, 33, 0.8) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#626060', endColorstr='#212121', GradientType=0);
    /* ie6-9 */
}

.banner-text {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.banner-text h2 {
    font-size: 46px;
    color: #eea430;
    font-weight: 600;
}

.banner-text h2 span {
    font-family: 'shelliaregular';
    color: #ffffff;
    font-weight: 400;
}

.banner-text p {
    font-size: 20px;
    line-height: 28px;
    color: #d1d2d2;
    font-weight: 400;
}

.banner-text p a {
    color: #efbb16;
    text-decoration: underline;
}

.about-warp {
    background: #f3f4f4;
    padding: 80px 0;
    margin-top: 40px;
}

img.about-logo {
    width: 100%;
    max-width: 350px;
}

.about-bottom {
    background: url(../images/about_bottom.jpg) fixed;
    padding: 70px 0;
    margin-top: 40px;
}

.about-bottom h3 {
    font-size: 32px;
    color: #2f3838;
    font-weight: 600;
}

.about-bottom h3 span {
    font-family: 'shelliaregular';
    font-size: 36px;
}

.about-feature-box {
    padding: 5px 15px;
    text-align: center;
}

.feature-box-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.feature-box-icon img {
    width: 100%;
}

.about-feature-box h4 {
    font-size: 32px;
    color: #2f3838;
    font-weight: 600;
    margin-top: 15px;
}

.about-feature-box h4 span {
    font-family: 'shelliaregular';
}

.about-feature-box p {
    font-size: 17px;
    line-height: 24px;
    color: #2f3838;
}

.available-homes {
    margin-bottom: 15px
}

ul.available-homes-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    min-height: auto !important;
    list-style: none;
    padding-left: 0px;
}

ul.available-homes-list li {
    position: relative;
    margin-top: 15px;
    border: #d2d2d2 1px solid;
    overflow: hidden;
}

.available-text-right {
    display: table-cell;
    width: 55%;
    position: relative;
    height: 300px;
}

.available-text-right .maps-area {
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    min-height: 300px;
}

.available-img {
    background-size: cover;
    background-position: center center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    min-height: 300px;
}

.available-text-right.opened .available-img {
    display: none;
}

.available-text-right .maps-switch-btns {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: #f6f6f6;
    font-size: 13px;
    line-height: 26px;
}

.maps-switch-btns .switch {
    position: relative;
    display: inline-block;
    margin: 0 3px;
    width: 50px;
    height: 25px;
}

.maps-switch-btns .switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.maps-switch-btns .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    -webkit-transition: .4s;
    transition: .4s;
    border: #e2e4d2 2px solid;
}

.maps-switch-btns .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

.maps-switch-btns input:checked+.slider {
    background-color: #e99e2a;
}

.maps-switch-btns input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

.maps-switch-btns input:checked+.slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}


/* Rounded sliders */

.maps-switch-btns .slider.round {
    border-radius: 34px;
}

.maps-switch-btns .slider.round:before {
    border-radius: 50%;
}

.available-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url(../images/overlay_icon.png) no-repeat center center rgba(32, 32, 32, 0.8);
    background-size: 55px auto;
    opacity: 0;
}

.available-img:hover .overlay {
    opacity: 1;
}

.avilable-features {
    height: auto;
    width: 100%;
    background: #ffffff;
    bottom: 0px;
    right: 0px;
    position: absolute;
    /*padding: 0 10px;*/
    display: table;
    border-top: #d2d2d2 1px solid;
}

.available-text-right .for-sale-star {
    width: 60px;
    height: 60px;
    display: block;
    background: url(../images/for_sale_star.png) no-repeat;
    background-size: 100% 100%;
    position: absolute;
    left: 15px;
    top: 0px;
}

.avilable-features .spec-icon {
    padding: 5px 0;
    display: table-cell;
    border-right: #d2d2d2 1px solid;
    text-align: center;
}

.avilable-features .spec-icon:last-child {
    border-right: 0px;
}

.spec-icon .big-icon {
    display: inline-block;
    text-align: center;
    line-height: 24px
}

.spec-icon .big-icon img {
    width: 22px;
}

.spec-icon .big-text {
    display: inline-block;
    text-align: center;
    font-size: 13px;
    line-height: 15px;
    font-weight: 500;
    color: #202020;
}

.spec-icon .small-text {
    display: block;
    text-align: center;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #abb1b1;
}

.available-text {
    width: 45%;
    display: table-cell;
    position: relative;
}

.available-text-in {
    /*background:#f3f4f4;*/
    position: relative;
    /*height: 300px;*/
    overflow: hidden;
    padding-bottom: 55px;
}

.available-text-in-padd {
    padding: 25px 30px;
}

.available-text h3 {
    font-size: 22px;
    color: #2f3838;
    font-weight: 800;
    margin-bottom: 0px;
}

.available-text span.available-location {
    font-size: 13px;
    color: #2f3838;
    font-weight: 800;
}

.available-text p {
    margin-top: 15px;
    font-size: 13px;
    line-height: 22px;
    margin-bottom: 0px;
    font-weight: 600;
}

.available-top-btns {
    width: 100%;
    display: table;
}

.available-top-btns a.get-direction {
    width: 50%;
    display: table-cell;
    background: -moz-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(98, 96, 96, 1)), color-stop(100%, rgba(33, 33, 33, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    /* ie10+ */
    background: linear-gradient(90deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#626060', endColorstr='#212121', GradientType=1);
    /* ie6-9 */
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    padding: 8px 5px;
    cursor: pointer;
}

.available-top-btns a.get-direction:hover {
    background: -moz-linear-gradient(0deg, rgba(32, 32, 32, 1) 0%, rgba(99, 99, 99, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(32, 32, 32, 1)), color-stop(100%, rgba(99, 99, 99, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(32, 32, 32, 1) 0%, rgba(99, 99, 99, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(32, 32, 32, 1) 0%, rgba(99, 99, 99, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(32, 32, 32, 1) 0%, rgba(99, 99, 99, 1) 100%);
    /* ie10+ */
    background: linear-gradient(90deg, rgba(32, 32, 32, 1) 0%, rgba(99, 99, 99, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#202020', endColorstr='#636363', GradientType=1);
    /* ie6-9 */
}

.available-top-btns a.ask-question {
    width: 50%;
    display: table-cell;
    /* background: #efbb16; */
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    padding: 8px 5px;
    cursor: pointer;
}

.available-top-btns a.ask-question:hover {
    color: #fff;
    background: -moz-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(205, 128, 10, 1)), color-stop(100%, rgba(254, 181, 68, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ie10+ */
    background: linear-gradient(90deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd800a', endColorstr='#feb544', GradientType=1);
    /* ie6-9 */
}

.ask-question-warp {
    background: #202020;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    opacity: 1;
    padding-bottom: 50px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

.ask-question-warp-in {
    padding: 20px 20px;
}

.ask-question-bottom {
    display: table;
    width: 100%;
    position: absolute;
    bottom: 0px;
}

.ask-question-bottom-left {
    display: table-cell;
    width: 50%;
}

.ask-question-bottom-right {
    display: table-cell;
    width: 50%;
}

.ask-question-warp h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 10px;
}

.ask-question-warp input {
    border-radius: 0px;
    font-size: 14px;
    border: 0px;
}

.ask-question-warp textarea {
    border-radius: 0px;
    font-size: 14px;
    height: 122px;
    border: 0px;
}

.ask-question-warp input.cancel-btn {
    background: #646464;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border: 0px;
    font-weight: 600;
    padding: 10px 10px;
}

.ask-question-warp input.submit-btn {
    background: #efbb16;
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    color: #fff;
    font-size: 14px;
    text-align: center;
    border: 0px;
    font-weight: 600;
    padding: 10px 10px;
}

.ask-question-warp input.submit-btn:hover {
    color: #fff;
    background: -moz-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(205, 128, 10, 1)), color-stop(100%, rgba(254, 181, 68, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ie10+ */
    background: linear-gradient(90deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd800a', endColorstr='#feb544', GradientType=1);
    /* ie6-9 */
}

.available-text.clicked .ask-question-warp {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
}

.sold .available-img .avilable-features .for-sale-star {
    background: url(../images/for_sale_star_sold.png) no-repeat;
    background-size: 100% 100%;
}

.login-warp {
    background: #f3f4f4;
    padding: 80px 0;
    margin-top: 40px;
}

.login-warp-in {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}

a.forgot-passsword {
    font-size: 15px;
    font-weight: 500;
    color: #2f3838;
    display: inline-block;
    text-decoration: underline;
    float: right;
    margin-top: 15px;
}

.login-warp-in input {
    border-radius: 0px;
    font-size: 14px;
    font-weight: 500;
    border: 0px;
    padding: 15px 20px;
    height: auto;
    border: #838686 2px solid;
}

.login-warp-in label {
    font-size: 16px;
    font-weight: 600;
    color: #2f3838;
}

.login-warp-in input.login-btn {
    background: #efbb16;
    color: #ffffff;
    font-size: 16px;
    border-color: #efbb16;
}

.login-warp-in input.login-btn:hover {
    -webkit-box-shadow: 0px 0px 5px 1px rgba(239, 187, 22, 0.42);
    -moz-box-shadow: 0px 0px 5px 1px rgba(239, 187, 22, 0.42);
    box-shadow: 0px 0px 5px 1px rgba(239, 187, 22, 0.42);
}

span.example-text {
    font-size: 12px;
    color: #8d9292;
}

span.bottom-note-text {
    font-size: 13px;
    color: #8d9292;
    font-style: italic;
}

span.bottom-note-text a {
    color: #2f3838;
    text-decoration: underline;
}

.sign-in-warp {
    background: #ffffff;
    padding: 80px 0;
    /*margin-top: 40px;*/
}

.contact-warp {
    display: inline-table;
    width: 100%;
}

.contact-warp-left,
.contact-warp-right {
    display: table-cell;
    width: 50%;
}

.contact-warp-left-in {
    padding: 100px 50px;
}

.contact-tab {
    background: #ffffff;
    /* padding: 80px 0;
    margin-top: 40px;*/
}

.contact-tab-in {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.contact-tab .resp-vtabs .resp-tabs-list li,
h2.resp-accordion {
    /*background-color:#2f3838 !important;*/
    background: -moz-linear-gradient(90deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(32, 32, 32, 1)), color-stop(100%, rgba(99, 99, 99, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(90deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(90deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(90deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%);
    /* ie10+ */
    background: linear-gradient(0deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#202020', endColorstr='#636363', GradientType=0);
    /* ie6-9 */
    margin-bottom: 20px !important;
    padding: 40px 25px !important;
    color: #FFF !important;
}

.contact-tab .resp-vtabs .resp-tabs-list li span {
    font-size: 21px;
}

.contact-tab .resp-vtabs .resp-tabs-list li span img {
    width: 30px;
    opacity: 0.5;
}

.contact-tab .resp-vtabs .resp-tabs-list li h3 {
    font-family: 'Kodchasan', sans-serif;
    font-size: 21px;
    line-height: 24px;
    font-weight: 400;
    color: #b5b5b5;
    margin-top: 15px;
}

.contact-tab .resp-vtabs .resp-tabs-list li img,
h2.resp-accordion img {
    display: block;
    margin: 0px auto;
}

.contact-tab .resp-vtabs li.resp-tab-active,
h2.resp-tab-active {
    border-radius: 0px;
    /*background-color:#efbb16 !important;*/
    border-left: none !important;
    position: relative;
    background: -moz-linear-gradient(90deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(205, 129, 11, 1)), color-stop(100%, rgba(254, 180, 66, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(90deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(90deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(90deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%);
    /* ie10+ */
    background: linear-gradient(0deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd810b', endColorstr='#feb442', GradientType=0);
    /* ie6-9 */
}

.contact-tab .resp-vtabs li.resp-tab-active span img {
    opacity: 1;
}

.contact-tab .resp-vtabs li.resp-tab-active h3 {
    color: #fff;
}

.contact-tab .resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 160px;
}

.contact-tab .resp-vtabs .resp-tabs-container {
    /*margin-left:55px;*/
    border: none;
}

.contact-tab .resp-tab-content {
    padding-top: 0px;
    padding-bottom: 0px;
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
}

.form-row>[class*=col-] {
    padding-right: 10px;
    padding-left: 10px;
}

.contactform .form-group {
    margin-bottom: 20px;
}

.contactform input {
    border-radius: 0px;
    font-size: 14px;
    border: 0px;
    height: auto;
    padding: 10px 15px;
    background: #e8e4e8;
}

.contactform textarea {
    border-radius: 0px;
    font-size: 14px;
    border: 0px;
    height: auto;
    padding: 10px 15px;
    background: #e8e4e8;
    height: 100px;
}

.contactform select {
    border-radius: 0px;
    font-size: 14px;
    border: 0px;
    height: auto;
    padding: 10px 15px;
    background: #e8e4e8;
}

.contactform h4 {
    font-size: 21px;
    color: #202020;
    font-weight: 900;
}

.contactform p a {
    text-decoration: underline;
    color: #202020;
}

.contactform input.contform-send {
    /* background: #efbb16; */
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-color: #efbb16;
    cursor: pointer;
}

.contactform input.contform-send:hover {
    color: #fff;
    background: -moz-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(205, 128, 10, 1)), color-stop(100%, rgba(254, 181, 68, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ie10+ */
    background: linear-gradient(90deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd800a', endColorstr='#feb544', GradientType=1);
    /* ie6-9 */
}

.contact-address-bar {
    background: #efbb16;
    padding: 60px 0 80px;
    margin-top: 40px;
}

.contact-address-bar-in {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto;
}

.contact-icon img {
    width: auto;
}

.contact-address-bar-in p {
    font-size: 16px;
    color: #2f3838;
    margin-top: 15px;
}

.contact-address-bar-in p a {
    color: #2f3838;
}

.contact-img-left {
    background: url(../images/contact-img-left.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
}

.maps-area-02 {
    min-height: 400px;
}

.contact-center-text {
    background: #2f3838;
    display: grid;
}

.contact-center-text-in {
    margin: auto;
    text-align: center;
    padding: 20px 0;
}

.contact-center-text-in h3 {
    font-size: 32px;
    color: #efbb16;
    line-height: 36px;
    font-weight: 600;
}

.contact-center-text-in h3 span {
    font-family: 'shelliaregular';
    color: #efbb16;
    font-weight: 400;
    font-size: 38px;
}

.contact-center-text-in p {
    font-size: 14px;
}

.text-yellow {
    color: #efbb16;
}

.contact-center-text-in a.learn-btn {
    background: #efbb16;
    display: block;
    width: 160px;
    padding: 15px 30px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 20px auto;
}

.design-gallery {
    margin-top: 40px;
}

ul.design-gallery-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 1%;
    min-height: auto !important;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
}

ul.design-gallery-list li {
    overflow: hidden;
    margin-top: 20px;
}

.design-gallery-img {
    background-size: cover;
    min-height: 275px;
    position: relative;
}

.design-gallery-titile {
    width: 100%;
    background: rgba(47, 56, 56, 0.8);
    bottom: 0px;
    right: 0px;
    position: absolute;
    padding: 15px 15px;
    padding-right: 100px;
}

.design-gallery-titile h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0px;
}

.design-gallery-titile span.chat-icon {
    width: 20px;
    height: 20px;
    display: block;
    background: url(../images/chat_icon.png) no-repeat;
    background-size: 100% auto;
    background-position: center center;
    position: absolute;
    right: 60px;
    top: 14px;
    cursor: pointer;
}

.design-gallery-titile a.gallery-icon {
    width: 18px;
    height: 18px;
    display: block;
    background: url(../images/gallery_icon.png) no-repeat;
    background-size: 100% auto;
    background-position: center center;
    position: absolute;
    right: 25px;
    top: 14px;
    cursor: pointer;
}

.design-ask-question-warp {
    background: rgba(47, 56, 56, 0.8);
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    opacity: 1;
    padding: 20px 30px 30px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

ul.design-gallery-list li.opened .design-ask-question-warp {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
}

.design-ask-question-warp textarea {
    border-radius: 0px;
    font-size: 14px;
    height: 122px;
    border: 0px;
}

.design-ask-question-warp h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.design-ask-question-warp input.design-gallery-cancel-btn {
    background: #4e5656;
    color: #8d9292;
    font-size: 14px;
    text-align: center;
    border: 0px;
    border-radius: 0px;
    font-weight: 600;
}

.design-ask-question-warp input.submit-btn {
    background: #efbb16;
    color: #fff;
    font-size: 14px;
    text-align: center;
    border: 0px;
    border-radius: 0px;
    font-weight: 600;
}

.modal-dialog {
    width: 96%;
    max-width: 600px;
}

#text-the-Builder .modal-content {
    background: #efbb16;
    border-radius: 0px;
}

#text-the-Builder .modal-header {
    border-bottom: 0px;
}

#text-the-Builder .modal-content h5.modal-title {
    font-size: 34px;
    color: #2f3838;
    font-weight: 600;
    text-align: center;
    display: block;
    width: 100%;
    margin-top: 30px;
}

#text-the-Builder .close {
    font-size: 38px;
    font-weight: 400;
}

#text-the-Builder .builder-form {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

#text-the-Builder .builder-form input {
    border-radius: 0px;
    font-size: 14px;
    border: 0px;
    height: auto;
    padding: 15px 15px;
}

#text-the-Builder .builder-form textarea {
    border-radius: 0px;
    font-size: 14px;
    border: 0px;
    height: 150px;
    padding: 10px 15px;
}

#text-the-Builder .builder-form input.contform-send {
    background: #2f3838;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

#text-the-Builder .modal-body {
    padding-bottom: 70px;
}

.communities-maps {
    margin-top: 40px;
}

.communities-row {
    margin-top: 40px;
}

.communities-left {
    padding: 50px;
    padding-bottom: 80px;
    overflow: hidden;
    background: #f3f4f4;
}

.communities-left h4 {
    font-size: 26px;
    color: #2f3838;
    font-weight: 600;
}

.communities-left h4 span.small-text {
    font-size: 16px;
    color: #636a6a;
    font-weight: 500;
}

.communities-left p {
    font-size: 16px;
    color: #2f3838;
    font-weight: 400;
}

ul.communities-list {
    margin-left: 20px;
}

ul.communities-list li {
    padding-left: 25px;
    font-size: 15px;
    color: #636a6a;
    font-weight: 400;
    margin-top: 6px;
    position: relative;
}

ul.communities-list li:after {
    content: "\f05d";
    font-family: "FontAwesome";
    position: absolute;
    left: 0px;
    top: 0px;
    color: #efbb16;
}

.communities-bottom-btns {
    width: 100%;
    display: table;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.communities-bottom-btns a.communities-ask-btn {
    width: 50%;
    display: table-cell;
    background: #efbb16;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    padding: 8px 5px;
    cursor: pointer;
}

.communities-bottom-btns a.get-direction {
    width: 50%;
    display: table-cell;
    background: #4e5656;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    padding: 8px 5px;
    cursor: pointer;
}

.communities-ask-question {
    background: #2f3838;
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    bottom: 0;
    left: 0;
    opacity: 1;
    padding: 10px 20px 20px;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    /* */
}

.communities-left.opened .communities-ask-question {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
}

.communities-ask-question-in {
    margin: auto;
    width: 100%;
    max-width: 550px;
}

.communities-ask-question-in h4 {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
}

.communities-ask-question-in input {
    border-radius: 0px;
    font-size: 14px;
    border: 0px;
}

.communities-ask-question-in textarea {
    border-radius: 0px;
    font-size: 14px;
    height: 137px;
    border: 0px;
}

.communities-in-bottom-btns {
    width: 100%;
    display: table;
    position: absolute;
    left: 0px;
    bottom: 0px;
}

.communities-in-bottom-btns .communities-cancel-btn {
    width: 50%;
    display: table-cell;
    background: #4e5656;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #8d9292;
    padding: 8px 5px;
    cursor: pointer;
}

.communities-in-bottom-btns .communities-submit-btn {
    width: 50%;
    display: table-cell;
    background: #efbb16;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    color: #ffffff;
    padding: 8px 5px;
    cursor: pointer;
}

.communities-right {
    position: relative;
    overflow: hidden;
}

.communities-right .maps-area {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
}

.communities-right .image-view {
    display: inline-block;
    padding: 6px 40px;
    background: rgba(68, 71, 71, 0.8);
    /* position: relative; */
    z-index: 99;
    font-size: 13px;
    color: #fff !important;
    font-weight: 500;
    position: absolute;
    left: 0px;
    top: 0px;
    cursor: pointer;
}

.maps-photo {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    background-size: cover;
    background-position: center center;
    z-index: 999;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    /* */
}

.communities-right.opened .maps-photo {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
    /* */
}

.map-view {
    display: inline-block;
    padding: 6px 40px;
    background: rgba(68, 71, 71, 0.8);
    /* position: relative; */
    z-index: 99;
    font-size: 13px;
    color: #fff !important;
    font-weight: 500;
    position: absolute;
    left: 0px;
    top: 0px;
    cursor: pointer;
}

.new-communities {
    margin-bottom: 15px;
}

ul.new-communities-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    min-height: auto !important;
    list-style: none;
    padding-left: 0px;
}

ul.new-communities-list li {
    position: relative;
    margin-top: 15px;
    border: #d2d2d2 1px solid;
    overflow: hidden;
}

.new-communities-list-top {
    position: relative;
    overflow: hidden;
}

.new-communities-list-top-in {
    position: relative;
    height: 400px;
}

.new-communities-list-top-in {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.new-communities-list-top-in:hover .list-top-in-hover {
    display: block;
}

.new-communities-list-top-in .list-top-in-hover {
    cursor: pointer;
    content: '';
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    display: none;
    background: url(../images/overlay_icon.png) no-repeat center center rgba(32, 32, 32, 0.8);
}

.new-communities-img {
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.new-communities-img img {
    background-size: 100% 100%;
    background-position: center center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    min-height: 300px;
}

.new-communities-list-top {
    margin-right: auto;
    margin-left: auto;
    max-width: 640px;
}

.new-communities-list-top .maps-switch-btns {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #f6f6f6;
    font-size: 13px;
    line-height: 26px;
}

.new-communities-list-top .maps-area {
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    min-height: 300px;
}

.new-communities-img {
    /* background-size: 100% 100%;
    background-position:  center; */
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    min-height: 300px;
    background-size: 100% auto;
    background-color: #000000;
    background-position: center center;
}

.new-communities-img .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: url(../images/overlay_icon.png) no-repeat center center rgba(32, 32, 32, 0.8);
    background-size: 55px auto;
    opacity: 0;
}

.new-communities-img:hover .overlay {
    opacity: 1;
}

.new-communities-list-top.opened .new-communities-img {
    display: none;
}

.new-communities-list-top.clicked .ask-question-warp {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
}

.new-communities-list-bottom {
    position: relative;
    padding: 25px 30px;
}

.new-communities-list-bottom h3 {
    font-size: 24px;
    color: #2f3838;
    font-weight: 800;
}

.new-communities-list-bottom h3 span.small-text {
    font-size: 16px;
    color: #636a6a;
    font-weight: 500;
}

.new-communities-list-bottom span.lot-size {
    font-size: 18px;
    color: #202020;
}

.communities-features {
    display: table;
    margin-top: 15px;
    width: 100%;
}

.communities-features-left {
    display: table-cell;
}

.communities-features-right {
    display: table-cell;
    vertical-align: bottom;
    text-align: right;
}

.communities-features-right img {
    width: 100%;
    max-width: 200px;
}

.communities-list-icon span {
    display: block;
    font-size: 14px;
    color: #202020;
    font-weight: 500;
    padding-left: 30px;
    position: relative;
    margin-left: 15px;
    margin-top: 5px;
}

.communities-list-icon span:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #e79b2b;
    border-radius: 50%;
    left: 0px;
    font-size: 10px;
    color: #fff;
    line-height: 15px;
    text-align: center;
}

.custom-designs {
    padding-top: 25px;
    padding-bottom: 5px;
}

.custom-designs .col-12 {
    padding-right: 5px;
    padding-left: 5px;
}

ul.custom-designs-tabs {
    display: block;
    text-align: center;
    border-bottom: 0px;
}

ul.custom-designs-tabs li {
    margin-right: 0px;
    display: inline-block;
}

ul.custom-designs-tabs li a {
    height: auto;
    padding: 7px 45px;
    border-radius: 0px !important;
    position: relative;
    font-size: 14px;
    background: -moz-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(98, 96, 96, 1)), color-stop(100%, rgba(33, 33, 33, 1)));
    background: -webkit-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    background: -o-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    background: -ms-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    background: linear-gradient(90deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#626060', endColorstr='#212121', GradientType=1);
}

ul.custom-designs-tabs li a.active {
    color: #fff !important;
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
}

ul.custom-designs-tabs li a.active:after,
ul.custom-designs-tabs li a.active:before {
    bottom: 0px;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    margin-bottom: -20px;
    margin-left: -10px;
}

ul.custom-designs-tabs li a.active:after {
    border-top-color: #e89f30;
    border-width: 10px;
}

ul.custom-designs-tabs li a.active:before {
    border-color: rgba(230, 155, 39, 0);
    border-width: 10px;
}

ul.custom-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 5px;
    min-height: auto !important;
    list-style: none;
    padding-left: 0px;
    margin-top: 30px;
}

ul.custom-list li {
    margin-top: 5px;
}

.custom-list-in {
    background-size: cover;
    background-position: center center;
    min-height: 300px;
    position: relative;
    overflow: hidden;
}

.custom-features {
    height: auto;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    bottom: 0px;
    right: 0px;
    position: absolute;
    padding: 0 10px;
    display: table;
}

.custom-features .spec-icon {
    padding: 8px 2px;
    display: table-cell;
    text-align: center;
}

.custom-features .spec-icon .big-text {
    color: #fff;
}

.features-right {
    display: table-cell;
    text-align: right;
    width: 30%;
    padding-top: 5px;
    vertical-align: middle;
}

a.ask-question-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-image: url(../images/ask_question_icon.png);
    background-repeat: no-repeat;
    background-size: 20px 20px;
    margin-right: 8px;
    cursor: pointer;
}

a.ask-popup-icon {
    width: 18px;
    height: 18px;
    display: block;
    background: url(../images/overlay_icon.png) no-repeat;
    background-size: 100% auto;
    background-position: center center;
    position: absolute;
    right: 55px;
    top: 14px;
    cursor: pointer;
}

.custom-list-in.clicked .ask-question-warp {
    -webkit-transform: translate3d(0, 0%, 0);
    transform: translate3d(0, 0%, 0);
}

.maps-area-02 {
    position: relative;
}

#maps-area-02 {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

.map-bottom-row {
    position: absolute;
    background: #646464;
    z-index: 999999;
    bottom: 0px;
    width: 100%;
    padding: 15px 35px;
    color: #fff;
    font-size: 15px;
    line-height: 24px;
}

.map-bottom-row a.footer-social {
    float: right;
    color: #fff;
}

.map-bottom-row a.footer-social span {
    display: inline-block;
    background: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #646464;
    font-size: 15px;
    text-align: center;
}

.veterans-warp {
    padding: 130px 0;
}

.veterans-warp h3 {
    font-size: 34px;
    line-height: 48px;
    color: #202020;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.veterans-warp h3 span {
    color: #bf7809;
    font-weight: 800;
}

ul.loan-steps {
    width: 100%;
    text-align: center;
}

ul.loan-steps li {
    width: 30%;
    margin: 0 1.5%;
    margin-top: 80px;
    display: inline-flex;
}

.loan-steps-box {
    background: url(../images/loan_bg.jpg);
    background-size: cover;
    padding: 35px 30px;
    position: relative;
}

.top-round {
    width: 60px;
    height: 60px;
    background: url(../images/top_round_icon.png) no-repeat;
    background-position: center center;
    background-size: 100% auto;
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -30px;
    top: 0px;
    margin-top: -30px;
}

.loan-steps-box p {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0px;
    margin-top: 15px;
}

.loan-steps-box p a {
    color: #ffb543;
    text-decoration: none;
}

.loan-features-warp {
    background: url(../images/loan_features_bg.jpg);
    background-size: cover;
    position: relative;
    padding: 130px 0;
}

.loan-features-warp:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    top: 0px;
    left: 0px;
}

.loan-features-warp:after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: url(../images/cje_top_shape.png);
    background-size: 100% 100%;
    top: 0px;
    left: 50%;
    margin-top: -65px;
    margin-left: -65px;
}

.loan-features-warp h4 {
    font-size: 32px;
    color: #ffffff;
    text-align: center;
}

ul.loan-features-list {
    width: 100%;
}

ul.loan-features-list li {
    width: 100%;
    padding-left: 80px;
    position: relative;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 30px;
    display: block;
    min-height: 60px;
}

ul.loan-features-list li:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background: url(../images/round_tick_icon.png) no-repeat;
    background-position: center center;
    background-size: 100% auto;
    display: block;
    left: 0px;
    top: 0px;
}

.loan-applying-warp {
    background: #fff;
    padding: 130px 0;
    position: relative;
}

.loan-applying-warp:after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    background: url(../images/cje_top_shape.png);
    background-size: 100% 100%;
    top: 0px;
    left: 50%;
    margin-top: -65px;
    margin-left: -65px;
}

ul.applying-logos {
    text-align: center;
}

ul.applying-logos li {
    display: inline-block;
    margin: 15px 5px;
}

ul.applying-logos li img {
    width: 80px;
    height: auto;
}

.loan-applying-warp h3 {
    font-size: 34px;
    color: #202020;
    font-weight: 800;
    text-align: center;
    margin-top: 30px;
}

.loan-applying-warp h3 span {
    font-size: 32px;
    color: #202020;
    font-weight: 500;
}

.loan-form {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 30px;
}

.loan-form input {
    border-radius: 0px;
    font-size: 14px;
    border: 0px;
    height: auto;
    padding: 10px 15px;
    background: #e8e4e8;
}

.loan-form input.send-btn {
    text-align: center;
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.loan-form input.send-btn:hover {
    background: -moz-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(205, 128, 10, 1)), color-stop(100%, rgba(254, 181, 68, 1)));
    /* safari4+,chrome */
    background: -webkit-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* opera 11.10+ */
    background: -ms-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* ie10+ */
    background: linear-gradient(90deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    /* w3c */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd800a', endColorstr='#feb544', GradientType=1);
    /* ie6-9 */
}


/*additional added start*/

.financing .justme {
    width: 100%;
    padding: 50px 0px;
    text-align: center;
    position: relative;
}

.financing .justme .fa {
    font-size: 50px;
}

.financing .justme h4 {
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 30px;
}

.financing .resp-tab-active .justme .fa {
    color: #fff;
}

.financing .resp-tab-active .justme h4 {
    color: #fff;
}

.financing .justme span {
    display: inline-block;
    position: relative;
}

.financing .justme .paraplus {
    display: inline-block;
    padding: 13px;
    position: relative;
    top: -12px;
}

.financing .justme .paraplus .fa {
    font-size: 14px;
    display: inline-block;
}

.financing .justme a {
    background: #fbab18;
    color: #fff;
    font-size: 15px;
    padding: 20px 65px;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    display: inline-block;
}

.financing .resp-tab-active .justme a {
    display: none;
}

.financing .resp-tab-active:after {
    content: "";
    height: 02px;
    bottom: 0px;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 43px solid #fff;
    left: 0;
    right: 0;
    margin: auto;
    width: 70px;
    top: 50px;
}

.financing h3.applicant {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #262626;
    padding-bottom: 20px;
    border-bottom: 3px solid #fbab18;
}

.financing .financeform {}

.financing .financeform .labelfinace {
    font-size: 14px;
    font-weight: 700;
    color: #262626;
    margin-bottom: 15px;
}

.financing .financeform .form-control {
    border-radius: 0px;
    border: 0px;
    font-size: 14px;
    font-weight: 300;
    padding: 13px 15px;
    height: auto;
    background: #e8e4e8;
}

.financing .financeform .form-group {
    margin-bottom: 30px;
}

.signature-box .signamure {
    height: 100px;
    font-family: "Dancing Script", cursive !important;
    font-size: 28px !important;
    border: none !important;
    border-bottom: #cccccc 2px solid !important;
    display: inline;
    width: 100%;
    max-width: 100%;
    font-weight: 600;
    background: transparent !important;
}

#today-date,
#today-date2 {
    height: 70px;
    font-size: 18px !important;
    border: none !important;
    border-bottom: #cccccc 2px solid !important;
    display: inline;
    width: 100%;
    max-width: 100%;
    font-weight: 600;
    background: transparent;
}

.formbtn {
    margin-top: 0px;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    border: none;
    border-radius: 0;
    padding: 19px 42px;
    letter-spacing: .5px;
    width: 100%;
    background: #efbb16;
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
}

.financing h4 {
    font-size: 18px;
}

.building-process-innerpage {
    padding: 80px 0;
}


/* construction process */

.building-process-innerpage {
    padding: 80px 0;
}

ul.construction-tabs {
    display: block;
    text-align: center;
    border-bottom: 0px;
}

ul.construction-tabs li {
    margin-right: 0px;
    display: inline-block;
}

ul.construction-tabs li a {
    height: auto;
    padding: 15px 30px;
    border-radius: 0px !important;
    position: relative;
    font-size: 14px;
    background: -moz-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    background: -webkit-gradient( linear, left top, right top, color-stop(0%, rgba(98, 96, 96, 1)), color-stop(100%, rgba(33, 33, 33, 1)));
    background: -webkit-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    background: -o-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    background: -ms-linear-gradient(0deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    background: linear-gradient(90deg, rgba(98, 96, 96, 1) 0%, rgba(33, 33, 33, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#626060', endColorstr='#212121', GradientType=1);
}

ul.construction-tabs li a.active {
    color: #fff !important;
    background: -moz-linear-gradient( 45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient( linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient( 45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient( 45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
}

.construction-process {
    display: table;
    width: 100%;
    position: relative;
}

.construction-process-row {
    display: table-row;
}

.construction-process-step button {
    bottom: 0px;
    background: #fff;
    box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.1);
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    position: absolute;
    left: 50%;
    margin-left: -30px;
}

.construction-process-row:before {
    bottom: 20px;
    position: absolute;
    content: " ";
    width: 100%;
    height: 1px;
    z-order: 0;
    border-bottom: #c4c4c4 1px dashed;
}

.construction-process-step {
    display: table-cell;
    text-align: center;
    position: relative;
    padding-bottom: 50px;
    width: auto;
}

.construction-process-step p {
    margin-top: 4px;
    font-weight: 600;
}

.construction-btn-circle {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 12px;
    border-radius: 50%;
    padding: 0.375rem 0.25rem;
}

.tab-content>.active {
    display: block;
    opacity: 1;
}

.construction-btn-info {
    color: #fff;
    background-color: #ffb543 !important;
    border-color: #ffb543 !important;
    position: relative;
    box-shadow: none !important;
}

.construction-btn-info:before {
    content: "";
    position: absolute;
    width: 54px;
    height: 54px;
    display: block;
    border: #feb544 1px solid;
    border-radius: 50%;
    left: 0px;
    top: 0px;
    margin-top: -8px;
    margin-left: -8px;
}

ul.construction-list {}

ul.construction-list li {
    display: block;
    font-size: 18px;
    color: #202020;
    font-weight: 500;
    padding-left: 30px;
    position: relative;
    margin-left: 15px;
    margin-top: 5px;
}

ul.construction-list li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    width: 15px;
    height: 15px;
    background: #e79b2b;
    border-radius: 50%;
    left: 0px;
    top: 6px;
    font-size: 11px;
    color: #fff;
    line-height: 15px;
    text-align: center;
}


/*additional added end*/


/******************************
responsive area
********************************/

@media (min-width: 1200px) and (max-width: 1300px) {
    .nav li {
        margin-right: 15px;
    }
    .top-enq-btn {
        float: left;
    }
    .banner-small-text-in {
        height: 80px;
    }
    .features-right {
        width: 20%;
    }
}

@media (min-width: 1100px) and (max-width: 1200px) {
    .new-communities-list-top-in {
        height: 350px;
    }
    .new-communities-list-top .maps-area {
        min-height: auto;
    }
    .nav li {
        margin-right: 15px;
    }
    .top-enq-btn {
        float: left;
        /* padding: 35px 0 35px 10px;*/
    }
    .logo-warp {
        max-width: 100px !important;
        padding: 22px 0 !important;
    }
    /*.top-right {
    width: calc( 100% - 170px); 
}*/
    .top-enq-btn a {
        width: 170px;
    }
    .main-navigation {
        margin-left: 20px;
    }
    .nav>ul {
        margin-left: 0px;
        /*padding-left: 15px;*/
    }
    .login-btns a {
        margin: 0 3px;
    }
    .product-overlay {
        background-size: 52px auto;
    }
    .available-text-in-padd {
        padding: 15px 15px;
    }
    .features-right {
        width: 20%;
    }
    .spec-icon .big-text {
        font-size: 12px;
    }
}


/* md */

@media (min-width: 992px) and (max-width: 1100px) {
    .new-communities-list-top-in {
        height: 350px;
    }
    .new-communities-list-top .maps-area {
        min-height: auto;
    }
    .logo-warp {
        max-width: 100px;
        padding: 22px 0;
    }
    .main-navigation {
        margin-left: 8px;
    }
    .header-menu {
        float: left;
        width: calc( 100% - 165px);
    }
    .top-enq-btn a {
        width: 160px;
    }
    .nav li {
        margin-right: 7px;
    }
    .main-navigation {
        float: right;
    }
    .top-right {
        width: calc( 100% - 120px);
    }
    header.sticky .top-right {
        display: none;
    }
    .banner-small-caption h3 {
        font-size: 16px;
    }
    .bottom-text h2 {
        font-size: 42px;
        line-height: 56px;
    }
    img.welcome-head {
        max-width: 500px;
    }
    .banner-small-caption h3 {
        padding: 9px 30px;
    }
    .banner-small-text-in {
        height: 60px;
    }
    .banner-small-text a.banner-small-btn {
        width: 130px;
        padding: 6px 15px;
        font-size: 16px;
    }
    .about-feature-box h4 {
        font-size: 24px;
    }
    ul.available-homes-list {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 1%;
    }
    .available-text-in-padd {
        padding: 15px 15px;
    }
    .spec-icon .big-text {
        font-size: 12px;
    }
    .available-top-btns a.get-direction,
    .available-top-btns a.ask-question {
        font-size: 12px;
    }
    .spec-icon .big-icon {
        display: block;
    }
    .contact-warp-left-in {
        padding: 100px 20px;
    }
}


/* sm */

@media (min-width: 768px) and (max-width: 991px) {
    .new-communities-list-top-in {
        height: 310px;
    }
    .new-communities-list-top .maps-area {
        min-height: auto;
    }
    .new-communities-img {
        min-height: auto;
    }
    .logo-warp {
        max-width: 100%;
        padding: 15px 0;
        text-align: center;
        margin-left: 0px;
        border-bottom: rgba(255, 255, 255, 0.1) 1px solid;
    }
    .logo-warp img {
        max-width: 100px;
        display: inline-block;
    }
    .top-right {
        float: none;
    }
    .header-menu {
        float: left;
        width: calc( 100% - 162px);
    }
    .main-navigation {
        margin-left: 1px;
        float: left;
    }
    .nav>ul {
        margin-left: 0px;
        padding-left: 0px;
    }
    .nav li {
        margin-right: 5px;
    }
    .nav li a {
        font-size: 12px;
    }
    .top-enq-btn a {
        width: 160px;
    }
    .photoGrid .item {
        width: 33.33%;
    }
    ul.available-homes-list {
        grid-template-columns: 1fr;
        grid-column-gap: 15px;
    }
    .communities-features {
        display: block;
    }
    .communities-features-left,
    .communities-features-right {
        display: block;
        text-align: left;
    }
    .communities-features-right {
        margin-top: 15px;
    }
    ul.custom-list {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 5px;
    }
    .contact-warp-left-in {
        padding: 50px 10px;
    }
    .contact-tab .resp-vtabs ul.resp-tabs-list {
        width: 140px;
    }
    .resp-vtabs .resp-tabs-container {
        width: calc( 100% - 150px);
    }
    ul.loan-steps li {
        width: 29%;
    }
}

@media (max-width: 767px) {
    .home-banner li .meta {
        padding-top: 50px;
    }
    header {
        /* padding-top: 44px;*/
        position: relative;
        background: #212529;
    }
    header.sticky {
        position: fixed;
        padding-top: 0px;
        z-index: 7776;
        width: 100%;
        top: 0px;
    }
    .mobile-spec {
        display: block;
        position: relative;
        z-index: 999;
        display: table;
        width: 100%;
        text-align: center;
        background: #101010;
    }
    .mobile-spec a {
        width: 50%;
        display: inline-block;
        float: left;
        padding: 10px 0;
        color: #fff;
        background: #101010;
        font-size: 13px;
    }
    .mobile-spec a:nth-child(2) {
        background: #f7ae3e;
    }
    .logo-warp {
        padding: 27px 0;
        padding-left: 30px;
        max-width: 100px;
    }
    .menu-mobile-icon {
        display: block;
        position: absolute;
        left: 15px;
        top: 30px;
        color: #fff;
    }
    .pushmenu {
        /*this is the nav*/
        background: #464544;
        text-align: center;
        width: 250px;
        height: 100%;
        top: 0;
        z-index: 1000;
        position: fixed;
        float: none !important;
        margin-top: 0 !important;
        margin-left: 0px;
    }
    .pushmenu-left {
        left: -250px;
    }
    .pushmenu-left.pushmenu-open {
        left: 0;
    }
    .pushmenu-push {
        overflow-x: hidden;
        position: relative;
        left: 0;
    }
    .pushmenu-push-toright {
        left: 250px;
    }
    /*Transition*/
    .pushmenu,
    .pushmenu-push {
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .nav>ul {
        margin-left: 0px;
        padding-left: 0px;
    }
    .nav_list {
        cursor: pointer;
        height: 40px;
        width: 40px;
        background: #1181ff;
        position: absolute;
        left: 15px;
        top: 0;
        text-align: center;
        line-height: 40px;
        color: #FFF;
        font-size: 21px;
    }
    nav-list.active {
        background-position: -270px top;
    }
    .main-navigation {
        padding-top: 15px;
    }
    .main-navigation a {
        display: block;
    }
    /*Transition*/
    .pushmenu,
    .pushmenu-push {
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }
    .nav_list {
        cursor: pointer;
    }
    nav-list.active {
        background-position: -270px top;
    }
    .main-navigation {
        padding-top: 15px;
    }
    .nav>ul>li {
        display: block;
        width: 100%;
        height: auto;
    }
    .nav>ul>li a {
        border-bottom: 1px solid #cbcbcb;
        display: block;
        height: auto;
        padding: 15px 0px;
        color: #fff;
    }
    .nav li:hover ul {
        position: relative;
        background: #e5e5e5;
    }
    .nav li:hover ul li:hover ul {
        position: relative;
        left: 0px;
        background: #e5e5e5;
    }
    .nav li a:after,
    .nav li a:after {
        display: none;
    }
    .nav li.active a,
    .nav li:hover a {
        background: #f7ae3e;
        color: #fff !important;
    }
    .banner-big-pic {
        min-height: 350px;
    }
    .bottom-text h2 {
        font-size: 36px;
        line-height: 48px;
    }
    h2.main-head {
        font-size: 24px;
        line-height: 28px;
    }
    h2.main-head span {
        font-size: 38px;
    }
    .process-step {
        display: block;
        width: 100%;
        margin-top: 30px;
    }
    .gallery h2 {
        font-size: 26px;
    }
    .photoGrid .item {
        width: 50%;
    }
    .footer-links a.footer-social {
        float: none;
    }
    .about-feature-box h4 {
        font-size: 24px;
    }
    ul.available-homes-list {
        grid-template-columns: 100%;
        grid-column-gap: 0%;
    }
    h2.resp-accordion {
        margin-bottom: 0px !important;
        padding: 20px 20px !important;
        position: relative;
    }
    h2.resp-accordion h3 {
        padding-right: 0px;
        margin-bottom: 0px;
        font-size: 20px;
    }
    .contact-img-left {
        height: 350px;
    }
    ul.design-gallery-list {
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 1%;
    }
    #text-the-Builder .modal-body {
        padding-bottom: 40px;
    }
    #text-the-Builder .modal-content h5.modal-title {
        font-size: 24px;
    }
    .communities-left {
        padding: 20px;
        padding-bottom: 80px;
    }
    .communities-right {
        min-height: 350px;
    }
    ul.communities-list {
        margin-left: 10px;
    }
    .banner-big-pic {
        margin-bottom: 15px;
    }
    .banner-small-text-in {
        height: 88px;
    }
    ul.new-communities-list {
        grid-template-columns: 1fr;
    }
    /*.communities-features{
	display:block;
	}
.communities-features-left, .communities-features-right {
    display:block;
	text-align:left;
}
.communities-features-right {
	margin-top:15px;
}
*/
    ul.custom-list {
        grid-template-columns: 1fr;
        grid-column-gap: 0px;
    }
    h2.resp-accordion img {
        display: none;
    }
    .contact-warp-left-in {
        padding: 50px 0px;
    }
    .contact-warp {
        display: block;
    }
    .contact-warp-left,
    .contact-warp-right {
        display: block;
        width: 100%;
    }
    .map-bottom-row a.footer-social {
        float: none;
    }
    h2.resp-accordion {
        background: -moz-linear-gradient(90deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%) !important;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(32, 32, 32, 1)), color-stop(100%, rgba(99, 99, 99, 1))) !important;
        background: -webkit-linear-gradient(90deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%) !important;
        background: -o-linear-gradient(90deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%) !important;
        background: -ms-linear-gradient(90deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%) !important;
        background: linear-gradient(0deg, rgba(99, 99, 99, 1) 0%, rgba(32, 32, 32, 1) 100%) !important;
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#202020', endColorstr='#636363', GradientType=0) !important;
    }
    h2.resp-tab-active {
        background: -moz-linear-gradient(90deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%) !important;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(205, 129, 11, 1)), color-stop(100%, rgba(254, 180, 66, 1))) !important;
        background: -webkit-linear-gradient(90deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%) !important;
        background: -o-linear-gradient(90deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%) !important;
        background: -ms-linear-gradient(90deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%) !important;
        background: linear-gradient(0deg, rgba(254, 180, 66, 1) 0%, rgba(205, 129, 11, 1) 100%) !important;
        filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd810b', endColorstr='#feb442', GradientType=0) !important;
    }
    .veterans-warp h3 {
        font-size: 21px;
        line-height: 28px;
    }
    ul.loan-steps li {
        width: 96%;
    }
    ul.applying-logos li {
        margin: 15px 2px;
    }
    ul.applying-logos li img {
        width: 48px;
        height: auto;
    }
    ul.loan-features-list li {
        padding-left: 75px;
    }
    .loan-applying-warp h3 {
        font-size: 24px;
    }
    .loan-applying-warp h3 span {
        font-size: 21px;
    }
}


/* xs */

@media (max-width: 580px) {
    .new-communities-list-top-in {
        height: 330px;
    }
    .new-communities-list-top .maps-area {
        min-height: auto;
    }
    .new-communities-img {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .top-right {
        float: none;
        display: block;
    }
    .login-btns {
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }
    .logo-warp {
        padding: 15px 15px;
        margin-left: 0px;
        padding-left: 0px;
        max-width: 100%;
        text-align: center;
        display: block;
        float: none;
    }
    .logo-warp img {
        width: 100px;
    }
    header.sticky .top-right-right {
        display: none;
    }
    .top-right-right {
        float: none;
        height: auto;
        text-align: center;
    }
    .login-btns a {
        padding: 15px 0px;
    }
    .top-enq-btn {
        padding: 0px 0 15px 0px;
        float: none;
        max-width: 170px;
        margin: 0 auto;
    }
    .top-enq-btn a {
        display: block;
        max-width: 170px;
    }
    .photoGrid .item {
        width: 100%;
    }
    .Schedule-meeting-form input.send-btn {
        margin-top: 30px;
    }
    .copy-right-text {
        text-align: center;
    }
    .powered-by {
        text-align: center;
    }
    .available-text-in {
        height: auto;
    }
    .ask-question-warp {
        /* padding: 10px 10px 10px; */
    }
    ul.design-gallery-list {
        grid-template-columns: 1fr;
        grid-column-gap: 0%;
    }
    .available-text-in-padd {
        padding: 15px 15px;
    }
    .available-text {
        width: 100%;
        display: block;
    }
    .available-text-right {
        width: 100%;
        display: block;
    }
    .inner-banner {
        padding-top: 80px;
    }
    .banner-text h2 {
        font-size: 32px;
    }
    .communities-features {
        display: block;
    }
    .communities-features-left,
    .communities-features-right {
        display: block;
        text-align: left;
    }
    .communities-features-right {
        margin-top: 15px;
    }
    ul.custom-designs-tabs li a {
        padding: 7px 10px;
    }
}

.staff-directory-main {
    padding: 80px 0;
}

.staff-box-parent {
    width: 80%;
    margin: 0 auto;
    position: relative;
}

.staff-box-single {
    width: 33.3333%;
    float: left;
    padding: 8px;
}

.staff-box {
    border: 3px solid transparent;
    border-image: linear-gradient(to right, #bf7809, #ffdc9c);
    border-image-slice: 4;
}

.staff-box.active {
    border: 3px solid transparent;
    border-image: linear-gradient(to right, #646464, #202020);
    border-image-slice: 4;
}

.staff-box .staff-details {
    padding: 20px 15px;
}

.staff-box .staff-details h3 {
    font-size: 20px;
    color: #bf7809;
    font-weight: 700;
    margin-bottom: 0;
    cursor: pointer;
}

.staff-box .staff-details h6 {
    font-weight: 700;
    font-size: 14px;
}

.staff-box .staff-details a {
    color: #646464;
}

.staff-details-box {
    border: 3px solid transparent;
    border-image: linear-gradient(to right, #646464, #202020);
    border-image-slice: 4;
    padding: 5px;
    background-color: #f9f8f9;
    position: relative;
}

.staff-details-box::before {
    content: "";
    width: 140px;
    height: calc(100% - 10px);
    background: linear-gradient(to top, #646464, #202020);
    position: absolute;
    top: 5px;
    left: 5px;
}

.staff-box button {
    display: block;
    background: linear-gradient(to right, #bf7809, #ffdc9c);
    color: #fff;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
    border: none;
    border-radius: 0;
}

.staff-details-box-content {
    display: flex;
    padding: 50px;
    position: relative;
}

.staff-details-box-content-img {
    margin-right: 25px;
}

.staff-details-box-content-img img {
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 6px 5px 18px 2px rgb(0 0 0 / 30%)
}

.staff-details-box-content-text h3 {
    font-size: 20px;
    color: #bf7809;
    font-weight: 700;
    margin-bottom: 0;
    cursor: pointer;
}

.staff-details-box-content-text h6 {
    font-weight: 700;
    font-size: 14px;
}

.staff-details-box-content-text a {
    color: #646464;
}

.staff-details-box-content-text p {
    padding-top: 20px;
}

.staff-details-box-content-text span {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

.inner-banner.lots-offered {
    background: url(../images/lots-bg.jpg) no-repeat;
    padding-bottom: 120px;
    padding-top: 150px;
}

.inner-banner.lots-offered p {
    margin-bottom: 0;
    color: #fff;
    padding-top: 20px;
}

.inner-banner.lots-offered .banner-text h2 {
    font-size: 60px;
}



.inner-banner.lots-offered3 {
    background: url(../images/lots-bg2.jpg) no-repeat;
    padding-bottom: 120px;
    padding-top: 150px;
}

.inner-banner.lots-offered3 p {
    margin-bottom: 0;
    color: #fff;
    padding-top: 20px;
}

.inner-banner.lots-offered3 .banner-text h2 {
    font-size: 60px;
}




.lots-places {
    padding: 80px 0;
}

.lots-places .specials-row [class*="col-"] {
    padding: 10px;
}

.lots-places .special-box {
    position: relative;
}

.lots-places .special-box h5 {
    position: absolute;
    bottom: 0;
    background: -moz-linear-gradient(right, rgba(32, 32, 32, .8), rgba(100, 100, 100, .8));
    /* FF3.6-15 */
    background: -webkit-linear-gradient(right, rgba(32, 32, 32, .8), rgba(100, 100, 100, .8));
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(32, 32, 32, .8), rgba(100, 100, 100, .8));
    margin: 0;
    width: 100%;
    padding: 10px;
    color: #fff;
}

.ds-row {
    margin-bottom: 15px;
    padding: 0 8px;
}

.ds-row [class*="col"] {
    padding: 0 5px;
}

.ds-row [class*="col"]:first-child {
    width: 100px;
}

.ds-box {
    outline: 3px solid #000;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.shopping-box {
    display: flex;
    background-color: #f9f8f9;
    align-items: center;
    justify-content: center;
    height: 165px;
    padding: 15px
}

.lot-reservation {
    padding: 80px 0;
}

.lot-reservation ul li {
    display: inline-flex;
    color: #351f00;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    padding-right: 20px;
    align-items: center;
}

.lot-reservation .sort-circle {
    height: 25px;
    width: 25px;
    border-radius: 50%;
    margin-right: 5px;
}

.lot-header-section p {
    font-size: 14px;
    width: 55%;
    margin: 0 auto;
    padding-bottom: 15px;
}

.map-section {
    padding: 20px 0;
    position: relative;
    background: -o-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    background: -ms-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    background: linear-gradient( 90deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd800a', endColorstr='#feb544', GradientType=1);
}

#map {
    width: 100%;
    height: 500px;
}

.map-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(to top, #646464, #202020);
    color: #fff;
    display: flex;
    height: 400px;
    width: 700px;
    flex-direction: column;
    justify-content: center;
    padding-left: 6em;
    outline-offset: -30px;
    outline: 4px solid #de931f;
}

.map-content h3 {
    color: #de931f;
}

.map-content li {
    font-size: 20px;
    padding-bottom: 10px;
}

.map-content li::before {
    content: "";
    height: 15px;
    width: 15px;
    display: inline-block;
    margin-right: 5px;
    border-radius: 50%;
    background: -o-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    background: -ms-linear-gradient(0deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    background: linear-gradient( 90deg, rgba(205, 128, 10, 1) 0%, rgba(254, 181, 68, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd800a', endColorstr='#feb544', GradientType=1);
}

.modal-backdrop.show {
    opacity: .8;
    z-index: 7777;
}

.modal.reserve-lot {
    z-index: 8889;
    padding: 0 !important;
}

.modal.reserve-lot .modal-header {
    align-items: center;
    border: none;
}

.reserve-lot .btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background: none;
    border: none;
    font-size: 24px;
}

.reserve-lot .btn {
    background: linear-gradient(to right, #bf7809, #ffdc9c);
    color: #fff;
    text-decoration: none;
    width: 100%;
    display: block;
    font-size: 14px;
    font-weight: 400;
    padding: 5px 0;
    border-radius: 5px;
    border: none;
}

#staff-details .modal-body {
    padding: 0;
}

@media(max-width:1200px) {
    .staff-box-parent {
        width: 90%;
    }
    .lot-header-section {
        left: 0;
    }
    .shopping-box {
        height: 120px;
    }
    .map-content {
        height: 400px;
        width: 500px;
        padding-left: 3em;
    }
}

@media(max-width:992px) {
    .staff-box-parent {
        width: 100%;
    }
    .staff-box-single {
        width: 50%;
    }
    .lot-header-section {
        left: 0;
        position: relative;
    }
    .lot-header-section p {
        width: 100%;
    }
    .map-content {
        position: relative;
        transform: translate(0);
        width: 100%;
    }
}

@media(max-width:768px) {
    .staff-details-box-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .staff-box-single {
        width: 100%;
    }
    .staff-details-box::before {
        content: "";
        width: calc(100% - 10px);
        height: 150px;
    }
    .staff-details-box-content-img {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .staff-details-box-content-text span {
        color: #fff;
    }
    .ds-box {
        height: 100px;
    }
    .ds-row [class*="col"] {
        padding: 5px;
        flex: 0 0 50%;
    }
    .ds-row [class*="col"]:first-child {
        margin-bottom: 10px;
        margin-top: 10px;
        flex: 0 0 100%;
    }
    .shopping-box {
        height: 150px;
    }
    .map-content li {
        font-size: 16px;
    }
}

.dropdown:hover .dropdown-menu {
    display: block;
    top: 98%;
}

.dropdown-menu a {
    padding: 15px !important;
    color: #000 !important;
    height: auto !important;
}

.dropdown-menu a:after {
    display: none;
}

@media(max-width:768px) {
    .dropdown-menu {
        display: block;
        width: 100%;
        position: relative;
        padding: 0;
        background: #686867;
    }
    .dropdown-menu a {
        color: #fff !important;
        text-align: center;
    }
    .nav li a:hover {
        background: #f7ae3e;
        color: #fff !important;
    }
    .nav li:hover a {
        background: calc();
        color: #fff !important;
    }
}

.modal-open .modal {
    z-index: 9999;
    padding-right: 0 !important;
}

.gallery-box {
    overflow: hidden;
    min-height: 400px;
}

.gallery-box .gallery-main-image {
    min-height: 400px;
    object-fit: cover;
}

.gallery-box .form-wrap {
    position: absolute;
    z-index: 4;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(51, 52, 56, 0.9);
    padding: 50px 80px;
    display: none;
}

.gallery-box-buttons {
    position: absolute;
    bottom: 0;
    background-color: rgba(32, 32, 32, .8);
    width: 100%;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px 5px;
    display: flex;
    justify-content: space-between;
}

.gallery-box-buttons a {
    color: #fff;
    font-size: 12px;
    border-radius: 0;
    margin: 0 2px;
    width: 100%;
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 14px;
}

.gallery-box-buttons a img {
    margin: 0 5px;
}

.gallery-box-buttons a:last-child {
    background: #646464;
}

.image-gallery .modal-body,
.image-gallery .modal-header {
    padding: 0;
    border: none;
}

.image-gallery .slick-prev {
    left: -80px;
}

.image-gallery .slick-next {
    right: -80px;
}

.image-slider-footer {
    background-color: #fff;
    padding: 20px 10px;
}

.modal .btn-close {
    position: absolute;
    right: -30px;
    top: -30px;
    background: none;
    color: #000;
    z-index: 4444;
    background: #fff;
    border-radius: 50px;
    width: 40px;
    height: 40px;
}

.image-gallery .btn {
    border-radius: 0;
    text-transform: uppercase;
    padding: 10px 15px;
    color: #fff;
    background-color: #333438;
    font-size: 10px;
    margin-right: 10px;
    font-weight: 600;
    color: #fff;
}

.image-gallery .add-to-inspiration {
    color: #333;
    background-color: #ffcf85;
}

.image-gallery .btn img {
    margin-right: 5px;
}

.modal-footer-send {
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    padding: 10px 50px !important;
}

.image-slider-footer-form {
    padding: 0 10px;
    margin: 10px 0;
}

.image-gallery input,
.image-gallery select,
.image-gallery select:focus {
    background-color: #eee !important;
}

.gallery-box .gallery-type {
    position: absolute;
    background-color: #202020;
    top: 10px;
    left: 10px;
    color: #fff;
    padding: 2px 10px;
    border-radius: 40px;
}

.gallery-box .form-wrap h5 {
    padding-top: 15px;
}

.gallery-box .form-wrap label {
    color: #fff;
    margin-bottom: 2px;
    margin-top: 10px;
    font-size: 14px;
}

.gallery-box .form-content-wrap .save-btn {
    font-size: 14px;
    text-transform: capitalize;
    background: -moz-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, rgba(254, 181, 68, 1)), color-stop(1%, rgba(254, 181, 68, 1)), color-stop(100%, rgba(205, 130, 13, 1)));
    background: -webkit-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -o-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: -ms-linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    background: linear-gradient(45deg, rgba(254, 181, 68, 1) 0%, rgba(254, 181, 68, 1) 1%, rgba(205, 130, 13, 1) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#cd820d', endColorstr='#feb544', GradientType=1);
    display: block;
    color: #fff;
    font-weight: 600;
    margin-top: 10px;
}

.cancel-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #fff;
    font-size: 22px;
}

.cancel-btn:hover {
    color: #fff;
}

.add-favo {
    position: absolute;
    top: -70px;
    right: -70px;
    transform: rotate(45deg);
    font-size: 24px;
    cursor: pointer;
    height: 140px;
    width: 140px;
    color: #df4239;
    background-color: #ffcf85;
}

.add-favo i {
    position: absolute;
    bottom: 17px;
    right: 58px;
    transform: rotate(-45deg);
}

@media(max-width:768px) {
    .modal .btn-close {
        right: 5px;
        top: 5px;
        border: none;
    }
    .image-gallery .slick-prev {
        left: 0;
        background-color: rgba(0, 0, 0, .8);
        width: 50px;
        height: 40px;
    }
    .image-gallery .slick-next {
        right: 0;
        background-color: rgba(0, 0, 0, .8);
        width: 50px;
        height: 40px;
    }
}

@media(max-width:576px) {
    .gallery-box-buttons {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .gallery-box-buttons a {
        margin: 5px 0;
        padding: 10px;
        font-size: 16px;
    }
    .gallery-box-buttons {
        position: relative;
    }
    .image-gallery .btn {
        margin: 5px;
    }
}