@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  } 
  body {
    font-size: 16px;
    color: #FFF;
    background-color: #2E323A;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .container {
    width: 1248px;
    padding: 0 20px;
    max-width: 100%;
    margin: auto;
  }
  p {
    font-size: 16px;
    line-height: 1.4;
    margin: 20px 0;
    color rgba(255, 255, 255, 0.5);
  }
  h1 {
    font-size: 2.5em; 
    font-weight: 500;
  }
  h2 {
    font-size: 2.3em;
    font-weight: 500;
  }
  h3 {
    font-size: 2.1em;
    font-weight: 500;
  }
  h4 {
    font-size: 1.9em;
    font-weight: 500;
  }
  h5 {
    font-size: 1.7em;
    font-weight: 500;
  }
  h6 {
    font-size: 1.5em;
    font-weight: 500;
  }
  
  a.cta-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    background-color: #FFFFFF0D;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #FFFFFF40;
    border-radius: 10px 10px 10px 10px;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s, transform 0.4s;
    color: #FFF;
    border: none;
    padding: 15px 24px;
    background-image: linear-gradient(45deg, #FF187E 0%, #E60F6E 100%);
  }
  a.cta-btn svg {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); 
    position: relative;
    left: -10px;
    top: -3px;
  } 
  a.cta-btn:hover {
    box-shadow: 0px 10px 28px 0px rgba(96.99999999999999, 106.0000000000001, 249, 0.16862745098039217); 
  }
  a.btn-gray {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 24px 15px 32px;
  }
  a.btn-gray:hover {
    box-shadow: 0px 10px 28px 0px rgba(96.99999999999999, 106.0000000000001, 249, 0.16862745098039217); 
  }
  a.btn-pink {
    transition: all 0.3s ease-in;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(268deg, #FF187E 0%, #E60F6E 100%);
    box-shadow: 0px 0px 25px 0px rgba(244, 119, 174, 0.35);
  }
  a.btn-pink:hover {
    background-image: linear-gradient(45deg, #E60F6E 0%, #FF187E 100%);
    box-shadow: none;   
  }

  .row-flex {
    display: flex;
    align-items: center;
    column-gap: 20px;
  }
  
  /* RESPONSIVE STYLES */
  @media screen and (max-width: 767px) {
    p {
      font-size: 14px; 
    }
    h1 {
      font-size: 2em; 
    }
    h2 {
      font-size: 1.8em;
    }
    h3 {
      font-size: 1.6em;
    }
    h4 {
      font-size: 1.4em;
    }
    h5 {
      font-size: 1.2em;
    }
    h6 {
      font-size: 1em;
    }
    .row-flex {
      display: block; 
    }
  }