/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Raleway", sans-serif;
    color: #444444;
    width: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
  ::-webkit-scrollbar{
    display: none;
  }
  
  a {
    color: #34b7a7;
    text-decoration: none;
  }
  
  a:hover {
    color: #51cdbe;
    text-decoration: none;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
  }
  
  
  /*--------------------------------------------------------------
  # Preloader
  --------------------------------------------------------------*/
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #74B49B;
    border-top-color: #dcf5f2;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
  }
  
  @-webkit-keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes animate-preloader {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  /*--------------------------------------------------------------
  # Back to top button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #74B49B;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
    -ms-transition: all 0.4s;
    -webkit-transition: all 0.4s;
  }
  .back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
    padding: 20%;
  }
  .back-to-top:hover {
    background: #49cbbb;
    color: #fff;
  }
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  /*--------------------------------------------------------------
  # Frontend
  --------------------------------------------------------------*/
  #header {
    background: #F4F9F4;
    box-shadow: 0px 0px 25px 0 rgba(0, 0, 0, 0.08);
    z-index: 997;
    padding: 7px 0;
  }
  #header .logo {
    font-size: 32px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  #header .logo a {
    color: #222222;
  }
  #header .logo img {
    max-height: 40px;
  }
  @media (max-width: 992px) {
    #header .logo {
      font-size: 16px;
    }
  }
  
  /*---- Header Social Links -----*/
  #social-links {
    padding-right: 15px;
  }
  #social-links a {
    color: #6f6f6f;
    padding-left: 6px;
    display: inline-block;
    line-height: 0px;
    transition: 0.3s;
    -ms-transition: 0.3s;
    -webkit-transition: 0.3s;
    font-size: 16px;
  }
  #social-links a:hover {
    color: #74B49B;
  }

  .btn-login {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    transition: 0.5s;
    line-height: 1;
    color: #fff;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;
    border: 2px solid #74B49B;
    background: #74B49B;
  }
  .btn-login:hover {
    background: transparent;
    color: #74B49B;
    text-decoration: none;
  }
  @media (max-width: 992px) {
    .btn-login {
      font-size: 10x;
      letter-spacing: 1px;
      display: inline-block;
      padding: 11px 28px;
      transition: 0.5s;
      line-height: 1;
      margin: 1.75%;
    }
  }
  /*---- Navigation Menu -----*/
  /**
  * Desktop Navigation 
  */
  .navbar {
    padding: 0;
  }
  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar li {
    position: relative;
    padding: 10px 0 10px 28px;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Raleway", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #888888;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #34b7a7;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }
  .navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
    visibility: visible;
    width: 25px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: #222222;
  }
  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }
  .navbar .dropdown ul li {
    min-width: 200px;
    padding: 0;
  }
  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }
  .navbar .dropdown ul a i {
    font-size: 12px;
  }
  .navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #34b7a7;
  }
  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }
  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
  @media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
      left: -90%;
    }
    .navbar .dropdown .dropdown:hover > ul {
      left: -100%;
    }
  }
   
  /**
  * Mobile Navigation 
  */
  .mobile-nav-toggle {
    color: #222222;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }
  .mobile-nav-toggle.bi-x {
    color: #fff;
  }
  
  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .navbar ul {
      display: none;
    }
  }
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(9, 9, 9, 0.9);
    transition: 0.3s;
    z-index: 999;
  }
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
  }
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
  }
  .navbar-mobile a, .navbar-mobile a:focus {
    font-size: 15px;
    padding-right: 15px;
    color: #222222;
  }
  .navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #34b7a7;
  }
  .navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
    margin: 15px;
  }
  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  }
  .navbar-mobile .dropdown ul li {
    min-width: 200px;
  }
  .navbar-mobile .dropdown ul a {
    padding: 10px 20px;
  }
  .navbar-mobile .dropdown ul a i {
    font-size: 12px;
  }
  .navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #34b7a7;
  }
  .navbar-mobile .dropdown > .dropdown-active {
    display: block;
  }
  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
    padding: 60px 0;
  }
  .section-bg {
    background-color: #e7f8f6;
  }
  .section-title {
    text-align: center;
    padding-top: 0%;
    padding-bottom: 3%;
  }
  .section-title h3 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  .section-title h3::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #34b7a7;
    bottom: 0;
    left: calc(50% - 25px);
  }
  .section-title h4 {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
  }
  .section-title p {
    margin-bottom: 0;
    text-align: center;
  }

  /*--------------------------------------------------------------
  # Slide-top / Top Wrapper
  --------------------------------------------------------------*/
  .top-wrapper-1 {
    padding: 130px 0 100px 0;
    background-image: url("/assets/img/slide/tentang.png");
    background-size: cover;
    width: 100%;
    height: 70vh;
    color: #fff;
    text-align: left;
    vertical-align: text-bottom;
  }
  .top-wrapper-1 h1 {
    font-weight: 600px;
    width: 500px;
  }
  .top-wrapper-1 p {
    font-size: 18px;
    font-weight: 600px;
    width: 500px;
  }
  .top-wrapper-2 {
    padding: 150px 0 100px 0;
    background-image: url("/assets/img/slide/iklan.png");
    background-size: cover;
    width: 100%;
    height: 70vh;
    color: #fff;
    text-align: left;
  }
  .top-wrapper-2 h1 {
    font-weight: 600px;
    width: 500px;
  }
  .top-wrapper-2 p {
    font-size: 18px;
    font-weight: 600px;
    width: 700px;
  }
  .top-wrapper-3 {
    padding: 150px 0 100px 0;
    background-image: url("/assets/img/slide/faq.png");
    background-size: cover;
    width: 100%;
    height: 70vh;
    color: #fff;
    text-align: left;
  }
  .top-wrapper-3 h1 {
    font-weight: 600px;
    width: 500px;
  }
  .top-wrapper-3 p {
    font-size: 18px;
    font-weight: 600px;
    width: 700px;
  }
  .rectangle{
    height: 71vh;
    z-index: 1;
    background-color: #fff;
    opacity: 0.6;
  }

  @media(max-width: 1248px){
    .top-wrapper-1 {
      padding: 250px 0 100px 0;
      text-align: left;
    }
  }
  /*--------------------------------------------------------------
  # Openning Section
  --------------------------------------------------------------*/
  #open {
    width: 100%;
    height: 100vh;
    background-image: url("/assets/img/slide/slide-3.jpg");
    background-size: cover;
    opacity: 0.9;
  }
  #open .container {
    padding-top: 70px;
    position: relative;
  }
  @media (max-width: 992px) {
    #open .container {
      padding-top: 58px;
    }
  }
  #open h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #222222;
  }
  #open h2 {
    color: #6f6f6f;
    margin: 10px 0 0 0;
    font-size: 22px;
  }
  #open .btn-iklan {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 30px;
    transition: 0.5s;
    margin-top: 5%;
    color: #fff;
    background: #74B49B;
    border: 2px solid #74B49B;
  }
  #open .btn-iklan:hover {
    background: transparent;
    color: #74B49B;
    text-decoration: none;
  }
  .card {
    width: 100%;
    height: auto;
    background-color: white;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    margin-bottom: 3%;
  }
  .card .container {
    text-align: center;
    padding: 10px 20px;
  }
  .card img {
    width: 0%;
  }
  @media (min-width: 1200px) {
    #open {
      background-attachment: fixed;
    }
    #open .btn-iklan {
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 1px;
      display: inline-block;
      padding: 10px 26px;
      border-radius: 30px;
      transition: 0.5s;
    }
  }
  @media (max-width: 992px) {
    #open:before {
      content: "";
      background: rgba(255, 255, 255, 0.8);
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;
    }
    #open h1 {
      font-size: 28px;
      line-height: 36px;
    }
    #open h2 {
      font-size: 18px;
      line-height: 24px;
    }
  }
  
  /*--------------------------------------------------------------
  # About / Tentang
  --------------------------------------------------------------*/
  .about .content h3 {
    font-weight: 700;
    font-size: 26px;
    color: #555555;
  }
  .about .content ul {
    list-style: none;
    padding: 0;
  }
  .about .content ul li {
    padding-bottom: 10px;
  }
  .about .content ul i {
    font-size: 20px;
    padding-right: 2px;
    color: #34b7a7;
  }
  .about .content p:last-child {
    margin-bottom: 0;
  }
 .band {
  width: 100%;
  height: 70vh;
 }
