/*
    Theme Name: Sperling Starter
    Theme URI: https://www.sperlinginteractive.com
    Description: Sperling Interactive WordPress Starter Theme
    Version: 1.0
    Author: Sperling Interactive
  Theme URI: https://www.sperlinginteractive.com
*/
/*------------------------------------*\
    

\*------------------------------------*/

/* NEW COLORS */

:root {
    --orange: #d76b00;
    --black: #454142;
    --dark-gray: #716d6e;
    --white: #fff;
}

/* FONTS AVENIR */

@font-face {
    font-family: 'avenir-medium';
    src: url('fonts/Avenir/Avenir-Medium.ttf') format('ttf');
}

@font-face {
    font-family: 'avenir-heavy';
    src: url('fonts/Avenir/Avenir-Heavy.ttf') format('ttf');
}

@font-face {
    font-family: 'avenir-light';
    src: url('fonts/Avenir/Avenir-Light.ttf') format('ttf');
}

@font-face {
    font-family: 'avenir-black';
    src: url('fonts/Avenir/Avenir-Black.ttf') format('ttf');
}
/* global box-sizing */

*,
*:after,
*:before {
    box-sizing: border-box;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
/* html element 62.5% font-size for REM use */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    color: var(--black);
    font:
        300 11px/1.4 Helvetica,
        Arial,
        sans-serif;
}
/* clear */

.clear:before,
.clear:after {
    content: ' ';
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    zoom: 1;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}
/* Lightspeed Lazy load fade in */

img[data-lazyloaded] {
    opacity: 0;
}

img.litespeed-loaded {
    -webkit-transition: opacity 0.5s linear 0.2s;
    -moz-transition: opacity 0.5s linear 0.2s;
    transition: opacity 0.5s linear 0.2s;
    opacity: 1;
}

a {
    text-decoration: none;
    font-family: houschka-rounded, sans-serif;
    font-weight: 600;
    font-style: normal;
}

a:hover {
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}

input:focus {
    border: 1px solid #04a4cc;
    outline: 0;
}

p,
ul,
ol {
    font-size: 1.6rem;
    font-family: 'avenir-medium';
}

h1 {
    font-size: 3.6rem;
    font-family: houschka-rounded, sans-serif;
    font-weight: 500;
    font-style: normal;
}

h2 {
    font-size: 7rem;
    font-family: houschka-rounded, sans-serif;
    font-weight: 500;
    font-style: normal;
}

h3 {
    font-size: 2.8rem;
    font-family: houschka-rounded, sans-serif;
    font-weight: 500;
    font-style: normal;
}

h4 {
    font-size: 2.4rem;
    font-family: houschka-rounded, sans-serif;
    font-weight: 500;
    font-style: normal;
}

h5 {
    font-size: 2rem;
    font-family: houschka-rounded, sans-serif;
    font-weight: 500;
    font-style: normal;
}

h6 {
    font-size: 1.6rem;
    font-family: houschka-rounded, sans-serif;
    font-weight: 500;
    font-style: normal;
}

blockquote {
    margin: 25px 0;
    padding: 25px 0 25px 5vw;
    font-style: italic;
    border-top: 1px solid;
    border-bottom: 1px solid;
    font-weight: 700;
}

.button,
.nav ul li.button-li a {
    font-family: 'avenir-heavy';
    color: var(--white);
    border-radius: 12px;
    background-color: var(--orange);
    padding: 10px 24px;
    transition: 0.3s ease;
    box-shadow: 0px 0px 0px #00000029;
    position: relative;
    top: 0px;
    opacity: 1;
    font-size: 1.5rem;
    font-family: houschka-rounded, sans-serif;
    font-weight: 600;
    font-style: normal;
}

.button:hover,
.nav ul li.button-li a:hover {
    box-shadow: 0px 3px 6px #00000029;
    top: 2px;
    opacity: 0.8;
}

.nav > ul > li {
    position: relative;
}

.nav > ul > li .sub-menu {
    width: auto;
    position: absolute;
    background-color: white;
    top: 35px;
    right: 0px;
    min-width: 215px;
    display: block;
    padding: 15px 15px;
    opacity: 0;
    transition: 0.3s ease;
    z-index: -1;
}

.nav > ul > li .sub-menu li {
    margin-bottom: 15px;
}

.nav > ul > li .sub-menu li a {
    font-size: 1.4rem;
}

.nav > ul > li .sub-menu li:last-child {
    margin-bottom: 0px;
}

.nav > ul > li:hover .sub-menu {
    opacity: 1;
    z-index: 4;
}
/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/
/* wrapper */

.wrapper {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    width: 100%;
    max-width: 2560px;
    overflow: hidden;
}

