/*
* hellblau: color:#B9D4F1;
+ dunkelblau: color:#21273D;
*/
:root {
    --lightblue: #597DA6;
    --darkblue: #2F3F6A;
    --darkbluetransparent: rgba(14,49,87,0.5);
    --gold: #8E761C;
}



@font-face {
    font-family: 'roboto';
    src: url(fonts/roboto-regular-webfont.ttf) format('truetype');
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'robotolight';
    src: url(fonts/roboto-light-webfont.ttf) format('truetype');
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'oswald';
    src: url(fonts/Oswald-Regular.ttf) format('truetype');
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'oswaldlight';
    src: url(fonts/Oswald-Light.ttf) format('truetype');
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'oswaldbold';
    src: url(fonts/Oswald-Bold.ttf) format('truetype');
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
}

html, .pageWrapper {
    height: 100%;
}

body {
    padding: 0;
    margin: 0;
    font-family: robotolight, sans-serif;
    font-size: 1em;
    font-weight: 200;
    -webkit-animation: fadeIn 2s;
    background: #fff;
    color: #666;
    height: 100%;
    hyphens:none;
    -webkit-hyphens:none;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mobile, .tablet {
    display: none;
}

.desktop, .fullscreen {
    display: block;
}

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

.row {
    width: 100%;
}

.container-full {
    width:100%;
    margin: 0 auto;
    padding: 30px 0 0 0;
}

.container > .container {
    padding: 0;
}

.contentWrapper {
    position: relative;
    padding:30px 0;
}

.flexbox {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.flex-100 {
    width: 100%;
}

.flex-75 {
    width: 75%;
}

.flex-66 {
    width: 66%;
}

.flex-50 {
    width: 50%;
}

.flex-33 {
    width: 33%;
}

.flex-25 {
    width: 25%;
}

.container .flexbox {
    margin: 0 -15px;
}

.flexItem, .flex_item {
    padding: 15px;
}

.imgList {
    padding: 0;
}

.flexJustify-left {
    justify-content: flex-start;
}

.flexJustify-center {
    justify-content: center;
}

.flexJustify-right {
    justify-content: flex-end;
}

.flexJustify-sb {
    justify-content: space-between;
}

.flexJustify-sa {
    justify-content: space-around;
}

.flexJustify-se {
    justify-content: space-evenly;
}

.flexAlign-start {
    align-items: flex-start;
}

.flexAlign-center {
    align-items: center;
}

.flexAlign-baseline {
    align-items: baseline;
}

.flexAlign-end {
    align-items: flex-end;
}

.flexAlign-strech {
    align-items: stretch;
}

.spaceBetween .flexbox {
    justify-content: space-between;
    padding: 15px;
}

.noFlex {
    width: 100%;
    display: block;
}
.gridtemplate-4col .flex_item {
  width:25%;
}
.gridContent {
    height:100%;

}
.gridContent .textImgContent {
    height:100%;
}

.gridContent .txt {
    height:80%;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.content {
    padding: 50px 0;
}

h1 {
    font-family: 'oswaldbold';
    font-size: 2.6em;
    margin-bottom: 0;
    font-weight: 100;
    color: var(--darkblue);
    hyphens:none;
}

h2, .h2 {
    font-size: 2.6em;
    font-family: 'oswald';
    font-weight: 100;
    color: var(--lightblue);
     hyphens:none;
}

h3, .h3 {
    font-size: 1.8em;
    font-family: 'oswald';
    font-weight: 100;
    color: var(--lightblue);
     hyphens:none;
}

strong {
    font-family: 'roboto', sans-serif;
    font-weight: 700;
}

h1 + h2 {
    font-family: 'oswald', sans-serif;
    color:#333;
    font-size: 1.8em;
    font-weight: 100;
    margin-top: 30px;
}


a {
    color: var(--lightblue);
    transition: all .4s ease;
    text-decoration: none;
    transition: all .4s ease;
}

a.navBtn {
    display: inline-block;
    padding: 10px 20px;
    border: solid 1px var(--darkblue);
}

a.navBtn:hover, a.navBtn:focus {
    background: var(--brown);
    color: #fff;
}

a:focus, a:hover {
    color: var(--gold);
}

.divider {
    width: 100%;
    padding: 30px 15px;
}

a, li, p {
    font-size: 1.2em;
    line-height: 1.8em;
    font-weight: 100;
}

.nav li li, li a, p a, label a {
    font-size: 1em;
    line-height: 1.2em;
}

.mobile {
    display: none;
}

img:not([height]) {
    /*width: 100%;*/
    height: auto;
}

.text-center, .align-center {
    text-align: center;
}

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

.text-center ul {
    display: inline-block;
    margin: 0 auto;
    text-align: left;
}
.darkblue {
    color:var(--darkblue);
}

.smallContent {
    max-width: 768px;
}

.text-justify {
    text-align: justify;
}

p.twoCols {
    column-count: 2;
    column-gap: 30px;
}

ul.twoCols {
    column-count: 2;
    column-gap: 30px;
    padding: 0;
    margin: 0 0 0 10px;
}

.email-show::before {
    content: 'info@';
}

.email-show::after {
    content: 'gutachten-samm.de';
}

.email-hide {
    display: none;
}

.headerBg .flexbox {
    justify-content: center;
    align-items: center;
    height: 100%;
}


.menu_btn a {
    display: block;
    width: 30px;
    margin: 10px 0;
}

.menu_btn {
    margin: 15px;
}

.menu_btn a span, .menu_btn a:after, .menu_btn a:before {
    content: '';
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: var(--green);
    /*box-shadow: 2px 2px rgba(0,0,0,0.6); */
    margin: 6px 0;
    display: block;
    transition: all .4s ease;
}

.nav li ul, html.mm-opened .menu_btn a span {
    display: none;
}

html.mm-opened .menu_btn a:before {
    transform: rotate(45deg);
}

html.mm-opened .menu_btn a:after {
    transform: rotate(-45deg);
    margin-top: -9.5px;
}

html.mm-opened .menu_btn a {
    margin-top: 20px;
}

.mainNav {
    position:absolute;
    width:60%;
    top:0;
    z-index:10;
    padding:0 30px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0));
}
.mainNav ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
     z-index:10;
}

