/* ===== HEADER + Nav ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.80);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0px;
    z-index: 9;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.12);
}

.logo {
    display: block;
    width: 240px;
    height: auto;
    padding: 15px;
}

.hamburger {
    position: relative;
    z-index: 2;
    opacity: 1;
}

.hamburger .hamburger-inner,
.hamburger .hamburger-inner::before,
.hamburger .hamburger-inner::after {
    background-color: #000;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
}

.nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.80);
    transform: translateX(100%);
    transition: all 0.5s ease-in;
    padding: 12px 24px;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    backdrop-filter: blur(4px);
    z-index: 1;
    font-weight: 500;
}

.nav-open .nav {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
}

.nav-ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style-type: none;
}

.nav-btn-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 8px;
}

.nav-link {
    font-size: 1.2rem;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:link, .nav-link:visited {
    color: #000;
    text-decoration: none;
}

.nav-contact-link {
    background-color: #808080;
    padding: 16px 32px;
    border-radius: 8px;
}

.nav-contact-link:link, .nav-contact-link:visited {
    color: #fff;
}

.nav-estimate-link {
    background-color: #2B5DFF;
    padding: 16px 32px;
    border-radius: 8px;
}

.nav-estimate-link:link, .nav-estimate-link:visited {
    color: #fff;
}

.nav-link-btn {
    border-bottom: 0;
}



/* Hero */
.hero {
    position: relative;
    width: 100%;
    height: 540px;
    background-size: cover;
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(background-images/hero.webp);
}

.hero-container {
    position: absolute;
    top: 61.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: rgba(128, 128, 128, 0.80);
    padding: 32px;
    border-radius: 8px;
    border: 4px solid #2B5DFF;
    /* box-shadow: 0px 0px 16px 4px rgba(64, 109, 255, 0.80); */
}