.container {
    max-width: 1280px;
    align-self: center;
    flex: 1 auto;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}
/* header */

header.header {
    box-shadow: 0px 3px 6px #00000029;
    position: relative;
    /* z-index: 3; */
}

.header .logo {
    text-align: center;
    padding: 25px 0px;
}

.header-navigation {
    background-color: #f5f5f5;
    padding: 5px 0px;
    position: relative;
}

.nav {
    text-align: center;
}

.nav ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1000px;
    margin: 0px auto;
}

.nav ul li {
    list-style: none;
}

.nav ul li a {
    font-family: 'avenir-light';
    text-transform: uppercase;
    font-family: 'avenir-light';
    color: var(--dark-gray);
    font-weight: normal;
    position: relative;
    transition: 0.3s ease;
}

.nav ul li a:hover {
    color: var(--orange);
}

.nav ul li.button-li a {
    border-radius: 24px;
    transition: 0.3s ease;
    display: block;
}

.nav ul li.button-li a:hover {
    color: white;
}

.nav ul li.button-li a:before,
.nav ul li.button-li a:after {
    display: none;
}

.nav ul li a:before {
    content: '';
    position: absolute;
    left: 0px;
    top: -5px;
    display: block;
    width: 0%;
    height: 1px;
    background-color: var(--dark-gray);
    opacity: 1;
    transition: 0.3s ease;
}

.nav ul li a:after {
    content: '';
    position: absolute;
    right: 0px;
    bottom: -3px;
    display: block;
    width: 0%;
    height: 1px;
    background-color: var(--dark-gray);
    opacity: 1;
    transition: 0.3s ease;
}

.nav ul li a:hover:before,
.nav ul li a:hover:after {
    width: 100%;
    background-color: var(--orange);
}

.logo-img {
    backface-visibility: hidden;
    height: 80px;
}
/* nav */

.nav {
}
/* sidebar */

.sidebar {
}
/* footer */

.footer {
    background: #eee;
    padding: 20px;
}

.pagination {
    font-size: 1.6rem;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
/*------------------------------------*\
    IMAGES
\*------------------------------------*/
/*------------------------------------*\
    ACF GOOGLE MAP
\*------------------------------------*/

.acf-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    border: #ccc solid 1px;
    /* margin: 20px 0; */
}
/* Fixes potential theme css conflict. */

.acf-map img {
    max-width: inherit !important;
}
/* HOME PAGE */
/* HERO */

.hero {
    background-color: #313131;
    position: relative;
}

#videoHeader {
    position: relative;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 75vw;
    max-height: 75vh;
    overflow: hidden;
}

.hero .video-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
}

.hero:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0px;
    background-color: #313131;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero .hero-content {
    position: relative;
    z-index: 3;
    color: white;
}

.hero .hero-content {
    max-width: 600px;
}

.hero .columns {
    height: 100%;
}

.hero h2 {
    margin-bottom: 5px;
}

.hero a.button {
    display: inline-block;
    margin-top: 10px;
}

.hero .slick-dots {
    text-align: left;
}

.slick-dots li button:before {
    opacity: 0.39;
    color: white;
    transition: 0.3s ease;
    font-size: 12px;
    width: 12px;
    height: 12px;
}

.slick-dots li.slick-active button:before {
    color: white;
    opacity: 1;
}

.slick-dots li {
    margin: 0px 2px;
    width: 12px;
    height: 12px;
}

.slick-dots li button {
    padding: 3px;
    width: 12px;
    height: 12px;
}

.slick-prev:before {
    display: none;
}

