/*!
Theme Name: PD Home Exteriors
Theme URI: https://metricmarketing.com/
Author: Metric Marketing
Author URI: https://metricmarketing.com/
Description:
Requires at least: WordPress 4.9.6
Version: 1.5.1
*/
/* animate.css - https://animate.style/
 * Version - 4.1.2
 * Licensed under the MIT license - https://opensource.org/licenses/MIT
 *
 * Copyright (c) 2021 Animate.css
 */
 :root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
    --primary-font:'Roboto', sans-serif;
    --secondary-font: 'Teko', serif;
    --primary-color: #1B418C;
    --secondary-color:#D9AC2C;
    --third-color:#102959;
    --light-gray: #F5F5F6;
    --text-color:#2D3138;
  }

.hidden-captcha {
  display: none !important;
}

  .animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }
  
  .animate__animated.animate__infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
  }
  
  .animate__animated.animate__repeat-1 {
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-iteration-count: var(--animate-repeat);
    animation-iteration-count: var(--animate-repeat);
  }
  
  .animate__animated.animate__repeat-2 {
    -webkit-animation-iteration-count: calc(1 * 2);
    animation-iteration-count: calc(1 * 2);
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
    animation-iteration-count: calc(var(--animate-repeat) * 2);
  }
  
  .animate__animated.animate__repeat-3 {
    -webkit-animation-iteration-count: calc(1 * 3);
    animation-iteration-count: calc(1 * 3);
    -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
    animation-iteration-count: calc(var(--animate-repeat) * 3);
  }
  
  .animate__animated.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: var(--animate-delay);
    animation-delay: var(--animate-delay);
  }
  
  .animate__animated.animate__delay-2s {
    -webkit-animation-delay: calc(1s * 2);
    animation-delay: calc(1s * 2);
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
  }
  
  .animate__animated.animate__delay-3s {
    -webkit-animation-delay: calc(1s * 3);
    animation-delay: calc(1s * 3);
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
  }
  
  .animate__animated.animate__delay-4s {
    -webkit-animation-delay: calc(1s * 4);
    animation-delay: calc(1s * 4);
    -webkit-animation-delay: calc(var(--animate-delay) * 4);
    animation-delay: calc(var(--animate-delay) * 4);
  }
  
  .animate__animated.animate__delay-5s {
    -webkit-animation-delay: calc(1s * 5);
    animation-delay: calc(1s * 5);
    -webkit-animation-delay: calc(var(--animate-delay) * 5);
    animation-delay: calc(var(--animate-delay) * 5);
  }
  
  .animate__animated.animate__faster {
    -webkit-animation-duration: calc(1s / 2);
    animation-duration: calc(1s / 2);
    -webkit-animation-duration: calc(var(--animate-duration) / 2);
    animation-duration: calc(var(--animate-duration) / 2);
  }
  
  .animate__animated.animate__fast {
    -webkit-animation-duration: calc(1s * 0.8);
    animation-duration: calc(1s * 0.8);
    -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
    animation-duration: calc(var(--animate-duration) * 0.8);
  }
  
  .animate__animated.animate__slow {
    -webkit-animation-duration: calc(1s * 2);
    animation-duration: calc(1s * 2);
    -webkit-animation-duration: calc(var(--animate-duration) * 2);
    animation-duration: calc(var(--animate-duration) * 2);
  }
  
  .animate__animated.animate__slower {
    -webkit-animation-duration: calc(1s * 3);
    animation-duration: calc(1s * 3);
    -webkit-animation-duration: calc(var(--animate-duration) * 3);
    animation-duration: calc(var(--animate-duration) * 3);
  }
  
  @media print, (prefers-reduced-motion: reduce) {
    .animate__animated {
      -webkit-animation-duration: 1ms !important;
      animation-duration: 1ms !important;
      transition-duration: 1ms !important;
      -webkit-animation-iteration-count: 1 !important;
      animation-iteration-count: 1 !important;
    }
  
    .animate__animated[class*=Out] {
      opacity: 0;
    }
  }
  /* Fading entrances  */
  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .animate__fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
  
  @-webkit-keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
  
  @-webkit-keyframes fadeInDownBig {
    from {
      opacity: 0;
      transform: translate3d(0, -2000px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInDownBig {
    from {
      opacity: 0;
      transform: translate3d(0, -2000px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
  }
  
  @-webkit-keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translate3d(-50%, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translate3d(-50%, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
  
  @-webkit-keyframes fadeInLeftBig {
    from {
      opacity: 0;
      transform: translate3d(-2000px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInLeftBig {
    from {
      opacity: 0;
      transform: translate3d(-2000px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
  }
  
  @-webkit-keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translate3d(50%, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translate3d(50%, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
  
  @-webkit-keyframes fadeInRightBig {
    from {
      opacity: 0;
      transform: translate3d(2000px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInRightBig {
    from {
      opacity: 0;
      transform: translate3d(2000px, 0, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
  }
  
  @-webkit-keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translate3d(0, 100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  
  @-webkit-keyframes fadeInUpBig {
    from {
      opacity: 0;
      transform: translate3d(0, 2000px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInUpBig {
    from {
      opacity: 0;
      transform: translate3d(0, 2000px, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
  }
  
  @-webkit-keyframes fadeInTopLeft {
    from {
      opacity: 0;
      transform: translate3d(-100%, -100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInTopLeft {
    from {
      opacity: 0;
      transform: translate3d(-100%, -100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInTopLeft {
    -webkit-animation-name: fadeInTopLeft;
    animation-name: fadeInTopLeft;
  }
  
  @-webkit-keyframes fadeInTopRight {
    from {
      opacity: 0;
      transform: translate3d(100%, -100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInTopRight {
    from {
      opacity: 0;
      transform: translate3d(100%, -100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInTopRight {
    -webkit-animation-name: fadeInTopRight;
    animation-name: fadeInTopRight;
  }
  
  @-webkit-keyframes fadeInBottomLeft {
    from {
      opacity: 0;
      transform: translate3d(-100%, 100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInBottomLeft {
    from {
      opacity: 0;
      transform: translate3d(-100%, 100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInBottomLeft {
    -webkit-animation-name: fadeInBottomLeft;
    animation-name: fadeInBottomLeft;
  }
  
  @-webkit-keyframes fadeInBottomRight {
    from {
      opacity: 0;
      transform: translate3d(100%, 100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  @keyframes fadeInBottomRight {
    from {
      opacity: 0;
      transform: translate3d(100%, 100%, 0);
    }
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  .animate__fadeInBottomRight {
    -webkit-animation-name: fadeInBottomRight;
    animation-name: fadeInBottomRight;
  }
  
  @media (min-width: 767px) {
    .opacity0 {
      opacity: 0;
    }
    .opacity0.animate__zoomIn {
      opacity: 1;
    }
  }
  
  /* Zooming entrances */
  @-webkit-keyframes zoomIn {
    from {
      opacity: 1;
      transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
      opacity: 1;
    }
  }
  @keyframes zoomIn {
    from {
      opacity: 1;
      transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
      opacity: 1;
    }
  }
  .animate__zoomIn {
    -webkit-animation-name: zoomIn;
    animation-name: zoomIn;
  }
  
  .col-sm-1 {
    width: 8.3333333333%;
  }
  
  .col-sm-2 {
    width: 16.6666666667%;
  }
  
  .col-sm-3 {
    width: 25%;
  }
  
  .col-sm-4 {
    width: 33.3333333333%;
  }
  
  .col-sm-5 {
    width: 41.6666666667%;
  }
  
  .col-sm-6 {
    width: 50%;
  }
  
  .col-sm-7 {
    width: 58.3333333333%;
  }
  
  .col-sm-8 {
    width: 66.6666666667%;
  }
  
  .col-sm-9 {
    width: 75%;
  }
  
  .col-sm-10 {
    width: 83.3333333333%;
  }
  
  .col-sm-11 {
    width: 91.6666666667%;
  }
  
  .col-sm-12 {
    width: 100%;
  }
  
  @media (min-width: 768px) {
    .col-md-1 {
      width: 8.3333333333%;
    }
  
    .col-md-2 {
      width: 16.6666666667%;
    }
  
    .col-md-3 {
      width: 25%;
    }
  
    .col-md-4 {
      width: 33.3333333333%;
    }
  
    .col-md-5 {
      width: 41.6666666667%;
    }
  
    .col-md-6 {
      width: 50%;
    }
  
    .col-md-7 {
      width: 58.3333333333%;
    }
  
    .col-md-8 {
      width: 66.6666666667%;
    }
  
    .col-md-9 {
      width: 75%;
    }
  
    .col-md-10 {
      width: 83.3333333333%;
    }
  
    .col-md-11 {
      width: 91.6666666667%;
    }
  
    .col-md-12 {
      width: 100%;
    }
  }
  @media (min-width: 1025px) {
    .col-lg-1 {
      width: 8.3333333333%;
    }
  
    .col-lg-2 {
      width: 16.6666666667%;
    }
  
    .col-lg-3 {
      width: 25%;
    }
  
    .col-lg-4 {
      width: 33.3333333333%;
    }
  
    .col-lg-5 {
      width: 41.6666666667%;
    }
  
    .col-lg-6 {
      width: 50%;
    }
  
    .col-lg-7 {
      width: 58.3333333333%;
    }
  
    .col-lg-8 {
      width: 66.6666666667%;
    }
  
    .col-lg-9 {
      width: 75%;
    }
  
    .col-lg-10 {
      width: 83.3333333333%;
    }
  
    .col-lg-11 {
      width: 91.6666666667%;
    }
  
    .col-lg-12 {
      width: 100%;
    }
  }
  * {
    margin: 0;
    padding: 0;
  }
  
  div, section, article, aside, form, input, video, figure, iframe, label, main, select, header, footer {
    display: block;
    box-sizing: border-box;
  }
  
  body {
    font-size: 16px;
    line-height: 1.8;
    display: block;
    font-family: var(--primary-font);
    overflow-x: hidden;
  }
  body.logged-in .skip-to-content:focus {
    top: 32px;
  }
  
  .skip-to-content {
    position: fixed;
    top: -120px;
    opacity: 0;
    z-index: 999999;
  }
  .skip-to-content:focus {
    top: 0;
    opacity: 1;
  }
  
  .hidden {
    width: 1px;
    height: 1px;
    opacity: 0;
    position: absolute;
    text-indent: -9999px;
  }

  @media (min-width: 783px) {
    body.admin-bar {margin-top: 32px;}
  }

  @media (max-width: 782px) {
    #wpadminbar {
      display: none;
    }
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--secondary-font);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-color);
  }
  
  h1, .h1-styling {
    font-size: 36px;
  }
  @media (min-width: 768px) {
    h1, .h1-styling {
      font-size: 45px;
    }
  }
  
  h2, .h2-styling {
    font-size: 36px;
  }
  @media (min-width: 768px) {
    h2, .h2-styling {
      font-size: 45px;
    }
  }
  
  h3, .h3-styling {
    font-size: 20px;
    color: var(--primary-color);
    font-family: var(--primary-font);
  }
  
  h4 {
    font-size: 20px;
    color: var(--primary-color);
  }
  
  ul, ol {
    margin: 0 0 20px 30px;
  }
  
  ul.icon-list {
    list-style: none;
    margin: 0 0 30px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  ul.icon-list img {
    max-width: 60px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
  }
  ul.icon-list li {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 20px;
  }
  @media (min-width: 1025px) {
    ul.icon-list li {
      padding: 0 10px;
      width: 50%;
    }
  }
  ul.icon-list li a {
    color: var(--primary-color);
  }
  ul.icon-list li a:hover, ul.icon-list li a:focus {
    color: var(--secondary-color);
  }
  .checklist ul{
    list-style-image: url(assets/svg/checkmark.svg);
    margin-bottom: 0;
  }
  .checklist ul li{
    margin-bottom: 10px;
    font-size: 20px;
  }
  .checklist ul li:last-of-type{
    margin-bottom: 0;
  }
  p, blockquote {
    margin-bottom: 20px;
  }
  
  blockquote {
    border-bottom: 1px solid var(--primary-color);
    padding-bottom: 20px;
  }
  blockquote p {
    font-style: italic;
    font-size: 1.1rem;
  }
  blockquote cite {
    color: var(--primary-color);
  }
  
  a {
    text-decoration: underline;
    color: var(--secondary-color);
  }
  a:hover, a:focus {
    color: var(--primary-color);
    text-decoration: none;
  }
  p a {
    text-decoration: underline;
    color: var(--primary-color);
  }
  p a:hover, p a:focus{
    color: var(--secondary-color);
  }
  
  .btn, .button, .wp-block-button__link {
    display: inline-block;
    padding: 15px 30px;
    font-style: normal;
    font-weight: 500;
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.3;
    background: var(--secondary-color);
    color: var(--text-color);
    border-radius: 10px;
    text-decoration: none;
  }
  .btn:hover, .btn:focus, .button:hover, .button:focus, .wp-block-button__link:hover, .wp-block-button__link:focus {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
  }
  .btn.revert, .button.revert, .wp-block-button__link.revert {
    background: var(--primary-color);
    color: #fff;
  }
  .btn.revert:hover, .btn.revert:focus, .button.revert:hover, .button.revert:focus, .wp-block-button__link.revert:hover, .wp-block-button__link.revert:focus {
    background: var(--secondary-color);
    color: var(--text-color);
  }
  .btn.alt, .button.alt, .wp-block-button__link.alt {
    background: none;
    color: var(--primary-color);
    padding: 10px;
    position: relative;
  }
  .btn.alt:hover, .btn.alt:focus, .button.alt:hover, .button.alt:focus, .wp-block-button__link.alt:hover, .wp-block-button__link.alt:focus {
    color: var(--secondary-color);
  }
  .btn.alt:hover:before, .btn.alt:focus:before, .button.alt:hover:before, .button.alt:focus:before, .wp-block-button__link.alt:hover:before, .wp-block-button__link.alt:focus:before {
    transform: scale(1.2);
    opacity: 0.7;
  }
  .btn.white, .button.white, .wp-block-button__link.white {
    background: #fff;
    color: var(--primary-color);
  }
  .btn.white:hover, .btn.white:focus, .button.white:hover, .button.white:focus, .wp-block-button__link.white:hover, .wp-block-button__link.white:focus {
    color: #fff;
    background: var(--secondary-color);
  }
  @media (max-width: 767px) {
    .btn span, .button span, .wp-block-button__link span {
      display: block;
      font-size: 1rem;
    }
  }
  
  a, .btn, .button, .wp-block-button__link {
    transition: all 300ms ease-out;
  }
  
  .btn, .button, .wp-block-button__link {
    text-decoration: none;
  }
  .arrow{
    text-decoration: none;
    font-weight: 500;
    color:var(--text-color);
  }
  .arrow svg, #quote-form .frm_button_submit svg{
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    transition: all 300ms ease-out;
    margin-left: 5px;
  }
  .arrow:hover svg, .arrow:focus svg, #quote-form .frm_button_submit:hover svg, #quote-form .frm_button_submit:focus svg{
    transform: translateX(10px);
  }
  .arrow:hover, .arrow:focus{
    color:var(--secondary-color);
  }
  .row, .wp-block-columns {
    margin: 0 auto;
    width: 100%;
    max-width: 1480px;
  }
  .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .row.noflex{
    display: block;
  }
  .row.switch-it{
    flex-direction: row-reverse;
  }
  .row.wide, .wp-block-columns.wide {
    max-width: 1920px;
  }
  .row:after, .wp-block-columns:after {
    content: " ";
    clear: both;
    display: block;
  }
  .row.no-padding, .wp-block-columns.no-padding {
    padding: 0;
  }
  .row.narrow, .wp-block-columns.narrow {
    max-width: 1000px;
  }
  .row.align-top{
    align-items: flex-start;
  }
  .wp-block-columns {
    padding: 50px 20px;
  }
  @media (min-width: 768px) {
    .wp-block-columns {
      padding: 70px 20px;
    }
  }
  
  [class*=col-], [class*=" col-"] {
    padding: 0 20px;
  }
  
  .centered {
    float: none;
    margin: 0 auto;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-left {
    text-align: left;
  }
  
  .flexit {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .flexit.align-top {
    align-items: flex-start;
  }
  .flexit.align-bottom {
    align-items: flex-end;
  }
  .flexit.swap {
    flex-direction: row-reverse;
  }
  
  .no-gutter {
    padding: 0;
  }
  
  img {
    margin: 0;
    max-width: 100%;
    height: auto;
  }
  
  iframe {
    max-width: 100%;
  }
  
  .wp-block-embed iframe {
    width: 100%;
    min-height: 320px;
    margin-bottom: 40px;
  }
  @media (min-width: 768px) {
    .wp-block-embed iframe {
      min-height: 540px;
    }
  }
  
  .sections-alternate .row {
    background: #fff;
  }
  
  form {
    padding: 20px;
  }
  form fieldset{
    border:none;
  }
  form ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  form label {
    margin-bottom: 20px;
    font-size: 1rem;
    display: inline-block;
    vertical-align: middle;
  }
  form label img {
    display: inline-block;
    border: 1px solid var(--light-gray);
    border-right: none;
    vertical-align: middle;
  }
  form input[type=text], form input[type=tel], form input[type=email], form input[type=numbers], form input[type=date], form textarea {
    border: 1px solid var(--light-gray);
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 7px 10px;
    font-size: 1rem;
    margin-top: 5px;
    height: 45px;
    font-size: 15px;
    font-family: var(--primary-font);
  }
  form textarea {
    height: 150px;
    max-width: 100%;
    padding-top: 10px;
  }
  form button, form .btn {
    border: none;
    margin-top: 30px;
    font-size: 1rem;
    transition: all 300ms ease-out;
  }
  form .frm_error{
    color:#f00;
  }
  
  .page-section > li:first-child:not(.form-line-column):not([data-type=control_head]):not([data-type=control_payment]):not([data-type=control_text]):not([data-type=control_button]):not([data-type=control_collapse]), .page-section > li:nth-child(2):not(.form-line-column):not([data-type=control_head]):not([data-type=control_paymrnt]):not([data-type=control_text]):not([data-type=control_button]):not([data-type=control_collapse]) {
    margin-top: 0;
  }
    
  .white-bg {
    background: #fff;
  }
  .white-bg *{
    color: var(--text-color);
  }
  .white-bg .btn{
    color: inherit;
  }
  .white-bg .btn:hover,  .white-bg .btn:focus{
    color:#fff;
  }
  
  .banner p#breadcrumbs{
    margin-bottom: 5px;
  }
  .banner .breadcrumbs a:hover, .banner .breadcrumbs a:focus {
    color: var(--secondary-color);
  }
  
  @media (max-width: 767px) {
    .hide-on-mobile {
      display: none !important;
    }
  }
  @media (min-width: 768px) {
    .show-on-mobile {
      display: none !important;
    }
  }
  @media (max-width: 767px) {
    #content {
      text-align: center;
    }
    .single-post #content{
      text-align: left;
    }
    .single-post .blog-listing{
      padding-top: 0;
    }
    #content section.quad, #content section.single-section img {
      margin: 0 auto 40px;
      height: auto !important;
    }
  }
  @media (max-width: 1024px) {
    .show-on-desktop {
      display: none !important;
    }
  
    .tablet-text-center {
      text-align: center;
    }
  }
  @media (min-width: 1025px) {
    .hide-on-desktop {
      display: none !important;
    }
  }
  .social-list {
    list-style: none;
    margin: 0 auto;
    display: block;
  }
  .social-list li {
    display: inline-block;
    margin: 0px;
  }
  .social-list li a {
    display: block;
    text-align: center;
    width: 40px;
    height: 40px;
    color: #fff;
    font-size: 25px;
    color: var(--third-color);
  }
  .social-list li a svg {
    height: 25px;
    /* fill: var(--third-color); */
    fill: #fff;
    transition: all 300ms ease-out;
  }
  .social-list li a:hover, .social-list li a:focus {
    color: var(--secondary-color);
  }
  .social-list li a:hover svg, .social-list li a:focus svg {
    fill: var(--secondary-color);
  }
  
  .wp-pagenavi {
    font-weight: 600;
    margin-top: 40px;
  }
  .wp-pagenavi a {
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50%;
    padding: 0;
    background: none;
  }
  .wp-pagenavi span {
    border: none;
    height: 40px;
    width: 40px;
    line-height: 40px;
    margin: 0 10px 0 0;
    font-size: 17px;
    padding: 0;
  }
  .wp-pagenavi span:not(.extend), .wp-pagenavi a {
    display: inline-block;
    vertical-align: middle;
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 17px;
    margin: 0 10px 0 0;
    border: none;
  }
  .wp-pagenavi span:not(.extend):hover, .wp-pagenavi span:not(.extend):focus, .wp-pagenavi span:not(.extend).current, .wp-pagenavi a:hover, .wp-pagenavi a:focus, .wp-pagenavi a.current {
    color: #fff;
    background: var(--primary-color);
  }
  .wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink, .wp-pagenavi a.first, .wp-pagenavi a.last {
    width: auto;
    padding: 0 20px;
    color: var(--primary-color);
    background: none;
  }
  .wp-pagenavi a.nextpostslink:hover, .wp-pagenavi a.nextpostslink:focus, .wp-pagenavi a.previouspostslink:hover, .wp-pagenavi a.previouspostslink:focus, .wp-pagenavi a.first:hover, .wp-pagenavi a.first:focus, .wp-pagenavi a.last:hover, .wp-pagenavi a.last:focus {
    color: var(--secondary-color);
  }
  
  form.searchform {
    max-width: 500px;
    margin: 0 auto 30px;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
  }
  form.searchform label {
    margin-bottom: 10px;
    font-weight: 500;
    font-family: var(--primary-font);
    color: var(--primary-color);
    text-transform: uppercase;
  }
  form.searchform input {
    width: calc(100% - 40px);
    margin: 0;
    height: 40px;
    border: 1px solid var(--primary-color);
    padding: 0 10px;
    font-family: var(--primary-font);
  }
  form.searchform button {
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    color: #fff;
    margin-top: 0;
    transition: all 300ms ease-out;
  }
  form.searchform button svg {
    height: 20px;
    margin: 3px 0 0;
  }
  form.searchform button:hover, form.searchform button:focus {
    background: var(--third-color);
  }
  
  .wp-block-categories-list li a {
    text-transform: capitalize;
  }
  
  .single:not(.single-product) #content:not(.full) {
    max-width: 1280px;
    margin: 0 auto;
  }
  .single:not(.single-product) #content:not(.full) iframe {
    width: 100%;
  }

  /* Slider */
  .slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
  }
  
  .slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
  }
  .slick-list:focus {
    outline: none;
  }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand;
  }
  
  .slick-slider .slick-track,
  .slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
  }
  
  .slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table;
  }
  .slick-track:after {
    clear: both;
  }
  .slick-loading .slick-track {
    visibility: hidden;
  }
  
  .slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
  }
  [dir=rtl] .slick-slide {
    float: right;
  }
  .slick-slide img {
    display: block;
  }
  .slick-slide.slick-loading img {
    display: none;
  }
  .slick-slide.dragging img {
    pointer-events: none;
  }
  .slick-initialized .slick-slide {
    display: block;
  }
  .slick-loading .slick-slide {
    visibility: hidden;
  }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
  }
  
  .slick-arrow.slick-hidden {
    display: none;
  }
  
  /* Slider */
  .slick-loading .slick-list {
    background: #fff url("./assets/img/ajax-loader.gif") center center no-repeat;
  }
  
  /* Icons */
  /* Arrows */
  .slick-prev,
  .slick-next {
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    top: calc(50% - 10px);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    background: none;
    transition: all 300ms ease-out;
  }
  .slick-prev:hover:before, .slick-prev:focus:before,
  .slick-next:hover:before,
  .slick-next:focus:before {
    opacity: 1;
    color: #fff;
  }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25;
  }
  .slick-prev:before,
  .slick-next:before {
    height: 40px;
    display: block;
    line-height: 1;
    color: #fff;
    opacity: 1;
    -moz-osx-font-smoothing: grayscale;
  }
  
  .slick-prev {
    left: 20px;
    z-index: 999;
  }
  [dir=rtl] .slick-prev {
    left: auto;
    right: 20px;
  }
  .slick-prev:before {
    content: url("assets/svg/left-arrow.svg");
    margin-right: 5px;
  }
  [dir=rtl] .slick-prev:before {
    content: url("assets/svg/right-arrow.svg");
    margin-right: 0px;
    margin-left: 5px;
  }
  @media (max-width: 767px) {
    .slick-prev {
      left: 10px;
    }
    [dir=rtl] .slick-prev {
      left: auto;
      right: 10px;
    }
  }
  .simple-slider .slick-prev {
    left: 20px;
  }
  [dir=rtl] .simple-slider .slick-prev {
    left: auto;
    right: 20px;
  }
  
  .slick-next {
    right: 20px;
  }
  [dir=rtl] .slick-next {
    left: 20px;
    right: auto;
  }
  .slick-next:before {
    content: url("assets/svg/right-arrow.svg");
    margin-left: 5px;
  }
  [dir=rtl] .slick-next:before {
    content: url("assets/svg/left-arrow.svg");
    margin-right: 0px;
    margin-left: 5px;
  }
  @media (max-width: 767px) {
    .slick-next {
      right: 10px;
    }
    [dir=rtl] .slick-next {
      right: auto;
      left: 10px;
    }
  }
  .simple-slider .slick-next {
    right: 20px;
  }
  [dir=rtl] .simple-slider .slick-next {
    right: auto;
    left: 20px;
  }
  
  /* Dots */
  .slick-dotted.slick-slider {
    margin-bottom: 30px;
  }
  
  .slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    left: 0;
  }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: auto;
    width: auto;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
  }
  .slick-dots li:only-child {
    display: none;
  }
  .slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 30px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
  }
  .slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
  }
  .slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
  }
  .slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 30px;
    height: 30px;
    font-family: "FontAwesome";
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    color: black;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #000;
  }
  .slick-dots li.slick-active button:before {
    color: #000;
    opacity: 1;
  }
  .back-to-top{
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom:40px;
    right:40px;
    background: var(--primary-color);
    width: 50px;
    height: 50px;
    padding: 5px;
    z-index: 999;
    text-align: center;
    border-radius: 15px;
    overflow: hidden;
  }
  .back-to-top .progress-bar{
    background: var(--secondary-color);
    position: absolute;
    bottom:0;
    left:0;
    width: 100%;
    height: 0;
    transition: all 300ms ease-out;
  }
  .back-to-top:hover, .back-to-top:focus{
    opacity: 0.7;
  }
  .back-to-top.hide{
    display: none;
  }
  .back-to-top svg{
    fill:#fff;
    width: 30px;
    position: relative;
    z-index: 2;
  }
  header {
    transition: all 500ms ease-out;
    padding: 33px 0;
    z-index: 9999;
    width: 100%;
    background: #fff;
    position: relative;
  }
  header.scrolled {
    box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.16);

  }
  @media (min-width: 768px) {
    header{
      padding: 30px 0;
    }
    header.scrolled .phone-num {
      top: 20px;
    }
    header.scrolled .toggle-menu {
      top: 25px;
    }
    header.scrolled.down .logo{
      max-width: 150px;
    }
  }
  @media (min-width: 1025px) {
    header{
      padding:30px 0;
    }
  
  }
  header.scrolled.down {
    top: -100%;
  }
 
  @media (min-width: 768px) {
    header.scrolled.down {
      top: 0;
    }
  }
  header.scrolled.up {
    top: 0;
  }
  header .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding: 0 20px;
  }
  @media (min-width: 768px) {
    header .row {
      justify-content: space-between;
    }
  }
  header .logo {
    width: 100%;
/*    max-width: 32%;*/
max-width: 150px;
    order: 1;
    transition: all 300ms ease-out;
    position: absolute;
    z-index: 999;
    top:-30px;
    left:20px;
    max-width: 150px;
  }
  @media (min-width: 768px) {
    header .logo {
      max-width: 150px;
      top:-10px;
    }
  }
  @media (min-width: 1025px) {
    header .logo {
      order: 0;
      text-align: center;
      position: absolute;
      top:-25px;
      left:20px;
    }
  }
  header .btn-holder {
    order: 2;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: flex-end;
  }
  @media (min-width: 768px) {
    header .btn-holder {
      width: calc(100% - 240px);
      padding: 0 10px;
    }
  }
  @media (min-width: 1025px) {
    header .btn-holder {
      width: auto;
      order: 3;
    }
  }
  header .toggle-menu {
    max-width: 38px;
    display: block;
    order: 3;
    text-decoration: none;
    width: 100%;
    margin-top: -11px;
  }
  header .toggle-menu svg {
    margin: 0 0 -5px;
    display: block;
    transition: all 300ms ease-out;
    fill:var(--primary-color);
  }
  header .toggle-menu span {
    color: var(--primary-color);
    font-size: 0.7rem;
    line-height: 0.5;
    text-transform: uppercase;
    transition: all 300ms ease-out;
  }
  header .toggle-menu:hover svg, header .toggle-menu:focus svg {
    fill: var(--third-color);
  }
  header .toggle-menu:hover span, header .toggle-menu:focus span {
    color: var(--third-color);
  }
  @media (min-width: 1025px) {
    header .toggle-menu {
      display: none;
    }
  }
  
  .main-nav-holder {
    position: fixed;
    transition: all 300ms ease-out;
    background: var(--third-color);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    right: -100%;
    z-index: 9999;
  }
  @media (min-width: 768px) {
    .main-nav-holder {
      max-width: 480px;
      z-index: 99;
    }
  }
  .main-nav-holder .toggle-menu {
    position: absolute;
    top: 27px;
    right: 20px;
    z-index: 9;
  }
  .main-nav-holder .toggle-menu svg {
    fill: #fff;
  }
  .main-nav-holder.opened {
    right: 0;
  }
  .main-nav-holder nav {
    width: 80%;
  }
  .main-nav-holder nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav-holder nav ul li {
    margin: 0 0 10px;
    min-height: 45px;
    display: flex;
    align-items: center;
  }
  .main-nav-holder nav ul li:last-of-type {
    margin: 0;
  }
  .main-nav-holder nav ul li.current_page_item > a {
    color: var(--secondary-color);
  }
  .main-nav-holder nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--primary-font);
  }
  .main-nav-holder nav ul li a:hover, .main-nav-holder nav ul li a:focus {
    color: var(--secondary-color);
    text-decoration: underline;
  }
  @media (min-width: 768px) {
    .main-nav-holder nav ul li a:hover, .main-nav-holder nav ul li a:focus {
      color: var(--secondary-color);
    }
  }
  .main-nav-holder nav ul li.menu-item-has-children {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .main-nav-holder nav ul li .expand-menu {
    padding: 2px 12px;
    background: var(--primary-color);
    display: inline-block;
    vertical-align: middle;
    margin-top: -3px;
  }
  .main-nav-holder nav ul li .expand-menu svg {
    width: 20px;
    height: 21px;
    margin: 7px 0 0;
    fill: #fff;
  }
  .main-nav-holder nav ul li .sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    padding-bottom: 100px;
    background: var(--primary-color);
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
    transition: all 300ms ease-out;
    left: 100%;
    overflow: scroll;
  }
  .main-nav-holder nav ul li .sub-menu.opened {
    left: 0;
  }
  .main-nav-holder nav ul li .sub-menu .back-header {
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
    min-height: 0;
  }
  .main-nav-holder nav ul li .sub-menu .back-header .back-tab svg {
    display: inline-block;
    vertical-align: middle;
    height: 22px;
    fill: #fff;
    margin-top: -3px;
  }
  @media (min-width: 1025px) {
    .main-nav-holder {
      position: initial;
      background: none;
      order: 1;
      justify-content: center;
      max-width: 100%;
      width: auto;
      flex-grow: 1;
      margin-left: 10px;
    }
    .main-nav-holder .toggle-menu {
      display: none;
    }
    .main-nav-holder nav {
      text-align: right;
      width: 100%;
    }
    .main-nav-holder nav ul {
      display: block;
      margin-top: 20px;
    }
    .main-nav-holder nav ul li {
      display: inline-block;
      padding: 0 12px;
      margin-bottom: 0;
      position: relative;
      min-height: 0;
    }
    .main-nav-holder nav ul li.menu-item-has-children {
      display: inline-block;
    }
    .main-nav-holder nav ul li.menu-item-has-children .expand-menu {
      display: none;
    }
    .main-nav-holder nav ul li.menu-item-has-children > a:after {
      content: url(assets/svg/down-arrow.svg);
      margin-left: 7px;
      text-decoration: none;
      width: 10px;
      display: inline-block;
    }
    .main-nav-holder nav ul li:first-of-type {
      padding-left: 0;
    }
    .main-nav-holder nav ul li:last-of-type {
      padding-right: 0;
    }
    .main-nav-holder nav ul li:hover ul, .main-nav-holder nav ul li:focus ul {
      display: block;
    }
    .main-nav-holder nav ul li:hover ul.sub-menu, .main-nav-holder nav ul li:focus ul.sub-menu {
      opacity: 1;
      height: auto;
      overflow: visible;
      transform: translateY(0px);
    }
    .main-nav-holder nav ul li a {
      font-size: 16px;
      padding: 4px 0;
      width: 100%;
      box-sizing: border-box;
      color: var(--text-color);
    }
    .main-nav-holder nav ul li.current_page_item  > a {
      color: var(--primary-color);
      padding:4px 10px;
      text-decoration: underline;
    }
    .main-nav-holder nav ul li ul {
      position: absolute;
      top: 100%;
      width: 325px;
      left: -20px;
      background: #fff;
      height: auto;
      overflow: visible;
    }
    .main-nav-holder nav ul li ul.sub-menu {
      width: 200px;
      height: 0;
      padding-bottom: 0;
      overflow: hidden;
      background: #fff;
      left: -20px;
      top: 100%;
      padding: 0;
      opacity: 0;
      transition: all 300ms ease-out;
      transform: translateY(-10px);
      margin: 0;
    }
    .main-nav-holder nav ul li ul li {
      display: block;
      border-bottom: 1px solid #b3b3b3;
      padding: 0;
    }
    .main-nav-holder nav ul li ul li:last-of-type {
      border-bottom: 0;
    }
    .main-nav-holder nav ul li ul li.menu-item-has-children {
      display: block;
    }
    .main-nav-holder nav ul li ul li.menu-item-has-children a:after {
      display: none;
    }
    .main-nav-holder nav ul li ul li.menu-item-has-children ul {
      display: none;
      left: 100%;
      top: 0;
    }
    .main-nav-holder nav ul li ul li.menu-item-has-children:hover ul, .main-nav-holder nav ul li ul li.menu-item-has-children:focus ul {
      display: block;
    }
    .main-nav-holder nav ul li ul li.back-header {
      display: none !important;
    }
    .main-nav-holder nav ul li ul li a {
      color: #000;
      text-transform: none;
      text-align: left;
      display: block;
      padding: 10px 20px;
      letter-spacing: 0;
    }
    .main-nav-holder nav ul li ul li a:hover, .main-nav-holder nav ul li ul li a:focus {
      color: #fff;
      background: var(--primary-color);
    }
  }
  .quote-form-holder{
    position: absolute;
    top:calc(100% + 33px);
    right:0;
    max-width: 380px;
    width: 100%;
    height: 73px;
    overflow: hidden;
  }

  @media (max-width:768px){
    .scrolled .quote-form-holder{
      top:0;
      bottom:initial;
      position: fixed;
    }
  }
 
  @media (min-width:768px){
    .quote-form-holder{
      top:calc(100% + 30px);
      transition: all 600ms ease-in-out;
    }
  }
  .quote-form-holder.opened{
    /* height: 354px; */
    height: 521px;
  }
  .quote-form-holder .form-toggle{
    background: #102959;
    margin: 0;
    border-radius: 0 0 5px 5px;
    position: absolute;
    right: 0;
    top:0;
    z-index: 2;
    border:1px solid rgba(255,255,255,0.7);
    transition: all 300ms ease-out;
    border-top: 0;
  }
  .quote-form-holder .form-toggle svg{
    height: 35px;
  }
  .quote-form-holder .form-toggle.opened{
    border:1px solid rgba(255,255,255,0);
  }
  .quote-form-holder .form-toggle.opened svg.open{
    display: none;
  }
  .form-toggle svg.close{
    display: none;
    fill:var(--secondary-color);
  }
  @media (min-width:768px){
    .quote-form-holder .form-toggle {
      display: none;
    }
  }

  .quote-form-holder .form-toggle.opened svg.close{
    display: block;
  }
  #quote-form{
    background: #102959;
    padding:90px 40px 40px;
    width: 100%;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 6px 6px rgba(0,0,0,.16);
    position: absolute;
    bottom:100%;
    transition: all 600ms ease-in-out;
    opacity: 0;
  }
  #quote-form.opened{
    bottom:0;
    opacity: 1;
  }
  #quote-form:after{
    content:" ";
    display: block;
    clear: both;
  }
  #quote-form form{
    width: 100%;
    padding:0;
  }
  #quote-form.opened{
    display: block;
  }
  #quote-form .form-title{
    color:#fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 0;
  }
  #quote-form label{
    color:#fff;
    width: 100%;
  }
  #quote-form .frm_checkbox label {
    margin-bottom: 0;
  }
  #quote-form .frm_primary_label {
    color: #ffffff;
  }
  #quote-form input{
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  #quote-form input[type="checkbox"] {
    width: auto;
    display: inline;
    margin: 0 5px 0 0;
  }
  #quote-form button{
    text-align: right;
    background: none;
    color:#fff;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 700;
    float: right;
    transition: all 300ms ease-out;
    margin-top: 10px;
    cursor: pointer;
  }
  #quote-form button:hover, #quote-form button:focus{
    color:var(--secondary-color);
  }

  @media (min-width:768px){
    .quote-form-holder.opened {
      height: 471px;
    }
    #quote-form {
      padding-top: 40px;
    }
  }

  .banner {
    padding: 120px 0 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--third-color);
  }
  .banner .row {
    z-index: 3;
    margin-top: 45px;
  }
  .background-image{
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  @media (min-width:768px){
    .background-image img{
      object-fit: cover;
      object-position: center;
      height: 100%;
    }
    .background-image{
      max-width: 63%;

    }
  }
  .banner h1 {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
  }
  @media (max-width: 767px) {
    .banner h1 {
      font-size: 34px;
    }
  }
 
  @media (min-width: 1025px) {
    .banner h1 {
      font-size: 40px;
      margin-top: 20px;
    }
  }
  .banner p {
    font-weight: 400;
    line-height: 1.4;
  }
  .banner .btn{
     margin-top: 0;
  }
  .banner .btn:hover, .banner .btn:focus{
    color: #fff;
  }
  .banner p:last-of-type{
    margin-bottom: 0;
  }
  .banner p.h1-styling {
    font-size: 30px;
    font-family: var(--primary-font);
    line-height: 1.2;
    margin-bottom: 0;
  }
  .banner p.h1-styling span {
    font-weight: 400;
    display: block;
    text-transform: none;
    font-size: 24px;
  }
 
  .banner .white-bg{
    padding:40px 20px;
  }
  @media (max-width: 767px) {
    .banner p.h1-styling {
      font-size: 30px;
    }
  }
  @media (min-width: 1025px) {
    .banner p.h1-styling {
      font-size: 40px;
      margin-top: 20px;
    }
  }
  .banner .row {
    position: relative;
    z-index: 4;
    padding: 0px;
    justify-content: center;
  }
  @media (min-width: 768px) {
    .banner{
      padding:80px 20px;
      align-items: center;
      min-height: 450px;
    }
    .banner .row {
      justify-content: flex-start;
      margin-top: 0;
      padding:0px 30px
    }
    .banner{
      text-align: left;
    }
  }
  .wide-secondary-nav{
    background: var(--third-color);
    padding:20px 0;
  }
  .wide-secondary-nav .title{
    color:#fff;
  }
  .wide-secondary-nav nav{
    display: none;
  }
  .wide-secondary-nav ul{
    list-style: none;
    margin:0 auto;
    padding:0;
  }
  .wide-secondary-nav ul li{
    display: inline-block;
    width: calc(50% - 5px);
    text-align: center;
    padding:10px;
    box-sizing: border-box;
  }
  .wide-secondary-nav .toggle-ul{
    margin-top: 0;
    color:var(--text-color);
  }
  .wide-secondary-nav .toggle-ul svg{
    width: 15px;
    fill:var(--text-color);
    display: inline-block;
    vertical-align: middle;
    margin-top: -4px;
    transition: all 300ms ease-out;
    margin-left: 5px;
  }
  .wide-secondary-nav .toggle-ul:hover svg, .wide-secondary-nav .toggle-ul:focus svg{
    fill:#fff;
  }
  .wide-secondary-nav ul li a{
    padding:0 10px;
    color:#fff;
    display: block;
  }
  .wide-secondary-nav ul li a:hover, .wide-secondary-nav ul li a:focus{
    color:var(--secondary-color);
  }
  .wide-secondary-nav .col-sm-12{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  @media (min-width:768px){
    .wide-secondary-nav nav{
      display: block;
    }
    .wide-secondary-nav ul li{
      width: auto;
      padding: 0px;
    }
  }
  @media (min-width:1025px){
    .wide-secondary-nav ul li{
      padding:0 10px;
    }
  }
  section {
    padding: 50px 0;
    position: relative;
  }
  @media (min-width: 768px) {
    section {
      padding: 90px 0;
    }
  }
  section .h1-styling {
    text-transform: none;
  }
  section .h1-styling:after {
    content: " ";
    display: block;
    margin: 20px auto 40px;
    height: 3px;
    width: 122px;
    background: var(--primary-color);
  }
  
  
  .wp-block-gallery {
    padding: 50px 20px;
    max-width: 1300px;
    margin: 0 auto;
  }
  
  .general {
    text-align: left;
  }

  .cta-shortcode{
    background-color: var(--light-gray);
    padding: 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cta-shortcode form{
    padding:0;
  }
  .cta-shortcode.on-side h3{
    margin-bottom: 20px;
  }
  .cta-shortcode.on-side p{
    margin-bottom: 20px;
  }
  .cta-shortcode.on-side.w-form p{
    margin-bottom: 0px;
  }
  .cta-shortcode .btn-side{
    width: 100%;
  }
  .cta-shortcode h2{
    margin-bottom: 0;
  }
  .cta-shortcode p{
    font-size: 18px;
    margin-bottom: 0;
  }
  @media (min-width:768px){
    .cta-shortcode{
      justify-content: space-between;
      padding:40px;
    }
    .cta-shortcode .btn{
      margin-top: 0;
    }
    .cta-shortcode .btn-side{
      width: auto;
    }
  }
  .wsatc-stick-cart-wrapper.active{
    top:68px !important;
  }
  @media (min-width:768px){
    .wsatc-stick-cart-wrapper.active{
      top:80px !important;
    }
  }
  @media (min-width:1025px){
    .wsatc-stick-cart-wrapper.active{
      top:89px !important;
    }
  }
  /*Background stylings*/
  .white-bg:before{
    background-color: var(--light-gray);
  }
  .gray-bg, .gray-bg:before{
    background-color: var(--light-gray);
  }
  .blue-bg, .blue-bg:before{
    background-color: var(--third-color);
  }
  .blue-bg p, .blue-bg ol, .blue-bg ul, .blue-bg a, .blue-bg h1, .blue-bg h2, .blue-bg h3, .blue-bg h4, .blue-bg h5{
    color:#fff;
  }
  .blue-bg .btn{
    color:var(--text-color);

  }
  .blue-bg .btn:hover, .blue-bg .btn:focus{
    color:#fff;
  }
  .blue-bg a:hover, .blue-bg a:focus{
    color: var(--secondary-color);
  }
  .w-overlay:before{
    content:" ";
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.65;
  }
  footer{
    background: var(--third-color);
    color:#fff;
    padding:50px 0 70px;
    text-align: center;
  }
  footer .row{
    align-items: flex-start;
  }
  footer .logo{
    display: block;
    margin:0 auto;
  }
  footer .logo img{
    max-width: 180px;
  }
  footer ul{
    list-style: none;
    margin:0 0 30px;
    padding:0;
  }
  footer p{
    margin-bottom: 0;
  }
  footer address {
    font-family: var(--primary-font);
    font-style: normal;
  }
  footer .copyright {
    font-size: 14px;
    text-align: center;
  }
  footer .footer-title{
    font-size: 20px;
    font-family: var(--primary-font);
    font-weight: 600;
    margin-bottom: 0;
  }
  footer .btn{
    margin-top: 5px;
    margin-bottom: 20px;
  }
  footer .btn:hover, footer .btn:focus{
    background: #fff;
    color: var(--text-color);
  }
  footer a{
    color:#fff;
    text-decoration: none;
  }
  footer a:hover, footer a:focus{
    color:var(--secondary-color);
    text-decoration: underline;
  }
  @media (min-width:768px){
    footer{
      text-align: left;
    }
  }
  
.mobile-bar{
  padding:10px;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  background: var(--primary-color);
  color:#fff;
  font-size: 16px;
  font-weight: 7000;
  position: fixed;
  bottom:0;
  left:0;
  width: 100%;
  z-index: 999;
  text-transform: uppercase;
}
.mobile-bar svg{
  fill: var(--secondary-color);
  width: 20px;
  display: block;
  margin-right: 5px;
}

.mobile-bar a{
  display: flex;
  align-items: center;
  color:#fff;
  text-decoration: none;
}


/* NEW BLOG LAYOUT */

.blog article.single-article.blog-landing {
  display: flex;
  margin-bottom: 40px;
}

.blog article.single-article.blog-landing .post-excerpt{
  width: 50%;
  padding: 20px;
}

.blog article.single-article.blog-landing .post-excerpt .meta-info{
  display: block !important;
}

.blog article.single-article.blog-landing .post-excerpt p:nth-child(3){
  display: none;
}


.blog article.single-article.blog-landing a{
  width: 50%;
}

.blog article.single-article.blog-landing .post-thumb{
  height: 300px;
}

.blog article.single-article.blog-landing .post-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px){
  .blog article.single-article.blog-landing {
      display: flex;
      flex-direction: column;
      margin-bottom: 40px;
  }

  .blog article.single-article.blog-landing a{
      width: 100%;
  }
  .blog article.single-article.blog-landing .post-excerpt{
      width: 100%;
      padding: 40px;
  }

  .blog article.single-article.blog-landing .post-thumb{
      height: 250px;
  }
}