/*-----------------------------------*\
 * #style.css
\*-----------------------------------*/

/**
 * copyright 2022 @codewithsadee
 */

/*-----------------------------------*\
 * #CUSTOM PROPERTY
\*-----------------------------------*/

:root {
    /**
     * colors
     */

    --medium-sea-green: hsl(157, 100%, 36%);
    --silver-chalice: hsl(0, 0%, 66%);
    --granite-gray: hsl(0, 0%, 40%);
    --sonic-silver: hsl(208, 7%, 46%);
    --dodger-blue: hsl(205, 100%, 50%);
    --oxford-blue: hsl(219, 37%, 18%);
    --light-gray: hsl(0, 0%, 80%);
    --gunmetal: hsl(216, 14%, 21%);
    --cultured: hsl(210, 12%, 97%);
    --charcoal: hsl(210, 29%, 24%);
    --white: hsl(0, 0%, 100%);
    --jet: hsl(0, 0%, 20%);
    --white-1: hsl(0, 0%, 100%);
    --platinum: hsl(0, 0%, 90%);
    --shadow-1: 2px 15px 24px var(--black_5);
    --shadow-2: 0 2px 28px var(--black_10);
    --radius-5: 10px;
    --black_10: hsla(0, 0%, 0%, 0.1);
    --black_5: hsla(0, 0%, 0%, 0.05);
    --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);


    --gradient: linear-gradient(0.5turn, hsl(213, 42%, 91%), hsl(0, 0%, 100%));

    /**
     * typography
     */

    --ff-rubik: "Rubik", sans-serif;

    --fs-1: 28px;
    --fs-2: 26px;
    --fs-3: 24px;
    --fs-4: 20px;
    --fs-5: 18px;
    --fs-6: 17px;
    --fs-7: 15px;
    --fs-8: 13px;

    --fw-300: 300;
    --fw-500: 500;

    /**
     * transition
     */

    --transition: 0.25s ease-in-out;
    --transition-2: 0.5s ease;

    /**
     * spacing
     */

    --section-padding: 80px 0;
}

/*-----------------------------------*\
   * #RESET
  \*-----------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

input {
    font: inherit;
    background: none;
    width: 100%;
}

button {
    background: none;
    border: none;
    font: inherit;
    cursor: pointer;
}

a,
img,
span,
input,
button,
ion-icon {
    display: block;
}

ion-icon {
    --ionicon-stroke-width: 25px;
}

:focus {
    outline-offset: 4px;
}

::marker {
    color: var(--sonic-silver);
}

html {
    font-family: var(--ff-rubik);
    scroll-behavior: smooth;
}

body {
    background: var(--white);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: hsl(0, 0%, 90%);
}

::-webkit-scrollbar-thumb {
    background: hsl(0, 0%, 80%);
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(0, 0%, 70%);
}

/*-----------------------------------*\
   * #REUSED STYLE
  \*-----------------------------------*/

.container {
    padding: 0 15px;
}

.btn {
    color: var(--oxford-blue);
    font-size: var(--fs-7);
    font-weight: var(--fw-500);
    text-transform: capitalize;
    padding: 10px 34px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

.btn-primary {
    background: var(--dodger-blue);
    color: var(--white);
    border-color: var(--dodger-blue);
}

.btn-primary:is(:hover, :focus) {
    --dodger-blue: hsl(205, 100%, 55%);
}

.h1,
.h2,
.h3,
.h4 {
    color: var(--gunemtal);
    font-weight: var(--fw-500);
}

.h1 {
    font-size: var(--fs-1);
}

.h2 {
    font-size: var(--fs-2);
}

.h3 {
    font-size: var(--fs-3);
}

.h4 {
    font-size: var(--fs-5);
}

/* .section-title {
    text-align: center;
  } */

.section-text {
    color: var(--sonic-silver);
    line-height: 1.6;
}

.section-subtitle {
    color: var(--sonic-silver);
    font-size: var(--fs-8);
    font-weight: var(--fw-500);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/*-----------------------------------*\
   * #HEADER
  \*-----------------------------------*/

header {
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 4;
    transition: var(--transition);
}

header.active {
    box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.2);
}

header .container {
    max-width: unset;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-open-btn,
.nav-close-btn {
    font-size: 35px;
    padding: 5px;
    color: var(--silver-chalice);
}

:is(.nav-open-btn, .nav-close-btn) ion-icon {
    --ionicon-stroke-width: 40px;
}

.navbar {
    background: var(--white);
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    padding-top: 60px;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: -2px 0 4px hsla(0, 0%, 0%, 0.1);
}

.navbar.active {
    left: 0;
    visibility: visible;
}

.nav-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
}

.navbar-link {
    color: var(--granite-gray);
    font-size: var(--fs-5);
    font-weight: var(--fw-500);
    padding: 20px;
}

.navbar-link:is(:hover, :focus) {
    background: hsla(0, 0%, 0%, 0.05);
}

.navbar-item:not(:last-child) {
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.05);
}

.navbar .btn-primary {
    text-align: left;
    padding: 20px;
    width: 100%;
    border-radius: 0;
}

.overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    pointer-events: none;
    transition: var(--transition);
}

.overlay.active {
    background: hsla(0, 0%, 0%, 0.5);
    pointer-events: all;
}

/*-----------------------------------*\
   * #HERO
  \*-----------------------------------*/

.hero {
    position: relative;
    padding-top: 145px;
    padding-bottom: 40px;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient);
    z-index: -1;
}

.hero-content {
    text-align: center;
    margin-bottom: 40px;
}

.hero-title {
    margin-bottom: 30px;
}

.hero-form {
    margin-bottom: 25px;
}

.input-field {
    background: var(--white);
    color: var(--jet);
    font-weight: var(--fw-300);
    padding: 14px 18px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    margin-bottom: 25px;
}

.input-field:focus {
    border-color: var(--medium-sea-green);
    outline: none;
}

.hero .btn-primary {
    margin-inline: auto;
}

