/* themeing section colors, fonts */

:root {
    --white-color: #ffffff;
    --dark-gray: #191919;
    --pink: #ce0e2d;
    --off-white: #fefffe;
    --gray: #525252;
    --light-gray: #cccccc;
}

@font-face {
    font-family: mahindra;
    src: url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: mahindraBold;
    src: url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: mahindraSBold;
    src: url(../fonts/Montserrat-SemiBold.ttf);
}


/* default tags css */

html {
    scroll-behavior: smooth;
    transition: all;
}

body {
    font-family: mahindra;
    background-color: #f3f3f9;
}

a {
    text-decoration: none;
}

.card {
    box-shadow: 0px 2px 10px 0px;
}


/* header code */

.navbar-nav {
    padding: 1rem 0px;
}

.navbar-nav .nav-item .nav-link {
    color: var(--white-color);
    font-size: 0.9rem;
    padding: 0px 1.7rem;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--pink);
}

.admin-icon {
    margin-top: -2px;
}

.navbar-toggler {
    padding: 0.2rem;
    border: none;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    left: -5rem;
    top: 2rem;
}

.dropdown {
    display: block;
}

.dropdown-mobile {
    display: none;
}


/* slider */

.slider-container {
    height: 30rem;
    position: relative;
    overflow: hidden;
}

.slider-container .slidermahindra {
    height: 30rem;
    width: 100%;
    position: relative;
    z-index: 0;
}

.slider-container .slidermahindra img {
    width: 100%;
    object-fit: contain;
}

.slider-container .tag-text {
    /* color: var(--white-color); */
    color: var(--pink);
}

.slider-container h1 {
    font-family: mahindraBold;
    font-size: 5rem;
}

.slider-container h3 {
    font-family: mahindraSBold;
    font-size: 3rem;
}


/* .slider-container .slidermahindra .content {
  position: absolute;
  top: 0;
  right: 4rem;
  z-index: 1000;
  justify-content: center;
  align-items: end;
  display: flex;
  flex-direction: column;
  text-align: left;
} */


/* section-demo */

.section-demo {
    position: relative;
    margin-top: -5rem;
}

.demo-box {
    background-color: var(--off-white);
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.demo-box .img-container {
    height: 200px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-box img {
    margin: 0 auto;
    /* padding-top: 2rem;
  padding-bottom: 0.6rem;
  width: 90%; */
}

.demo-box .demo-box-title {
    background-color: var(--pink);
    color: var(--white-color);
    padding: 1rem 0rem;
    cursor: pointer;
}

.demo-box .demo-box-title label {
    cursor: pointer;
}


/* footer */

footer {
    margin-top: auto;
    background-color: var(--dark-gray);
}

.footer-menu-container {
    padding: 5rem 0px;
}

footer .footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 3.2rem;
    justify-content: end;
    font-size: 0.9rem;
}

footer .footer-menu li a {
    color: var(--white-color);
    transition: 0.3s;
}

footer .footer-menu li a:hover {
    color: var(--pink);
}

footer .credit {
    border-top: 1px solid var(--gray);
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
}

footer .credit .social-icons {
    display: flex;
    gap: 1rem;
}

footer .credit .social-icons div {
    background-color: var(--white-color);
    border-radius: 50%;
    padding: 0.5rem;
    transition: 0.3s;
}

footer .credit .social-icons div:hover {
    transform: scale(0.8);
}

footer .credit .social-icons .fb {
    padding: 0.5rem 0.9rem;
}


/* login page css */


/* .login-header {
  background-image: url(../images/banner.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  height: 20rem;
} */

.form {
    margin: 0 auto;
    margin-top: 3rem;
    border: 1px solid var(--light-gray);
    width: 40%;
    padding: 1rem;
    border-radius: 0.7rem;
}

.form h3 {
    font-family: mahindraBold;
    text-align: center;
    margin-bottom: 1rem;
}

.form-wrapper label {
    color: var(--gray);
}

.form-link {
    color: var(--pink);
}

.form-link:hover {
    color: var(--light-gray);
}

.error-help-block {
    color: red;
}

.container.p-5. {
    max-width: 100%;
}

.w-1320 {
    display: flex;
    width: 1320px;
}

.form-body {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    min-height: 58vh;
}

.frontend-container-image {
    max-width: 100%;
}