/*
    Theme Name: Theme For Geo Home Improvement
    Theme URI: https://github.com/Open-FS/geo-home-improvement
    Author: OpenFS LLC
    Author URI: https://digitalmarketingnewjersey.us/
    Description: Theme For Geo Home Improvement
    Requires at least: 6.4
    Tested up to: 6.4.3
    Requires PHP: 8.0
    Version: 1.0
    License: GNU General Public License v2 or later
    License URI: http://www.gnu.org/licenses/gpl-2.0.html
    Tags: real estate
    Text Domain: roofing
    
*/

:root {
    --brand-primary: #144a8f;
    --brand-secondary: #071221;
}

/* Montserrat Font */

@font-face {
    font-family: 'Montserrat';
    src: url('../openfs/assets/fonts/Montserrat-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../openfs/assets/fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../openfs/assets/fonts/Montserrat-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../openfs/assets/fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../openfs/assets/fonts/Montserrat-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../openfs/assets/fonts/Montserrat-Light.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}

/*----------------------------------------*/

/*  BUTTON CSS START
/*----------------------------------------*/

.primary-btn-1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 20px 24px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.6s;
    text-decoration: none;
}

.primary-btn-1 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--brand-primary-1);
    transition: all 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.primary-btn-1:hover {
    color: #fff;
    border: 1px solid var(--brand-primary-1);
}

.primary-btn-1:hover span {
    width: 225%;
    height: 1000.5px;
}

.primary-btn-1:active {
    background-color: #fff;
}

.text-primary {
    color: var(--brand-primary) !important;
}

.bg-primary {
    background-color: var(--brand-primary) !important;
}

.bg-secondary {
    background-color: var(--brand-secondary) !important;
}

/*-------------------------------------
GENERAL
----------------------------------------*/

html {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #4e5465 !important;
    overflow-x: hidden;
}

/*-------------------------------------
HEADER
----------------------------------------*/

.header {
    border-bottom: 1px solid rgb(255 255 255 / 23%);
    z-index: 999;
}

.header.sticky {
    background: var(--brand-primary);
    backdrop-filter: blur(16px);
}

.sticky {
    position: fixed !important;
    top: 0;
    z-index: 999;
    inset-inline-end: 0;
    inset-inline-start: 0;
    width: 100%;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    background: #fff;
    box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#menu-lg {
    display: none;
}

/* submenu mobile */

.grupo-servicios li a {
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    padding: 8px 16px;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
}

.menu-item-has-children:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.sub-menu {
    box-shadow: 0px 3px 9px 0px rgb(0 0 0 / 65%);
    top: 70%;
    padding: 10px 0;
    border-radius: 5px;
    display: block;
    visibility: hidden;
    transition: 0.3s ease;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(20px);
    background: #ffffff;
    text-align: center;
    position: absolute;
    z-index: 999;
    width: 280px;
    margin-top: 4px;
}

.sub-menu li > a {
    color: #000 !important;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    padding: 5px 10px;
}

.sub-menu li {
    padding: 5px 12px;
    text-align: left;
    border-bottom: 1px solid #efefef;
    list-style: none;
}

.sub-menu li > a:hover {
    color: #4091bf;
}

.sub-menu li::before {
    display: none;
}

.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a,
.nav-menu .current-menu-ancestor > a {
    color: #e1b400 !important;
    font-weight: bold;
    position: relative;
}

.nav-mobile-menu .current-menu-item > a,
.nav-mobile-menu .current_page_item > a,
.nav-mobile-menu .current-menu-ancestor > a {
    color: #00b5d8 !important;
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu .current-menu-ancestor > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: calc(100% - 32px);
    margin-left: 16px;
    height: 4px;
    background-color: #e1b400;
}

.nav-menu li > a {
    position: relative;
    display: inline-block;
    color: #fff;
    /* color base */
    transition: color 0.3s ease;
}

.nav-menu li > a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: calc(100% - 32px);
    height: 4px;
    background-color: #e1b400;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
    margin-left: 16px;
}

.nav-menu li > a:hover {
    color: #e1b400;
}

.nav-menu li > a:hover::after {
    transform: scaleX(1);
}

.sub-menu li.menu-item a::after {
    content: none !important;
}

.sub-menu li.menu-item:hover {
    background-color: var(--brand-secondary) !important;
}