.slick-next:before {
    background-image: url('./img/ico-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 44px;
    height: 116px;
    content: '';
    display: block;
}

.we-are-list {
    display: flex;
    margin: 0px;
    padding: 0px;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
}

.we-are-list li {
    width: 33.33333%;
    list-style: none;
    margin-bottom: 50px;
}

.we-are-list .image-box {
    width: 95px;
    height: 95px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0px auto 5px auto;
}

.we-are-list .image-box.image-box-1 {
    background-image: url('./img/ico-svg-1.svg');
}

.we-are-list .image-box.image-box-2 {
    background-image: url('./img/ico-svg-2.svg');
}

.we-are-list .image-box.image-box-3 {
    background-image: url('./img/ico-svg-3.svg');
}

.we-are-list .image-box.image-box-4 {
    background-image: url('./img/ico-svg-4.svg');
}

.we-are-list .image-box.image-box-5 {
    background-image: url('./img/ico-svg-5.svg');
}

.we-are h2 {
    color: var(--orange);
    margin-top: 0px;
}

.we-are .right h2 {
    text-align: center;
}

.we-are .left h2 {
    margin-bottom: 15px;
}

section.mg-75 {
    padding: 75px 0px;
}

.we-are .button-box {
    text-align: center;
}

.yellow-section {
    background-color: var(--orange);
}
/* OUR SERVICES SECTION  */

.services-section h2 {
    text-align: center;
    color: var(--white);
}

.services-content-box {
    background-color: white;
    display: flex;
    align-items: center;
    height: 100%;
    transition: 0.3s ease;
}

.yellow-section .services-content-box h2 {
    color: #262626;
    font-size: 1.6rem;
    text-align: left;
}

.services-content-box .text-box {
    width: 100%;
    padding: 0px 50px;
}

a.services-home-anchor {
    display: block;
}

a.services-home-anchor .image-box {
    width: 50%;
    transition: 0.3s ease;
}
/* a.services-home-anchor:hover .image-box {
    width: 65%;
} */

a.services-home-anchor:hover .services-content-box {
    background-color: #e3e3e3;
}

.button-box {
    text-align: center;
    margin-top: 20px;
}

.button.white-button {
    background-color: white;
    box-shadow: 0px 3px 6px #00000029;
    color: #262626;
}

.services-section {
    padding-bottom: 75px;
}
/* OUR SERVICES SECTION END */
/* HOME PAGE END */
/* SERVICES AREAS */

.service-title {
    margin-top: -110px;
    margin-bottom: 20px;
}

.service-title h1 {
    display: inline-block;
    vertical-align: top;
    background-color: var(--orange);
    padding: 50px;
    color: white;
    font-size: 7rem;
    padding: 30px 50px;
}

.service-content h2 {
    margin-top: 0px;
    margin-bottom: 20px;
    color: var(--orange);
    font-size: 6rem;
    line-height: 1.2;
}

.service-content .yellow-section h2 {
    color: white;
}

.service-content .video-box iframe {
    width: 100%;
}

.container.container-services {
    max-width: 1100px;
    margin-bottom: 50px;
}

.mgb-70 {
    margin-bottom: 70px;
}

.content-box-padding-left {
    padding-left: 50px;
}

.content-box-padding-left ol {
    padding-left: 60px;
}

.content-box-padding-left li {
    margin-bottom: 40px;
    list-style: none;
    position: relative;
    padding-top: 5px;
}

.content-box-padding-left li:before {
    content: '1';
    position: absolute;
    left: -55px;
    top: 0px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 3rem;
    color: var(--orange);
    text-align: center;
}

.content-box-padding-left li:nth-child(2):before {
    content: '2';
}

.content-box-padding-left li:nth-child(3):before {
    content: '3';
}

.content-box-padding-left li:nth-child(4):before {
    content: '4';
}

.content-box-padding-left li:nth-child(5):before {
    content: '5';
}

.content-box-padding-left li:nth-child(6):before {
    content: '6';
}

.content-box-padding-left li:nth-child(7):before {
    content: '7';
}

.fullwidth-faq-container {
    padding: 100px 0px;
}

.yellow-section h1 {
    color: white;
    font-size: 7rem;
}

.fullwidth-faq-container h2 {
    text-align: center;
}

h3.ui-accordion-header {
    cursor: pointer;
    font-family: 'avenir-black';
    font-size: 1.8rem;
    margin-bottom: 0px;
    margin-top: 30px;
    position: relative;
    padding-right: 50px;
    color: white;
}

.ui-accordion-content p {
    color: white;
}

h3.ui-accordion-header:before {
    content: '';
    position: absolute;
    right: 0px;
    top: 50%;
    width: 50px;
    height: 19px;
    background-image: url('./img/icon-faq-arrow.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -9px;
    transform: rotate(180deg);
}

h3.ui-accordion-header.ui-accordion-header-active:before {
    transform: rotate(0deg);
}

.columns.space-beetween {
    justify-content: space-between;
}

.column.max-width-500 {
    max-width: 600px;
}

.image-box.vertical-image-box {
    margin-bottom: 25px;
}

.accordion-with-grey-bg h3 {
    background-color: #eaeaea;
    padding: 15px 35px;
}

.accordion-with-grey-bg h3.ui-accordion-header:before {
    right: 20px;
}

.accordion-with-grey-bg div p {
    padding: 10px 25px;
}

.content-box-padding-left.no-padding-left {
    padding-left: 0px;
    padding-right: 50px;
}

.additional-nav {
    background-color: #eaeaea;
    margin-bottom: 50px;
}

.additional-nav ul {
    display: flex;
    justify-content: space-evenly;
    padding-left: 0px;
    flex-wrap: wrap;
    margin-bottom: 0px;
}

.additional-nav ul li {
    list-style: none;
    margin-bottom: 20px;
}

.additional-nav ul li a {
    color: var(--orange);
    text-decoration: underline;
    font-family: 'avenir-black';
}

.additional-nav ul li a:hover {
    text-decoration: none;
}

.child-service-box {
    box-shadow: 0px 3px 6px #00000029;
    height: 100%;
}

.child-service-box h2 {
    color: #262626;
    font-size: 2.5rem;
    transition: 0.3s ease;
}

.child-service-box .content-box {
    padding: 25px 30px;
}

.child-service-box .content-box p,
.child-service-box .content-box li {
    margin-bottom: 0px;
    margin-top: 0px;
    color: #262626;
    font-weight: 100;
    transition: 0.3s ease;
}

.child-service-box .content-box ul {
    list-style: none;
    padding-left: 0px;
}

.child-service-box .content-box ul li {
    padding-left: 0px;
    position: relative;
    padding-left: 10px;
}

.child-service-box .content-box ul li:before {
    content: '-';
    position: absolute;
    left: 0px;
    top: 0px;
}

.child-service-box a:hover h2,
.child-service-box a:hover p,
.child-service-box a:hover li {
    color: var(--orange);
}

.child-service-box {
    transition: 0.3s ease;
}

.child-service-box:hover {
    box-shadow: 8px 8px 6px #00000029;
}
/* SERVICES AREAS END */
/* SERVICES MAIN PAGE */

.services-main-page a.services-home-anchor .image-box {
    width: 100%;
}

.services-main-page a.services-home-anchor {
    box-shadow: 0px 3px 6px #00000029;
    height: 100%;
    transition: 0.3s ease;
}

.services-main-page a.services-home-anchor:hover {
    box-shadow: 8px 8px 6px #00000029;
}

.services-main-page a.services-home-anchor h2 {
    font-size: 2.5rem;
    color: #262626;
    transition: 0.3s ease;
    margin-top: 0px;
    margin-bottom: 10px;
}

.services-main-page a.services-home-anchor:hover h2 {
    color: var(--orange);
}

.services-main-page .text-box {
    padding: 25px 45px 10px 45px;
}

.services-main-page a.services-home-anchor:hover p {
    color: var(--orange);
}

.services-main-page .text-box p {
    color: #262626;
    font-weight: 100;
    transition: 0.3s ease;
}

.testimonial-slider .slick-arrow {
    display: none !important;
}

.testimonial-slider .slick-dots li {
    width: 25%;
    height: 3px;
    margin: 0px;
}

.testimonial-slider .slick-dots li button,
.testimonial-slider .slick-dots li button:before {
    width: 100%;
    height: 100%;
}

.testimonial-slider ul.slick-dots {
    max-width: 1000px;
    position: static;
    margin: 0px auto;
    display: flex;
    margin-top: 70px;
}

.testimonial-slider ul.slick-dots li button:before {
    display: none !important;
}

.testimonial-slider ul.slick-dots button {
    width: 100%;
    background-color: white;
    padding: 0px;
    transition: 0.3s ease;
}

.testimonial-slider ul.slick-dots li.slick-active button {
    background-color: #000000;
}

.quote-icon {
    font-family: houschka-rounded, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 80px;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0px auto;
    border: 4px solid white;
    text-align: center;
    line-height: 105px;
}

.yellow-section.testimonial-box {
    padding: 100px 0px;
}

.yellow-section.testimonial-box .testimonial-content p {
    color: white;
    margin-bottom: 25px;
}

.yellow-section.testimonial-box .testimonial-content em {
    text-align: center;
    color: white;
    display: block;
    font-size: 2rem;
}
/* SERVICES MAIN PAGE END */
/* BLOG SECTIOn */

.blog-section {
    padding-bottom: 60px;
}

.blog-slider {
    /* overflow: hidden; */
}

.blog-slider .slick-slide {
    /* max-width: 475px;  */
    background-color: #e3e3e3;
    box-shadow: 0px 3px 6px #00000029;
    margin-right: 40px;
    border-radius: 5px;
    height: inherit;
}

.blog-slider .slick-track {
    color: black;
}

.container.spec-container {
}

.blog-slider .slick-track .image-box {
    display: block;
}
/* .container.spec-container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: initial;
} */

.container.spec-container .columns-spec {
    /* min-width: 1600px; */
}

.blog-section-content-box {
    font-size: 2.3rem;
    padding: 30px 35px;
}

.container.spec-container .slick-track {
    display: flex;
    padding-bottom: 20px;
}

.blog-section-content-box .button,
.container.spec-container .button {
    text-transform: uppercase;
}

.blog-section .slick-list {
    min-width: 1600px;
    overflow: hidden;
}

.blog-section ul.slick-dots {
    max-width: 1000px;
    position: static;
    margin: 0px auto;
    display: flex;
    margin-top: 70px;
}

.blog-section .slick-dots li {
    width: 25%;
    height: 3px;
    margin: 0px;
}

.blog-section ul.slick-dots button {
    width: 100%;
    background-color: #e3e3e3;
    padding: 0px;
    transition: 0.3s ease;
    height: 3px;
}

.blog-section ul.slick-dots button:before {
    display: none;
}

.blog-section ul.slick-dots li.slick-active button {
    background-color: var(--orange);
}

.blog-section .slick-next {
    margin-top: -125px;
    margin-right: -35vw;
    right: 50%;
}

.blog-section .slick-next:before {
    background-image: url(./img/ico-arrow-2.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 209px;
    height: 248px;
    content: '';
    display: block;
    opacity: 1;
}

.blog-section h2 {
    color: var(--orange);
    margin-bottom: 0px;
}

.blog-section .blog-section-copy p {
    margin-top: 0px;
}

#frm_field_6_container {
}

.blog-section-copy .frm_fields_container,
.footer .frm_fields_container {
    position: relative;
    max-width: 500px;
}

.blog-section-copy .frm_submit,
.footer .frm_fields_container .frm_submit {
    position: absolute;
    right: 0px;
    top: 3px;
    margin: 0px;
}

.blog-section-copy .frm_submit button,
.footer .frm_fields_container .frm_submit button {
    margin: 0px !important;
}
form#blog-search {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    gap: 10px;
}

form#blog-search input {
    padding: 10px 5px;
    border-radius: 12px;
    border: 0;
}

