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

/**
 * copyright 2025 @trendandly.com
 */

/*-----------------------------------*\
 * #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%);

  --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;

  --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);


  /**
     * transition
     */

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

  /**
     * 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-text2 {
  margin-top: 30px;
  margin-bottom: 30px;
  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 {
  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);
  background: var(--cultured);
}

.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: 30px 0;
  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%);
}

/* .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);
  }

  .section-text2,
  .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;
  }

  .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;
  }


  /**
     * 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-bottom: 80px;
}

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

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

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

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

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

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

.servicee-item {
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 20px;
  box-shadow: 0 5px 25px 10px hsla(0, 0%, 0%, 0.02);
  border-radius: var(--radius-8);
}

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

.servicee-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);
}

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

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

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

  .servicee .container {
    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;
  }
}


/* testimonial */
/* testimonial */
/* testimonial */
/* testimonial */

.testimonial {
  padding-top: 100px;
}

.testimonial .col-3 {
  border-radius: 15px;
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.5s;
}

.testimonial .col-3 img {
  width: 30%;
  margin-top: 30px;
  border-radius: 50%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.testimonial .col-3:hover {
  transform: translateY(-10px);
}

.fa.fa-quote-left {
  font-size: 34px;
  color: var(--dodger-blue);
}

/* .col-3 p {
    font-size: 12px;
    margin: 12px 0;
    color: rgb(139, 51, 51);
  } */

/* .testimonial .col-3 h3 {
    font-weight: 600;
    color: rgb(153, 60, 60);
    font-size: 16px;
  } */

.small-container {
  max-width: 1080px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}

.rating i {
  color: var(--dodger-blue);
}

.col-3 {
  flex-basis: 30%;
  min-width: 250px;
  margin-bottom: 30px;
}

.col-3 img {
  width: 100%;
}

@media only screen and (max-width: 600px) {
  .row {
    text-align: center;
  }

  .col-3 {
    flex-basis: 100%;
  }

}

.h3-avis {
  margin-top: 20px;
  color: var(--gunemtal);
  font-weight: var(--fw-500);
  font-size: 20px;
}


/* Conteneur du carrousel */
.carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  /* Assure que le carrousel prend toute la largeur de son conteneur */
}

/* Chaque carte occupe 100% de la largeur du conteneur */
/* .card {
    flex: 0 0 100%;
    transition: transform 0.5s ease;
  } */

.card-container {
  position: relative;
}

/* Positionner les boutons */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}


/* Sur mobile */
@media screen and (max-width: 768px) {
  .carousel {
    flex-direction: column;
  }

  .card {
    width: 100%;
  }
}



/* blog  */



.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
}

.blog-header {
  text-align: center;
  margin-bottom: 30px;
}

.blog-header h1 {
  font-size: 2.5rem;
  color: #2c3e50;
}

.blog-header p {
  font-size: 1.2rem;
  color: #7f8c8d;
}

/* Section des articles */
.articles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.article {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.article img {
  width: 100%;
  height: auto;
}

.article-content {
  padding: 20px;
}

.article-content h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin-bottom: 15px;
}

.article-content p {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 20px;
}

.read-more {
  font-size: 1.1rem;
  color: var(--dodger-blue);
  text-decoration: none;
  /* font-weight: bold; */
}

.read-more:hover {
  text-decoration: underline;
}

/* Responsivité */
@media (max-width: 768px) {
  .articles {
    grid-template-columns: 1fr;
  }
}


@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

.slider {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background: rgb(255, 255, 255);
  border-radius: 16px;
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  backdrop-filter: blur(7.4px);
  -webkit-backdrop-filter: blur(7.4px);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.slider-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  animation: scrolling 20s linear infinite;

}

@keyframes scrolling {

  0% {
    transform: translateX(80%);
  }

  100% {
    transform: translateX(-20%);
  }
}

.slider-items img {
  width: 12%;
  margin: 20px;
}

/* 
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;
}