.sub-menu li.menu-item:hover a {
    color: #ffffff !important;
}

.nav-menu .current-menu-item > a::after,
.nav-menu .current_page_item > a::after,
.nav-menu .current-menu-ancestor > a::after {
    transform: scaleX(1);
}

@media (min-width: 992px) {
    #menu-lg {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
    }
    #menu-toggle {
        display: none;
    }
}

#menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

/*-------------------------------------
MAIN SLIDER SECTION
----------------------------------------*/

.section-subtitle {
    font-size: 18px;
}

.sub-title {
    letter-spacing: 0.5rem;
    display: block;
}

.circle-icon {
    width: 40px;
    height: 20px;
    border: 1px solid var(--brand-primary);
    border-radius: 999px;
    background-color: transparent;
    position: absolute;
    left: 0;
    top: 0;
}

.circle-icon::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30px;
    height: 10px;
    margin: 4px;
    background-color: var(--brand-primary);
    border-radius: 999px;
}

.slide__shapes .shape-1 {
    position: absolute;
    top: 123px;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    z-index: 2;
    animation: slide-right-sm 5000ms ease 1;
}

.slide__shapes .shape-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom left;
    z-index: 1;
    animation: slide-right-sm 5s ease 1;
}

.slide__shapes .shape-3 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom left;
    animation: slide-right-sm 5s ease 1;
}

.slide__shapes .shape-4 {
    position: absolute;
    top: 0px;
    right: 175px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    animation: slide-left-sm 5s ease 1;
}

.slide__shapes .shape-5 {
    position: absolute;
    top: 4px;
    right: 360px;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    animation: slide-left-sm 5s ease 1;
}

.slide__shapes .shape-6 {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    animation: slide-left-sm 5s ease 1;
}

