* {
  padding: 0;
  margin: 0;
  text-decoration: none;
  box-sizing: border-box;
  list-style: none;
  transition: all .3s ease;
  scroll-behavior: smooth;
}
html,
body {
  height: 100%;
  width: 100%;
}

:root {
  --primary: #5858f8;
  --primary-1: #5858f811;
  --primary-2: #5858f822;
  --primary-3: #5858f833;
  --primary-4: #5858f844;
  --primary-5: #5858f855;
  --pprimary: #362d86;
  --pprimary-1: #362d8611;
  --pprimary-2: #362d8622;
  --pprimary-3: #362d8633;
  --pprimary-4: #362d8644;
  --pprimary-5: #362d8655;
  --secondary: #cf4830;
  --secondary-1: #cf483011;
  --secondary-2: #cf483022;
  --secondary-3: #cf483033;
  --secondary-4: #cf483044;
  --secondary-5: #cf483055;
  --ssecondary: #ff4f40;
  --ssecondary-1: #ff4f4011;
  --ssecondary-2: #ff4f4022;
  --ssecondary-3: #ff4f4033;
  --ssecondary-4: #ff4f4044;
  --ssecondary-5: #ff4f4055;
  --text-img: #fafafa;
  --text-color: #333;
  --shadow-1: #0001;
  --shadow-2: #0002;
  --bg: #fff;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 3px;
  margin-left: 5px;
}

*::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 5px;
}

*::-webkit-scrollbar-track {
  background: var(--secondary-3);
  border-radius: 10px;
}

.mio {
  cursor: pointer;
}

.loadder .logos {
  display: flex;
  align-items: center;
  font-size: 84px;
  font-weight: bold;
  color: #c8c8e8;
}

.loadder .logo,
.loadder {
  display: flex;
  align-items: center;
  gap: 5px;
}

.loadder img {
  position: fixed;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  width: 300px;
  object-fit: cover;
}

.loadder.active {
  scale: 0;
  transition: all 0.3s;
  border-radius: 50px;
}

.loadder {
  justify-content: center;
  flex-direction: column;
  line-height: 50px;
  font-family: Po01;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  scale: 1;
  transition: all 0.3s;
  z-index: 3;
}

.loadder .logo span:first-child {
  font-size: 40px;
  color: #c8c8c8;
}

.loadder .logos + span {
  color: #555;
  animation: anim 2.5s ease-in-out infinite;
  animation-delay: 0.3s;
  transition: all 0.3s;
  opacity: 0;
  font-family: Po02;
}

.loadder .logo + span {
  font-weight: bold;
  font-size: 120px;
  position: relative;
  top: -18px;
  color: #c8c8c8;
}

.loaddingProcess {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--primary) url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: Po02;
  color: var(--text-color);
  padding: 6% 10%;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: all .4s;   
}

.loaddingProcess.active {
  visibility: visible;
  opacity: 1;
  transition: all .4s;
}

@media screen and (max-width: 400px) {
  .loaddingProcess {
    padding: 25% 20px;
  }
}

.loaddingProcess > div img{
  margin: -40px 0;
}

.loaddingProcess > div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  width: 100%;
  background: #fffe;
  border-radius: 20px;
  box-shadow: 0 5px 30px var(--shadow-2);
}

.loaddingProcess span {
  display: inline-block;
  text-align: center;
}

@keyframes anim {
  0% {
    opacity: 1;
    transition: all 0.3s;
  }

  50% {
    opacity: 0;
    transition: all 0.3s;
  }

  100% {
    opacity: 1;
    transition: all 0.3s;
  }
}

.hide {
  display: none;
}

.hide2 {
  display: inline-block;
}

.msg {
  position: fixed;
  display: flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 5px;
  color: #111;
  font-weight: lighter;
  width: 100%;
  max-width: 390px;
  z-index: 3;
  left: 10%;
  bottom: -120%;
  transition: all 1s;
}

.msg.active {
  bottom: 20px;
  transition: all 0.3s;
}

.msg span.mio {
  margin-right: 15px;
  font-size: 25px;
}

.successMess {
  background: #555;
  color: #f0f0f0;
}

.errorMess {
  background: #fc869e;
  color: #111;
}

.primary {
  color: var(--primary);
}

.secondary {
  color: var(--secondary);
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 600px) {
  .loadder img {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    width: 300px;
    object-fit: cover;
  }

  .loadder {
    line-height: 30px;
  }

  .loadder .logos {
    padding-top: 100px;
    scale: 0.8;
    display: none;
  }

  .loadder > span {
    position: relative;
    top: 170px;
  }
}

@media screen and (max-width: 480px) {
  .msg {
    width: 92%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 400px) {
  .loadder .logos {
    padding-top: 0;
    scale: 0.6;
  }

  .loadder img {
    top: 48%;
    left: 50%;
    width: 150px;
  }

  .loadder > span {
    top: 70px;
  }
}
