/*
* Prefixed by:
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

/*
--- 01 TYPOGRAPHY SYSTEM

- Font sizes (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
Paragraph default: 1.6
Large: 1.8

- Letter spacing
-0.5px
0.75px

--- 02 COLORS

- Primary: #2667FF
-- Secondary : #67C15E
- Tints:
#e9f0ff
#d4e1ff
#93b3ff

- Shades: 
#1b48b3
#133480

- Accents:
- Greys

#888
#767676 (lightest grey allowed on #fff)
#6f6f6f (lightest grey allowed on #fdf2e9)
#555
#333

--- 05 SHADOWS

0 2.4rem 4.8rem rgba(0, 0, 0, 0.075);

--- 06 BORDER-RADIUS

Default: 9px
Medium: 11px

--- 07 WHITESPACE

- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/

:root {
  --main-font: "Lama Sans", sans-serif;
  --secondary-font: "Almarai", sans-serif;
}

@font-face {
  font-family: "Lama Sans";
  src: url(../fonts/LamaSans-ExtraBold.ttf);
  font-weight: normal;
}

@font-face {
  font-family: "Lama Sans";
  src: url(../fonts/LamaSans-Bold.ttf);
  font-weight: bold;
}
@font-face {
  font-family: "Lama Sans";
  src: url(../fonts/LamaSans-Medium.ttf);
  font-weight: normal;
}
@font-face {
  font-family: "Lama Sans";
  src: url(../fonts/LamaSans-Light.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "Lama Sans";
  src: url(../fonts/LamaSans-Black.ttf);
  font-weight: 900;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;

  /* Does NOT work on Safari */
  /* scroll-behavior: smooth; */
}

body {
  font-family: var(--secondary-font);
  line-height: 1;
  font-weight: 400;
  color: #555;

  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
  background-color: #f0edba;
}

/**************************/
/* GENRAL REUSABLE COMPONENTS */
/**************************/

.container {
  /* 1140px */
  /* max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto; */
}

.container-fluid {
  --bs-gutter-x: 7.5rem;
}

