BODY {
  overflow-x: hidden;
  font-family: 'averta';

  user-select: none;

  margin: 0;
  padding: 0;

  background: white;

  scroll-behavior: smooth;
}

#loading-overlay {
  display: block;

  width: 100%;
  height: 100%;

  position: fixed;
  top: 0px;
  left: 0px;

  background: white;

  z-index: 100; /* FRONT */

  text-align: center;

  transition: 0.4s;
}
#loading-overlay #loader {
  width: 40px;

  display: block;

  position: absolute;
  top: calc(50% + 30px); /* it is -20 + 50 */
  left: calc(50% - 20px);

  animation: rotate 3s infinite linear;
}
#loading-overlay #logo {
  display: block;

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, calc(-50% - 50px));

  width: 100px;
}

#main-container {
  position: absolute;
  top: 0px;
  left: 0px;
  overflow-x: hidden;
  overflow-y: scroll;

  display: block;

  width: 100%;
  height: 100%;
}
#main-container #bg-img {
  position: absolute;
  top: 0px;
  left: 0px;


  width: 100%;
  height: 100%;
  object-fit: cover;

  z-index: -10;

  transition: 0.5s;
}

#main-container #procinfo {
  position: fixed;
  top: 40px;
  left: 40px;

  height: 60px;
  width: 166px;
}
#main-container #app-logo {
  position: absolute;
  top: 0px;
  left: 0px;

  display: block;

  height: 60px;

  z-index: 60;
}
#main-container #app-name {
  position: absolute;

  top: 20px;
  left: 76px;

  display: block;
  z-index: 60;

  color: #25B99A;
  font-weight: 400;
  font-size: 16px;

  padding: 0;
  margin: 0;
}


#about-butt {
  position: absolute;
  top: 40px;
  right: 40px;

  height: 20px;

  background: #F8F8F8;

  margin: 0px;
  padding: 20px;

  width: auto;

  display: block;

  border-radius: 20px;

  cursor: pointer;
}
#about-butt .info-ico {
  display: inline-block;

  height: 20px; width: 20px;
  margin: 0px; padding: 0px;
  margin-right: 8px;

  transition: 0.2s;
}
#about-butt:hover .info-ico {
  transform: scale(1.1);
  /* transform: rotate(15deg) scale(1.05); */
}
#about-butt .info-text {
  display: inline-block;

  margin: 0px; padding: 0px;

  line-height: 20px;

  vertical-align: top;

  font-size: 16px; font-weight: 700;
}

#main-container #goto-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;

  width: 1320px;
  height: 290px;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#goto-content .goto-el {
  width: 200px;
  height: 290px;

  position: relative;

  cursor: pointer;
}
#goto-content .goto-el .goto-img-cont {
  width: 120px;
  height: 120px;

  border-radius: 100px;

  background: #f8f8f8;

  padding: 40px;
  margin: 0;
  clip-path: inset(0px round 100px);

  transition: 0.2s;
}
#goto-content .goto-el:hover .goto-img-cont {
  clip-path: inset(10px round 100px);
}
#goto-content .goto-el .goto-img-cont .goto-img {
  width: 120px;
  height: 120px;

  transition: 0.2s;
}
#goto-content .goto-el:hover .goto-img-cont .goto-img {
 /* ? */
}

#goto-content .goto-el .goto-el-text-cont {
  display: block;
  position: absolute;

  left: 50%; transform: translateX(-50%);

  height: 20px;
  padding: 20px;
  margin: 0px;
  margin-top: 30px;

  background: #f8f8f8;

  border-radius: 20px;
}

#goto-content .goto-el .imp {
  background: #233642;
}

#goto-content .goto-el .goto-el-text {
  display: block;

  font-size: 16px;
  font-weight: 700;

  color: #233642;

  white-space: nowrap;
  margin: 0; padding: 0;
}
#goto-content .goto-el .imp .goto-el-text {
  color: white;
}


table-wrap h1 {
  font-size: 16px;
  font-weight: 400;
}
table-wrap-foot * {
  font-size: 12px !important;
  line-height: 18px !important;
}
a, a:hover, a:visited, a:link, a:active {
    text-decoration: none !important;
}

@media only screen and (max-height: 600px) {
  #main-container #procinfo {
    top: 20px;
    left: 20px;
  }

  #about-butt {
    top: 20px;
    right: 20px;
  }
}

@media only screen and (max-width: 1400px) {
  ::-webkit-scrollbar {
    display: none;
  }


  #main-container #procinfo {
    position: absolute;
    top: 20px !important;
    left: 50% !important; transform: translateX(-50%) !important;
  }

  #goto-content {
    flex-direction: column !important;
    width: 100% !important;
    height: auto !important;
    top: 0px !important;
    left: 0px !important;
    transform: translate(0, 0) !important;
    margin-top: 110px;


    position: relative !important;
  }

  #goto-content .goto-el {
    height: 350px;
    width: calc(100% - 40px);
    max-width: 280px;
}
  #goto-content .goto-img-cont {
    width: calc(100% - 80px) !important;
    text-align: center;
  }

  #main-container #procinfo {
    top: 20px;
    left: 20px;
  }

  #about-butt {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    position: relative;
    width: calc(100% - 80px);
    max-width: 240px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
}


@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.moved-out {
  opacity: 0;
  pointer-events: none !important;
}

*:focus {
    outline: none;
}

::selection {
  background: #0086D1;
  color: white;
}

sup, sub {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
}
sub {
  top: 0.4em;
}

body * {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}
::-webkit-scrollbar-thumb {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  background: #233642;
  background-image: linear-gradient(to top, #25B99A, #00BEBF);

  min-height: 60px;

}
::-webkit-scrollbar-thumb:hover {
  background: #25B99A;
}
::-webkit-scrollbar-thumb:window-inactive {
  background: #e9e9e9;
}