.carousel-indicators li {
  background: #74B49B;
  border-radius: 100%;
}
/* .carousel-control-prev span {
  border: #555555;
} */
.pp{
  border-left: 10px #74B49B dashed;
}
.bingkai img{
  width: 100%;
  height: 30vh;
}
  /*--------------------------------------------------------------
  # Iklan
  --------------------------------------------------------------*/
  .iklan .iklan-content {
    font-size: 14px;
    padding: 0 0 10px 10px;
    margin-top: -2px;
    position: relative;
  } 
  .iklan .iklan-title h6 {
    line-height: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    margin-bottom: 10px;
  }
  .iklan .iklan-title ul {
    padding-left: 20px;
  }
  .iklan .iklan-title ul li {
    padding-bottom: 10px;
  }
  .iklan .iklan-title a {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 30px;
    transition: 0.5s;
    color: #fff;
    background: #74B49B;
    border: 2px solid #74B49B;
    width: 100%;
  } 
  .iklan .iklan-title a:hover {
    background: transparent;
    color: #74B49B;
    text-decoration: none;
  }
  .iklan .iklan-title a:focus {
    background: transparent;
    color: #74B49B;
    text-decoration: none;
  }
  .iklan .iklan-title:last-child {
    padding-bottom: 0;
  }
  .iklan .iklan-title::before {
    position: absolute;
    width: 16px;
    height: 16px;
    left: -9px;
    top: 0;
    background: #fff;
    border: 2px solid #34b7a7;
  }
  .iklan .iklan-deskripsi {
    border-left: 2px solid #34b7a7;
    height: auto;
  }
  .iklan .iklan-deskripsi h6 {
    line-height: 16px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Raleway", sans-serif;
    margin-bottom: 10px;
  }
  .iklan .iklan-deskripsi p {
    font-size: 12px;
    text-align: justify;
  }
  .tab-content {
    margin-left: 3%;
  }
  .iklan img {
    width: 40%;
    display:block;
    margin:auto;
  }
  .btn-lamar {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 12px 40px;
    border-radius: 30px;
    transition: 0.5s;
    -ms-transition: 0.5s;
    -webkit-transition: 0.5s;
    margin: 2rem 0;
    color: #fff;
    background: #74B49B;
    border: 2px solid #74B49B;
    width: 30%;
    left: 0%;
  }
  .btn-lamar:hover {
    background: transparent;
    color: #74B49B;
    text-decoration: none;
  }
  .note {
    width: 100%;
  }
   /*----- Warning -----*/
  #warning {
    font-family: "Raleway", sans-serif;
    font-size:  14px;
    text-align: center;
    margin-top: 5%;
  } #warning h6{
    color: crimson;
  } #warning p{
    color: #222;
  }
  @media (max-width: 992px) {
    .iklan .iklan-content {
      font-size: 10px;
      padding: 0 0 5px 5px;
      margin-top: -2px;
    }
    .iklan .iklan-title a {
      font-size: 10px;
      padding: 5px 12px;
      border-radius: 30px;
      width: 100%;
    }
  }
  
  /*--------------------------------------------------------------
  # Contact
  --------------------------------------------------------------*/
  /* .contact .info {
    width: 100%;
    background: #fff;
  }
  .contact .info i {
    font-size: 20px;
    color: #34b7a7;
    float: left;
    width: 44px;
    height: 44px;
    background: #effbf9;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
  }
  .contact .info h4 {
    padding: 0 0 0 60px;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #222222;
  }
  .contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 14px;
    color: #555555;
  }
  .contact .info .email, .contact .info .phone {
    margin-top: 40px;
  }
  .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
    background: #34b7a7;
    color: #fff;
  }
  .contact .php-email-form {
    width: 100%;
    background: #fff;
  }
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  .contact .php-email-form input, .contact .php-email-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
  }
  .contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
    border-color: #34b7a7;
  }
  .contact .php-email-form input {
    height: 44px;
  }
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  .contact .php-email-form button[type=submit] {
    background: #34b7a7;
    border: 0;
    padding: 10px 30px 12px 30px;
    color: #fff;
    transition: 0.4s;
    -ms-transition: 0.4s;
    -webkit-transition: 0.4s;
    border-radius: 50px;
  }
  .contact .php-email-form button[type=submit]:hover {
    background: #F4F9F4;
  }
  @-webkit-keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
   */
  /*--------------------------------------------------------------
  # FAQ
  --------------------------------------------------------------*/
  #faq .faq{
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    padding: 0 0 10px 10px;
    margin-top: -2px;
    position: relative;
  }
  #faq .title-faq{
    width: 100%;
  }
  #faq .title-faq a{
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 14px;
    border-radius: 5px;
    transition: 0.5s;
    -ms-transition: 0.5s;
    -webkit-transition: 0.5s;
    color: #fff;
    background: #74B49B;
    border: 2px solid #74B49B;
    width: 30%;
    margin-bottom: 1%;
  }
  #faq .title-faq span{
    margin-left: 10px;
  }
  /*Isian FAQ*/
  #accordion {
    font-family: "Raleway", sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    border-radius: 5px;
  } #accordion .accordion-item h2{
    background: #74B49B;
  }
  .accordion-item .bg {
    background: #74B49B;
    color: #fff;
    font-weight: 800px;
    outline: none;
  } 

  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
    background: #E5E5E5;
    padding: 20px 0;
    color: #222222;
    font-size: 14px;
    text-align: center;
    width: 100%;
  }
  #footer .credits {
    padding-top: 5px;
    font-size: 13px;
  }
  #footer .credits a {
    color: #74B49B;
  }