.mainNav li {
    position: relative;
    list-style: none;
    line-height: 1.4em;
}

.mainNav li a {
    padding: 15px;
    font-size:1.3em;
    display: inline-block;
    color: #fff;
    text-align:center;
}

.mainNav li a:hover, .mainNav li a:focus, .mainNav li.active a, .info a:hover, .info a:focus, #page-1 .home, .mainNav li.active .subNav li a:hover {
    color: var(--gold);
    /*text-shadow: 1px 1px rgba(0,0,0,0.4);*/
}

.mainNav li.active .subNav li a {
    color: #333;
    text-shadow: none;
}

.mainNav ul.subNav {
    opacity: 0;
    transition: all .4s ease;
    visibility: hidden;
    width:    -moz-fit-content;
    width: -webkit-fit-content;
    width:         fit-content;
    display: block;
    position: absolute;
    left: 0;
    z-index: 500;
    background: rgba(255,255,255,.8);
}

.subNav li a {
    font-size: .7em;
    width:    -moz-fit-content;
    width: -webkit-fit-content;
    width:         fit-content;
    display: block;
    padding: 5px 15px;
}

.mainNav li:hover > ul.subNav, .mainNav li:focus > ul.subNav {
    visibility: visible;
    opacity: 1;
}

.infoWrapper {
   position:absolute;
   right:0;
   bottom:0;
   width:40%;
   top:0;
   z-index:10;
   background: var(--darkbluetransparent);
   box-shadow: 4px 4px 10px 8px rgba(0,0,0,0.5);
}
.infoWrapper .flexbox {
    width:100%;
    height:100%;
    justify-content: flex-end;
    align-content: center;
}
.inofWrapper.subPage .flexbox {
    flex-wrap:wrap;
}
.infoWrapper.subPage .headerTxt {
    width:100%;
    text-align:right;
    padding-right:15px;
}
.subPage .headerTxt .h2 {
    margin:0;
}

.infoWrapper .buttonWrapper {
    width:100%;
    justify-content: flex-end;
    padding-right:0;
}
.infoWrapper, .infoWrapper .h2 {
    color:#fff;
}

.logo img {
    width:300px;
    height:auto;
}

.email, .phone {
    font-weight: 300;
    font-size: 1.2em;
    margin-left:15px;
    display:block;
}
.phone {
    color:#fff;
}
.gold {
    color:var(--gold);
}

/*slider*/
.headSlider, .headSliderSub {
    position: relative;
    overflow: hidden;
    z-index:0;
    margin-bottom:0;
}