@keyframes slide-left-sm {
    from {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    to {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes slide-right-sm {
    from {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    to {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.slide__bg {
    z-index: 1;
}

.slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 32, 57, 0.7);
    z-index: 2;
}

.slide__shapes {
    z-index: 3;
    pointer-events: none;
}

.slide__content {
    z-index: 4;
}

.swiper-slide {
    height: 100vh !important;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    background-color: #000;
    transform: scale(1.1);
    transition: transform 7s ease;
    opacity: 1;
}

.swiper-slide-active .hero-img {
    transform: scale(1);
}

/*-------------------------------------
SERVICES SECTION
----------------------------------------*/

.feature-card__animation {
    height: 100%;
    position: relative;
    z-index: 1;
    transition: all 3s linear 0s;
}

.feature-card__animation:before {
    background: var(--brand-primary);
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    width: 0;
    height: 100%;
    top: 0;
    bottom: 0;
    transition: all 0.3s ease-in-out;
    z-index: -1;
}

.feature-card__animation:hover:before {
    left: 0;
    right: auto;
    width: 100%;
}

.features-section {
    background-color: var(--brand-secondary);
    padding-top: 80px;
    padding-bottom: 80px;
}

.features-section__bg-shape-1 {
    background-image: url(assets/img/shape-27.png);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.features-section__bg-shape-2 {
    background-image: url(assets/img/shape-28.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}

.feature-card__dot-pattern {
    background-image: url(assets/img/shape-25.png);
    background-repeat: no-repeat;
    background-position: top right;
}

.feature-card,
.feature-card p {
    transition: all 0.7s ease;
}

.feature-card:hover,
.feature-card:hover p {
    color: white !important;
}

.feature-card:hover .feature-card__dot-pattern {
    filter: invert(1) brightness(2);
}

.feature-card svg {
    transition: all 0.7s ease;
}

.feature-card:hover svg {
    color: white;
}

.feature-card__circle {
    background-color: var(--brand-primary);

    -webkit-mask-image: url(assets/img/shape-24.png);
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: bottom right;

    mask-image: url(assets/img/shape-24.png);
    mask-repeat: no-repeat;
    mask-position: bottom right;
}

.feature-card img {
    transition: filter 0.7s ease;
}

.feature-card:hover img {
    filter: brightness(0) invert(1);
}

/*-------------------------------------
ABOUT SECTION
----------------------------------------*/

.about-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .about-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.about-section__img {
    border-top-right-radius: 5rem;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section__rotate {
    transform-origin: 0px 0px;
    transform: rotate(-90deg) translate(-70%);
}

.call-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 1px solid var(--brand-primary);
}

/*----------------------------------------*/

/*  WORK PROCESS SECTION
/*----------------------------------------*/

.work-process-section {
    background-image: url(assets/img/process-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.work-process-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 768px) {
    .work-process-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.work-process-section__icon {
    width: 150px;
    height: 150px;
    border-radius: 999px;
    box-shadow: 0px 2px 9px #ededed;
}

.work-process-box__icon span {
    position: absolute;
    top: -3px;
    left: -5px;
    width: 34px;
    height: 34px;
    background: #fff;
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*----------------------------------------*/

/*  BUTTON CSS START
/*----------------------------------------*/

.primary-btn-1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--brand-primary);
    border: 1px solid var(--brand-primary);
    display: inline-flex;
    align-items: center;
    line-height: normal;
    white-space: nowrap;
    padding: 20px 24px;
    gap: 10px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.6s;
}

.primary-btn-1 span {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--brand-secondary);
    transition: all 0.6s;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.primary-btn-1:hover {
    color: #fff;
    border: 1px solid var(--brand-secondary);
}

.primary-btn-1:hover span {
    width: 225%;
    height: 1000.5px;
}

.primary-btn-1:active {
    background-color: #fff;
}

/*----------------------------------------*/

/* FOOTER 
/*----------------------------------------*/

.footer {
    background-color: var(--brand-secondary);
}

.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 100px 0;
}

.footer-top__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/img/shape-f-1.png);
    background-repeat: no-repeat;
    background-position: bottom left;
}

.footer-top__shape-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(assets/img/shape-f-2.png);
    background-repeat: no-repeat;
    background-position: top right;
}

.footer-top .menu-footer a {
    color: #babcbf;
    text-decoration: none;
    transition: all 0.5s ease;
    font-size: 15px;
}

.footer-top .menu-footer li:hover a {
    color: #e1b400;
}

/*----------------------------------------*/

/* TEXT SLIDER SECTION 
/*----------------------------------------*/

.section-space {
    padding-top: 80px;
    padding-bottom: 80px;
}

@media (min-width: 768px) {
    .section-space {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

.text-slider-box {
    display: flex;
    position: relative;
    animation: aspro-scroller 27s linear infinite;
    will-change: transform;
    white-space: nowrap;
    gap: 10px;
}

.text-slider-box .slide-box {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

@keyframes aspro-scroller {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}

.text-slider-box .slide-box h2 {
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 46px;
    text-transform: uppercase;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--brand-secondary);
    color: transparent;
}

/*----------------------------------------*/

/* PROJECTS SECTION 
/*----------------------------------------*/

.project-card figure img {
    aspect-ratio: 3 / 3.5;
}

.project-card__text {
    right: 24px;
    left: 24px;
    bottom: 24px;
}

.project-card figure::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    background: linear-gradient(180deg, rgba(16, 32, 57, 0) -19.59%, rgba(16, 32, 57, 0.8) 92.89%);
}

.project-card figure {
    overflow: hidden;
    position: relative;
}

.project-card figure img {
    transition: all 0.5s ease;
}

.project-card:hover figure img {
    transform: scale(1.1);
}

/*----------------------------------------*/

/* CONTACT SECTION 
/*----------------------------------------*/

.contacts-section {
    background-image: url(assets/img/testimonial-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*----------------------------------------*/

/* CTA SECTION 
/*----------------------------------------*/

.cta-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background-image: url(assets/img/help-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.font-footer h3 {
    font-size: 20px;
}

.font-footer p {
    font-size: 14px;
    color: #cbcaca;
}

.copyright-text small {
    font-size: 12px;
    color: #d7d9db;
}

.feature-text h5 {
    font-size: 19px;
}

.text-services h3 {
    line-height: 0px;
}

.text-services h3 a {
    color: #15417f;
    font-size: 20px !important;
    line-height: 22px;
}

.font-footer ul li {
    margin-bottom: 10px;
}

.social-rrss {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 50%;
    right: 0;
    margin-bottom: 10px;
    width: 195px;
    z-index: 9999;
}

.social-rrss a {
    text-decoration: none;
    font-weight: bold;
    padding: 0.6em;
    margin: 3px 0px;
    text-align: left;
    transform: translateX(150px);
    transition: all 0.5s;
    display: flex;
}

.book {
    color: #fff;
    border-radius: 10px 0px 0px 10px;
}

.icon {
    margin-right: 5px;
}

.book p {
    color: #fff;
    margin-bottom: 0px;
}

.social-rrss a i {
    margin-right: 20px;
    width: 30px;
    height: 30px;
    background: #fff;
    text-align: center;
    line-height: 30px;
    border-radius: 100%;
}

.social-rrss > a:hover {
    transform: translateX(0px);
    color: white;
}

.floatWapp-movil {
    position: fixed;
    width: auto;
    bottom: 20px;
    left: 20px;
    background-color: #ea1826;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    transition: 0.3s all;
    display: flex;
    padding: 9px 20px 3px;
    text-decoration: none;
}

.floatWapp-movil:hover {
    color: #fff;
    transform: scale(1.08);
    transition: 0.3s all;
}

.floatWapp-movil svg {
    margin-top: 3px;
}

.floatWapp-movil:after,
.floatWapp-movil:before {
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    border-radius: 20%;
    width: auto;
    height: 100%;
}

.content-w h1 {
    font-size: 16px;
    margin-bottom: 0px;
    font-weight: 600;
}

.content-w p {
    margin-bottom: 0px;
    font-size: 17px;
}

::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

::-webkit-scrollbar-thumb {
    background: #102039;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #102039;
    box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:active {
    background-color: #102039;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 0px;
}

::-webkit-scrollbar-track:hover,
::-webkit-scrollbar-track:active {
    background: #ffffff;
}

/*----------------------------------------*/

/* CONTACT SECTION 
/*----------------------------------------*/

.banner {
    background-image: url('assets/img/banner.png');
    padding-top: calc(123px + 80px);
    padding-bottom: 80px;
}

.banner__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 32, 57, 0.5);
    /* backdrop-filter: blur(6px); */
    z-index: 0;
}

.banner__shape-1 {
    right: 450px;
}

@media (min-width: 992px) {
    .banner {
        padding-top: calc(20px + 160px);
        padding-bottom: 65px;
    }
}

.call-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 1px solid var(--brand-primary);
}

/* offcanvas */

.offcanvas {
    background-color: var(--brand-secondary);
    border-left: 2px solid var(--brand-primary);
}

.navbar-nav:not(.menu-mobile) li:hover::before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
}

.navbar-nav li > a {
    text-transform: uppercase;
    font-weight: 600;
    color: #e4e4e4;
    font-size: 14px;
    text-decoration: none;
}

.navbar-nav li > a:hover {
    color: var(--brand-primary);
}

.navbar-nav li.current-menu-item > a,
.navbar-nav li.current-menu-ancestor > a {
    color: var(--brand-primary);
    font-weight: 600;
}

.down-icon {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.down-icon.rotated {
    transform: rotate(180deg);
}

.cta-section .overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 29%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.form-home .nf-error-msg,
.form-home .nf-error,
.form-home .nf-error-required-error {
    color: #fff !important;
    font-weight: 600;
}

.form-home .nf-error-msg,
.form-home .ninja-forms-req-symbol {
    color: #ffffff !important;
}

.form-modal .nf-form-fields-required {
    display: none;
}

.modal-content {
    background-color: #102039 !important;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.modal-header {
    border-bottom: none !important;
}

.modal-title {
    font-weight: 700;
    font-size: 25px;
}

.form-modal.nf-error-msg,
.form-modal.nf-error,
.form-modal .nf-error-required-error {
    color: #f5c466 !important;
    font-weight: 600;
}

.form-modal .nf-field-label label {
    color: #fff !important;
    font-size: 1rem;
}

.form-modal .nf-error-msg,
.form-modal .ninja-forms-req-symbol {
    color: #edbe64 !important;
}

.logo-img {
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.07);
    cursor: pointer;
}

.text-page-contact small {
    font-weight: 700;
}

.text-page-contact p {
    font-size: 14px;
    font-weight: 600;
}

.btn-close {
    filter: invert(1) brightness(200%);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.bg-form-single {
    background: #34496b;
    border-radius: 10px;
}

.bg-form-single.nf-error-msg,
.bg-form-single.nf-error,
.bg-form-single .nf-error-required-error {
    color: #f5c466 !important;
    font-weight: 600;
}

.bg-form-single .nf-field-label label {
    color: #fff !important;
    font-size: 1rem;
}

.bg-form-single .nf-error-msg,
.bg-form-single .ninja-forms-req-symbol {
    color: #edbe64 !important;
}

.bg-form-single .nf-form-fields-required {
    display: none;
}

.project-categories li {
    font-size: 15px;
}

.project-categories li a {
    color: #2f5a9f;
    font-weight: 600;
}

.project-categories li a :hover {
    color: #ea1826;
}

.card-call-single {
    border-radius: 15px;
    overflow: auto;
}

.img-sinlge-services {
    object-fit: cover;
    height: 400px;
    border-radius: 20px;
    object-position: center;
}

.content-services-single {
    margin-top: 10px;
    margin-bottom: 10px;
}

.content-services-single p {
    text-align: justify;
}

ul.service-details-page-list li:before {
    content: '\e921';
    font-family: 'icomoon';
    color: red;
    font-weight: 600;
    position: relative;
    top: 0;
    left: -10px;
}

.content-services-single li {
    list-style: none !important;
}

.title-content-services-single {
    font-weight: 700;
}

.accordion-item {
    border-color: none !important;
}

.accordion-button {
    background: #ffffff;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-primary) !important;
    background-color: #fff !important;
    box-shadow: none !important;
}

.accordion-button::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-right-icon lucide-chevrons-right"%3E%3Cpath d="m6 17 5-5-5-5"%3E%3C/path%3E%3Cpath d="m13 17 5-5-5-5"%3E%3C/path%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: 0px;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevrons-right-icon lucide-chevrons-right"%3E%3Cpath d="m6 17 5-5-5-5"%3E%3C/path%3E%3Cpath d="m13 17 5-5-5-5"%3E%3C/path%3E%3C/svg%3E');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: 0px;
    transform: rotate(90deg);
}

.accordion-button:focus {
    z-index: 3;
    border-color: #ffffff !important;
    outline: 0;
    box-shadow: none !important;
}

.accordion-button {
    font-size: 17px;
    font-weight: 600;
}

.form-home .nf-error.field-wrap .nf-field-element:after {
    background: #102039 !important;
    color: #ffffff !important;
    font-family: FontAwesome;
    font-size: 20px;
    content: '\f12a';
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    height: 48px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    transition: all 0.5s;
}

.form-home input[type='submit'] {
    background-color: #102039 !important;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.5s;
}

.form-home input[type='submit']:hover {
    background: #ffffff !important;
    color: #102039 !important;
    transition: all 0.5s;
}

.form-modal .nf-form-fields-required {
    display: none;
}

.bg-form-single {
    background: #34496b;
    border-radius: 10px;
}

.bg-form-single.nf-error-msg,
.bg-form-single.nf-error,
.bg-form-single .nf-error-required-error {
    color: #f5c466 !important;
    font-weight: 600;
}

.bg-form-single input[type='submit'] {
    background-color: #ea1826 !important;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    cursor: pointer;
    transition: all 0.5s;
}

.bg-form-single input[type='submit']:hover {
    background: #ffffff !important;
    color: #ea1826 !important;
    transition: a7ll 0.5s;
}

.bg-form-single .nf-field-label label {
    color: #fff !important;
    font-size: 1rem;
}

.bg-form-single .nf-error-msg,
.bg-form-single .ninja-forms-req-symbol {
    color: #edbe64 !important;
}

.bg-form-single .nf-form-fields-required {
    display: none;
}

.text-balance {
    text-wrap: balance;
}

/*-----------------
 SECTION GALLERY
-------------------*/
.galeria-imagenes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-gap: 0px;
    padding-left: 0px;
}

.galeria-imagenes li {
    overflow: hidden;
    position: relative;
}

.galeria-imagenes img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.7s;
}

.galeria-imagenes li:hover img {
    transform: scale(1.1);
}

.icon-tabler-circle {
    fill: var(--brand-primary);
}

.circle-pattern {
    filter: hue-rotate(214deg) saturate(150%) brightness(110%);
    opacity: 0.5 !important;
}

.section-content {
    padding-top: 60px;
    padding-bottom: 60px;
}
.content-galeri {
    padding-top: 50px;
    padding-bottom: 50px;
}

.nf-form-content textarea.ninja-forms-field {
    height: 65px !important;
}
