:root {
  --font_primary: "Poppins", sans-serif;
  --color_primary: #0a1a2f;
  --color_secondary: #e9eff3;
  --color_tertiary: #0472c6;
  --color_white: #f3f3f3;
  --color_black: #383e37;
  --color_grey: #232323;
  --color_white_tint: #fffef3;
  --container_width: 100%;
  --container_left_space: calc((100% - var(--container_width)) / 2);
  --transition: ease all 300ms; }
  @media (min-width: 768px) and (max-width: 991px) {
    :root {
      --container_width: 750px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    :root {
      --container_width: 970px; } }
  @media (min-width: 1200px) {
    :root {
      --container_width: 1170px; } }

/* ============================
   Poppins Font Family
   ============================ */
/* Poppins Thin */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap; }
/* Poppins Thin Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap; }
/* Poppins Regular */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap; }
/* Poppins Medium */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
/* Poppins Medium Italic */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
  font-display: swap; }
/* Poppins SemiBold */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap; }
/* Poppins Bold */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap; }
.text_xxxl {
  font-size: 50px;
  font-family: var(--font_primary); }
  @media screen and (max-width: 1024px) {
    .text_xxxl {
      font-size: 46px; } }
  @media screen and (max-width: 767px) {
    .text_xxxl {
      font-size: 38px; } }
  @media screen and (max-width: 400px) {
    .text_xxxl {
      font-size: 34px; } }

.text_xxl {
  font-size: 40px;
  font-family: var(--font_primary); }
  @media screen and (max-width: 1024px) {
    .text_xxl {
      font-size: 36px; } }
  @media screen and (max-width: 767px) {
    .text_xxl {
      font-size: 30px; } }

.text_xl {
  font-size: 30px;
  font-family: var(--font_primary); }
  @media screen and (max-width: 1024px) {
    .text_xl {
      font-size: 26px; } }
  @media screen and (max-width: 767px) {
    .text_xl {
      font-size: 24px; } }

.text_lg {
  font-size: 24px;
  font-family: var(--font_primary); }
  @media screen and (max-width: 767px) {
    .text_lg {
      font-size: 22px; } }

.text_md {
  font-size: 20px;
  font-family: var(--font_primary); }
  @media screen and (max-width: 767px) {
    .text_md {
      font-size: 16px; } }

.text_reg {
  font-size: 18px;
  font-family: var(--font_primary); }
  @media screen and (max-width: 767px) {
    .text_reg {
      font-size: 16px; } }

.text_xs {
  font-size: 16px;
  font-family: var(--font_primary); }

.text_xxs {
  font-size: 14px;
  font-family: var(--font_primary); }

.font_primary {
  font-family: var(--font_primary); }

.color_primary {
  color: var(--color_primary); }

.color_secondary {
  color: var(--color_secondary); }

.color_tertiary {
  color: var(--color_tertiary); }

.color_white {
  color: var(--color_white); }

.color_black {
  color: var(--color_black); }

.text_300 {
  font-weight: 300; }

.text_400 {
  font-weight: 400; }

.text_500 {
  font-weight: 500; }

.text_600 {
  font-weight: 600; }

.text_700 {
  font-weight: 700; }

.text_800 {
  font-weight: 800; }

.text_900 {
  font-weight: 900; }

body {
  margin: 0; }

p {
  margin: 0; }

a {
  text-decoration: none; }

* {
  box-sizing: border-box; }

div,
section {
  display: block; }

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: var(--color_primary); }

::-webkit-scrollbar-track {
  border-radius: 50px; }

::-webkit-scrollbar-thumb {
  background: var(--color_yellow);
  border-radius: 50px; }

.container-fluid, .container {
  width: 100%;
  position: relative;
  padding-left: 15px;
  padding-right: 15px; }

.container {
  margin: auto; }
  @media (min-width: 768px) and (max-width: 991px) {
    .container {
      width: 750px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .container {
      width: 970px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1170px; } }

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto; }

.color_primary {
  color: var(--color_primary); }

.color_secondary {
  color: var(--color_secondary); }

.color_tertiary {
  color: var(--color_tertiary); }

.color_white {
  color: var(--color_white); }

.color_grey {
  color: var(--color_grey); }

.color_white_tint {
  color: var(--color_white_tint); }

.hidden {
  display: none !important; }

.hidden_lg {
  display: block; }
  @media (max-width: 1199px) {
    .hidden_lg {
      display: none !important; } }

.visible_lg {
  display: none; }
  @media (max-width: 1199px) {
    .visible_lg {
      display: block !important; } }

.hidden_xs {
  display: inline; }
  @media (max-width: 767px) {
    .hidden_xs {
      display: none !important; } }

.hidden_md {
  display: block; }
  @media (max-width: 991px) {
    .hidden_md {
      display: none !important; } }