.headSlider .slick-slider, .headSliderSub .slick-slider {
    margin: 0;
}
.sliderWrapper {
    position:relative;
    overflow:hidden;
}


.arrowDown {
    width: 50px;
    height: 50px;
    background: url(/custom/assets/arrow-down.png) center center no-repeat;
    background-size: contain;
    position: absolute;
    left: 50%;
    margin-left: -25px;
    bottom: 15%;
    z-index: 100;
    cursor: pointer;
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(.95);
    }

    70% {
        transform: scale(1);
    }

    100% {
        transform: scale(.95);
    }
}

.sliderItem, .parallaxTxt {
    position: relative;
}

.headSliderSub .sliderItem, .sliderItem {
    height: 100vh;
    width:100%;
    /*background-size: 100% auto !important; */
}

.sliderItem .flexbox, .parallaxTxt .flexbox {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    justify-content: center;
    align-items: center;
}

.parallaxTxt .flexbox {
    align-items: center;
}

.sliderItem .linkWrapper {
    text-align: center;
    position: relative;
    z-index: 100;
}

.sliderTxt {
    max-width: 50%;
    background: rgba(49,49,49,.7);
    padding: 60px;
    position: relative;
}

.slick-active .sliderTxt {
    -webkit-animation: fadeIn 2s;
            animation: fadeIn 2s;
}

.sliderTxtInner p, .parallaxTxt {
    color: #fff;
}


.lightblueBg {
    background:var(--lightblue);
    background: linear-gradient(240deg, #597da6, #4f749b, #456b90, #3c6285, #32597a, #295170, #1f4865, #15405b);
    color:#fff;
}
.darkblueBg {
    background:var(--darkblue);
   background-image: linear-gradient(to right bottom, #0e3157, #163456, #1e3855, #243b54, #2b3e53);
    color:#fff;
    border-radius:5px;
}
.lightblueBg h2, .lightblueBg h3, .darkblueBg h2,  .darkblueBg h3 {
    color:#fff;
}
 /*sidebar*/
.subNavbar {
    position:fixed;
    top:40px;
    z-index:10;
    max-width:300px;
    left:15px;
    padding:15px;
    background:var(--darkbluetransparent);
    backdrop-filter: blur( 6px );
    box-shadow:4px 8px 12px 0 rgba( 0,0,0,0.2 );
    border-radius:8px;
}
.subNavbar.fixedHd {
    position:fixed;
}

.sideBar {
    padding:0;
    margin:0;
    display:none;
}

.sideBar li {
    list-style:none;
    padding:10px 15px;
    line-height:0.5em;
}

.sideBar li a {
    hyphens:none;
    color:#fff;
}
.sideBar li a:hover, .sideBar li a:focus {
    color:var(--gold);
}
.sbBtn {
    width:30px;
    cursor:pointer;
    display:block;
}
.sbBtn.vis {
    margin-bottom:20px;
}

.sbBtn span, .sbBtn:after, .sbBtn:before {
    content: '';
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: var(--gold);
    /*box-shadow: 2px 2px rgba(0,0,0,0.6); */
    margin: 6px 0;
    display: block;
    transition: all .4s ease;
}

.sbBtn.vis span {
    display: none;
}

.sbBtn.vis:before {
    transform: rotate(45deg);
}

.sbBtn.vis:after {
    transform: rotate(-45deg);
    margin-top: -9.5px;
}
 /*faqs*/
 .faqItem {
     margin-bottom:15px;
 }
 .faqLabel {
     text-align:right;
     font-family: 'oswald', sans-serif;
     font-size:1.8em;
 }

 .faqDesc {
     border-left:2px solid var(--gold);
 }
 .arrowRight {
     display:inline-block;
     margin-right:30px;
     transition:all 0.4s ease;
 }
 .faqItem:hover .arrowRight, .faqItem:focus .arrowRight {
     margin-right:5px;
 }


/*parallax*/
.parallaxItem {
        height: 600px;
        width: 100%;
         background-size:cover !important;
         background-attachment: fixed !important;
        overflow: hidden;
        position: relative;
}
.parallaxItem::before {
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.4);
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    border-radius: 50%;
    filter: blur(12px);
    z-index: 100;
    }
    .parallaxItem::after {
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.2);
    bottom: -20px;
    left: 0;
    right: 0;
    height: 40px;
    border-radius: 50%;
    filter: blur(12px);
    z-index: 100;
    }