.hero-h2 {
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-logo {
    width: 240px;
    height: auto;
    display: block;
}

.hero-link-btn {
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    background-color: #2B5DFF;
    padding: 16px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-link-btn:link, .hero-link-btn:visited {
    color: #fff;
    text-decoration: none;
}



/* Info Bar */
.info-bar {
    font-weight: 500;
    background-color: #e6e6e6;
    color: #000;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    gap: 96px;
    padding: 12px 0;
}

.info-rail {
    display: inline-flex;
    gap: 96px;
    align-items: center;
    animation: slide 32s linear infinite;
}

.info-bar:hover .info-rail {
    animation-play-state: paused;
}



/* Blue Bar */
.top-bar-main-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.top-bar-right-container {
    display: flex;
    flex-direction: row;
    align-self: center;
    justify-content: space-between;
    align-items: center;
    max-width: 640px;
}

.top-bar-heading {
    color: #fff;
    text-transform: uppercase;
}

.top-bar-subheading {
    color: #000;
    margin-bottom: 32px;
}

.top-bar-link-btn {
    font-weight: 500;
    display: inline-block;
    font-size: 1.2rem;
    background-color: #808080;
    padding: 16px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.top-bar-link-btn:link, .top-bar-link-btn:visited {
    color: #fff;
    text-decoration: none;
}

.top-bar-img {
    display: block;
    max-width: 32%;
    height: auto;
    filter: brightness(0);
    opacity: 50%;
}

.north-globe-logo {
    width: 16%;
    max-width: 16%;
}

.north-alt-logo {
    width: 28%;
    max-width: 28%;
}

.north-main-logo {
    width: 40%;
    max-width: 40%;
}



/* About */
.about-img-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 160px;
    gap: 12px;
    margin-bottom: 32px;
}

.about-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.about-img1 {
    grid-column: 1 / 6;
    grid-row: 1 / span 2;
}

.about-img2 {
    grid-column: 1 / 4;
}

.about-img3 {
    grid-column: 4 / 6;
}

/* About Card */
.about-card {
    background-color: #e6e6e6;
    border: 4px solid #cccccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 32px;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.12);
}

.about-icon {
    display: block;
    width: 48px;
    height: auto;
    margin-bottom: 24px;
}

.about-number {
    font-size: 1.6rem;
    color: #000;
    font-weight: 500;
}

.about-info-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    overflow: hidden;
}

.about-heading {
    color: #000;
    text-transform: uppercase;
}

/* Trusted by */
.trusted-by-logos {
    white-space: nowrap;
}

.trusted-by-slide {
    display: inline-flex;
    flex-direction: row;
    gap: 48px;
    justify-content: center;
    align-items: center;
    animation: 24s slide infinite linear;
    overflow: auto;
}

.trusted-by-img {
    width: 148px;
    height: auto;
    filter: brightness(0);
    opacity: 24%;
}

.last-img {
    margin-right: 24px;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.trusted-by-logos:hover .trusted-by-slide {
    animation-play-state: paused;
}



/* Awards Bar */
.awards-bar {
    background-color: #941C2F;
    color: #fff;
    padding: 48px 0px;
}

.awards-main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.awards-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 640px;
}

.award-img {
    height: auto;
    object-fit: cover;
}

.award-img1 {
    max-width: 48%;
}

.award-img2 {
    max-width: 42%;
}



/* Services */
.services-section {
    background-color: #e6e6e6;
}

.services-heading {
    color: #000;
    text-transform: uppercase;
    margin-bottom: 64px;
    text-align: center;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.service-div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-img {
    width: 100%;
    height: 240px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.service-heading {
    color: #000;
}

.service-link {
    display: inline-block;
    align-self: flex-end;
    font-weight: 600;
}

.service-link:link, .service-link:visited {
    color: #2B5DFF;
    text-decoration: none;
}



/* WHY DO YOU NEED HI-TECH LANDSCAPING SERVICES? */
.why-section {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.6)), url(background-images/grid-11.webp);
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: bottom;
}

.why-section-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-top-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-heading, .why-h3 {
    color: #000;
}

.why-heading {
    text-transform: uppercase;
}

.why-link-btn {
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    background-color: #2B5DFF;
    padding: 16px 32px;
    border-radius: 8px;
    align-self: flex-start;
    transition: all 0.3s;
}

.why-link-btn:link, .why-link-btn:visited {
    color: #fff;
    text-decoration: none;
}

.why-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
    background-color: rgba(255, 255, 255, 0.64);
    box-shadow: 0px 0px 8px 4px #e6e6e6;
    padding: 24px;
    border-radius: 8px;
}

.architect-icon {
    display: block;
    width: 64px;
    height: auto;
    background-color: #fff;
    border-radius: 8px;
    border: 4px solid #e6e6e6;
    padding: 8px;
    margin-bottom: 16px;
    /* box-shadow: 0px 0px 8px 4px #e6e6e6; */
}

.leaf-icon {
    display: block;
    width: 32px;
    height: auto;
}

.why-h3-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}



/* Gallery */
.gallery-section {
    background-color: #808080;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.gallery-top-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.gallery-heading {
    color: #fff;
    text-transform: uppercase;
}

.gallery-info {
    color: #cccccc;
}

.gallery-link-btn {
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    background-color: #FB8B24;
    padding: 16px 32px;
    border-radius: 8px;
    align-self: center;
    transition: all 0.3s;
}

.gallery-link-btn:link, .gallery-link-btn:visited {
    color: #fff;
    text-decoration: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-img1 {
    grid-column: 1 / 3;
}

.gallery-img2 {
    grid-column: 3 / 5;
}

.gallery-img3 {
    grid-column: 1 / 5;
}

.gallery-img4 {
    grid-column: 1 / 5;
}

.gallery-img5 {
    grid-column: 1 / 3;
    height: 100%;
}

.gallery-img6 {
    grid-column: 3 / 5;
}



/* WHY CHOOSE NORTH COMPANY */
.why-choose-section {
    background-color: #D9F0FF;
}

.why-choose-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.why-choose-heading {
    color: #000;
    text-transform: uppercase;
}

.why-choose-top-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 8px;
}

.card {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 24px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
}

