
/* LOADER LAZY ============================= *
.slick-loading {
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 154px;
	animation: scale ease 1.4s infinite;
}

.slick-loading::before {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	background: #7289da;
	top: -10px;
	left: -10px;
	animation: top ease 3s infinite;
}

.slick-loading::after {
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	background: #7289da;
	bottom: -10px;
	right: -10px;
	animation: bottom ease 3s infinite;
}

@keyframes top{
	0%{
		top: -10px;
	}
	20%{
		top: 100%;
		left: -10px;
	}
	40%{
		left: 100%;
		top: 100%;
		transform: rotate(180deg);
	}
	60%{
		top: -10px;
		left: 100%;
	}
	80%{
		top: -10px;
		transform: rotate(360deg);
	}
	100%{
		left: -10px;
	}
}

@keyframes bottom{
	0%{
		bottom: -10px;
	}
	20%{
		bottom: 100%;
		right: -10px;
	}
	40%{
		right: 100%;
		bottom: 100%;
		transform: rotate(180deg);
	}
	60%{
		bottom: -10px;
		right: 100%;
	}
	80%{
		bottom: -10px;
		transform: rotate(360deg);
	}
	100%{
		right: -10px;
	}
}

@keyframes scale{
	0%{
		transform: scale(1);
	}
	50%{
		transform: scale(0.7);
	}
	100%{
		transform: scale(1);
	}
}


/* LOADER PAGE ============================= */
#loader {
  display: flex;
  justify-content: center;
  align-items: center;
  /*background: #1b1b26;*/
  background: #1b1b26d6;
  backdrop-filter: blur(5px);
  height: 100%;
  overflow: hidden;
  z-index: 999;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  
}
.coder-logo-animation {
  position: relative;
  height: 190px;
  width: 250px;
  -webkit-animation: coder-logo 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  -moz-animation: coder-logo 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  animation: coder-logo 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  transform-origin: center center;
}

.left, .right {
  position: absolute;
}

.left {
  top: 115px;
  left: 26px;
  transform: rotate(-45deg);
}

.left div {
  position: absolute;
  background: #00aeef;
  width: 35px;
  height: 100px;
}

.left div:nth-child(2) {
  height: 125px;
}

.left .part-1 {
  -webkit-animation: l-part-1 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  -moz-animation: l-part-1 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  animation: l-part-1 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
}

.left .part-2 {
  top: 1px;
  transform-origin: 0 0;
  transform: rotate(-90deg);
  -webkit-animation: l-part-2 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  -moz-animation: l-part-2 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  animation: l-part-2 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
}

.left .part-3 {
  left: 90px;
  -webkit-animation: l-part-3 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  -moz-animation: l-part-3 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  animation: l-part-3 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
}

.right {
  top: 94px;
  left: 68px;
  transform: rotate(-45deg);
}

.right div {
  position: absolute;
  background: #00aeef;
  width: 35px;
  height: 100px;
}

.right div:nth-child(2) {
  height: 125px;
}

.right .part-1 {
  -webkit-animation: r-part-1 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  -moz-animation: r-part-1 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  animation: r-part-1 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
}

.right .part-2 {
  top: 129px;
  transform-origin: 0 0;
  transform: rotate(-90deg);
  -webkit-animation: r-part-2 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  -moz-animation: r-part-2 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  animation: r-part-2 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
}

.right .part-3 {
  left: 90px;
  -webkit-animation: r-part-3 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  -moz-animation: r-part-3 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
  animation: r-part-3 2s infinite cubic-bezier(0.8, 0, 0.2, 1);
}