.hero-text {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
}

.hero-text span:not(:last-child) {
    margin-bottom: 10px;
}

.hero-banner img {
    width: 100%;
}

/*-----------------------------------*\
   * #SERVICE
  \*-----------------------------------*/

.service {
    margin-top: 70px;
    padding: var(--section-padding);
    text-align: center;
}

.service .section-title {
    margin-bottom: 15px;
}

.service .section-text {
    margin-bottom: 45px;
}

.service-list {
    display: grid;
    gap: 40px;
}

.service .card-icon {
    width: max-content;
    margin-inline: auto;
    color: var(--sonic-silver);
    font-size: 60px;
    margin-bottom: 20px;
}

.service .card-title {
    margin-bottom: 12px;
}

.card-text {
    color: var(--sonic-silver);
    line-height: 1.6;
    max-width: 250px;
    margin-inline: auto;
}

/*-----------------------------------*\
   * #ABOUT
  \*-----------------------------------*/

/* .about {
    padding: var(--section-padding);
} */

.about-top,
.about-banner {
    margin-bottom: 40px;
}

.about-banner img {
    width: 100%;
}

.about .section-title,
.about-content .section-text:not(:last-child),
.about-bottom-title,
.about-bottom-item:first-child {
    margin-bottom: 20px;
}

.about-bottom-list {
    margin-left: 18px;
}

.about-bottom-item {
    list-style: disc;
}

/*-----------------------------------*\
   * #FEATURES
  \*-----------------------------------*/

.features {
    padding: var(--section-padding);
    text-align: center;
}

.features .section-title {
    margin-bottom: 50px;
}

.features-list {
    display: grid;
    gap: 40px;
}

.features .card-icon {
    color: var(--sonic-silver);
    font-size: 60px;
    width: max-content;
    margin-inline: auto;
    margin-bottom: 20px;
}

.features .card-title {
    margin-bottom: 12px;
}

/*-----------------------------------*\
   * #PRICING
  \*-----------------------------------*/

.pricing {
    background: var(--cultured);
    padding: var(--section-padding);
}

.pricing-content {
    margin-bottom: 40px;
}

.pricing .section-title {
    margin-bottom: 20px;
}

.pricing .section-text {
    margin-bottom: 30px;
}

.pricing-banner img {
    width: 100%;
}

/*-----------------------------------*\
   * #FAQ
  \*-----------------------------------*/

.faq {
    padding: var(--section-padding);
}

.faq :is(.section-subtitle, .section-title) {
    text-align: center;
}

.faq .section-title {
    margin-bottom: 50px;
}

.grid-wrapper {
    margin-bottom: 40px;
}

.faq .card-title {
    margin-bottom: 15px;
}

.faq-list:first-child,
.faq-list>li:not(:last-child) {
    margin-bottom: 30px;
}

.faq-item-list {
    margin-left: 18px;
}

.faq-item-list li {
    list-style: disc;
}

.faq-bottom-link {
    color: var(--gunemtal);
    font-size: var(--fs-5);
    font-weight: var(--fw-500);
    text-align: center;
}

.faq-bottom-link>a {
    color: var(--sonic-silver);
    text-decoration: underline;
    margin-top: 5px;
    display: inline-block;
}

.faq-bottom-link>a:is(:hover, :focus) {
    color: var(--granite-gray);
}

/*-----------------------------------*\
   * #CTA
  \*-----------------------------------*/

.cta {
    padding: 0 0 var(--section-padding);
    text-align: center;
}

.cta-title {
    color: var(--gunemtal);
    font-size: var(--fs-4);
    font-weight: var(--fw-500);
    margin-bottom: 20px;
}

.cta .btn-primary {
    margin-inline: auto;
    margin-bottom: 10px;
}

.cta-button-wrapper>a {
    color: var(--sonic-silver);
    font-size: var(--fs-7);
    text-decoration: underline;
    display: inline-block;
}

.cta-button-wrapper>a:is(:hover, :focus) {
    color: var(--granite-gray);
}

/*-----------------------------------*\
   * #FOOTER
  \*-----------------------------------*/

.footer-top {
    padding: var(--section-padding) 50px;
    background: var(--cultured);
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-link-box {
    display: grid;
    gap: 40px;
}

.footer-list li:not(:last-child) {
    margin-bottom: 10px;
}

.footer-list li:first-child {
    margin-bottom: 15px;
}

.footer-link {
    color: var(--sonic-silver);
    max-width: 150px;
}

.footer-link:is(:hover, :focus) {
    text-decoration: underline;
}

.divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            hsl(0, 0%, 88%) 25% 75%,
            transparent);
}

.footer-bottom {
    padding: 30px 0;
    background: var(--cultured);
    text-align: center;
}

.copyright {
    color: var(--sonic-silver);
    line-height: 1.5;
    margin-bottom: 15px;
}

.copyright>a {
    color: inherit;
    display: inline-block;
}

.copyright>a:is(:hover, :focus) {
    text-decoration: underline;
}

.social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 13px;
}

.social-list>li {
    position: relative;
}

.social-list>li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -6px;
    width: 1px;
    height: 100%;
    background: var(--sonic-silver);
}

.social-link {
    color: var(--sonic-silver);
}

.social-link:is(:hover, :focus) {
    text-decoration: underline;
}

/*-----------------------------------*\
   * #GO TOP
  \*-----------------------------------*/

.go-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--silver-chalice);
    color: var(--white);
    font-size: 25px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition);
    z-index: 2;
}

.go-top-btn.active {
    opacity: 1;
    visibility: visible;
}

.go-top-btn:is(:hover, :focus) {
    --silver-chalice: hsl(0, 0%, 60%);
}

/*-----------------------------------*\
    #BLOG
  \*-----------------------------------*/

