
    .header {
  background-color: #fff;
  border-bottom: 1px solid rgba(35, 31, 32, 0.2);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.161);
  left: 0;
  max-height: 8.688em;
  padding: 3.4em 10.5em;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}
.header .logo_wrapper {
  align-items: center;
  background-color: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  left: 10.5em;
  max-height: 100%;
  max-width: 8.688em;
  position: absolute;
  top: 0;
}
.header .nav_line_wrapper_flex {
  align-items: flex-start;
  display: flex;
  justify-content: flex-end;
}
.header .nav_line_wrapper_flex .nav_link {
  color: #fff;
  font-family: Red Hat Display, sans-serif;
  font-size: 1.25em;
  text-decoration: none;
}
.header .nav_line_wrapper_flex .nav_link .flex_for_ticker {
  align-items: center;
  background-color: #212529;
  border-radius: 10px;
  display: flex;
  padding: 1.188em 1.25em;
}
.header .nav_line_wrapper_flex .nav_link .flex_for_ticker .call_icon_ticker {
  margin-right: 0.5em;
  max-width: 1.5em;
  object-fit: contain;
}
@media (max-width: 992px) {
  .header {
    height: auto;
    padding: 3em 2em;
  }
  .header .logo_wrapper {
    left: 1.5em;
    max-width: 14.688em;
  }
  .header .logo_wrapper .atlas_logo {
        margin-left: 1.5em;
       max-width: 16.2em !important;
       width: 100%;
  }
}
@media (max-width: 600px) {
  .header .logo_wrapper {
    max-width: 15.4em;
  }
  .header .logo_wrapper .atlas_logo {
    max-width: 7.5em;
  }
  .header .nav_line_wrapper_flex .nav_link {
    font-size: 1.3em;
  }
  .header .nav_line_wrapper_flex .nav_link .flex_for_ticker {
    padding: 10px 15px;
  }
}
body {
  font-family: Red Hat Display, sans-serif;
}
img {
  height: auto;
  object-fit: cover;
}
::-webkit-scrollbar {
  background-color: #545353;
  width: 8px;
}
::-webkit-scrollbar-thumb {
  background-color: #fff;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
*,
:after,
:before {
  box-sizing: border-box;
}
*,
:after,
:before,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
}
:focus {
  outline: none;
  outline: 0 auto -webkit-focus-ring-color;
}
::-moz-focus-inner {
  border: 0;
}
button:focus {
  outline: 0 dotted;
  outline: 0 auto -webkit-focus-ring-color;
}
li {
  list-style-type: none;
}
[type="submit"],
button,
html [type="button"],
input [type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
}
input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:active,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:active,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
  -webkit-text-fill-color: #131313 !important;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}
