* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

:before,
:after {
    -webkit-transition: .4s;
    -o-transition: .4s;
    transition: .4s;
}

.flexcontainer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flexcontainer.center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.flexcontainer.justify-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flexcontainer.justify-center > * {
    margin: 0 10px;
}

.row {
    float: left;
    width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
}

body.noscroll {
    overflow: hidden;
}

.full-wrapper {
    float: left;
    width: 100%;
}

.container-fluid {
    width: 90%;
    margin: 0 auto;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .6);
    z-index: 10000;
}

.header.fixed {
    background: rgba(255, 255, 255, .9);
}

.header .headerwrapper {
    width: 100%;
    float: left;
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.header .headerwrapper > div {
    display: inline-block;
    vertical-align: middle;
}

.header .headerwrapper .logo {
    width: 200px;
}

.header .headerwrapper .navbar .navlist {
    float: right;
}

.header .headerwrapper .navbar li {
    float: left;
    list-style: none;
}

.header .headerwrapper .navbar li.has-child {
    position: relative;
}

.header .headerwrapper .navbar li.has-child > ul {
    position: absolute;
    top: 100%;
    left: 0;
    padding-top: 5px;
    width: 200px;
}

.header .headerwrapper .navbar li.has-child:hover > ul {}

.header .headerwrapper .navbar li.has-child > ul li {
    float: left;
    width: 100%;
}

.header .headerwrapper .navbar li.has-child > ul li + li {
    margin: 3px 0 0;
}

.header .headerwrapper .navbar li.has-child > ul li a {
    float: left;
    width: 100%;
    padding: 7px;
    padding-left: 10px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: rgb(223, 85, 70);
    color: #fff;
}

.header .headerwrapper .navbar li.has-child > ul > li {
    float: left;
    width: 100%;
    list-style: none;
    margin: 0;
    -o-transition: .6s;
    -webkit-transition: .6s;
    transition: .6s;
    margin-bottom: 2px;
    display: none;
}

.header .headerwrapper .navbar li.has-child > ul > li:last-child {
    margin-bottom: 0px;
}

.backtrigger {
    float: left;
    width: 100%;
    padding: 10px;
    position: relative;
    padding: 10px 20px 10px 60px;
    border-bottom: 1px solid rgba(255, 2552, 255, .5);
    margin-top: -10px;
    color: #fff;
}

.backtrigger i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-style: normal;
    border-right: 1px solid rgba(255, 2552, 255, .5);
}

.backtrigger i:before {
    content: '\f0d9';
    font-family: 'fontawesome';
}

@media (min-width:1200px) {
    .header .headerwrapper .navbar li.has-child:hover > ul > li {
        display: block;
        visibility: hidden;
        -webkit-animation: show .3s linear forwards;
        animation: show .3s linear forwards;
        -webkit-animation-delay: .1s;
        animation-delay: .1s;
    }
}

@-webkit-keyframes show {
    from {
        margin-top: -40px;
        visibility: hidden;
    }
    to {
        margin-top: 0;
        visibility: visible;
    }
}

@keyframes show {
    from {
        margin-top: -40px;
        visibility: hidden;
    }
    to {
        margin-top: 0;
        visibility: visible;
    }
}

.header .headerwrapper .navbar li + li {
    margin-left: 40px;
}

.header .headerwrapper .navbar li a,
.booknow a {
    text-transform: uppercase;
    color: #525252;
}

