/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  --white-color:                  #ffffff;
  --primary-color:                #e31837;
  --secondary-color:              #EE5007;
  --section-bg-color:             #f0f8ff;
  --custom-btn-bg-color:          #EE5007;
  --custom-btn-bg-hover-color:    #c01f27;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #B22727;

  --h1-font-size:                 74px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --btn-font-size:                14px;
  --copyright-font-size:          16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
  --geeks-border-radius-lg: 0.5rem;
}

body {
  background-color: var(--white-color);
}


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

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

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

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

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.bg_img {
  background-image: url("../images/latest_bg_img.png");
  background-size: cover;
  background-repeat: no-repeat;
  height: 100vh;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  /* background: transparent; */
  background: #000;
  z-index: 9;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h5-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  /* padding: 10px 20px; */
  padding: 8px 8px;
  font-size: 16px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--primary-color);
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.services-info h2 {
  color: #000;
  font-weight: 600;
  font-size: 26px;
  text-align: center;
}

.services-info h2::after {
  content: "";
  display: block;
  width: 50px;
  border-bottom: 4px solid #e31837;
  height: 15px;
  margin: 0 auto;
}

/* .artists-section {
  background: #f5f5f5;
} */

.rise_logo {
  width: 162px;
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .navbar-nav .nav-link {
    color: #fff;
  }
  
  .sticky-wrapper.is-sticky .navbar {
    background-color:var(--dark-color)
  }
  .card {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .card {
    margin-bottom: 20px;
  }
  .navbar {
    background: #000;
  }

  .sticky-wrapper.is-sticky .navbar {
    background-color:var(--dark-color)
  }
  .navbar-nav .nav-link {
    color: #fff;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }
  .card {
    margin-bottom: 20px;
  }

  .navbar {
    background: #000;
  }
  .sticky-wrapper.is-sticky .navbar {
    background-color:var(--dark-color)
  }
  .navbar-nav .nav-link {
    color: #fff;
  }
}

/*---------------------------------------
  CARD STYLES               
-----------------------------------------*/
.card_row {
  margin-top: 9%;
  justify-content: center;
}

.rounded-top-3 {
  border-top-left-radius: var(--geeks-border-radius-lg)!important;
  border-top-right-radius: var(--geeks-border-radius-lg)!important;
}

.border {
  border: none !important;
}

.card-body {
  flex: 1 1 auto;
  padding: 1.5rem;
}

.text-truncate {
  letter-spacing: 0.1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1rem;
}

.text-inherit {
  color: #1e293b;
}

.card:hover {
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1),
              0 10px 8px rgba(0, 0, 0, 0.015);
}

.card-body .card-title {
  font-weight: 700;
  letter-spacing: 0.3px;
  font-size: 24px;
  color: #121212;
}

.card-text {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #4E4E4E;
}

.card .container {
  width: 88%;
  background: #F0EEF8;
  border-radius: 30px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container:hover > img {
  transform: scale(1.2);
}

.container img {
  padding: 75px;  
  margin-top: -40px;
  margin-bottom: -40px;
  transition: 0.4s ease;
  cursor: pointer;
}

.btn {
  background: #EEECF7;
  border: 0;
  color: #e31837 !important;
  width: 98%;
  font-weight: 600;
  border-radius: 0.375rem;
  height: 40px;
  transition: all 0.2s ease;
  letter-spacing: 0.1rem;
}

.btn:hover {
  background: #e31837;
  color: #fff !important;
}

.btn:focus {
  background: #e31837;
  outline: 0;  
}

.highlight_text {
  position: relative;
}

.highlight_text::after {
  right: 5px;
  bottom: -3px;
  position: absolute;
  content: "";
  background-color: #e31837;
  height: 2px;
  width: 80%;
}

/* Login CSS */
.login-parent {
  justify-content: center;
}
.App {
  max-width: 800px;
  width: 90vw;
  min-height: 450px;
  background: #fffffff0;
  border-radius: 20px;
  box-shadow: 0 2px 5px -6px #212323, 0 0 30px -50px #2a2b2b;
  display: flex;
}

.Panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 2;
  position: relative;
  overflow-x: hidden;
}

.FormPanel {
  flex-grow: 2;
  border-radius: inherit;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.Panel h2 {
  font-size: 1.9rem;
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.Panel p {
  margin: 0.5rem 0;
  max-width: 25ch;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 300;
  text-align: center;
  color: #000;
}

.Panel form {
  display: flex;
  flex-direction: column;
}

.Panel form input {
  margin: 0.5rem 0;
  width: 300px;
  padding: 0.5rem 0.75rem;
  background: #F0F4F3;
  border: none;
  color: inherit;
  font-family: inherit;
  letter-spacing: 0.1rem;
}

.Panel a, .Panel button {
  color: inherit;
  font-family: inherit;
}

.Panel a {
  letter-spacing: 0.1rem;
  font-size: 12px;
}

.Panel button, .Panel a {
  background: none;
  border: 1px solid currentColor;
  border-radius: 50px;
  padding: 0.5rem 2.75rem;
  margin: 0.5rem 0;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}

.FormPanel button, .ActionPanel a {
  background: #e31837;
  color: #FFFFFF;
}

.ActionPanel {
  background-image: url(../images/right-gradient.jpg);
  background-size: cover;
  box-shadow: inset 0 0 0 1000px rgb(145 135 135 / 31%);
  color: #FFFFFF;
  padding: 2rem;
  flex-grow: 2;
  border-radius: inherit;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
}

.Panel h2 {
  letter-spacing: 0.1rem;
  font-size: 1.3rem;
  text-transform: capitalize;
  margin-bottom: 1rem;
  color: #e31837;
}

.mahindra-login-p {
  position: relative;
  max-width: 55% !important;
  width: 100%;
  letter-spacing: 0.1rem;
  font-size: 12px !important;
}

.mahindra-login-p::before {
  top: -5px;
  width: 100%;
  content: "";
  position: absolute;
  height: 1px;
  background-color: #e31837;
  left: 0;
}

.ActionPanel button {
  color: #e31837;
  border-color: #e31837;
}

.external-link-left {
  padding: 7px 20px !important;
    border: 0 !important;
    border-radius: 0 !important;
    bottom: 0;
    left: 0;
    position: absolute;
    margin: 0 !important;
    cursor: pointer;
}

.external-link-right {
  padding: 7px 20px !important;
  border: 0 !important;
  border-radius: 0 !important;
  bottom: 0;
  right: 0;
  position: absolute;
  margin: 0 !important;
  cursor: pointer;
}

@media (max-width: 650px) {
  .App {
      flex-direction: column;
      border-radius: 0;
      width: 100vw;
      height: 100%;
      margin: 0;
      box-shadow: none;
  }
  .FormPanel {
    border-radius: 0;
}
.ActionPanel {
  border-radius: 0;
}
}