@font-face {
  font-family: "Lato Regular";
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Bold";
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato Italic";
  src: url("../fonts/Lato/Lato-Italic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/Helvetica/HelveticaNowDisplay-Regular.woff2") format("woff2"), url("../fonts/Helvetica/HelveticaNowDisplay-Bold.woff2") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HelveticaNowDisplay";
  src: url("../fonts/Helvetica/HelveticaNowDisplay-Bold.woff2") format("woff2"), url("../fonts/Helvetica/HelveticaNowDisplay-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/inter.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/inter-italic.ttf") format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter/static/Inter_18pt-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter/static/Inter_18pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter/static/Inter_18pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}

:root,
[data-bs-theme=light] {
  --bs-border-radius: 0.25rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Lato Regular", sans-serif;
  line-height: 1.6;
  color: #404040;
}

body {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: bold;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease-in-out;
}

#leadForm_popup .registerFormBlock {
  border: unset;
}

.overlay.show {
  transform: scaleY(1);
}

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: auto;
  max-height: 90%;
  overflow-x: hidden;
  background-color: #fff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 99999999;
}
.popup .close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #575757;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
  transition: color 0.3s ease;
  font-weight: 500;
  background-image: url("../images/icons/close-icon.svg");
  background-repeat: no-repeat;
}
.popup .close-btn:hover {
  color: #97144d;
}

.hidden {
  display: none;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: #97144d;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.nav-link:focus,
.nav-link:hover,
.dropdown-link:focus,
.dropdown-link:hover {
  text-decoration: none;
}

.dropdown-link {
  padding: 8px;
  display: block;
}

.btn:hover {
  text-decoration: none;
}

.container {
  max-width: unset;
  margin: 0 auto;
  padding: 0 5%;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  padding: 0 15px;
}

.section-title {
  font-size: 44px;
  font-weight: bold;
  color: #97144d;
  font-family: "Lato";
}

.toast.alert-success {
  --bs-toast-bg: var(--bs-success-bg-subtle);
  --bs-toast-border-color: var(--bs-success-border-subtle);
  color: var(--bs-alert-color);
}
.toast.alert-danger {
  --bs-toast-bg: var(--bs-danger-bg-subtle);
  --bs-toast-border-color: var(--bs-danger-border-subtle);
  color: var(--bs-alert-color);
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 16px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input[type=date]::-webkit-calendar-picker-indicator {
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  padding: 8px;
}

select {
  cursor: pointer;
}

.form-check-input {
  cursor: pointer;
}
.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem #ffe7f1;
  border-color: #97144d;
}
.form-check-input:checked {
  background-color: #97144d;
  border-color: #97144d;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.25rem #ffe7f1;
  border-color: #97144d;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  background-color: #97144d;
  border-color: #97144d;
}

.signBtn {
  background-color: #97144d;
  color: #404040;
  padding: 8px 16px !important;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
}

.form-item {
  margin-bottom: 1rem;
}

.smallText {
  font-size: 14px;
}

.dependent-field {
  display: none;
}

.form-sub-section {
  border: 1px solid #97144d;
}
.form-sub-section .sub-heading {
  background: #97144d;
  padding: 12px;
  color: #fff;
  font-size: 18px;
}

fieldset {
  border: 1px solid #97144d;
  border-radius: 5px;
  padding: 1rem;
  margin-bottom: 1rem;
}

legend {
  font-size: 18px;
  color: #97144d;
  font-weight: bold;
  width: auto;
  padding: 0 0.5rem;
  margin-top: -1.9rem;
  background: #fff;
}

.admission-closed {
  position: relative;
  width: 100%;
  background: #97144d;
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  overflow: hidden;
  white-space: nowrap;
  z-index: 9999999;
}

.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 20s linear infinite;
}

