@font-face {
  font-family: 'Avigea';
  src: url('../fonts/Avigea.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noir-Regular';
  src: url('../fonts/Noir-regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Noir-Medium';
  src: url('../fonts/Noir-medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}


body, h1,h2,h3,h4,h5,h6,p,a,li,ol,ul {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
    font-family: 'Martel Sans', sans-serif;
}

.rashi-form-sec {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.kings-logo-wrapper {
  /*position: fixed;*/
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.rashi-section {
  flex: 1;
  /*min-height: 100vh;*/
  background: url("../images/form-bg.png") no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
}
/**/

.rashi-section {
  background: url("../images/form-bg.png");
  background-size: cover;
  /*height: 90vh;*/
  /*position: relative;*/
}

.rashi-form-sec{
  height: 100vh;
}

.kings-logo-wrapper{
  background: #962024;
  padding: 1rem 0;
  text-align: center;
}

.kings-logo-wrapper img{
    width: 100%;
    height: auto;
    max-width: 7%;
}

.form-main-wrapper{
  align-items: center;
  /*padding: 4rem 0;*/
}

/* ===== Left Content ===== */
.rashi-title {
  color: #962024;
  font-size: 58px;
  font-weight: 400;
  font-family: 'Avigea';
}

.left-heading-wrapper img{
  width: 100%;
  height: auto;
  max-width: 70%;
}

.rashi-year {
  color: #962024;
  font-size: 58px;
  font-weight: 400;
  padding-bottom: 10px;
  font-family: 'Avigea';
}

.rashi-year span{
      font-family: 'Martel Sans', sans-serif;
}

.rashi-sub {
  font-size:45px;
  color: #D46627;
  font-weight: 500;
  margin-top: 20px;
  font-family: 'Noir-Medium';
}

/* ===== Form Box ===== */
.rashi-form-box {
      background: #E97623;
    padding: 50px;
    border-radius: 5px;
    color: #fff;
}

.form-heading {
  font-weight: 700;
    margin-bottom: 20px;
    font-size: 30px;
}

/* ===== Inputs ===== */
.form-label {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  font-family: 'Martel Sans', sans-serif;
  padding-top: 6px;
}


.form-control,
.form-select, input::placeholder {
  font-size: 18px;
  font-weight: 800;
  color: #96202470 !important;
  margin-bottom: 5px;
  padding: 10px;
  font-family: 'Noir-Regular';
}

.form-control.error,
.form-select.error {
  border: 2px solid #ffd6d6;
}

/* ===== Error Text ===== */
.error-text {
  color: #fff0f0;
  font-size: 14px;
  position: absolute;
}

/* ===== Button ===== */
.btn-success {
  background-color: #1F5529;
  border: none;
  font-size: 18px;
  padding: 12px;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  font-family: 'Martel Sans', sans-serif;
}

.btn-success:hover {
  background-color: #14532d;
}

/* ===== Footer ===== */
.footer-text{
      display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.footer-text a, .footer-text p {
  font-size: 16px;
  color: #841E20;
  text-decoration: none;
  border-right: 2px solid #841E20;
  line-height: 14px;
  padding: 0 10px;
  font-family: 'Noir-Regular';
}
.footer-text p{
  border-right: none;
}


/* ===== Responsive ===== */

@media screen and (min-width: 1025px) and (max-width: 1280px) { 
.form-heading{
  font-size: 28px;
}
}



@media screen and (min-width: 992px) and (max-width: 1024px) { 
    .rashi-year {
    font-size: 42px;
  }
  .rashi-sub {
    font-size: 28px;
  }
  .rashi-form-box{
    padding: 30px;
  }
  .form-heading{
    font-size: 24px;
  }
  .form-label{
    font-size: 18px;
  }
  .form-control, .form-select, input::placeholder{
    font-size: 16px;
  }

} 

@media screen and (min-width: 768px) and (max-width: 991px) { 
  .rashi-section{
    align-items: flex-start !important;
  }
  .footer-text{
    position: absolute !important;
  }
}



@media (max-width: 991px) {
  .rashi-year {
    font-size: 30px;
    padding-bottom: 0;
  }
  .rashi-sub {
    font-size: 18px;
    order: 2;
    padding-bottom: 20px;
  }
  .rashi-section{
        background: url(../images/new-mob-form-bg.png);
        height: auto;
        background-size: cover;
        background-position: top;
  }
  .form-main-wrapper{
    padding: 0;
  }
  .left-heading-wrapper{
    display: flex;
    flex-direction: column;
    margin: 40px 0;
  }
  .left-heading-wrapper img{
    order: 3;
    max-width: 100%;
  }
  .rashi-sub br, .rashi-year br{
    display: none;
  }
  .form-heading{
    font-size: 20px;
    line-height: 28px;
  }
  .rashi-form-box{
    padding: 30px;
  }
  .form-label{
    font-size: 16px;
  }
  .form-control, .form-select, input::placeholder{
    font-size: 14px;
  }
  .footer-text p{
    width: 100%;
    padding-top: 10px;
  }
  .footer-text{
    flex-wrap: wrap;
    margin: 0px auto;
    padding: 30px 0;
    position: static;
  }
  .footer-text a:nth-child(2){
    border-right: 0;
  }
  .kings-logo-wrapper img{
    max-width: 20%;
  }
}


