@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400;1,500;1,600&display=swap');


/* Resetting some default browser styles */
body, h1, h2, h3, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 0;
}  
  /* Box-sizing border-box for easier layout control */
  *, *::before, *::after {
    box-sizing: border-box;
  }
  /* Defining the Root Elements of Color and Font Family */
  :root {
    --redprimary: #da291c;
    --secondary: #5d78b8;
    --secondary-3: #b7975d;
    --secondary-4: #dbcbad;
    --secondary-5: #840b55;
    --secondary-2: #a78855;
    --white: #f4f4f4;
    --black: #000000;
    --text-color: #29211f;

      /* Font Family */
    --primary-font: 'Montserrat', sans-serif;
    --secondary-font: 'Bebas Neue', sans-serif;
  }
  
 
  body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.5;
  }
  

  ul, ol {
    list-style: none;
  }
  li{
    font-size: 18px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
  }
  
  h1, h2, h3 {
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--color-1);
  }
  
  p {
    margin-bottom: 1rem;
    font-size: 17px !important;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .clearfix::after {
    content: "";
    display: table;
    clear: both;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    color:var(--secondary-3);
    font-weight: bold;
    text-decoration: none;
  }
  
  a:hover {
    color:var(--secondary-3);
  }
  
  /* Responsive design */
  @media screen and (max-width: 768px) {
    p {
      font-size: 17px !important;

    }
  }
  

  