@font-face { font-family: Century-Gothic-Regular; src: url('../fonts/centurygothic.ttf'); } 
@font-face { font-family: Century-Gothic-Bold; src: url('../fonts/centurygothic_bold.ttf'); } 

html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: "Century-Gothic-Regular", sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #FFFFFF;
    font-size: 18px;
    color: #000000;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}

p{
    line-height: 30px;
}

.btn:focus{
    box-shadow: none;
}

@media (min-width: 1470px){
    .container{
        max-width: 1206px;
    }
    .header .container, 
    .hero-sec .container{
        max-width: 1400px;
    }
}
@media (min-width: 1650px){
    .header .container, 
    .hero-sec .container{
        max-width: 1600px;
    }
}

/*Header*/
.header{
    background: transparent;
    z-index: 9;
    width: 100%;
    transition: all 0.2s ease-in-out;
    position: sticky;
    top: 0px;
    left: 0px;
}

/*Main Nav*/
.main-nav{
    padding: 7px 0px;
    position: relative;
    background-color: #FFFFFF;
}
.navbar-nav{
    gap: 40px;
}
.nav-link{
    display: block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    color: #000;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    padding-left: 0px !important;
    padding-right: 0px !important;
}
.navbar-nav .nav-link {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.nav-item .nav-link.active, 
.nav-item .nav-link:hover{
    color: #B77F4C;
}
.btn-theme{
    padding: 15px 34px;
    border-radius: 10px;
    background-color: #B77F4C;
    color: #FFF;
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    transition: all 0.3s ease-in-out;
    border: 0px !important;
}
.btn-theme:hover, 
.btn:first-child:active{
    background-color: #004065;
    color: #ffffff;
}

#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}          
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem;
}

@media all and (min-width: 1200px) {
.navbar .nav-item .dropdown-menu{ display: none; }
.navbar .nav-item:hover .dropdown-menu{ display: block; }
.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 10px;
    margin-top: 0px;
    vertical-align: 3px;
    content: "";
    border-top: 0.3em solid !important;
    border: solid #000000 !important;
    border-width: 0 2px 2px 0 !important;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(45deg);
    border-right: 0em solid transparent; 
    border-bottom: 0; 
    border-left: 0em solid transparent; 
}
.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0px;
    margin: 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    border: 0px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
    background: #ffffff;
    box-shadow: 3px 3px 6px #0000001a;
    border-radius: 10px;
    overflow: hidden;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 20px;
    clear: both;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    border-radius: 0px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
}
.nav-item .nav-link.active.dropdown-toggle::after{  
    border-top: 0.3em solid !important;
    border: solid #0a58ca !important;
    border-width: 0 2px 2px 0 !important;
}
.nav-item .nav-link:hover.dropdown-toggle::after{
    border-top: 0.3em solid !important;
    border: solid #B77F4C !important;
    border-width: 0 2px 2px 0 !important;
}
.dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active {
    color: #ffffff;
    background-color: #B77F4C;
}
.h-support{
    font-size: 14px;
    opacity: 0.8;
}
.dropdown .dropdown-menu{
    -webkit-transition: all 500ms ease-in;
    -moz-transition: all 500ms ease-in;
    -ms-transition: all 500ms ease-in;
    -o-transition: all 500ms ease-in;
    transition: all 500ms ease-in;
}

@media all and (min-width: 1200px) {
.navbar .dropdown-menu-end{ right:0; left: auto; }
.navbar .nav-item .dropdown-menu{ display:block; opacity: 0;  visibility: hidden; transition:.3s; margin-top:0; }
.navbar .dropdown-menu.fade-down{ top:80%; transform: rotateX(-75deg); transform-origin: 0% 0%; }
.navbar .dropdown-menu.fade-up{ top:180%; }
.navbar .nav-item:hover .dropdown-menu{ transition: .3s; opacity:1; visibility:visible; top:100%; transform: rotateX(0deg); }
}

/* close */
.navbar-toggler{
    padding: 0px;
    border: 0px;
}
.menu_toggle{
    width: 50px !important;
    height: 50px;
    padding: 9px 10px 9px;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s ease-in;
    text-align: left;
    position: relative;
    right: 0;
    top: 0px;
    z-index: 90;
    border-radius: 3px;
    line-height: 0px;
    align-items: flex-end;
}
.menu_toggle span {
    height: 3px;
    width: 100%;
    background: #000000;
    display: inline-block;
    transition: all 0.5s cubic-bezier(.62, .43, .35, 1.47);
    margin: 2px 0px;
}
.menu_toggle span:nth-child(2){
    width: 75%;
}
.menu_toggle span:nth-child(3){
    width: 48%;
}

/* toggle icon animation */
#check1:checked~.menu_toggle span:nth-child(1) {
    width: 90%;
    transform: rotate(45deg) translateY(6px) translateX(6px);
}

#check1:checked~.menu_toggle span:nth-child(2) {
    width: 0;
}

#check1:checked~.menu_toggle span:nth-child(3) {
    width: 90%;
    transform: rotate(-45deg) translateY(-4px) translateX(4px);
}
#check1{
    display: none;
}

