/* 
--- 01 TYPOGRAPHY SYSTEM



- SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

- FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
 
- Font weights:
default:400
Medium: 500
Semi-bold: 600
Bold:700

- Line heights:
Default:1
Small: 1.05
Medium : 1.2
Paragarph Default; 1.6
large: 1.8


--- 02 COLORS

- Letter spacing
-0.5px
0.75px

 - Primary: #e67e22
 
 - Tints:
 #fdf2e9
 #fae5d3
 #eb984e

 - Shades:
 #cf711f
 #45260a
 - Accents:
 - Greys:
 #888
 #767676(lightest gray allowed on #fff)
 #6f6f6f(lightest gray allowed on #fdf2e9)
 #555
 #333

 --- 05 SHADOWS
0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);


 --- 06 BORDER-RADIUS
 by default 9px
 Medium: 11px

 --- 07 WHAITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128


*/

:root {
  --primary_color: #006838; /* green*/
  --secondary-color: #ff9900; /* yellow*/
  --third-color: #4ab2a7; /* skyblue*/
  --text-color: #212529;
  --text-color2: #131515;
  --background-color: #ffffff;
  --green_darker: #005e32;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* overflow-x: hidden; */

  /* Does NOT work on Safari */
  /* scroll-behavior: smooth; */
}
body {
  /*font-family: "Rubik", sans-serif;*/
    font-family: "Almarai", sans-serif !important;
  line-height: 1;
  font-weight: 400;
  color: #555;
  /* Only works if there is nothing absolutly 
  positioned in relation ti body */
  overflow-x: hidden;
}

/************************/
/*General Reusable Components
/************************/

.containerm{
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.grid {
  display: grid;
  column-gap: 1.4rem;
  row-gap: 9.6rem;

  /* margin-bottom: 9.6rem; */
}

/* .grid:last-child {
  margin-bottom: 0;
} */

.grid:not(:last-child) {
  margin-bottom: 9.6rem;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  grid-template-columns: repeat(3, 1fr);
  justify-self: center;
  justify-items: center;
}

.grid--4-cols {
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
}

.grid--center-v {
  align-items: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-weight: 700;
  color: #333;
  letter-spacing: -0.5px;
}

.heading-primary {
  font-size: 5.2rem;
  line-height: 1.06;
  margin-bottom: 3.2rem;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 6.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary_color);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: var(--secondary-color);
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #cc7b02;
  box-shadow: inset 0 0 0 3px #fff;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #555;
}

.btn--outline:hover,
.btn--outline:active {
  background-color: var(--secondary-color);
  color: #fff;

  /* Trick to add border inside button */
  box-shadow: inset 0 0 0 3px #fff;
}

.btn--form {
  background-color: var(--green_darker);
  color: white;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover,
.btn--form:active {
  background-color: #fff;
  color: #555;
}

.link:link,
.link:visited {
  display: inline-block;
  color: var(--green_darker);
  text-decoration: none;
  /* I use current color here to make
   the color of border same color of link when hover */
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.2rem;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: var(--green_darker);
  border-bottom: 1px solid transparent;
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  line-height: 1.2;
}

.list-item {
  font-size: 1.8rem;

  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: var(--secondary-color);
}

*:focus {
  outline: none;
  /* outline: 4px dotted #e67e22;
  outline-offset: 8px; */

  box-shadow: 0 0 0 0.2rem #f6cc3c;
}

/* Helper classes */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.containerm.grid.grid--4-cols.m.margin-bottom-md {
  height: auto !important;
}
.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center-text {
  text-align: center;
}

strong {
  font-weight: 500;
}

.center {
    justify-items: center;
}

.nice-select{
    display:none;
}

#select-where{
        display:flex !important;

}

.fluuwidthh section#cta {
    margin-top: 2rem;
}

section#cta {
    margin-top: 748px;
}

.tp-integration__icon.int-icon-1.wow.tpfadeUp {}

.tp-integration__icon.int-icon-1.wow.tpfadeUp span {
    text-align: -webkit-center;
}

.tp-integration__icon.wow.tpfadeUp {
    margin-top: 100;
}

.tp-integration__icon.wow.tpfadeUp img {margin-top: 12px;margin-right: auto;margin-left: auto;width: 66px;}
