/* Theme Name: Barebones */
/* === Global === */

body{
    font-family: "Arimo", sans-serif;
    font-size: 18px;
}
body p{
    font-size: 18px;
}
h1,h2,h3,h4,h5{
    font-family: "Open Sans", sans-serif;
}
h2{
    font-size: 32px;;
}
.btn{
    font-family: "Open Sans", sans-serif;
}
/* === Header/Nav === */
.primary-header .logo-col {
	flex-basis: 300px;
}
.primary-header .nav-col {
	flex-grow: 1;
}
.primary-header .c2a {
	justify-content: flex-end;
}
.main-nav .menu {
	display: flex;
	justify-content: center;
	padding-left: 0;
	margin-bottom: 0;
}
.main-nav .menu li {
	display: block;
	margin: 2px 3px;
}
.main-nav .menu li a {
	padding: 15px 12px;
	display: block;
}
.menu-item-has-children {
	position: relative;
}
.menu-item-has-children .sub-menu {
	display: none;
	background-color: #fff;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px;
	z-index: 1;
	white-space: nowrap;
}
.menu-item-has-children:hover .sub-menu {
	display: block;
}
body.scrolled .primary-header .logo-col {
	padding: 8px 0;
}
body.scrolled .primary-header .logo-col img {
	max-height: 65px;
}
body.scrolled .primary-header .nav-col {
	padding-top: 8px;
	padding-bottom: 8px;
}
.primary-header {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 11;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
	text-transform: uppercase;
    background-color: var(--color-5);
}
.primary-header .nav-col {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	padding: 15px 0;
	padding-right: 50px;
	transition: padding ease .3s;
}
.primary-header .nav-col .info-row {
	justify-content: flex-end;
	padding-right: 12px;
	column-gap: 10px;
    font-size: 20px;
}
.primary-header .nav-col .info-row .social{
    column-gap: 10px;
}
.primary-header .nav-col .info-row a {
	color: var(--color-3);
}
.primary-header .nav-col .info-row a:hover, .primary-header .nav-col .info-row a:focus {
	color: var(--color-1);
}
.primary-header .nav-col .menu {
	justify-content: flex-end;
}
.primary-header .nav-col .menu a {
	color: var(--color-4);
        font-size: 16px;
}
.primary-header .nav-col .menu a:hover, .primary-header .nav-col .menu a:focus,
.primary-header .nav-col .menu .current_page_item>a {
	color: var(--color-1);
}
.primary-header .logo-col {
	padding: 15px;
	flex: 1 1 300px;
	transition: padding ease .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.primary-header .logo-col img {
	max-height: 85px;
	width: auto;
	transition: all ease .3s;
}
/* === Footer === */
.primary-footer .footer-row{
    padding: 40px 0;
    justify-content: space-between;
}
.primary-footer .footer-row .info-col .logo-col img{
    max-width: 300px;
}
.primary-footer .footer-row .pop-up-content {
    position: fixed; 
    top: 50%;
    left: -150%;
    transform: translate(-50%, -50%);
    transition: all ease .6s;
    z-index: 9999;
    display: flex; 
    width: 70%;
    opacity: 0;
    visibility: hidden;
    max-height: 90vh;
    overflow: scroll;
}
.primary-footer .footer-row .pop-up-content .close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: var(--color-1);
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease;
}
.primary-footer .footer-row .pop-up-content .close-popup:hover {
    transform: scale(1.2);
    color: var(--color-3);
}
.primary-footer .footer-row .pop-up-content .pop-up-content-left{
    flex: 1 1 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px;
    color: var(--color-5);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    font-family: 'Open Sans', sans-serif;
    border-radius: 10px 0 0 10px;
    background-color: #000;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
}
.primary-footer .footer-row .pop-up-content .pop-up-content-left::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px 0 0 10px;
    background-color: rgba(0, 0, 0, 0.5);
}
.primary-footer .footer-row .pop-up-content .pop-up-content-left-inner{
    position: relative;
    z-index: 1;
}
.primary-footer .footer-row .pop-up-content .pop-up-content-right{
    flex: 1 1 50%;
}
.primary-footer .footer-row .pop-up-content .pop-up-content-right-inner{
    padding: 40px;
    background-color: #f5f7ff;
    border-radius: 0 10px 10px 0;
}
.primary-footer .footer-row .pop-up-content .pop-up-content-right-inner .gfield input:not(.button),
.primary-footer .footer-row .pop-up-content .pop-up-content-right-inner .gfield textarea {
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-4);
}
.primary-footer .footer-row .pop-up-content .pop-up-content-right-inner .gform_wrapper.gravity-theme .button {
    background-color: var(--color-1);
    color: var(--color-2);
    font-weight: 600;
    width: 100%;
    padding: 10px 0;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all ease .3s;
}
.primary-footer .footer-row .pop-up-content .pop-up-content-right-inner .gform_wrapper.gravity-theme .button:hover,
.primary-footer .footer-row .pop-up-content .pop-up-content-right-inner .gform_wrapper.gravity-theme .button:focus{
    background-color: var(--color-3);
    color: var(--color-2);
}
.primary-footer .footer-row .pop-up-content.is-active {
    left: 50%;
    opacity: 1;
    visibility: visible;
    margin: 0;
    overflow: scroll;
}
.primary-footer .footer-row .footer-cta-section .heading{
    font-size: 30px;
    color: var(--color-1);
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    margin-bottom: 30px;
    transition: all ease .3s;
}
.primary-footer .footer-row .footer-cta-section .heading i{
    transition: all ease .3s;
}
.primary-footer .footer-row .footer-cta-section .heading:hover{
    color: var(--color-3);
}
.primary-footer .footer-row .footer-cta-section .heading:hover i{
    transform: scale(1.1);
    color: var(--color-3);
}
.primary-footer .sitemap-col ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
    flex-direction: column;
	justify-content: center;
    text-transform: uppercase;
    row-gap: 10px;
}

