/* common */
::-moz-selection { background: #403e3e; color: #fff;}
::selection { background: #403e3e; color: #fff;}



/* pre-loader */
.pre-loader  {
	position: fixed;
	z-index: 9999;
	top: 50%;
	left: 50%;
	width: 60px;
	height: 60px;
	margin-top: -30px; 
	margin-left: -30px;
  animation: rotation 1s infinite linear;
  border: 1px solid #fff;
  border-radius: 50%;
  border-top-color: #D53D3D;}
@keyframes rotation {
  to {
    transform: rotate(360deg);
  }
}


/* do not group these rules */
*::-webkit-input-placeholder {
  color: #7e7e7e;
}
*:-moz-placeholder {
  /* FF 4-18 */
  color: #7e7e7e;
  opacity: 1;
}
*::-moz-placeholder {
  /* FF 19+ */
  color: #7e7e7e;
  opacity: 1;
}
*:-ms-input-placeholder {
  /* IE 10+ */
  color: #7e7e7e;
}
*::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #7e7e7e;
}
*::placeholder {
  /* modern browser */
  color: #7e7e7e;
}

/* custom */
.p-e-35 {
  padding-right: 35px !important;}
.h-100-vh {
  height: 100vh !important;}


@media (max-width: 767px) {
.text-md-center {
  text-align: center;}
}


/* autofill */
@-webkit-keyframes autofill {
    to {
        color: #0d3946;
        background: transparent;}
}
input:-webkit-autofill {
    -webkit-animation-name: autofill;
    -webkit-animation-fill-mode: both;}




/* row-flex */
.row-flex {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

/* col-flex */
.col-flex {
  flex: 1 0 0%;
}

.align-items-center {
  align-items: center !important;
}



/* button, a-btn */
button,
.a-btn {
  background: #0c1c2d;
  letter-spacing: 1px;
  text-transform: capitalize;
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  min-width:80px;
  outline: none;
  border: 1px solid #0c1c2d;
  border-radius: 2px;
  color: #fff;
  text-decoration: none;} 
button:hover,
button:focus,
.a-btn:hover,
.a-btn:focus {
  color: #fff;}





/* header */
header {
	position: fixed;
	top: 0;
	z-index: 100;
	width: 100%;
  height: 60px;
  background: #fff;
  box-shadow: #e1ebff 0 0 5px;
  border-bottom: 1px solid #f3f1f1;}
header .logo {
	max-width: 100%;
  height: 25px;
  margin-top: 16px;}

/* main-div */
.main-div {
	padding-top: 70px;}
	


/* onlode-aos-down */
@keyframes slideFadeDown {
  0% {
    transform: translate3d(0,-100px,0);
  }
  100% {
    transform: translateZ(0);
  }
}
.onlode-aos-down {  
  animation: 1s ease-out 0s 1 slideFadeDown;}

/* onlode-aos-up*/
@keyframes slideFadeUp {
  0% {
    transform: translate3d(0, 200px,0);
  }
  100% {
    transform: translateZ(0);
  }
}
.onlode-aos-up {  
  animation: 1s ease-out 0s 1 slideFadeUp;}


/* onlode-aos-up-300 */
@keyframes slideFadeUp {
  0% {
    transform: translate3d(0, 300px,0);
  }
  100% {
    transform: translateZ(0);
  }
}
.onlode-aos-up-300 {  
  animation: 1.5s ease-out 0s 1 slideFadeUp;}


/* bg */
.bg {
  min-height: 100vh;
  background: linear-gradient(-45deg, #04043fa3, #fd24251f), url(../images/bg/bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;}



/* indro */
/* container-fluid */
#indro .container-fluid {
  padding-left: 70px;
  padding-right: 70px;}
@media (max-width: 767px) {
#indro .container-fluid {
  padding-left: 30px;
  padding-right: 30px;}
}

/* h1 */
#indro h1 {
  color: #fff;
  font-size: 70px;
  line-height: 60px;
  font-weight: bold;
  font-style: italic;}
#indro .logo {
  max-width: 100%;
  height: auto}
@media (max-width: 767px) {
#indro h1 {
  font-size: 50px;
  line-height: 40px;}
#indro .logo {
  max-height: 60px}
}

/* btn-login */
#indro .btn-login {
  text-decoration: none;
  margin-top: 30px;
  padding: 9px 30px;
  text-transform: uppercase;
  min-width: 115px;
  background: transparent;
  letter-spacing: 2px;
  font-style: italic;
  border: 2px solid #fff;
  /**/
  display: inline-block;
  position: relative;}
#indro .btn-login:hover {
  color: #ff850b;}
#indro .btn-login span { 
  display: block;}
#indro .btn-login::before, 
#indro .btn-login::after{
  content:"";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #ff850b;}