.hidden_sm {
  display: block; }
  @media only screen and (min-width: 767px) and (max-width: 1024px) {
    .hidden_sm {
      display: none !important; } }

.visible_xs {
  display: block; }
  @media (min-width: 767px) {
    .visible_xs {
      display: none !important; } }

.opacity_08 {
  opacity: 0.8; }

.overflow_hidden {
  overflow: hidden; }

.text_uppercase {
  text-transform: uppercase; }

.width_100 {
  width: 100%; }

.text_center {
  text-align: center; }

@media (max-width: 767px) {
  .m_text_center {
    text-align: center; } }
.d_f {
  display: flex; }

.f_w {
  display: flex;
  flex-wrap: wrap; }

.f_w_j {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.f_w_a_j_center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center; }

.f_j {
  display: flex;
  justify-content: space-between; }

.f_w_se {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly; }

.f_w_a {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.f_r_aj_between {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.f_r_aj_center {
  display: flex;
  align-items: center;
  justify-content: center; }

.f_r_a_center {
  display: flex;
  align-items: center; }

.a_center {
  align-items: center; }

.f_r_j_center {
  display: flex;
  justify-content: center; }

.f_c_aj_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }

.f_c_a_center {
  display: flex;
  flex-direction: column;
  align-items: center; }

.f_c_j_center {
  display: flex;
  flex-direction: column;
  justify-content: center; }

.a_c_space_evenly {
  align-content: space-evenly; }

.j_c_center {
  justify-content: center; }

.f_d_c {
  flex-direction: column; }

.m_0_auto {
  margin: 0 auto; }

.m_tb_0 {
  margin: 0; }

.m_b_5 {
  margin: 0 0 5px; }

.m_t_5 {
  margin: 5px 0 0; }

.m_tb_5 {
  margin: 5px 0; }

.m_b_10 {
  margin: 0 0 10px; }

.m_t_10 {
  margin: 10px 0 0; }

.m_tb_10 {
  margin: 10px 0; }

.m_b_15 {
  margin: 0 0 15px; }

.m_t_15 {
  margin: 15px 0 0; }

.m_tb_15 {
  margin: 15px 0; }

.m_b_20 {
  margin: 0 0 20px; }

.m_t_20 {
  margin: 20px 0 0; }

.m_tb_20 {
  margin: 20px 0; }

.m_b_30 {
  margin: 0 0 30px; }

.m_t_30 {
  margin: 30px 0 0; }

.m_tb_30 {
  margin: 30px 0; }

.m_b_40 {
  margin: 0 0 40px; }

.m_t_40 {
  margin: 40px 0 0; }

.m_tb_40 {
  margin: 40px 0; }

.m_b_80 {
  margin: 0 0 80px; }
  @media only screen and (max-width: 767px) {
    .m_b_80 {
      margin: 0 0 60px; } }

.m_t_80 {
  margin: 80px 0 0; }
  @media only screen and (max-width: 767px) {
    .m_t_80 {
      margin: 60px 0 0; } }

.m_tb_80 {
  margin: 80px 0; }
  @media only screen and (max-width: 767px) {
    .m_tb_80 {
      margin: 60px 0; } }

.m_b_100 {
  margin: 0 0 100px; }
  @media only screen and (max-width: 767px) {
    .m_b_100 {
      margin: 0 0 80px; } }

.m_t_100 {
  margin: 100px 0 0; }
  @media only screen and (max-width: 767px) {
    .m_t_100 {
      margin: 80px 0 0; } }

.m_tb_100 {
  margin: 100px 0; }
  @media only screen and (max-width: 767px) {
    .m_tb_100 {
      margin: 80px 0; } }

.p_t {
  padding-top: 20px; }

.pb_5 {
  padding-bottom: 5px; }

.pt_10 {
  padding-top: 10px; }

.pb_10 {
  padding-bottom: 10px; }

.ptb_10 {
  padding: 10px 0; }

.pt_20 {
  padding-top: 20px; }
  @media only screen and (max-width: 767px) {
    .pt_20 {
      padding-top: 10px; } }

.pb_20 {
  padding-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    .pb_20 {
      padding-bottom: 10px; } }

.pb_25 {
  padding-bottom: 25px; }
  @media only screen and (max-width: 767px) {
    .pb_25 {
      padding-bottom: 15px; } }

.pt_15 {
  padding-top: 15px; }

.pb_15 {
  padding-bottom: 15px; }

.ptb_20 {
  padding: 20px 0; }
  @media only screen and (max-width: 767px) {
    .ptb_20 {
      padding: 10px 0px; } }

.pt_30 {
  padding-top: 30px; }

.pt_35 {
  padding-top: 35px; }

.pb_30 {
  padding-bottom: 30px; }

.ptb_30 {
  padding: 30px 0; }

.pt_40 {
  padding-top: 40px; }

.pb_40 {
  padding-bottom: 40px; }

.ptb_40 {
  padding: 40px 0; }

.pt_50 {
  padding-top: 50px; }

.pb_50 {
  padding-bottom: 50px; }

.ptb_50 {
  padding: 50px 0; }

.ptb_60 {
  padding: 60px 0; }

.ptb_70 {
  padding: 70px 0; }

@media only screen and (max-width: 767px) {
  .ptb_70 {
    padding: 50px 0; } }
@media only screen and (max-width: 767px) {
  .ptb_60 {
    padding: 40px 0; } }
.pt_60 {
  padding-top: 60px; }

@media only screen and (max-width: 767px) {
  .pt_60 {
    padding-top: 40px; } }
.pb_60 {
  padding-bottom: 60px; }

@media only screen and (max-width: 767px) {
  .pb_60 {
    padding-bottom: 40px; } }
.ptb_80 {
  padding: 80px 0; }

@media only screen and (max-width: 1199px) {
  .ptb_80 {
    padding: 60px 0; } }
.ptb_90 {
  padding: 90px 0; }

@media only screen and (max-width: 1199px) {
  .ptb_90 {
    padding: 70px 0; } }
.pt_80 {
  padding-top: 80px; }

@media only screen and (max-width: 1199px) {
  .pt_80 {
    padding-top: 60px; } }
.pb_80 {
  padding-bottom: 80px; }

@media only screen and (max-width: 1199px) {
  .pb_80 {
    padding-bottom: 60px; } }
.ptb_100 {
  padding: 100px 0; }

@media only screen and (max-width: 1199px) {
  .ptb_100 {
    padding: 60px 0; } }
.pt_100 {
  padding-top: 100px; }

@media only screen and (max-width: 1199px) {
  .pt_100 {
    padding-top: 60px; } }
.pb_100 {
  padding-bottom: 100px; }

@media only screen and (max-width: 1199px) {
  .pb_100 {
    padding-bottom: 60px; } }
.opacity_50 {
  opacity: 0.5; }

.opacity_40 {
  opacity: 0.4; }

.opacity_80 {
  opacity: 0.8; }

.opacity_70 {
  opacity: 0.7; }

.opacity_30 {
  opacity: 0.3; }

.b_r_20 {
  border-radius: 20px; }

.b_r_30 {
  border-radius: 30px; }

.fadeInUp[data-scroll] {
  transition: all 0.7s ease-out; }
.fadeInUp[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0); }
.fadeInUp[data-scroll="out"] {
  opacity: 0;
  transform: translateY(100px); }

