/*LOAD*/
.loader {
  margin: 50px auto;
  text-align: center;
  position: relative;
  width: 60%;
}

.load_content_sec {
  display: none;
}

.loader span {
  background: #e81214;
  border-radius: 5px;
  display: inline-block;
  position: relative;
  width: 10px;
  height: 10px;
  position: absolute;
}

.loader .dot_1 {
  margin-right: 10px;
  animation: loading 4s ease-in-out infinite;
}

.loader .dot_2 {
  animation: loading 4s ease-in-out 0.3s infinite;
}

.loader .dot_3 {
  animation: loading 4s ease-in-out 0.6s infinite;
}

@keyframes loading {
  from {
    margin-left: 50%;
    opacity: 0;
  }

  50% {
    margin-left: 0;
    opacity: 1;
  }

  to {
    margin-left: -50%;
    opacity: 0;
  }
}

.loading-section .wrap-load-logo img {
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -ms-transition: 0.5s all;
  -o-transition: 0.5s all;
  transition: 0.5s all;
  transform: translateY(-12px);
  animation-name: hover;
  animation-duration: 1.5s;
  animation-delay: 0.3s;
  animation-timing-function: cubic-bezier(0.3, 0.06, 0.72, 0.95);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  width: 250px;
  height: auto;
}

.loading-section .wrap-load-logo.hidden-loading-section {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.loading-section .wrap-load-logo {
  width: 100%;
  text-align: center;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: fixed;
  top: 50%;
  z-index: 999999999;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loading_right.hidden-loading-section,
.loading_left.hidden-loading-section {
  width: 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}

.loading_right {
  right: 0;
  background: -webkit-linear-gradient(90deg, #fff 0, #cbc9c9 100%) !important;
  background: linear-gradient(90deg, #fff, #cbc9c9 100%) !important;
}

.loading_left,
.loading_right {
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 50%;
  bottom: 0;
  background: -webkit-linear-gradient(90deg, #b4b4b4 0, #fff 100%);
  background: linear-gradient(90deg, #b4b4b4 0, #fff 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 1;
}

.start-screen {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: nowrap column;
  flex-flow: nowrap column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 100vh;
}

.loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loading__element {
  letter-spacing: 0.5em;
  font-family: "Lobster-Regular";
  font-size: 35px;
  font-weight: 400;
  -webkit-animation: bouncing 2s infinite ease;
  animation: bouncing 2s infinite ease;
}

.el1 {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.el2 {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.el3 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.el4 {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.el5 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.el6 {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.el7 {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.el8 {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.el9 {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes bouncing {
  0%,
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(0, 0, 1);
    transform: scale3d(0, 0, 1);
  }
}

@keyframes bouncing {
  0%,
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(0, 0, 1);
    transform: scale3d(0, 0, 1);
  }
}

/**/
