/*
 Theme Name:   Twenty Twenty One Child
 Theme URI:    http://example.com/twenty-twenty-one-child/
 Description:  Twenty Twenty Child Theme
 Author:       John Doe
 Author URI:   http://example.com
 Template:     twentytwentyone
 Version:      1.0.0.1
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  twentyfifteenchild
*/
:root {
    --primary-color: #153848;
    --secondary-color: #9d3000;
	--third-color: #789daf;
    --black: #2C2D37;
    --grey: #f2f2f2;
    --white: #ffffff;
    --primary-font: 'Bilo',sans-serif;
    --secondary-font: 'Larken',serif;
    --third-font: 'Oswald',sans-serif;
    --site-max-width: 120rem;
}
html {
    font-size: 62.5%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}
@media only screen and (min-width: calc(98.1 * 10px)) {
    .mobile-only {
        display: none !important;
    }
}
@media only screen and (max-width: calc(98 * 10px)) {
    .desktop-only {
        display: none !important;
    }
}
/*@media screen and (max-width: 48rem) {
  html {
    font-size: 58%;
  }
}*/
/*----------thme settings--------*/
.entry-content, .entry-summary{
    font-family: inherit;
}
header *, main *, footer *{
    max-width: initial;
}
.site-header, .site-main, .widget-area, .site-footer{
    padding-top: 0rem;
    padding-bottom:0rem;
    width: 100%;
    max-width: inherit;
}
.site-footer{
    z-index: 99;
    position: relative;
}
.site-main > *{
    margin-top:0rem;
    margin-bottom: 0rem;
}
span.edit-link,
header#masthead,
a.skip-link {
    display: none;
}
.site-main > article > *,
.site-main > .not-found > *,
.entry-content > *,
[class*=inner-container] > *,
.wp-block-template-part > *,
.wp-block-post-template :where(li > *){
    width: 100%;
    max-width: 100%;
    margin: 0rem;
}
section{
    max-width: inherit !important;
    margin-left: 0rem !important;
    margin-right: 0rem !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
div {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
footer.entry-footer{
    display: none;
}
select:focus{
    outline-offset: 0;
    outline: 0px;
}
.site .button:focus,
button:focus, input[type=submit]:focus, input[type=reset]:focus, .wp-block-search .wp-block-search__button:focus,
.wp-block-button .wp-block-button__link:focus, .wp-block-file a.wp-block-file__button:focus{
    outline-offset: 0;
    outline: 0px;
}
/*----------eo thme settings--------*/
*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100%;
    color: var(--black);
    font-size: 1.8rem;
    font-family: var(--primary-font);
    background-color: var(--white);
}
#page{
    overflow: hidden;
}
h1, h2, h3, h4{
    line-height: 110%;
    padding-bottom: 2rem;
}
h1, h2 {
    font-family: var(--secondary-font);
    font-weight: 700;
}
h1 {
    font-size: 5rem;
}
h2 {
	color: var(--primary-color);
    font-weight: 600;
    font-size: 4.6rem;
}
h3 {
    font-family: var(--secondary-font);
    text-transform: none;
    font-weight: 500;
    padding-bottom: 1rem;
}
h4 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}
img {
    max-width: 100%;
    height: auto;
}
p {
    padding-bottom: 2rem;    
    font-size: 2.2rem;
    line-height: 140%;

}
a, a:focus{
    text-decoration: none;
}
a:focus{
    outline: inherit !important;
    background: initial !important;
    text-decoration: none !important;
}
a:focus img{
    outline: inherit !important;
}
a:visited {
    color: inherit;
}
ul{
    list-style: disc;
    padding-left: 1.5rem;
}
ol{
    padding-left: 1.5rem;
}
ul li, ol li {
    line-height: 180%;
    font-weight: 400;
}
.dark {
    color: var(--white);
    background-color: var(--primary-color);
}
.grey{
    background-color: var(--grey);
}
::selection {
    background: var(--secondary-color);
    color: var(--black);
}
/* ------------------ Gradient Layout on Hero ------------------*/
section[class*="overlay-"] {
    position: relative;
}
section[class*="overlay-"]:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    z-index: 1;
}
section[class*="overlay-"] > * {
    z-index: 2 !important;
    position: relative;
}
.overlay-color:before {
    background: var(--primary-color);
}
.overlay-dark:before {
    background: var(--black);
}
/* ------------------ EO Gradient Layout on Hero ------------------*/
/* Menu Style */
.nav ul {
    list-style: none;
}
.nav ul li a {
    text-decoration: none;
    position: relative;
}
.nav .navigation-nav > ul {
    display: flex;
    justify-content: flex-end;
}

body.open-menu{
    overflow: hidden;
    position: fixed;
}
body.open-menu .header {
    overflow-x: hidden;
    height: 100vh;
    width: 100%;
    position: fixed;
}
.header {
    position: relative;
    z-index: 999;
}
.header-container{
    background: var(--primary-color);
    border-bottom: solid 0.3rem var(--third-color);
    z-index: 3;
    position: relative;
}
.nav {
    display: flex;
    grid-template-columns: auto 4fr;
    align-items: center;
    max-width: var(--site-max-width);
    margin: auto;
    text-align: right;
    padding: 2rem 0px;
    width: 95%;
    box-sizing: border-box;
    position: relative;
    justify-content: right;
}
.nav .logo-box {
    width: 20rem;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
	box-shadow: 0rem 0.5rem 2rem rgba(0,0,0,0.3);
}
.nav .logo-box a{
    background-color: var(--grey);
    display: block;
    padding: 15px;
}
.nav ul li.contact a {
    color: var(--primary-color);
    font-weight: 600;
}

.logo-mobile{
    display: none;
}


/*--------contact-phone -----------*/
.contact-phone {
    position: absolute;
    right: 1.5rem;
    top: 0;
    padding: 1rem 2rem 1rem 6rem;
    background-color: var(--secondary-color);
    line-height: 2.2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-right: solid 0.1rem var(--white);
    border-bottom: solid 0.1rem var(--white);
    border-left: solid 0.1rem var(--white);
}
.contact-phone > span{
    padding-right: 5px;
}
.contact-phone > span, .contact-phone >a{
    display: inline-block;
    color:#fff;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in; 
    /*padding-top: 10px;*/
    /*padding-bottom: 10px;*/
}
.contact-phone >a:hover{
    opacity: 0.8;
}
/*--------eo contact-phone -----------*/

@media only screen and (min-width: 981px) {
    .nav {
        text-align: right;
        box-sizing: border-box;
        padding-top: 55px;
    }
}
@media only screen and (max-width: 980px) {
    .contact-phone{
        position: relative;
        right: 80px;
    }
}
@media only screen and (max-width: 700px) {
    .contact-phone > span{
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    .contact-phone{
        right: 68px;
    }
    .nav .logo-box a{
        padding: 6px;
    }

}
@media only screen and (max-width: 400px) {
    .contact-phone{
        opacity: 0;
        visibility: hidden;
        z-index: -1;
    }
}

/*--------------Mega menu header---------*/
.menu-listing .learn-more{
    color:var(--black);
    text-transform: inherit;
    padding: 0;
    font-weight:500;
}
.menu-listing .learn-more::after{
    display: inline-block;
    margin-left: 0.5rem;
    content: "\35";
    font-weight: bold;
    text-decoration: none !important;
    transition: all 0.5s;
    font-size: calc(1.8rem - 0.2rem) !important;
    font-weight:600;
    letter-spacing:.1rem;
    font-family: 'ElegantIcons';
}


.menu-listing li button:focus{
    outline: initial;
}
.menu-listing li button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1rem 1.5rem;
    background: transparent !important;
    border: none;
    border-radius: 0rem;
    width: 4rem;
    height: 4rem;
    top: 0.7rem;
    margin: auto;
    right: 2rem;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    transform: none;
    color: var(--white) !important;
    z-index: 9999;
}
.menu-listing li button i::before{
    font-family: eleganticons;
    content:"\4c";
    speak: none;
    font-weight: 700;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-size: 3rem;
    display: inline-block;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    left: 0;
    top: 0;
    position: absolute;
}
.menu-listing li button.active-button i::before{
    transform: rotate(45deg);
}

/*.menu-listing .active-parent-current{
    border-bottom: 1.5px solid #888888;
    margin-bottom: 0;
}*/
.menu-listing>li:last-child.active-parent-current>a{
    border-bottom: 1.5px solid #888888;
}
.menu-listing .active-parent-current + li{
    margin-top: 0rem;
}
.menu-listing > li > a {
    text-decoration: none;
    color: #fff !important;
    padding: 1.5rem;
    text-transform: uppercase;
}
@media only screen and (min-width: calc(98.1 * 10px)) {
    .menu-listing li button{
        display: none;
    }
    .menu-listing > li > a{
        padding-bottom: 4rem;
    }
    .menu-listing > li:hover > a {
        color: var(--primary-color);
    }
    .menu-listing > li > a:active {
        color: var(--primary-color);
    }
    .menu-listing > li.has-children > a {
        padding-right: 2em;
    }
    .menu-listing > li.has-children > a::before {
        content: '\33';
        font-family: 'ElegantIcons';
        font-size: 2.5rem;
        position: absolute;
        right: 1rem;
        top:calc(100% / 2 - 2.5rem);
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        vertical-align: middle;
        -moz-transition: all .3s ease-in;
        -o-transition: all .3s ease-in;
        -webkit-transition: all .3s ease-in;
        transition: all .3s ease-in;
    }
    .menu-listing > li.has-children:hover > a::before{
        transform: rotate(180deg);
    }

    /*.menu-listing > li.has-children:hover > a::after{
        opacity: 1 !important;
    }
    .menu-listing > li.has-children > a::after { 
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        left: 0;
        margin: auto;
        margin-top: 1.5rem;
        display: inline-block;
        background: transparent;
        border-style: solid dashed dashed;
        border-color: transparent;
        font-size: 0;
        border-width: 1rem 1rem 0;
        padding-top: .1rem;
        border-top-color: var(--primary-color);
        opacity: 0;
        width: 0;
        height: 1.5rem;
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
  
    }*/
}
@media only screen and (max-width: calc(125 * 10px)) and (min-width: calc(98.1 * 10px)){
    .menu-listing > li > a{
        padding-bottom: 3rem;
    }
    .menu-listing > li.has-children > a::before{
        top: calc(100% / 2 - 1.9rem);
    }
}