form#blog-search button {
    background: white;
    color: var(--orange);
    border: 0;
}
.footer .frm_fields_container input[type='email'] {
    background-color: white !important;
}

input[type='email'] {
    background-color: #e3e3e3 !important;
    border-radius: 28px !important;
    border: 1px solid #e3e3e3 !important;
    box-shadow: none !important;
    padding: 10px 25px 9px 25px !important;
    transition: 0.3s ease !important;
}

input[type='email']:focus {
    background-color: white !important;
}

.frm_button_submit {
    font-family: 'avenir-heavy' !important;
    color: white !important;
    border-radius: 28px !important;
    background-color: var(--orange) !important;
    padding: 10px 24px !important;
    transition: 0.3s ease !important;
    box-shadow: 0px 0px 0px #00000029 !important;
    position: relative !important;
    top: 0px !important;
    opacity: 1 !important;
    font-size: 1.5rem !important;
    font-family: houschka-rounded, sans-serif !important;
    font-weight: 600 !important;
    font-style: normal !important;
    border: none !important;
    text-transform: uppercase !important;
}

.footer ul.social-media {
    margin: 0px;
    padding: 0px;
    text-align: center;
}

.footer ul.social-media li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    margin: 0px 10px;
}

.footer ul.social-media li a i {
    color: #555555;
    font-size: 32px;
    transition: 0.3s ease;
}

