/*
Theme Name: NeonTech AUS
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
    --primary-color: #0066ff;
    --secondary-color: #333;
    --light-color: #f8f9fa;
    --dark-color: #161616;
    --neontech-color: #00aeef; 
    --hit-gray: #adb5bd;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--secondary-color);
}

.top-bar {
    background-color: var(--dark-color);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--light-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

/* .service-cards,
.service-cards .col-md-2 .service-card {
    border-bottom: 1px solid #e5e7ea;
} */

.service-cards .col-md-2 {
    border-right: 1px solid #e5e7ea;
}

.service-cards .col-md-2:last-child {
    border-right: none;
}

.service-card {
    padding: 30px;
    cursor: pointer;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    background-color: rgba(255,255,255,1);
    background-blend-mode: lighten;
}


.service-icon {
    font-size: 2.5rem;
    color: var(--neontech-color);
    margin-bottom: 60px;
    transition: all 0.3s ease;
}

.service-card h4 {
    font-size: 13pt;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.service-card p {
    font-weight: 200;
    margin-bottom: 0;
    transition: all 0.3s ease;
}

.service-card:hover {
    background-color: rgba(0,0,0,.8);
    background-blend-mode: darken;
}

.service-card:hover h4 {
    /* color: var(--neontech-color); */
    background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.service-card:hover p {
    color: var(--light-color);
}

.service-card:hover .service-icon {
    background: linear-gradient(180deg, #2af598 0%, #009efd 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-section {
    background-color: var(--light-color);
    padding: 80px 0;
}

.progress {
    height: 10px;
    margin-bottom: 20px;
}

.progress-bar {
    background-color: var(--primary-color);
}

.team-card {
    text-align: center;
    margin-bottom: 30px;
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.testimonial-card {
    padding: 30px;
    border-radius: 5px;    
    margin-bottom: 30px;
}

.testimonial-message {
    font-size: 1.5rem;
    font-style: italic;
}

.testimonial-rating > i,
.testimonial-message > i {
    color: var(--neontech-color);
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.neontech-section--testimonials div.img,
.neontech-section--about div.img {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 450px;
    border-radius: 40px;
}

.neontech-section--testimonials div.img.mt-5,
.neontech-section--about div.img.mt-5 {
    margin-top: 80px !important;
}

.neontech-section--testimonials,
.neontech-section--team {
    position: relative;
    padding-bottom: 80px;
}

.neontech-section--testimonials::before {
    content: '';
    opacity: .05;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(/wp-content/uploads/2025/08/world-map.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;  
    background-attachment: fixed;
    z-index: -1;  
}

.client-logo {
    height: 50px;
    margin: 20px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.blog-card {
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-img {
    height: 200px;
    object-fit: cover;
}
/*FOOTER*/

.footer-consultation {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    padding-top: 40px;
}

.footer-links ul {
    padding-left: 0 !important
}

.footer-links ul li {
    list-style: none !important;
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
    background-image: url(/wp-content/uploads/2025/07/GettyImages-1161358622.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: overlay;
    background-attachment: fixed;
    background-position: top center;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer p {
    color: var(--hit-gray);
}

.footer-links a {
    color: var(--hit-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icon {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--hit-gray);
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
}


/*OVERRIDES*/
#menu-header-menus > .menu-item > a {
    color: white;
    padding: 0 12px 0 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

#menu-header-menus > .menu-item > a:hover,
#menu-header-menus > .menu-item.current-menu-item > a {
    color: #00aeef;    
}

.navbar-expand-lg.bg-black {
    background-color: rgba(0,0,0,0) !important;
    top: 42px;
    box-shadow: none;
}

.top-bar.fixed-top {
    background-color: rgba(0,0,0,0);
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.top-bar.scrolled, 
.navbar.navbar-expand-lg.bg-black.scrolled {
    background-color: var(--dark-color) !important;
}

.top-bar.fixed-top.scrolled {
    border-bottom: rgba(255,255,255,0.25);
}

.navbar.navbar-expand-lg.bg-black.scrolled {
    border-top: 1px solid 
}

.hero-section {
    padding-top: 200px;
}

.neontech-font--color,
a.neontech-color--hover:hover,
a.neontech-color--hover:hover i {
    color: #00aeef !important;
}

/*HERO BANNER*/
.hero-section {
    height: 85vh;
    min-height: 400px;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
}

.video-background {
    top: 0;
    left: 0;
    /* z-index: -1; */
}

.video-overlay {
    top: 0;
    left: 0;
    z-index: 0;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.slick-prev:before, .slick-next:before {
    font-size: 40pt;
    opacity: 0.25;
}

.slick-next:hover::before, .slick-next:hover::before  {
    opacity: 0.50;
}

.slick-next {
    right: -50px;
}

.slick-prev {
    left: -50px;
}

/*WELCOME*/
.neontech-section--welcome h6,
.neontech-section--choose h6,
.neontech-section--testimonials h6,
body.page .page-left--column h6,
.neontech-section--team h6,
.neontech-section--about h6, 
.neontech-section--agentdownload h6{
    font-size: 12pt;
    font-weight: 700;
    color: var(--neontech-color);
    letter-spacing: 2px;
}

.neontech-section--welcome .neontech-heading,
.neontech-section--choose .neontech-heading,
.neontech-section--testimonials .neontech-heading,
body.page .page-left--column .neontech-heading,
.neontech-section--team .neontech-heading,
.neontech-section--about .neontech-heading,
.neontech-section--agentdownload .neontech-heading {
    font-size: 44pt;
    font-weight: 800;
} 

.neontech-section--welcome .neontech-subheading {
    font-size: 28pt;
}

.neontech-section--welcome .neontech-text,
body.page .page-left--column .neontech-text {
    font-size: 1.5rem;
}

.neontech-section--welcome {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.neontech-section--welcome .neontech-section--text {
    padding: 80px;
    color: white;
    background-color: rgba(0,0,0,0.7);
}

/*WHY CHOOSE*/
.neontech-section--choose {
    padding: 80px;
}

.neontech-section--choose .choose--card > div {
    height: 510px;
    max-height: 510px;
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.neontech-section--choose .choose--card > div > div {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.neontech-section--choose .choose--card:hover > div {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .8) 50%, rgba(0, 0, 0, 0) 100%);
}

.neontech-section--choose .choose--card:hover > div > div {
    transform: scale(1.12);
}

.neontech-section--choose .choose--card > div {
    color: var(--light-color);
}

.neontech-section--choose .choose--card a.read-more {
    text-align: center !important;
}

.neontech-section--choose .choose--card > div > p,
.neontech-section--choose .choose--card a.read-more {
   text-align: justify;
   position: absolute;
   transition: all 0.2s ease;
   bottom: -500px;
}

.neontech-section--choose .choose--card:hover > div > h4 {
    opacity: 0;
}
.neontech-section--choose .choose--card:hover > div > p,
.neontech-section--choose .choose--card:hover a.read-more {
    position: relative;
    bottom: 0;
}

/* Initially hidden shapes */
.card::before,
.card::after {
    content: '';
    position: absolute;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

/* Hexagon shape (using clip-path) */
.card::before {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    top: -60px;
    left: -60px;
    transform: scale(0.5) rotate(0deg);
}

/* Rectangle with diagonal cut (using clip-path) */
.card::after {
    width: 160px;
    height: 80px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%);
    bottom: -40px;
    right: -80px;
    transform: scale(0.5) rotate(0deg);
}

/* Hover effects */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    opacity: 0.8;
    transform: scale(1) rotate(15deg);
    top: -30px;
    left: -30px;
}

.card:hover::after {
    opacity: 0.8;
    transform: scale(1) rotate(-10deg);
    bottom: -20px;
    right: -40px;
}

/*RE-USABLES*/
.neon-color-gradient {
    background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.btn-neon {
    /* Base styling */
    position: relative;
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
    
    /* Remove Bootstrap defaults */
    box-shadow: none !important;
    background: transparent !important;
    color: #fff !important;
    text-shadow: 0px 1px 0px rgba(0,0,0,0.7);

}

/* Gradient background */
.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(
        90deg,
        #2af598 0%,
        #fc00ff 100%
    );
    background-size: 400% 400%;
    z-index: -1;
    animation: gradientBG 3s ease infinite;
}

/* Hover effect */
.btn-neon:hover::before {
    filter: brightness(1.2);
}

/* Active/click effect */
.btn-neon:active {
    transform: scale(0.95);
}

/* Optional glow effect */
.btn-neon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 55px;
    background: inherit;
    background-size: 400% 400%;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(10px);
    animation: gradientBG 3s ease infinite;
}

.btn-neon:hover::after {
    opacity: 0.7;
}

/*Button Neon - Outline Version*/
.btn-neon--outline {
    border-color: var(--neontech-color);
    color: var(--neontech-color) !important;
    border-width: 2px;
    font-weight: 600;
}

.btn-neon--outline:hover {
    text-decoration: underline !important;
    border-color: var(--neontech-color) !important;
    background-color: var(--neontech-color) !important;
    color: var(--light-color) !important;
}

/* Gradient animation */
@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/*Inner Pages */
.hero-section--page {
    min-height: 450px;
    padding: 200px 0 120px 0;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-color: black;
    background-size: cover;
}

.hero-section--page h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #00dbde 0%, #fc00ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.hero-section--page h6,
.hero-section--page h6 a {
    color: var(--hit-gray);
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: 600;
}

.hero-section--page h6 a:hover {
    text-decoration: underline;    
}

/*Contact Form*/
.contact-form--container {
    box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.15);
    -webkit-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.15);
    -moz-box-shadow: 0px 0px 12px 0px rgba(0,0,0,0.15);
    border-radius: 20px;
    background-color: var(--light-color);
}

.contact-form--container input[type="submit"] {
    border-radius: 4px;
    color: var(--neontech-color);
    background-color: transparent;
    padding: 6px 20px;
    font-size: 12pt;
    border: 2px solid var(--neontech-color);
    box-shadow: none;
    font-weight: 800;
    text-transform: uppercase;
    -webkit-appearance: none; 
    -moz-appearance: none;    
    appearance: none;  
    transition: all 0.3s ease;
}

.contact-form--container input[type="submit"]:hover {
    background-color: var(--neontech-color);
    color: var(--light-color);
}

.contact-form--container .wpcf7-response-output {
    margin: 0 !important;
    border: none !important;
    font-size: small;
    padding: 0 !important;
}

.contact-form--container .wpcf7-not-valid-tip {
    font-size: small;
}

.section-contact--page {
    position: relative;
}

.section-contact--page::before {
    content: '';
    opacity: .05;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: url(/wp-content/uploads/2025/08/world-map.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;  
    background-attachment: fixed;
    z-index: -1;  
}

.section-contact--page .list-group-flush li.list-group-item {
    background-color: transparent !important;
}


.services-child--page {
    padding: 80px 0;
}

.services-child--page .links {
    border: 1px solid #f1f1f1;
    border-radius: 10px;
}

.services-child--page .links .list-group-item a,
.entries-categories .list-group-item a {
    color: var(--dark-color);
}

.services-child--page .links .list-group-item.active-link a,
.services-child--page .links .list-group-item a:hover
.entries-categories .list-group-item a:hover  {
    color: var(--neontech-color) !important;
}

.services-child--page .support,
.section-entry--container.container .support {
    background-image: url(/wp-content/uploads/2025/08/call-support.avif);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 10px;
    position: relative;
    background-color: #161616;
    background-blend-mode: overlay;
}

.services-child--page .support h3,
.section-entry--container.container .support h3 {
    color: var(--light-color);
}

.services-child--page .support p,
.services-child--page .support > div > p a,
.section-entry--container.container .support p,
.section-entry--container.container .support > div > p a {
    color: var(--hit-gray);
    text-decoration: none;
}

.services-child--page .support > div,
.section-entry--container.container .support > div {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    margin: 50px 0px;
    padding-top: 50px;
}

.services-child--page .support > div > p,
.section-entry--container.container .support > div > p {
    margin-bottom: 0;
}

.services-child--page .support > div > p.phone a,
.section-entry--container.container .support > div > p.phone a {
    color: var(--light-color);
}

.services-child--content {
    padding-top: 4px;
}

.services-child--content .featured-img {
    width: 100%;
    border-radius: 10px;
}


.neontech-section--team .member-card {
    padding: 0 20px;
}

.neontech-section--team .member-card h4,
.neontech-section--team .member-card p {
    text-align: center;
}

.neontech-section--team .member-card .member-image {
    height: 360px;
    border-radius: 10px;
    background-color: var(--hit-gray);
    margin-bottom: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}


.page-not--found h1 {
    font-size: 80pt !important;
    font-weight: 800;
}

.page-not--found h2,
body.search-no-results .entry-title {
    font-weight: 800 !important;
}


.page-not--found p {
    margin-top: 15px;
    margin-bottom: 30px;
}

.page-not--found .container,
.section-search--result .container,
.section-entry--container.container,
.section-about--page {
    padding: 80px 0;
}

body.error404 .top-bar,
body.error404 nav, 
body.search-no-results .top-bar,
body.search-no-results nav {
    background-image: url(/wp-content/uploads/2025/08/404-bg-1.jpg) !important;
    background-position: center;
    background-size: cover;
}


.search-form .search-field {
    padding: 4px 6px;
}

.entry-summary--image img,
.blog-entries .entry-content img.wp-post-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-entries {
    margin-right: 15px;
}

.section-search--result .header {
    margin-bottom: 30px;
}

.blog-entries a,
.section-search--result .entry-title a {
    text-decoration: none;
}

.blog-entries .entry-title,
.section-search--result .entry-title {
    font-weight: 800;
}

.blog-entries .entry-title a,
.section-search--result .entry-title a  {
    color: var(--dark-color);
}

.blog-entries .entry-title a:hover {
    color: var(--neontech-color);
}

.blog-entries .entry-meta *{
    color: rgba(0, 0, 0, .5);
}

.blog-entries .entry-meta a:hover {
    text-decoration: underline;
}

.blog-entries div[itemprop="description"] p,
.section-search--result div[itemprop="description"] p {
    font-size: 11.5pt;
    text-align: justify;
}

.entry-summary {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.page-not--found .container {
    padding-top: 180px;
}

.neontech-section--about {
    margin-bottom: 50px;
}

.neontech-section--about p {
    text-align: justify;
}

.neontech-section--about .container {
    background-image: url(/wp-content/uploads/2025/08/abstract-point-line-wire-frame-and-composition-digitally-drawn-background-vector.jpg);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: contain;
}


/*MEDIA QUERIES*/

@media (max-width: 576px) {
    .navbar-expand-lg.bg-black {
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero-title,
    .hero-section--page h1, 
    .neontech-section--welcome .neontech-heading, .neontech-section--choose .neontech-heading, .neontech-section--testimonials .neontech-heading, body.page .page-left--column .neontech-heading, .neontech-section--team .neontech-heading, .neontech-section--about .neontech-heading {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding-top: 20vh;
        padding-bottom: 90px;
    }

    .neontech-section--choose {
        padding: 15px;
    }

    .neontech-section--welcome .neontech-section--text {
        padding: 30px;
    }

    .service-card {
        padding: 15px;
        border-right: none;
        border-bottom: 1px dashed grey ;
    }

    .service-icon {
        margin-bottom: 20px;
    }

    .neontech-section--choose .choose--card > div {
        margin-bottom: 10px;
        padding: 15px;
        max-height: 350px;
    }

    .neontech-section--choose > .container {
        padding-left: 0;
        padding-right: 0;
    }

    .neontech-section--welcome .neontech-text, body.page .page-left--column .neontech-text {
        font-size: 16px;
    }

    .navbar-brand > img {
        height: 45px;
        width: auto;
    }

    button.navbar-toggler {
        border: none;
        border-color: rgb(255,102,203);
    }

    button.navbar-toggler:focus {
        box-shadow: none;
    }

    button.navbar-toggler .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2300aeef' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .navbar-expand-lg.bg-black {
        background-color: rgba(0, 0, 0, .9) !important;
    }

    #menu-header-menus {
        margin-top: 20px;
        margin-left: 0 !important;
    }

    #menu-header-menus > li {
        padding: 8px 0;
        font-size: 1.2rem;
        border-bottom:1px solid rgba(255,255,255, 0.1);
    }

    #menu-header-menus > li:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    #menu-header-menus > li > a {
        display: block;
    }


    .footer-consultation {
        padding: 15px;
    }

    .wp-singular:not(.home) #main-content .neontech-section--choose,
    .wp-singular:not(.home) #main-content .neontech-section--about > .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .wp-singular:not(.home) #main-content .neontech-section--choose .choose--card {
        margin-bottom: 0 !important;
    }

    /* .wp-singular:not(.home) #main-content .neontech-section--choose .choose--card > div {
        height: 250px;
    } */

    .wp-singular:not(.home) .hero-section--page,
    .blog .hero-section--page {
        min-height: 250px;
        padding: 120px 0 50px 0;
    }

    .neontech-section--about p, 
    .neontech-section--welcome h6, .neontech-section--choose h6, .neontech-section--testimonials h6, body.page .page-left--column h6, .neontech-section--team h6, .neontech-section--about h6, 
    .hero-title, .hero-section--page h1, .neontech-section--welcome .neontech-heading, .neontech-section--choose .neontech-heading, .neontech-section--testimonials .neontech-heading, body.page .page-left--column .neontech-heading, .neontech-section--team .neontech-heading, .neontech-section--about .neontech-heading {
        margin-left: 0 !important;
    }


    .page-not--found .container, .section-search--result .container, .section-entry--container.container, .section-about--page {
        padding-top: 20px;
    }

    .section-contact--page > .container {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .section-contact--page .list-group-flush li.list-group-item {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .section-contact--page .contact-form {
        padding: 0 !important;
    }

    .section-contact--page .contact-form > div {
        margin: 0 !important;
    }

    .section-contact--page .contact-form .contact-form--container {
        padding: 15px !important;
        margin: 0 !important;
    }

    .section-contact--page .contact-form .contact-form--container .wpcf7-submit {
        width: 100%;
    }

    .error-404-container {
        padding-top: 120px;
    }
}