@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root{
    --font-family-main: "Rubik", sans-serif;
    --font-family-headline: "Rubik", sans-serif;
    --font-family-main: "Rubik", sans-serif;

    --tomato: #f53838;
    --tomato-35: rgba(245, 56, 56, 0.588);
    --tomato-light: #ffecec;
    --red-pink: #f53855;
    --gunmetal: #4f5665;
    --grey-line: #ddd;
    --dark: #0d1025;
    --dark-blue-grey: #0b132a;
    --bluey-green: #2fab73;
    --white: #f8f8f8;
    --off-white: white;
  
    --transition-med: all 0.5s ease-in-out;
  
  
     /* --font-size-h1: clamp(2.5rem, 2vw, 4rem);
     --font-size-h2: clamp(2rem, 2vw, 3.5rem);
     --font-size-h3: clamp(1.6rem, 1.6vw, 2.5rem);
     --font-size-h4: clamp(1.3rem, 1.5vw, 2.1rem);
     --font-size-subline: clamp(1.3rem, 1.5vw, 2.1rem);
     --font-size-topline: clamp(.8rem, 1.5vw, 1.5rem); */
  }

/*================ BASE ==============*/

::selection  {
  background: var(--tomato);
  color: var(--white);
  text-shadow: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-main);
}

html {
  overflow-x: hidden;
  padding-bottom: 0;
  margin-bottom: 0;
}

* {
  box-sizing: border-box;
}


/*================ START ELEMENTS ==============*/
/* .start-section{
  max-width: 1920px;
  padding: 5% 10%;
}
.start-elementes {
  display: flex;
  gap: 15px;
  margin: auto;
  padding: 90px;
  border: solid 2px var(--color-accent);
  border-radius: .1rem;
  box-shadow: var(--shadow-light);
  box-shadow: var(--shadow-mid);
} */


/*================ SECTION DIV ... ==============*/


.temp {
  height: 700px;
  /* border: solid 1px red; */

}

.sec-1140 {
  margin: auto;
  max-width: 1140px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  /* border: solid 1px rgb(60, 255, 0); */
}

#about {
  margin-top: 136.2px;
}

/* FLEX STARTER */

/* .hero-left {
  background-color: #2fab73;
  height: 555px;
  width: 165px;
  flex-grow: 1;

}
.hero-right {
  background-color: #9fab2f;
  height: 555px;
  width: 165px;
  flex-grow: 1;
} */


  /*===============================================================
            HERO 
  =================================================================*/

  .hero-left {
    padding-top: 40px;
    padding-right: 30px;
    width: 490px;
    flex-grow: 1;
  }

  .hero-left,.btn{
    margin-top: 50px;
  }

  .hero-right {
    padding-top: 80px;
    /* padding-left: 50px; */
    width: 400px;
    flex-grow: 1;
  }

  .hero-right > img {
    width: 100%;
    object-fit: scale-down;
  }

  .sec-about {
    flex-direction: column;
  }



       /*===============================================================
           CTA
  =================================================================*/
#cta > .cta-box {
  margin-top: 100px;
}

       /*===============================================================
           features
  =================================================================*/

  .features {
    column-gap: 98px;
    align-items: flex-end;
    padding-bottom: 135px;
  }

  .features-left {
    padding-top: 40px;
    width: 270px;
  }

  .features-right {
    padding-left: 0px;
    padding-top: 80px;
  }

  .features-right > img {
    width: 80%;
    object-fit: scale-down;
  }



  .features-list{
    margin-top: 24px;
  }
  .features-list p {
    display: flex;
    padding-left: 0px;
    /* justify-content: center; */
  }
  
  
  .features-list p::before {
    position: relative;
    margin-right: 25px;
    content: url(../img/check.svg);
  }

         /*===============================================================
           pricing
  =================================================================*/
#pricing {
  /* background-color: var(--white); */
  background-image: linear-gradient(to bottom, var(--white) -45%, rgba(248, 248, 248, 0) 89%);
  padding-top: 80px;
}

  .pricing {
    max-width: 1090px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.txt-center {
  text-align: center;
  margin: auto;
}
.card-wrapper{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  position: relative;
  cursor: pointer;
  width: 330px;
  height: 760px;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-shrink: 2;
  text-align: center;
  padding: 79.6px 0px 0px 0px;
  border-radius: 10px;
  border: solid 2px var(--grey-line);
  background-color: #fff;
  transition: var(--transition-med);
}



       /*===============================================================
           MEDIA
  =================================================================*/


  @media only screen and (min-width: 925px) {
    .sec-1140 {
      flex-direction: row-reverse;
    }
    }

    @media only screen and (max-width: 925px) {
      .hero-right > img {
        width: 75%;
      }
      .hero-left {
        padding-top: 0px;
        padding-right: 0px;
        margin-top: 0px;
      }
      }



    @media only screen and (max-width: 1140px) {
      .sec-1140 {
        padding: 0 2% 0 2%;
      }
      }

      @media only screen and (max-width: 1030px) {
        .card-wrapper{
          justify-content: center;
          gap: 30px;
        }
        }