.footer ul.social-media li a:hover i {
    color: var(--orange);
}

.footer ul.social-media li a {
    color: #555555;
}

.copyright a {
    color: #555555;
    text-decoration: underline;
}
/* footer */

.flex-content-box {
    display: flex;
}

.flex-content-box .content-inner-box {
    width: 50%;
}

.justify-space-beetween {
    justify-content: space-between;
}

.footer .title i,
.footer .title h4 {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 7px;
    margin-top: 0px;
}

.footer .title {
    display: flex;
    align-items: center;
}

.footer .title i {
    margin-right: 7px;
    color: var(--orange);
    font-size: 22px;
    height: 22px;
}

.footer .title .left {
    border-bottom: 1px solid #4b4b4b;
}

.footer .content-inner-box a {
    display: inline-block;
    vertical-align: top;
    margin-top: 10px;
    color: #4b4b4b;
}

.footer .content-inner-box i {
    margin-right: 7px;
    margin-top: 13px;
}

.footer .right-box .title {
    justify-content: space-between;
}

.footer {
    padding-top: 70px;
}

.footer .right-box a.button {
    text-transform: uppercase;
}

.menu-item-home a {
    background-color: var(--orange) !important;
}

.menu-item-home a {
    color: white !important;
}

.hero-inner-featured {
    min-height: 100px;
}

.container.container-services .column {
}

.child-service-box .content-box h2 {
    font-size: 2.5rem;
}

.child-service-box .image-box img {
    width: 100%;
}

.we-are-list li {
    position: relative;
}