.parallaxInner {
    width:100%;
    height:100%;
    justify-content:center;
    align-items:center;
}
.parallaxTxt {
    background:var(--darkbluetransparent);
    box-shadow: 2px 2px 4px 4px rgba(0,0,0,0.3);
    padding:15px;
    border-radius:5px;
}
.parallaxTxt .h2 {
    color:#fff;
}

.parallaxTxt p {
    font-size:1.5em;
}
.parallaxTxt p .btnLightBlue {
    text-shadow:none;
    font-size:1em;
}
.parallaxWrapper {
    padding-top:0;
}


.btnLightBlue, .buttonWhite, .yform .btn {
    padding: 5px 20px;
    font-size: 1.2em;
    transition: all .4s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
    cursor: pointer;
    font-family: 'robotobold', sans-serif;
    border-radius:4px;
    /* box-shadow: 2px 2px 6px rgba(0,0,0,0.6); */
}

.buttonWhite {
    color: #fff;
    border: 1px solid #fff;
}

.btnLightBlue, .yform .btn {
    border: 2px solid var(--lightblue);
    color: #fff;
    background: var(--lightblue);
}

.btnLightBlue:hover, .btnLightBlue:focus, .yform .btn:hover, .yform .btn:focus {
    color:var(--lightblue);
    background: #fff;
}


table {
    margin: 15px auto;
    border-collapse: collapse;
}

td, th {
    padding: 15px;
    border-bottom: 1px solid #2b2b31;
    font-size: 1.2em;
}

.ui-datepicker-calendar td {
    font-size: .9em;
}

tbody tr:last-child td {
    border: none;
}

tr td:nth-child(1), tr th:nth-child(1) {
    text-align: right;
}

tr th:nth-child(2) {
    text-align: left;
}

/*contentSlider*/


.contentSliderItem .flex_item {
    width: 50%;
    height: 500px;
    padding: 30px 60px 30px 30px;
}

.fullImg .contentSliderImg {
    height: 500px;
    background-size: 100% auto !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.contentSliderLink {
    width: 100%;
}

.fullImg .contentSliderTxt, .fullImg .contentSliderTxt h2, .fullImg .contentSliderTxt h3 {
    color: #fff;
    text-shadow: 1px 1px rgba(0,0,0,.6);
}

.fullImg .contentSliderTxt {
    height: 500px;
    z-index: 100;
    position: relative;
    text-align: center;
}

.contentSliderTxt .flexbox {
    height: 100%;
    align-items: center;
    justify-content: center;
}

.contentSliderTxtInner {
    width: 100%;
}

.contentSliderItem {
    position: relative;
}

.contentSliderItem .nextItem {
    height: 60px;
    width: 30px;
    background: url(/custom/assets/arrow-next.png) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    right: 30px;
    z-index: 100;
    cursor: pointer;
}

/*content*/


.contentWrapper .row {
    position: relative;
}

.mapWrapper {
    text-align: center;
    width: 100%;
    padding-bottom: 60px;
}

.gridtemplate-2col {
    width:100%;
}

#kontakt {
    border-radius:5px;
}
.wa-link, .insta {
   width:40px;
   height:40px;
   display:inline-block;
   margin-right:15px;
}
.wa-link img, .insta img {
    width:100%;
    height:auto;
}


.faqItem .flexbox {
    align-items:center;
    height:100%;
}
.col .faqs {
    width:100%;
}

.col .flexbox .textImgContent {
    width:100%;
}
.col .flexbox .textImgContent .flexbox {
    flex-wrap:nowrap;
    align-items: flex-start;
}

.faqLabel {
    color:var(--lightblue);
    hyphens: none;
}

/*accordion*/
.trigger {
    position: relative;
    cursor: pointer;
}

.trigger h3 {
    margin: 0;
    padding: 15px;
    background: #8daab3;
    color: #fff;
}

.trigger::after {
    content: '';
    height: 25px;
    width: 25px;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 5px;
    right: 15px;
    transition: all .4s ease;
}

.trigger.open:after {
    transform: rotate(135deg);
    top: 25px;
}

.toggle_container {
    width: 100%;
    padding: 30px 15px 15px;
    position: relative;
}

.toggle_container::before {
    content: '';
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(255,255,255,0),rgba(255,255,255,.5),rgba(255,255,255,0));
    position: absolute;
    top: 5px;
    left: 0;
}


.buttonWrapper {

    display:flex;
    justify-content: center;
}
.buttonWrapper a {
    margin:15px;
}