@-webkit-keyframes coder-logo {
  0% {
    transform: scale(1) rotate(0);
  }
  20% {
    transform: scale(1) rotate(0);
  }
  80% {
    transform: scale(1) rotate(360deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
@-moz-keyframes coder-logo {
  0% {
    transform: scale(1) rotate(0);
  }
  20% {
    transform: scale(1) rotate(0);
  }
  80% {
    transform: scale(1) rotate(360deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
@keyframes coder-logo {
  0% {
    transform: scale(1) rotate(0);
  }
  20% {
    transform: scale(1) rotate(0);
  }
  80% {
    transform: scale(1) rotate(360deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
}
@-webkit-keyframes l-part-1 {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  80% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes l-part-1 {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  80% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
@keyframes l-part-1 {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  50% {
    left: -15px;
  }
  80% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes l-part-2 {
  0% {
    top: 5px;
  }
  20% {
    top: 5px;
  }
  50% {
    top: -14px;
  }
  80% {
    top: 5px;
  }
  100% {
    top: 5px;
  }
}
@-moz-keyframes l-part-2 {
  0% {
    top: 5px;
  }
  20% {
    top: 5px;
  }
  50% {
    top: -14px;
  }
  80% {
    top: 5px;
  }
  100% {
    top: 5px;
  }
}
@keyframes l-part-2 {
  0% {
    top: 5px;
  }
  20% {
    top: 5px;
  }
  50% {
    top: -14px;
  }
  80% {
    top: 5px;
  }
  100% {
    top: 5px;
  }
}
@-webkit-keyframes l-part-3 {
  0% {
    left: 90px;
  }
  20% {
    left: 90px;
  }
  50% {
    left: 94px;
  }
  80% {
    left: 90px;
  }
  100% {
    left: 90px;
  }
}
@-moz-keyframes l-part-3 {
  0% {
    left: 90px;
  }
  20% {
    left: 90px;
  }
  50% {
    left: 94px;
  }
  80% {
    left: 90px;
  }
  100% {
    left: 90px;
  }
}
@keyframes l-part-3 {
  0% {
    left: 90px;
  }
  20% {
    left: 90px;
  }
  50% {
    left: 94px;
  }
  80% {
    left: 90px;
  }
  100% {
    left: 90px;
  }
}
@-webkit-keyframes r-part-1 {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  50% {
    left: -4px;
  }
  80% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
@-moz-keyframes r-part-1 {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  50% {
    left: -4px;
  }
  80% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
@keyframes r-part-1 {
  0% {
    left: 0;
  }
  20% {
    left: 0;
  }
  50% {
    left: -4px;
  }
  80% {
    left: 0;
  }
  100% {
    left: 0;
  }
}
@-webkit-keyframes r-part-2 {
  0% {
    top: 130px;
  }
  20% {
    top: 130px;
  }
  50% {
    top: 144px;
  }
  80% {
    top: 130px;
  }
  100% {
    top: 130px;
  }
}
@-moz-keyframes r-part-2 {
  0% {
    top: 130px;
  }
  20% {
    top: 130px;
  }
  50% {
    top: 144px;
  }
  80% {
    top: 130px;
  }
  100% {
    top: 130px;
  }
}
@keyframes r-part-2 {
  0% {
    top: 130px;
  }
  20% {
    top: 130px;
  }
  50% {
    top: 144px;
  }
  80% {
    top: 130px;
  }
  100% {
    top: 130px;
  }
}
@-webkit-keyframes r-part-3 {
  0% {
    left: 90px;
  }
  20% {
    left: 90px;
  }
  50% {
    left: 105px;
  }
  80% {
    left: 90px;
  }
  100% {
    left: 90px;
  }
}
@-moz-keyframes r-part-3 {
  0% {
    left: 90px;
  }
  20% {
    left: 90px;
  }
  50% {
    left: 105px;
  }
  80% {
    left: 90px;
  }
  100% {
    left: 90px;
  }
}
@keyframes r-part-3 {
  0% {
    left: 90px;
  }
  20% {
    left: 90px;
  }
  50% {
    left: 105px;
  }
  80% {
    left: 90px;
  }
  100% {
    left: 90px;
  }
}