/*
*
*
******* :: INDEX OF CSS :: *******
:: 1.0 GENERAL, LANDING, LOGIN, REGISTER AND BLOG
  :: 2.0 GLOBAL CSS
  :: 3.0 COMMON CSS
  :: 4.0 ERROR AREA CSS
****************************** */

/* ******************************
:: 1.0 WEB FONTS
****************************** */
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap');
/* ******************************
:: 2.0 GLOBAL CSS
****************************** */

/* firebase warning remove later */
.firebase-emulator-warning {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  color: #565656;
}

*,
::after,
::before {
  box-sizing: border-box;
}

.logo-font {
  font-family: 'aileron', sans-serif;
  font-weight: 200 !important;
  font-size: 42px;
  color: white;
  margin-left: 7px;
}

.border-box-test {
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0 !important;
}

.main {
  background: #fff;
}

section,
.section {
  position: relative;
}

.container {
  width: 100%;
  margin: 0 auto;
}

img {
  padding: 0em !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  color: #222;
  margin-bottom: 0;
}

h1 {
  font-size: 4em;
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: 40px;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
  font-weight: 400;
}

p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #565656;
  margin-bottom: 0;
}

a {
  color: #444;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a:hover,
a:focus {
  color: #7c4fe0;
}

a,
a:hover,
a:focus,
button:focus {
  outline: 0;
}
.btn:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}

.text-body > a {
  text-decoration: underline;
  color: #212529;
}

ol,
ul {
  margin: 0;
  padding: 0;
}

ol li,
ul li {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
}

div:focus {
  outline: 0 !important;
}

.grey {
  color: #e1dfe6;
}

.cursor-default {
  cursor: default;
}

/* ******************************
:: 3.0 COMMON CSS
****************************** */

.d-flex {
  display: flex;
}

.fdc {
  flex-direction: column;
}

.ps-ab {
  position: absolute;
}

.ps-rl {
  position: relative;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.hw100 {
  height: 100%;
  width: 100%;
}

.bg-t {
  background: transparent;
}

.js-ac {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

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

.curs-d {
  cursor: default;
}

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

.ofh {
  overflow: hidden;
}

.lh1 {
  line-height: 1;
}

.wrbw {
  word-wrap: break-word;
}

.wsbw {
  white-space: break-spaces;
}

.bor0 {
  border: 0;
}

a:hover {
  text-decoration: none;
}

button:hover {
  outline: none;
}

.gradiant {
  background: rgb(110, 51, 143);
  background: linear-gradient(200deg, rgba(110, 51, 143, 1) 6%, rgba(34, 105, 159, 1) 67%);
}

/*SECTION PADDING*/
.pt_0 {
  padding-top: 0;
}

.ptb_50 {
  padding: 50px 0;
}

.ptb_100 {
  padding: 100px 0;
}

.ptb_150 {
  padding: 150px 0;
}

.ptb_180 {
  padding: 180px 0;
}

/*BUTTONS*/
.btn {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-align: center;
  padding: 18px 30px;
  border: 0 none;
  border-radius: 6px;
  outline: 0 none;
  position: relative;
  z-index: 1;
}

.btn-small {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  text-align: center;
  padding: 8px 15px;
  border: 0 none;
  border-radius: 6px;
  outline: 0 none;
  position: relative;
  z-index: 1;
}

.btn:hover,
.btn:focus,
.btn:active,
.btn-small:hover,
.btn-small:focus,
.btn-small:active {
  color: #fff;
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.no-style-button {
  border: 0px;
  background-color: transparent;
}

/* ******************************
:: 4 ERROR AREA CSS
****************************** */
.error-area h1 {
  font-size: 18vmax;
}

@media (max-width: 767px) {
  .error-area h1 {
    font-size: 8em !important;
  }
}

@media (max-width: 575px) {
  .error-area h1 {
    font-size: 7em !important;
  }
}
