/*BLUE #4dabf7
MAIN COLOR : #5293f4*/

/*WIDTH AND HEIGHT*/
.w-1 {
  width: 100%;
  max-width: 80rem;
}
.container-w {
  width: 100%;
  max-width: 110rem;
}

.container-w-150 {
  width: 100%;
  max-width: 150rem;
}

.w-2 {
  width: 100%;
  max-width: 80rem;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.w-full {
  width: 100%;
}

.wx-full {
  max-width: 100%;
}

.h-full {
  height: 100%;
}
.h-1 {
  height: 4rem;
}

.w-25 {
  width: 25%;
}
.w-20 {
  width: 20%;
}

.w-30 {
  width: 30%;
}
.w-36 {
  width: 36% !important;
}
.w-40 {
  width: 40%;
}
.w-45 {
  width: 45% !important;
}
.w-50 {
  width: 50%;
}
.w-70 {
  width: 70%;
}
.w-80 {
  width: 80%;
}
.w-90 {
  width: 90%;
}
.w-95 {
  width: 95%;
}
.w-60 {
  width: 60%;
}
.h-auto {
  height: auto;
}
.w-auto {
  width: auto;
}
.h-4 {
  height: 4rem;
}
.btn-w-1 {
  width: 12rem;
}

/****FLEXBOX AND GRID****/

.align {
  align-items: center;
}

.flex {
  display: flex;
}

.fd-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
  flex: 0;
}
.jc {
  justify-content: center;
}
.space-between {
  justify-content: space-between;
}
.j-start {
  justify-content: flex-start;
}
.j-end {
  justify-content: flex-end;
}

.align-start {
  align-items: flex-start;
}

.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-4 {
  gap: 4rem;
}
.gap-5 {
  gap: 5rem;
}
.gap-6 {
  gap: 6rem;
}
.gap-7 {
  gap: 7rem;
}

.grid {
  display: grid;
}
.grid-col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-col-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-col-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-col-7 {
  grid-template-columns: repeat(7, 1fr);
}
.grid-col-8 {
  grid-template-columns: repeat(8, 1fr);
}
.grid-row-gap-1 {
  grid-row-gap: 4rem;
}
.grid-col-gap-1 {
  grid-column-gap: 2rem;
}
.grid-ji-center {
  justify-items: center;
}

.inline-block {
  display: inline-block;
}
.block {
  display: block;
}

.display-none {
  display: none;
}

/***DISPLAY***/
.red-fill {
  fill: #fa5252;
}

/*MARGIN AND PADDING*/

.mg-5 {
  margin: 5rem 0;
}
.mg-3 {
  margin: 3rem 0;
}
.mgt-5 {
  margin-top: 5rem;
}
.mgt-3 {
  margin-top: 3rem;
}
.mgt-7 {
  margin-top: 7rem;
}
.mgt-2 {
  margin-top: 2rem;
}
.mgt-1 {
  margin-top: 1rem;
}
.mgb-5 {
  margin-bottom: 5rem;
}
.mgb-7 {
  margin-bottom: 7rem;
}
.mgb-3 {
  margin-bottom: 3rem;
}
.mgb-2 {
  margin-bottom: 2rem;
}
.mgb-1 {
  margin-bottom: 1rem;
}
.my-10 {
  margin-top: 10rem;
  margin-bottom: 10rem;
}
.my-12 {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
.my-7 {
  margin-top: 7rem;
  margin-bottom: 7rem;
}
.my-5 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.p-4 {
  padding: 1rem;
}

.pr-1 {
  padding-right: 1rem;
}

.p-3 {
  padding: 3rem;
}
.p-2 {
  padding: 2rem;
}
.p-1 {
  padding: 1rem;
}
.p-1-3 {
  padding: 1.3rem;
}
.p-5 {
  padding: 5rem;
}

.pp-1 {
  padding: 5px;
}
.pp-2 {
  padding: 7px;
}

/********TEXT AND FONT*********/

.h3-2 {
  font-size: 2rem;
}

.s-icon {
  font-size: 2.5rem;
}

.bold {
  font-weight: bold;
}

.fs-1-5 {
  font-size: 1.5rem;
}

.fs-2 {
  font-size: 2rem;
}
.fs-2-5 {
  font-size: 2.5rem;
}
.fs-1 {
  font-size: 1.3rem;
}
.fs-16 {
  font-size: 17px;
}

.fw-400 {
  font-weight: 400;
}
.icon-fs-2-3 {
  font-size: 2.3rem;
}

.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-dec-none {
  text-decoration: none;
}

.line-h-1 {
  line-height: 2.3rem;
}
.line-h-2 {
  line-height: 4rem;
}

.text-black {
  color: black;
}

.morabba-black {
  font-family: Morabba;
  font-weight: 900;
}

.morabba-bold {
  font-family: Morabba;
  font-weight: 800;
}

/***BORDER***/
.border-gray-1 {
  border: 1px solid #dee2e6;
}
.border-gray-2 {
  border: 1px solid #b9b9b9;
}

.b-1 {
  border-radius: 1rem;
}
.round {
  border-radius: 26px;
}
.aj-radius {
  border-radius: 25px;
}

.b-50 {
  border-radius: 50%;
}
.no-border {
  border: none;
}

/****POSITION****/

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.sticky {
  position: sticky;
}
.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}
.bottom-0 {
  bottom: 0;
}
.top-7 {
  top: 7px;
}
.bottom-3 {
  bottom: 3rem;
}
.left-5 {
  left: 5px;
}

/****SHADOW****/
.blue-shadow {
  box-shadow: 0 7px 20px rgba(82, 147, 244, 0.5);
}
.m-shadow {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.box-shadow-1 {
  box-shadow: 0 0 15px -3px rgba(173, 181, 189, 0.2);
}

.d-sh-shadow {
  box-shadow: 0px 30px 80px 0px rgba(5, 1, 64, 0.1);
}

.rch-shadow {
  box-shadow: 0 10px 50px 0 rgba(119, 132, 157, 0.1411764706) !important;
}

/****COLOR AND BACKGROUND****/

.m-txt-color {
  color: #14213d;
}

.gray-1 {
  background-color: #f2f6fc;
}
.gray-2 {
  background-color: #e9ecef;
}
.gray-3 {
  background-color: #dee2e6;
}
.red-bg {
  background-color: #fa5252;
}
.red-bg-2 {
  background-color: #ffc9c9;
}
.blue-bg {
  background-color: #5293f4;
}
.blue-bg-1 {
  background-color: #d0ebff;
}
.c-w {
  color: white;
}

.color-red-5 {
  color: #fa5252;
}

.white-bg {
  background-color: white;
}
.red-fill {
  fill: #fa5252;
}

.color-gray-5 {
  color: #adb5bd;
}
.color-blue-6 {
  color: #228be6;
}

/*OVERFLOW*/

.ov-x {
  overflow: hidden;
}
.ov-x-scroll {
  overflow-x: scroll;
}

.overflow-hidden {
  overflow: hidden;
}

/***POINTER***/
.pointer {
  cursor: pointer;
}

/*LIST*/
.list-style-none {
  list-style: none;
}

.opacity-5 {
  opacity: 0.5;
}

.visible-filter {
  visibility: visible;
  opacity: 1;
  background-color: white;
  height: 100%;
  transform: translateX(0);
}
