
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  --color-default: #0a0d13;
  --color-primary: #0d42ff;
  --color-secondary: #0e1d34;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #406aff;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  background-color:#fff;
 /* background-image: url("../img/hero-bg2.jpg");*/
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 30px 0 60px 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
  color: #000;
}

.hero form {
padding: 30px 10px;
    background:#684aa2;
    border-left: 5px solid #a94d7c;

}

.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  background-color: var(--color-primary);
  padding: 15px 30px;
}

.hero form .btn-primary:hover {
  background-color: #2756ff;
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  color: #000;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background:#a94d7c;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
}

.hero .logo {margin-bottom: 30px; float: left; width: 300px;}

.hero .logo h1 {color: #000;}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color:#1c1d1d;
  padding: 10px 0;
  color: white;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(13, 66, 255, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

.login-buttons .btn-log {background-color: #a94d7c; color: #fff;    padding: 12px;
    padding-left: 2px;
    padding-bottom: 7px;
     text-transform: uppercase; 
     font-size: 20px;
     width: 320px;
     text-align: left;
      border: 1px solid #a94d7c;}

.login-buttons .btn-log:hover {background: #000;  border: 1px solid #a94d7c;}

.login-buttons .btn-label {padding:20px 10px;
    background: #000;
    border-radius: 5px;
    margin-right: 10px;}


    .icon1 img  {width: 50px;}


    .hero-img img{ position: relative;}


    .hero-img1 {width:200px; position: absolute; bottom: 0; }

     .hero-img1 img {border: 0; width: 100%;}

  

     .hd .btn {float: right;
      background: #a94d7c;
      border: none;
      padding: 15px;
      text-transform: uppercase;
      font-weight: bold;}

       .hd .btn:hover {background: #684aa2;}

       .modal-title i {color: #a94d7c;
        font-size: 25px;}


        .modal-footer .btn {float: right;
      background: #a94d7c;
      border: none;
      font-weight: bold;}

       .modal-footer .btn:hover {background: #684aa2;}


       .modal-content {border-radius: 0;}

       .form-control {border-radius: 0;}

       

      @media(max-width: 600px){

        .hero .logo {width: 200px;} 

        
           .hd .btn {text-transform: none;
      padding: 10px;
      font-weight: normal;}      
 }


    @media(max-width: 400px){
      .login-buttons .btn-log {width: 100%;
        font-size: 16px;}

        .hero .logo {width: 140px;}

        .hero .logo h1{ font-size: 14px; }

       .hd .btn {text-transform: none;
      padding: 5px;
      font-weight: normal;}
     }