/*******************************************************************
************************* SETTINGS *********************************
********************************************************************/

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

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  font-size: 1.8rem;
  overflow-x: hidden;
}

/*******************************************************************
************************* HEADINGS *********************************
********************************************************************/

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.05;
}

.heading-primary--white {
  color: #fff;
}

.heading-secondary {
  font-size: 3.6rem;
  line-height: 1.2;
}

.heading-secondary--grey {
  color: #333;
}

.heading-tertiary {
  font-size: 2.4rem;
  line-height: 1.2;
}

/****************************
**** TEXT
*****************************/

.text-description {
  line-height: 1.8;
}

/*******************************************************************
************************* BUTTONS *********************************
********************************************************************/

.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  transition: all 0.3s;
}

.btn--primary:link,
.btn--primary:visited {
  background-color: #dc2201;
  color: #fff;
}

.btn--primary:hover {
  background-color: #c61f01;
}

.btn--reverse:link,
.btn--reverse:visited {
  background-color: #fff;
  color: #dc2201;
}

.btn--reverse:hover {
  background-color: #fce9e6;
}

.btn--secondary:link,
.btn--secondary:visited {
  background-color: #ffa11d;
  color: #fff;
}

.btn--secondary:hover {
  background-color: #e6911a;
}

.btn--tertiary:link,
.btn--tertiary:visited {
  background-color: #ffd43b;
  color: #fff;
}

.btn--tertiary:hover {
  background-color: #e6bf35;
}

/*******************************************************************
************************* UTILITIES *********************************
********************************************************************/

.margin-bottom--small {
  margin-bottom: 1.6rem !important;
}

.margin-bottom--medium {
  margin-bottom: 3.2rem !important;
}

.margin-bottom--large {
  margin-bottom: 6.4rem !important;
}

.center-text {
  text-align: center;
}

/*******************************************************************
************************* LAYOUT ***********************************
********************************************************************/

.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

.container-md {

  max-width: 90rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  
}

.grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
}