.hidden-description-box {
    position: absolute;
    top: 100px;
    left: 50%;
    background-color: #f5f5f5;
    opacity: 0;
    transition: opacity 0.3s ease;
    width: 400px;
    margin-left: -200px;
    z-index: -22;
    border-radius: 5px;
    box-shadow: 0px 0px 0px #00000029;
    padding: 15px 20px;
}

.we-are-list li:hover .hidden-description-box {
    opacity: 1;
    z-index: 2;
}

.image-align-center {
    text-align: center;
}
/* ABOUT (TEAM) */

ul.members-anchor-list {
    margin: 0px 0px 30px 0px;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
}

ul.members-anchor-list li {
    list-style: none;
    margin-right: 20px;
    margin-bottom: 10px;
}

ul.members-anchor-list li a {
    color: #555555;
    font-weight: 300;
    transition: 0.3s ease;
}

ul.members-anchor-list li a:hover {
    color: var(--orange);
}

.team-member {
    margin-bottom: 50px;
}

.team-member .image-box {
    margin-bottom: 25px;
}

.team-member {
    text-align: center;
}

.team-member .content-excerpt,
.team-member .button-box {
    text-align: left;
}

.team-member .name a {
    color: var(--orange);
    font-size: 2.3rem;
    transition: 0.3s ease;
}

.team-member .name a:hover {
    color: #555555;
}

.team-member .position {
    color: #555555;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.team-member .location {
    color: #555555;
    font-size: 1.3rem;
    font-weight: 200;
    margin-bottom: 15px;
}

.team-member .content-excerpt {
    font-size: 1.5rem;
}

.team-member .button-box {
    margin-top: 35px;
}

.team-single-member-content h4 {
    margin-top: 0px;
    border-bottom: 1px solid grey;
    padding-bottom: 5px;
}

.team-single-member-content .button-box {
    text-align: left;
    margin: 50px 0px;
}

.team-single-member-content .image-box {
    text-align: center;
}

.team-single-member-content .image-box img {
    box-shadow: 0px 3px 6px #00000029;
}

hr.orange {
    border-color: var(--orange);
    border-top: 0px;
}

.recent-blog-box {
    background-color: #efefef;
    text-align: center;
}

.recent-blog-box {
    padding: 25px;
    margin: 25px 0px 50px 0px;
}

.recent-blog-box a {
    font-size: 2.5rem;
    color: var(--orange);
}

.blog-main-page h2 {
    margin-top: 0px;
    color: #333333;
    font-size: 4rem;
    transition: 0.3s ease;
    margin-bottom: 10px;
}

.blog-main-page a {
    color: #333333;
    transition: 0.3s ease;
}

.blog-main-page .image-box {
    padding-right: 25px;
}

.blog-main-page a:hover h2 {
    color: var(--orange);
}

.blog-main-page hr {
    margin-top: 50px;
    margin-bottom: 50px;
}

.blog-main-page .button-box {
    text-align: left;
    margin-top: 25px;
}

.blog-main-page a.button {
    color: white;
}

.pagination a {
    transition: 0.3s ease;
}

.pagination a:hover,
.pagination .page-numbers.current {
    color: var(--orange);
}

.blog-main-page {
    margin-bottom: 50px;
}

body a {
    color: var(--orange);
}

.next-post-section {
    background-color: #282b30;
    text-align: center;
    padding: 50px 0px;
}

.nex-post-container em {
    font-weight: 200;
}

.next-post-content {
    font-size: 2rem;
}

.banner-box {
    background-color: #faf7f7;
}

.banner-box .banner-header {
    background-color: var(--orange);
    color: white;
    padding: 20px 25px;
}

.banner-box .banner-header strong {
    font-size: 3rem;
}

.banner-repeater-content {
    padding: 0px 50px;
}

.banner-repeater-content ul {
    padding: 0px;
    margin: 0px;
}

.banner-repeater-content ul li {
    list-style: none;
    border-bottom: 2px solid #717171;
    padding-bottom: 20px;
}

.banner-repeater-content ul li:last-child {
    border-bottom: 0px;
}

.banner-repeater-content ul .image-box {
    text-align: center;
}

.banner-repeater-content ul h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: 5px;
}

.banner-repeater-content ul p {
    font-size: 1.4rem;
    margin-top: 5px;
}

.banner-footer {
    background-color: var(--orange);
    padding: 0px 50px;
}

.banner-footer .image-box {
    text-align: center;
}

