/* =================================
 FONT SIZE & WEIGHT & COLOR
========================= ============== */
.font-14 {
  font-size: 14px;
}
.font-16 {
  font-size: 16px;
}
.font-18 {
  font-size: 18px;
}
.font-20 {
  font-size: 20px;
}
.font-24 {
  font-size: 24px;
}

.text-font-400-white {
  font-weight: 400;
  color: var(--white-01-color);
}
.text-font-400-gray {
  font-weight: 400;
  color: var(--gray-04-color);
}

.text-font-500-white {
  font-weight: 500;
  color: var(--white-01-color);
}
.text-font-500-gray {
  font-weight: 500;
  color: var(--gray-04-color);
}

.text-font-700-white {
  font-weight: 700;
  color: var(--white-01-color);
}
.text-font-700-gray {
  font-weight: 700;
  color: var(--gray-04-color);
}

.line-height {
  line-height: 1.8;
}

/* ================================
  START PADDING
  =================================*/

.py-010 {
  padding: 10px 0;
}

.py-015 {
  padding: 15px 0;
}

.pb-B-10 {
  padding-bottom: 10px;
}
.pt-T-10 {
  padding-top: 10px;
}
.shape01 {
  background: var(--blue-01-color);
  filter: blur(180.75px);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.6;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.shape02 {
  right: 0;
  left: initial;
  bottom: 0;
  top: initial;
}
.section-bg {
  background: var(--dark-01-color);
}

.overlay-bg-fixed {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--overlay-01-bg);
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.overlay-background {
  background: linear-gradient(
    240deg,
    var(--overlay-01-bg),
    var(--overlay-01-bg)
  );
}

.overlay-dark-bg::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000000d8;
}
.overlay-background-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000087;
  top: 0;
  left: 0;
  border-radius: 16px;
}
.overlay-background-image-2::after {
  content: "";
  background: #000000de;
}
.z-index {
  z-index: -1;
}

.w-fit-content {
  width: fit-content;
}
.icon-rounded-45px {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-03);
  transition: all 0.5s;
  cursor: pointer;
}

.padding {
  padding: 70px 0;
}

.icon-star {
  font-size: 17px;
  color: var(--orange-01-color);
}

.bg-border-color {
  background: var(--dark-01-color);
  border: var(--border-02);
  padding: 25px;
  border-radius: 20px;
  transition: all 0.5s;
}
.bg-border-color:hover {
  border-color: var(--dark-01-lavender);
}

.text-hover {
  transition: all 0.5s;
}

.text-hover:hover {
  color: var(--cyan-01-color);
}

.border-bottom-01 {
  border-bottom: 1px solid var(--dark-02-color);
}

.border-top-01 {
  border-top: 1px solid var(--dark-02-color);
}
.border-t-b {
  border-top: 1px solid var(--dark-02-color);
  border-bottom: 1px solid var(--dark-02-color);
}

.cursor-events {
  cursor: pointer;
}

.header-info-bg{
  background: var(--dark-03-color) !important;
}
.border-radius-8{
  border-radius: 8px;

}
.border-radius-16{
  border-radius: 16px;
}

.border-radius-24{
  border-radius: 24px;
}