.section-blog {
    margin-bottom: 100px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.card-container {
    display: flex;
    width: 1240px;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

.card {
    margin: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 300px;
}

.card-header img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    min-height: 250px;
}

.tag {
    background: #cccccc;
    border-radius: 50px;
    font-size: 12px;
    margin: 0;
    color: #fff;
    padding: 2px 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.tag-teal {
    background-color: #47bcd4;
    margin-top: 2px;
    margin-bottom: 15px;
}

.tag-purple {
    background-color: #5e76bf;
    margin-top: 2px;
    margin-bottom: 15px;
}

.tag-pink {
    margin-top: 2px;
    margin-bottom: 15px;
    background-color: #cd5b9f;
}

.card-body p {
    font-size: 13px;
    margin: 0 0 40px;
}

.user {
    display: flex;
    margin-top: auto;
}

.user img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.user-info h5 {
    margin: 0;
}

.user-info small {
    color: #545d7a;
}

.title-blog {
    margin-bottom: 10px;
}

/* .contact_us_green * {
    font-family: Nunito, sans-serif;
  } */

.contact_us_green .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
}

.contact_us_green input:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
}

.contact_us_green textarea:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
}

.contact_us_green .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
}

.contact_us_green .responsive-cell-block {
    min-height: 75px;
}

.contact_us_green .responsive-container-block.container {
    max-width: 1320px;
    margin-top: 60px;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
}

.contact_us_green .responsive-container-block.big-container {
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-left: 50px;
}

.contact_us_green .text-blk.contactus-head {
    font-size: 40px;
    line-height: 50px;
    font-weight: 500;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
}

.contact_us_green .text-blk.contactus-subhead {
    max-width: 385px;
    color: #939393;
    font-size: 18px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
}

.contact_us_green .contact-svg {
    padding-top: 0px;
    padding-right: 25px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 65px;
    height: 40px;
}

.contact_us_green .social-media-links {
    margin-top: 80px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    width: 250px;
    display: flex;
    justify-content: space-evenly;
}

.contact_us_green .social-svg {
    width: 35px;
    height: 35px;
}

.contact_us_green .text-box {
    display: flex;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
}

.contact_us_green .contact-text {
    margin-top: 10px;
    color: #939393;
}

.contact_us_green .input {
    height: 50px;
    width: 90%;
    border-top-width: 2.5px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
    border-left-width: 2.5px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #a2a2a2;
    border-right-color: #a2a2a2;
    border-bottom-color: #a2a2a2;
    border-left-color: #a2a2a2;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 16px;
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-left: 15px;
}

.contact_us_green .textinput {
    height: 200px;
    width: 95%;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #a2a2a2;
    border-right-color: #a2a2a2;
    border-bottom-color: #a2a2a2;
    border-left-color: #a2a2a2;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 16px;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 20px;
}

.contact_us_green .submit-btn {
    min-width: 290px;
    height: 60px;
    background-color: var(--dodger-blue);
    font-size: 18px;
    /* font-weight: 700; */
    color: white;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #767676;
    border-right-color: #767676;
    border-bottom-color: #767676;
    border-left-color: #767676;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    cursor: pointer;
}

.contact_us_green .btn-wrapper {
    display: flex;
    justify-content: center;
}

.contact_us_green .text-blk.input-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
    margin-left: 0px;
}

.contact_us_green .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
}

.contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_us_green .head-text-box {
    display: none;
}

.contact_us_green .line {
    border-right-width: 1.8px;
    border-right-style: solid;
    border-right-color: #a2a2a2;
}

.contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 0px;
}

/*-----------------------------------*\
   * #RESPONSIVE
  \*-----------------------------------*/

/**
   * responsive for lareger than 450px screen
   */

@media (min-width: 450px) {
    /**
     * CUSTOM PROPERTY
     */

    :root {
        /**
       * typography
       */

        --fs-1: 30px;
    }

    /**
     * REUSED STYLE
     */

    .container {
        padding: 0 25px;
    }

    /**
     * HERO
     */

    .hero-text {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 13px;
    }

    .hero-text span:not(:last-child) {
        position: relative;
        margin-bottom: 0;
    }

    .hero-text span:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 0;
        right: -6px;
        width: 1px;
        height: 100%;
        background: var(--sonic-silver);
    }

    /**
     * SERVICE
     */

    .card-text {
        max-width: 300px;
    }

    /**
     * CTA
     */

    .cta-title {
        --fs-4: 25px;
        padding-inline: 30px;
    }

    /**
     * FOOTER
     */

    .footer-link-box {
        grid-template-columns: 1fr 1fr;
    }
}

/**
   * responsive for lareger than 500px screen
   */

@media (min-width: 500px) {
    /**
     * CUSTOM PROPERTY
     */

    :root {
        /**
       * typography
       */

        --fs-1: 32px;
        --fs-2: 32px;
        --fs-3: 30px;
        --fs-5: 19px;
        --fs-8: 15px;
    }

    /**
     * REUSED STYLE
     */

    .container {
        max-width: 480px;
        margin-inline: auto;
    }

    .btn {
        --fs-7: 17px;
    }

    .section-text,
    .card-text {
        font-size: var(--fs-6);
    }

    /**
     * HERO
     */

    .input-field {
        font-size: 17px;
    }
}

/**
   * responsive for lareger than 768px screen
   */