/*Hero Section*/
.hero-sec{
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 110px 0;
}
.hero-sec::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000E16CC;
}
.hero-title{
    color: #FFF;
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 30px;
}
.hero-text{
    color: #FFF;
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 26px;
    font-weight: 700;
    line-height: 38px;
    margin-bottom: 40px;
}
.hero-form-box{
    border-radius: 20px;
    background-color: #FFF;
    padding: 30px 30px 40px;
}
.nav-pills{
    border-radius: 10px;
    background-color: #EAE6E2;
    margin-bottom: 30px;
}
.nav-pills .nav-link{
    padding-top: 18px;
    padding-bottom: 18px;
    color: #000;
    text-align: center;
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}
.nav-pills .nav-link.active:hover, .nav-pills .nav-link.active, .nav-pills .show>.nav-link{
    border-radius: 10px;
    color: #FFFFFF;
    background-color: #004065;
}
.nav-pills .nav-link:hover{
    color: #000000;
}
.tab-content{
    padding-left: 20px;
    padding-right: 20px;
}
.form-label{
    color: #000;
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 18px;
    line-height: normal;
    margin-bottom: 8px;
}
.form-control{
    color: #000;
    font-size: 18px;
    line-height: normal;
    padding: 15px 20px;
    border-radius: 10px;
    border: 1px solid #D7D7D7;
    background-color: #FFF;
}
.form-control:focus{
    box-shadow: none;
    border-color: #D7D7D7;
}
.radio-btn{
    display: flex;
    align-items: center;
    gap: 12px;
}
.cust-radio {
    display: block;
    position: relative;
    padding-left: 21px;
    margin-bottom: 6px;
    cursor: pointer;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.cust-radio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.cust-radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #FFFFFF;
    border-radius: 50%;
    border: 4px solid #D7D7D7;
    margin-top: 2px;
}
.cust-radio:hover input ~ .checkmark {
    background-color: #FFFFFF;
    border-color: #004065;
}
.cust-radio input:checked ~ .checkmark {
    background-color: #FFFFFF;
    border-color: #004065;
}

