/*
Theme Name: 57doors
Theme URI: -
Description: 57 Doors Wordpress Theme
Version: 1.111
Author: Stairs
Text Domain: Stairs
*/

/*Basic Style*/
body { margin: 0; font-family: "raleway", Arial, sans-serif; line-height: 24px; font-size: 18px; color: #444444;font-weight:400;}
* { box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
h1,
h2,
h3,
h4,
h5,
h6 { font-family: "Raleway", Arial, sans-serif; font-weight: 500; line-height: normal; margin: 0 0 15px; color: #1C3A13; }
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a { font-weight: inherit; color: inherit; }
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus { color: inherit; opacity: 0.85; }
h1 { font-size: 42px; font-weight: 600;line-height:45px;}
h2 { font-size: 26px; }
h3 { font-size: 24px; }
h4 { font-size: 22px; }
h5 { font-size: 16px; }
h6 { font-size: 14px; }
p { margin: 0 0 10px; }
a { color: #e2b368; text-decoration: none; outline: 0; transition: all 0.3s ease 0s;font-family:raleway; }
a:hover,
a:focus { color: #75A1AA; }
ul,
ol { margin-bottom: 10px; margin-top: 0;padding-left: 33px;}
img { max-width: 100%; height: auto; display: block; }
.alignleft { float: left; margin: 5px 20px 20px 0; }
.aligncenter { display: block; margin: 5px auto; }
.alignright { float: right; margin: 5px 0 20px 20px; }
input,
button,
select,
textarea { font-family: inherit; font-size: inherit; line-height: inherit; padding: 6px 30px; }
input, select {min-height:44px;}
input, select, textarea {font-family:raleway;border:2px solid #1C3A13;}
sup {font-size:0.45em;}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] { background: #000; border: 0 none; color: #fff; cursor: pointer; padding: 8px 20px; transition: all 0.3s ease 0s; line-height: 1.3; -webkit-appearance: none; -moz-appearance: none; appearance: none; }
button,
select { text-transform: none; }
label { font-family:raleway;font-weight:400;display: inline-block; font-weight: bold; margin-bottom: 5px; max-width: 100%; }
legend {font-family:raleway;font-weight:400;}
table { border-collapse: collapse; border-spacing: 0; max-width: 100%; width: 100%; }
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td,
table > thead > tr > th,
table > tbody > tr > th,
table > tfoot > tr > th,
table > thead > tr > td,
table > tbody > tr > td,
table > tfoot > tr > td { border-top: 1px solid #ddd; line-height: 1.42857; padding: 8px; vertical-align: top; }
.btn {font-family:raleway;color: #fff; display: inline-block; font-size: 14px; padding: 12px 20px; }
.btn:hover,
.btn:focus { color: #fff; }
.full-section { width: 100%; float: left; } 
.full-section.main-wrapper {overflow-x: hidden;}
.container { max-width: 1200px; padding: 0 20px; width: 100%; margin: 0 auto; position: relative; }
li.widget { display: block; }
section.full-section {margin: 0 0; }


/*Responsive Menu*/
:root {
    --animationSpeed: 0.25s;
  }

.menu-button { display:none; position: relative; vertical-align: middle; text-align: right; padding:3px;width:60px;}

.bars-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 27px;
    max-width:45px;
    float: right; margin: 0 0 0 15px ; width: 45px;
  }
  
  .bars-container,
  .bar {
    cursor: pointer;
  }
  
  .bar {
    width: 100%;
    height: 4px;
    background-color: white;
    border-radius: 1px;
    display: block;
  }
  
  .bar1,
  .bar4 {
    transform-origin: center left;
    position: relative;
  }

  .bars-container2 {
    position: relative;
  }
  
  .bars-container2 .bar {
    position: absolute;
    transform-origin: center;
  }
  
  .bars-container2 .bar1 {
    top: 5%;
  }
  
  .bars-container2 .bar2 {
    top: 50%;
    transition: opacity 0.4s ease;
  }
  
  .bars-container2 .bar3 {
    top: 95%;
  }
  
  .menu-button.open .bar1 {
    animation: moveDown var(--animationSpeed) ease 0s 1 forwards, makeCross1 var(--animationSpeed) ease var(--animationSpeed) 1 forwards;
  }
  
  .menu-button.open .bar2 {
    opacity: 0;
  }
  
  .menu-button.open .bar3 {
    animation: moveUp var(--animationSpeed) ease 0s 1 forwards,
      makeCross2 var(--animationSpeed) ease var(--animationSpeed) 1 forwards;
  }

  .menu-button.closing .bar1 {
    animation: makeCross1Backward var(--animationSpeed) ease 0s 1 forwards, moveDownBackward var(--animationSpeed) ease var(--animationSpeed) 1 forwards;
  }

  .menu-button.closing .bar3 {
    animation: makeCross2Backward var(--animationSpeed) ease 0s 1 forwards, moveUpBackward var(--animationSpeed) ease var(--animationSpeed) 1 forwards;
  }
  
  @keyframes moveDown {
    from { top: 5%; transform: translateY(0); }
    to { top: 50%; transform: translateY(-50%); }
  }
  
  @keyframes moveDownBackward {
    from { top: 50%; transform: translateY(-50%); }
    to { top: 5%; transform: translateY(0); }
  }
  
  @keyframes moveUp {
    from { top: 95%; transform: translateY(0); }
    to { top: 50%; transform: translateY(-50%); }
  }
  
  @keyframes moveUpBackward {
    from { top: 50%; transform: translateY(-50%); }
    to { top: 95%; transform: translateY(0); }
  }
  
  @keyframes makeCross1 {
    from { transform: rotate(0deg); }
    to { transform: rotate(43deg); }
  }
  
  @keyframes makeCross1Backward {
    from { top: 50%; transform: rotate(43deg) translateY(-50%); }
    to { top: 50%; transform: rotate(0deg) translateY(-50%); }
  }
  
  @keyframes makeCross2 {
    from { transform: rotate(0deg); }
    to { transform: rotate(-43deg); }
  }
  
  @keyframes makeCross2Backward {
    from { top: 50%; transform: rotate(-43deg) translateY(-50%); }
    to { top: 50%; transform: rotate(0deg) translateY(-50%); }
  }
.mobile-menu {border-bottom: 5px solid #e2b368; display: none; width: 100vw; position: absolute;top: 126px; background-color: #f7f2ef; z-index: 333;opacity:0;-webkit-transition: opacity 0.33s; /* Safari, Chrome and Opera > 12.1 */ -moz-transition: opacity 0.33s; /* Firefox < 16 */ -ms-transition: opacity 0.33s; /* Internet Explorer */ -o-transition: opacity 0.33s; /* Opera < 12.1 */ transition: opacity 0.33s;}
.mobile-menu.active {opacity:1;}
.mobile-menu .menu-mobile-menu-container {max-width:1200px;margin: 0 auto;}
.mobile-menu ul.menu { margin: 0; padding: 0; display:flex;flex-flow: row wrap;}
.mobile-menu ul.menu > li.menu-item {text-align: left; list-style: none;position: relative; }
.mobile-menu ul.menu .menu_bg_color {background-color: #ede7df; color: #e2b368; }
.mobile-menu ul.menu > li.menu-item.current-menu-parent > a,
.mobile-menu ul.menu > li.menu-item.current-menu-item > a { color: #e2b368; }
.mobile-menu ul.menu > li.menu-item > a { font-family: 'Raleway';display: block; padding: 15px; color: #666666; font-size: 18px; }
.mobile-menu ul.menu > li.menu-item ul.sub-menu { padding-left:15px;}
.mobile-menu ul.menu > li.menu-item ul.sub-menu.active {}
.mobile-menu ul.menu > li.menu-item > ul.sub-menu li.menu-item { list-style: none; border-bottom: 1px solid #efefef; position: relative; }
/*.mobile-menu ul.menu > li.menu-item > ul.sub-menu li.menu-item:after { content: "\f107"; font: 15px FontAwesome; top: 50%; transform: translateY(-50%); left: 12px; position: absolute; }*/
.mobile-menu ul.menu > li.menu-item > ul.sub-menu li.menu-item:last-child { border: none; }
.mobile-menu ul.menu > li.menu-item > ul.sub-menu li.menu-item a { color: #666666;display: block; padding: 0 0 12px;font-size: 16px; }
.mobile-menu ul.menu > li.menu-item > ul.sub-menu li.menu-item.current-menu-item a { color: #E0777D; }
li.s-link, li.c-link {border-bottom: none!important; }
.mobile-menu ul.menu > li.c-link{margin-top:10px;flex:1 100%;}
.mobile-menu ul.menu > li.c-link ~ li.c-link{margin-top:0px;}
.s-link {width: 30%; display: inline-block; }
.header-wrapper { background-color: #1C3A13;padding: 12px 0; -moz-box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.033); -webkit-box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.033); box-shadow: 5px 5px 5px rgba(68, 68, 68, 0.033);}
.header-wrapper .container { z-index:33; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; padding:0 15px;}
.header-wrapper .container .header-right { display: block;flex-grow: 1; margin-right: 15px ;}
.header-wrapper .container .logo-wrapper a { display: inline-block; }
.header-wrapper .container .logo-wrapper a img { width: 203px; margin-top: 5px;}
.mobile-menu ul.menu li ul.sub-menu li ul.sub-menu li { padding-left: 20px; }
.tel a:before {background-image:url();content:"";background-size: 33px 33px;}

.col-1, .col-2, .col-3, .col-4 {width:25%;flex:1;}
.col-1 > a, .col-2 > a, .col-3 > a, .col-home a{margin-bottom: 10px; border-bottom: 2px solid #cccccc; max-width: 200px; padding-bottom: 5px!important;}
.col-4 .sub-menu {padding-left:0px!important;}
.col-4 > a {box-shadow: 0 2px 2px rgb(20 41 82 / 5%), 0 4px 4px rgb(20 41 82 / 5%), 0 8px 8px rgb(20 41 82 / 5%), 0 16px 16px rgb(20 41 82 / 5%);padding: 12px 28px!important; width: fit-content;transition: all 0.3s;margin-top: -8px; background-color: #e2b368; color: white!important; font-weight: 500; width: 133px; text-align: center; height: unset;}
.col-4 > a:hover {box-shadow: 0 1px 1px rgb(20 41 82 / 9%), 0 2px 2px rgb(20 41 82 / 9%), 0 4px 4px rgb(20 41 82 / 9%), 0 8px 8px rgb(20 41 82 / 9%);background-color:#335983;}
.col-4 .menu-no-link {cursor:default;padding-top:33px;font-size:16px;font-weight:400;}
.col-home {width: 100%; flex: 1 100%;}
.col-1 .sub-menu, .col-2 .sub-menu, .col-3 .sub-menu, .col-4 .sub-menu {display:block;}
.col-4 > .sub-menu >li > a {cursor:default;}


/*Modal*/
.modal {max-width:900px!important;border-radius: 0px!important;-moz-border-radius: 0px!important; -o-border-radius: 0px!important; -ms-border-radius: 0px!important;padding:10px 45px 10px 15px!important;}
.modal a.close-modal {top:10px!important;right:10px!important;background-image:url(./images/close-popup.svg)!important;}
.jquery-modal {z-index:34!important;}

/*Navigation*/
.navigation-wrapper { display: flex; align-items: center; justify-content: flex-end; }
.navigation-wrapper .main-menu ul.menu { margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; }
.navigation-wrapper .main-menu ul.menu li.menu-item { list-style: none; margin-right: 45px; }
.navigation-wrapper .main-menu ul.menu li.menu-item:last-child { margin: 0; }
.navigation-wrapper .main-menu ul.menu li.menu-item a { font: 700 42px/45px raleway;color: white; font-weight: 400; position: relative; font-size: 18px; }
.navigation-wrapper .main-menu ul.menu li.menu-item a:hover { color: #e2b368; }
.navigation-wrapper .main-menu ul.menu li.menu-item a > .sub-menu li a {color:#1C3A13;}
.navigation-wrapper .main-menu ul.menu li.menu_bg_color a { box-shadow: 0 2px 2px rgb(20 41 82 / 5%), 0 4px 4px rgb(20 41 82 / 5%), 0 8px 8px rgb(20 41 82 / 5%), 0 16px 16px rgb(20 41 82 / 5%); transition: all 0.3s; background: #e2b368;color: #1C3A13; padding: 12px 28px; }
.navigation-wrapper .main-menu ul.menu li.menu_bg_color a:hover { box-shadow: 0 1px 1px rgb(20 41 82 / 9%), 0 2px 2px rgb(20 41 82 / 9%), 0 4px 4px rgb(20 41 82 / 9%), 0 8px 8px rgb(20 41 82 / 9%); background: #335983; color: #ffffff; }
.navigation-wrapper .main-menu ul.menu li ul.sub-menu {margin: 5px 0 0;border-left:5px solid #1C3A13; display: none; position: absolute; background: #f9f9f9; z-index: 999; padding: 0; margin: 0; width: fit-content; min-width: 190px;}
.navigation-wrapper .main-menu ul.menu li ul.sub-menu li.menu-item { margin-right: 0; }
.navigation-wrapper .main-menu ul.menu li ul.sub-menu li.menu-item a { color:#1C3A13;font-size: 18px; padding: 9px 15px; border-bottom: 1px solid #eee; display: block; }
.navigation-wrapper .main-menu ul.menu li ul.sub-menu li.menu-item:last-child a { border: none; }
.navigation-wrapper .main-menu ul.menu li ul.sub-menu li ul.sub-menu { margin-left: 20px; width: 150px; }
.contact-menu ul.menu { margin: 0; padding: 0; display: flex; align-items: center; justify-content: center; }
.contact-menu ul.menu li.menu-item { list-style: none; margin-right: 40px; }
.navigation-wrapper ul li.menu-item-has-children>a:after { content: "\f107"; position: absolute; top: 0; bottom: 0; margin: auto; width: 12px; height: 12px; font: 16px fontawesome; display: flex; align-items: center; justify-content: center; right: -15px; }
.navigation-wrapper ul li.menu-item-has-children .sub-menu li.menu-item-has-children>a:after {right:5px;}
.navigation-wrapper ul li.active> a,
.navigation-wrapper ul li a:hover { color: #e2b368; }
.footer-wrapper { padding: 50px 0 0;background-color: #1C3A13; font-family:raleway;}
.footer-wrapper .container .footer-col-1.foo_style { max-width: 40%; border-bottom: 1px solid #dcdcdc; padding-bottom: 50px; margin-bottom: 50px; margin-right: 0; }
.footer-wrapper .container .foo_style { max-width: 50%; display: inline-block; vertical-align: top; margin-bottom: 10%; margin-right: 3%; }
.footer-wrapper .container .foo_style img { width: 203px; }
.footer-wrapper .container .footer-col-1.foo_style { margin: 0px 0px 35px; }
.footer-wrapper .container .footer-col-1.foo_style .textwidget { margin-top:20px;font-size: 17px; font-weight: 400; line-height: 24px; color: white; }
.footer-wrapper .container .footer-col-1.foo_style ul { display: flex; align-items: center; justify-content: start; margin: 0; }
.footer-wrapper .container .footer-col-1.foo_style ul li { margin: 0 33px 0 0; }
.footer-wrapper .container .footer-col-1.foo_style ul li a { font-size: 24px; color: white; border-radius: 10px; display: inline-block; height: 33px; text-align: center; line-height: 50px; }
.footer-wrapper .foo_style h2.widgettitle { font-size: 24px;color:white; }
.footer-wrapper .foo_style ul { padding: 0; list-style: none; margin: 0; }
.footer-wrapper .foo_style ul li { margin: 0 0 10px; }
.footer-wrapper .foo_style ul li a { color: white; font-weight: 500; font-size: 18px; line-height: 20px; }
.footer-wrapper .foo_style ul li a:hover, .footer-wrapper .foo_style ul li a:hover i { color: #e2b368; }
.footer-wrapper .foo_style ul li a, .footer-wrapper .foo_style ul li a i { transition:0.3s;}

/* Footer nav columns layout */
.footer-nav-columns { display: flex; gap: 3%; width: 100%; margin-bottom: 35px; }
.footer-nav-columns .footer-nav-col { flex: 1; }
.footer-nav-columns.footer-cols-2 .footer-nav-col { width: 50%; flex: 0 0 48%; }
.footer-nav-columns.footer-cols-1 .footer-nav-col { width: 100%; }

.copyright-text p { margin:10px auto; }
.copyright-text {padding: 10px 0 10px; flex: 1; display: flex; justify-content: center; flex-wrap: wrap; flex-direction: column; text-align: center;}
.footer-top {font-weight: 600; letter-spacing: 0.1em; border-bottom: 2px solid #1C3A13; color: #1C3A13;transition:all 0.3s ease-in-out;}
.footer-top:hover {cursor:pointer;color:#e2b368;border-color:#e2b368;}
.emg-link {text-align: right;width:49%;display:inline-block; padding: 20px 0 20px;color:#333;}
.emg-link:hover {color:#E75A7C;}
.copyright-wrapper {background:#efefef;color:#333;display:flex;}
.copyright-wrapper .container {display:flex;}

/*TITLE CONTENT IMAGE*/
section.title_content_image { padding: 50px 0; }
section.title_content_image .container { display: block; }
section.title_content_image .container .left-area { width:100%; }
section.title_content_image .container .left-area h2 { font: 700 42px/45px raleway; }
section.title_content_image .container .left-area h3 { color: #183B56; font: 400 20px/36px raleway; }
section.title_content_image .container .left-area ul { padding: 0; margin: 50px 0 0 0; display: block; }
section.title_content_image .container .left-area ul li { width: 100%; list-style: none; }
section.title_content_image .container .left-area ul li:nth-child(2) a {padding-bottom: 2px!important; padding-top: 12px!important;}
section.title_content_image .container .left-area ul li a {min-height:51px;color: #e2b368; font-size: 18px;background-color:#f9f9f9; font-weight: 500; border-bottom: 3px solid #e2b368; border-radius: 3px; display: inline-block; padding: 8px 42px 8px 26px; margin-bottom: 20px; position: relative; }
section.title_content_image .container .left-area ul li a:hover { background: #e2b368; color: #ffffff; }
section.title_content_image .container .left-area ul li a:after { font: 22px fontawesome; content: "\f105"; right: 20px; position: absolute; top: 50%; transform: translateY(-50%); }
section.title_content_image .container .left-area ul li .small_con { display: none; }
section.title_content_image .container .right-area { width: 100%; }
section.title_content_image .container .right-area img { position: relative; top: auto; transform: none; right: auto; }
section.title_content_image .container .right-area a.fancy_anchor { width: 60px; height: 60px; line-height: 65px; background: #36B37E; border-radius: 50%; text-align: center; display: inline-block; z-index: 9999; position: relative; right: -30px; top: 170px; }
section.title_content_image .container .right-area a.fancy_anchor i { font-size: 25px; color: #ffffff; }



/*SIMPLE BOXES*/
section.simple_boxes p {padding: 12px 0px;}
section.simple_boxes h2 {text-align:center;margin-bottom: 33px;}
section.simple_boxes ul { padding: 0; margin: 0; display: block; }
section.simple_boxes ul li {  margin-top:2%;padding: 20px;width: 100%; margin-right: 0; list-style: none; background: #ffffff; display: inline-block; vertical-align: middle; transition: 0.3s all; }
section.simple_boxes ul li:hover { box-shadow: 1px 10px 77px rgb(176 183 195 / 13%); }
section.simple_boxes ul li .cs_color { width: 80px; height: 80px; border-radius: 50%; margin-bottom: 40px; }
section.simple_boxes ul li p { margin: 0; font-weight: 400; font-size: 18px; line-height: 24px; }
section.simple_boxes ul li img {height: 60px; margin: 0 20px 10px 0; display: inline-block; width: auto;vertical-align:middle;}
section.simple_boxes.full-width ul li img {height: unset; margin: 0 0 10px;}

/*SIMPLE BOXES VIDEO VAR*/
section.simple_boxes.video ul {}
section.simple_boxes.video ul li { width: 100%; margin-right: 1%;min-height:unset;}
section.simple_boxes ul li h3{display:inline-block;}

/*TEXT BLOCK*/
section.text_block { padding: 33px;}
section.text_block .blog_container { display: block;text-align:left;}
section.text_block .blog_container .item { width: 100%; margin-right: 0; margin-bottom: 5%; transition: 0.3s all; }
section.text_block .blog_container .item .post-thumbnail{height: 200px;}
section.text_block .blog_container .item .post-thumbnail img{object-fit:cover;height: 200px;}
section.text_block .blog_container .item:hover { box-shadow: 0px 33px 33px rgb(0 0 0 / 3%); }
section.text_block .blog_container .item:nth-child(3n) { margin-right: 0; }
section.text_block .blog_container .item .blog-content { padding: 20px; border: 2px solid #FAFBFC; background-color:#fff;display:block;position:relative;}
section.text_block .blog_container .item .blog-content h2 { margin-bottom: 18px; }
section.text_block .blog_container .item .blog-content .excerpt { font-weight: 400; font-size: 17px; line-height: 26px; color: #333; }
section.text_block .blog_container .item .blog-content a.readmore { font-weight: 600; font-size: 20px; line-height: 24px; margin-top: 40px; display: inline-block; color: #e2b368; position: relative; }
section.text_block .blog_container .item .blog-content a.readmore:after { position: absolute; content: "\f105"; right: -20px; font: 20px fontawesome; top: 51%; transform: translateY(-50%); }
section.text_block .blog_container .item .blog-content a.readmore:hover { color: #000000; }

/*VIDEO SECTION*/
section.video_section { margin-top: 0; margin-bottom: 0; }
section.video_section.video-padded { padding: 0; }
section.video_section.video-padded .container { margin: 33px auto; }
section.video_section.video-padded h2,
section.video_section.video-padded h3,
section.video_section.video-padded h4,
section.video_section.video-padded h5,
section.video_section.video-padded h6 { color: #1C3A13; }
section.video_section.video-padded p,
section.video_section.video-padded li,
section.video_section.video-padded span,
section.video_section.video-padded div { color: #444444; }
section.video_section.video-full { padding: 0; }
section.video_section h2 { text-align: left; font: 700 40px/55px raleway; }
section.video_section p { font: 500 18px/35px raleway; max-width: 822px; text-align: left; margin: 40px auto; }
section.video_section .video-container { position: relative; text-align: center; }
section.video_section .video-container a { display: inline-block;width:100%;}
section.video_section .video-container span.video-btn { position: absolute; left: 0; right: 0; margin: 0 auto; top: 50%; transform: translateY(-50%); background: #e2b368; width: 77px; height: 77px; border-radius: 50%; line-height: 80px; }
section.video_section .video-container span.video-btn i { color: #ffffff; font-size: 25px; }
section.video_section .video-container img { margin: 0 auto; width:100%;}
section.video_section .video-container video.html5video { width: 100%;margin: 0 auto; }
section.video_section .video-container iframe { width: 100%; height: 350px;}
section.video_section a:hover { color: #75A1AA; }
section.video_with_content a:hover { color: #75A1AA; }

/*GALLERY SECTION*/
section.gallery_section, section.gallery_grid_main{ padding: 40px 10px; }
section.gallery_section h2 { text-align: left; font: 700 40px/55px raleway; }
section.gallery_section p { font: 400 18px/24px raleway; max-width: 822px; text-align: left; margin: 0 auto; }
section.gallery_section .owl-carousel {height: fit-content;}
section.gallery_grid :not(.text-gallery-half) .img-box {width: 30%;}
section.gallery_section.with_text .rg_side .owl-carousel .owl-nav { left: unset; right:72px }
section.gallery_section.with_text .lf_side .owl-carousel .owl-nav {right: 72px ; }
section.gallery_section.with_text .owl-carousel {order:1;}
section.gallery_section.with_text .g-car-text {order:2;}
section.gallery_section.with_text .owl-carousel .owl-nav button.owl-prev { position: absolute; left: -80px;}
section.gallery_section.with_text .owl-carousel .owl-nav button.owl-next { position: absolute; left:0px;}
section.gallery_section .owl-carousel .owl-nav button.owl-prev {width: 80px; height: 80px; background: #ede7df; }
section.gallery_section .owl-carousel .owl-nav button.owl-next {width: 80px; height: 80px; background: #ede7df; }
section.gallery_section .owl-carousel .owl-nav {bottom:80px;right:0;position:absolute;}
section.gallery_section .owl-carousel .owl-nav i { color: #868f89; font-size: 33px; line-height: 35px; }
section.gallery_section .owl-carousel .owl-dots { text-align: center; margin-top: 15px; }
section.gallery_section .owl-carousel .owl-dots button { margin-right: 3%; }
section.gallery_section .owl-carousel .owl-dots button:last-child { margin-right: 0; }
section.gallery_section .owl-carousel .owl-dots button.active span { background: #3066BF; border-radius: 63px; width: 19px; height: 8px; }
section.gallery_section .owl-carousel .owl-dots button span { width: 8px; height: 8px; background: rgba(55, 125, 255, 0.2); display: inline-block; border-radius: 50%; }

/*Gallery section with txt*/
section.gallery_section.with_text .container {display:flex;flex-wrap: wrap;align-items: center;}
section.gallery_section.with_text .g-car-text{padding: 45px 33px;}


/*Gallery Grid with Text*/
.text-gallery-half .container {display:flex;flex-wrap:wrap;align-items: center;}
.text-gallery-half .container .gallery-text {padding: 45px 33px;}
.text-gallery-half .gallery_grid .img-box { width: 48%;height: 200px;}
.gallery_grid { display: flex; flex-wrap: wrap;justify-content: space-between; gap: 10px;width: 100%;}
.gallery_grid .img-box img { width: 100%; object-fit:cover;}
.gallery_grid .img-box {display: flex; width:30%;}


/*Light Gallery*/
button.lg-flip-hor, button.lg-flip-ver, button.lg-autoplay-button, a.lg-download, button.lg-rotate-left, button.lg-rotate-right {display:none;}

/*FAQS SECTION*/
section.faqs_section h2 { text-align: left; font: 500 33px/42px raleway;}
section.faqs_section .sub-heading p { font: 400 18px/24px raleway; max-width: 1002px; text-align: left; margin: 20px auto; }
section.faqs_section .faqs { display: block; }
section.faqs_section .faqs .faq_cover { width: 100%; margin-right: 0; margin-bottom: 10px; }
section.faqs_section .faqs .faq_cover:nth-child(2n) { margin-right: 0;}
.page-id-554 section.faqs_section .faqs .faq_cover .toggle-title, .page-id-554 section.faqs_section .faqs .faq_cover .toggle-content {background-color:#fafafa;}
section.faqs_section .faqs .faq_cover .toggle-title {border-left: 3px solid #e2b368;min-height:66px;cursor: pointer; background: #ffffff; display: flex; flex-wrap: wrap; align-items: center; }
section.faqs_section .faqs .faq_cover .toggle-title h3 { margin: 0; color: #1C3A13; font-size: 18px; font-weight: 400; line-height: 26px; padding: 0 60px 0 20px; position: relative; width: 100%; }
section.faqs_section .faqs .faq_cover .toggle-title.active h3:after {transform:rotate(90deg);transform-origin: 10px 3px;}
section.faqs_section .faqs .faq_cover .toggle-title h3:after {transition: all 0.3s; content: "\f054"; font: 18px fontawesome; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); }
section.faqs_section .faqs .faq_cover .toggle-content { border-left: 3px solid #e2b368;padding: 20px; background-color: #fff;}
section.faqs_section .git-btn { text-align: center; }
section.faqs_section .git-btn a { background: #E5F1FF; border-radius: 10px; display: inline-block; padding: 20px 50px; font-size: 20px; font-weight: 600; color: #e2b368; }
section.faqs_section .git-btn a:hover { background: #e2b368; color: #124559; }
.blog-content-area section.faqs_section {padding: 30px 0;}
.blog-content-area section.faqs_section .faqs .faq_cover .toggle-title {height:66px;}
div.faqs {    margin: 33px 0px;}

/*Banner Slider*/
section.banner-slider-wrap { text-align: center; }
section.banner-slider-wrap .banner_bg { min-height: 333px; display: flex; align-items: flex-end;}
section.banner-slider-wrap .banner_bg:after {z-index:33;content: ''; background-color: #ffffff; position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: .33;}
section.banner-slider-wrap .banner_bg .container {z-index:34;}
section.banner-slider-wrap .banner_bg .banner-content-wrap { background: #222222bd; min-height: 70px; padding: 15px; text-align:left; z-index: 100; }
section.banner-slider-wrap .banner_bg .banner-content-wrap h2 { color: #ffffff; line-height: 35px; font-size: 25px;margin-bottom:0px; }
section.banner-slider-wrap .banner_bg .banner-content-wrap h1 { color: #ffffff;margin-bottom:0px; }
section.banner-slider-wrap .banner_bg .banner-content-wrap  p { font-size: 20px; color: #ffffff; }
section.banner-slider-wrap .banner_bg .banner-content-wrap a.btn { border: 2px solid #ffffff; padding: 10px 28px; font-size: 14px; color: #ffffff; margin-top: 35px; display: inline-block; }
section.banner-slider-wrap .banner_bg .banner-content-wrap a.btn:hover { background: #ffffff; color: #4169e1; }

/* Banner Layout: Right (default) - content box within right half of container */
section.banner-slider-wrap .banner-layout-right .banner-content-wrap { width: 50%; margin-left: auto; }

/* Banner Layout: Full Width - overlay spans full width, content constrained */
section.banner-slider-wrap .banner-layout-full_width { position: relative; }
section.banner-slider-wrap .banner-layout-full_width:after { opacity: 0; }
section.banner-slider-wrap .banner-fullwidth-overlay { background: #222222bd; position: absolute; bottom: 0; left: 0; width: 100%; z-index: 34; }
section.banner-slider-wrap .banner-layout-full_width .banner-content-wrap { background: transparent; width: 50%; }

section.banner-slider-wrap .owl-nav { top: 50%; transform: translateY(-50%); position: absolute; width: 100%; }
section.banner-slider-wrap .owl-nav button.owl-prev { position: absolute; left: 30px; }
section.banner-slider-wrap .owl-nav button.owl-next { position: absolute; right: 30px; }
section.banner-slider-wrap .owl-nav button i { color: #ffffff; font-size: 50px; }
section.banner-slider-wrap .owl-dots { position: absolute; bottom: 10px;right: 0;left:0; margin: 0 auto; }
section.banner-slider-wrap .owl-dots button span { width: 12px; height: 12px; background: #ffffff; display: inline-block; }
section.banner-slider-wrap .owl-dots button.owl-dot { margin-right: 10px; }
section.banner-slider-wrap .owl-dots button.owl-dot:last-child { margin-right: 0; }
section.banner-slider-wrap .owl-dots button.active span,
section.banner-slider-wrap .owl-dots button span:hover { background: #1C3A13; }

/*Section Themes*/
.section-theme-white { background-color: #ffffff; }
.section-theme-white h1, .section-theme-white h2, .section-theme-white h3, .section-theme-white h4, .section-theme-white h5, .section-theme-white h6 { color: #1C3A13; }
.section-theme-white p, .section-theme-white li, .section-theme-white span, .section-theme-white div { color: #444444; }

.section-theme-lgrey { background-color: #f7f2ef; }
.section-theme-lgrey h1, .section-theme-lgrey h2, .section-theme-lgrey h3, .section-theme-lgrey h4, .section-theme-lgrey h5, .section-theme-lgrey h6 { color: #1C3A13; }
.section-theme-lgrey p, .section-theme-lgrey li, .section-theme-lgrey span, .section-theme-lgrey div { color: #444444; }

.section-theme-dblue { background-color: #1C3A13; }
.section-theme-dblue h1, .section-theme-dblue h2, .section-theme-dblue h3, .section-theme-dblue h4, .section-theme-dblue h5, .section-theme-dblue h6 { color: #ffffff; }
.section-theme-dblue p, .section-theme-dblue li, .section-theme-dblue span, .section-theme-dblue div, .section-theme-dblue .content { color: #ffffff; }
.section-theme-dblue a { color: #e2b368; }
.section-theme-dblue a:hover { color: #ffffff; }


/*Materials Section*/
section.material-sec { padding: 15px 0; position: relative; }
section.material-sec .container {padding: 0 0;}
section.material-sec .bg_overlay { position: absolute; top: 0; width: 100%; height: 100%; left: 0; }
section.material-sec .material-wrapper { display: flex; flex-wrap: wrap; }
section.material-sec .material-wrapper .material-col-left { width: 100%; padding: 40px;position: relative; }
section.material-sec .material-wrapper .material-col-left h5 { color:unset;font-size: 16px; margin-bottom: 9px; font-weight:400;text-transform:uppercase;}
section.material-sec .material-wrapper .material-col-left h2 { color:unset;font-size: 25px; line-height: 35px; margin: 0 0 20px; }
section.material-sec .material-wrapper .material-col-left p {font-size:18px;line-height: 24px;}
section.material-sec .material-wrapper .material-col-left .mm-img { text-align: center; margin-top: 40px; }
section.material-sec .material-wrapper .material-col-right { width: 100%; padding: 40px; }
section.material-sec .material-wrapper .material-col-right.plain-bg {padding:15px;}
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box {position:relative;padding:15px; display: flex; flex-direction: column;margin-bottom: 30px; }
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box.overlay-image {min-height:266px;}
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box.overlay-image:before {    background: rgba(255,255,255, 0.1);position: absolute; top: 0; left: 0; content: ""; width: 100%; height: 100%; transition: all ease .3s;}
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box.overlay-image .mm-type{padding:10px;background-color:#ffffff;}
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box.overlay-image .mb-link{padding:10px;background-color:#ffffff;}
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box a{ z-index:33;font-weight:500;margin-top:auto; margin-bottom: 10px; color:#1C3A13;border-bottom:2px solid #1C3A13;width:fit-content }
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box a:hover {color:#333;border-color:#333;}
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box:last-child { margin-right: 0; }
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box h4 { z-index:33;font-weight: 500;font-size: 28px; line-height: 33px;}
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box .mm-type { z-index:33;}
section.material-sec .material-wrapper .material-col-right .material-boxs .material-box p { font-size:16px;line-height:18px;z-index:33;color: #222222; line-height: 24px; margin: 0; }




/*Staircase Icons*/
section#staircases_sec { padding: 33px 0; background-color:#f9f9f9;}
section#staircases_sec .textarea > h3 { text-align: center; color: #000000; margin-bottom: 80px; }
section#staircases_sec .textarea {display: flex; flex-direction: row-reverse;align-items: center; align-content: center;}
section#staircases_sec .textarea .staircases-wrap { display: flex; justify-content: space-between; }
section#staircases_sec .textarea .staircases-wrap .staircase-list {width:32%;background-color:white}
section#staircases_sec .textarea .staircases-wrap .staircase-list:last-child { margin-right: 0; }
section#staircases_sec .textarea .staircases-wrap .staircase-list .splash-icon img {width: 100%; max-height: 90px;transition:all 0.3s ease;}
section#staircases_sec .textarea .staircases-wrap .staircase-list .splash-icon:hover {background-color:#333;}
section#staircases_sec .textarea .staircases-wrap .staircase-list .splash-icon:hover img {filter: invert(0.90);}
section#staircases_sec .textarea .staircases-wrap .staircase-list .splash-icon {transition:all 0.3s ease;display: flex; align-items: center; justify-content: center; margin: 0 auto; padding: 20px; width: 133px; height: 133px;border: 2px solid #333;}
section#staircases_sec .textarea .staircases-wrap .staircase-list .splash-content { text-align: center; }
section#staircases_sec .textarea .staircases-wrap .staircase-list .splash-content h5{ margin-bottom:0px;}
section#staircases_sec .textarea .staircases-wrap .staircase-list .splash-content p { color: #bfbfbf; margin: 0 0 28px; }
section#staircases_sec .textarea .staircases-wrap .staircase-list .splash-content a.btn { color: #1C3A13; }
section#staircases_sec .textarea .staircases-wrap .staircase-list .splash-content a.btn:hover { color: #000000; }
section#staircases_sec .textarea .staircase-choice {flex:1;padding:60px;}



/*SINGLE BLOG POST*/
.single-post .post-thumbnail { background-position: center!important;min-height: 400px; display: flex; align-items: flex-end; background-size: cover !important; margin-bottom: 80px; position: relative; }
.single-post .post-thumbnail:before { position: absolute; top: 0; content: ""; background: linear-gradient(0deg, #000000 -2%, rgba(0, 0, 0, 0.0001) 102%); width: 100%; height: 100%; }
.single-post .post-thumbnail .post-category { background: rgba(255, 255, 255, 0.6); display: inline-block; border-radius: 30px; padding: 12px 30px; color: #333333; font-weight: 600; font-size: 18px; }
.single-post .post-thumbnail .post-category a { color: #333333; }
.single-post .post-thumbnail .post-category a:hover { color: #095f3d; }
.single-post .post-thumbnail .post-category span { margin-right: 20px; }
.single-post .post-thumbnail h1 { color: #ffffff; font-size: 48px; line-height: 58px; margin: 30px 0 80px 0; }
section.related-post { display: block; background: #FAFBFC; padding: 50px 0; }
section.related-post .title-wrapper h2 { font-size: 40px; line-height: 55px; margin-bottom: 0; }
section.related-post ul.post-container { padding: 0; }
section.related-post ul.post-container li.post { list-style: none; }
section.related-post ul.post-container li.post .post-thumbnail { min-height: 400px; margin-bottom: 0; }
section.related-post ul.post-container li.post .post-thumbnail:before { display: none; }
section.related-post ul.post-container li.post:hover { box-shadow: 0px 50px 77px rgba(176, 183, 195, 0.22); }
section.related-post ul.post-container li.post .post-wrapper { padding: 30px; border-radius: 15px; border: 2px solid #FAFBFC; }
section.related-post ul.post-container li.post .post-wrapper a.readmore { font-weight: 600; color: #e2b368; }
.blog-content-wrapper > .container, .page-content-wrapper > .container { display: flex; flex-wrap: wrap; }
.page-content-wrapper .container {padding:0 20px;}
.page-content-wrapper .container .container {padding:0 0;}
.page-content-wrapper .container .container h2 {margin-top:32px;}
.blog-content-wrapper .container .info-widget li, .page-content-wrapper .container .info-widget li {font-size:16px;}
.blog-content-wrapper .container .info-widget li:not(:last-child), .page-content-wrapper .container .info-widget li:not(:last-child) {padding:5px 0px;border-bottom:1px solid #ddd;}
.blog-content-wrapper .container .sidebar-content-area {order: 2;width: 100%; margin: 10px 10px 0px 0px; padding: 15px;height: fit-content;}
.blog-content-wrapper .container .blog-content-area {order:1;width: 100%;}
.page-content-wrapper .container .page-content-area {order: 0; border-radius: 4px; box-shadow: rgb(0 0 0 / 5%) 0px 0px 0px 1px, rgb(241 243 245) 0px 5px 20px 0px, rgb(0 0 0 / 5%) 0px 3px 3px 0px; padding: 30px; word-break: break-word;rder:1;width: 100%;background-color: #fff; }
.page-content-wrapper .container .page-content-area h1 {font-size:36px;line-height: 46px;}
.page-content-wrapper {padding-top:30px;background-color: #FAFAFA;}
.page-content-wrapper section.text_block {padding-left:0px;background-color: #ffffff;}
.sidebar-content-area ul {padding-left:0px;}
.blog-content-wrapper .container .sidebar-content-area h4.widgettitle, .page-content-wrapper .container .sidebar-content-area h4.widgettitle  { font-size: 20px; text-decoration-line: underline; font-weight: 600; }
.blog-content-wrapper .container .sidebar-content-area .share_icons ul.social-share, .page-content-wrapper .container .sidebar-content-area .share_icons ul.social-share { max-width:233px;padding: 0; margin: 0 0 30px 0; display: flex; justify-content: space-between; }
.blog-content-wrapper .container .sidebar-content-area .share_icons ul.social-share li, .page-content-wrapper .container .sidebar-content-area .share_icons ul.social-share li { list-style: none; }
.blog-content-wrapper .container .sidebar-content-area .share_icons ul.social-share li a, .page-content-wrapper .container .sidebar-content-area .share_icons ul.social-share li a { color: #B0B7C3; }
.blog-content-wrapper .container .sidebar-content-area .share_icons ul.social-share li a:hover, .page-content-wrapper .container .sidebar-content-area .share_icons ul.social-share li a:hover {color: #E75A7C;}
.blog-content-wrapper .container .sidebar-content-area .widget_recent_entries ul, .page-content-wrapper .container .sidebar-content-area .widget_recent_entries ul { padding: 0; margin: 0; }
.blog-content-wrapper .container .sidebar-content-area .widget_recent_entries ul li, .page-content-wrapper .container .sidebar-content-area .widget_recent_entries ul li{ list-style: none; margin-bottom: 10px; }
 .blog-content-wrapper .container .sidebar-content-area .widget_recent_entries ul li:last-child, .page-content-wrapper .container .sidebar-content-area .widget_recent_entries ul li:last-child{ margin-bottom: 0; }
.blog-content-wrapper .container .sidebar-content-area .widget_recent_entries ul li a, .page-content-wrapper .container .sidebar-content-area .widget_recent_entries ul li a { font-weight: 600; font-size: 18px; color: #1C3A13; }
.blog-content-wrapper .container .sidebar-content-area .widget_recent_entries ul li a:hover, .page-content-wrapper .container .sidebar-content-area .widget_recent_entries ul li a:hover { color: #e2b368; }
.blog-content-wrapper .container .blog-content-area .share_icons, .page-content-wrapper .container .blog-content-area .share_icons { display: block; border: 2px solid #FAFBFC; border-radius: 15px; padding: 30px; margin-top: 50px; width: 100%; }
.blog-content-wrapper .container .blog-content-area .share_icons h2.widgettitle, .page-content-wrapper .container .page-content-area .share_icons h2.widgettitle { margin: 0 0 20px 0; font-weight: 600; font-size: 20px; width: 100%; text-align: center; }
.blog-content-wrapper .container .blog-content-area .share_icons ul.social-share, .page-content-wrapper .container .page-content-area .share_icons ul.social-share { padding: 0; margin: 0; width: 100%; display: flex; justify-content: space-between; }
.blog-content-wrapper .container .blog-content-area .share_icons ul.social-share li, .page-content-wrapper .container .page-content-area .share_icons ul.social-share li { list-style: none; margin-right: 5%; }
.blog-content-wrapper .container .blog-content-area .share_icons ul.social-share li a, .page-content-wrapper .container .page-content-area .share_icons ul.social-share li a { color: #B0B7C3; font-size: 20px; }
.blog-content-wrapper .container .blog-content-area .share_icons ul.social-share li:last-child, .page-content-wrapper .container .page-content-area .share_icons ul.social-share li:last-child { margin-right: 0; }
.page_banner { min-height: 300px; display: flex; align-items: flex-end; background-size: cover !important; margin-bottom: 80px; position: relative; }
.page_banner:before { position: absolute; top: 0; content: ""; background: linear-gradient(0deg, #000000 -2%, rgba(0, 0, 0, 0.0001) 102%); width: 100%; height: 100%; }
.page_banner h2 { color: #ffffff; font-size: 48px; line-height: 58px; margin: 30px 0 80px 0; }
.info-widget li {list-style:none;}
.info-widget li.current_page_item a {padding-right:20px;}
.info-widget li a:after {font: 18px fontawesome; content: "\f105"; left: 13px; position: relative;opacity:0;transition : all 0.3s;}
.info-widget li.current_page_item a:after{opacity:1;color: #e2b368;}
.info-widget li a:hover:after {opacity:1;color: #1C3A13;}
.info-widget li a:hover {color: #1C3A13;}
.info-widget li.current_page_item:hover:after , .info-widget  li.current_page_item:hover a{color:#e2b368!important;}
.info-widget h4 {text-decoration:underline;margin: 25px 0 5px;}
.info-title {width:100%;}
.page-content-wrapper .container .sidebar-content-area {order: 2;width: 100%; margin: 0px 10px 0px 0px; padding: 15px; background-color: #f9f9f9; height: fit-content;}

/*Tab Sections*/
section.home_tabs { padding: 50px 0; }
section.home_tabs .tab-container .tab-anchors { border-bottom: 1px solid #eff3f6; margin-bottom: 40px; }
section.home_tabs .tab-container .tab-anchors a { color: #000000; font-size: 15px; line-height: 20px; font-weight: bold; position: relative; display: block; margin-bottom: 30px; }
section.home_tabs .tab-container .tab-anchors a.active:after,
section.home_tabs .tab-container .tab-anchors a:hover:after { background: #1C3A13; content: ""; left: 0; width: 100%; height: 4px; position: absolute; bottom: -8px; }
section.home_tabs .tab-container ul { margin: 0; padding: 0; }
section.home_tabs .tab-container ul li .content-area { margin-bottom: 50px; }
section.home_tabs .tab-container ul li .content-area:last-child { margin-bottom: 0; }

/*Recent Posts*/
section.ideas-inspitation-sec{ background: #f5f5f5; padding: 120px 0; }
section.ideas-inspitation-sec .textarea > h3 { text-align: center; margin-bottom: 90px; }
section.ideas-inspitation-sec .recent-post-wrapper { display: flex; justify-content: space-between; flex-wrap: wrap; }
section.ideas-inspitation-sec .recent-post-wrapper .recent-post { margin-bottom: 40px; }
section.ideas-inspitation-sec .recent-post-wrapper .recent-post:last-child { margin: 0; }
section.ideas-inspitation-sec .recent-post-wrapper .recent-post .thumbnail a { position: relative; display: block; width: fit-content; line-height: 0; }
section.ideas-inspitation-sec .recent-post-wrapper .recent-post .thumbnail a:hover:after { width: 100%; height: 100%; position: absolute; top: 0; left: 0; content: ""; background: rgba(0, 0, 0, 0.4); }
section.ideas-inspitation-sec .recent-post-wrapper .recent-post .thumbnail a:hover:before { position: absolute; top: 50%; left: 0; right: 0; margin: 0 auto; transform: translateY(-50%); content: "\f105"; font: normal normal normal 35px/45px FontAwesome; background: #1C3A13; width: 50px; height: 50px; color: #ffffff; text-align: center; z-index: 1; }
section.ideas-inspitation-sec .recent-post-wrapper .recent-post .thumbnail a img { width: 100%; }
section.ideas-inspitation-sec .recent-post-wrapper .recent-post .content { background: #ffffff; padding: 33px; z-index: 1; position: relative; }
section.ideas-inspitation-sec .recent-post-wrapper .recent-post .content .title a { color: #000000; font-size: 24px; line-height: 24px; margin-bottom: 20px; display: inline-block; }
section.ideas-inspitation-sec .recent-post-wrapper .recent-post .content .except { color: #a8a8a8; }

/*LEFT/RIGHT Section*/
section#leftright_content_sec { padding: 80px 0; }
section#leftright_content_sec .textarea > h3 { text-align: center; margin-bottom: 70px; line-height: 40px; }
section#leftright_content_sec .textarea .leftright-content-wrap .lr-list { display: flex; flex-wrap: wrap; align-items: center; background: #ffffff; }
section#leftright_content_sec .textarea .leftright-content-wrap .lr-list.left_img .lr-content { order: 2; }
section#leftright_content_sec .textarea .leftright-content-wrap .lr-list.left_img .lr-img { order: 1; }
section#leftright_content_sec .textarea .leftright-content-wrap .lr-list.right_img .lr-content { order: 2; }
section#leftright_content_sec .textarea .leftright-content-wrap .lr-list.right_img .lr-img { order: 1; }
section#leftright_content_sec .textarea .leftright-content-wrap .lr-list .lr-content { width: 100%; padding: 30px; }
section#leftright_content_sec .textarea .leftright-content-wrap .lr-list .lr-img { width: 100%; height: 350px; }


/*THIRTY THREE SECTION INTEREST*/
section.thirtythree-sec { padding: 90px 0; position: relative; }
section.thirtythree-sec .bg_overlay { position: absolute; top: 0; width: 100%; height: 100%; left: 0; }
section.thirtythree-sec .thirtythree-wrapper { display: flex; flex-wrap: wrap; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-left .cta-text {z-index:33;position:relative;}
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-left .overlay {top:0;left:0;height: 100%; width: 100%; position: absolute; display: block;background-color:#00000040;}
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-left { width: 100%; padding: 40px; background: #1C3A13; position: relative; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-left h5 { font-size: 14px; color: #ffffff; margin-bottom: 55px; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-left:after {content:""; background-color:black;opacity:0.3;background-size:100%;height:100%;width:100%;}
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-left h2 { color: #ffffff; font-size: 25px; line-height: 35px; margin: 0; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-left .mm-img { margin-top: 40px; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-right { width: 100%; background: #ffffff; padding: 40px; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-right .thirtythree-boxs .thirtythree-box { margin-bottom: 30px; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-right .thirtythree-boxs .thirtythree-box:last-child { margin-right: 0; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-right .thirtythree-boxs .thirtythree-box .mm-type {background-color: #e2b368;
  background-size: 58px 58px;
  background-position: 0px 2px, 4px 35px, 29px 31px, 33px 6px,
  0px 36px, 4px 2px, 29px 6px, 33px 30px;
  background-image:
  linear-gradient(335deg, #4c7ece 23px, transparent 23px),
  linear-gradient(155deg, #4c7ece 23px, transparent 23px),
  linear-gradient(335deg, #4c7ece 23px, transparent 23px),
  linear-gradient(155deg, #4c7ece 10px, transparent 10px),
  linear-gradient(335deg, #4c7ece 10px, transparent 10px),
  linear-gradient(155deg, #4c7ece 10px, transparent 10px);width: 99px; height: 66px; text-align: left; padding: 10px;font-size: 33px; color: #ffffff; font-weight: bold; display: inline-block; line-height: 48px; margin-bottom: 20px; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-right .thirtythree-boxs .thirtythree-box h4 { font-size: 16px; line-height: 22px; color: #000000; }
section.thirtythree-sec .thirtythree-wrapper .thirtythree-col-right .thirtythree-boxs .thirtythree-box p { color: #666666; line-height: 24px; margin: 0; }


/*BLOG ARCHIVE*/
.blog-content-area { display: block; }
.blog-content-area .post-wrapper { width: 100%; margin-right: 0; margin-bottom: 9%; transition: 0.3s all; }
.blog-content-area .post-wrapper:nth-child(3n) { margin-right: 0; }
.blog-content-area .post-wrapper .post-thumbnail img {width: 100%;}
.blog-content-area .post-wrapper .blog-content { padding: 50px 30px 30px 30px; border: 2px solid #FAFBFC; }
.blog-content-area .post-wrapper .blog-content h2 { margin-bottom: 30px; }
.blog-content-area .post-wrapper .blog-content .excerpt { font-weight: 600; font-size: 18px; line-height: 30px; color: #333; }
.blog-content-area .post-wrapper .blog-content a.readmore { font-weight: 600; font-size: 20px; line-height: 24px; margin-top: 40px; display: inline-block; color: #e2b368; position: relative; }
.blog-content-area .post-wrapper .blog-content a.readmore:after { position: absolute; content: "\f105"; right: -30px; font: 18px fontawesome; top: 50%; transform: translateY(-50%); }
.blog-content-area .post-wrapper .blog-content a.readmore:hover { color: #000000; }
.page-navi { text-align: center; }
.page-navi span.page-numbers.current { color: #e2b368; margin-right: 1%; }
.page-navi a.page-numbers { color: #1C3A13; margin-right: 1%; }
.page-navi a.page-numbers:hover { color: #e2b368; }

/*ARCHIVE PAGE*/
.archive .page_banner .post-category { background: rgba(255, 255, 255, 0.6); display: inline-block; border-radius: 30px; padding: 12px 30px; color: #333333; font-weight: 600; font-size: 18px; }
.archive .page_banner .post-category a { color: #333333; }
.archive .page_banner .post-category a:hover { color: #095f3d; }
.archive .page_banner h1 { color: #ffffff; font-size: 48px; line-height: 58px; margin: 30px 0 80px 0; }

section.image_with_content h2 { text-align: center; margin: 0 0 30px; }
section.image_with_content ul { padding: 0; margin: 0; list-style: none; }
section.image_with_content ul li { display: flex; flex-wrap: wrap; margin: 0 0 30px; align-items: center; justify-content: space-between;}
section.image_with_content ul li:last-child {margin: 0;}
section.image_with_content ul li.right .img-row { order: 1; }
section.image_with_content ul li.right .con-row { order: 2;  margin-top: 20px; padding: 40px;}
section.image_with_content ul li.left .img-row { order: 1; }
section.image_with_content ul li.left .con-row { order: 2; margin-top: 20px; padding: 40px;}
section.image_with_content ul li .img-row .img { height: 100%; position: absolute; top: 0; width: 100%; }
section.image_with_content ul li .img-row { position: relative; width: 100%; }
section.image_with_content ul li ul.icon-text {width: 95%; display: flex; flex-wrap: wrap; flex-direction: row; align-content: flex-start;}
section.image_with_content ul li ul.icon-text li {margin: 0 0 10px; vertical-align: middle; display: flex; width: 45%; max-width: 300px;}
section.image_with_content ul li ul.icon-text li img{height: 80px; width: 80px; padding: 10px;}
section.image_with_content ul li ul.icon-text li p{flex: 1; padding: 10px; margin: 0 0;}

/*custom Staircase Order*/
.custom-staircase .gravity-theme {padding:33px;background-color:#f9f9f9;}

/*Stair ID - Staircase Designer*/

.stairid .staircase-designer-visual {width: 60%; padding: 10px;}
.stairid .sd_text .container .gravity-theme {width:40%;padding:20px;}
.stairid .sd_text .container .staircase-designer {width:60%;padding:20px;}

/*SD Text - Centre max width*/
section.sd_text[style*="text-align: center"] .container { max-width: 900px; }
.staircase-type .gfield_radio .gchoice { float:left; margin:0 15px 5px 0; width:103px; height:100px; position:relative; }

.staircase-type .gfield_radio .gchoice label, .staircase-type .gfield_radio .gchoice input { font-size: 14px; line-height: 16px;display:block; position:absolute; top:0; left:0; right:0; bottom:0; }
.staircase-type .gfield_radio .gchoice label:before {content:"";height:55px;width:55px;margin: 0 auto;display:block;background-size:contain;background-position:center center;background-repeat:no-repeat;}
.staircase-type .gfield_radio .gchoice input[type="radio"] { opacity:0.011; z-index:100; }

.staircase-type .gfield_radio .gchoice:nth-child(1) label:before {background-image:url(/wp-content/uploads/2021/12/straight-staircase.svg);}
.staircase-type .gfield_radio .gchoice:nth-child(2) label:before {background-image:url(/wp-content/uploads/2021/12/single-winder.svg);}
.staircase-type .gfield_radio .gchoice:nth-child(3) label:before {background-image:url(/wp-content/uploads/2021/12/double-winder.svg)}
.staircase-type .gfield_radio .gchoice:nth-child(4) label:before {background-image:url(/wp-content/uploads/2021/12/quarter-landing.svg)}
.staircase-type .gfield_radio .gchoice:nth-child(5) label:before {background-image:url(/wp-content/uploads/2021/12/half-landing.svg)}

.staircase-designer-visual .sticky.stuck {position: fixed; top: 15px; display: block; width: auto; float: revert; margin-right: 10px; }
.staircase-designer-visual .sticky.bottom {position:absolute;bottom:0;}
.sticky svg {height:fit-content;border-bottom: 5px solid #1C3A13;width:100%;}
.sticky h4 {padding: 10px; background-color: #1C3A13; color: white; margin-bottom: 0px; max-width: 600px;}
.sticky .stairs-info {color:#1C3A13;padding:10px;width: inherit;max-width:600px;}

.staircase-wrapper .container {padding:0;display:flex;justify-content: space-between}

.staircase-type .gfield_radio .gchoice input[type="radio"]:checked + label {
  background:#F7F2EF;border-color:#1C3A13;
}

.staircase-type .gfield_radio .gchoice label {
   padding:5px;
   border:2px solid #ccc; 
   cursor:pointer;
  z-index:90;
  max-width: 100%!important;
  text-align: center;
  height: auto;
}

.gform_wrapper.gravity-theme h3 {margin-bottom:0px;}
.grecaptcha-badge {z-index:3;}

.regs-notice p {font-size:16px;line-height:20px;}

.staircase-type .gfield_radio .gchoice label:hover {
   background:#efefef;
}

/*Google Maops*/
.acf-map {width: 100%; height: 333px;}
section.map-address-sec .acf-map {max-width: 533px;}
section.map-address-sec { margin: 100px 0; }
section.map-address-sec .textarea { display: flex; align-items: start; flex-wrap: wrap; justify-content:space-between; }
section.map-address-sec .textarea .acf-map { margin-bottom: 10%; }



section.content-two-col-sec{margin: 66px 0;}
section.content-two-col-sec .two-col-wrapper { display: flex; flex-wrap: wrap; }
section.content-two-col-sec .two-col-wrapper .two-col-wrap { margin-bottom: 5%; margin-top:3%; }
section.content-two-col-sec .two-col-wrapper .two-col-wrap:last-child { margin-right: 0; }
section.content-two-col-sec .two-col-wrapper .two-col-wrap.light_color { display: flex; align-items: center; flex-wrap: wrap; padding: 30px;min-width:333px; }
section.content-two-col-sec .two-col-wrapper .two-col-wrap.light_color h4 { color: #ffffff; }
section.content-two-col-sec .two-col-wrapper .two-col-wrap.content_center { text-align: center; }
section.content-two-col-sec .two-col-wrapper .two-col-wrap.light_color p { color: #ffffff; }
section.content-two-col-sec .two-col-wrapper .two-col-wrap.light_color a.btn-link { color: #1C3A13; }


.page-content-area section.content-two-col-sec{margin: 0;}

/*Gravity Form Fields*/
input[type=checkbox] {
  position: relative;
  top: -0.375rem;
  margin: 25px 5px 0px 0px;
  cursor: pointer;
}



input[type=checkbox]:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: rotate(-45deg) scale(0, 0);
  -moz-transform: rotate(-45deg) scale(0, 0);
  -ms-transform: rotate(-45deg) scale(0, 0);
  -o-transform: rotate(-45deg) scale(0, 0);
  transform: rotate(-45deg) scale(0, 0);
  content: "";
  position: absolute;
  left: 0.1875rem;
  top: 0.125rem;
  z-index: 1;
  width: 0.75rem;
  height: 0.375rem;
  border: 2px solid #e2b368;
  border-top-style: none;
  border-right-style: none;
}
input[type=checkbox]:checked:before {
  -webkit-transform: rotate(-45deg) scale(1, 1);
  -moz-transform: rotate(-45deg) scale(1, 1);
  -ms-transform: rotate(-45deg) scale(1, 1);
  -o-transform: rotate(-45deg) scale(1, 1);
  transform: rotate(-45deg) scale(1, 1);
}
input[type=checkbox]:after {
  content: "";
  position: absolute;
  top: -0.125rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 2px solid #f2f2f2;
  cursor: pointer;
}

input[type=radio] {
  position: relative;
  margin: 0 1rem 0 0;
  cursor: pointer;
}
input[type=radio]:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
  -webkit-transform: scale(0, 0);
  -moz-transform: scale(0, 0);
  -ms-transform: scale(0, 0);
  -o-transform: scale(0, 0);
  transform: scale(0, 0);
  content: "";
  position: absolute;
  top: 0;
  left: 0.125rem;
  z-index: 1;
  width: 0.75rem;
  height: 0.75rem;
  background: #e2b368;
  border-radius: 50%;
}
input[type=radio]:checked:before {
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
input[type=radio]:after {
  content: "";
  position: absolute;
  top: -0.25rem;
  left: -0.125rem;
  width: 1rem;
  height: 1rem;
  background: #fff;
  border: 2px solid #f2f2f2;
  border-radius: 50%;
}

.gfield-choice-input {width:0;margin-top: 26px!important; margin-right: 26px!important;}

.buttons-box { display: flex; width: 100%; float: left; margin: 20px 0 0; align-items: center; justify-content: center; }
.buttons-box a { color: #e2b368; font-size: 18px; font-weight: 700; border: 2px solid #e2b368; display: inline-block; padding: 12px 30px 12px 30px; margin-bottom: 30px; position: relative; }
.buttons-box a:hover { background: #e2b368; color: #ffffff; }
.buttons-box .load-less { margin-left: 20px; }
.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover { border-color: #e2b368 !important; }
.lg-progress-bar .lg-progress { background-color: #e2b368 !important;}




/*Top Bar*/
.top_bar { background: #f7f2ef; padding: 5px 0; }
.top_bar .container { display: flex; justify-content:space-between; text-align: center; }
.top_bar .container ul.social_icons { padding: 0; margin-bottom:0px; display: flex; align-items: center; justify-content: center;}
.top_bar .container ul.social_icons li { list-style: none; margin-right: 10px; }
.top_bar .container ul.social_icons li:last-child{margin: 0;}
.top_bar .container ul.social_icons li a { color: #444444; width: 25px; height: 25px; display: inline-block;}
.top_bar .container ul.social_icons li a:hover { color: #e2b368; }
.top_bar .container a { color: #444444; display: block;font-family:'raleway' }
.top_bar .container a:hover{ color: #e2b368; }
.top_bar .container a.number {display: inline-block; position: relative; }
/*.top_bar .container a.number:before { position: absolute; content: ""; left: 0; background: url(images/just-phone.svg) no-repeat; width: 20px; height: 20px; top: 50%; transform: translateY(-50%); }
*/




/*Title Content Image New*/
section.title_content_image_new .fluid_container { display: flex; flex-wrap: wrap; }
section.title_content_image_new .left-area { width: 100%; }
section.title_content_image_new .left-area .slider.owl-carousel, section.title_content_image_new .left-area .slider.owl-carousel .owl-stage-outer, section.title_content_image_new .left-area .slider.owl-carousel .owl-stage-outer .owl-stage, section.title_content_image_new .left-area .slider.owl-carousel .owl-stage-outer .owl-stage .owl-item.active, .owl-item.active .item {height:100%;}
section.title_content_image_new .left-area .owl-dots {display: none;}
section.title_content_image_new .left-area .owl-carousel .item { min-height: 350px; }
section.title_content_image_new .left-area .owl-nav { position: absolute; right:0px;bottom:0px; color: #ffffff; padding:20px;background-color:#1C3A13;}
section.title_content_image_new .left-area .owl-nav button.owl-prev { margin-right: 20px; }
section.title_content_image_new .left-area .owl-nav button i { font-size: 25px; }
section.title_content_image_new .right-area { background: #1C3A13; padding: 30px;width:100%;}
section.title_content_image_new .right-area h1 { width:100%;max-width:525px;color: #ffffff; }
section.title_content_image_new .right-area p { max-width:525px;color: #ffffff; font-size: 20px; font-weight: 300; line-height: 28px;}
section.title_content_image_new .right-area ul { max-width:525px;padding: 0; margin: 23px 0 0; display: flex; flex-wrap: wrap;font-size:18px;line-height:20px;}
section.title_content_image_new .small_con p {letter-spacing:0.6px;font-size:16px;line-height:22px;font-family: 'Raleway'; font-weight: 400;}
section.title_content_image_new .right-area ul li { list-style: none; }
section.title_content_image_new .right-area ul li:last-child { margin-top: 23px; }
section.title_content_image_new .right-area ul li:nth-child(2) a {padding-bottom: 2px !important; padding-top: 12px !important; }
section.title_content_image_new .right-area ul li a {font-family:raleway; min-height: 44px ; color: #1C3A13; font-size: 18px; background-color: #e2b368; font-weight: 500; display: inline-block; padding: 8px 26px ; margin-bottom: 20px ; position: relative;}
section.title_content_image_new .right-area ul li a:hover { background: #335983; border-color:white;color:white;}


/*Choose Us Section*/
section.choos_us {padding-top:20px;}
section.choos_us .cu_inner .cu_title{display:flex;margin-bottom: 40px;font-family: 'Raleway'; font-weight: 500;}
section.choos_us .cu_inner .cu_img_con ul { padding: 0; margin: 0; font-family: 'Raleway'; font-weight: 400;}
section.choos_us .cu_inner .cu_img_con ul li { justify-content:center;display: flex; align-items: center; list-style: none; margin-bottom: 30px;}
section.choos_us .cu_inner .cu_img_con ul li img { width: 40px; }
section.choos_us .cu_inner .cu_img_con ul li span { color: #000000; margin: 0 0 0 10px; }
section.choos_us .cu_inner .cu_img_con ul { display: flex; align-items: center; flex-wrap: wrap; }
section.choos_us .cu_inner .cu_img_con ul li { padding:10px; width: 50%; margin-bottom:0px;}


/*Video With Content*/
section.video_with_content .container_fluide { display: flex; flex-wrap: wrap; }
section.video_with_content .container_fluide .video_box { width: 100%; min-height: 350px; position: relative; }
section.video_with_content .container_fluide .cont_box { padding: 30px; }
section.video_with_content .container_fluide .cont_box h2, section.video_with_content .container_fluide .cont_box .content, section.video_with_content .container_fluide .cont_box .pointers {width:100%;}

section.video_with_content .container_fluide.rg_side .video_box { order: 2; }
section.video_with_content .container_fluide.rg_side .cont_box { order: 1;display:flex;flex-wrap: wrap;justify-content: end;}
section.video_with_content .container_fluide .video_box a.fancy_anchor { left: 0; right: 0; position: absolute; margin: 0 auto; text-align: center; top: 50%; transform: translateY(-50%); background: #36B37E; display: inline-block; width: 70px; height: 70px; line-height: 70px; color: #ffffff; border-radius: 50%; font-size: 25px; }
section.video_with_content .container_fluide .cont_box .content { padding-bottom: 33px; position: relative; }
section.video_with_content .container_fluide .cont_box .content:after { background: #dddddd; width: 300px; height: 1px; position: absolute; content: ""; bottom: 0; }
section.video_with_content .container_fluide .cont_box ul.pointers { padding: 0; margin: 13px 0 0; }
section.video_with_content .container_fluide .cont_box ul.pointers li { list-style: none; margin-top: 23px; position: relative;}
section.video_with_content .container_fluide .cont_box ul.pointers li ul li {list-style: disc;width:100%;font-size:16px;font-weight:400;margin-top:9px;}
section.video_with_content .container_fluide .cont_box ul.pointers li ul {padding-left: 23px;}
section.video_with_content .container_fluide .cont_box ul.pointers li h4 {font-weight:300;font-size:20px;}
section.video_with_content .container_fluide .cont_box ul.pointers li:nth-child(2n) { margin-right: 0; }
section.video_with_content .container_fluide .cont_box ul.pointers li img {height:40px;margin-bottom: 13px ; width: auto; }


section.video_with_content {margin:0;}
section.video_with_content .container { display: flex; flex-wrap: wrap; padding: 33px; margin: 33px auto; background-color: #f9f9f9;}
section.video_with_content .container h2,
section.video_with_content .container h3,
section.video_with_content .container h4,
section.video_with_content .container h5,
section.video_with_content .container h6 { color: #1C3A13; }
section.video_with_content .container p,
section.video_with_content .container li,
section.video_with_content .container span,
section.video_with_content .container div { color: #444444; }
section.video_with_content .container .video_box { width: 100%; min-height: 350px; position: relative; }
section.video_with_content .container .cont_box { padding: 30px; }
section.video_with_content .container .cont_box h2, .pointers {width:100%;max-width:533px;}
section.video_with_content .container.lf_side .video_box, section.video_with_content .container.rg_side .video_box { order: 2; }
section.video_with_content .container.rg_side .cont_box { order: 1;display:flex;flex-wrap: wrap;}
section.video_with_content .container .video_box a.fancy_anchor { left: 0; right: 0; position: absolute; margin: 0 auto; text-align: center; top: 50%; transform: translateY(-50%); background: #36B37E; display: inline-block; width: 70px; height: 70px; line-height: 70px; color: #ffffff; border-radius: 50%; font-size: 25px; }
section.video_with_content .container .cont_box .content { padding-bottom: 33px; position: relative; }
section.video_with_content .container .cont_box .content:after { background: #dddddd; width: 300px; height: 1px; position: absolute; content: ""; bottom: 0; }
section.video_with_content .container .cont_box ul.pointers { padding: 0; margin: 13px 0 0; }
section.video_with_content .container .cont_box ul.pointers p {font-size:16px;line-height:20px;}
section.video_with_content .container .cont_box ul.pointers li { list-style: none; margin-top: 23px; position: relative;}
section.video_with_content .container .cont_box ul.pointers li ul li {list-style: disc;width:100%;font-size:16px;font-weight:400;margin-top:9px;}
section.video_with_content .container .cont_box ul.pointers li ul {padding-left: 23px;}
section.video_with_content .container .cont_box ul.pointers li h4 {font-weight:300;font-size:20px;}
section.video_with_content .container .cont_box ul.pointers li:nth-child(2n) { margin-right: 0; }
section.video_with_content .container .cont_box ul.pointers li img {height:40px;margin-bottom: 13px ; width: auto; }



/*Flexible Methode*/
section.flexible_methode { padding: 30px 0; }
section.flexible_methode .container { display: flex; flex-wrap: wrap; align-items: center; }
section.flexible_methode .container .content_area { background: #ffffff; order: 2; }
section.flexible_methode .container .content_area p {margin-bottom:33px;}
section.flexible_methode .container .image_area { width: 100%; height: 350px; order: 1; margin-bottom: 40px; }
section.flexible_methode .container .content_area ul.repeater { padding: 0; margin: 30px 0; display: flex; flex-wrap: wrap; }
section.flexible_methode .container .content_area ul.repeater li { font-family:raleway;list-style: none; width: 48%; margin-right: 4%; margin-bottom: 4%; font-weight: 400; color: #1A1A1F; position: relative;}
section.flexible_methode .container .content_area ul.repeater li:nth-child(2n) { margin-right: 0; }
section.flexible_methode .container .content_area a.read-more , section.image_with_content ul li.left .con-row a{ background: #1A1A1F; color: #ffffff; display: inline-block; padding: 10px 40px; font-weight: 400; }
section.flexible_methode .container .content_area a.read-more:hover , section.image_with_content ul li.left .con-row a:hover{ background: #36B37E; }


/*Quarter Landing*/
section.quarter_landing { min-height: 700px; position: relative; margin: 0; }
section.quarter_landing .inner_box { position: absolute; right: 0; bottom: 0; background: #222222bd;padding: 45px;width:100%; }
section.quarter_landing .inner_box h3 { color: #fff; font-size: 20px; text-transform: uppercase; line-height:28px;}
section.quarter_landing .inner_box h1 { color: #fff; font-size: 33px;}
section.quarter_landing .inner_box p{ color: #ffffff; }
section.quarter_landing .inner_box .content {flex-flow:row wrap; display:flex;}
section.quarter_landing .inner_box .content h3 {width:80%; margin-top: 27px;margin-bottom:0px;padding-right:20px;display:inline-block;text-transform:none; }
section.quarter_landing .inner_box a.quarter_btn {letter-spacing: 1px;height:fit-content;width:53%;color: #ffffff; font-size: 18px; font-weight: 400; border: 2px solid #e2b368; display: inline-block; padding: 9px 20px 9px 12px; margin-top: 33px; position: relative; background: #e2b368;}
section.quarter_landing .inner_box a.quarter_btn:after{font: 15px fontawesome; content: "\f178"; right: 15px; position: absolute; top: 50%; transform: translateY(-50%);}
section.quarter_landing .inner_box a.quarter_btn:hover { background: transparent; }

/*Quarter Landing - Full Width Option*/
section.quarter_landing.quarter_landing--full_width { overflow: hidden; }
section.quarter_landing.quarter_landing--full_width .inner_box { width: 100%; position: absolute; right: 0; bottom: 0; left: 0; }
section.quarter_landing.quarter_landing--full_width .inner_box .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; flex-wrap: wrap; align-items: start; }
section.quarter_landing.quarter_landing--full_width .inner_box .container .left_area { width: 50%; margin: 0 2%; margin-bottom: 50px; }
section.quarter_landing.quarter_landing--full_width .inner_box .container .right_area { width: 46%; }
section.quarter_landing.quarter_landing--full_width .inner_box .container .right_area p { color: #ffffff; }
section.quarter_landing.quarter_landing--full_width .inner_box .container .right_area .quarter_btn { margin-top: 50px; }

/*Quarter Landing - Boxed Option (right-aligned)*/
section.quarter_landing.quarter_landing--boxed .container { display: flex; justify-content: flex-end; }
section.quarter_landing.quarter_landing--boxed .inner_box { width: 50%; position: absolute; right: 0; bottom: 0; }

/*Quarter Landing - Left Aligned Option*/
section.quarter_landing.quarter_landing--left .container { display: flex; justify-content: flex-start; }
section.quarter_landing.quarter_landing--left .inner_box { width: 50%; position: absolute; left: 0; bottom: 0; }



/*Large CTA*/
section.large_cta { padding: 50px 0; position: relative; display: flex; align-items: center; margin-top: 0; margin-bottom: 0; }
section.large_cta:after { background: rgba(0, 0, 0, 0.4); position: absolute; top: 0; left: 0; content: ""; width: 100%; height: 100%; }
.overlay-image:before { background: rgba(255,255,255, 0.8); position: absolute; top: 0; left: 0; content: ""; width: 100%; height: 100%; transition:all ease .3s;}
.overlay-image:hover:before {background: rgba(255,255,255, 0.3);}
section.large_cta .container { z-index: 1;}
section.large_cta .container .left_area{margin-bottom: 50px;}
section.large_cta .container .left_area h2.heading { margin: 0; color: #ffffff; }
section.large_cta .container .right_area p { color: #ffffff; }
section.large_cta .container .right_area a.large_btn {font-family:raleway;background: #ffffff; color: #333333; font-size: 18px; font-weight: 700; border: 2px solid #ffffff; display: inline-block; padding: 15px 50px 15px 30px; margin-top: 50px; position: relative;}
section.large_cta .container .right_area a.large_btn:after{font: 15px fontawesome; content: "\f178"; right: 20px; position: absolute; top: 50%; transform: translateY(-50%);}
section.large_cta .container .right_area a.large_btn:hover { background: transparent; color: #ffffff; }



/*Small CTA*/
section.small_cta { padding: 15px 0; position: relative; display: flex; align-items: center; margin-top: 0; margin-bottom: 0; }
section.small_cta:after { background: rgba(0, 0, 0, 0.4); position: absolute; top: 0; left: 0; content: ""; width: 100%; height: 100%; }
section.small_cta .container { z-index: 1;align-items:center;display: flex; flex-wrap: wrap;}
section.small_cta .container .left_area{width:55%;margin:0 4% 0 2%;}
section.small_cta .container .left_area h3.heading { margin: 0; color: #ffffff; font-size:28px;line-height: 33px;}
section.small_cta .container .right_area p { color: #ffffff; }
section.small_cta .container .right_area a.large_btn {font-family:raleway;background: #ffffff; color: #333333; font-size: 18px; font-weight: 700; border: 2px solid #ffffff; display: inline-block; padding: 10px 45px 10px 20px; position: relative;}
section.small_cta .container .right_area a.large_btn:after{font: 15px fontawesome; content: "\f178"; right: 20px; position: absolute; top: 50%; transform: translateY(-50%);}
section.small_cta .container .right_area a.large_btn:hover { background: transparent; color: #ffffff; }

/*Gravity field orientation*/

#input_8_37, #input_8_5, #input_8_63, #input_8_58, #input_8_6 {border: 2px solid #bbbbbb; background-color: #efefef;}
#input_8_37:focus-visible, #input_8_5:focus-visible, #input_8_63:focus-visible, #input_8_58:focus-visible, #input_8_6:focus-visible {outline: 0px solid #bbbbbb;background-color: #efefef;}
.gfield_checkbox {display:flex;flex-wrap: wrap;}
.gfield_checkbox .gchoice {width:47%;}
.gfield_checkbox button {margin-right: 200px;width: 100px;background: #efefef; color: #333; border-bottom: 2px solid #333; padding: 5px;}
.gfield_checkbox button:hover {background:#333;color:#fff;}
.gform_footer input[type=submit] {min-width:133px;min-height: 51px; color: #e2b368; font-size: 18px; background-color: #F7F2EF; font-weight: 500; border-bottom: 3px solid #1C3A13;display: inline-block; padding: 8px 26px 8px 26px; margin-bottom: 20px; position: relative;}
.gform_wrapper.gravity-theme .gfield_label {font-size: 16px!important; font-weight: 500!important;margin-bottom: 5px!important;min-height: 28px;line-height:20px;}
.gf_info .gfield_description {width: fit-content!important; display: inline-block; margin-left: 10px; font-weight: 600;}
.gform_footer input[type=submit]:hover {background: #1C3A13;color: #ffffff;}
.gform_wrapper.gravity-theme .gfield_header_item, .gform_wrapper.gravity-theme .gform_fileupload_rules, .gform_wrapper.gravity-theme .ginput_complex label {font-size:17px!important;font-weight:500;}
.gfield .ginput_container {margin-bottom:15px;}
#gform_6 h3 {font-size:18px!important;}

/*chidpages*/
.childpages {list-style:none;display: flex; flex-flow: row wrap;padding: unset;}
.childpages li {width:33%;padding:20px;}
.childpages li a {display: flex; flex-flow: column;}
.childpages li a h4{order:2;margin-top:15px;}
.childpages li a img {width:100%;order:1;}

/*Preloader*/
.preload{position:fixed;top:0;bottom:0;left:-10%;right:-10%;width:120vw;height:100vh;background-color:#F7F2EF;z-index:9000;transition:all .7s ease-in-out;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;display:flex;justify-content:center;align-items:center}

.preload.loaded{transition-delay:.3s;transform:translate3d(0,120%,0);pointer-events:none}
.transition-fade{transition:.6s ease-in-out;opacity:1;transition-delay:.05s}

html.is-animating .transition-fade{opacity:0}

.preload div {opacity: 1; animation-name:fadeinout;font-size:3em;
  -webkit-animation: pulsate .9s ease-out;
  -webkit-animation-iteration-count: infinite; 
  opacity: 0.5;
}
@-webkit-keyframes pulsate {
  0% { 
      opacity: 0.5;
  }
  50% { 
      opacity: 1.0;
  }
  100% { 
      opacity: 0.5;
  }
}

#field_8_62 {display:none;}