.top-card {
    display: flex;
    gap: 12px;
    align-items: center;
}

.card-heading {
    color: #000;
}

.bottom-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-subheading {
    border-top: 2px solid #cccccc;
    padding-top: 12px;
}

.small-card {
    background-color: #fff;
    padding: 12px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.12);
}

.tech-icon {
    display: block;
    width: 32px;
    height: auto;
}

.garden-icon {
    display: block;
    width: 64px;
    height: auto;
}

.why-choose-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}



/* Our Process */
.process-spacer {
    display: none;
    width: 4px;
    height: auto;
    background-color: #ccc;
}

.our-process-section {
    background-color: #e6e6e6;
}

.our-process-main-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.our-process-top-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.our-process-heading {
    color: #000;
    text-transform: uppercase;
}

.our-process-icon {
    display: block;
    width: 64px;
    height: auto;
    background-color: #808080;
    border: 4px solid #666666;
    border-radius: 8px;
    padding: 8px;
}

.process-number {
    font-weight: 600;
}

.our-process {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    column-gap: 24px;
}

.process-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-link {
    align-self: flex-end;
}

.process-link:link, .process-link:visited {
    color: #2B5DFF;
    text-decoration: none;
    font-weight: 600;
}

.our-process-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 64px;
}



/* Location */
.location-section {
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.92)), url(background-images/city-map.webp);
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: top;
}

.location-main-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.location-top-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: rgba(255, 255, 255, 0.64);
    box-shadow: 0px 0px 8px 4px #e6e6e6;
    border-radius: 8px;
    padding: 24px;
}

.location-heading {
    color: #000;
    text-transform: uppercase;
}

.locations-ul-grid {
    display: grid;
    gap: 4px;
    grid-template-columns: repeat(2, 1fr);
    list-style-type: none;
}

.location-link:link, .location-link:visited {
    color: #000;
    text-decoration: none;
}

.location-number-span:link, .location-number-span:visited {
    color: #2B5DFF;
    font-weight: 600;
    text-decoration: none;
}

.google-map {
    width: 100%;
    height: 320px;
    border-radius: 8px;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.12);
}



/* Testimonials */
.testimonials-section {
    background-color: #e6e6e6;
}

.testimonials-main-container {
    display: flex;
    flex-direction: column; 
    gap: 24px;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonials-carousel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonials-link-btn {
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    background-color: #2B5DFF;
    padding: 16px 32px;
    border-radius: 8px;
    align-self: flex-start;
    transition: all 0.3s;
}

.testimonials-link-btn:link, .testimonials-link-btn:visited {
    color: #fff;
    text-decoration: none;
}

.testimonial {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.12);
}

.testimonial-name {
    font-size: 1.4rem;
}

.testimonial-city {
    font-weight: 600;
}

.dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border: 2px solid #808080;
    border-radius: 50%;
    cursor: pointer;
}

.dot--fill {
    background-color: #808080;
}

/* ~ JavaScript Carousel ~ */
.testimonial {
    display: none;
}

.testimonial.is-active {
    display: flex;
}
/* ~ */



/* Free Estimate Form */
.form-background {
    background-image: linear-gradient(rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.64)), url(background-images/green.webp);
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
}

.form-main-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.form-top-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background-color: #fff;
    border: 16px solid rgba(230, 230, 230, 0.64);
    overflow: hidden;
    background-clip: padding-box;
    padding: 24px;
    border-radius: 8px;
    height: fit-content;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.12);
}

.estimate-heading {
    color: #000;
}

.form-top-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-top-logo {
    display: block;
    width: 20%;
    max-width: 116px;
    height: auto;
    object-fit: cover;
    filter: brightness(0);
    opacity: 32%;
}

.yelp-logo {
    width: 18%;
    max-width: 96px;
}

.homestars-logo {
    max-width: 102px;
}

.free-estimate-form {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 16px solid rgba(230, 230, 230, 0.64);
    border-radius: 8px;
    max-width: 600px;
    overflow: hidden;
    background-clip: padding-box;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.12);
}