.contact-support {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #97144d;
  padding: 12px;
}
.contact-support span,
.contact-support a {
  color: #fff;
  font-weight: bold;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
#tabs {
  width: 100%;
  padding-right: 0px;
}
#tabs li {
  width: 50%;
}
#tabs li .nav-link {
  background: #ffe7f1;
  border: 1px solid #ffe7f1;
  font-weight: bold;
  color: #404040;
}
#tabs li .nav-link.active {
  background: #97144d;
  border: 1px solid #97144d;
  color: #fff;
}
#tabs li .nav-link.active:focus {
  border: 1px solid #97144d;
}
#tabs li button {
  width: 100%;
}

ul.wp-block-list {
  padding-left: 24px;
}

.iti {
  width: 100%;
}

table th {
  background: #97144d;
  border-color: #97144d !important;
}

.td-25 {
  width: 25%;
}

.td-33 {
  width: 33.33%;
}

.td-50 {
  width: 50%;
}

.td-75 {
  width: 75%;
}

.td-100 {
  width: 100%;
}

.label {
  font-weight: bold;
}

#errorMessage ul {
  margin-bottom: 0px;
}

button {
  background-color: #97144d;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px 15px;
}

button:hover {
  background-color: #ed1164;
  border-color: #ed1164 !important;
}

nav button.navbar-toggler:hover {
  background: unset;
}

.button,
.btn {
  background-color: #97144d;
  border: 1px solid #97144d;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  box-shadow: none !important;
  margin-top: 10px;
}

.btn-outline-secondary {
  border: 1px solid #97144d;
}

.btn-primary {
  background-color: #97144d;
  border-color: #97144d;
  z-index: 1;
}

.btn-primary:hover,
.button:hover,
.btn:hover {
  border-color: #ed1164;
  background-color: #ed1164;
}

.button:focus,
.btn:focus,
.button:active,
.btn:active {
  background-color: #ed1164 !important;
  box-shadow: none;
  border-color: #ed1164 !important;
}

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