/*fadIn effect*/
.fade-in {
    opacity: 0;
    transform: translateY(20vh);
    visibility: hidden;
    transition: opacity .6s ease-out, transform 1.2s ease-out;
    will-change: opacity, visibility;
}

.fade-in.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

.yform {
    margin: 0 auto;
    padding:0 15px;
}

.form-group {
    margin-bottom: 15px;
}
.kForm .form-group {
    margin-bottom:11px;
}

input, select, textarea {
    border: none;
}

.control-label {
    padding: 5px 0;
    display: block;
    text-align: left;
    font-size: 1.2em;
    font-weight:700;
    color:var(--green);
    width: 100%;
}

.form-control {
    padding: 10px 15px;
    border-radius: 4px;
    border:1px solid var(--darkblue);
    font-size: 1.2em;
    width: 100%;
    color: var(--darkblue);
    background: #fff;
}
.yform .btn {
    background:transparent;
    border-radius:4px;
}

.btnWrapper {
    text-align: center;
}


.formcheckbox {
    margin-bottom: 15px;
}

.imgList.bottomCenterImg, .imgList.topCenterImg {
    justify-content: center;
}

.imgList {
    align-items: center;
}

.listImg img:not([width]) {
    width: 100%;
}

.listImg img {
    display: block;
}

/* .gallery.flexbox {
  justify-content: center;
  align-items: center;
  padding:30px 0;
} */
.gallery {
    display: flex;
    flex-wrap: wrap;
}

.gallery a {
    display: inline-block;
    padding: 5px 0;
}

.gallery a img {
    display: block;
}

/*footer*/


.footer {
    position: relative;
    color: var(--darkblue);
}

.footer a {
    color: var(--gold);
}
.footer a:hover, .footer a:focus {
    color:var(--lightblue);
}

.fLogo img {
    width:60%;
    height:auto;
    margin-bottom:1em;
}

.navFooter ul {
    display:flex;
    margin: 0;
    padding: 0;
    justify-content:center;
    width:100%;
}

.navFooter ul li {
    padding: 0 15px 0 0;
    display: block;
}

.rex-navi1 li {
    list-style: none;
}

.copyWrapper {
    text-align: center;
    position:relative;
    padding-bottom:15px;
}
.copyWrapper::before, .jobDivider {
   content:'';
   display:block;
   height:1px;
   width:100%;
    background:linear-gradient(to right, rgba(113,109,108,0) ,rgba(113,109,108,0.5), rgba(113,109,108,0));
}
.jobDivider {
    margin:15px auto;
}

.copyWrapper p {
    margin: 5px 0;
    font-size: 1em;
    font-weight: 100;
}

/*mediaqueries*/

@media screen and (max-width:1460px) {
    .desktop {
        display:none;
    }
    .tablet {
        display:block;
    }

}

@media screen and (max-width:1350px) {
    body {
        font-size: 1em;
    }

    .container {
        width: 100%;
        max-width: 1200px;
    }

    .container .flexbox {
        margin: 0;
    }

    .header_top .container {
        max-width: 100%;
    }

    .parallaxItem {
        height: 500px;
    }
    .parallaxInner {
        padding:30px;
    }

}

@media screen and (max-width:1200px) {
   /* .headSliderSub .sliderItem, .sliderItem {
        height: 500px;
    }*/

    .control-label {
        padding: 11px 0;
    }
    .flex-75, .col.flex-50 {
        width:100%;
    }
    .col.flex-50 {
        padding-top:0;
    }

    #lform {
        display:flex;
    }
    .yform {
        width:50%;
    }
    .parallaxItem {
        background-size:cover !important;
    }
    .infoWrapper {
        width:50%;
    }

}

@media screen and (max-width:1024px) {
    .fullscreen {
        display: none;
    }

    .mainNav li a {
        padding: 15px 10px;
    }

    .headSliderSub .sliderItem, .sliderItem, .parallaxItem {
        background-size: cover !important;
    }
    .h2 {
      font-size:2em;
    }

    .fullImg .contentSliderImg {
        background-size: cover !important;
    }
    .gridtemplate-4col .flex_item {
        width:50%;
    }
        .gridItem .listImg {
        width:auto;
    }
    .flex-50 {
        width: 75%;
    }

    .flex-75, .footer .flexbox {
        width: 100%;
    }

    .formFieldWrapper .flex_item {
        width: 50%;
    }

    .formcheckbox label {
        margin-left: 0;
    }

    .headline {
        font-size: 2em;
    }
    .actionBtn {
        right:15px;
    }

    .sliderContent p, .sliderContent li {

    font-size:1.6em;
    }

    .footer .flex_item {
        width: 50%;
    }

    .navFooter {
        width: 100%;
    }

    .navFooter ul {
        display: flex;
    }
}

