/*
:root {
	 //custom-color
    --theme-yellow: #ff8100;
    --theme-yellow-light: #FFECBB;
    --theme-red: #ED1B24;
    --dardk-bg: #262626;
    --theme-green: #4EAF4E;
    --theme-green-light: #A4EDA4;
    --theme-white: #fff;
    --light-white: #FDF8F8;
    --l-light-white: #B2B0BC;
    --theme-grey: #F5F5F5;
    --theme-grey-d: #EBEBEB;
    --light-grey: #F3F3F3;
    --dm-grey: #464646;
    --bg-grey: #D9D9D9;
    --dark-color: #151515;
    --black: #000;
    
    //Brand-colors
	--heading-color: #181818;
	--heading-color-light: #EAEAEA;
	--text-color: #595566;
	--text-color-alt: ;
    --theme-color-alt: ;
    
//layout--------------
    //font-family
    --theme-font: "Cabin", sans-serif;
    --theme-font-alt: "Lato", sans-serif;
    
    //font-size
    --theme-font-size: 18px;
    
    //Paddings-For-Theme 
    --pading-top-sec: 4rem;
    --padding-bottom-sec: 4rem;
    
    //Border-For-Theme
    --theme-border-radius: 1rem;
    --border-grey: #C1C1C1;
    --border-light: #DBDBD9; 
    
}*/

:root {
	font-size: var(--theme-font-size);
}


a:hover {
  color: var(--theme-red);
  text-decoration: none;
}

body {
  font-size: 1rem;
  font-weight: normal;
  color: var(--text-color);
  font-family: var(--theme-font-alt);
  line-height: 147.5%;
}

.br-3 {
  border-radius: 1.2rem;
}

.oh {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: var(--heading-color);
  font-family: var(--theme-font);
  font-weight: 700;
}

.h2 {
  font-size: 2.5rem;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

.text-blue1 {
  color: var(--blue-1);
}

.text-blue2 {
  color: var(--blue-2);
}

.text-blue3 {
  color: var(--blue-3);
}

.text-blue4 {
  color: var(--blue-4);
}

.text-blue5 {
  color: var(--blue-5);
}

.text-blue6 {
  color: var(--blue-6);
}

.text-blue7 {
  color: var(--blue-7);
}

.text-yellow {
  color: var(--yellow-1);
}

.text-l-white {
  color: var(--l-white);
}

.section-padding-top {
  padding-top: var(--pading-top-sec);
}

.section-padding-bottom {
  padding-bottom: var(--padding-bottom-sec);
}

.flex-grow-1 {
  flex-grow: 1;
}

.z-index-1 {
  z-index: 1;
}

.section-Bg {
  position: relative;
}
.section-Bg .bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.title-pil {
  background: var(--theme-yellow);
  color: var(--heading-color);
  text-transform: uppercase;
  padding: 0.1rem 0.7rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  display: inline-flex;
  line-height: 1rem;
}
.title-pil.green {
  background: var(--theme-green);
  color: var(--white);
}

.theme-btn {
  position: relative;
  display: flex;
  background: var(--white);
  width: -moz-max-content;
  width: max-content;
  padding: 0.8rem 1.7rem;
  border-radius: 3rem;
  text-decoration: none;
  color: var(--heading-color);
  text-decoration: none !important;
  transition: background-color 0.5s;
}
.theme-btn span {
  text-wrap: nowrap;
  overflow: hidden;
  height: 1.3rem;
  flex-direction: column;
  display: flex;
}
.theme-btn span:before, .theme-btn span:after {
  content: attr(r-data);
  transform: translateY(-1.6rem);
  transition: transform 0.5s;
  text-decoration: none !important;
}
.theme-btn.dark {
  background-color: var(--dark-color);
  color: var(--white);
}
.theme-btn:hover span:before, .theme-btn:hover span:after {
  transform: translateY(-0.1rem);
}
.theme-btn.yellow {
  background: var(--theme-yellow);
  color: var(--heading-color);
}
.theme-btn.yellow:hover {
  background: var(--theme-white);
}
.theme-btn.hover_black:hover {
  background: var(--dardk-bg);
  color: var(--white);
  transition: 0.5s;
}

.cursor-pointer {
  cursor: pointer;
}/*# sourceMappingURL=global.css.map */