.banner-footer ul {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.banner-footer ul li a {
    color: white;
}
/* CONCTACT PAGE */

.contact-right-repeater-list ul,
.contact-left-repeater-list {
    margin: 0px;
    padding: 0px;
}

.contact-right-repeater-list li,
.contact-left-repeater-list li {
    list-style: none;
}

.location-members-item,
.contact-left-repeater-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.contact-left-repeater-list {
}

.contact-page h2 {
    font-size: 2.4rem;
    color: var(--orange);
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 15px;
}

.contact-left-repeater-list {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 15px;
    margin-bottom: 10px;
}

.contact-left-repeater-list li {
    width: 50%;
    box-sizing: border-box;
}

.contact-right-repeater-list .box {
    width: 33.33333%;
    padding: 0px 25px;
}

.contact-right-repeater-list .box.second {
    width: 50%;
    padding: 0px;
}

.contact-left-repeater-list h4 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-left-add-content i {
    margin-right: 10px;
    color: #444;
}

ul.contact-right-repeater-list {
    margin: 0px;
    padding: 0px;
}

ul.contact-right-repeater-list > li {
    margin-bottom: 25px;
}

ul.contact-right-repeater-list > li li {
    background-color: #f5f5f5;
    border-bottom: 1px solid #d3d3d3;
}

ul.contact-right-repeater-list .header-grey-bg-box {
    background-color: #d3d3d3;
    font-size: 2rem;
    padding: 10px 15px;
}

.columns.no-margin {
    margin-bottom: 0px;
}

.referrals-container h4 {
    color: var(--orange);
}

.video-page iframe {
    max-width: 100%;
    width: 100%;
}

.video-page .video-colum {
    margin-bottom: 25px;
}

#menu-item-38 > a {
    pointer-events: none;
}

#menu-item-38 a a {
    pointer-events: initial;
}

.back-to-blog-list {
    margin-top: 50px;
}

.back-to-blog-list a {
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
    max-width: 100%;
}

.back-to-blog-list a i {
    margin-right: 15px;
    transition: 0.3s ease;
    font-size: 2rem;
}

.back-to-blog-list a:hover i {
    margin-right: 7px;
}

.back-to-blog-list a:hover {
    color: #444;
}

.container-services .ui-accordion .ui-accordion-content-active ul {
    padding-left: 80px;
}

.container-fluid {
    padding: 0px 20px;
}

.location-address-box {
    display: flex;
    align-items: flex-start;
}

.location-address-box p {
    margin-top: 0px;
    padding-left: 20px;
}

.location-additional-content {
    margin-top: 25px;
    margin-bottom: 50px;
}

.location-content-box {
    margin-bottom: 50px;
}

.video-list-title {
    margin-top: 0px;
    margin-bottom: 15px;
}

.video-list-title a {
    transition: 0.3s ease;
    color: var(--orange);
}

.video-list-title a:hover {
    color: black;
}

.video-box.single-video-box {
    margin-bottom: 50px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-page .back-to-blog-list {
    margin-bottom: 25px;
}

.footer .right-box .right a {
    display: inline-block;
}

.hero .video-box video {
    width: 100%;
}

.hero .video-box img {
    width: 100%;
}

.hero-slider-no-video-2 {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-slider-no-video {
    height: inherit;
}

.hero-slider-no-video .slick-list,
.hero-slider-no-video .slick-track {
    height: 100%;
}

img.visibility-hidden {
    visibility: hidden;
}

.content-box-padding-left .accordion-with-grey-bg h3,
.content-box-padding-left .ui-accordion-content p {
    color: var(--black);
}

.content-box-padding-left h3.ui-accordion-header:before {
    background-image: url(./img/icon-faq-arrow-black.svg);
}
.nav > ul > li .sub-menu li a {
    display: block;
}

@media only screen and (min-width: 320px) {
    #videoHeader {
        height: auto;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 29px;
    }
    h2,
    .yellow-section h1 {
        font-size: 5rem;
    }
    section.mg-75 {
        padding: 35px 0px;
    }
    .we-are-list li {
        width: 50%;
    }
    .container.spec-container .columns-spec {
        min-width: initial;
    }
    .blog-slider .slick-slide {
        max-width: 100%;
        margin-right: 20px;
        margin-left: 20px;
    }
    .container.spec-container .slick-track {
        display: block;
    }
    .container.spec-container .slick-next {
        display: none;
    }
    .blog-section .slick-list {
        min-width: initial;
    }
    .flex-content-box {
        display: block;
    }
    .flex-content-box .content-inner-box {
        width: 100%;
    }
    .footer .right-box .title {
        display: block;
    }
    .footer .title .left {
        margin-bottom: 25px;
    }
    .services-main-page a.services-home-anchor .image-box img {
        width: 100%;
    }
    .header-navigation {
        display: none;
    }
    .service-title h1 {
        font-size: 2.5rem;
    }
    .service-content h2 {
        font-size: 2.5rem;
    }
    .content-box-padding-left {
        padding-left: 0px;
    }
    .mgb-70 {
        margin-bottom: 20px;
    }
    .fullwidth-faq-container {
        padding: 50px 20px;
    }
    .content-box-padding-left {
        padding-left: 0px;
    }
    h3.ui-accordion-header:before {
        width: 30px;
    }
    .accordion-with-grey-bg h3 {
        padding-right: 44px;
    }
    .service-title {
        margin-top: -50px;
    }
    .contact-right-repeater-list .box {
        width: 100%;
        padding: 0px 25px;
        text-align: center;
    }
    .contact-right-repeater-list .box.second {
        width: 100%;
    }
    .location-members-item,
    .contact-left-repeater-list {
        flex-wrap: flex;
    }
    #videoHeader {
        padding-bottom: 50px;
    }
}