/*Local Expertise You Can Trust*/
.about-sec.sec-pad{
    padding: 100px 0px;
}
.sec-pad{
    padding: 80px 0px;
}
.about-img{
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}
.about-content{
    padding-left: 70px;
}
.title{
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}
.about-content p{
    margin-bottom: 20px;
}
.about-content p:last-child{
    margin-bottom: 0px;
}
.cust-hr{
    color: #00000033;
    opacity: 1;
    margin: 30px 0;
}
.cust-ul{
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cust-ul li{
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.cust-ul li::before{
    content: '';
    background-image: url(../../img/icons/list-icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    min-width: 12px;
    height: 13px;
    margin-top: 8px;
}
.about-sec{
    position: relative;
}
.about-shape{
    position: absolute;
    bottom: 10px;
    right: 0px;
}

/*Clarify Offerings Quickly*/
.coq-sec{
    background-size: cover;
    background-position: center;
    position: relative;
}
.coq-sec::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #eae6e2cc;
}
.coq-sec .title{
    margin-bottom: 40px;
}
.coq-box{
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    height: 100%;
}
.title-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 20px;
    margin-bottom: 22px;
    border-bottom: 1px solid #00000033;
}
.sub-title{
    font-size: 27px;
    font-family: "Century-Gothic-Bold", sans-serif;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0px;
}
.icon-box{
    min-width: 45px;
    height: 45px;
    background-color: #B77F4C;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}
.icon-box img{
    transition: all 0.3s ease-in-out;
}
.icon-box:hover img{
    transform: rotate(45deg);
}
.img-box img{
    border-radius: 15px;
}
.img-box{
    margin-bottom: 26px;
}
.coq-box .cust-ul {
    row-gap: 14px;
}
.br-20{
    border-radius: 20px;
}

/*Areas Served Across Southwest Ohio*/
.bg-blue{
    position: relative;
    background-size: cover;
    background-position: right center;
}
.bg-blue .title{
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 50px;
}
.location-sec{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 73px;
}
.locations{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 309px;
}
.location-box{
    border-radius: 10px;
    background-color: #FFFFFF33;
    padding: 12px 24px 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.left-side{
    display: flex;
    align-items: center;
    gap: 18px;
}
.location-name{
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding: 6px 0px 6px 15px;
    border-left: 1px solid #FFFFFF33;
}
.location-box .right-arrow-white{
    transition: all 0.3s ease-in-out;
}
.location-box:hover .right-arrow-white{
    transform: rotate(45deg);
}
.country-map{
    margin-top: 20px;
}

/*Blog Section*/
.blog-sec .title{
    margin-bottom: 30px;
    text-align: center;
}
.featured-img{
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border-radius: 20px;
}
.blog-title{
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 10px;
}
.blog-excerpt{
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    margin-bottom: 20px;
}
.read-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #00000033;
}
.read-more-text{
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
}
.read-box:hover .icon-box img{
    transform: rotate(45deg);
}

/*Ready to Get Started?*/
.blue-box{
    border-radius: 20px;
    background-color: #004065;
    padding: 50px;
    position: relative;
    z-index: 1;
}
.blue-box .title{
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 20px;
}
.blue-box p{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 35px;
}
.btn-sec{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}
.btn-sec .btn-theme:hover{
    background-color: #58C9E7;
}
.btn-theme.btn-sky-blue{
    background-color: #58C9E7;
}
.btn-theme.btn-sky-blue:hover{
    background-color: #B77F4C;
}


/*Inner Hero Section*/
.inner-hero{
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
}
.inner-hero::after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #000E16CC;
}
.inner-hero .hero-title{
    margin-bottom: 0px;
}

/*Client Resources Page*/
.box001{
    width: 100%;
    height: 100%;
    background-color: #EAE8E5;
    border-radius: 20px;
    padding: 30px 40px;
}
.icon-box1{
    width: 76px;
    height: 76px;
    margin: 0px auto 15px;
    border-radius: 10px;
    background-color: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.box001 .sub-title{
    text-align: center;
}

/*Contact Page*/
.hero-form-box.contact{
    background-color: #EEEAE7;
    margin-left: 22px;
}
.hero-form-box .nav-pills{
    background-color: #FAFAFA;
}
.contact-details{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-title{
    color: #000;
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 6px;
}
.contact-link{
    transition: all 0.3s ease-in-out;
}
.contact-link:hover{
    color: #B77F4C;
}

/*Single Blog View*/
.blog-back-link{
    font-size: 14px;
    color: #B77F4C;
    text-decoration: none;
    transition: color 0.2s ease;
}
.blog-back-link:hover{
    color: #004065;
}
.blog-img, 
.content-sec{
    margin-bottom: 50px;
}
.blog-date{
    margin-bottom: 30px;
}
.content-sec p:last-child{
    margin-bottom: 0px;
}
.blog-content .content-sec:last-child{
    margin-bottom: 0px;
}
.br-bottom{
    border-bottom: 1px solid #00000033;
}
.content-sec .blog-title{
    margin-bottom: 20px;
}

/*Area Served*/
.bg-dust{
    background-color: #EAE6E2;
}
.area-link{
    transition: all 0.3s ease-in-out;
}
.area-link:hover{
    color: #B77F4C;
}

/*Areas*/
.dust-bg-box{
    width: 100%;
    height: 100%;
    background-color: #EAE8E5;
    border-radius: 20px;
    padding: 50px 40px;
}
.title-box1{
    padding-bottom: 26px;
    margin-bottom: 30px;
    border-bottom: 1px solid #00000033;
}

/*Footer*/
.footer{
    background-color: #EAE6E2;
    background-size: cover;
    background-position: right center;
    position: relative;
    padding-top: 140px;
    margin-top: -140px;
}
.footer::after{
    content: '';
    width: 100%;
    height: 100%;
    background-color: #eae6e2b3;
    position: absolute;
    top: 0px;
    left: 0px;
}
.p-footer{
    padding: 60px 0px 40px;
}
.f-logo{
    margin-bottom: 60px;
    text-align: center;
}
.f-ul{
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding-left: 0px;
    margin-bottom: 0px;
    gap: 50px;
}
.f-ul li a{
    font-family: "Century-Gothic-Bold", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    position: relative;
}
.f-ul li a::after{
    content: '';
    width: 0%;
    height: 2px;
    background-color: #262626;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}
.f-ul li a:hover::after{
    width: 100%;
}
.s-footer{
    border-top: 1px solid #0000001A;
    padding: 15px 0px;
}
.copyright-text{
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
.designed-by{
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.designed-by a{
    display: inline-flex;
    align-items: center;
}
.xponex-logo{
    height: 18px;
    width: auto;
}

.mb-20{
    margin-bottom: 20px;
}

.bold{
    font-family: "Century-Gothic-Bold", sans-serif;
}

.z-1{
    position: relative;
    z-index: 1;
}

/* Homes We've Helped Close Carousel */
.homes-carousel-sec {
    background-color: #606161;
}
.homes-carousel-sec .homes-carousel-title {
    color: #FFFFFF;
}
.homes-carousel-sec .carousel {
    position: relative;
}
.homes-carousel-sec .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}
.homes-carousel-sec .carousel-item {
    padding: 0;
}
/* Thumbnails: 600x538 aspect ratio */
.homes-carousel-sec .homes-carousel-thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 600 / 538;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.homes-carousel-sec .carousel-control-prev-icon,
.homes-carousel-sec .carousel-control-next-icon {
    background-color: rgba(183, 127, 76, 0.8);
    border-radius: 50%;
}
.homes-carousel-sec .carousel-indicators button {
    background-color: #B77F4C;
}

/* Desktop/Tablet: arrows outside images, not overlapping */
.homes-carousel-desktop-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}
.homes-carousel-desktop .carousel-control-prev,
.homes-carousel-desktop .carousel-control-next {
    position: static;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    opacity: 1;
}
.homes-carousel-desktop .carousel-control-prev {
    order: -1;
}
.homes-carousel-desktop .carousel-inner {
    flex: 1;
    min-width: 0;
}