/*-- Background Colors--*/
.bg__green {
  background-color: #249054;
}
.bg__white {
  background-color: #fff;
}

/*-- Layouts --*/
.tm__wrap {
  background: #e9f3ed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.tm__main {
  width: 1100px;
  margin: 0 auto;
}
.powered__by {
  margin-top: 120px;
}
.page__back__icon {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.backdrop__black {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}
.circle__loader {
  width: 12px;
  height: 12px;
  border: solid 2px transparent;
  border-top-color: #249054;
  border-left-color: #249054;
  border-right-color: #249054;
  opacity: 0.7;
  border-radius: 12px;
  animation: loading-spinner 700ms linear infinite;
  display: flex;
}

@keyframes loading-spinner {
  0% {
    transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
section {
  padding: 60px 0;
}
section .title {
  font-size: 40px;
  margin-bottom: 10px;
}
section .subtitle {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 40px;
}
/*-- Mobile CSS --*/
@media only screen and (max-width: 768px) {
  /*-- Layouts --*/
  .tm__wrap {
    background: #fff;
  }
  .tm__main {
    width: 100% !important;
  }
  .powered__by {
    margin-top: 20px;
  }
  .mob__header {
    display: flex;
  }
  section {
    padding: 20px 0;
  }
  section .title {
    font-size: 24px;
    margin-bottom: 10px;
  }
  section .subtitle {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 40px;
  }
}