@media only screen and (min-width: 480px) {
}

@media only screen and (min-width: 600px) {
    .container.spec-container .slick-track {
        display: flex;
    }
    .blog-slider .slick-slide {
        max-width: 475px;
    }
    .container.spec-container .slick-next {
        display: block;
    }
    .flex-content-box .content-inner-box {
        width: 50%;
    }
}

@media only screen and (min-width: 769px) {
    #videoHeader {
        height: 75vw;
    }
    .slick-dotted.slick-slider {
        margin-bottom: 30px;
    }
    h2 {
        font-size: 7rem;
        line-height: 1.2;
    }
    section.mg-75 {
        padding: 75px 0px;
    }
    .we-are-list li {
        width: 33.3333%;
    }
    .container.spec-container .columns-spec {
    }
    .blog-slider .slick-slide {
        max-width: 475px;
    }
    .blog-section .slick-list {
        min-width: 1600px;
    }
    .flex-content-box {
        display: flex;
    }
    .footer .right-box .title {
        display: flex;
        flex-wrap: wrap;
    }
    .footer .title .left {
        margin-bottom: 0px;
    }
    .service-title h1 {
        font-size: 7rem;
    }
    .service-content h2 {
        font-size: 6rem;
    }
    .mgb-70 {
        margin-bottom: 70px;
    }
    .fullwidth-faq-container {
        padding: 100px 20px;
    }
    h3.ui-accordion-header:before {
        width: 50px;
    }
    .accordion-with-grey-bg h3 {
        padding-right: 35px;
    }
    .service-title {
        margin-top: -110px;
    }
    .yellow-section h1 {
        font-size: 7rem;
    }
    .contact-right-repeater-list .box {
        width: 33.33333%;
        padding: 0px 25px;
        text-align: left;
    }
    .contact-right-repeater-list .box.second {
        width: 50%;
        padding: 0px;
        text-align: center;
    }
    .location-members-item {
        flex-wrap: initial;
    }
    body.page-template-template-location .address-box * {
        font-size: 2rem;
    }
}

@media only screen and (min-width: 1024px) {
    .menu-item-home a {
        background: none !important;
        color: #707070 !important;
    }
    .menu-item-home a:hover {
        color: var(--orange) !important;
    }
    .header-navigation {
        display: block;
    }
    .content-box-padding-left {
        padding-left: 50px;
    }
    .location-content-box {
        padding-left: 50px;
    }
    .yellow-section.blog h1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media only screen and (min-width: 1140px) {
}

@media only screen and (min-width: 1280px) {
}

@media only screen and (max-width: 1280px) {
    .hidden-description-box {
        position: fixed;
        top: 300px;
    }
}

@media only screen and (max-width: 500px) {
    .logo-img {
        height: auto;
    }
    .hidden-description-box {
        display: none !important;
    }
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: #04a4cc;
    color: #fff;
    text-shadow: none;
}
/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

.sticky {
}

.bypostauthor {
}
/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        text-shadow: none !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: ' (' attr(href) ')';
    }
    abbr[title]:after {
        content: ' (' attr(title) ')';
    }
    .ir a:after,
    a[href^='javascript:']:after,
    a[href^='#']:after {
        content: '';
    }
    pre,
    blockquote {
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    .nav,
    .sidebar,
    .home-slider,
    #respond {
        display: none;
    }
    @page {
        margin: 2cm;
    }
}

@media only screen and (max-width: 1000px) {
    .blog-section .slick-next {
        margin-top: -125px;
        margin-right: -30vw;
        right: 50%;
    }
}

@media only screen and (max-width: 600px) {
    .blog-section .slick-next {
        margin-top: -125px;
        margin-right: -10vw;
        right: 50%;
    }
}