.fontBold {
  font-weight: bold;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.p-1 {
  padding: 1rem;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.whiteColor {
  color: #fff !important;
}

.redColor {
  color: #ff0000 !important;
}

.topPadding {
  padding-bottom: 24px;
}

.bottomPadding {
  padding-bottom: 24px;
}

.topMargin {
  margin-top: 24px;
}

.bottomMargin {
  margin-bottom: 60px;
}

.error {
  color: #ff4300 !important;
  font-size: 14px;
  font-style: italic;
}

input.error,
select.error,
textarea.error {
  background-color: #ffece5;
  border: 1px solid #ff4300;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.iti--separate-dial-code {
  height: calc(1.5em + 0.75rem + 2px);
}

.required-asterisk {
  color: red;
  font-weight: bold;
}

.success-icon {
  color: #008000;
}

.logoBlock .divider {
  border-right: 1px solid #fff;
  margin-right: 8px;
}

#navbarNav {
  background: #fff;
  padding: 16px;
  position: relative;
  padding-left: 50px;
  padding-right: 4%;
  margin-left: auto;
}

header {
  position: fixed;
  border-top: 24px solid #97144d;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
header .logoBlock {
  background: #97144d !important;
  padding-left: 4%;
}
header nav {
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
header nav li.nav-item {
  padding: 0 8px;
}
header nav li.nav-item:last-child {
  padding-right: 0;
}
header nav li.nav-item a.nav-link {
  color: #fff !important;
}
header nav li.nav-item a.nav-link.signBtn {
  color: #fff !important;
  background: #97144d;
}
header nav .logo img {
  max-width: 100px;
}
header nav .navbar-collapse {
  flex-grow: unset;
}
header nav.bottom-menu {
  height: 100%;
  padding: 0;
}
header nav.bottom-menu .navbar-nav {
  flex: 0 0 auto;
  width: 68%;
  height: 100%;
  align-items: center;
}
header nav.bottom-menu li.nav-item {
  margin: 0 auto;
}
header nav.bottom-menu li.nav-item a.nav-link {
  color: #97144d !important;
}
header nav.bottom-menu .dropdown-menu[data-bs-popper] {
  top: calc(100% + 14px);
  padding: 0;
  border: 0;
  border-radius: 0;
}
header nav.bottom-menu .dropdown-menu[data-bs-popper] li .dropdown-item {
  padding: 10px 16px;
  background: #97144d;
  color: #fff;
  border-bottom: 1px solid #fff;
}
header nav.bottom-menu .dropdown-menu[data-bs-popper] li .dropdown-item:hover {
  background: #fff;
  color: #97144d;
  text-decoration: none;
}
header nav.bottom-menu .dropdown-menu[data-bs-popper] li:last-child .dropdown-item {
  border-bottom: 0;
}
header .design-element {
  margin: -1px auto 0 auto;
  width: 100%;
  height: 70px;
  display: block;
  padding: 0px 0 0px 60px;
  position: relative;
  z-index: 0;
  left: 30%;
  background: #fff;
}
header .design-element::before {
  background: url("../images/menu-part.png") no-repeat;
  background-size: cover;
  content: "";
  top: 0;
  left: 0;
  position: absolute;
  width: 92px;
  height: 70px;
  z-index: -1;
}

.navbar.navbar-expand-lg.navbar-light {
  padding: 0 !important;
}

header nav li.nav-item a.nav-link {
  color: #404040 !important;
}

.headerBlock {
  display: flex;
  width: 100%;
  position: relative;
  background: #fff;
}

main {
  min-height: calc(93vh - 24px);
  padding-top: 96px;
}

footer {
  background: #97144d;
}
footer .social-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.loginFormBlock,
.registerFormBlock {
  border: 1px solid #ccc;
  padding: 24px;
  border-radius: 10px;
}
.loginFormBlock .custom-checkbox,
.registerFormBlock .custom-checkbox {
  position: relative;
  display: flex;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.4;
  color: #ccc;
}
.loginFormBlock .custom-checkbox .checkmark,
.registerFormBlock .custom-checkbox .checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid #777;
  border-radius: 3px;
  background-color: transparent;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.2s ease;
}
.loginFormBlock .custom-checkbox input:checked ~ .checkmark,
.registerFormBlock .custom-checkbox input:checked ~ .checkmark {
  background-color: #ccc;
  border-color: #ccc;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path fill='blue' d='M5.5 11.5L1.5 7.5L2.9 6.1L5.5 8.7L11.1 3.1L12.5 4.5L5.5 11.5Z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
.loginFormBlock .custom-checkbox input,
.registerFormBlock .custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.loginFormBlock .terms-condition label,
.registerFormBlock .terms-condition label {
  color: #848484;
  font-size: 14px;
}
.loginFormBlock .terms-condition label input,
.registerFormBlock .terms-condition label input {
  margin: 0 12px 0 0;
  width: auto;
}

.formSection {
  z-index: 1;
  border: 1px solid #97144d;
}
.formSection .card-body {
  border: none;
  border-radius: unset;
}
.formSection button {
  border: 1px solid #97144d;
  border-radius: unset;
}
.formSection button .toggle-icon .fa-chevron-down {
  transition: transform 0.2s ease-in-out;
  transform: rotate(-180deg);
}
.formSection button.collapsed .toggle-icon .fa-chevron-down {
  transform: rotate(0deg);
}

.forgotPasswordLink {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.forgotPasswordLink a {
  text-decoration: underline;
}

#multiStepTab {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-bottom: unset;
}
#multiStepTab .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffe7f1;
  border: 1px solid #ffe7f1;
  color: #404040;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: unset;
  cursor: pointer;
}
#multiStepTab .nav-link span {
  font-size: 1rem;
  padding-right: 1rem;
}
#multiStepTab .nav-link.active {
  background: #97144d;
  border: #97144d;
  color: #fff;
}

#otpSection .otp-field {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
#otpSection #resendOtpBtn {
  padding: 8px 12px !important;
  width: auto !important;
  font-size: 12px;
  background: none;
  color: #404040;
  text-decoration: underline;
  border: none;
}
#otpSection .otp-result-message {
  font-size: 12px;
  font-style: italic;
  color: #008000;
}
#otpSection .otp-result-message.error {
  color: #ff4300;
}
#otpSection #resendOtpBtn:disabled {
  color: #000;
}

.resendOTPBlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navigation-link {
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  text-decoration: underline;
  font-weight: inherit;
}