.form_input {
  appearance: none;
  -webkit-appearance: none;
  background-color: transparent !important;
  border: 1px solid #707070;
  border-radius: 11px;
  color: #131313;
  display: block;
  font-size: 1.5em;
  line-height: 1.4em;
  outline: none;
  padding: 0.75em 2.579em 0.75em 1em;
  width: 100%;
}
.form_input::-webkit-input-placeholder {
  color: #131313;
}
.form_input::placeholder {
  color: #131313;
}
.form_input:-webkit-autofill,
.form_input:-webkit-autofill:active,
.form_input:-webkit-autofill:focus,
.form_input:-webkit-autofill:hover {
  -webkit-transition: background-color 5000s ease-in-out 0s,
    color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s, color 5000s ease-in-out 0s;
}
.form_submit_btn {
  /*background-color: #ee4e56;*/
      background: transparent linear-gradient(90deg,#b20710,#ee2c3c);
  border: 1px solid #ee4e56;
  border-radius: 11px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-family: Red Hat Display, sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  height: 2.8em;
  margin-top: 1.5em;
  overflow: hidden;
  position: relative;
  transition: all 0.3s;
  width: 100%;
  z-index: 2;
}
.form_submit_btn:hover {
  box-shadow: 0 10px 23px rgba(0, 0, 0, 0.16);
}
.form_submit_btn:hover .arrow_icon {
  right: 3em;
}
.form_submit_btn .arrow_icon {
  bottom: 0;
  margin: auto;
  max-width: 2em;
  position: absolute;
  right: 5em;
  top: 0;
  transition: 0.3s;
  width: 100%;
}
table {
  -webkit-user-select: none;
  user-select: none;
}
.error_message {
  color: red;
  display: none;
  font-size: 1.125em;
  margin-top: 1em;
}
.error_message:first-letter {
  text-transform: uppercase;
}
@media (min-width: 2560px) {
  body {
    font-size: 18px;
  }
  .my_container {
    margin: 0 auto;
    max-width: 2226px;
    padding: 0 15px;
    width: 100%;
  }
}
@media (min-width: 1921px) {
  .my_container {
    margin: 0 auto;
    max-width: 1820px;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 1920px) {
  body {
    font-size: 16px;
  }
  .my_container {
    margin: 0 auto;
    max-width: 1620px;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 1700px) {
  body {
    font-size: 14px;
  }
  .my_container {
    margin: 0 auto;
    max-width: 1619px;
    padding: 0 15px;
    width: 100%;
  }
}
@media (max-width: 1536px) {
  body {
    font-size: 12.5px !important;
  }
  .my_container {
    margin: 0 auto;
    max-width: 1356px;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 1440px) {
      body {
    font-size: 12px !important;
  }
  .my_container {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 1366px) {
  body {
    font-size: 12px !important;
  }
  .my_container {
    margin: 0 auto;
    max-width: 1194px;
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 1280px) {
  body {
    font-size: 10px !important;
  }
  .my_container {
    margin: 0 auto;
    max-width: 1113px;
    padding: 0 15px;
    width: 100%;
  }
}
@media (max-width: 1194px) {
  body {
    font-size: 10px !important;
  }
  .my_container {
    margin: 0 auto;
    max-width: 1031px;
    padding: 0 15px;
    width: 100%;
  }
}
@media (max-width: 1080px) {
  body {
    font-size: 9px !important;
  }
  .my_container {
    margin: 0 auto;
    max-width: 931px;
    padding: 0 15px;
    width: 100%;
  }
}
@media (max-width: 900px) {
  body {
    font-size: 10px;
  }
  .my_container {
    margin: 0 auto;
    max-width: 700px;
    padding: 0 15px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .my_container {
    margin: 0 auto;
    max-width: 100%;
    padding: 0 15px;
    width: 100%;
  }
  .form_input {
    font-size: 1.4em;
  }
  .form_submit_btn {
    font-size: 1.4em;
    height: 3.5em;
  }
}
.application_sec1 {
  background-color: #f3f3f3;
  padding-top: 10.688em;
}
.application_sec1 h1 {
  font-family: Red Hat Display, sans-serif;
  font-size: 3.75rem;
  font-weight: 800;
  padding: 0.25em 0 0.75em;
  text-align: center;
}
.application_sec1 h1 .styled_text {
  color: #ee4e56;
}
.application_sec2 {
  /*padding: 2.25rem 0 5.063rem;*/
}
.application_sec2 .point_list .list_item {
  border-left: 2px dashed #707070;
  color: #212529;
  font-family: Poppins, sans-serif;
  font-size: 1.5em;
  letter-spacing: 0;
  list-style-position: outside;
  padding-bottom: 2em;
  padding-left: 1.5em;
  position: relative;
}
.application_sec2 .point_list .list_item:before {
  background-color: #9a9a9a;
  border-radius: 50%;
  box-shadow: 0 0 0 5px #ddd;
  content: "";
  left: -8px;
  padding: 7px;
  position: absolute;
  top: 0.25em;
}
.application_sec2 .point_list .list_item:first-child
 {
  border-left: 2px dashed #ee4e56;
}
.application_sec2 .point_list .list_item:first-child:before
 {
  background-color: #ee4e56;
  box-shadow: 0 0 0 5px #ffaeb2;
}
.application_sec2 .point_list .list_item:last-child {
  margin-bottom: 2em;
  padding-bottom: 0;
}
.application_sec2 .point_list .list_item span {
  font-weight: 600;
}
.application_sec2 .application_number {
  padding: 0 6em 0 9em;
}
.application_sec2 .application_number .heading_app {
  font-family: Red Hat Display, sans-serif;
  font-size: 1.875em;
  font-weight: 800;
  margin-bottom: 0.8em;
}
.application_sec2 .application_number .app_form {
  font-family: Poppins;
  font-size: 1.5em;
  margin-top: 1.85em;
}
.application_sec2 .application_number .app_form a {
  color: #ee4e56;
  font-weight: 600;
  text-decoration: underline;
}
.application_sec2 .application_otp {
  padding: 3.75em 6em 0 9em;
}
.application_sec2 .application_otp .heading_app {
  font-family: Red Hat Display, sans-serif;
  font-size: 1.875em;
  font-weight: 800;
  margin-bottom: 0.8em;
}
.application_sec2 .application_otp .otp_form {
  font-family: Poppins;
  font-size: 1.5em;
  margin-top: 0.5em;
}
.application_sec2 .application_otp .otp_form a {
  color: #ee4e56;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .application_sec1 {
    padding-top: 9em;
  }
  .application_sec1 h1 {
    font-size: 4em;
    padding: 44px 0;
  }
  .application_sec2 {
    padding-left: 2em;
    padding-right: 2em;
  }
  .application_sec2 .application_number,
  .application_sec2 .application_otp {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 600px) {
  .application_sec1 h1 {
    font-size: 3em;
    padding: 44px 0;
  }
  .my_container .InteriorDesignHeading{
      font-size:1.2rem;
  }
  .application_sec2 {
    padding: 1em 0 1em;
  }
  .application_sec2 .point_list {
    /*padding-bottom: 2.9em;*/
    /*padding-left: 1.5em;*/
        padding-bottom: 0em;
    padding-left: 0em;
  }
  .application_sec2 .point_list .list_item {
    font-size: 1.5em;
    padding-left: 1.9em;
  }
  .application_sec2 .point_list .list_item:before {
    left: -6px;
    padding: 5px;
    top: 0.3em;
  }
  .application_sec2 .application_number .heading_app {
    font-size: 1.7em;
  }
  .application_sec2 .application_number .app_form {
    font-size: 1.4em;
  }
  .application_sec2 .application_otp .heading_app {
    font-size: 1.7em;
  }
  .application_sec2 .application_otp .otp_form {
    font-size: 1.4em;
  }
}


  .testing {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.3rem 0.5rem;
    font-size: 1.6em;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form_field .radio_flex .radio_wrap .radio_label1 {
    cursor: pointer;
    font-family: Red Hat Display, sans-serif;
    font-size: 18px;
    font-weight: 800;
    margin: 0;
    max-width: 100%;
    padding: 0 0 0 0.5em;
    width: 100%;
        text-align: center;
}
.registration_sec2 .form_field {
    max-width: 100%;
}

@media only screen and (max-width: 480px) {
 .First-Year{
         font-size: 26px !important;
   
 }
 
 .form_field .radio_flex1 {
    display: flex;
    margin-bottom: 2.5em;
    flex-direction: column;
}
.form_field .radio_flex .radio_wrap {
    max-width: 100%;
    width: 100%;
}

 
}












/*# sourceMappingURL=main.d1181805.css.map*/