@media only screen and (max-width:calc(48 * 10px)) {
}


.mega-menu{
    padding: 2rem 4rem;
    display: none;
    text-shadow: none;
    background-color: var(--grey);
	box-shadow: 0 0.5rem 2rem rgba(0,0,0,0.3);
}
.menu-listing > li.mega-menu-width .mega-menu{
    width: 100%;
    max-width: var(--site-max-width);
    right: 0;
    text-align: left;
}

.menu-listing li .mega-menu li{
    margin: 0px;
}
.menu-listing li .mega-menu li a{
    color:var(--black);
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    text-align: left;
    display: block;
    padding: .5rem 0;
    text-transform: inherit;
    font-size: inherit;
}
@media only screen and (min-width: calc(48 * 10px)) {
    .mega-menu{
        padding: 2rem 3rem;
    }
}
@media only screen and (min-width: calc(98.1 * 10px)) {
    .mega-menu{
        top: -100rem;
        visibility: hidden;
        opacity: 0;
        left: auto;
        right: auto;
        position: absolute;
        display: block;
        padding: 2rem 2.5rem 2rem 2rem;
        border-top: 0.3rem solid var(--third-color);
    }
    .menu-listing li .mega-menu li a:hover{
        opacity: 0.8;
    }

    .has-children:not(.mega-menu-width) .mega-menu{
        min-width: 20rem;
    }

    .menu-listing > li:hover .mega-menu{
        visibility: visible;
        opacity: 1;
        z-index: 30;
        top: 100%;
        transition-delay: 0.2s;
    }
    .menu .main-nav > li:hover > a::after{
        opacity: 1 !important;
        transition-delay: 0.2s;
    }

}
@media only screen and (max-width: calc(98 * 10px)) {
    .mega-menu{
        max-width: 95% !important;
        margin: auto;
    }
}
@media only screen and (max-width: calc(48 * 10px)) {
    .mega-menu{
        max-width: 90% !important;
    }
}






