*::after, *::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body{
    font-size: 16px;
    font-family: "Quicksand", sans-serif;
    scroll-behavior: smooth;
}

:root{
    --primary-color:#0d47a1;
    --secondry-color:#0c2f55;
    --text-color: #333;
    --text-primary-color:#333;
    --text-secondry-color:#272727;
    --color-white:#fff;
    --color-black:#000;
    --primary-font-size: 3.2rem;
    --secondary-font-size: 2rem;
    --h2-font-size:2.5rem;
    --h4-font-size:1.5rem;
    --h5-font-size:1.25rem;
    --text-font-size: 1rem;
    --accent-font-size:1.2rem;
    --font-fourteen:14px;
    --primary-font-weight: 700;
    --text-font-weight: 400;
    --accent-font-weight:500;
}

  h1{
     font-size: var(--primary-font-size);
     font-weight: var(--primary-font-weight);
     font-family: "Lexend", sans-serif;
     line-height: 1.2em;
  }
  h2{
    font-size: var(--h2-font-size);
    font-weight: 600;
    font-family: "Lexend", sans-serif;
    line-height: 1.25em;
  }
  h3{
    font-size: var(--secondary-font-size);
    font-weight: var(--primary-font-weight);
    font-family: "Lexend", sans-serif;
    line-height: 1.15em;
  }
  h4{
    font-size: var(--h4-font-size);
    font-weight: var(--primary-font-weight);
    font-family: "Lexend", sans-serif;

  }
  h5{
    font-size: var(--h5-font-size);
    font-weight: var(--primary-font-weight);
  }
  h6{
    font-size: var(--accent-font-size);
    font-weight: var(--primary-font-weight);
  }
  p{
    font-size: var(--text-font-size);
    font-weight: var(--text-font-weight);
    color: var(--text-secondry-color);
  }
  a{
    text-decoration: none;
    color: var(--text-primary-color);
  }
  img{
    width: 100%;
  }
  li{
    list-style-type: none;
    color: #000;
  }
  input:focus{
    box-shadow: none !important;
  }
  .btn{
      background-color: var(--primary-color);
      color: #fff;
      padding: 10px 20px;
      border-radius: 6px;
  }
  .calc_tot:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -11px;
    width: 0;
    height: 0;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
    border-width: 12px 0 12px 12px;
}
.shophop-cta{
    background: repeating-linear-gradient(90deg, rgba(142, 167, 255, .15), rgba(142, 167, 255, .15) 1px, transparent 0, transparent 100px), repeating-linear-gradient(180deg, rgba(142, 167, 255, .15), rgba(142, 167, 255, .15) 1px, transparent 0, transparent 100px), linear-gradient(180deg, #448dff 6%, var(--primary-color) 94%);
    background-color: transparent;

}
  a:hover{
    cursor: pointer;
  }
  .container{
    width: 90% !important;
  }
@media(max-width:800px){
  body, html{
    font-size: 15px !important;
  }
  h1{
    font-size: 2.7rem;
  }
}
@media(max-width:540px){
  body, html{
    font-size: 14px !important;
  }
  h1{
    font-size: 2rem;
  }
  h2{
    font-size: 2.1rem;
  }
    h5{
    line-height: 1.8rem !important; 
   }
}