.lh_120 {
  line-height: 110%; }
  @media screen and (max-width: 767px) {
    .lh_120 {
      line-height: 100%; } }

.lh_125 {
  line-height: 110%; }
  @media screen and (max-width: 767px) {
    .lh_125 {
      line-height: 110%; } }

.lh_1375 {
  line-height: 137.5%; }
  @media screen and (max-width: 767px) {
    .lh_1375 {
      line-height: 110%; } }

.lh_16667 {
  line-height: 150%; }
  @media screen and (max-width: 767px) {
    .lh_16667 {
      line-height: 140%; } }

.lh_138889 {
  line-height: 138.889%; }
  @media screen and (max-width: 767px) {
    .lh_138889 {
      line-height: 110%; } }

a {
  text-decoration: none !important;
  color: unset; }

::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background: var(--color_primary); }

::-webkit-scrollbar-track {
  border-radius: 50px; }

::-webkit-scrollbar-thumb {
  background: var(--color_white);
  border-radius: 50px; }

/* Scroll Out */
.toTop[data-scroll] {
    transition: all 0.5s ease-out; }
  .toTop[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0); }
  .toTop[data-scroll="out"] {
    opacity: 0;
    transform: translateY(200px); }

  .toBottom[data-scroll] {
    transition: all 0.5s ease-out; }
  .toBottom[data-scroll="in"] {
    opacity: 1;
    transform: translateY(0); }
  .toBottom[data-scroll="out"] {
    opacity: 0;
    transform: translateY(-100px); }

  .toLeft[data-scroll] {
    transition: all 0.5s ease-out; }
  .toLeft[data-scroll="in"] {
    opacity: 1;
    transform: translateX(0); }
  .toLeft[data-scroll="out"] {
    opacity: 0;
    transform: translateX(-100px); }

  .toRight[data-scroll] {
    transition: all 0.5s ease-out; }
  .toRight[data-scroll="in"] {
    opacity: 1;
    transform: translateX(0); }
  .toRight[data-scroll="out"] {
    opacity: 0;
    transform: translateX(100px); }

  .toFade[data-scroll] {
    transition: all 0.5s ease-out; }
  .toFade[data-scroll="in"] {
    opacity: 1; }
  .toFade[data-scroll="out"] {
    opacity: 0; }

/*# sourceMappingURL=base.css.map */