.mega-menu-row{
    display: block;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.mega-menu-row .mega-menu-column p{
    padding-bottom: 0;
    line-height: 150%;
}
.mega-menu-row .mega-menu-column img{
    margin-bottom: 1rem;
}
@media only screen and (min-width: calc(48.1 * 10px)) {
    .mega-menu-row{
        display: -ms-grid;
        display: grid;
        position: relative;
        width: 100%;
        margin: 0 auto;
        grid-gap: 2rem;
    }
    .mega-menu-column-1{
        -ms-grid-columns: repeat(auto-fit, minmax(min(115rem, 100%), 1fr));
        grid-template-columns: repeat(auto-fit, minmax(min(115rem, 100%), 1fr));
    }
    .mega-menu-column-2{
        -ms-grid-columns: repeat(auto-fit, minmax(min(55rem, 100%), 1fr));
        grid-template-columns: repeat(auto-fit, minmax(min(55rem, 100%), 1fr));
    }
    .mega-menu-column-3{
        -ms-grid-columns: repeat(auto-fit, minmax(min(35rem, 100%), 1fr));
        grid-template-columns: repeat(auto-fit, minmax(min(35rem, 100%), 1fr));
    }
    .mega-menu-column-4{
        -ms-grid-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
        grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
    }
    .mega-menu-column-5{
        -ms-grid-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
        grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
    }
    .mega-menu-column-6{
        -ms-grid-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
        grid-template-columns: repeat(auto-fit, minmax(min(15rem, 100%), 1fr));
    }
}
@media only screen and (max-width: calc(48 * 10px)) {
    .mega-menu-row .mega-menu-column{
        margin-bottom: 1.5rem;
    }
}




/*--------------eo Mega menu header---------*/




/*----------When Open Menu Mobile-----------*/

@-webkit-keyframes animation_menu_mobile {
    0%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
    35%{
        opacity: 0;
    }
    100%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
}
@-moz-keyframes animation_menu_mobile {
    0%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
    35%{
        opacity: 0;
    }
    100%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
}
@keyframes animation_menu_mobile{
    0%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
    35%{
        opacity: 0;
    }
    100%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
}
@-ms-keyframes animation_menu_mobile{
    0%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
    35%{
        opacity: 0;
    }
    100%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
}
@-o-keyframes animation_menu_mobile{
    0%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
    35%{
        opacity: 0;
    }
    100%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
}
/*----------eo When Open Menu Mobile-----------*/

/*----------When close Menu Mobile-----------*/

@-webkit-keyframes animation_menu_mobile_close{
    0%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
    30%{
        opacity: 1;
        visibility: visible;
    }
    50%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
}
@-moz-keyframes animation_menu_mobile_close {
    0%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
    30%{
        opacity: 1;
        visibility: visible;
    }
    50%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
}
@keyframes animation_menu_mobile_close{
    0%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
    30%{
        opacity: 1;
        visibility: visible;
    }
    50%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
}
@-ms-keyframes animation_menu_mobile_close{
    0%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
    30%{
        opacity: 1;
        visibility: visible;
    }
    50%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
}
@-o-keyframes animation_menu_mobile_close{
    0%{
        visibility: visible;
        opacity: 1;
        width:100%;
    }
    30%{
        opacity: 1;
        visibility: visible;
    }
    50%{
        opacity: 0;
        visibility: hidden;
    }
    100%{
        visibility: hidden;
        opacity:0;
        width:0;
    }
}
/*---------eo-When close Menu Mobile-----------*/
@media only screen and (max-width: calc(125 * 10px)) and (min-width: calc(98.1 * 10px)) {
    .nav .logo-box {
        width: 20rem;
    }
}
@media only screen and (max-width: calc(98 * 10px)) {
    .header-container{
        position: absolute;
        width: 100%;
    }

    body.open-menu .navigation-nav {
        -webkit-animation: animation_menu_mobile .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        -moz-animation: animation_menu_mobile .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        -ms-animation: animation_menu_mobile .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        -o-animation: animation_menu_mobile .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        animation: animation_menu_mobile .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    .navigation-nav.animation_close{
        -webkit-animation: animation_menu_mobile_close .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        -moz-animation: animation_menu_mobile_close .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        -ms-animation: animation_menu_mobile_close .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        -o-animation: animation_menu_mobile_close .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
        animation: animation_menu_mobile_close .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    }
    .navigation-nav {
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 9;
        visibility: hidden;
        opacity: 0;
        width: 0;
    }
    .logo-mobile{
        display: block;
        width: 18rem;
        margin:auto;
        position: relative;
        margin-top: 5rem;
    }
    .logo-mobile img{
        width: 100%;
    }

    .menu-listing {
        position: absolute;
        top: 10rem;
        /*      left: 50%;
              transform: translate(-100%, 0%);*/
        list-style: none;
        text-align: left;
        width: 100%;
        display: block !important;
        padding-left: 0rem;
        padding-bottom: 5rem;
    }
    .menu-listing li {
        position: relative;
    }
    .menu-listing > li {
        width: 90%;
        margin: auto;
    }
    .open-menu .menu-listing li a{
        text-indent: 0;
    }
    .menu-listing li a{
        color: var(--black);
        text-indent: 40rem;
        transition: all .8s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        */
    }
    .menu-listing li a:link,
    .menu-listing li a:visited {
        display: inline-block;
        font-size: 2.6rem;
        padding: 1rem 2rem;
        text-decoration: none;
        text-transform: none;
        /*transition: all .4s;*/
        font-weight: 700 !important;
        color: var(--white) !important;
        font-family: var(--secondary-font);
    }
    .menu-listing li a:link span,
    .menu-listing li a:visited span {
        margin-right: 1.5rem;
        display: inline-block;
    }
    .menu-listing li a:hover,
    .menu-listing li a:active {
        background-position: 100%;
        color: #90caf9;
        transform: translateX(1rem);
    }

}
@media only screen and (max-width: 680px) {
    .nav .logo-box {
        width: 14rem;
    }
}
@media only screen and (max-width: calc(48 * 10px)) {

    .menu-listing > li {
        width: 95%;
    }
    .nav .logo-box{
        width:12rem;
    }
    
}

/*----------animation circle mobile menu---------*/
.bg-animation-mobile, .bg-animation-mobile::before{
    display: block;
    height: 4rem;
    width: 4rem;
    border-radius: 50%;
    position: absolute;
}
.bg-animation-mobile{
    left: 1rem;
    top: 1rem;
    right: 3.5rem;
    z-index: 2;
}
.bg-animation-mobile::before{
    content: "";
    display: block;
    transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
    background-color: var(--primary-color);
    background-size: 10%;
}
body.open-menu .bg-animation-mobile::before {
    transform: scale(80);
    position: fixed;
}
@media only screen and (max-width: calc(48 * 10px)) {
    .bg-animation-mobile, .bg-animation-mobile::before{
        height: 3rem;
        width: 3rem;
    }
}
/*----------eo animation circle mobile menu---------*/



/*----------Menu icon mobile---------*/
body.open-menu .btn-menu{
    background-color:var(--secondary-color);
}
.btn-menu {
    height: 6.1rem;
    width: 6.1rem;
    background: var(--secondary-color);
    position: absolute;
    text-align: center;
    cursor: pointer;
    border-radius: 50%;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    z-index: 999;
    box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
}
.btn-menu span.line-1{
    position: relative;
    margin-top: 2.8rem;
}
body.open-menu .btn-menu span.line-1,
body.open-menu .btn-menu span.line-1:before,
body.open-menu .btn-menu span.line-1:after {
    background: var(--white);
}
.btn-menu span.line-1,
.btn-menu span.line-1:before,
.btn-menu span.line-1:after {
    width: 3.3rem;
    background: var(--white);
    height: 0.4rem;
    display: inline-block;
}
.btn-menu span.line-1:before,
.btn-menu span.line-1:after {
    content: '';
    position: absolute;
    left: 0;
    transition: all .2s;
}
.btn-menu span.line-1:before {
    top: -1rem;
}
.btn-menu span.line-1:after {
    top:1rem;
}
body.open-menu .btn-menu span.line-1 {
    background-color: transparent;
}
body.open-menu .btn-menu span.line-1::before {
    top: 0;
    transform: rotate(135deg);
}
body.open-menu .btn-menu span.line-1::after {
    top: 0;
    transform: rotate(-135deg);
}
@media screen and (max-width: calc(98 * 10px)) {
}
@media screen and (max-width: calc(48 * 10px)) {
    .btn-menu{
        height: 5.2rem;
        width: 5.2rem;
    }
    .btn-menu span.line-1 {
        margin-top: 2.4rem;
    }
    .btn-menu span.line-1,
    .btn-menu span.line-1:before,
    .btn-menu span.line-1:after{
        width: 3rem;
    }
    .btn-menu span.line-1:before {
        top: -0.8rem;
    }
    .btn-menu span.line-1:after {
        top: 0.8rem;
    }
}
/*----------eo Menu icon mobile---------*/

/* -------eo Mobile Menu Style -----*/

/*-------block-menu-bg-----------*/
.block-menu-bg{
    height: 6.1rem;
    width: 6.1rem;
    position: absolute;
    right: 0rem;
}
@media screen and (min-width: calc(98.1 * 10px)) {
    .block-menu-bg{
        display: none;
    }
}
@media screen and (max-width: calc(48 * 10px)) {
    .block-menu-bg{
        height: 5.2rem;
        width: 5.2rem;
    }
}
/*-------eo block-menu-bg-----------*/
/*-------site content-----------*/
@media screen and (max-width: calc(98 * 10px)) {
    .site-content{
        padding-top: 83px;
    }
}
@media screen and (max-width: calc(48 * 10px)) {
    .site-content{
        padding-top: 81px;
    }
}

/*-------eo site content-----------*/


/*-----form default--------*/
form label{
    font-size: 1.5rem;
}
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
.site textarea{
    border: solid 0.1rem #999;
    color: #333;
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 0.3rem;
    box-shadow: none !important;
    line-height: 1.8;
    font-size: 1.5rem;
    box-sizing: border-box;
    margin: 0px;
}
.site .button:not(:hover):not(:active):not(.has-background),
button:not(:hover):not(:active):not(.has-background),
input[type=submit]:not(:hover):not(:active):not(.has-background),
input[type=reset]:not(:hover):not(:active):not(.has-background),
.wp-block-search .wp-block-search__button:not(:hover):not(:active):not(.has-background),
.wp-block-button .wp-block-button__link:not(:hover):not(:active):not(.has-background),
.wp-block-file a.wp-block-file__button:not(:hover):not(:active):not(.has-background){
    background-color: var(--primary-color);
    color:var(--secondary-color);
    border:0px !important;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.site .button:hover, .site .button:active,
button:hover, button:active,
input[type=submit]:hover,
input[type=submit]:active, input[type=reset]:hover,
input[type=reset]:active,
.wp-block-search .wp-block-search__button:hover,
.wp-block-search .wp-block-search__button:active,
.wp-block-button .wp-block-button__link:hover,
.wp-block-button .wp-block-button__link:active,
.wp-block-file a.wp-block-file__button:hover,
.wp-block-file a.wp-block-file__button:active{
    background-color: var(--primary-color);
    border-color: inherit !important;
    color:var(--secondary-color);
    opacity: 0.8;
    border:0px !important;
    outline: 0px !important;
}
input:focus-visible, textarea:focus-visible{
    outline: inherit !important;
}
.wpcf7-checkbox .wpcf7-list-item,
.wpcf7-radio .wpcf7-list-item{
    display: block;
    position: relative;
    padding-left: 30px;
    margin-left: 0px;
}
.wpcf7-checkbox .wpcf7-list-item input,
.wpcf7-radio .wpcf7-list-item input{
    display: inline-block;
    position: absolute;
    left: 0;
    top: 9px;
    width: 18px;
    height: 18px;
}
.wpcf7-checkbox .wpcf7-list-item span,
.wpcf7-radio .wpcf7-list-item span{
    display: block;
    color:var(--black);
    vertical-align: middle;
}
/*-----eo form default--------*/
/* Grid Layout */
section {
    padding: 4rem 0rem;
}
/*section:not(.dark, .grey) + section:not(.dark, .grey){
    padding-top: 0rem;
}*/
.full-width-container .container, .full-width-container .container .module{
    display: block;
    max-width: 100%;
    padding: 0;
}
.container {
    display: -ms-grid;
    display: grid;
    position: relative;
    max-width: var(--site-max-width);
    width: 100%;
    margin: 0 auto;
    grid-gap: 0.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.full {
    grid-column: 1 / -1;
}
.center {
    text-align: center;
}
.module {
    padding: 3rem;
    position: relative;
}
header.entry-header {
    display: none;
}
.primary-color-box,
.secondary-color-box,
.black-color-box,
.grey-color-box{
    width: 15rem;
    height: 15rem;
    border-radius: 10%;
    margin-bottom: 1.8rem;
    display: inline-block;
}
.primary-color-box{
    background-color: var(--primary-color);
}
.secondary-color-box{
    background-color: var(--secondary-color);
}
.black-color-box{
    background-color: var(--black);
}
.grey-color-box{
    background-color: var(--grey);
}
.two-column-full-width{
    padding-top: 0rem;
    padding-bottom: 0rem;
}
.two-column-full-width .container{
    grid-gap:0rem;
    padding-left: 0rem;
    padding-right: 0rem;
}
.two-column-full-width .container .module{
    padding: 8rem 5rem;
}
@media screen and (min-width: calc(48 * 10px)) {
    .container-1 {
        -ms-grid-columns: (1fr)[1];
        grid-template-columns: repeat(1, 1fr);
        -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    }
    .container-3 {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
        -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    }
    .container-4 {
        -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
        -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    }
    .container-5 {
        -ms-grid-columns: (1fr)[5];
        grid-template-columns: repeat(5, 1fr);
        -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    }
    .container-6 {
        -ms-grid-columns: (1fr)[6];
        grid-template-columns: repeat(6, 1fr);
        -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    }
    .container-66-33{
        -ms-grid-columns: 2fr 1fr;
        grid-template-columns: 2fr 1fr;
    }
    .container-33-66{
        -ms-grid-columns: 1fr 2fr;
        grid-template-columns: 1fr 2fr;
    }
    .container-75-25{
        -ms-grid-columns: 3fr 1fr;
        grid-template-columns: 3fr 1fr;
    }
    .container-25-75{
        -ms-grid-columns: 1fr 3fr;
        grid-template-columns: 1fr 3fr;
    }
    .container-80-20{
        -ms-grid-columns: 4fr 1fr;
        grid-template-columns: 4fr 1fr;
    }
    .container-20-80{
        -ms-grid-columns: 1fr 4fr;
        grid-template-columns: 1fr 4fr;
    }
}
@media screen and (min-width: calc(98.1 * 10px)) {
    .container-2 {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}
@media only screen and (max-width: calc(125 * 10px)) and (min-width: calc(98.1 * 10px)) {
    .container-5, .container-6 {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
        -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
    }
}
@media only screen and (max-width: calc(98 * 10px)) and (min-width: calc(48 * 10px)) {
    .container-4, .container-5, .container-6 {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
        -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}
@media screen and (max-width: calc(160 * 10px)) {
    .two-column-full-width .container{
        width: 100%;
        max-width: 100%;
    }
}
@media screen and (max-width: calc(98 * 10px)) {
	.two-column-full-width .container{
        width: 100%;
        max-width: 100%;
		display: grid;
    }
    .two-column-full-width .container .module{
        padding:6rem 5rem;
    }
    .left-image .container .module:first-child, .right-image .container .module:last-child{
        min-height: 45rem;
    }
}
@media screen and (max-width: calc(48 * 10px)) {
    .left-image .container .module:first-child, .right-image .container .module:last-child{
        min-height: 30rem;
    }
    .two-column-full-width .container .module{
        padding:4rem 3rem;
    }
}
/* EO Theme CSS */
.nav li a:hover {
    color: var(--primary-color);
}
p.pre-h {
    font-family: var(--third-font);
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.3rem;
    margin-bottom: 1rem;
}
a.read-more {
    text-decoration: none !important;
    transition: all 0.5s;
    position: relative;
    font-weight: bold;
    color: var(--black);
}
a.read-more:after {
    content: '\35';
    font-family: 'ElegantIcons';
    margin: 0rem 0rem 0rem 0.1rem;
    transition: all 0.5s;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    vertical-align: text-bottom;
    font-size: 2.1rem;
}
a.read-more:hover {
    opacity: 0.8;
}
a.read-more:hover:after {
    margin: 0rem 0rem 0rem 0.7rem;
}
.dark a.read-more {
    color: #ffffff;
    border-color: #ffffff;
}
.dark p.pre-h {
    color: var(--white);
}
.dark a,
.dark h1,
.dark h2,
.dark h3,
.dark h4 {
    color: var(--white);
}
.center h3:after,
h3.center:after {
    display: none;
}
.center p {
    text-align: center;
    max-width: 100rem;
    margin: 0 auto;
    width: 100%;
}
.white * {
    color: #ffffff;
}
img.footer-logo {
    display: block;
    width: 25rem;
    margin: 0 auto;
    padding: 2rem;
    max-width: 80%;
    margin-top: -10rem;
    background: #112d3a;
    border-radius: 50% 50% 0 0;
}
.main-footer p, .main-footer a {
    color: white;
    font-size: 1.8rem;
}
/*a.btn:link {
  text-decoration: none;
  color: var(--black);
  background: var(--primary-color);
  font-family: var(--primary-font),sans-serif;
  text-transform: uppercase;
  padding: 1rem 3.5rem;
  font-weight: 500;
  display: inline-block;
  margin-top: 1rem;
}
@media screen and (min-width: calc(48.1 * 10px)) {
  .btn:link {
      display: inline-block;
      vertical-align: middle;
      -webkit-transform: perspective(0.1rem) translateZ(0);
      transform: perspective(0.1rem) translateZ(0);
      box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0);
      position: relative;
      -webkit-transition-property: color;
      transition-property: color;
      -webkit-transition-duration: 0.5s;
      transition-duration: 0.5s;
  }
  .btn:link:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--secondary-color);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .btn:link:hover, .btn:link:focus, .btn:link:active {
    color: var(--black);
  }
  .btn:link:hover:before, .btn:link:focus:before, .btn:link:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  }
}*/
a.btn {
    text-decoration: none !important;
    color: var(--black);
    background: var(--primary-color) !important;
    font-family: var(--secondary-font);
    text-transform: none;
    font-weight: 200 !important;
    padding: 1rem 3.5rem 0.5rem 3.5rem;
    display: inline-block;
    margin-top: 1rem;
	font-size: 1.8rem;
    border: solid 0.2rem var(--primary-color);
	color: var(--white);
}
.secondary-header {
    background: var(--primary-color);
}
.secondary-header-content-container {
    width: var(--site-max-width);
    display: grid;
    margin-inline: auto;
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    padding: 0rem 3.5rem;
}
.secondary-header-content-container .right {
    text-align: right;
}
.secondary-header-content-container p {
    padding: 0;
}
.right {
    grid-column: 2 / 3;
}
.left {
    grid-column: 1 / 2;
}
.dark a.btn {
    background: var(--secondary-color) !important;
    border: solid 0.1rem var(--secondary-color) !important;
    color: var(--white);
	transition: all 0.3s;
}
.dark a.btn:hover {
    border: solid 0.1rem var(--third-color) !important;
}
p a.btn + a.btn {
    background: none !important;
    border: solid 0.1rem;
    border: solid 0.2rem var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 200;
    margin-left: 1.5rem;
}
ul.menu-listing a {
    color: var(--primary-color);
    font-weight: 500;
}



/*
section.video-hero {
    height: 70rem !important;
    overflow: hidden;
	position: relative;
}
section.video-hero video {
    width: 100%;
}
section.video-hero div.video-container {
	margin-top: -20rem;
	width: 100%;
}
section.video-hero {
    padding-block: 0;
}
.video-hero .absolute {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}*/



section.services .module {
    padding: 0;
	overflow: hidden;
}
section.services .container-3 {
    grid-gap: 0.5rem;
}
.services-box {
    height: 30rem;
    position: relative;
	transition: all 0.3s;
}
section.services .content-container {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    z-index: 2;
    color: white;
}
section.services .content-container h3 {
    font-size: 2.5rem;
    padding-bottom: 0rem;
    margin-bottom: -0.6rem;
}
section.services .content-container p {
    padding-bottom: 0;
}


.services-box:before {
    content: '';
    width: 100%;
    display: block;
    position: absolute;
    height: 20rem;
    z-index: 2;
    pointer-events: none;
    bottom: 0;
    z-index: 1;
    background: rgb(21,56,72);
    background: linear-gradient(180deg, rgba(21,56,72,0) 0%, rgba(21,56,72,1) 100%);
}
.dark p.pre-h {
    color: var(--third-color);
}
section.services .module:hover > .services-box {
    transform: scale(1.1);
}
.bathroom .services-box {
    background: url('https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/bathroom.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.carpentry .services-box {
    background: url('https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/carpentry.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.complete-reno .services-box {
    background: url('https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/complete-reno.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.decks .services-box {
    background: url('https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/deck.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.kitchen .services-box {
    background: url('https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/kitchen.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.construction .services-box {
    background: url('https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/new-construction.png');
    background-size: cover;
    background-repeat: no-repeat;
}
/*section.video-hero p.pre-h {
    opacity: 1;
}
section.video-hero.dark {
    background: white;
}*/
ul.mega-menu li {
    padding-left: 5rem;
}
ul.mega-menu li:before {
    content: '';
    display: block;
    width: 4rem;
    height: 4rem;
    position: absolute;
    transform: translateX(-5rem);
	transition: all 0.3s;
}
ul.mega-menu li.bathroom:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/bathroom-icon.png);
}
ul.mega-menu li.kitchen:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/kitchen-icon.png);
}
ul.mega-menu li.reno:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/drill-icon.png);
}
ul.mega-menu li.construct:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/house-icon.png);
}
ul.mega-menu li.decks:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/wooden-icon.png);
}
ul.mega-menu li.carpentry:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/hammer-icon.png);
}
ul.mega-menu li.bathroom:hover:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/bathroom-icon-orange.png);
}
ul.mega-menu li.kitchen:hover:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/kitchen-icon-orange.png);
}
ul.mega-menu li.reno:hover:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/drill-icon-orange.png);
}
ul.mega-menu li.construct:hover:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/house-icon-orange.png);
}
ul.mega-menu li.decks:hover:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/wooden-icon-orange.png);
}
ul.mega-menu li.carpentry:hover:before {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/hammer-icon-orange.png);
}
section.internal-hero {
    background: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/tools-white.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
}
section.internal-hero {
    padding-block: 5rem;
}
section.thin {
    padding-block: 0;
}
section.thin div.module {
    padding: 1rem;
}
.icon-section p {
	font-size: 1.8rem !important;
}
ul.mega-menu li.bathroom a:hover, ul.mega-menu li.kitchen a:hover, ul.mega-menu li.reno a:hover, ul.mega-menu li.construct a:hover, ul.mega-menu li.decks a:hover, ul.mega-menu li.carpentry a:hover {
    color: var(--secondary-color) !important;
}
ul.menu-listing li a:hover {
    color: var(--third-color)!important;
}
.lordicon-container {
    transform: translateX(-1.5rem);
    margin-bottom: 1rem;
}
.phone-lordicon {
    position: absolute;
    transform: translate(-4.5rem,-1rem);
}
.dark a.btn {
    background: var(--primary-color);
    border: solid 0.1rem var(--primary-color);
    color: var(--white);
}
.dark a.btn + a.btn {
    color: var(--white);
    border: solid 0.1rem var(--white);
}
.section-video-hero p.pre-h {
	color: var(--white);
}
.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}
span.swiper-pagination-bullet {
    background: var(--third-color) !important;
    border: solid 0.5rem;
}
img.testimonial-image {
    width: 10rem !important;
	max-width: 100%;
    display: block;
    margin-inline: auto;
    border: solid 0.3rem var(--third-color);
    margin-top: 1rem;
}
.section-video-hero p a.btn:first-of-type {
    background: var(--primary-color) !important;
    border: solid 0.1rem var(--primary-color) !important;
    color: var(--white);
}
.section-video-hero p a.btn:last-of-type {
    border: solid 0.1rem var(--white) !important;
    color: var(--white);
}
.image-module:after {
    content: '';
    display: block;
    background: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/08/true-north-ruler-light-blue.png);
    width: 99%;
    height: 2rem;
    position: absolute;
    background-size: contain;
}
.image-module.image-module-1:after {
    bottom: 0;
    left: 0;
    transform: translateY(3rem);
}
.image-module.image-module-2:after {
    top: 0;
    right: 0;
    transform: translateY(-3rem) rotate(180deg);
}
section.dark {
    background-image: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/08/wood-grain-texture-blue-bg.svg);
	background-size: contain;
    background-repeat: repeat;
}
section.section-video-hero.dark {
    background-image: none;
}
footer#colophon {
    background: #112d3a;
}
ul.checks {
    list-style: none;
    padding-left: 4rem;
    padding-bottom: 2rem;
}
ul.checks li {
    padding-bottom: 0.6rem;
}
ul.checks li:before {
    content: "\4e";
    position: absolute;
    font-family: 'elegantIcons';
    transform: translateX(-2.6rem);
    color: var(--white);
}
.cta h3 {
    font-size: 2.4rem;
    margin-top: 1rem;
}
.contact-icon.phone-icon {
    margin-bottom: 1.5rem;
}
.form-module h3 {
    margin-bottom: 1rem;
}
section.where-we-serve p {
    width: 60rem;
    max-width: 100%;
}
section.internal-hero p:last-of-type {
    padding-bottom: 0;
}
ul.custom-icons {
    list-style: none;
    padding-left: 5.5rem;
    margin-bottom: 2rem;
}
ul.custom-icons li:before {
    content: '';
    width: 4rem;
    height: 4rem;
    display: block;
    position: absolute;
    background: red;
    transform: translate(-5rem,-0.5rem);
}
ul.custom-icons li {
    padding-bottom: 1rem;
}
ul.custom-icons li.detail:before {
    background: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/08/ruler-icon-white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
ul.custom-icons li.materials:before {
    background: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/08/wood-icon-white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
ul.custom-icons li.custom:before {
    background: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/08/drill-icon-white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
ul.custom-icons li.team:before {
    background: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/08/team-icon-white.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
section.cta img.state-map {
    width: 40rem;
    max-width: 100%;
}
.cta input.wpcf7-submit {
    background: var(--secondary-color) !important;
    font-family: var( --secondary-font);
    font-size: 1.8rem;
    color: var( --white) !important;
    padding: 1rem 3.5rem 0.6rem 3.5rem;
}
.choose-section .lordicon-container {
    transform: none;
}
section.modern-kitchen {
    background: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/08/modern-kitchen.jpg);
    background-position: center;
    min-height: 80rem;
}
section.modern-kitchen .module:not(.desktop-only) {
    background: var(--white);
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
}
section.modern-kitchen .module p:last-of-type {
    padding-bottom: 0;
}
section.cta-page {
    padding-bottom: 10rem;
}
img.michael-square {
    border: solid 0.3rem var(--primary-color);
    outline: solid 0.1rem rgba(255,255,255,0.3);
    outline-offset: -1.5rem;
}
.image-row .module {
    padding: 0.5rem;
}
.image-row img {
    object-fit: cover;
    aspect-ratio: 1 / 1;
}
section.section-video-hero * {
    text-shadow: 0rem 0rem 2rem rgba(0,0,0,0.7);
}
.before-after-section .module {
    padding: 1rem;
}
.nav .logo-box a:active, .nav .logo-box a:focus {
    background: var(--grey) !important;
}
section.section-video-hero {
    background: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/08/saw-still.jpg) !important;
    background-size: cover !important;
    background-position: center !important;
}
.sub-about h3 {
    font-size: 2.8rem;
    margin-top: 2rem;
    padding-bottom: 0.3rem;
}
.lordicon-overwrite .lordicon-container {
    transform: none;
}
.customizegrace-wrapper:after {
    content: 'Drag arrows to view before and after photos';
    display: block;
    text-align: center;
    margin-top: -2.5rem;
	font-family: var(--primary-font);
}
.privacy ul li {
    line-height: 180%;
    font-weight: 400;
    font-family: var(--primary-font);
    font-size: 2.2rem !important;
    margin-left: 1.5rem;
}
.privacy ul {
    padding-bottom: 2.5rem;
}
.privacy h2 {
    font-size: 4rem;
    margin-top: 1rem;
    padding-bottom: 1rem;
}
section.thank-you {
	min-height: 70vh;
}
.default {
	border: solid 0.3rem var(--primary-color);
    outline: solid 0.1rem rgba(255, 255, 255, 0.3);
    outline-offset: -1.5rem;
}
.team-img {
	aspect-ratio: 1.5 / 1;
    object-fit: cover;
}
.center-v {
	align-items: center;
}
.team-photos img {
    aspect-ratio: 1 / 1.4;
    object-fit: cover;
}
p.team-name {
    font-family: var(--secondary-font);
    font-size: 2.6rem;
    margin-top: 1rem;
    color: var(--primary-color);
    padding-bottom: 0;
}
p.team-title {
    padding-bottom: 1rem;
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
}



@media screen and (min-width: 1400px) {
    .ruler-lines:before {
        content: '';
        position: absolute;
        height: 99%;
        width: 2.5rem;
        background: url(https://truenorthbuilders-tn.com/wp-content/uploads/2023/07/true-north-ruler.png);
        transform: translate(-2rem,0.3rem);
        background-size: contain;
        background-repeat: repeat;
        background-position: top right;
    }
    p.pre-h.line:before {
        content: '';
        width: 50rem;
        height: 0.3rem;
        display: block;
        background: var(--secondary-color);
        position: absolute;
        left: 0;
        top: 0;
        transform: translate(-51rem,1rem);
    }
    .module.offset-left {
        transform: translateX(-8rem);
    }
}

@media screen and (min-width: calc(48.1 * 10px)) {
    a.btn{
        vertical-align: middle;
        -webkit-transform: perspective(0.1rem) translateZ(0);
        transform: perspective(0.1rem) translateZ(0);
        box-shadow: 0 0 0.1rem rgba(0, 0, 0, 0);
        position: relative;
        -webkit-transition-property: color;
        transition-property: color;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
    }
    a.btn:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--third-color);
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }
	a.btn-2:before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--secondary-color);
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: 0 50%;
        transform-origin: 0 50%;
        -webkit-transition-property: transform;
        transition-property: transform;
        -webkit-transition-duration: 0.5s;
        transition-duration: 0.5s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }
    a.btn:hover, a.btn:focus, a.btn:active {
        color: var(--white);
		border: solid 0.2rem var(--third-color);
		transition: all 0.3s;
    }
	a.btn-2:hover, a.btn-2:focus, a.btn-2:active {
        color: var(--white) !important;
		border: solid 0.2rem var(--secondary-color);
		transition: all 0.3s;
    }
    .btn:hover:before, a.btn:focus:before, a.btn:active:before {
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
        transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    }
}
@media screen and (max-width: calc(98 * 10px)) {
	.reverse.container {
		display: grid;
	}
    .reverse > .module:first-of-type {
        order: 2;
    }
    .container.logo-grid {
        grid-template-rows: 12rem;
        grid-template-columns: 50% 50%;
    }
    .container.logo-grid .module {
        padding: 1rem;
    }
    .secondary-header{
        display: none;
    }
    .secondary-header-content-container {
        grid-template-columns: 1fr;
    }
    .secondary-header-content-container .right, .secondary-header-content-container .left {
        text-align: center;
        grid-column: 1 / 3 !important;
    }
	section.internal-hero {
		padding-top: 30rem;
	}
	.contact-phone {
		padding: 1rem 2rem !important;
		border: none;
	}
	.contact-phone .phone-lordicon {
		display: none;
	}
	p a.btn + a.btn {
		margin-left: 0;
	}
	section.icon-section .container {
		display: grid;
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
	#services .ruler-lines div.module {
		margin-bottom: 2rem;
	}
	section.cta {
		padding-bottom: 10rem;
	}
	ul.mega-menu li.bathroom a, ul.mega-menu li.kitchen a, ul.mega-menu li.reno a, ul.mega-menu li.construct a, ul.mega-menu li.decks a, ul.mega-menu li.carpentry a {
		color: var(--primary-coor)!important;
	}
	.container.image-row {
		display: grid;
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr);
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
	section.choose-section div.module:not(.full) {
		padding-block: 0.5rem;
	}
	.header-container {
		background: var(--grey);
		border-bottom: solid 0.3rem var(--grey);
	}
	.header-container .logo-box {
		box-shadow: none;
	}
}
/*------------eo general-----------*/
/*------sidebar--------*/
#sidebar section{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
/*------eo sidebar--------*/
/*------------------------------ pagination blog --------------------------------*/
.pagination .nav-links > a{
    color: var(--primary-color);
    text-decoration: none;
}
.pagination .nav-links  .page-numbers.dots:hover{
    background-color: transparent;
    color: var(--dark);
}
.pagination .nav-links  .page-numbers.current{
    background-color: var(--grey);
    color: var(--primary-color);
}
.pagination .nav-links .page-numbers:hover{
    background: var(--primary-color);
    color: var(--grey);
}
.pagination .nav-links .prev.page-numbers,
.pagination .nav-links .next.page-numbers{
    line-height: initial;
    padding-top: 2rem;
    display: flex;
    text-decoration: none;
}
.pagination .nav-links .prev.page-numbers:hover,
.pagination .nav-links .next.page-numbers:hover{
    background-color: transparent;
    color: var(--primary-color);
}
.pagination .nav-links .prev.page-numbers .svg-icon,
.pagination .nav-links .next.page-numbers .svg-icon{
    opacity: 0;
}
.pagination .nav-links .prev.page-numbers:hover .svg-icon,
.pagination .nav-links .next.page-numbers:hover .svg-icon{
    opacity: 1;
}
.pagination .nav-links {
    margin-left: 0;
    padding: 0;
    margin: auto;
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
}
.pagination .nav-links>*{
    text-align: center;
    font-weight: bold;
}
.archive .pagination,
.blog-post-mention .pagination{
    margin-top: 2rem;
}
nav.pagination{
    width: 100%;
    max-width: 100%;
    border-top: 0rem;
}
@media only screen and (min-width: calc(76.9 * 10px)) {
    .pagination .nav-links > *, .pagination .nav-links .prev.page-numbers, .pagination .nav-links .next.page-numbers {
        padding: 1rem;
    }
}
@media only screen and (max-width: calc(76.8 * 10px)) {
    .pagination .nav-links .prev.page-numbers .svg-icon,
    .pagination .nav-links .next.page-numbers .svg-icon {
        opacity: 1;
    }
    .pagination .nav-links .prev.page-numbers,
    .pagination .nav-links .next.page-numbers{
        padding: calc(.5 * 1rem);
    }
}
/*------eo pagination blog---------------*/