@media (min-width: 768px) {
    /**
     * CUSTOM PROPERTY
     */

    :root {
        /**
       * typography
       */

        --fs-1: 40px;
        --fs-2: 34px;
        --fs-3: 32px;
    }

    /**
     * REUSED STYLE
     */

    .container {
        max-width: 820px;
    }

    /**
     * SERVICE
     */

    .servicee-item:not(:last-child) {
        margin-bottom: 30px;
    }

    .sservice-list {
        padding-right: 80px;
    }

    .servicee-list {
        padding-right: 80px;
    }

    .servicee-item:nth-child(even) {
        transform: translateX(80px);
    }

    /**
     * HERO
     */

    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: left;
        margin-bottom: 0;
    }

    .hero .btn-primary {
        margin-inline: 0;
    }

    .hero-text {
        justify-content: flex-start;
    }

    /**
     * INSTRUCTION
     */

    .instruction {
        overflow: hidden;
    }

    .instruction .section-text {
        max-width: 40ch;
        margin-inline: auto;
    }

    .instruction-list {
        grid-template-columns: 1fr 1fr;
    }

    .instruction-card {
        position: relative;
    }

    .instruction-card::after {
        content: "";
        width: 160px;
        height: 12px;
        background-image: url("../images/connect-line.png");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        top: 50px;
        right: -95px;
    }

    .instruction-list>li:nth-child(even) .instruction-card::after {
        display: none;
    }

    /**
     * SERVICE
     */

    .service .section-text {
        max-width: 650px;
        margin-inline: auto;
    }

    .service-list {
        grid-template-columns: 1fr 1fr;
        gap: 60px 0;
    }

    /**
     * ABOUT
     */

    .about-top,
    .about-bottom {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }

    .about-bottom .about-content {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    /**
     * FEATURES & FAQ
     */

    .features .section-title,
    .faq .section-title {
        max-width: 600px;
        margin-inline: auto;
    }

    .features-list {
        grid-template-columns: 1fr 1fr;
    }

    /**
     * PRICING
     */

    .pricing .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 40px;
    }

    /**
     * CTA
     */

    .cta-card {
        box-shadow: 0 15px 30px hsla(0, 0%, 0%, 0.07);
        padding-block: 60px;
        border-radius: 16px;
    }

    .cta-title {
        --fs-4: 30px;
        padding-inline: 0;
        max-width: 550px;
        margin-inline: auto;
    }

    /**
     * FOOTER
     */

    .footer-link-box {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-bottom .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .copyright {
        margin-bottom: 0;
    }
}

/**
   * responsive for lareger than 1024px screen
   */

@media (min-width: 1024px) {
    /**
     * CUSTOM PROPERTY
     */

    :root {
        /**
       * typography
       */

        --fs-1: 43px;
        --fs-2: 41px;
        --fs-3: 38px;
        --fs-7: 16px;
        --fs-8: 16px;

        /**
       * spacing
       */

        --section-padding: 100px 0;
    }

    /**
     * REUSED STYLE
     */

    .container {
        max-width: 980px;
        padding: 0;
    }

    .btn {
        --fs-7: 18px;
        padding-block: 16px;
    }

    /**
     * HEADER
     */

    header {
        padding: 35px 15px;
        background: transparent;
    }

    header.active {
        padding: 15px;
        background: var(--white);
    }

    header .container {
        max-width: 980px;
    }

    .nav-open-btn,
    .nav-close-btn {
        display: none;
    }

    .navbar {
        opacity: 1;
        visibility: visible;
        position: static;
        width: auto;
        height: auto;
        padding-top: 0;
        box-shadow: none;
        background: none;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-list {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-right: 20px;
    }

    .navbar-item:not(:last-child) {
        border-bottom: none;
    }

    .navbar-link {
        --fs-5: 16px;
        color: var(--charcoal);
        padding: 0 10px;
    }

    .navbar-link:is(:hover, :focus) {
        background: none;
    }

    .navbar .btn-primary {
        --fs-7: 16px;
        width: auto;
        padding: 10px 23px;
        border-radius: 4px;
    }

    /**
     * HERO
     */

    .hero::before {
        left: 50%;
    }

    .hero .container {
        gap: 100px;
    }

    .input-field {
        font-size: 19px;
    }

    /**
     * SERVICE
     */

    .service .section-text {
        --fs-6: 18px;
        margin-bottom: 50px;
    }

    .service-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    /**
     * ABOUT
     */

    .about-top,
    .about-bottom {
        gap: 40px;
    }

    .about-top {
        margin-bottom: 100px;
    }

    .about-banner {
        margin-bottom: 0;
    }

    /**
     * FEATURES
     */

    .features-card {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        text-align: left;
    }

    /**
     * FAQ
     */

    .grid-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /**
     * CTA
     */

    .cta-card {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 50px;
    }

    .cta-title {
        --fs-4: 32px;
        margin-inline: 0;
        margin-bottom: 0;
        text-align: left;
    }

    /**
     * FOOTER
     */

    .footer-top .container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .footer-brand {
        max-width: 300px;
        margin-bottom: 0;
    }

    .footer-list li:not(:last-child) {
        margin-bottom: 15px;
    }

    .footer-list li:first-child {
        margin-bottom: 20px;
    }

    .footer-link {
        min-width: 130px;
    }
}

/**
   * responsive for lareger than 1200px screen
   */

@media (min-width: 1200px) {
    /**
     * CUSTOM PROPERTY
     */

    :root {
        /**
       * typography
       */

        --fs-1: 52px;
        --fs-2: 50px;
        --fs-3: 46px;
        --fs-5: 22px;
        --fs-6: 19px;
    }

    /**
     * REUSED STYLE
     */

    .container {
        max-width: 1100px;
    }

    /**
     * HEADER
     */

    header .container {
        max-width: 1100px;
    }

    .navbar-list {
        margin-right: 30px;
    }

    .navbar-link {
        --fs-5: 17px;
        padding: 0 15px;
    }

    /**
     * HERO
     */

    .hero {
        padding-top: 180px;
    }

    .hero-form {
        margin-bottom: 40px;
    }

    .hero .btn-primary {
        margin-top: 40px;
    }

    /**
     * SERVICE, FEATURES
     */

    .service .section-text {
        --fs-6: 20px;
        max-width: 700px;
        margin-bottom: 70px;
    }

    .service .card-icon,
    .features .card-icon {
        font-size: 70px;
    }

    /**
     * INSTRUCTION
     */

    .instruction-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .instruction-list>li:nth-child(even) .instruction-card::after {
        display: block;
    }

    .instruction-list>li:last-child .instruction-card::after {
        display: none;
    }

    /**
     * ABOUT
     */

    .about-top,
    .about-bottom {
        gap: 60px;
    }

    /**
     * FEATURES, FAQ
     */

    .features .section-title,
    .faq .section-title {
        max-width: 700px;
        margin-bottom: 80px;
    }

    /**
     * CTA
     */

    .cta-title {
        --fs-4: 33px;
        max-width: 700px;
    }

    /**
     * FOOTER
     */

    .footer-brand {
        max-width: 350px;
    }

    .footer-top .h4 {
        --fs-5: 20px;
    }

    .footer-link {
        font-size: 18px;
        min-width: 140px;
    }

    .copyright,
    .social-link {
        font-size: 17px;
    }

    .social-list {
        column-gap: 21px;
    }

    .social-list>li:not(:last-child)::after {
        right: -10px;
    }

    /**
     * SERVICE
     */

    .servicee .container {
        column-gap: 60px;
    }

    .servicee .section-title {
        margin-bottom: 50px;
    }

    /**
     * GO TO TOP
     */

    .go-top-btn {
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 1024px) {
    .contact_us_green .responsive-container-block.container {
        justify-content: center;
    }

    .contact_us_green .text-blk.contactus-subhead {
        max-width: 90%;
    }

    .contact_us_green .head-text-box {
        display: block;
    }

    .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
        padding-top: 0px;
        padding-right: 20px;
        padding-bottom: 60px;
        padding-left: 0px;
    }

    .contact_us_green .line {
        border-right-width: initial;
        border-right-style: none;
        border-right-color: initial;
        border-bottom-width: 1.8px;
        border-bottom-style: solid;
        border-bottom-color: #a2a2a2;
    }

    .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
        margin-top: 60px;
        margin-right: 0px;
        margin-bottom: 0px;
        margin-left: 0px;
    }

    .contact_us_green .workik-contact-bigbox {
        display: flex;
    }

    .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
    }
}

