/* Base File Coming Soon */
:root {
  /* Text color change */
  --heading-color: #000110;
  --body-text: #121533;
  --color-light: #4D4D58; 

  /* Line height body text */
  --default-line-height: 1;

  /* Font family changes here */
  --heading-font: 'Montserrat', Arial, sans-serif;
  --body-font: 'Montserrat', Arial, sans-serif;

  /* Body text 1rem = 16px */
  --text-body: 1rem;
  --text-body-big: 1.125rem;

  /* Coming soon big text size change  */
  --big-title-desktop: 4.209rem;
  --big-title-tablet: 3.488rem;

  /* Size Main heading width */
  --main-heading-home: 520px;

  /* Font-weight change
  Here is I am using default 3 font weights, extrabold: 800, bold: 600, regular: 400 */
  --font-weight-extrabold: 800;
  --font-weight-bold: 600;
  
  /* link color change here */
  --link-color: #000000;
  --link-color-hover: #1700fe;

  /* body and loader background color change
  by default its white*/
  --body-color: #ffffff;

  /* menu color */
  /* menu circle color change here */
  --menu-color-default: transparent;
  --menu-color-active: #000000;

  /* menu icon color change here */
  --menu-color-icon: #ffffff;
  --menu-color-icon-active: #000000;

  /* menu background color change here */
  --menu-color-background: #ffffff;
  --menu-color-background-active: #f1f2f5;

  /* icon size change (ex: social media) */
  --icon-default-size: 28px;

  /* forms */
  /* it's default focus shadow, if you need to remove just simple change to 0 */
  --form-focus-shadow: 0 40px 120px rgba(0, 0, 0, 0.11), 0 2px 24px rgba(0, 0, 0, 0.1);

  /* Preloader icon color change */
  --preloader-icon-box: #000000;
  --preloader-icon-fill: #000000;

  /* Overflow default hidden */
  /* If you wanna add more content after coming soon then overflow set visible */
  /* overflow hidden horizotal and verticle */
  --overflow-status-x: hidden;
  --overflow-status-y: hidden;
}