/* Footer Design */
.main-footer p {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
footer {
    background: var(--primary-color);
    padding-right: 2.5rem;
    padding-left: 2.5rem;
    padding-bottom: 2.5rem;
}
footer a {
    text-decoration: none;
    color: var(--black);
    font-weight: 600;
}
/* eo Footer Design */
/*----------form recaptcha--------------*/
.catpcha-wrapper{
    display: block;
    margin:auto;
    text-align: center;
    margin-bottom:2rem;
}
.catpcha-wrapper .cf7sr-g-recaptcha{
    display: inline-block;
}
@media only screen and (max-width: calc(48 * 10px)) {
    .catpcha-wrapper .cf7sr-g-recaptcha{
        transform: scale(0.8);
        transform-origin: top left;
    }
}
@media only screen and (max-width: calc(32 * 10px)) {
    .catpcha-wrapper{
        margin-bottom: 0rem;
    }
    .catpcha-wrapper .cf7sr-g-recaptcha{
        transform: scale(0.78);
    }
}
/*----------eo form recaptcha--------------*/
/*------------------------------ BO Blog --------------------------------*/
.post-listing-section .container-3 {
    -ms-grid-columns: repeat(auto-fit, minmax(min(38rem, 100%), 1fr));
    grid-template-columns: repeat(auto-fit, minmax(min(38rem, 100%), 1fr));
}
.post-listing-section .module {
    padding:2rem;
}
.post-listing-section h2.entry-title{
    font-size: 3.5rem;
    padding-bottom: 1.5rem;
}
.post-listing-section a{
    text-decoration: none !important;
}
.post-listing-section .entry-featured-image-url {
    display: block;
    position: relative;
}
.post-listing-section .entry-featured-image-url img{
    opacity: 0;
}
.pagination {
    clear: both;
}
a.entry-featured-image-url{
    display: block;
    height: 34rem;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.post-listing-section .post-meta{
    padding-bottom: 1.5rem;
}
.post-meta .icon_calendar{
    margin-right: 1rem;
}
article .entry-featured-image-url img {
    opacity: 0;
}
.wrapper-article{
    display: block;
    border:0.1rem solid var(--grey);
}
.summary-article{
    padding: 2rem;
}
.excerpt-post{
    padding-bottom: 1rem;
}
@media(max-width: calc(98 * 10px)){
    .post-listing-section article{
        min-height: inherit;
    }
}
@media only screen and (max-width: calc(76.8 * 10px)) {
    .post-listing-section article {
        width: 100%;
    }
    .post-listing-section a.entry-featured-image-url{
        height: auto !important;
    }
}
/*------------------------------ EO blog CSS --------------------------------*/
/* ------------------ Single Custom Block CSS ------------------*/
.single-post .container{
    max-width: 130rem;
}
.content-single-section{
    padding-top: 6rem;
}
.content-single-section .mention-information{
    padding: 1rem 0rem;
}
.content-single-section .mention-information span{
    display: inline-block;
    margin-top: 0.5rem;
    margin-right: 1rem;
}
.content-single-section h2.entry-title{
    font-weight: 600;
    font-size: 4rem;
    margin-top: 3rem;
    padding-bottom: 0rem;
}
.breadcrumbs-single{
    list-style-type: none;
}
.breadcrumbs-single li{
    display: inline-block;
    vertical-align: middle;
}
.breadcrumbs-single li a{
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    transition: all 0.5s;
}
.breadcrumbs-single li a:hover{
    opacity: 0.7;
}
.breadcrumbs-single li a:after {
    content: '\35';
    font-family: 'ElegantIcons';
    margin: 0rem 0rem 0rem 0.1rem;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 900;
    vertical-align: text-bottom;
    font-size: 2.1rem;
}
@media only screen and (max-width: calc(76.8 * 10px)) {
    .hero-single-section .container,
    .content-single-section .container-66-33{
        -ms-grid-columns: 100%;
        grid-template-columns: 100%;
        padding: 0rem;
    }
}
/* ------------------ EO Single Custom Block CSS ------------------*/

/*------------------------------Video Background --------------------------------*/

.video-hero-full-width {
    object-fit: cover;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 100.1%;
    z-index: 1;
}
.section-video-hero * {
    box-sizing: border-box;
}

.section-video-hero .container {
    position: relative;
    z-index: 3;
}
.section-video-hero {
    position: relative;
}

.section-video-hero p.pre-h{
    opacity: 1;
}
@media screen and (min-width: 981px) {
    .section-video-hero{
        padding-top: 180px;
        padding-bottom: 180px;
    }
}
@media only screen and (min-width: 981px) {

    
}
@media only screen and (max-width: 980px) {
    .section-video-hero::before{
        content:"";
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
        pointer-events: none;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        -webkit-box-sizing: border-box;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-font-smoothing: antialiased;
    }
}
@media only screen and (max-width: 480px) {

}
/*------------------------------EO Video Background --------------------------------*/


/*-------block animation------*/
@-webkit-keyframes fadeRight{
    0% {
        opacity: 0;
        transform: translateX(-10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-moz-keyframes fadeRight{
    0% {
        opacity: 0;
        transform: translateX(-10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-ms-keyframes fadeRight{
    0% {
        opacity: 0;
        transform: translateX(-10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-o-keyframes fadeRight{
    0% {
        opacity: 0;
        transform: translateX(-10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeRight{
    0% {
        opacity: 0;
        transform: translateX(-10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}



@-webkit-keyframes fadeLeft{
    0% {
        opacity: 0;
        transform: translateX(10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-moz-keyframes fadeLeft{
    0% {
        opacity: 0;
        transform: translateX(10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-ms-keyframes fadeLeft{
    0% {
        opacity: 0;
        transform: translateX(10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@-o-keyframes fadeLeft{
    0% {
        opacity: 0;
        transform: translateX(10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeLeft{
    0% {
        opacity: 0;
        transform: translateX(10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeDown{
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@-moz-keyframes fadeDown{
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@-ms-keyframes fadeDown{
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@-o-keyframes fadeDown{
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown{
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


@-webkit-keyframes fadeUp{
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@-moz-keyframes fadeUp{
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@-ms-keyframes fadeUp{
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@-o-keyframes fadeUp{
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeUp{
    0% {
        opacity: 0;
        transform: translateY(10%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

*[class*="fade-"]{
    opacity: 0;
}

.fade-right.element-animation{
    opacity: 1;
    -webkit-animation: fadeRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: fadeRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: fadeRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    animation: fadeRight 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
}
.fade-left.element-animation{
    opacity: 1;
    -webkit-animation: fadeLeft 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: fadeLeft 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: fadeLeft 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    animation: fadeLeft 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
}
.fade-down.element-animation{
    opacity: 1;
    -webkit-animation: fadeDown 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: fadeDown 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: fadeDown 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    animation: fadeDown 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
}
.fade-up.element-animation{
    opacity: 1;
    -webkit-animation: fadeUp 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: fadeUp 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: fadeUp 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
    animation: fadeUp 1s 1 cubic-bezier(0.77, 0, 0.175, 1);
}



/*-------block animation------*/

@media only screen and (max-width: 480px){
    .container{
        display: block;
    }
}

/*---------Testimonial Section----------------*/
.wrap-testimonial{
    padding: 0 4rem;
    position: relative;
    max-width: initial;
}
.swiper-slide {
    text-align: left;
    font-size: 1.8rem;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: baseline;
}
.modal-image-wrapper .swiper-slide{
    background:transparent;
}
a.toggle-read-more {
    color: var(--third-color) !important;
    font-size: 1.6rem;
    font-weight: 600;
    display: block;
}
p.testimonial-text {
    padding-bottom: 0.5rem;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper.swiper-testimonials {
    padding: 3rem 2rem;
    width: 100%;
    /* cursor: grab; */
}
.swiper-testimonials .quote {
    top: 0.3rem;
    left: 0.3rem;
}
.swiper-button-next, .swiper-button-prev{
    background-color: var(--primary-color);
    border-radius: 50%;
    width: 3.6rem !important;
    height: 3.6rem !important;
    opacity: 0.8;
    color: var(--secondary-color) !important;
}
.swiper-button-next{
    right: 0 !important;
}

.swiper-button-prev{
    left: 0 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 1.6rem !important;
    font-weight: 900;
    color: var(--white);
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction{
    bottom: -0.7rem !important;
}


.testimonial-box {
    padding: 2.5rem;
    border-radius: 0;
    background-color: var(--primary-color);
	border: solid 0.3rem var(--third-color);
}
.testimonial-box * {
    color: var(--white);
}
p.star-list {
    text-align: center;
    padding-bottom: 1rem;
}
p.star-list span {
    margin-inline: 0.2rem;
    color: var(--third-color);
}
p.name {
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    padding-bottom: 0;
	margin-top: 1rem;
}
p.title {
    text-align: right;
    padding-bottom: 0;
    font-size: calc(1em - .2rem);
    font-style: italic;
}
.quote {
    background: var(--secondary-color);
    border-radius: 0;
    padding: 1.2rem;
    width: 6rem;
    position: absolute;
    transform: translate(-2rem, -2rem);
    animation: 2s ease-in-out infinite alternate quoteFloat;
}
@keyframes quoteFloat {
    from {
        transform: translate(-2rem, -2rem) rotate(1deg);
    }
    to {
        transform: translate(-2rem, -3rem) rotate(-5deg);
    }
}

.swiper-css-mode>.swiper-wrapper{
    overflow:visible !important;
}
@media screen and (min-width: calc(98.1 * 10px)) {
    .swiper.swiper-testimonials {
        padding: 3rem 4rem;
    }
}

@media screen and (max-width: calc(98 * 10px)) {
    .wrap-testimonial {
        padding: 0 1rem !important;
        position: relative;
    }
    .swiper-button-prev {
        left: -1.4rem !important;
    }
    .swiper-button-next{
        right: -1.4rem !important;
    }
    .wrap-testimonial .swiper-button-prev{
        left: -1rem !important;
        display: none !important;
    }
    .wrap-testimonial .swiper-button-next{
        right: -1rem !important;
        display: none !important;
    }
}
@media only screen and (max-width: calc(48 * 10px)){

    .testimonial-section .container{
        max-width: 100%;
        display: block;
    }
    .testimonial-section .container .module{
        padding:1rem;
    }
}
/*---------eo Testimonial Section----------------*/

/*----------Gallery Section --------------*/
section.gallery-section h2 {
    margin-bottom: 2rem;
}
section.gallery-section{
    padding: 10rem 0;
    position:relative;
}
section.gallery-section img {
    transition: all 0.3s;
}
section.gallery-section img:hover {
    opacity: 0.8;
    transform: scale(1.01);
    box-shadow: 0rem 0.5rem 1rem rgb(0 0 0 / 30%);
}

.gallery-section .swiper-button-next{
    right: 10px!important;
}

.gallery-section .swiper-button-prev{
    left: 10px!important;
}

/*--------eo Gallery Section --------------*/

/*---------fancybox---------*/
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    border-width: 0.3rem !important;
    border-color: var(--secondary-color) !important;
}
.fancybox__toolbar .carousel__button {
    margin-inline: 0.6rem;
}
.has-image .fancybox__content{
    padding: 0;
    background: rgba(0,0,0,0);
    min-height: 1px;
}
.carousel__button svg{
    filter: initial !important;
}
/*---------eo fancybox---------*/


/***********single css*************/
img.blog-featured {
    padding: 1rem;
    background: var(--grey);
    margin: auto;
    display: block;
    width: 80rem;
}

.single h1.entry-title {
    color: var(--primary-color);
    margin-top: 2rem;
    padding-bottom: 0;
    font-size: 4.6rem !important;
    text-align: center;
    font-weight: 500;
    max-width: 80rem !important;
    margin-inline: auto;
    text-transform: initial;
}

.single .mention-information {
    text-align: center;
    margin-top: 1rem;
    padding-bottom: 2.5rem !important;
    margin-bottom: 2.5rem;
    border-bottom: solid 0.1rem #dddddd;
}

.single section {
    padding: 5rem 0rem;
}

.single .hero-single-section h2{
    text-transform: initial;
    font-weight: initial;
}

.single .widget h2 ,
.single .widget h3 {
    font-size: 2.2rem;
}

.sidebar-form {
    padding: 2rem;
    background: var(--grey);
    border-radius: 0 0 1rem 1rem;
    border-top: solid 0.5rem var(--secondary-color);
}

.sidebar-form h2 ,
.sidebar-form h3 {
    text-align: center;
    text-transform: uppercase;
}

.single .sidebar-form.sidebar-container h3:after{
    display: none;
}

/************************/


/*-----------ANIMATION CUSTOMIZE GRACE----------------------*/
.customizegrace-gallery{
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    z-index: 0;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    margin-bottom: 3rem;
}

.customizegrace-gallery *{
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.customizegrace-gallery .image-wrapper {
    margin: 0 0 0.1rem 0;
    line-height: 0.1rem;
}
.customizegrace-detail-image{
    min-height: 0.1rem;
    padding-bottom: 56.25%;
    position: relative;
    display: block;
    width: 100%;
    height: 0;
}
.block-gallery-vertical .customizegrace-detail-image {
    padding-bottom: 100%;
}
.block-gallery-vertical-big .customizegrace-detail-image {
    padding-bottom: 130%;
}
.customizegrace-gallery .image-wrapper img{
   position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.customizegrace-gallery .customizegrace-before{
   z-index: 9;
   position: relative;
}
.customizegrace-gallery .customizegrace-after{
    position: absolute;
    width: 100%;
    top: 0;
}
.customizegrace-overlay{
    -webkit-transition-property: background;
    -moz-transition-property: background;
    transition-property: background;
    background: rgba(0, 0, 0, 0);
    z-index: 25;
}

.customizegrace-before-label, .customizegrace-after-label, .customizegrace-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.customizegrace-before-label, .customizegrace-after-label {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
}
.customizegrace-before-label{
    opacity: 0;
}
.customizegrace-after-label{
    opacity: 0;
}

.customizegrace-before-label:before, .customizegrace-after-label:before {
    top:50%;
    margin-top: -1.9rem;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    line-height: 3.8rem;
    padding: 0 2rem;
    -webkit-border-radius: 0.2rem;
    -moz-border-radius: 0.2rem;
    border-radius: 0.2rem;
    color: white;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
}
.customizegrace-before-label:before{
    content:"Before";
    left:2rem;
}
.customizegrace-after-label:before {
    content:"After";
    right:2rem;
}



.customizegrace-overlay:hover {
    background: rgba(0,0,0,.3);
}
.customizegrace-overlay:hover .customizegrace-before-label {
    opacity: 1;
}
.customizegrace-overlay:hover .customizegrace-after-label {
    opacity: 1;
}
.customizegrace-handle{
    height: 5rem;
    width: 5rem;
    position: absolute;
    left: 50%;
    top: calc(50% - 2.5rem);
    border: 0.3rem solid white;
    -webkit-border-radius: 100rem;
    -moz-border-radius: 100rem;
    border-radius: 100rem;
    -webkit-box-shadow: 0rem 0rem 1.2rem rgb(51 51 51 / 50%);
    -moz-box-shadow: 0rem 0rem 1.2rem rgba(51, 51, 51, 0.5);
    box-shadow: 0rem 0rem 1.2rem rgb(51 51 51 / 50%);
    z-index: 40;
    cursor: pointer;
}
.customizegrace-handle::before, .customizegrace-handle::after{
    content: " ";
    display: block;
    background: white;
    position: absolute;
    z-index: 30;

    width: 0.3rem;
    height: 999.9rem;
    left: 50%;
    margin-left: -1.5px;
}
.customizegrace-handle::before{
    bottom: 50%;
    margin-bottom: 3rem;
    -webkit-box-shadow: 0 0.3rem 0 white, 0rem 0rem 1.2rem rgb(51 51 51 / 50%);
    -moz-box-shadow: 0 0.3rem 0 white, 0rem 0rem 1.2rem rgba(51, 51, 51, 0.5);
    box-shadow: 0 0.3rem 0 white, 0rem 0rem 1.2rem rgb(51 51 51 / 50%);
}
.customizegrace-handle::after{
    top: 50%;
    margin-top: 3rem;
    -webkit-box-shadow: 0 -0.3rem 0 white, 0rem 0rem 1.2rem rgb(51 51 51 / 50%);
    -moz-box-shadow: 0 -0.3rem 0 white, 0rem 0rem 1.2rem rgba(51, 51, 51, 0.5);
    box-shadow: 0 -0.3rem 0 white, 0rem 0rem 1.2rem rgb(51 51 51 / 50%);
}
.customizegrace-left-arrow, .customizegrace-right-arrow{
    top: 50%;
    margin-top: -1rem;
    width: 0;
    height: 0;
    border: 1rem inset transparent;
    position: absolute;
}

.customizegrace-left-arrow {
    border-right: 1rem solid white;
    left: 50%;
    margin-left: -2.8rem;
    margin-top: -1rem !important;
}
.customizegrace-right-arrow {
    border-left: 1rem solid white;
    right: 50%;
    margin-right: -2.8rem;
}
/*-----------ANIMATION CUSTOMIZE GRACE----------------------*/


/*---------MODAL FORM CUSTOMIZE ---------*/


.modal-image-wrapper{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255,255,255,0.9);
    height: 100vh;
    width: 100vw;
    z-index: 999999999;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s backwards;
    align-items: center;
    overflow: auto;
    overflow-y: scroll;
}
.open-modal-box{
    opacity: 1;
    pointer-events: initial;
}

.container-image{
    text-align: center;
    display: block;
    position: relative;
}
/*.container-image img{
    position: relative;
    max-height: calc(100vh - 50px);
    margin: auto;
    display: block;
    z-index: 9;
}*/
.gallery-thumbs .swiper-slide{
    opacity: 1 !important;
}
.block-image-detail{
    max-width:900px;
    width: 90%;
    margin:auto;
    text-align: center;
}
/*.open-modal-box .block-image-detail{
    animation: animate_form 1s backwards;
}*/
@-webkit-keyframes animate_form {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@-moz-keyframes animate_form {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes animate_form{
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@-ms-keyframes animate_form{
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@-o-keyframes animate_form{
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}


html.active-modal-image body{
    overflow: hidden!important;
    touch-action: none;
}
/*.section-slide-testimonials .slick-slide.dragg{
    cursor: grabbing;
}*/
.page-id-3508 h1{
    font-size: 70px;
}
.gallery-thumbs .swiper-slide {
    width: 100px;
    height: auto;
    text-align: center;
    overflow: hidden;
    opacity: 0.1;
}
.video-box-modal, .wrapper-image-video, .video-local-box-modal{
    position: relative;
    width: 100%;
    padding-bottom: 66.66%;
    display: block;
    cursor: pointer;
}
.wrapper-image-video img{
    object-fit: cover;
    outline-offset: 0px !important;
    outline: inherit !important;
}
.video-box-modal iframe, .video-local-box-modal video,  .wrapper-image-video img{
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
    padding: 0px;
    border: none;
    margin: auto;
    display: block;
    width: 0px;
    height: 0px;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
}
.gallery-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
    position: relative;
}
.gallery-block .swiper-container{
    overflow: hidden;
    margin-top: 20px;
}
.gallery-block .gallery-thumbs{
   max-width: 900px;
   margin: auto;
   width: 100%;
   display: block;
   margin-top: 10px;
}

.gallery-thumbs:before,
.gallery-thumbs:after{
    content:'';
    position: absolute;
    width: 50px;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 99;
}

.gallery-thumbs::before{
    left: 0;
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 100%);
}
.gallery-thumbs::after{
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);
    right: 0;
}

.gallery-thumbs .swiper-slide{
    border: 3px solid transparent;
    box-sizing: border-box;
    padding: 2px;
}
.gallery-thumbs .swiper-slide-active {
    border: 3px solid var(--black);
}

.gallery-block .swiper-button-prev, .gallery-block .swiper-button-next{
    opacity: 0;
    visibility: hidden;
    font-family: eleganticons;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    background-image: inherit;
    font-size: 50px;
    opacity: 1;
    color: var(--black);
    display: none;
}
.gallery-block .swiper-button-prev{
    left: -50px;
}
.gallery-block .swiper-button-next{
    right:-50px;
}
.gallery-block .swiper-button-prev::before{
    content: '\3c';
    left: 0;
}
.gallery-block .swiper-button-next::before{
    content: '\3d';
    right: 0;
}
.gallery-block .swiper-button-prev::after, .gallery-block .swiper-button-next::after{
    display: none;
}

.caption-element{
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    bottom: 0;
    background-color: rgba(0,0,0,0.6);
    color:#fff;
    line-height: 30px;
    z-index: 9;
}
.wrapper-image-video-main{
    line-height: 0;
    display: inline-block;
    position: relative;
    max-width: 80%;
}
.wrapper-image-video-main img{
    position: relative;
    max-height: calc(100vh - 150px);
    margin: auto;
    display: block;
    z-index: 9;
}


.gallery-block .prev-modal,
.gallery-block .next-modal{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 999;
    width: 40px;
    height: 40px;
    margin: auto;
    top:0;
    bottom: 0;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    cursor: pointer;
}
.gallery-block .swiper-wrapper .swiper-slide-active .prev-modal,
.gallery-block .swiper-wrapper .swiper-slide-active .next-modal{
    opacity: 1;
    visibility: visible;
}

.gallery-block .prev-modal{
    left: -70px;
}
.gallery-block .next-modal{
    right: -70px;
}

.gallery-block .prev-modal::before,
.gallery-block .next-modal::before{
    content: '\4d';
    font-family: 'ElegantIcons';
    color: var(--black);
    font-size: 50px;
    position: absolute;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}

.gallery-block .prev-modal::before{
    content: '\3c';
    left: 0;
}
.gallery-block .next-modal::before{
    content: '\3d';
    right: 0;
}

.icon-close-image:hover{
    opacity: 0.8;
}
.gallery-block .gallery-slider .swiper-slide:not(.swiper-slide-active) .icon-close-image{
    opacity: 0;
    visibility: hidden;
}
.icon-close-image{
    position: absolute;
    z-index: 999;
    width: 40px;
    height: 40px;
    right: -40px;
    top:0px;
    margin:auto;
    background-color:var(--black);
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
    cursor: pointer;
}
.icon-close-image::before{
    content: '\4d';
    font-family: 'ElegantIcons';
    color: #ffffff;
    font-size: 40px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    line-height: 40px;
    font-weight: 400;
    text-align: center;
}


.video-thumb-box:after,
.video-thumb-box:before{
    position: absolute;
    inset: 0px;
    opacity: 1;
    display:block !important;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in; 
}

.video-thumb-box:after{
    content: '';
    z-index: 1;
    width: 100%;
    height:100%;
    background-color:rgba(0,0,0,0.3);
}
.video-thumb-box:before{
    z-index: 2;
    width:30px;
    height:30px;
    content: '\49';
    font-family: 'ElegantIcons';
    font-size: 1.5em;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-weight: 400;
    vertical-align: middle;
    color:#fff;
    margin:auto;
}
.before-after-photos-row a.lightbox:not(.image-column-view) {
    display: none;
}
.some-of-our-work .before-after-photos-row .description-col-modal{
    background: var(--secondary-color);
}
.some-of-our-work .before-after-photos-row .description-col-modal h3,
.some-of-our-work .before-after-photos-row .description-col-modal p
{
    color: var(--black);
}
.some-of-our-work .before-after-photos-row{
    border-bottom: dashed 2px var(--secondary-color);
    padding-bottom: 75px;
    margin-bottom: 75px;
}


.lightbox{
    position: relative;
    display: block;
      
}
.lightbox:hover::before, .lightbox:hover::after{
    opacity: 1;
}
.lightbox::before, .lightbox::after{
    opacity: 0;
    -moz-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    transition: all .3s ease-in;
}
.lightbox::before{
    content: '+';
    position: absolute;
    font-size: 45px;
    font-weight: bold;
    color: #fff;
    width: 40px;
    height: 40px;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    line-height: 27px;
    background: var(--secondary-color);
    border-radius: 100%;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.8);
    z-index: 3;
    text-align: center;
}
.lightbox::after{
    content: "";
    position: absolute;
    font-weight: bold;
    color: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.3);
    z-index: 2;
}
@media only screen and (min-width: 981px){
    html.active-modal-image{
        margin-right: 17px;
        padding-right: 16.7999267578125px;
        overflow: hidden!important;
        width: 100%;
    }
}
@media only screen and (min-width: 2000px){
    
    .block-image-detail{
        max-width:1300px;
    }
}

@media only screen and (min-width: 3000px){
    
    .block-image-detail{
        max-width:2000px;
    }
    .wrapper-image-video-main img.horizontal-image{
        min-width: 1500px;
    }
    .wrapper-image-video-main img.vertical-image{
        min-height: 1300px;
    }
    .wrapper-image-video-main{
        max-width: 90%;
    }
}
@media only screen and (min-width: 4000px){
    
    .block-image-detail{
        max-width:3000px;
    }
     .wrapper-image-video-main img.horizontal-image{
        min-width: 2500px;
    }
    .wrapper-image-video-main img.vertical-image{
        min-height: 1500px;
    }
}
@media only screen and (min-width: 5000px){
   
    .block-image-detail{
        max-width:4000px;
    }
     .wrapper-image-video-main img.horizontal-image{
        min-width: 3000px;
    }
    .wrapper-image-video-main img.vertical-image{
        min-height: 2200px;
    }
}
@media only screen and (max-width: 980px){
    .modal-image-wrapper{
        overflow-y: scroll;
    }
}



@media only screen and (max-width: 768px) {
    .gallery-block .gallery-slider .swiper-slide{
        padding-top: 50px;
    }
    .gallery-block .prev-modal,
    .gallery-block .next-modal{
        width: 30px;
        height: 30px;
    }
    .gallery-block .prev-modal{
        left: -40px;
    }
    .gallery-block .next-modal{
        right: -40px;
    }

    .gallery-block .prev-modal::before,
    .gallery-block .next-modal::before{
        font-size: 30px;
    }

   .icon-close-image{
    top: -40px;
    right: 0;
   }
    
}

@media only screen and (max-width: 480px) {
    .modal-image-wrapper{
        display: block;
    }
    .icon-close-image{
        top: -30px;
        width: 30px;
        height: 30px;
    }
    .icon-close-image::before {
        font-size: 30px;
        line-height: 30px;
    }
}

@media only screen and (max-width: 400px) {
    .gallery-block .prev-modal,
    .gallery-block .next-modal{
        width: 20px;
        height: 20px;
    }
    .gallery-block .prev-modal{
        left: -28px;
    }
    .gallery-block .next-modal{
        right: -28px;
    }

    .gallery-block .prev-modal::before,
    .gallery-block .next-modal::before{
        font-size: 25px;
        line-height: 30px;
    }
    .gallery-block .close-modal{
        width: 30px;
        height: 30px;
        right: 0;
        top: -30px
    }
    .gallery-block .close-modal::before{
        font-size: 30px;
        line-height: 30px;
    }
    
}
/*---------MODAL FORM CUSTOMIZE ---------*/




.content-tab-section{
    padding:20px 0px;
}
.tab-section ul{
    list-style-type: none;
}
.tab-section ul{
    display: flex;
    gap: 5px;
    padding-left: 0px !important;
    align-items: center;
    flex-flow: row wrap;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}
.tab-section ul li a{
    padding: 5px 10px; 
    flex: 1;
    font-weight: bold;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
}
.tab-section ul li a.tab-active{
    border-bottom: 2px solid var(--secondary-color);
}
.tab-section ul li{
    display: flex;
    
}
.wrapper-grid{
    display: block;
}
.wrapper-grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid-item, .grid-sizer { width: 25%; }
.grid-item{
    padding:5px;
    box-sizing: border-box;
}

.featured-block{
    display: flex;
    align-items: center;
    gap: 30px;
    padding-right: 5px;
    padding-left:5px;
    margin-bottom: 35px;
}
.featured-block h2{
    font-weight: bold !important;
    margin-bottom: 10px;
    font-size: 30px !important;
    line-height: 35px !important;
}
.featured-block > div:nth-child(1){
    width: 200px;
}
.featured-block  > div:nth-child(1) img{
    width: 170px;
    height: auto;
}
.featured-block > div:nth-child(2){
    flex: 1;
}
#id-content-tab{
    min-height: 600px;
}
@media only screen and (max-width:768px){
    .featured-block{
        display: block;
    }
    .featured-block > div:nth-child(1){
        margin-bottom: 30px;
    }
    .grid-item, .grid-sizer { width: 50%; }
}
@media only screen and (max-width:375px){
    .grid-item, .grid-sizer { width: 100%; }
}


.page-id-366 .post-366 .entry-content::before, .page-id-366 .post-366 .entry-content::after{
    display: inherit;
    table-layout: inherit;
}

.wrapper-tab-section{
    padding-bottom: 100px;
    position: relative;
}
.loading-images{
    height: 400px;
    overflow: hidden;
}
.loading-images::before{
    content:"";
    width: 100px;
    height:100px;
    position: absolute;
    right: 0;
    left:0;
    bottom: 0;
    top: 0;
    margin: auto;
    background-image: url('https://truenorthbuilders-tn.com/wp-content/uploads/2023/08/Spin-1s-200px.gif');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100px;
    z-index: 9;
}
.loading-images::after{
    content: "";
    width: 100%;
    height:100%;
    position: absolute;
    right: 0;
    left:0;
    bottom: 0;
    top: 0;
    margin: auto;
    background-color: #fff;
    z-index: 8;   
}

.close-modal-blank{
    position: absolute;
    width: 100%;
    height:100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin:auto;

}

@media only screen and (max-width:480px){
    .wrapper-tab-section .module{
        padding-right: 1rem;
        padding-left: 1rem;
    }
}
.captcha-content{margin-bottom: 20px;}
.captcha-content > p{display:none;}
    