@import 'variables.css';
/* ==========================
   reset.css
   ========================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background: var(--off-white);
  color: var(--color-grey);
  overflow-x: hidden;
}

ul, ol {
/*   list-style: none; */
}

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6{
    margin-bottom: unset;
    margin-top: unset;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

h1{
  font-size:var(--font-size-h1);
  margin-bottom: 20px;
  text-transform: capitalize;
}

h1.page-excerpt {
    font-size: var(--inside-banner-h1);
    font-weight: 600;
}

h2 {
    font-size: var(--font-size-h2);
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: capitalize;
}


h3{
  font-size: var(--font-size-h3);
  font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: capitalize;
}

h4{
    font-size: var(--font-size-h4);
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: capitalize;

}
h5{
    font-size: var(--font-size-h5);
    font-family: var(--font-heading);
    font-weight: 400;
    margin-bottom: 30px;
    text-transform: capitalize;

}

p{
  font-size: var(--font-size-base);
  font-family: var(--font-main);
  font-weight: 400;
  margin-bottom: initial !important;
  color: var(--color-grey);
}

li{
    font-size: var(--font-size-base);
    font-family: var(--font-main);
/*     font-weight: 600; */
    color: var(--color-grey);
}
li::marker {
    color: var(--color-gold);
}

.inside-banner-heading{
    font-size: var(--inside-banner-h1);
    font-weight: 900;
    text-transform: capitalize;
} 
footer ul {
    list-style: initial;
}
footer li::marker {
    color: var(--color-purple);
}
footer li a{
  font-weight: 600;
}
footer p{
  font-weight: 600;
}
.footer-heading{
  font-weight: bold;
  color: var(--color-grey);

}

.container{
  max-width: 90% !important;
}




/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1200px){
  h1{
    font-size:var(--font-size-h3);
  }
}

@media (max-width: 992px){
  h3 {
    font-size: var(--font-size-h4);
  }
  h5 {
    font-size: 16px !important;
  }
}