.form-bar {
    background-color: #2B5DFF;
    padding: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-bar-logo {
    width: 240px;
    height: auto;
}

.form-fieldset {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 2px solid #cccccc;
    border-radius: 8px;
    padding: 24px 12px 12px 12px;
    margin: 0 24px 0 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-legend {
    color: #000;
    background-color: #fff;
    border-radius: 8px;
    font-weight: 600;
    padding: 0px 12px;
}

.form-group input, textarea {
    padding: 12px;
    border: 2px solid #e6e6e6;
    outline: none;
    border-radius: 8px;
    resize: none;
    font-size: 1rem;
}

.form-group input:focus, textarea:focus {
    outline: none;
    border: 2px solid #cccccc;
}

.form-fieldset input, textarea {
    padding: 12px;
    border: 2px solid #e6e6e6;
    outline: none;
    border-radius: 8px;
    resize: none;
}

.property-type-fieldset {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.form-group input[type="file"] {
    padding: 12px;
    border: 2px dashed #e6e6e6;
    border-radius: 8px;
    background-color: #fafafa;
    cursor: pointer;
}

.form-group input[type="file"]::-webkit-file-upload-button {
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    margin-right: 12px;
    cursor: pointer;
    transition: all 0.1s ease;
}

.file-upload {
    margin: 0 24px;
}

.small-text {
    color: #b3b3b3;
    font-size: 0.64rem;
}

.form-submit-btn {
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    align-self: flex-end;
    color: #fff;
    background-color: #2B5DFF;
    padding: 16px 32px;
    margin: 0 24px 24px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



/* Blog */
.blog-section {
    background-color: #e6e6e6;
}

.blog-main-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog-top-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blog-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog-link-btn {
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    background-color: #2B5DFF;
    padding: 16px 32px;
    border-radius: 8px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.blog-link-btn:link, .blog-link-btn:visited {
    color: #fff;
    text-decoration: none;
}

.blog-post-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
}

.blog-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.12);
}

.blog-post-img {
    display: block;
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-tag {
    background-color: #2B5DFF;
    color: #fff;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 8px;
    align-self: flex-start;
}

.blog-post-heading {
    color: #000;
}

.blog-link {
    align-self: flex-end;
}

.blog-link:link, .blog-link:visited {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}



/* Certificates & Achievements */
.certs-bar {
    background-color: #000;
}

.certs-heading {
    text-align: center;
    margin-bottom: 48px;
}

.bottom-imgs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.bottom-img {
    display: block;
    max-width: 64%;
    height: auto;
    filter: brightness(100);
    opacity: 48%;
}



/* ===== FOOTER ===== */
.footer {
    color: #000;
    font-weight: 500;
    background-image: linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.4)), url(background-images/modern-house2.webp);
    background-size: cover;
    background-position: center;
    padding-top: 16px;
}

.footer-container {
    background-color: rgba(255, 255, 255, 0.80);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.12);
    /* width: fit-content; */
}

.footer-logo {
    width: 240px;
    height: auto;
    display: block;
    margin-bottom: 4px;
}

.socials-ul {
    display: flex;
    gap: 8px;
    list-style: none;
}

.socials-svg {
    display: inline-block;
    width: 32px;
    height: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
}

.contact-div {
    display: flex;
    gap: 8px;
    align-items: center;
}

.contact-icon {
    display: inline-block;
    width: 24px;
    height: auto;
}

.footer-number:link, .footer-number:visited {
    color: #000;
    text-decoration: none;
}

.footer-email:link, .footer-email:visited {
    color: #000;
    text-decoration: none;
}

.nav-footer-ul {
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 32px;
    list-style: none;
    flex-wrap: wrap;
    line-height: 0.6;
}

.nav-footer-link {
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}

.nav-footer-link:link, .nav-footer-link:visited {
    color: #000;
    text-decoration: none;
}

.copyright-container {
    font-size: 0.8rem;
    font-weight: 400;
    background-color: #2B5DFF;
    color: #fff;
    text-align: center;
    padding: 12px 0;
}