.booknow a {
    text-transform: capitalize;
    padding: 5px 10px;
    background: rgb(223, 85, 70);
    color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.header .headerwrapper .logdetails {
    visibility: hidden;
    opacity: 0;
    width: 190px;
    white-space: nowrap;
}

.header .headerwrapper .logdetails.homepage {
    display: none;
}

.header .headerwrapper .logdetails a,
.header .headerwrapper .logdetails p {
    padding: 5px 25px;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}

.header .headerwrapper .logdetails p {
    text-transform: uppercase;
    color: #525252;
    font-weight: 600
}

.header .headerwrapper .logdetails a.register {
    background: #fff;
    color: #df5546
}

.header .headerwrapper .logdetails a.login {
    background: #df5546;
    color: #fff;
}

.header .headerwrapper .logdetails a.login:hover i:before {
    content: '\f13e';
}

.banner .sliders {
    float: left;
    width: 100%;
}

.banner .sliders,
.banner .sliders * {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.banner,
.banner .slider {
    position: relative;
    float: left;
    width: 100%;
}

.banner .sliderelatedtext {
    top: 100%;
    margin-top: -30px;
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
}

.banner .sliderelatedtext.ontop {
    top: auto;
    bottom: 50px;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    display: none;
}

.banner .slick-active .sliderelatedtext.ontop {
    visibility: visible;
}

.banner .sliderelatedtext h2 {
    font-size: 40px;
    font-weight: 400;
    width: 70%;
    margin-left: 15%;
    background: #df5546;
    color: #fff;
    text-transform: uppercase;
}

.banner .sliderelatedtext.ontop h2 {
    font-size: 25px;
    background: #fff;
    color: #df5546;
    display: inline-block;
    float: none;
    width: auto;
    margin: 0;
    padding: 10px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.banner .slideimg img {
    float: left;
    width: 100%;
    height: 70vh;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner.detailed .slideimg img {
    height: 100vh;
}

.banner .bannertop,
.banner .bannersearch {
    position: absolute;
    top: 45%;
    left: 0;
    right: 0;
    text-align: center;
}

.banner .bannersearch .icons {
    margin: 30px auto 0;
    width: 100%;
    max-width: 800px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.banner .bannersearch .icons .ico {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.banner .bannersearch .icons .icon {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    border: 2px solid #fff;
    margin-bottom: 10px;
    background: rgb(223, 85, 70);
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.banner .bannersearch .icons .text {
    color: rgb(223, 85, 70);
    font-weight: 600;
    color: #fff;
    text-shadow: 0 0 7px #000;
}

.banner .bannersearch .icons .icon i {
    font-size: 23px;
}

.clearfix {
    clear: both;
}

.banner .bannertop {
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .7);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
}

.banner-content {
    width: 100%;
}

.banner-content-left, .banner-content-right{
    float: left;
    width: 50%;    
}

.banner-content-left{
    margin-top: 10%;
}

.banner-content-right .banner-quickForm{
    width: 50%;
    background: #f7f7f0;
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25px;
    margin-left: 28%;
}

.banner-quickForm label,.banner-quickForm .intext{
    float: left !important;
    width: 80% !important;
    text-align: left !important;
    margin-left: 15px !important;
    height: 30px !important;
}

.banner-quickForm label{
    padding-top: 8px !important;
    padding-bottom: 2px !important;
}

.banner-quickForm .intext{
    background-color: #fff;
    border: #d2d2d2;
    box-shadow: 0 0 1px 1px #d7d7d7;
}

.banner-quickForm .flexcontainer{
    width: 100%;
    float: left;
    padding-top: 20px;
    margin-left: 15px;
}

.banner-quickForm .submit{
    padding: 10px 30px;
    background: rgb(223, 85, 70);
    float: none;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-left: 26%;
    border: 1px solid #afafaf;
}

.banner .bannertop h2 {
    font-weight: 300;
    letter-spacing: 5px;
    font-size: 55px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 60px;
    line-height: 50px;
}

.banner .bannertop span {
    font-size: 25px;
    letter-spacing: 4px;
    color: #fff;
    max-width: 80%;
}

.banner .bannertop a {
    padding: 10px 25px;
    background: rgb(223, 85, 70);
    color: #fff;
    display: inline-block;
    margin-top: 40px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.banner .bannertop a i {
    margin-left: 10px;
    -webkit-animation: 2s linear bounce infinite;
    animation: 2s linear bounce infinite;
    -webkit-transition: .05s;
    -o-transition: .05s;
    transition: .05s
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    60% {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }
}

.banner .bannersearch form {
    display: inline-block;
    white-space: nowrap;
}

.banner .bannersearch form .inputgroup {
    float: left;
    position: relative;
}

.banner .bannersearch form .inputgroup .suggestdrop {
    position: absolute;
    top: 100%;
    background: #fff;
    width: 200px;
    text-align: left;
    z-index: 100;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: none;
    -webkit-box-shadow: 0 0 3px #999;
    box-shadow: 0 0 3px #999;
    max-height: 200px;
    overflow-y: auto;
}

.banner .bannersearch form .inputgroup .suggestdrop ul li {
    list-style: none;
    font-size: 13px;
    padding: 5px 10px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.banner .bannersearch form .inputgroup .suggestdrop ul ul {
    padding-left: 10px;
}

.banner .bannersearch form .inputgroup .suggestdrop ul ul li {
    font-size: 12px;
}

.banner .bannersearch form .inputgroup .suggestdrop ul li + li {
    border-top: 1px solid rgba(0, 0, 0, .1)
}

.banner .bannersearch form .inputgroup .suggestdrop ul li:hover {
    background: #e1e1e1;
    cursor: pointer;
}

.inputgroup.hidden {
    display: none !important
}

.banner .bannersearch form .inputgroup:nth-child(2):before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: #e1e1e1;
}

.banner .bannersearch form .inputgroup .intext {
    padding: 15px 20px;
    background: #fff;
    border: none;
    width: 250px;
}

.banner .bannersearch form .inputgroup .intext.small {}

.banner .bannersearch form .btn {
    padding: 15px 20px;
    border: none;
    cursor: pointer;
}

.banner .bannersearch form .btn.submit {
    background: #df5546;
    color: #fff;
}

.rounded-left {
    -webkit-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
}

.rounded-right {
    -webkit-border-radius: 0 5px 5px 0;
    border-radius: 0 5px 5px 0;
}

.pn-0 {
    float: left;
    width: 100%
}

.panels {
    position: relative;
    float: left;
    width: 100%;
}

.pn-1 {
    padding: 0 0 50px;
    margin-top: -25px;
    min-height: -webkit-calc(100vh - 303px);
    min-height: calc(100vh - 303px);
}

.pn-1.no-top {
    margin-top: 75px;
    padding-top: 50px;
}

.pn-1.no-margin {
    margin-top: 0;
    padding-top: 50px;
    min-height: inherit;
}

.categories {
    width: -webkit-calc(100% - 220px);
    width: calc(100% - 220px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.categories .category {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33% - 25px);
    -webkit-flex: 0 0 -webkit-calc(33.33% - 25px);
    flex: 0 0 calc(33.33% - 25px);
    max-width: -webkit-calc(33.33% - 25px);
    max-width: calc(33.33% - 25px);
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    background: #fff;
    -webkit-box-shadow: 0 0 0 #999;
    box-shadow: 0 0 0 #999;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin: 0 20px;
}

.categories .category.comingsoon:before {
    content: 'Coming Soon';
    position: absolute;
    top: -30px;
    right: 0;
    width: 60px;
    height: 60px;
    font-size: 10px;
    text-align: center;
    background: rgb(223, 85, 70);
    -webkit-border-radius: 100%;
    border-radius: 100%;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: white;
}

.categories .category:hover {
    -webkit-box-shadow: 0 0 6px #999;
    box-shadow: 0 0 6px #999;
}

.categories .category + .category {}

.categories .category:nth-child(3n + 1) {}

.categories .category:nth-child(n + 4) {
    /*! margin-top: 20px; */
}

.categories .category .img {
    float: left;
    height: 196px;
}

.categories .category .img img {
    width: 100%!important;
    height: 128px!important
        top: 0;
    bottom: 0;
    right: 0;
    float: right;
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid gray!important;
}

.categories .category .list {
    float: left;
    width: -webkit-calc(100% - 130px);
    width: calc(100% - 130px);
    padding: 15px 10px 15px;
}

.categories .category .list .text {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.categories .category .list .text .infotext {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    padding-bottom: 10px;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    background: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s
}

.categories .category .list .text.more .infotext {
    background: #e1e1e1;
    padding: 5px;
}

.categories .category .list .text > p {
    -webkit-transition: .7s;
    -o-transition: .7s;
    transition: .7s
}

.categories .category .list .text.more > p {
    -webkit-transform: translateY(-20%);
    -ms-transform: translateY(-20%);
    transform: translateY(-20%)
}

.categories .category .list .text.more .infotext {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0)
}

.categories .category .list .order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 10px;
    float: left;
    width: 100%;
}

.categories .category .list .order a:not(.booknow) {
    width: 30px;
    height: 30px;
    float: left;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    text-align: center;
    /*! background: #e1e1e1; */
    line-height: 30px;
    color: rgb(223, 85, 70);
    font-size: 19px;
}

.categories .category .list .order a.booknow {
    float: left;
    width: auto;
    padding: 5px 10px;
    margin-top: 0px;
    border: 1px solid #e1e1e1;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #525252;
    background: #fff;
}

.categories .category .list .order a:hover {
    /*! -webkit-box-shadow: 0 0 2px #525252; */
    /*! box-shadow: 0 0 2px #525252; */
}

.categories .category .list .order a.clicked {
    background-color: aqua !important;
    color: #fff;
}

.categories .category:hover .list .order a {
    background: rgb(223, 85, 70);
    color: #fff;
}

.categories .category .list li {
    list-style: none;
}

.categories .category .list li:first-child,
.categories .category .list li:first-child a {
    color: #df5546;
    font-size: 15px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.categories .category .list li a {
    font-size: 12px;
    color: #3e3f3f
}

.pn-2 {
    background: url(../images/bg/1.jpg) no-repeat fixed;
    -webkit-background-size: cover;
    background-size: cover;
    padding: 50px 0;
    text-align: center;
}

.pn-2 h2 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
    color: #fff;
}

.pn-2 .formwrap {
    width: 70%;
    display: inline-block;
    margin-top: 50px
}

.pn-2 .formwrap .formgroup {
    float: left;
    width: 100%;
    text-align: center;
}

.pn-2 .formwrap .formgroup + .formgroup {
    margin-top: 20px;
}

.pn-2 .formwrap .inputgroup {
    width: 50%;
    float: left;
    padding: 0 10px;
    position: relative;
}

.pn-2 .formwrap .inputgroup.full {
    width: 100%;
}

.pn-2 .formwrap .inputgroup label {
    position: absolute;
    top: 12px;
    left: 20px;
    pointer-events: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    color: rgb(116, 111, 111)
}

.pn-2 .formwrap .inputgroup .intext {
    float: left;
    width: 100%;
    padding: 20px 10px 7px;
    border: none;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    color: rgb(116, 111, 111)
}

.pn-2 .formwrap .inputgroup .intext:focus ~ label {
    top: 2px;
    font-size: 13px;
}

.pn-2 .formwrap .inputgroup textarea.intext {
    height: 100px;
    max-width: 100%;
    max-height: 100px;
    min-width: 100%;
    min-height: 100px;
    font-family: 'Open Sans', sans-serif;
}

.pn-2 .formwrap .buttons {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.pn-2 .formwrap .buttons .submit {
    padding: 10px 30px;
    border: none;
    background: rgb(223, 85, 70);
    color: #fff;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    cursor: pointer;
}

.footer {
    background: #333333;
    padding: 30px 0;
    color: #fff;
    font-size: 13px;
}

address {
    font-style: normal;
}

address a {
    color: #000;
}

.footer a {
    color: #fff;
}

.ft-0 {
    float: left;
    padding-right: 40px;
}

.ft-0:last-child {
    padding-right: 0;
}

.ft-0 li {
    list-style: none;
}

.ft-0 ul:not(.socialmedia) li + li {
    margin-top: 2px;
}

.ft-0 ul.socialmedia {
    margin-top: 10px;
}

.ft-0 ul.socialmedia li {
    float: left;
}

.ft-0 ul.socialmedia li + li {
    margin-left: 20px;
}

.ft-1 {
    width: 30%
}

.ft-2 {
    width: 15%
}

.ft-3 {
    width: 25%;
}

.ft-0 h2 {
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.end {
    background: rgb(223, 85, 70);
    padding: 10px 0;
    color: #fff;
    font-size: 13px;
}

.end a {
    color: #fff;
}

.end .copyright {
    float: left;
}

.end .design {
    float: right;
}

.readmore {
    float: left;
    width: 100%;
    text-align: left;
    margin-top: 20px;
}

.readmore.right {
    text-align: right;
}

.readmore a {
    color: #525252;
}

.category .readmore {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0;
}

.popups {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .8);
    display: none;
    z-index: 100000;
    overflow-y: auto;
}

.popups.visible {
    display: block;
}

.popups .close {
    width: 30px;
    height: 30px;
    position: absolute;
    top: -webkit-calc(20% + 10px);
    top: calc(20% + 10px);
    right: -webkit-calc(50% - 190px);
    right: calc(50% - 190px);
    background: #e1e1e1;
    z-index: 100;
    text-align: center;
    line-height: 30px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background: rgb(223, 85, 70);
    color: #fff;
    cursor: pointer;
}

.popups .close.big-left {
    right: -webkit-calc(50% - 340px);
    right: calc(50% - 340px);
}

.popups .popup {
    width: 400px;
    position: absolute;
    top: 20%;
    left: -webkit-calc(50% - 200px);
    left: calc(50% - 200px);
    background: #fff;
    padding: 10px;
    -webkit-box-shadow: 0 0 3px #999;
    box-shadow: 0 0 3px #999;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    display: none;
}

.contactform {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.contactform > div {
    padding: 10px;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.contactform address {
    line-height: 25px;
    text-align: center;
}

.contactform > div.form {
    position: relative;
}

.contactform > div.form:before {
    content: '';
    top: 30%;
    bottom: 30%;
    left: -10px;
    width: 1px;
    background: rgba(0, 0, 0, .2);
    position: absolute;
}

.popups .popup.big {
    width: 700px;
    left: -webkit-calc(50% - 350px);
    left: calc(50% - 350px)
}

.popups .popup.visible {
    display: block;
}

.popups .popup .form,
.registration .form {
    position: relative;
    float: left;
    width: 100%;
}

.popups .popup .result,
.registration .result {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    visibility: hidden;
    display: none;
    text-align: center;
}

.popups .popup .result.show,
.registration .result.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    visibility: visible;
}

.popups .popup form,
.registration form {
    float: left;
    width: 100%;
    padding: 0 10px;
    color: #525252;
}

.popups .popup h4,
.registration h4 {
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    margin: 20px 0;
}

.popups .popup .form h4 {
    text-align: left;
    padding-left: 10px
}

.popups .popup .inputgroup,
.registration .inputgroup {
    float: left;
    width: 100%;
    position: relative;
}

.popups .popup .border:before,
.popups .popup .border:after,
.registration .border:before,
.registration .border:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: #e1e1e1;
}

.popups .popup .border:after,
.registration .border:after {
    right: 100%;
    background: rgb(223, 85, 70)
}

.popups .popup .border.focused:after,
.popups .popup .border.filled:after,
.registration .border.focused:after,
.registration .border.filled:after {
    right: 0;
}

.popups .popup .border.filled:after,
.registration .border.filled:after {
    background: green;
}

.popups .popup .inputgroup label,
.registration .inputgroup label {
    position: absolute;
    left: 0;
    top: 5px;
    pointer-events: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.popups .popup .inputgroup + .inputgroup,
.registration .inputgroup + .inputgroup {
    margin-top: 15px;
}

.popups .popup .inputgroup .intext,
.registration .inputgroup .intext {
    float: left;
    width: 100%;
    position: relative;
    padding: 10px 0;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
}

.popups .popup .inputgroup .intext.captcha,
.registration .inputgroup .intext.captcha {
    border: 1px solid #e1e1e1;
}

.popups .popup .inputgroup .intext ~ em,
.registration .inputgroup .intext ~ em {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    width: 30px;
    background: rgb(223, 85, 70);
    font-style: normal;
}

.popups .popup .inputgroup .intext ~ em:before,
.registration .inputgroup .intext ~ em:before {
    content: '\f071';
    position: absolute;
    font-family: 'fontawesome';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    color: #fff;
}

.popups .popup .inputgroup .checkbox,
.registration .inputgroup .checkbox {
    display: none;
}

.popups .popup .inputgroup .checkbox ~ label,
.registration .inputgroup .checkbox ~ label {
    top: 0;
    position: relative;
    padding-left: 30px;
    pointer-events: auto;
    cursor: pointer;
}

.popups .popup .inputgroup .checkbox ~ label:before,
.registration .inputgroup .checkbox ~ label:before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 20px;
    background: #999;
}

.popups .popup .inputgroup .checkbox ~ label:after,
.registration .inputgroup .checkbox ~ label:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: rgb(223, 85, 70);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.popups .popup .inputgroup .checkbox:checked ~ label:after,
.registration .inputgroup .checkbox:checked ~ label:after {
    -webkit-transform: scale(.7);
    -ms-transform: scale(.7);
    transform: scale(.7)
}

.popups .popup .inputgroup .intext:focus ~ label,
.popups .popup .inputgroup.filled .intext ~ label,
.registration .inputgroup .intext:focus ~ label,
.registration .inputgroup.filled .intext ~ label {
    top: -7px;
    font-size: 13px;
}

.popups .popup .buttongroup,
.registration .buttongroup {
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.popups .popup .buttongroup.nomargin {
    margin-top: 0;
}

.popups .popup .buttongroup.nomargin a {
    padding: 5px 10px;
}

.popups .popup .buttongroup .submit,
.popups .popup .buttongroup a,
.registration .buttongroup .submit,
.registration .buttongroup a {
    display: inline-block;
    padding: 10px 30px;
    background: rgb(223, 85, 70);
    border: none;
    color: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}

.facebooklogin {
    float: left;
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e1e1e1;
    text-align: center;
}

.facebooklogin .facebookloginbar {
    display: inline-block;
    margin: 10px 0 20px;
}

.facebooklogin .facebookloginbar .fblogin {
    padding: 10px 30px;
    background: #3b5998;
    color: #fff;
    border: none;
    padding-left: 50px;
    position: relative;
    cursor: pointer;
}

.facebooklogin .facebookloginbar .fblogin:before {
    content: '\f09a';
    font-family: 'fontawesome';
    position: absolute;
    left: 15px;
    font-size: 18px;
}

.facebooklogin .facebookloginbar .fblogin:after {
    content: '';
    position: absolute;
    left: 39px;
    width: 1px;
    top: 5px;
    bottom: 5px;
    background: rgba(225, 225, 225, 0.19);
}

.half a {
    font-size: 13px;
    color: #525252;
}

.panelheading {
    margin-top: 0px;
    margin-bottom: 100px;
    font-size: 30px;
    text-align: center;
    float: left;
    width: 100%;
    position: relative;
}

.panelheading h2 {
    display: inline-block;
    padding: 10px 20px;
    background: rgb(223, 85, 70);
    width: 80%;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    line-height: 30px;
}

.sidelist {
    float: left;
    width: 200px;
    margin-right: 20px;
}

.sidelist ul {
    float: left;
    width: 100%;
    margin: 0;
}

.sidelist ul li {
    float: left;
    width: 100%;
    list-style: none;
    background: rgb(223, 85, 70);
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.sidelist.inner ul li {
    background: none;
}

.sidelist ul li a {
    padding: 10px;
    display: inline-block;
    color: #fff;
    width: 100%;
    position: relative;
    padding-left: 30px;
}

.sidelist.inner ul li a {
    color: rgb(223, 85, 70);
    font-size: 25px;
}

.sidelist ul li a:before {
    content: '';
    position: absolute;
    font-family: 'fontawesome';
    left: 8px;
    top: 14px;
    font-size: 18px;
}

.sidelist ul li a.services:before {
    content: '\f013';
}

.sidelist.inner ul li a.services::before {
    font-size: 25px;
    left: 0
}

.sidelist ul li a.products:before {
    content: '\f16b';
}

#slidelistall.sidelist ul li a.products:before {
    left: 0;
    top: 18px
}

.sidelist ul li + li {
    margin-top: 10px;
}

.banner .bannersearch form .inputgroup .intext {}

.popups .popup .inputgroup textarea.intext {
    min-width: 100%;
    max-width: 100%;
    height: 50px;
    min-height: 50px;
    max-height: 50px;
    font-family: 'Open Sans', sans-serif;
}

.scroller {
    float: left;
    width: 100%;
}

.scroller .scroll {
    float: left;
    width: 100%
}

.categorylist {
    float: left;
    width: 100%;
}

.scroller *:not(.category) {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.sidelist .listing {
    float: left;
    width: 200px;
}

.sidelist .listing .list {
    float: left;
    width: 100%;
    padding: 5px 0;
}

.sidelist .listing .list + .list {
    margin-top: 5px;
}

.sidelist .listing .list input.check {
    display: none;
}

.sidelist .listing .list label {
    position: relative;
    padding-left: 30px;
    line-height: 20px;
    font-size: 13px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.sidelist .listing .list label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background: #fff;
    border: 1px solid rgb(194, 185, 185);
}

.sidelist .listing .list label:after {
    content: '';
    height: 20px;
    width: 20px;
    position: absolute;
    left: 1px;
    top: 1px;
    background: rgb(223, 85, 70);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.sidelist .listing .list input:checked ~ label:after {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
}

.categories.full .category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    /*! margin: 0 25px; */
}

.categories.full .category .img img {
    position: relative;
    width: 100%;
}

.categories.full .category .list {
    width: 100%;
}

.banner.inner .slideimg img {
    height: 60vh;
}

.list p {
    color: rgb(48, 45, 45);
    font-size: 14px;
    line-height: 22px;
}

.selectedcontent {
    float: left;
    width: 100%;
    position: relative;
}

.selectedcontent .contentimg {
    float: left;
    width: 300px;
    margin-right: 30px;
}

.selectedcontent .contentimg img {
    width: 100%;
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
}

.selectedcontent .contentheading {
    float: left;
    width: 80%;
    text-align: center;
    margin-left: 10%
}

.selectedcontent .contentheading h1,
.selectedcontent .contentheading h2 {
    font-size: 35px;
    letter-spacing: 3px;
    font-weight: 400;
    color: rgb(223, 85, 70)
}

.selectedcontent .contentheading h1 + p,
.selectedcontent .contentheading h2 + p {
    font-size: 13px;
    color: #525252;
    margin-bottom: 30px;
}

.selectedcontent .contentheading span {
    color: #525252;
    line-height: 25px;
    font-size: 14px;
    display: inline-block;
    width: 100%;
}

.selectedcontent .contentheading span + span {
    margin-top: 10px;
}

.reviews {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    margin-bottom: 20px;
    font-size: 13px;
}

.reviews div {
    cursor: pointer;
}

.reviews div + div {
    margin-left: 30px;
}

.reviews .stars {
    float: left;
}

.reviews .stars .star {
    float: left;
}

.reviews .stars .star + .star {
    margin-left: 3px;
}

.orderoptions {
    float: left;
    width: 100%;
}

.orderoptions .buttons {
    float: left;
    margin-top: 50px;
    width: 100%;
    text-align: center;
}

.orderoptions .buttons a {
    padding: 10px 15px;
    background: rgb(223, 85, 70);
    float: none;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
}

.orderoptions .buttons a + a {
    margin-left: 10px;
}

.arealist {
    position: absolute;
    z-index: 9999999999;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    width: 360px;
    -webkit-box-shadow: 0 0 3px #999;
    box-shadow: 0 0 3px #999;
    padding: 5px;
    display: none;
    -webkit-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

.arealist.visible {
    display: block;
}

.arealist li {
    white-space: nowrap;
    font-size: 12px;
    overflow: hidden;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: RGB(140, 140, 140)
}

.arealist li span {
    font-size: 15px;
    font-weight: 400;
    text-transform: capitalize;
    color: #000;
    margin-right: 10px;
}

.arealist li + li {
    border-top: 1px solid #e1e1e1;
    margin-top: 5px;
}

/*.popups .popup .inputgroup.loading{padding-right:30px;}
.popups .popup .inputgroup .loading {
    position: absolute;
    right:0; bottom:0; top:0; 
}
.popups .popup .inputgroup .loading:before{content:'\f1ce'; position: absolute; right:5px; top:2px; font-family: 'fontawesome';}
*/

.sucess_indicator {
    float: left;
    width: 100%;
    padding: 10px;
    position: relative;
    height: 80px;
}

.sucess_indicator:before {
    content: '\f058';
    font-family: 'fontawesome';
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
    color: green;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 50px;
}

.captcha,
.wrapcaptcha,
.captchaimg {
    display: inline-block;
    vertical-align: middle;
}

.captcha {
    width: 100%;
}

.captchaimg img {
    height: 32px;
    width: 80%;
    float: left;
}

.captchaimg .captcode {
    float: left;
    width: 20% !important;
    text-align: center !important;
    font-size: 12px !important;
    margin: 0 !important;
    line-height: 32px;
    cursor: pointer;
}

.captchaimg {
    width: 40%;
}

.wrapcaptcha {
    width: -webkit-calc(60% - 4px);
    width: calc(60% - 4px);
}

.registration {
    margin-top: 120px;
    margin-left: -webkit-calc(50% - 250px);
    margin-left: calc(50% - 250px);
    width: 500px;
    border: 1px solid #e1e1e1;
    float: left;
    padding: 15px;
    -webkit-box-shadow: 0 0 3px rgb(218, 201, 201);
    box-shadow: 0 0 3px rgb(218, 201, 201);
    margin-bottom: 50px;
}

.registration h4 {
    margin-bottom: 20px
}

.registration p.head {
    text-align: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.sidelist.fixed ul {
    position: fixed;
    top: 100px;
    bottom: 0;
    width: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidelist.fixed .listing {
    position: absolute;
    top: 60px;
}

.footer-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}

.ft-1 {
    display: none;
}

.inner-panels {
    float: left;
    width: 100%;
    margin-top: 74px;
    padding: 50px 0;
    text-align: center;
    min-height: -webkit-calc(100vh - 302px);
    min-height: calc(100vh - 302px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.inner-panels h2 {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 30px;
}

.inner-panels p {
    font-size: 17px;
    padding: 0 100px;
    line-height: 25px;
}

.sidenav {
    float: left;
    width: 230px;
}

.sidenav ul li {
    list-style: none;
    float: left;
    width: 100%;
}

.sidenav ul li a {
    float: left;
    width: 100%;
    color: #fff;
    background: rgb(223, 85, 70);
    padding: 10px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.sidenav ul li + li {
    margin-top: 5px;
}

.containertext {
    float: left;
    width: -webkit-calc(100% - 250px);
    width: calc(100% - 250px);
    text-align: left;
    padding: 0 25px;
    margin-left: 20px;
}

.containertext p {
    line-height: 25px;
    font-size: 16px;
}

.containertext p + p {
    margin-top: 10px;
}

.nav-ico {
    display: none;
}

.pn-0.maintext {
    text-align: left;
    background: #fff;
}

.pn-0.maintext .detailedtext {
    float: left;
    width: 100%;
}

.pn-0.maintext .detailedtext .texts {
    float: left;
    width: 100%;
}

.pn-0.maintext .detailedtext .texts p + p {
    margin-top: 10px;
}

.pn-0.maintext .detailedtext .texts + .texts {
    margin-top: 30px;
}

.pn-0.maintext .detailedtext h2 {
    color: #000;
    font-size: 20px;
    margin-bottom: 5px;
}

.pn-0.maintext .detailedtext ul {
    padding-left: 20px;
    margin: 10px 0;
    float: left;
    width: 100%;
}

.pn-0.maintext .detailedtext ul li {
    list-style: decimal;
    line-height: 25px;
    position: relative;
    float: left;
    width: 100%;
}

.pn-0.maintext .detailedtext .texts ul p {
    margin-top: 5px;
}

.pn-0.maintext .detailedtext .texts ul p + p {
    margin-top: 5px;
}

.pn-0.maintext .detailedtext ul li span:nth-child(1) {
    width: 150px;
    float: left;
    position: relative;
    margin-right: 20px;
    font-weight: 600
}

.pn-0.maintext .detailedtext ul li span:nth-child(1):before {
    content: ':';
    position: absolute;
    right: -10px;
    top: 0px;
}

.pn-0.maintext .detailedtext ul li span:last-child {
    width: -webkit-calc(100% - 170px);
    width: calc(100% - 170px);
    float: right;
}

.pn-0.maintext .detailedtext ul li + li {
    margin-top: 5px;
}

.gobackbutton {
    position: absolute;
    left: -webkit-calc((100% - 1200px)/2);
    left: calc((100% - 1200px)/2);
    top: 0;
}

.gobackbutton a {
    float: left;
    padding: 10px 15px 10px 5px;
    ;
    color: #fff;
    background: rgb(223, 85, 70);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.gobackbutton a i {
    visibility: hidden;
    opacity: 0;
    position: relative;
    left: 10px;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}

.gobackbutton a:hover i {
    left: -5px;
    visibility: visible;
    opacity: 1;
}

.gobackbutton a:hover {
    padding-left: 25px;
}

@media (max-width:1200px) {
    .gobackbutton {
        left: 0;
    }
    .banner .bannertop h2 {
        font-size: 30px;
        max-width: 90%;
        line-height: 35px;
        margin-bottom: 20px;
    }
    .banner .bannertop span {
        max-width: 90%;
        line-height: 30px;
    }
    .selectedcontent .contentheading {
        width: 100%;
        margin: 0;
    }
    .header.showleft {
        left: -250px;
        right: auto;
        width: 100%;
    }
    .header .headerwrapper .navbar {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -250px;
        width: 250px;
        background: rgb(223, 85, 70);
        z-index: 1000000;
        padding: 10px 0 0 20px;
    }
    .header .headerwrapper .navbar li {
        float: left;
        width: 100%;
        list-style: none;
        margin: 0;
    }
    .header .headerwrapper .navbar li + li {
        margin: 0;
    }
    .header .headerwrapper .navbar li a {
        width: 100%;
        float: left;
        padding: 5px;
        color: #fff;
    }
    .header .headerwrapper .navbar.showleft {
        right: 0;
    }
    .header .headerwrapper .navbar li.has-child ul {
        position: fixed;
        right: -250px;
        top: 0;
        bottom: 0;
        background: rgb(203, 75, 61);
        left: auto;
        display: block;
    }
    .header .headerwrapper .navbar li.has-child ul.childleft {
        right: 0;
    }
    .header .headerwrapper .navbar li.has-child ul li {
        background: none;
        display: block;
    }
    .header .headerwrapper .navbar li.has-child ul li:first-child {
        border: none;
    }
    .header .headerwrapper .navbar li.has-child > ul li a {
        background: none;
    }
    .nav-ico {
        display: block;
        position: absolute;
        right: 20px;
        top: 25px;
        width: 30px;
    }
    .nav-ico span {
        background: rgb(223, 85, 70);
        width: 100%;
        height: 4px;
        float: left;
        -webkit-border-radius: 5px;
        border-radius: 5px;
    }
    .nav-ico span + span {
        margin-top: 4px;
    }
    body {
        overflow-x: hidden;
    }
    .container {
        width: 90%;
    }
    .header .headerwrapper .navbar {
        /*! display: none; */
    }
    .header .headerwrapper .logdetails {
        display: none;
    }
    .banner .bannersearch {
        display: none;
    }
    .banner .sliderelatedtext {
        position: relative;
        margin: 0;
        bottom: 0;
    }
    .banner .sliderelatedtext.ontop h2,
    .panelheading h2 {
        font-size: 18px;
    }
    .panelheading {
        margin: 0 0 20px
    }
    .categories .category {
        width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .categories,
    .sidelist,
    .sidelist ul {
        width: 100%;
    }
    .sidelist ul li + li {
        margin: 0;
    }
    .sidelist {
        margin-bottom: 20px;
    }
    .sidelist.home ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .sidelist.home ul li {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 -webkit-calc(49% - 20px);
        -ms-flex: 0 0 calc(49% - 20px);
        flex: 0 0 calc(49% - 20px);
        max-width: 150px;
        margin: 0 10px;
    }
    .categories:not(.full) .category + .category {
        margin-top: 10px;
    }
    .categories {
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .categories:not(.full) .category {
        max-width: 350px;
    }
    .footer-flex {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-flex .ft-0 {
        width: 100%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer-flex .ft-0 + .ft-0 {
        margin-top: 20px;
    }
    .end {
        text-align: center;
    }
    .end .copyright,
    .end .design {
        float: none;
        display: inline-block;
    }
    .end .design {
        margin-top: 10px;
    }
    .sidenav {
        display: none;
    }
    .containertext {
        width: 100%;
        padding: 0;
        margin: 0;
    }
    .containertext p {
        text-align: center;
    }
    .categories.full .category {
        width: 100%;
    }
}

@media (min-width:410px) and (max-width:1200px) {
    .end .copyright {
        float: left;
    }
    .end .design {
        float: right;
        margin: 0
    }
}

@media (min-width:450px) and (max-width:749px) {
    .categories.full .category {
        width: 49%;
    }
    .categories.full .category:nth-child(2n) {
        margin-left: 2%
    }
    .footer-flex {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-flex .ft-0 {
        width: 49%;
        -webkit-box-flex: 0;
        -webkit-lex: 0 0 49%;
        -ms-flex: 0 0 49%;
        -webkit-flex: 0 0 49%;
        flex: 0 0 49%;
        max-width: 49%;
    }
}

@media (max-width:450px) {
    .popups .popup {
        width: 90%;
        left: 5%;
    }
    .popups .close {
        right: 7%
    }
}

@media (max-width:600px) {
    .contactform {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .contactform > div {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .contactform > div.form::before {
        left: auto;
        top: auto;
        bottom: -10px;
        left: 20%;
        right: 20%;
        height: 1px;
        width: auto;
    }
}

@media (min-width:600px) and (max-width:1200px) {
    .categories:not(.full) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
    }
    .categories:not(.full) .category {
        width: 49%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 49%;
        -ms-flex: 0 0 49%;
        flex: 0 0 49%;
        max-width: 350px;
    }
}

@media (max-width:700px) {
    .popups .popup.big {
        width: 90%;
        left: 5%;
    }
    .popups .close.big-left {
        right: 7%;
    }
    .booknow a {
        display: none;
    }
}

@media (min-width:750px) and (max-width:1200px) {
    .categories.full .category {
        width: 32.33%;
        margin-right: 1.5%
    }
    .categories.full .category:nth-child(3n) {
        margin-right: 0%
    }
    .footer-flex {
        -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-flex .ft-0 {
        width: 24%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 24%;
        -ms-flex: 0 0 24%;
        flex: 0 0 24%;
        max-width: 24%;
    }
    .booknow a {
        display: none;
    }
}

@media (min-width:901px) and (max-width:1200px) {
    .booknow a {
        display: block;
    }
    .sidelist:not(.home),
    .sidelist:not(.home) ul {
        width: 200px;
    }
    .categorylist {}
    .categories {
        width: -webkit-calc(100% - 220px);
        width: calc(100% - 220px);
        margin-top: 30px;
    }
    .categories.full .category {
        width: 49%;
        margin: 0
    }
    .categories:not(.full) {
        width: 100%;
    }
    .categories.full .category:nth-child(2n) {
        margin-left: 2%
    }
    .categories:not(.full) .category {
        width: 32.33%;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 32.33%;
        -ms-flex: 0 0 32.33%;
        flex: 0 0 32.33%;
        max-width: 340px;
    }
}

@media (min-width:1000px) and (max-width:1200px) {
    .categories.full .category {
        width: 32.33%;
        margin-right: 1.5%
    }
    .categories.full .category:nth-child(2n) {
        margin-left: 0%
    }
    .categories.full .category:nth-child(3n) {
        margin-right: 0%
    }
}

.reviews {
    text-align: center;
    padding: 50px 0;
    background: #fff;
}

.reviews h2 {
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 40px;
}

.reviews-panel * {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}

.reviews-panel {
    width: 70%;
    margin: 0 15%;
}

.reviews-panel p + h6 {
    margin-top: 20px;
    font-size: 18px;
}

.containertext .details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.containertext .details {
    margin-top: 20px;
    padding: 10px;
    background: #fff;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.containertext .details .name {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 30%;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}

.containertext .details .detailed {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 69%;
    -ms-flex: 0 0 69%;
    flex: 0 0 69%;
    max-width: 69%;
}

.containertext .details .detailed p {
    font-size: 14px;
}

.partners {
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 20px;
    justify-content: space-between;
}

.partners li {
    font-size: 16px;
    text-transform: capitalize;
    width: 32%;
    float: left;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 32.33%;
    -ms-flex: 0 0 32.33%;
    flex: 0 0 32.33%;
    max-width: 32.33%;
    list-style: none;
    background: #fff;
    padding: 35px 20px;
    border-radius: 5px;
    box-shadow: 0 0 3px #e1e1e1;
    position: relative;
    top: 0;
    transition: .1s;
}

.partners li:hover {
    box-shadow: 0 0 5px rgb(183, 183, 183);
    top: -5px;
}

.partners li:nth-child(n+4) {
    margin-top: 10px;
}

.partners li span {
    font-size: 13px;
}

.partnerlist ol,
.partnerlist ul {
    padding-left: 20px;
}

.partnerlist p + p {
    margin-top: 10px;
}

table {
    margin: 20px 0;
}

table td {
    padding: 20px;
    display: table-cell
}

table ol,
table ul {
    padding-left: 20px;
    padding-bottom:20px; 
}
.h2_css{
    font-size: 18px;
    font-weight: 600;
    color: #242424;
    margin: 0px 7px;
    padding: 3px;
}.my_listing_class{
    float:left;
    width:20%;
    height: 320px!important;
}.parent_listing_div{
    width:100%!important;
}hr.style-six {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.row{
    margin-right: 0px!important;
    margin-left: 0px!important;

}.city_css{
    font-size: 18px!important;
    margin: 0 30px;
}
.image_attr{
    width: 100%;
    padding: 2%;
    height: 110px;

}
.image_attr_div{
    background: rgba(0, 0, 0, .6);
    margin-bottom: 6px;
    position: relative;
}

._2zS6MHO2P48RkPErtIoyWF {
    background-color: #212121;
    position: relative;
    font-family: Axiforma-Regular,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}._2zS6MHO2P48RkPErtIoyWF ._1rbq3Atk4X94WXlo_Zcdt {
    border-bottom: 1px solid #424242;
}._2zS6MHO2P48RkPErtIoyWF .IHfkc4nRPBtqUMEIyt2cm {
    width: 100%;
    min-height: 120px;
    font-size: 14px;
}._2mZZdWSTPV3lz3_oEFuQBM {
    background-color: #212121;
    font-family: Axiforma-Regular,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}._2zS6MHO2P48RkPErtIoyWF ._1rbq3Atk4X94WXlo_Zcdt ._1aVoIFP-lP5rUuxLEgSOOD {
    font-size: 14px;
    line-height: 1.43;
    width: 100%;
    max-width: 1136px;
    margin: 0 auto;
    text-align: center;
}._2zS6MHO2P48RkPErtIoyWF ._1rbq3Atk4X94WXlo_Zcdt ._1aVoIFP-lP5rUuxLEgSOOD ._1Oind4yZRKuNYNjmUNkxh3 {
    padding-left: 0;
}._2zS6MHO2P48RkPErtIoyWF ._1rbq3Atk4X94WXlo_Zcdt ._1aVoIFP-lP5rUuxLEgSOOD ._1Oind4yZRKuNYNjmUNkxh3 {
    display: inline-block;
    padding: 24px;
}._2zS6MHO2P48RkPErtIoyWF ._1rbq3Atk4X94WXlo_Zcdt ._1aVoIFP-lP5rUuxLEgSOOD ._1Oind4yZRKuNYNjmUNkxh3 ._3hoP1ArfbZ-R6EbygRzBt {
    color: #e2e2e2;
    text-decoration: none;
}._2zS6MHO2P48RkPErtIoyWF .IHfkc4nRPBtqUMEIyt2cm ._2EEu4R9vj9gjkjkcXTK29q {
    max-width: 1136px;
    margin: 0 auto;
}._2zS6MHO2P48RkPErtIoyWF .IHfkc4nRPBtqUMEIyt2cm ._2EEu4R9vj9gjkjkcXTK29q .DG2aFyS5mV_TkMIEBfIYI {
    display: inline-block;
    font-size: 12px;
    padding: 18px 0;
    margin: 16px 0;
    margin-right: 80px;
    vertical-align: top;
    line-height: 2.86;
    color: #e2e2e2;
}._2zS6MHO2P48RkPErtIoyWF .IHfkc4nRPBtqUMEIyt2cm ._2EEu4R9vj9gjkjkcXTK29q .DG2aFyS5mV_TkMIEBfIYI .Ucx_Sh6RQArSUzKQABVvf {
    text-transform: uppercase;
    letter-spacing: 1px;
}._2zS6MHO2P48RkPErtIoyWF .IHfkc4nRPBtqUMEIyt2cm ._2EEu4R9vj9gjkjkcXTK29q .DG2aFyS5mV_TkMIEBfIYI {
    display: inline-block;
    font-size: 12px;
    padding: 18px 0;
    margin: 16px 0;
    margin-right: 80px;
    vertical-align: top;
    line-height: 2.86;
    color: #e2e2e2;
}._2zS6MHO2P48RkPErtIoyWF .IHfkc4nRPBtqUMEIyt2cm ._2EEu4R9vj9gjkjkcXTK29q .DG2aFyS5mV_TkMIEBfIYI .Ucx_Sh6RQArSUzKQABVvf {
    text-transform: uppercase;
    letter-spacing: 1px;
}._2zS6MHO2P48RkPErtIoyWF .IHfkc4nRPBtqUMEIyt2cm ._2EEu4R9vj9gjkjkcXTK29q .DG2aFyS5mV_TkMIEBfIYI ._2VnS6XvofX979NBNlMnMij {
    cursor: pointer;
    color: #bababa;
    font-size: 14px;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M {
    border-top: 1px solid #424242;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ {
    font-size: 14px;
    line-height: 1.43;
    width: 100%;
    max-width: 1136px;
    margin: 0 auto;
    overflow: hidden;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._31vZ_p7i3UgP7mpmshokEy {
    opacity: .7;
    transition: opacity .5s;
    float: left;
    padding: 17px 0;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._31vZ_p7i3UgP7mpmshokEy img {
    border-radius: 4px;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._31vZ_p7i3UgP7mpmshokEy ._23f9Kug4rc_l7LEOmxSAzZ {
    color: #fff;
    text-decoration: none;
    font-family: Axiforma-Bold,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
    font-size: 16px;
    vertical-align: top;
    padding: 0;
    line-height: 30px;
    margin-left: 8px;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ .EaXJ8NhRSHbBRPxgSI4Y1 {
    padding: 24px 9px;
    color: #bababa;
    float: left;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 {
    overflow: hidden;
    text-align: right;
    padding-top: 20px;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 ._1C00OxXYmRfzcMAOOZ3a83 {
    display: inline-block;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 .XwV1FegpSitaFksvkS31e {
    display: inline-block;

}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 .XwV1FegpSitaFksvkS31e:last-child {
    padding-right: 0;
}._2mZZdWSTPV3lz3_oEFuQBM ._35Wv2cxUcdLPwpGnYc-OCO {
    width: 30px;
    height: 30px;
    display: inline-block;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 ._1C00OxXYmRfzcMAOOZ3a83 {
    display: inline-block;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 .XwV1FegpSitaFksvkS31e .GXfhR3mh9GGKsBgJAY1E5 {
    color: #bababa;
    text-decoration: none;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 .XwV1FegpSitaFksvkS31e {
    display: inline-block;

}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 .XwV1FegpSitaFksvkS31e .GXfhR3mh9GGKsBgJAY1E5 {
    color: #bababa;
    text-decoration: none;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 .XwV1FegpSitaFksvkS31e ._1kaHLrc0hv_DA1pcAkKdkp:first-child {
    margin-left: 0;
}._2mZZdWSTPV3lz3_oEFuQBM ._1QhdFdaF9z1Vjj1JMSl_4M ._1MkjdrVMGgAZOSqkVuwFHZ ._1awwQtfu6HGUlrLsMQ3Sl8 .XwV1FegpSitaFksvkS31e ._1kaHLrc0hv_DA1pcAkKdkp {
    margin: 0 6px;
    opacity: .7;
    text-decoration: none;
    transition: opacity .5s;
    display: inline-block;
}._2mZZdWSTPV3lz3_oEFuQBM ._8qPYx75vShDcbQqxW37HU {
    width: 18px;
    height: 15px;
}._3EOU_5__8Y7g9GwPUL8B1l ._296t2RmWIHo84WnMDnKkF7 {
    opacity: 0;
    z-index: 1;
}._3EOU_5__8Y7g9GwPUL8B1l ._1_q4bvd5paVMXObB7xlegk {
    height: 100%;
    width: 100%;
    z-index: 4;
}._2zS6MHO2P48RkPErtIoyWF .IHfkc4nRPBtqUMEIyt2cm ._2EEu4R9vj9gjkjkcXTK29q .DG2aFyS5mV_TkMIEBfIYI ._2VnS6XvofX979NBNlMnMij:hover {
    color: #e2e2e2;
    text-decoration: none;
}.social_icons{
    color: #bababa!important;
}.social_icons h2{
    font-size: 17px;
}.social_icons .socialmedia li{
    float: left;
    list-style: none;
    padding: 0px 11px;
    color: #bababa!important;
}.faf{
    color: #bababa;
}address {
    margin-bottom: 0rem!important; 
}p {
    margin-top: 0;
    margin-bottom: 0rem!important; 
}
.button {
    display: inline-block;
    border-radius: 4px;
    background-color: #f4511e;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 22px;
    padding: 3px;
    width: 110px;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
.button span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button:hover span {
    padding-right: 25px;
}

.button:hover span:after {
    opacity: 1;
    right: 0;
}.more-button{
    float:right;
    position:absolute;
    right:0;
    margin-top:5%;
    z-index: 999;
}.image-left,.image-text-right{
    float:left;
}.image-left{
    width:30%;
    border:1px solid white;
    padding:5px;
}.image-left-vendor{
    width: 50%;   
    float: left;
    padding-left: 3px;
    padding-right: 3px;
}.image-text-right{
    width: 65%;
    padding:15px;
    color:white;
}.break_line {
    margin-top: 1px;
    margin-bottom: 1px;
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
}.banner-content {
    width: 100%;
}

.banner-content-left, .banner-content-right{
    float: left;
    width: 50%;    
}

.banner-content-left{
    margin-top: 10%;
}

.banner-content-right .banner-quickForm{
    width: 50%;
    background: #f7f7f0;
    float: left;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 25px;
    margin-left: 28%;
}

.banner-quickForm label,.banner-quickForm .intext{
    float: left !important;
    width: 80% !important;
    text-align: left !important;
    margin-left: 15px !important;
    height: 30px !important;
}

.banner-quickForm label{
    padding-top: 8px !important;
    padding-bottom: 2px !important;
}

.banner-quickForm .intext{
    background-color: #fff;
    border: #d2d2d2;
    box-shadow: 0 0 1px 1px #d7d7d7;
}

.banner-quickForm .flexcontainer{
    width: 100%;
    float: left;
    padding-top: 20px;
    margin-left: 15px;
}

.banner-quickForm .submit{
    padding: 10px 30px;
    background: rgb(223, 85, 70);
    float: none;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin-left: 26%;
    border: 1px solid #afafaf;
}
.card-header {
  padding: 0px!important;
}
.card-body {
    flex: 1 1 auto;
    padding: 7px!important;
}