#indro .btn-login span::before, 
#indro .btn-login span::after{
  content:"";
  width:2px;
  height:0;
  position: absolute;
  transition: all 0.2s linear;
  background: #ff850b;
}
#indro .btn-login:hover::before, 
#indro .btn-login:hover::after{
  width: 100%;
}
#indro .btn-login:hover span::before, 
#indro .btn-login:hover span::after{
  height: 100%;
}
#indro .btn-login::after{
  left: 0;
  bottom: -2px;
  transition-delay: 0.6s;
}
#indro .btn-login span::after{
  transition-delay: 0.4s;
  right: -2px;
  bottom: 0;
}
#indro .btn-login::before{
  right: 0;
  top: -2px;
  transition-delay: 0.2s;
}
#indro .btn-login span::before{
  transition-delay: 0s;
  left: -2px;
  top: 0;
}
#indro .btn-login:hover::after{
  transition-delay: 0s;
}
#indro .btn-login:hover span::after{
  transition-delay: 0.2s;
}
#indro .btn-login:hover::before{
  transition-delay: 0.4s;
}
#indro .btn-login:hover span::before{
  transition-delay: 0.6s;
}
@media (max-width: 767px) {
#indro .btn-login {
  margin-top: 40px;}
}



/* copyright */
#indro .copyright {
  position: absolute;
  bottom: 20px;
  left: 70px;}
#indro .copyright p {
  display: inline-block;
  margin-bottom: 0;
  color: #ffffff59;
  font-size: 13px;}
#indro .copyright a {
  text-decoration: none;
  font-size: 12px;
  color: #ffffff59;}
@media (max-width: 767px) {
#indro .copyright {
  left: 30px;}
}




/* privacy_policy */
#privacy_policy h1 {
	  text-transform: capitalize;
    font-weight: normal;
    font-size: 40px;
    padding-bottom: 24px;
    padding-top: 20px;}
#privacy_policy h2 {
    font-size: 18px;
    font-weight: bold;}
#privacy_policy p,
#privacy_policy ul li {
    font-size: 15px;}
#privacy_policy p {
    padding-bottom: 20px;}
#privacy_policy p span {
    display: block;}
#privacy_policy ul li {
    padding-bottom: 12px;}
@media (max-width: 767px) {
#privacy_policy h1 {
  	font-size: 30px;}
}



/* forbidden */	
#forbidden {
  text-align: center;
  margin-bottom: 25px;}
#forbidden h1 {
  font-size: 24px;
  margin-bottom: 50px;
  color: #f13e3e;}
#forbidden .fa {
  margin-top: 15%;
  color: #403e3e;
  font-size: 100px;}
#forbidden a {
  color: #fff;
  font-size: 15px;
  background: #403e3e;
  padding: 10px 20px;
  border-radius: 5px;}
@media (max-width: 767px) {
#forbidden h1 {
  font-size: 20px;}
#forbidden .fa {
  font-size: 50px;}
#forbidden a {
  font-size: 14px;}
}



/* login_page */
#login_page .login-form {
  background-color: #1B1B66;
  width: 100%;
  max-width: 350px;
  padding: 90px 40px 20px;
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%,50%);
  -ms-transform: translate(50%,50%);
  transform: translate(50%,50%);}
#login_page .login-form .logo {
  max-width: 100%;
  max-height: 45px;}
#login_page .login-form h3 {
  position: relative;
  margin-top: 30px;
  margin-bottom: 40px;
  color: #fff;
  font-size: 22px;}
#login_page .login-form h4 {
  font-size: 14px;
  color: #db1212;}
#login_page .login-form .div-col {
  position: relative;
  margin-top: 15px;}
#login_page .login-form .div-col label {
  color: #ffffff7a;
  font-size: 13px;
  font-weight: normal;
  margin-bottom: 8px;}
#login_page .login-form .div-col input {
  background-color: #e8f0fe;
  font-size: 13px;
  outline: none;
  width: 100%;
  padding: 8px 12px;
  border: none;}
#login_page .login-form .div-col .btn-toggle {
    min-width: auto;
    position: absolute;
    right: 6px;
    bottom: 3px;
    padding: 3px 5px;
    border: none;
    background-color: transparent;
    color: #6a6a6a;}
#login_page .login-form .div-col .btn-toggle:hover {
    color: #000000c9;}
#login_page .login-form .primary-btn {
  background: transparent linear-gradient(80deg, #fd2425 0%, #ff850b 100%);
  margin-top: 15px;
  padding: 7px 25px;
  margin-bottom: 70px;
  font-size: 15px;
  text-transform: uppercase;
  width: 100%;
  border: none;
  color: #fff;}
#login_page .login-form p {
  text-align: center;
  margin-bottom: 0;
  color: #ffffff59;
  font-size: 11px;}
#login_page .login-form p a {
  text-decoration: none;
  color: #ffffff59;}
@media (max-width: 767px) {
#login_page .login-form {
  width: 90%;
  max-width: 1005;
  padding: 60px 25px 15px;}
}



/* footer */
footer {
    text-align: center;
    margin-top: 55px;
    letter-spacing: 1px;}
footer .clone_t_foot {
    margin-bottom: 10px;
    margin-top: 10px;}	
footer p {
    font-size: 13px;
    margin-bottom: 0;
    color: #6b6a67;}