.noteText {
  display: flex;
  font-size: 12px;
}

.form-preview h5 {
  background: #97144d;
  text-align: center;
  color: #fff;
  padding: 12px;
  margin-bottom: 0px;
}
.form-preview table td {
  background: #fff;
  padding: 0.5rem;
}
.form-preview .preivew-photo {
  width: 200px;
}

.declartion-info {
  border: 1px solid #97144d;
}
.declartion-info .details {
  padding: 1rem;
}
.declartion-info .details ul {
  padding-left: 24px;
}

.gap-20 {
  gap: 20px;
}
.gap-20 .radio-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0 5px;
}
.gap-20 .radio-wrap input[type=checkbox] {
  order: 1;
}
.gap-20 .radio-wrap label.error {
  order: 3;
  flex: 0 0 auto;
  width: 100%;
}
.gap-20 .radio-wrap label.for-label {
  order: 2;
  margin-bottom: 0;
  flex: 0 0 auto;
  width: 97%;
}
.gap-20 .radio-wrap.yes-no {
  align-items: center;
}
.gap-20 .radio-wrap.yes-no label.for-label {
  flex: none;
  width: auto;
}

.uploadCallbackBtn {
  display: flex;
  align-items: center;
}
.uploadCallbackBtn .fa-xmark {
  cursor: pointer;
  margin: 5px 0 0 5px;
}

#documentsInfo .input-group .btn {
  padding: 0.275rem 0.75rem;
}
#documentsInfo .input-group input[type=file] {
  order: 1;
}
#documentsInfo .input-group label.error {
  order: 3;
  flex: 0 0 auto;
  width: 100%;
  margin-top: 5px;
}
#documentsInfo .input-group button {
  order: 2;
  margin-left: 5px;
}

.navbar-toggler {
  border-color: #fff;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 266, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.my-applications .list-group-item {
  padding: 24px 16px;
  gap: 20px 0px;
  margin-bottom: 20px;
  border: 1px solid #97144d;
  border-radius: 8px;
}
.my-applications .list-group-item p {
  margin-bottom: 0;
}

.upperCase {
  text-transform: uppercase;
}

@media (min-width: 320px) and (max-width: 1080px) {
  .section-title {
    font-size: 1.8rem;
  }
  header .design-element {
    display: none;
  }
  header .offcanvas .nav-link,
  header .offcanvas .dropdown-link {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
  }
  header .navbar-nav .dropdown-menu {
    position: static !important;
    transform: none !important;
    border-radius: 0;
    background: #000 !important;
    padding: 0 !important;
  }
  header .navbar-nav .dropdown-menu li .dropdown-item {
    color: #fff !important;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
  }
  header .navbar-nav .dropdown-menu li:last-child .dropdown-item {
    border-bottom: 0;
  }
}
.banner {
  background: url("../images/banner/axisrl-banner.jpg") no-repeat center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1600/581;
  position: relative;
  padding: 25px;
}
.banner .left h1 {
  color: #fff;
  font-size: 36px;
}
.banner .left p {
  color: #fff;
}
.banner .left .description {
  border-top: 2.17px solid #FFFFFF;
  padding-top: 16px;
  font-size: 20px;
  font-family: "HelveticaNowDisplay";
  margin-bottom: 10px;
  max-width: 372px;
}
.banner .left .ctc-box {
  display: block;
  font-size: 22px;
  float: left;
  color: #fff;
  font-weight: bold !important;
  font-family: "HelveticaNowDisplay";
}
.banner .left .subText {
  font-size: 24px;
  display: flex;
}
.banner .left .subText span {
  margin-left: 8px;
  color: #ED1164;
  font-size: 32px;
  font-style: italic;
}
.banner .left .terms {
  display: flex;
  width: 100%;
  color: #fff;
  font-size: 10px;
}
.banner .banner-block {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
.banner .banner-block .registerFormBlock {
  background: #fff;
  min-width: 380px;
  max-width: 380px;
}
.banner .banner-top {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
}
.banner .manipal-logo {
  z-index: 1;
  position: absolute;
  left: 2%;
  width: 130px;
  bottom: 3%;
}
.banner .banner-bottom {
  position: absolute;
  bottom: -15%;
  left: 0;
  width: 100%;
  height: 108px;
  background: #961c51;
  border-top: 1px solid #fff;
}
.banner .banner-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.banner .banner-bottom .stat {
  text-align: center;
  color: #fff;
  flex: 1;
}
.banner .banner-bottom .stat strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.banner .banner-bottom .stat span {
  font-size: 14px;
  opacity: 0.9;
}
.banner .banner-bottom .divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.4);
}
.banner .banner-bottom .bannerBlock {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 24px;
  z-index: 2;
}
.banner .banner-bottom .bannerBlock .logoBlock .logo img {
  max-width: 120px;
}