@media (max-width: 768px) {
    .contact_us_green .text-content {
        display: none;
    }

    .contact_us_green .input {
        width: 100%;
    }

    .contact_us_green .textinput {
        width: 100%;
    }

    .contact_us_green .text-blk.contactus-head {
        font-size: 30px;
    }
}

@media (max-width: 500px) {
    .contact_us_green .responsive-container-block.big-container {
        padding-top: 0px;
        padding-right: 20px;
        padding-bottom: 0px;
        padding-left: 20px;
    }

    .contact_us_green .workik-contact-bigbox {
        display: block;
    }

    /* .contact_us_green .text-blk.input-title {
      font-size: 16px;
    } */

    .contact_us_green .text-blk.contactus-head {
        font-size: 26px;
    }

    .contact_us_green .text-blk.contactus-subhead {
        font-size: 16px;
        line-height: 23px;
    }

    .contact_us_green .input {
        height: 45px;
    }

    .contact_us_green .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
        margin: 0 0 25px 0;
    }
}

@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap");

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
}

.wk-desk-1 {
    width: 8.333333%;
}

.wk-desk-2 {
    width: 16.666667%;
}

.wk-desk-3 {
    width: 25%;
}

.wk-desk-4 {
    width: 33.333333%;
}

.wk-desk-5 {
    width: 41.666667%;
}

.wk-desk-6 {
    width: 50%;
}

.wk-desk-7 {
    width: 58.333333%;
}

.wk-desk-8 {
    width: 66.666667%;
}

.wk-desk-9 {
    width: 75%;
}

.wk-desk-10 {
    width: 83.333333%;
}

.wk-desk-11 {
    width: 91.666667%;
}

.wk-desk-12 {
    width: 100%;
}

@media (max-width: 1024px) {
    .wk-ipadp-1 {
        width: 8.333333%;
    }

    .wk-ipadp-2 {
        width: 16.666667%;
    }

    .wk-ipadp-3 {
        width: 25%;
    }

    .wk-ipadp-4 {
        width: 33.333333%;
    }

    .wk-ipadp-5 {
        width: 41.666667%;
    }

    .wk-ipadp-6 {
        width: 50%;
    }

    .wk-ipadp-7 {
        width: 58.333333%;
    }

    .wk-ipadp-8 {
        width: 66.666667%;
    }

    .wk-ipadp-9 {
        width: 75%;
    }

    .wk-ipadp-10 {
        width: 83.333333%;
    }

    .wk-ipadp-11 {
        width: 91.666667%;
    }

    .wk-ipadp-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wk-tab-1 {
        width: 8.333333%;
    }

    .wk-tab-2 {
        width: 16.666667%;
    }

    .wk-tab-3 {
        width: 25%;
    }

    .wk-tab-4 {
        width: 33.333333%;
    }

    .wk-tab-5 {
        width: 41.666667%;
    }

    .wk-tab-6 {
        width: 50%;
    }

    .wk-tab-7 {
        width: 58.333333%;
    }

    .wk-tab-8 {
        width: 66.666667%;
    }

    .wk-tab-9 {
        width: 75%;
    }

    .wk-tab-10 {
        width: 83.333333%;
    }

    .wk-tab-11 {
        width: 91.666667%;
    }

    .wk-tab-12 {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .wk-mobile-1 {
        width: 8.333333%;
    }

    .wk-mobile-2 {
        width: 16.666667%;
    }

    .wk-mobile-3 {
        width: 25%;
    }

    .wk-mobile-4 {
        width: 33.333333%;
    }

    .wk-mobile-5 {
        width: 41.666667%;
    }

    .wk-mobile-6 {
        width: 50%;
    }

    .wk-mobile-7 {
        width: 58.333333%;
    }

    .wk-mobile-8 {
        width: 66.666667%;
    }

    .wk-mobile-9 {
        width: 75%;
    }

    .wk-mobile-10 {
        width: 83.333333%;
    }

    .wk-mobile-11 {
        width: 91.666667%;
    }

    .wk-mobile-12 {
        width: 100%;
    }
}

.card-container {
    display: flex;
    width: 1240px;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

/* Styles généraux */
/* body {
    font-family: 'Arial', sans-serif;
    background-color: #1E0B40;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
  } */

.workflow {
    padding: 50px 20px;
}

/* Conteneur Flex */
.workflow-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Ligne horizontale */
.workflow-container::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 10%;
    width: 80%;
    height: 4px;
    background-color: orange;
    z-index: 0;
}

/* Cartes interactives */
.step {
    width: 220px;
    background: #8793ff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.t-color {
    color: white;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0px 5px 15px rgba(255, 165, 0, 0.6);
}

/* Icônes */
.icon {
    font-size: 2em;
    background-color: white;
    color: black;
    font-weight: bold;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    border: 3px solid orange;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .workflow-container {
        flex-direction: column;
        align-items: center;
    }

    .workflow-container::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .card-container {
        flex-wrap: wrap;
    }
}

/* Modale */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5em;
    cursor: pointer;
}