@media screen and (max-width:768px) {
    .mobile {
        display: block;
    }

    .desktop, .tablet, .sliderContent {
        display: none;
    }
    .stickyNav, .stickyNav.top {
        position:absolute;
    }

    .header_top {
        position: absolute;
    }
    .logoMobile img {
        height:120px;
        width:auto;
    }

    p, li, a {
        /* font-size: 1em; */
    }
    p.twoCols {
        column-count:1;
        column-gap:0;
    }

    h1, h2 {
        font-size: 2.2em;
    }

    h1 + h2 {
        font-size: 1.2em;
    }

    .container-full {
        padding:0;
    }

    .subNav li a {
        font-size: 1.1em;
        padding: 10px 15px;
    }

    .rex-yform {
        padding: 15px 0;
    }

    .control-label {
        width: 30%;
    }

    .flex-33, .flex-66 {
        width: 100%;
    }
    .faqLabel.flex_item {
        text-align:left;
        padding:0 15px;
    }
    .faqLabel {
        margin:0;
    }
    .col .flexItem {
        padding:0;
    }

    .faqDesc.flex_item {
        border:none;
       padding:0 15px;
    }

    .gallery {
        justify-content: center;
    }

    .contentWrapper {
        margin: 30px auto 0 auto;
    }

    .contentImg {
        width: 100%;
    }

    .headSliderSub .sliderItem, .sliderItem {
        height: 450px;
    }
    .infoWrapper {
        width:100%;
        left:0;
        top:auto;
        right:0;
        bottom:auto;
        background:transparent;
        box-shadow:none;
    }
    .headerTxt {
         background: var(--darkbluetransparent);
   box-shadow: 4px 4px 10px 8px rgba(0,0,0,0.5);
    }
    .buttonWrapper a {
        margin-right:0;
    }

    .subNavbar {
        z-index:20;
    }

    .logo img {
        width:150px;
        display:block;
    }
    .headerTxt .flexItem, .buttonWrapper.flex_item {
        padding:0 15px;
    }

    .fullImg .contentSliderTxt {
        background: linear-gradient(135deg, rgba(86,119,129,.37) 0%,rgba(86,119,129,.38) 1%,rgba(141,170,179,1) 100%);
        text-shadow: none;
    }

    .contentSliderItem .flex_item, .fullImg .contentSliderImg, .fullImg .contentSliderTxt {
        width: 100%;
        height: 350px;
        position: relative;
    }

    .gallery .listImg img {
        max-width: 100%;
    }

    .info {
        font-size: .9em;
    }

    .formWrapper {
        justify-content: center;
    }

    .formFieldWrapper .flex_item {
        width: 100%;
        padding:0 15px;
    }

    .yform {
        width: 100%;
    }
}

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

    .flex-50 {
        width: 100%;
    }

    ul.twoCols {
        column-count: 1;
    }

    .form-group {
        flex-wrap: wrap;
    }

    .form-control, .control-label, .form-control.datepicker {
        width: 100%;
    }

    .control-label {
        padding: 5px 0;
        text-align: left;
    }

    .rex-yform .btn {
        margin-left: 0;
    }

    .col .faqs {
        padding:0;
    }
    .col .flexbox .textImgContent .flexbox {
    flex-wrap:wrap;
    align-items: flex-start;
    }
    .formWrapper .flex_item {
        width: 100%;
    }

    .buttonWrapper {
        text-align:center;
        flex-wrap:wrap;
        justify-content: center;
    }

    .contentSliderItem .flex_item, .fullImg .contentSliderImg, .fullImg .contentSliderTxt {
        height: 500px;
    }

    .footer .flex_item {
        width: 100%;
        padding: 0 15px;
    }
}

@media screen and (max-width:500px) {
    .flex-33 {
        width: 100%;
    }
    .gridtemplate-4col .gridItem.flex_item {
        width:100%;
    }

    .buttonWrapper a {
        margin:15px 0;
    }

    .parallaxWrapper {
        font-size:1em;
    }
     .parallaxItem {
         background-size:auto 100% !important;
         background-attachment:scroll !important;
     }

    .navFooter ul {
        justify-content: center;
    }
}