@media (min-width: 1920px) {
  .logo img {
    max-width: 120px;
  }
  .section-title {
    font-size: 48px;
  }
  .banner {
    padding: 70px;
  }
  .bottomMargin {
    margin-bottom: 80px;
  }
}
@media (max-width: 1280px) {
  .section-title {
    font-size: 36px;
  }
  header nav .logo img {
    max-width: 94px;
  }
  header .logoBlock {
    padding-top: 12px;
  }
  header nav li.nav-item.home,
  header nav li.nav-item.career {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .container {
    padding: 0 4%;
  }
}
@media (min-width: 0px) and (max-width: 767.98px) {
  .row {
    margin-bottom: 100px;
  }
  .section-title {
    font-size: 26px;
    margin-bottom: 18px;
  }
}
@media (min-width: 0) and (max-width: 575.98px) {
  nav button.navbar-toggler {
    background: #97144d;
    align-self: center;
  }
  header .logoBlock {
    padding-bottom: 0px;
    padding-top: 12px;
    display: flex;
    align-items: center;
  }
  .logoBlock .divider {
    height: 16px;
  }
  header nav .logo img {
    max-width: 60px;
  }
  .banner {
    background: url("../images/banner/axisrl-banner-mob.png");
    background-size: contain;
    aspect-ratio: 411/320;
  }
  .banner .left .description,
  .banner .left .subText {
    font-size: 18px;
  }
  .banner .left .terms {
    margin-bottom: 24px;
  }
  .banner .left .description {
    max-width: 80%;
  }
  .banner .left .subText span {
    font-size: 24px;
  }
  .banner .banner-block {
    flex-direction: column;
  }
  .banner .banner-bottom {
    bottom: -11px;
  }
  .banner .left {
    background: rgba(128, 30, 60, 0.85);
    padding: 40px 36px;
    max-width: 520px;
    color: #fff;
    border-radius: 6px;
    margin-right: -19%;
    margin-left: 27%;
  }
  .banner .left .description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 95%;
  }
  .banner .left .ctc-box {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  .banner .left .terms {
    font-size: 16px;
  }
  .banner .left .job-aasured {
    background: linear-gradient(90deg, #F7F7F7 2%, rgba(79, 24, 53, 0) 86%);
    font-family: "HelveticaNowDisplay";
    font-weight: bold;
    font-size: 20px;
    color: #000000;
    height: 72px;
    padding-left: 30px;
  }
  .banner .left .job-aasured-program {
    font-family: "HelveticaNowDisplay";
    font-weight: bold;
    font-size: 30px;
    color: #000000;
  }
  .banner .left h1 {
    font-family: "Lato";
    font-weight: 700;
    font-size: 28px;
  }
  .applicant-details {
    flex-direction: column;
  }
  header nav li.nav-item a.nav-link.signBtn {
    margin-bottom: 12px;
  }
  main {
    padding-top: 95px;
  }
  nav .logo img {
    width: 200px;
  }
  #multiStepTab .nav-item {
    width: 100%;
  }
  #multiStepTab .nav-item .nav-link {
    justify-content: start;
    padding: 6px 12px;
    font-size: 1rem;
  }
  #multiStepTab .nav-item .nav-link span {
    font-size: 1rem;
  }
}
@media (max-width: 395px) {
  .section-title {
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */