/* body,
html {
    overflow-x: hidden;
} */
:root {
    --cardo: "Cardo", serif;
    --raleway: "Raleway", sans-serif;
    --sky-color: #026CB7;
    --red-color: #E22014;
    --white-color: #FFFFFF;
    --light-sky-color: #E6F0F8;
    --black-color: #000000;
    --blue-color: #002F51;
}


* {
    box-sizing: border-box;
}

body,
html {
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--cardo) !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--black-color);
    font-size: 18px;
    line-height: 1.5;
    background-color:#F7F6F1;
}

::-moz-selection {
    background-color: var(--sky-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background-color: var(--sky-color);
    color: var(--white-color);
    text-shadow: none;
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0 !important;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none !important;
    outline: none !important;
    color: var(--black-color);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

a:hover {
    color: var(--sky-color);
}

img {
    max-width: 100%;
}

.container{
    max-width:1620px !important;
    padding:0 15px;
}

.o-main-header {
    width:100%;
    padding:19px 0;
    position: absolute;
    top:40px;
    z-index: 99999;
    background: #18140F;
}
.o-main-header.active{
    position:fixed;
    border-bottom:#FCDDA1 6px solid;
}

.c-menu-area{
    width:100%;
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:fixed;
    left:0;
    bottom:0;
    z-index:999;
    background:rgba(23, 19, 13, 0.70);
    backdrop-filter: blur(15px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:all 0.5s ease-in-out;
}
.c-menu-area.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.c-header-nav{
    padding:0;
    margin:0;
    list-style:none;
    text-align:center;
    flex-direction: row;
    display:flex;
    row-gap:40px;
}
.c-header-nav > li{
    display:block;
    position:relative;
}
.c-header-nav > li > a{
    color:#FFF;
    font-size:60px;
    font-weight:400;
    letter-spacing:3px;
    position:relative;
    padding:0 65px;
    margin:0;
}
.c-header-nav > li + li:before{
    content:"";
    width:2px;
    height:35px;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,0.40);
}

.c-header-nav > li > a:hover{
    color:#E3C486;
    text-decoration:underline !important;
}


.c-primary-btn{
    min-width: 256px;
    border-radius: 0 0 10px 10px;
    border: none;
    text-align: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 20px 37px;
    background: #BF9A5D;
    margin-top:10px;
}
.c-primary-btn:hover{
    background:#A6844C;
    color:#FFF;
}
.c-primary-btn__back{
    border-radius: 10px 10px 0 0;
}

.c-user-info-menu{
    display:flex;
    align-items:center;
    padding:0;
    margin:0;
    list-style:none;
}
.c-user-info-menu > li{
    position:relative;
}
.c-user-info-menu > li + li{
    margin-left:22px;
    padding-left:22px;
}
.c-user-info-menu > li + li:before{
    content:"";
    width:1px;
    height:20px;
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    background:rgba(255,255,255,0.40);
}
.c-user-info-menu > li a{
    color:#FFFFFF;
    font-size:20px;
    letter-spacing:2px;
    font-weight:700;
}
.c-user-info-menu > li a:hover{
    color:#E3C486;
}

.c-menu.c-menu{
    font-family: var(--raleway);
    color: #FFFFFF;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display:flex;
    align-items: center;
    justify-content: center;    
    width: fit-content;
    margin: 0 auto;
}
span.c-menu__hamburger{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: normal;
    column-gap: 12px;
}
.c-menu__hamburger img {
    vertical-align: middle;
}
.c-menu__close{
    display:none;
}
.c-menu.crossed .c-menu__hamburger{
    display:none;
}

.menu-toggle {
    width: 40px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display:block;
}
.menu-toggle.active{
    margin-top:-4px;
}
.menu-toggle svg {
    width: 100%;
    height: 100%;
}

.menu-toggle path {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    stroke: #BF9A5D;
    stroke-width: 6;
    stroke-linecap: round;
}
.c-menu.active .c-menu__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    column-gap: 12px;
}
.c-menu.active .c-menu__hamburger {
    display: none;
}

/* Hamburger state with more spacing */
.menu-toggle .top-line {
    transform: translateY(-16px);  /* Increased from 10px */
}
.menu-toggle .middle-line {
    /* No transform needed for middle line */
}
.menu-toggle .bottom-line {
    transform: translateY(16px);  /* Increased from 10px */
}

/* Close (X) state */
.menu-toggle.active .top-line {
    transform: rotate(45deg) translateY(0);
}
.menu-toggle.active .middle-line {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.active .bottom-line {
    transform: rotate(-45deg) translateY(0);
}

/*.o-main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -ms-animation: slide-down 0.7s;
    -webkit-animation: slide-down 0.7s;
    animation: slide-down 0.7s;
}

@-webkit-keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slide-down {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
*/

.c-banner-area{
    position: relative;
}
.c-banner-area img{
    width:100%;
}
.c-banner-area__caption{
    width:100%;
    padding:34px 0 45px;
    position:absolute;
    left:0;
    top:54%;
    transform:translateY(-50%);
}
.c-banner-area__caption:before{
    content:"";
    width:100%;
    height: 100%;
    max-width:1269px;
    position:absolute;
    left:0;
    top:0;
   /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+25,000000+80&0.65+25,0+80 */
    background: linear-gradient(to right,  rgba(0,0,0,0.65) 25%,rgba(0,0,0,0) 80%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

}
.c-banner-area__caption h2{
    color:#FFFFFF;
    font-size:60px;
    font-weight:400;
    letter-spacing:5px;
    margin:0;
}
.c-banner-area__caption .container{
    z-index:1;
    position:relative;
}

/**/

.c-body-area{
    padding:75px 0 65px;
}
.c-sec-sub-heading{
    color:#3D3D3D;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    line-height:1em;
    font-family: var(--raleway);
    margin:0 0 15px;
}
.c-sec-heading{
    color:#333333;
    font-size:40px;
    font-weight:400;
    margin:0 0 35px;
}
.c-sec-heading span{
    color:#CBAB6B;
    font-size:30px;
    display:block;
}

.c-grids-sec{
    margin:0 0 50px;
}
.c-single-img-box{
    position:relative;
    overflow:hidden;
}
.c-single-img-box img{
    width:100%;
}
.c-single-img-box__caption{
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    background:rgba(0, 0, 0, 0.7);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:all 0.3s ease-in;
    opacity:0;
    pointer-events:none;
}
.c-single-img-box p{
    color:#E3C486;
    font-size:22px;
    font-weight: 700;
    font-family: var(--raleway);
    display:flex;
    align-items:center;
    column-gap:18px;
    margin:0;
}
.c-single-img-box:hover .c-single-img-box__caption{
    opacity:1;
    pointer-events:auto;
}

.c-view-link{
    display:inline-flex;
    align-items:center;
    column-gap:18px;
    color:#000000;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
    margin-top:34px;
}
.c-view-link:hover{
    color:#E3C486;
}


.c-abt-image-box img{
    width:100%;
    height:343px;
    object-fit:cover;
}
.c-abt-image-box__content{
    padding:45px 112px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#c9a969+0,fcdda1+100 */
    background: linear-gradient(to right,  rgba(201,169,105,1) 0%,rgba(252,221,161,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
.c-abt-image-box__content p{
    color:#383838;
    font-size:18px;
    font-weight:400;
    font-family: var(--raleway);
    line-height:1.7em;
    margin:0;
}


.c-testimonial-sec{
    width:100%;
    position: relative;
    display: flex;
    align-items: center;
}
.c-testimonial__slider{
    width:100%;
    max-width:566px;
    display:block;
    margin:0 auto;
}
.c-testimonial__slider .item{
    padding:0 5px;
}
.c-testimonial__slider p{
    color:#FFFFFF;
    font-size:18px;
    font-weight:400;
    font-family: var(--raleway);
    line-height:1.7em;
    margin:0 0 25px;
}
.c-testimonial__slider h5{
    color:#FFFFFF;
    font-size:18px;
    font-weight:700;
    font-family: var(--raleway);
}
.c-testimonial__slider .slick-prev{
    display:none !important;
}

/**/

.c-inner-banner-area{
    width:100%;
    min-height:270px;
    display:flex;
    align-items:flex-end;
    justify-content:center;
}
.c-inner-banner-area h1{
    color: #FFFFFF;
    font-size:40px;
    font-weight: 400;
    margin: 0 0 48px;
}

/**/

.c-inner-page-module{
    padding:55px 0;
}
/*privacy css start*/

.c-content-sec h3 {
    color: #CBAB6B;
    font-size: 30px;
    font-weight:400;
    margin: 0 0 24px;
}
.c-content-sec h4 {
    color: #333333;
    font-size: 22px;
    font-weight:700;
    text-transform:uppercase;
    font-family: var(--raleway);
    letter-spacing:2px;
    margin: 0 0 14px;
}
.c-content-sec p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7em;
    font-family: var(--raleway);
    color: #383838;
    margin: 0 0 22px 0;
}
.c-content-sec p strong {
    font-weight: 600;
}

.c-content-sec p:last-child {
    margin: 0;
}
.c-content-sec p a {
    color: #CBAB6B;
    font-weight: 600;
}

.c-content-sec p a:hover {
    color: #383838;
}

.c-content-sec ul {
    margin: 0 0 25px;
    list-style: none;
    padding: 0;
}

.c-content-sec ul > li {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: #383838;
    font-family: var(--raleway);
    position: relative;
    padding-left: 28px;
}

.c-content-sec ul > li:before {
    content: "";
    width: 4px;
    height: 4px;
    position: absolute;
    left: 12px;
    top: 15px;
    background: #383838;
    border-radius:100%;
}

.c-content-sec ol {
    padding: 0 0 0 15px;
}

.c-content-sec ol > li {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 35px;
    color: #383838;
    position: relative;
    margin: 0 0 9px;
}

.c-primary-row {
    padding:20px 0;
    z-index: 1;
    position: relative;
}
.c-primary-row:first-child{
    padding-top:0;
}

.c-website-info{
    margin:0;
    padding:0;
    list-style:none;
}
.c-website-info > li{
    margin:0 0 35px;
}
.c-website-info > li h6{
    color:#3D3D3D;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    font-family: var(--raleway);
    margin:0;
}
.c-website-info > li a,
.c-website-info > li p{
    color:#CBAB6B;
    font-size:40px;
    font-weight: 400;
    margin:0;
}
.c-website-info > li p{
    font-size:30px;
}
.c-primary-form-area{
    background:#D9C295;
    padding:50px;
}
.c-primary-form-area h2{
    color:#F7F6F1;
    font-size:30px;
    font-weight:400;
    margin:0 0 25px;
}
/**/
.c-four-box-area{
    margin-top:40px;
}

.c-single-pro-box{
    background:#FFF;
    border-top:#D9C295 6px solid;
    border-bottom:#D9C295 1px solid;
    padding:40px 45px;
    height:100%;
}
.c-single-pro-box h3{
    color:#CBAB6B;
    font-size:30px;
    font-weight:400;
    margin:0 0 25px;
}
.c-single-pro-box p{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7em;
    font-family: var(--raleway);
    color: #383838;
    margin:0 0 18px;
}
/**/

.c-client-feedback-sec{
    padding:54px 0;
}
.c-cf-white-box{
    background:#FFF;
    border-top:#D9C295 3px solid;
    padding:95px 115px;
}
.c-cf-white-box p{
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7em;
    font-family: var(--raleway);
    color: #000000;
}
.c-cf-white-box h5{
    color:#CBAB6B;
    font-size:18px;
    font-family: var(--raleway);
    font-weight:700;
    margin:0;
}


/*form style*/

.c-primary-form-area .gform-theme--foundation .gform_fields{
    display: flex;
    flex-wrap: wrap;
    row-gap: 0;
    column-gap: 0;
}
.c-primary-form-area .gfield--type-radio{
    width:100%;
}

/* Radio buttons in single row */
.gform_wrapper.gform_wrapper .ginput_container_radio .gfield_radio,
.gform_wrapper.gform_wrapper .ginput_container_checkbox .gfield_checkbox{
    display: flex;
    flex-wrap: wrap;
    gap:20px;
    flex-direction: row;
    margin-bottom:20px;
}

.gform_wrapper.gform_wrapper .ginput_container_checkbox .gfield_checkbox{
    gap:7px;
    margin-bottom:30px;
}

.gform_wrapper.gform_wrapper .gchoice {
    margin: 0 !important;
    white-space: nowrap;
    display:flex !important;
    align-items:center;
    cursor: pointer;
}

.gform_wrapper.gform_wrapper .gform_fields .gfield{
    flex: 0 0 auto;
    width: 50%;
    padding:0 5px;
}

/* Name and phone in one row */
#field_1_1,
#field_1_3,
#field_1_11,
#field_2_1{
    display: inline-block;
    width:100% !important;
    box-sizing: border-box;
    vertical-align: top;
}

/* Full width fields */

#field_1_10{
    margin-left:auto;
}

/* Labels styling */
.gform_wrapper.gform_wrapper .gfield .gfield_label{
    display:none;
}
.gfield_required_text{
    display:none !important;
}

.gform_wrapper.gform_wrapper .ginput_container_date{
    position:relative;
}
.gform_wrapper.gform_wrapper .ginput_container_date:after{
    display:none !important;
}

.gform_wrapper.gform_wrapper legend.gfield_label{
    display:none;
}

.gform_wrapper.gform_wrapper .gfield--type-radio .gform-field-label,
.gform_wrapper.gform_wrapper .gfield--type-checkbox .gform-field-label{
    color:#383838;
    font-size:18px;
    font-weight:400;
    font-family: var(--raleway);
    margin-left:0;
}

/* Input fields styling */
.gform_wrapper.gform_wrapper input[type="text"],
.gform_wrapper.gform_wrapper input[type="email"],
.gform_wrapper.gform_wrapper input[type="tel"],
.gform_wrapper.gform_wrapper input[type="file"],
.gform_wrapper.gform_wrapper textarea {
    width: 100%;
    padding:0 20px;
    height:50px;
    background:#F7F6F1;
    border:#BF9A5D 1px solid;
    border-radius:0;
    margin-bottom:20px;
    box-sizing: border-box;
    font-size: 16px;
    color:#383838;
    font-weight:400;
    font-family: var(--raleway);
}
/* Change placeholder color for all Gravity Form input fields */
.gform_wrapper.gform_wrapper input::placeholder,
.gform_wrapper.gform_wrapper textarea::placeholder {
    color: #383838 !important; /* Replace with your desired color */
    opacity: 1 !important; /* Ensures full visibility (some browsers reduce opacity) */
}

/* Optional: Target specific field types differently */
.gform_wrapper.gform_wrapper input[type="text"]::placeholder,
.gform_wrapper.gform_wrapper input[type="email"]::placeholder,
.gform_wrapper.gform_wrapper input[type="tel"]::placeholder {
    color: #383838 !important; /* Lighter gray example */
}

.gform_wrapper.gform_wrapper textarea::placeholder {
    color: #383838 !important; /* Different color for textarea */
}

.gform_wrapper.gform_wrapper input[type="file"]{
    border:#BF9A5D 1px dashed;
    margin-bottom:0;
    padding-left:0 !important;
}

/* Textarea specific styling */
.gform_wrapper.gform_wrapper textarea {
    padding: 12px 20px;
    height: 141px !important;
    border-radius:0;
    resize: vertical;
    min-block-size: auto !important;
}
.gform_wrapper.gform_wrapper input[type="text"]:focus,
.gform_wrapper.gform_wrapper input[type="email"]:focus,
.gform_wrapper.gform_wrapper input[type="tel"]:focus,
.gform_wrapper.gform_wrapper textarea:focus{
    box-shadow:none !important;
    border:#BF9A5D 1px solid;
    outline:none;
}

.gform_wrapper.gform_wrapper .gfield_error .ginput_container input,
.gform_wrapper.gform_wrapper .gfield_error .ginput_container textarea{
    border: 1px solid red !important;
}
.validation_message,
.gform_validation_errors#gform_1_validation_container,
.gform_validation_errors#gform_2_validation_container{
    display:none !important;
}
.gform_validation_errors{
    border: 1px solid red !important;
}
.gform_validation_errors h2{
    margin:0px;
    
}
/* Radio button styling */
.gform_wrapper.gform_wrapper .gfield-choice-input {
    margin-right:8px;
}

.gform_wrapper.gform_wrapper .gfield--type-radio .ginput_container_radio .gchoice input,
.gform_wrapper.gform_wrapper .gfield--type-checkbox .ginput_container_checkbox .gchoice input{
    border-color:#BF9A5D;
    outline:none !important;
    width: 14px;
    height: 14px;
    display: unset;
}
.gform-theme--framework input[type=radio]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
    background-color: #000000 !important;
    height: 8px !important;
    width: 8px !important;
    display: block;
    margin: 0 auto !important;
}
    
.gform-theme--framework input[type=checkbox]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *))::before {
    color: #000 !important;
    margin-top: 1px;
    font-size: 12px !important;
}

#gform_ajax_spinner_1,
#gform_ajax_spinner_2{
    position:absolute !important;
    right:-35px;
    border-block-end-color: #000 !important;
    border-inline-start-color: #000 !important;
}
.gform_fileupload_rules{
    display:none !important;
}

/* Submit button - right aligned */
.gform_wrapper.gform_wrapper .gform_footer {
    justify-content:flex-end;
    margin-top:0 !important;
    position:relative;
    padding: 0 5px;
}

.gform_wrapper.gform_wrapper .gform-footer .gform_button {
    width:49.4% !important;
    border-radius:0 !important;
    border: none !important;
    border-top:#525252 1px solid !important;
    text-align: center !important;
    color: #000000 !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    letter-spacing:1px !important;
    text-transform: uppercase !important;
    padding: 17px 30px 17px 15px !important;
    background:#FFFFFF url('images/submit-btn-arrow.svg') no-repeat 18% center !important;
    margin-top: 0 !important;
}
/*.gform_wrapper.gform_wrapper#gform_wrapper_2 .gform-footer .gform_button {
    min-width:211px !important;
}*/
.gform_wrapper.gform_wrapper .gform-footer .gform_button:hover {
    background-color:#525252 !important;
    color:#FFF !important;
}




/*form style*/

.c-co-row h4{
    color:#333333;
    font-size:22px;
    font-weight:700;
    font-family: var(--raleway);
    text-transform:uppercase;
    letter-spacing:1px;
    margin:0 0 6px;
}
.c-co-row{
    padding-bottom:25px;
}
.c-co-row + .c-co-row{
    padding:25px 0;
    border-top:#E8DEC7 1px solid;
}
.c-co-row a{
    font-size:18px;
    font-weight:700;
    color:#000000;
    letter-spacing:1px;
    text-transform:uppercase;
    display:inline-flex;
    align-items:center;
    column-gap:10px;
}
.c-co-row a:hover{
    color:#D9C295;
}
/**/
.o-footer{
    background:#FFF;
}
.o-footer__info{
    padding:40px 0;
}
.o-footer-logo{
    display:block;
    width:fit-content;
    text-align:center;
}
.o-footer-logo img{
    margin:0 0 5px;
}
.o-footer-logo p{
    color:rgba(0, 0, 0, 0.44);
    font-size:16px;
    font-weight:400;     
    text-transform:uppercase;
    font-family: var(--raleway);
}
.o-footer__info__address p{
    color:#454545;
    font-size:16px;
    font-weight:300;
    line-height:1.9em; 
    font-family: var(--raleway);
}
.o-footer__info__address p a{
    color:#CBAB6B;
    font-size:18px;
    white-space:nowrap;
    letter-spacing:1px;
    font-weight:600;
}

.o-footer__menu-box{
    background:#221B0F;
    padding:18px 0;
}
.c-footer-nav{
    padding:0;
    margin:0;
    list-style:none;
    display:flex;
    align-items:center;
}
.c-footer-nav > li{
    line-height:1em;
}
.c-footer-nav > li > a{
    color:#FFFFFF;
    font-size:16px;
    font-weight:400;    
    font-family: var(--raleway);
}
.c-footer-nav > li + li{
    margin-left: 20px;
    padding-left: 20px;
    border-left: rgba(255, 255, 255, 0.40) 1px solid;
}
.c-footer-nav > li > a:hover,
.c-social-icon:hover{
    color:#CBAB6B;
}
.c-social-icon{
    color:#FFFFFF;
    font-size:24px;
}

.o-footer__copyright-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row;
    padding:26px 0;
}
.o-footer__copyright-bar p{
    color:#3C3C3C;
    font-size:14px;
    font-weight:400;
    font-family: var(--raleway);
    margin: 0;
}
.o-footer__copyright-bar p a{
    color:#3C3C3C;
}
.o-footer__copyright-bar p a strong{
    color:#CBAB6B;
    font-weight:600;
}
.o-footer__copyright-bar p a:hover{
    color:#CBAB6B;
}

/* responsive */


@media screen and (max-width: 1820.98px) {
   
}

@media screen and (max-width: 1620px) {    
    .o-footer__info__address p a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1440px) { 
    .c-header-nav > li > a {
        font-size: 32px;
        padding: 0 35px;
    }   
    .o-footer__info__address p a {
        font-size: 15px;
    }
}

@media screen and (max-width: 1199.98px) {
    .c-banner-area{
        height:800px;
    }
    .c-banner-area img{
        height:100%;
        object-fit:cover;
    }
    .c-banner-area__caption h2{
        font-size:40px;
    }
    .c-banner-area__caption {
        padding: 25px 0 34px;
    }
    .c-body-area {
        padding: 38px 0 34px;
    }
    .c-view-link{
        margin-top:18px;
    }
    .c-abt-image-box__content {
        padding: 25px 52px;
    }
    .c-testimonial__slider .item {
        padding: 0 65px;
    }
    .o-footer-logo{
        margin:0 auto 25px;
    }
    .c-single-pro-box {
        padding: 20px 20px;
    }
    .c-cf-white-box{
        padding:65px 40px;
    }

    #field_1_10 {
        margin-left: 0;
    }
    .c-website-info > li a, .c-website-info > li p {
        font-size: 24px;
    }
    .c-website-info > li p {
        font-size: 20px;
    }
    #gform_ajax_spinner_1, #gform_ajax_spinner_2 {
        right: -20px;
    }
}


@media screen and (max-width:991.98px) {
    .c-header-nav{
        flex-direction:column;
    }
    .c-header-nav > li + li:before{
        display:none;
    }
    .o-footer__info {
        padding: 18px 0;
    }
   .o-footer__info__address{
       text-align: center;
   }
   .o-footer__info__address .row > div{
       margin-bottom:20px;
   }
   .o-footer__info__address .row > div:last-child{
       margin-bottom:0;
   }
   .c-primary-row br{
        display:none;
   }

   .c-primary-form-area{
        margin-top:20px;
        padding:20px;
   }

}

@media screen and (max-width:767.98px) {
    .o-logo{
        width:129px;
    }
    .c-user-info-menu > li:first-child{
        display:none;
    }
    .c-user-info-menu > li + li{
        padding-left:0;
        margin-left:0;
    }
    .c-user-info-menu > li + li:before{
        display:none;
    }
    .c-header-nav > li > a {
        font-size: 24px;
    }
    .c-sec-heading {
        margin: 0 0 18px;
    }
    .c-abt-image-box__content {
        padding: 35px 50px;
    }
    .c-testimonial-sec{
        height: auto !important;
        min-height:530px;
    }
    .o-footer__info__address p a {
        font-size: 18px;
    }
    .c-footer-nav {
        width:100%;
        flex-wrap: wrap;
        justify-content:center;
        row-gap: 18px;
        margin-bottom:15px;
    }
    .o-footer__menu-box .d-flex{
        flex-wrap:wrap;
        justify-content:center !important;
    }
    .o-footer__copyright-bar{
        flex-direction:column;
        padding:15px 0;
        row-gap:12px;
    }
    .c-four-box-area {
        margin-top: 25px;
    }
    .c-single-pro-box h3 {
        font-size: 28px;
        margin: 0 0 20px;
    }
    .c-cf-white-box {
        padding: 35px 20px;
    }

    .c-primary-form-area h2 {
        font-size: 20px;
    }
    .gform_wrapper.gform_wrapper .ginput_container_radio .gfield_radio, .gform_wrapper.gform_wrapper .ginput_container_checkbox .gfield_checkbox{
        flex-direction:column !important;
        gap: 10px;
    }
    .gform_wrapper.gform_wrapper .gfield--type-radio .gform-field-label, .gform_wrapper.gform_wrapper .gfield--type-checkbox .gform-field-label{
        font-size:16px;
    }
    .gform_wrapper.gform_wrapper .gform_fields .gfield,
    .gform_wrapper.gform_wrapper .gform-footer .gform_button{
        width:100% !important;
    }
    .gform_wrapper.gform_wrapper .gform_fields .gfield{
        padding:0;
    }
   /* #gform_ajax_spinner_1, #gform_ajax_spinner_2 {
        right:-10;
        position: static !important;
    }*/
    .c-client-feedback-sec {
        padding: 35px 0;
    }
    .gform_wrapper.gform_wrapper#gform_wrapper_2 .gform-footer{
        margin-top: 20px !important;        
    }
    .gform_wrapper.gform_wrapper .gform_footer{
        padding: 0;
    }
}

@media screen and (max-width:575.98px) {
    
}

@media (min-width:576px) {
    
}

#field_1_5{
	width:100% !important;
}