.grid {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 6.4rem;
     -moz-column-gap: 6.4rem;
          column-gap: 6.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 {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

.grid--3-cols {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

.grid--4-cols {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

/* .grid--5-cols {
  grid-template-columns: repeat(5, 1fr);
} */

.grid--center-v {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading-primary,
.heading-secondary,
.heading-tertiary {
  font-family: var(--main-font);
  font-weight: bold;
  color: #102b6b;
  letter-spacing: -0.5px;
  font-size: 2.4rem;
}

.heading-primary {
  font-family: var(--main-font);
  font-size: 4.2rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.heading-primary span {
  color: #238505;
  position: relative;
  font-size: 2rem;
}

.heading-primary span svg {
  content: "";
  position: absolute;
  width: 100%;
  height: 60%;
  background-repeat: no-repeat;
  top: 100%;
  right: 0;
}

/* .heading-primary span::before {
  content: "";
  position: absolute;
  background: url(../img/Shape_heding_hero.svg);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  top: 100%;
  animation: 3s infinite slide-right;
} */

.heading-main {
  color: #102b6b;
  font-size: 2rem;
  text-align: center;
  font-family: var(--main-font);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin-bottom: 5rem;
  font-weight: bold;
}
.heading-main::before {
  content: "";
  position: absolute;
  top: 130%;
  background: url(../img/shape_heading.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 17.5rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.heading-secondary {
  font-size: 4.4rem;
  line-height: 1.2;
  margin-bottom: 9.6rem;
}

.heading-tertiary {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #cf711f;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.75px;
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 1.6rem;
  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; */
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #2667ff;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #024eff;
}

.btn--outline:link,
.btn--outline:visited {
  background-color: #fff;
  color: #fff;
  border: 1px solid #024eff;
  color: #024eff;
}

.btn--outline:hover {
  background-color: #e9f0ff;
  border: 1px solid #e9f0ff;
}

.btn--form {
  background-color: #45260a;
  color: #fdf2e9;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}

.link:link,
.link:visited {
  display: inline-block;
  color: #2667ff;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.link:hover,
.link:active {
  color: #2667ff;
  border-bottom: 1px solid transparent;
}

.list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.8rem;
}

.list-item {
  font-size: 1.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.6rem;
  line-height: 1.2;
}

.list-icon {
  width: 3rem;
  height: 3rem;
  color: #2667ff;
}

*:focus {
  outline: none;
  /* outline: 4px dotted #2667FF; */
  /* outline-offset: 8px; */
  -webkit-box-shadow: 0 0 0 0.4rem #d4e1ff67;
          box-shadow: 0 0 0 0.4rem #d4e1ff67;
}

/* HELPER/SETTINGS CLASSES */
.margin-right-sm {
  margin-right: 1.6rem !important;
}

.margin-bottom-md {
  margin-bottom: 4.8rem !important;
}

.center-text {
  text-align: center;
}

strong {
  font-weight: 500;
}

.heading-describtion {
  color: #2667ff;
  font-size: 1.6rem;
  font-weight: bold;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2rem;
}

.heading-describtion::after {
  content: "";
  position: absolute;
  top: 0;
  background: url(../img/arrow.png);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  right: 2.5rem;
}

/* Edit Swiper Pagination */
.swiper {
  padding-bottom: 5rem !important;
}
.swiper-pagination-bullet {
  width: 2rem;
  background-color: #bcd0ff;
  border-radius: 8px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 3rem;
  border-radius: 8px;
  background-color: #024eff;
}

.swiper-slide {
  height: auto !important;
}


.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  position: absolute;
}

@media(max-width:768px){
  
.swiper-pagination1{
  display: none;
}
}

.cta {
  background-color: #67c15e;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
  padding: 1.3rem 5rem 1.3rem 1.5rem;
  border-radius: 0.5rem;
  display: inline-block;
  margin-top: 0.5rem;
  position: relative;
}

.cta::before {
  content: "";
  background: url(../img/whatsapp__icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.4rem;
  height: 2.4rem;
  font-family: "FontAwesome";
  color: #fff !important;
  position: absolute;
  top: 20%;
  right: 1.3rem;
}

/* Animation */

.slide-right {
  -webkit-animation: 3s slide-right;
          animation: 3s slide-right;
}
@-webkit-keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}
@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}

.squiggle {
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  -webkit-animation: draw 2s linear infinite alternate;
          animation: draw 2s linear infinite alternate;
}

@-webkit-keyframes draw {
  from {
    fill-opacity: 0;
  }
  to {
    fill-opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  from {
    fill-opacity: 0;
  }
  to {
    fill-opacity: 1;
    stroke-dashoffset: 0;
  }
}

@-webkit-keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: -50px;
  }
}

@keyframes up-and-down {
  0%,
  100% {
    top: 0;
  }
  50% {
    top: -50px;
  }
}
/****************************** Start Snow *************************/

.snow-container {
  overflow: hidden;
}

.snowflake {
  position: absolute;
  background: url(../img/dot.png);
  border-radius: 50%;
  opacity: 0.8;
}

@-webkit-keyframes fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateY(100vh);
            transform: translateY(100vh);
  }
}

@keyframes fall {
  0% {
    opacity: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
    -webkit-transform: translateY(100vh);
            transform: translateY(100vh);
  }
}

@-webkit-keyframes diagonal-fall {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
    -webkit-transform: translate(10vw, 100vh);
            transform: translate(10vw, 100vh);
  }
}

@keyframes diagonal-fall {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 0.25;
    -webkit-transform: translate(10vw, 100vh);
            transform: translate(10vw, 100vh);
  }
}
/****************************** End Snow *************************/


.text-blue{
  color: #211e61 !important;
}