/* react */

/* Boîte principale contenant tout */
.calculator-box {
    background-color: var(--cultured);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 40px auto;
    /* Centré sur la page */
    display: flex;
    flex-direction: column;
}

/* Wrapper en deux colonnes */
.calculator-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
}

/* Boîte des options (à gauche) */
.steps-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Boîte des résultats (à droite) */
.result-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cartes de contenu */
.card-react {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style des titres */
.h3-react {
    font-size: var(--fs-3);
    font-weight: var(--fw-500);
    margin-bottom: 10px;
}

/* Boutons */
.btn-group {
    display: flex;
    gap: 10px;
}

/* Conteneur du total */
.total-box {
    font-size: var(--fs-2);
    font-weight: var(--fw-500);
    color: var(--medium-sea-green);
    padding: 15px;
    background-color: var(--cultured);
    border-radius: 8px;
    text-align: center;
}

/* Champ email */
input[type="email"] {
    width: 100%;
    padding: 12px;
    font-size: var(--fs-7);
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    background-color: var(--cultured);
}

/* Bouton "Recevoir mon devis" */
.btn-success {
    width: 100%;
    padding: 12px;
    font-size: var(--fs-7);
    background-color: var(--medium-sea-green);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-success:disabled {
    background-color: var(--silver-chalice);
    cursor: not-allowed;
}

/*-----------------------------------*\
    #INSTRUCTION
  \*-----------------------------------*/

.instruction :is(.section-title, .section-text) {
    text-align: center;
}

.instruction .section-title {
    margin-block-end: 15px;
}

.instruction-list {
    display: grid;
    gap: 30px;
    margin-block-start: 50px;
}

.instruction-card {
    text-align: center;
}

.instruction-card .card-banner {
    transition: var(--transition-2);
}

.instruction-card:hover .card-banner {
    transform: rotateY(1turn);
}

.instruction-card .img {
    margin-inline: auto;
    margin-block-end: 12px;
}

.instruction-card .card-subtitle {
    font-size: var(--fs-8);
    font-weight: var(--fw-700);
    text-transform: uppercase;
}

.instruction-card .card-title {
    font-size: var(--fs-4);
    margin-block: 5px 15px;
}

.instruction-card .card-text {
    padding-inline: 20px;
}

.section-instruction {
    margin-top: 80px;
    margin-bottom: 80px;
}

.h2-section-title {
    text-align: center;
}


@media (min-width: 992px) {
    /**
     * SERVICE
     */

    .servicee .container2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 100px 40px;
    }

    .servicee-banner {
        margin-bottom: 0;
    }

    .servicee-content:first-of-type {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }

    .servicee-list {
        padding-right: 50px;
    }

    .servicee-item:nth-child(even) {
        transform: translateX(50px);
    }

    .servicee-item-icon {
        min-width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    .servicee-banner:last-of-type {
        order: 1;
    }

    .container2 {
        max-width: 950px;
    }
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.sservice {
    /* background: var(--cultured); */
    padding-block: var(--section-padding);
}

.sservice-banner {
    margin-bottom: 30px;
}

.sservice-content:first-of-type {
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.05);
    margin-bottom: 50px;
}

.sservice .section-title {
    margin-bottom: 30px;
}

.sservice-item {
    background: hsl(205deg 76.61% 93.9%);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 20px;
    box-shadow: 0 5px 25px 10px hsla(0, 0%, 0%, 0.02);
    border-radius: 10px;
}

.sservice-item:not(:last-child) {
    margin-bottom: 20px;
}

.sservice-item-icon {
    background: var(--cultured);
    color: var(--red-crayola);
    min-width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    transition: var(--transition);
}

.sservice-item-icon ion-icon {
    --ionicon-stroke-width: 50px;
}

.sservice-item:hover .service-item-icon {
    background: var(--red-crayola);
    color: var(--white);
}

.w-100 {
    width: 100%;
}

.container2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px 40px;
}

@media (min-width: 575px) {
    .container2 {
        margin-inline: auto;
    }
}

.sservice-list {
    padding-right: 20px;
    padding-left: 20px;
}

.h3-service {
    font-size: 1.167rem;
    font-weight: 500;
}

.h2-service {
    font-size: 1.644rem;
    margin-bottom: 30px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .container2 {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .h2-service {
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
        color: var(--sonic-silver);
        font-size: var(--fs-8);
        font-weight: var(--fw-500);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }
}



/* SERRRRVIVIVIVIVCE  */
/* SERRRRVIVIVIVIVCE  */
/* SERRRRVIVIVIVIVCE  */
/* SERRRRVIVIVIVIVCE  */


/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.cservice {
    background-color: var(--white-2);
    padding: 40px 0;
    text-align: center;
}

.cservice .section-text {
    margin-block: 5px 35px;
}

.cservice-card {
    background-color: var(--white-1);
    padding: 20px 15px;
    /* border: 1px solid var(--platinum); */
    border-radius: var(--radius-5);
    text-align: center;
    box-shadow: var(--shadow-1);
    transition: var(--transition-2);
}

.cservice-card:is(:hover, :focus-within) {
    transform: translateY(-10px);
}

.cservice-card .card-icon {
    color: var(--white-1);
    font-size: 25px;
    max-width: max-content;
    margin-inline: auto;
    padding: 18px;
    border-radius: 50%;
}

.cservice-card .card-title {
    margin-block: 20px 8px;
}

.cservice-card .card-text {
    font-size: var(--fs-6);
}

.grid-list {
    display: grid;
    gap: 30px;
}

@media (min-width: 575px) {
    .grid-list {
        grid-template-columns: 1fr 1fr;
        column-gap: 25px;
    }
}


@media (min-width: 992px) {
    .grid-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/*-----------------------------------*\
  #PROJECT
\*-----------------------------------*/

.project .section-text {
    margin-block: 5px 35px;
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.project-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsl(0, 0%, 0%);
    opacity: 0.5;
    transition: 0.5s ease;
}

.project-card:is(:hover, :focus-within)::after {
    opacity: 0.8;
}

.project-card .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 1;
    transition: var(--transition-2);
}

.project-card:is(:hover, :focus-within) .card-content {
    transform: translateY(-20px);
}

.project-card .card-subtitle {
    color: var(--lavender-gray);
    font-size: var(--fs-6);
    line-height: 1;
}

.project-card .card-title {
    font-size: 20px;
    color: var(--white-1);
    margin-block: 12px 15px;
}



/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {
    /**
     * PROJECT
     */

    .project-card .card-subtitle {
        --fs-6: 1.5rem;
    }
}

@media (min-width: 1200px) {
    /**
     * PROJECT
     */

    .project-card .card-content {
        padding: 30px;
    }

    .project-card .card-subtitle {
        color: whitesmoke;
        --fs-6: 20px;
    }
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-holder {
    aspect-ratio: var(--width) / var(--height);
    background-color: var(--light-gray);
}



.container3 {
    padding-inline: 15px;
}

@media (min-width: 550px) {
    /**
     * REUSED STYLE
     */

    .container3 {
        max-width: 550px;
        margin-inline: auto;
    }
}

@media (min-width: 768px) {
    /**
     * REUSED STYLE
     */

    .container3 {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    /**
     * REUSED STYLE
     */

    .container3 {
        max-width: 950px;
    }
}

@media (min-width: 992px) {
    /**
     * ABOUT
     */

    .about .container3 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    /**
     * REUSED STYLE
     */

    .container3 {
        max-width: 1200px;
    }
}

:is(.service-card3, .features-card) .title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
}

:is(.service-card3, .features-card, .blog-card) .text {
    font-size: var(--fs-8);
}

/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-list3 {
    display: grid;
    gap: 30px;
}

.service-card3 {
    height: 560px;
    padding: 30px;
    box-shadow: var(--shadow);
    border-radius: 12px
}

.service-card3 .card-icon3 {
    background-image: url("../images/service-banner-pattern.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #FEF6FF;
    aspect-ratio: 1 / 1;
    max-width: 165px;
    display: grid;
    place-content: center;
    margin-inline: auto;
    transition: var(--transition-1);
}

.service-card3:hover .card-icon3 {
    background-color: var(--winter-sky);
}

.service-card3 .card-icon3 ion-icon {
    font-size: 5rem;
    color: var(--winter-sky);
    --ionicon-stroke-width: 20px;
    transition: var(--transition-1);
}

.service-card3:hover .card-icon3 ion-icon {
    color: var(--white);
}

.service-card3 .title {
    text-align: center;
    margin-block-end: 15px;
}

.service-card3 .text {
    text-align: center;
    margin-block-end: 20px;
}

.service-card3 .card-btn {
    margin-top: 40px;
    margin-inline: auto;
    padding: 15px;
    border: 1px solid var(--dodger-blue);
    border-radius: 50%;
    color: var(--dodger-blue);
    transition: 0.15s ease;
}

.service-card3 .card-btn:is(:hover, :focus) {
    color: var(--white);
    background-color: var(--winter-sky);
}

@media (min-width: 768px) {

    /**
     * SERVICE
     */

    .service-list3 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 992px) {


    /**
     * SERVICE
     */

    .service-list3 {
        grid-template-columns: repeat(3, 1fr);
    }
}




/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-banner {
    margin-block-end: 30px;
}

.about .section-title {
    margin-inline: 0;
}

.about .underline::before {
    left: 0;
    transform: translateX(0);
}

.about-text {
    font-size: var(--fs-8);
    margin-block-end: 20px;
}

.stats-list {
    display: grid;
    gap: 30px;
}

.stats-card {
    text-align: center;
    padding: 15px;
    box-shadow: var(--shadow);
    border-radius: var(--radius-12);
}

.stats-title {
    color: black;
    font-size: 40px;
    font-weight: 400;
}

.stats-text {
    font-size: var(--fs-8);
}

@media (min-width: 550px) {
    /**
     * ABOUT
     */

    .stats-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {

    /**
     * ABOUT
     */

    .about .container4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

.statss-cardd {
    text-align: center;
    padding: 15px;
    box-shadow: var(--shadow);
    border-radius: 12px;
}

@media (min-width: 550px) {
    /**
     * ABOUT
     */

    .statss-listt {
        grid-template-columns: repeat(3, 1fr);
    }
}

.statss-listt {
    display: grid;
    gap: 30px;
}

.service-list3 {
    display: grid;
    gap: 30px;
}



.features-banner {
    margin-block: 40px;
}

.features-banner>img {
    max-width: max-content;
    margin-inline: auto;
}


@media (min-width: 992px) {

    /**
     * ABOUT
     */

    .about .container4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    /**
     * SERVICE
     */

    .service-list {
        grid-template-columns: repeat(3, 1fr);
    }

    /**
     * FEATURES
     */

    .features-list {
        grid-template-columns: 1fr;
    }

    .features .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .features .section-title {
        grid-column: 1 / 4;
    }

    .features-banner {
        margin-block: 0;
        display: grid;
        place-items: center;
    }

    .features-card {
        height: 290px;
    }
}

.container4 {
    padding-inline: 15px;
}

@media (min-width: 550px) {
    /**
     * REUSED STYLE
     */

    .container4 {
        max-width: 550px;
        margin-inline: auto;
    }
}

@media (min-width: 768px) {
    /**
     * REUSED STYLE
     */

    .container4 {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    /**
     * REUSED STYLE
     */

    .container4 {
        max-width: 950px;
    }
}

@media (min-width: 992px) {

    /**
     * REUSED STYLE
     */

    .container4 {
        max-width: 950px;
    }

    /**
     * ABOUT
     */

    .about .container4 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    /**
     * REUSED STYLE
     */

    .container4 {
        max-width: 1200px;
    }
}

.section-text5 {
    color: var(--sonic-silver);
    line-height: 1.6;
}

.features-list>li:first-child {
    margin-block-end: 30px;
}


@media (min-width: 768px) {

    /**
     * FEATURES
     */

    .features-list>li:first-child {
        margin-block-end: 0;
    }

    .features-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .img-cover {
        width: 70%;
        height: 70%;
        object-fit: contain;
    }
}

@media (min-width: 992px) {

    /**
     * FEATURES
     */

    .features-list {
        grid-template-columns: 1fr;
    }

    .features .container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .features .section-title {
        grid-column: 1 / 4;
    }

    .features-banner {
        margin-block: 0;
        display: grid;
        place-items: center;
    }

    .features-card {
        height: 290px;
    }
}


:is(.service-card, .features-card) .title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-4);
    font-weight: var(--fw-700);
}

:is(.service-card, .features-card, .blog-card) .text {
    font-size: var(--fs-8);
}

.img-cover {
    width: 50%;
    height: 80%;
    object-fit: contain;
}


/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.features-list>li:first-child {
    margin-block-end: 30px;
}

.features-card {
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.features-card .icon3 {
    background-color: var(--dodger-blue);
    background-size: 100%;
    color: white;
    min-width: max-content;
    max-width: max-content;
    /* font-size: 36px; */
    padding: 22px;
    border-radius: 50%;
}

.features-card .icon3 ion-icon {
    --ionicon-stroke-width: 20px;
}

.features-card .title {
    margin-block-end: 10px;
}

.features-banner {
    margin-block: 40px;
}

.features-banner>img {
    max-width: max-content;
    margin-inline: auto;
}

.w-100 {
    width: 100%;
}

.banner-animation {
    animation: waveAnim 2s linear infinite alternate;
}

img {
    height: auto;
}

.service-card3 .card-icon3 {
    background-image: url("../images/service-banner-pattern.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-color: #FEF6FF;
    aspect-ratio: 1 / 1;
    max-width: 165px;
    display: grid;
    place-content: center;
    margin-inline: auto;
    transition: 0.15s ease;
}

.service-card3:hover .card-icon3 {
    background-color: var(--dodger-blue);
}

.service-card3 .card-icon3 ion-icon {
    font-size: 5rem;
    color: var(--dodger-blue);
    --ionicon-stroke-width: 20px;
    transition: 0.15s ease;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about5 {
    background-color: hsl(0, 14%, 98%);
}

.about-banner5 {
    position: relative;
    border-radius: var(--radius-5);
    overflow: hidden;
    margin-block-end: 25px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--white-1);
    color: var(--red-crayola);
    font-size: 32px;
    padding: 16px;
    border-radius: 50%;
    animation: pulse 1.5s ease-out infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 1px var(--white-1);
    }

    100% {
        box-shadow: 0 0 0 25px transparent;
    }
}

.about5 :is(.section-title, .section-text) {
    text-align: left;
}

.about5 .section-title {
    margin-block-end: 5px;
}

.about5 .section-text:not(:last-child) {
    margin-block-end: 18px;
}

.about5 .h3 {
    margin-block-end: 8px;
}

.about-list5 {
    margin-block: 15px 18px;
}

.about-item5 {
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.about-item5 ion-icon {
    color: var(--red-crayola);
    flex-shrink: 0;
    margin-block-start: 2px;
}

.about-item5:not(:last-child) {
    margin-block-end: 12px;
}

@media (min-width: 768px) {
    /**
     * ABOUT
     */

    .about-banner5 {
        max-width: 550px;
    }

    .about5 .section-text {
        max-width: unset;
        margin-inline: 0;
    }
}

@media (min-width: 992px) {
    /**
     * ABOUT
     */

    .about5 .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    /**
     * ABOUT
     */

    .about-list5 .container {
        gap: 60px;
    }

    .about-item5 {
        gap: 7px;
    }

    .about-item5 ion-icon {
        font-size: 20px;
    }
}

.img-cover5 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*-----------------------------------*\
  #STATS
\*-----------------------------------*/

.stats .container {
    display: grid;
    gap: 50px;
}

.stats .section-text:last-of-type {
    margin-block: 16px;
}

.stats-list {
    display: grid;
    gap: 15px;
}

.white-title {
    color: white;
}

.stats-card {
    background-color: var(--dodger-blue);
    padding: 17px;
    border-radius: var(--radius-5);
}

.stats-card .card-title {
    font-size: var(--fs-3);
    margin-block-end: 10px;
}

.stats-card .card-text {
    font-size: var(--fs-7);
    color: white;
}


@media (min-width: 768px) {
    /**
     * STATS
     */

    .stats-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        padding-top: 30px;
    }
}


@media (min-width: 992px) {
    /**
     * STATS
     */

    .stats .container {
        padding: 50px;
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.section-text9 {
    text-align: left;
}


/* 
SERVICES DEROULANT */

/* Masque le sous-menu par défaut */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 110%;
    /* Juste en dessous du bouton "Services" */
    left: 0;
    background: #fff;
    border-radius: 5px;
    list-style: none;
    padding: 10px 0;
    width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Assurez-vous que le parent (.dropdown) est positionné correctement */
.dropdown {
    position: relative;
    /* Permet de bien placer le menu */
}

/* Affichage du sous-menu lorsqu'il est actif */
.dropdown-menu.active {
    display: block;
}