.primary-footer .sitemap-col ul a,
.primary-footer .social-col .inner a{
    color: var(--color-4);
}
.primary-footer .sitemap-col ul a:hover,
.primary-footer .sitemap-col ul a:focus,
.primary-footer .social-col .inner a:hover,
.primary-footer .social-col .inner a:focus{
    color: var(--color-1);
}
.primary-footer .social-col .inner{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.primary-footer .social-col .inner .social{
    font-size: 26px;
}
.primary-footer .copyright {
	text-align: center;
	padding: 16px 0 12px 0;
    background-color: var(--color-6);
}
.primary-footer .copyright a{
    color: #999999;
}
.primary-footer .copyright a:hover,
.primary-footer .copyright a:focus
{
    color: var(--color-3);
}
/* === Home Page === */
.banner-section,
.banner-section .embed,
.banner-section iframe{
    max-height: 90vh;
}
.banner-section .content {
	position: absolute;
	bottom: 0;
	left: 2%;
	z-index: 3;
}
.banner-section .content h1 {
	color: var(--color-5);
    font-size: 84px;
    font-style: normal;
    font-weight: 700;
    line-height: 62px;
    margin-bottom: 0;
}
.banner-section .content h1:first-child:has(+ h1){
    margin-bottom: 20px;
}
.content-section{
    padding: 80px 0;
    line-height: 30px;
}
.content-section .image-col{
    flex: 1 1 50%;
}
.content-section .content-col{
    flex: 1 1 50%;
}
.feature-section{
    padding: 0 0 80px 0;
}
.feature-section .features{
    gap: 10px;
    flex-wrap: wrap;
    padding: 20px 0;
}
.feature-section .features .feature{
    flex: 1 1 calc(25% - 8px);
    perspective: 1000px;
    min-height: 400px; /* Adjust as needed */
}
.feature-section .features .feature .feature-inner{
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    cursor: pointer;
}
.feature-section .features .feature:hover .feature-inner{
    transform: rotateY(180deg);
}
.feature-section .features .feature-front,
.feature-section .features .feature-back{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-color: var(--color-4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}
.feature-section .features .feature-front{
    z-index: 2;
}
.feature-section .features .feature-back{
    transform: rotateY(180deg);
}
.feature-section .features .feature .image{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.feature-section .features .feature .image img{
    opacity: .5;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-section .features .feature .heading,
.feature-section .features .feature .content{
    position: relative;
    z-index: 10;
    color: var(--color-5);
}
.feature-section .features .feature svg{
    color: var(--color-5);
    font-size: 32px;
    font-weight: 300;
    z-index: 11;
}
.feature-section .features .feature .heading{
    font-size: 22px;
    font-weight: 600;
}
.stat-section {
	text-align: center;
	padding: 80px 0;
}
.stat-section .stats {
	flex-wrap: wrap;
	column-gap: 100px;
	row-gap: 50px;
	justify-content: center;
}
.stat-section .stats .num-row{
    color: var(--color-1);
    font-family: 'Open Sans', sans-serif;
	font-size: 54px;
	font-weight: 600;
}
.stat-section .stat {
	flex: 1 1 calc(25% - 75px);
	position: relative;
	font-size: 28px;
	font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}
.stat-section .stat:not(:last-child):after {
	content: '';
	position: absolute;
	top: 15px;
	bottom: 15px;
	left: calc(100% + 50px);
	transform: translateX(50%);
	width: 2px;
	background-color: var(--color-4);
}
.steps-section{
	padding: 80px 0;
}
.steps-section-inner {
    width: 98%;
    margin: 0 auto;
    overflow: hidden;
}
.owl-carousel.steps, 
.owl-carousel.steps .owl-stage-outer {
    overflow: visible !important;
}
.owl-carousel.steps .owl-item {
    transition: transform 0.3s ease;
    backface-visibility: hidden;
}
.owl-carousel.steps .owl-item:hover {
    transform: scale(1.1);
    z-index: 99;
}
.steps-section h2{
	margin-bottom: 0px;
}
.steps-section .steps .step{
    color: var(--color-5);
}
.steps-section .steps .step .inner{
    display: flex;
    min-height: 210px;
}
.steps-section .steps .step .inner .icon{
    font-size: 200px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    line-height: 132px;
    margin-left: -14px;
}
.steps-section .steps .step .inner .content{
    padding: 32px 0;
}
.steps-section .steps .step h3{
	font-size: 16px;
    margin-bottom: 10px;
}
.steps-section .steps .step p{
	color: var(--color-5);
	font-size: 13px;
    font-style: normal;
    font-weight: 100;
    line-height: 16px;
}
.steps-section .steps .owl-carousel {
	overflow: visible !important;
}
.owl-carousel.steps {
    overflow: visible !important;
    z-index: 10;
}

.steps-section .owl-carousel .owl-item {
	transition: all ease 0.3s;
	z-index: 3;
	margin-top: 85px;
	margin-bottom: 70px;
	font-size: 16px;
    position: relative;
    display: inline-block;
}
.steps-section .owl-carousel .owl-item:hover{
    transform: scale(1.1);
    z-index: 10;
}
.steps-section .owl-carousel .owl-item:after{
    content: '';
    position: absolute;
    right: -29.1px;
    top: 0;
    width: 30px;
    height: 100%;
    background: var(--color-1);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.steps-section .owl-carousel .owl-item:nth-child(odd) {
    background-color: var(--color-3);
}
.steps-section .owl-carousel .owl-item:nth-child(odd):after{
    background: var(--color-3);
}
.steps-section .owl-carousel .owl-item:nth-child(even) {
    background-color: var(--color-1);
}
.steps-section .owl-carousel .owl-item.active.center {
	z-index: 4;
}
.brands-section{
    padding: 80px 0;
    background-color: var(--color-6);
}
.brands-section .brands .owl-stage{
    display: flex;
    align-items: center;
}
.brands-section .owl-carousel.brands .owl-stage {
    transition-timing-function: linear !important;
    -webkit-transition-timing-function: linear !important;
}
/* === Interior Pages === */
.watermark-section {
    background-color: #EEE;
    padding: 125px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.watermark-section .watermark-section-inner {
    padding: 0 70px;
}
.watermark-section .background-image {
    position: absolute;
    top: 0;
    right: 0; 
    height: 100%;
    width: 100%;
    max-width: 900px; 
    object-fit: contain; 
    object-position: right center;
    opacity: .1;
    z-index: -1;
    pointer-events: none;
}
.watermark-section .content{
    max-width: 50%;
}
.services-section{
    padding: 80px 0;
    overflow-x: hidden;
}
.services-section .section-content h2{
    font-weight: 700;
    margin-bottom: 40px;
}
.services-section .services {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-flow: dense;
    gap: 6px;
}
.services-section .service {
    display: contents;
}
.services-section .toggle-heading {
    grid-column: span 2;
    color: var(--color-5);
    background-color: var(--color-3);
    padding: 60px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color ease 0.3s, background-color ease 0.3s;
    position: relative;
    min-height: 250px;
    align-items: center;
    overflow: visible;
}
.services-section .toggle-heading::after {
    background-color: var(--color-3);
    bottom: 0px;
    content: "";
    left: 0px;
    position: absolute;
    right: 0px;
    top: 0px;
    transform: scale(1) translate3d(0px, 0px, 0px);
    transition-property: background-color, transform, box-shadow;
    transition-duration: 250ms;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(0.435, 0.01, 0.135, 1);
    overflow: visible;
}
.services-section .toggle-heading:hover::after {
    background-color: var(--color-1);
    transform: scale(1.0667) translate3d(0px, 0px, 0px);
    transition: background-color ease 0.3s, box-shadow ease 0.3s, transform ease 0.3s;
    z-index: 10;
}
.services-section .service:nth-child(7) .toggle-heading,
.services-section .service:nth-child(8) .toggle-heading {
    grid-column: span 3;
}
.services-section .toggle-content {
    display: none;
    grid-column: 1 / -1; 
    padding: 20px;
    margin-bottom: 10px;
    box-sizing: border-box;   
}
.services-section .service h3 {
    margin-bottom: 0;
}
.services-section .toggle-content p {
    margin: 10px 0;
}
.services-section .icon {
    transition: transform ease-in-out 0.4s;
    font-size: 22px;
}
.services-section .service.active .toggle-content {
    display: block;
}
.services-section .service .toggle-content-inner {
    display: flex;
    gap: 20px;
    align-items: center;
}
.services-section .service .toggle-content-inner .content-col {
    flex: 1 1 55%;
}
.services-section .service .toggle-content-inner .content-col .dual-content {
    display: flex;
    gap: 80px;
}
.services-section .service .toggle-content-inner .content-col .dual-content .content {
    flex: 1 1 50%;
}
.services-section .service .toggle-content-inner .content-col .dual-content .sub-content {
    flex: 1 1 50%;
}
.services-section .service .toggle-content-inner .content-col .dual-content .sub-content .sub-content-inner{
    position: relative;
    margin: 20px 0 0 0;
    padding: 0 0 0 10px;
}
.services-section .service .toggle-content-inner .content-col .dual-content .sub-content .sub-content-inner ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.services-section .service .toggle-content-inner .content-col .dual-content .sub-content .sub-content-inner p{
    margin: 0;
}
.services-section .service .toggle-content-inner .content-col .dual-content .sub-content .sub-content-inner ul li{
    padding: 10px 0 0 0;
    font-size: 14px;
}
.services-section .service .toggle-content-inner .content-col .dual-content .sub-content .sub-content-inner:before {
    border-left: 1px solid #00000030;
    bottom: 0;
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    height: 100%;
}
.services-section .service .toggle-content-inner .content-col .heading {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
}
.services-section .service .toggle-content-inner .content-col .content {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.services-section .service .toggle-content-inner .content-col .content .btn{
    color: var(--color-1);
    background-color: #ffffff00;
    padding: 10px 0;
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.services-section .service .toggle-content-inner .content-col .content .btn::after {
    content: "\f101"; 
    font-family: "Font Awesome 7 Pro";
    position: absolute;
    font-weight: 300;
    margin-left: 10px;
    transition: all ease .3s;
}
.services-section .service .toggle-content-inner .content-col .content .btn:hover::after,
.services-section .service .toggle-content-inner .content-col .content .btn:focus::after{
    transform: scale(1.1);
}
.services-section .service .toggle-content-inner .content-col .content .btn:hover,
.services-section .service .toggle-content-inner .content-col .content .btn:focus{
    color: var(--color-3);
}
.services-section .service .toggle-content-inner .image-col {
    flex: 1 1 45%;
}
.services-section .service.active .toggle-heading .icon {
    color: var(--color-3);
    transform: rotate(90deg);
}
.services-section .service.active .toggle-heading .heading {
    color: var(--color-2);
}
.services-section .toggle-heading .heading,
.services-section .icon{
    margin-top: 80px;
    font-size: 22px;
    z-index: 14;
}
.flexible-gallery-section{
    padding: 0 0 80px 0;
}
.flexible-gallery-section .media-items{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
    gap: 6px;
}
.flexible-gallery-section .media-items .media-item{
    display: contents;
}
.menu-item-has-children > a {
	position: relative;
	padding-right: 18px;
}
.menu-item-has-children>a:after {
	content: '\f101';
	font-family: 'Font Awesome 7 Pro';
    font-size: 12px;
	font-weight: 900;
	position: absolute;
	top: 48%;
	transform: translateY(-50%);
	right: -2px;
	transition: transform 0.3s ease;
}
.menu-item-has-children>a:hover:after,
.menu-item-has-children:hover>a:after{
	transform: translateY(-50%) rotate(90deg);
}
html {
    scroll-padding-top: 100px; 
}
[id] {
    scroll-margin-top: 100px;
}
.content-section .content-row{
	gap: 20px;
}
.content-section.img-left .content-row{
	 flex-direction: row-reverse;
}
.banner-section, .banner-section .embed, .banner-section iframe{
	max-height: 100%;
}
.page-id-259 .primary-footer .footer-row .footer-cta-section .heading{
    display: none;
}
/* === Media Queries === */
@media screen and (max-width: 1700px) {
    .steps-section .steps .step .inner .icon {
        font-size: 120px;
        line-height: 120px;
        padding-right:4px;
    }
    .steps-section .steps .step .inner .content {
        padding: 16px 0 0 0;
    }
}
@media screen and (max-width: 1500px) {
    
    .steps-section .owl-carousel .owl-item:after{
        content:unset!important;
    }


}
@media screen and (max-width: 1400px) {
    .steps-section .steps .step .inner .icon {
        font-size: 120px;
        line-height: 80px;
    }
    .steps-section .steps .step .inner{
        display:block;
    }
    .steps-section .steps .step .inner .content{
        padding: 20px!important;
    }





}
@media screen and (max-width: 1200px) {
    .steps-section .steps .step .inner .icon {
        font-size: 100px;
        line-height: 64px;
    }
    .steps-section .steps .step .inner {
        display: flex;
          align-items: center;
    }
    .stat-section .stat {
		flex-basis: calc(50% - 50px);
	}
	.stat-section .stat:nth-child(even):after {
		display: none;
	}
     .owl-carousel.steps .owl-stage {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    .owl-carousel.steps .owl-item:nth-child(4) { order: 1; }
    .owl-carousel.steps .owl-item:nth-child(5) { order: 2; }
    .owl-carousel.steps .owl-item:nth-child(1) { order: 3; }
    .owl-carousel.steps .owl-item:nth-child(2) { order: 4; }
    .owl-carousel.steps .owl-item:nth-child(3) { order: 5; }
    .owl-carousel.steps .owl-item {
        width: 100% !important;
        margin: 10px 0 !important;
    }
    .steps-section .steps .step .inner{
        align-items: center;
    }
      .steps-section .steps .step .inner{
        display:flex;
    }
    .steps-section .steps .step .inner .icon {
        font-size: 320px;
    }
    .steps-section-inner {
        width: 100%;
    }
}
@media screen and (max-width: 991px) {
   
    .primary-footer .footer-row{
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }
    .primary-footer .social-col .inner .social{
        justify-content: center;
    }
    .watermark-section .content{
        max-width: 100%;
    }
   
    .feature-section .features .feature{
        min-height: 300px;
    }
    .feature-section .features .feature-front, .feature-section .features .feature-back{
        height: 300px;
    }
    .services-section .service .toggle-content-inner .content-col .dual-content{
        flex-direction: column;
        gap: 20px;
    }
    .services-section .services {
        grid-template-columns: 1fr;
    }
}
@media screen and (max-width: 767px) {
    .steps-section .steps .step .inner .content {
        padding: 12px;
    }
    .steps-section .steps .step .inner .icon{
        line-height: 200px;
    }
    .feature-section .features{
        flex-direction: column;
    }
    .stat-section .stat {
		flex-basis: 100%;
	}
	.stat-section .stat:nth-child(n):after {
		display: none;
	}
    .flexible-gallery-section .media-items{
        grid-template-columns: repeat(1, 1fr);
    }
    .banner-section .content h1 {
		font-size: 44px;
		line-height: 32px;
	}
	.banner-section .content h1:first-child:has(+ h1) {
		margin-bottom: 0px;
	}
	.content-section .content-row{
		flex-direction: column-reverse;
		gap: 10px;
	}
	.services-section .service .toggle-content-inner{
		flex-direction: column;
	}
	.watermark-section .watermark-section-inner {
        padding: 0 20px;
    }
	.watermark-section {
		padding: 35px 0;
	}
    .primary-footer .footer-row .pop-up-content .pop-up-content-left{
        display: none;
    }
}
@media screen and (max-width: 450px) {
    .banner-section .content h1 {
		font-size: 32px;
        line-height: 24px;
	}
}