/*--------------------------------------------------------------
  # Loginuser
--------------------------------------------------------------*/
.loginuser {
  font-family: "Raleway", "san-serif";
  font-size: 14px;
  color: #000;
}
/*Slide top*/
.formlogin {
  position: fixed;
  top: 0.002%;
  left: 30%;
  pointer-events: auto;
  z-index: 1;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
}
.formlogin .signin-title {
  font-size: 28px;
  text-align: center;
  color: #000;
}
.formlogin input, .formlogin textarea {
  width: 164px;
  font-size: 18px;
  background: transparent;
  border: none;
  color: #000;
  vertical-align: middle;
  height: 24px;
  resize: none;
  outline: none;
  overflow: hidden;
}
.formlogin .input-field {
  height: 50px;
  margin: 20px auto auto;
  width: 234px;
  border-bottom: 1px solid #000;
  text-align: left;
}
.formlogin .icon {
  display: inline-block;
  background-position: 0 0;
  width: 17px;
  height: 17px;
  margin: auto 8px auto 3px;
  vertical-align: middle;
  color: #000f;
}
.formlogin .checkbox-field {
  padding: 10px 0px 0px 0px;
  width: 100%;
  margin-left: 20%;
}
.formlogin .checkbox-field input {
  width: auto;
  height: auto;
}
.formlogin .checkbox-field label {
  font-size: 14px;
  color: #000;
  cursor: pointer;
}
.formlogin .center {
  padding: 10px 0 0 0;
  text-align: center;
  display: block;
  color: #000;
  font-size: 14px;
}
.formlogin .signin {
  width: 234px;
  font-size: 14px;
  color: #000;
  height: 46px;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 0 0 1px #000;
  padding: 10px 0 0 0;
  border-radius: 30px;
}
.formlogin .signin-with-google {
  width: 234px;
  font-size: 14px;
  color: #000;
  height: 46px;
  background: transparent;
  cursor: pointer;
  box-shadow: 0 0 0 1px #000;
  border-radius: 30px;
}
.center a {
  border-radius: 5%;
  appearance: auto;
  padding: 6px 10px;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: center;
  align-items: flex-start;
  cursor: default;
  box-sizing: border-box;
  margin: 0em;
}
.center label {
  padding: 10px 0 0 0;
}
.center a:hover {
  background-color: rgba(145, 145, 181, 0.324);
}
.SignUp label, a {
  padding-top: 20px;
  color: #000;
  font-size: 14px;
} .SignUp a:hover {
  color: #fff;
}

@media (min-width: 1400px) {
  /*Slide top*/
  .formlogin {
    position: fixed;
    left: 35%;
    top: 15%;
    pointer-events: auto;
    margin: auto;
    padding: 0;
    z-index: 1;
    border-radius: 10px;
  }
}
/*--------------------------------------------------------------
  # Register
--------------------------------------------------------------*/
.register {
  position: fixed;
  width: 100%;
}
.registerr {
  border-radius: 10px;
  background: rgba(242, 248, 242, 0.8);
}
.registerr input {
  width: 70%;
}
.btn-reg {
  background: #74B49B;
  width: 10%;
  color: #fff;
  text-transform: uppercase;
  font-weight: 600px;
  margin-top: 2%;
}
.btn-reg:hover {
  color: #fff;
}
@media (max-width) {
  .registerr {
    height: fit-content;
  }
}