@font-face {
  font-family: "Poppins", sans-serif;
  src: url(fonts/Poppins-Regular.ttf);
  src: url(fonts/Poppins-Bold.ttf);
  src: url(fonts/Poppins-Medium.ttf);
  font-weight: bold;
}

*::selection {
  background-color: #90111c;
  color: white;
}

body {
  font-family: "Poppins", sans-serif;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  line-height: 30px;
  color: #302f2f;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
  color: #90111c;
}

.menu-book-now-button {
  padding: 10px 20px;
  color: #fff;
  border-radius: 28px;
  margin-left: 80px;
  background-color: #90111c;
}

.menu-book-now-button:hover,
.menu-book-now-button:active,
.menu-book-now-button:focus {
  background-color: #fff;
  border: 1px solid #90111c;
  color: #90111c;
}

/* contact-form */
.contact-form input,
select {
  height: 50px;
  width: 100%;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  color: #b7b7b7;
  padding-left: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.select-tag {
  height: 50px;
  width: 100%;
  border: 1px solid #e1e1e1;
  font-size: 14px;
  color: #000000a6;
  padding-left: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
}

@media (max-width: 768px) {
  .select-tag option {
    width: 100%;
  }
}

.select-tag:focus {
  box-shadow: none;
  border: 1px solid #e1e1e1;
}

.contact-form #message {
  box-shadow: none;
  border: 1px solid #e1e1e1;
}

.submitbtn {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  background-color: #90111c;
  padding: 10px 30px;
  border-radius: 30px;
  border: none;
  border: 1px solid transparent;
  transition: all 0.5s ease-in-out;
}

.submitbtn:hover {
  background-color: #fff;
  border: 1px solid #90111c;
  color: #90111c;
  transition: all 0.5s ease-in-out;
}

/* contact form end */
/* navbar area starts */
.navbar {
  padding: 10px;
  background-color: #fff;
  box-shadow: 0px 20px 40px #0000000f;
}

.navbar .navbar-nav .nav-link {
  color: #302f2f;
  font-size: 16px;
  line-height: 25px;
  padding: 0 0 7px 0;
  margin-right: 50px;
}

.navbar .navbar-nav .active > .nav-link {
  color: #90111c;
  font-weight: 600;
  background: transparent url("../images/border-bottom.svg") 0% 100% no-repeat
    padding-box;
}

.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
  color: #90111c;
  background: transparent url("../images/border-bottom.svg") 0% 100% no-repeat
    padding-box;
  transition: 0.25s ease-in-out;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 10px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border: none;
  border-radius: 0;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  font-size: 14px;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  margin-top: 5px;
}

.dropdown-item:hover {
  color: #1e2125;
  background-color: #f0f0f2;
}

.navbar-collapse {
  background-color: #fff;
}

.navbar-toggler {
  border: none !important;
  outline: none !important;
}

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

.ticon {
  font-size: 25px;
  color: #90111c;
}

/* navbar area ends */

/* banner area starts */
.banner {
  padding: 70px 0;
  overflow: hidden;
  position: relative;
}

.background-shape {
  position: absolute;
  top: -35%;
  right: -16%;
  z-index: -1;
}

.banner h1 {
  font-size: 50px;
  line-height: 70px;
}

.banner h1 span {
  font-weight: bold;
}

.banner-cta ul li {
  list-style: none;
  display: inline;
}

.banner-cta i {
  background: #90111c;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  margin-right: 20px;
  font-size: 30px;
  transform: rotate(-20deg);
}

.banner-cta a {
  padding: 10px 20px;
  font-size: 25px;
  line-height: 40px;
  margin-right: 10px;
  font-weight: 600;
  margin-right: 20px;
  border: 1px solid #90111c;
  border-radius: 30px;
  text-decoration: none;
  color: #90111c;
}

.banner-cta a:hover {
  background-color: #90111c;
  border: 1px solid transparent;
  color: #fff;
  transition: 0.5s ease-in-out;
}

.service-box {
  background-color: #f3e7e8;
  border-radius: 20px;
  padding: 20px;
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  -o-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.service-box:hover {
  transform: translateY(-7.5px);
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  -o-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.service-box i {
  background: #fff;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 10px;
  color: #90111c;
  margin-right: 20px;
  font-size: 20px;
}

.rotate {
  transform: rotate(-30deg);
}

.service-box h2 {
  font-size: 50px;
  line-height: 55px;
  color: #90111c;
  font-weight: bold;
  text-transform: capitalize;
}

.service-box h3 {
  font-size: 16px;
  line-height: 20px;
  color: #302f2f;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 9px;
}

/* banner area ends */

/* about section starts */
.about-home {
  padding: 70px 0;
}

.about-text {
  padding: 50px 30px 50px 0;
}

.about-text h1 {
  font-size: 40px;
  line-height: 60px;
  font-weight: bold;
  color: #90111c;
}

.about-text h2 {
  font-size: 30px;
  line-height: 60px;
  color: #302f2f;
  font-weight: 600;
}

.about-home img:hover {
  filter: brightness(0.8) grayscale(1);
  -moz-filter: brightness(0.8) grayscale(1);
  -webkit-filter: brightness(0.8) grayscale(1);
  transition: 0.5s ease-in;
}

/* about section ends */

/* service section starts  */
.service-home {
  padding: 70px 0;
}

.sheading {
  background-color: #c2c0c233;
  padding: 50px 30px;
  border-radius: 20px;
}

.sheading h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: bold;
}

.sheading p {
  border-left: 4px solid #90111c;
  padding-left: 10px;
  margin-top: 20px;
  font-weight: bold;
  margin-bottom: 50px;
}

.sheading img {
  margin-bottom: -200px;
}

.single-service-box {
  padding: 80px 20px 20px;
  border: 1px solid #d2d2d2;
  border-radius: 16px;
  position: relative;
}

.single-service-box .service-icon {
  padding: 10px;
  font-size: 30px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #d2d2d2;
  border-radius: 0px 0px 100px 100px;
  opacity: 1;
  position: absolute;
  top: -1px;
  color: #90111c;
}

.single-service-box h2 {
  font-size: 16px;
  line-height: 30px;
  color: #302f2f;
  font-weight: 600;
}

.single-service-box p {
  margin: 0;
}

.single-service-box .submit-icon i {
  background: #90111c;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 30px;
  color: #fff;
  font-size: 20px;
  transform: rotate(-30deg);
  transition: 0.25s linear;
}

.single-service-box:hover {
  background-color: #90111c;
  border: none;
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  -o-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.single-service-box:hover * {
  color: #fff;
}

.single-service-box:hover .service-icon {
  background-color: #c7888d;
  border: 1px solid #c7888d;
}

.single-service-box:hover .submit-icon i {
  color: #90111c;
  background-color: #fff;
  transform: rotate(0deg);
  transition: 0.25s linear;
}

/* service section ends */

/* why metro section starts */
.why-metro {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.why-metro:before {
  content: "";
  position: absolute;
  height: 300px;
  background-color: #f3e7e8;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  background-position: center top;
  background-size: contain;
  background-repeat: repeat;
}

.wheading {
  position: relative;
  text-align: center;
}

.wheading h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: bold;
  color: #302f2f;
}

.why-metro-single {
  padding: 20px;
  margin-top: 30px;
  min-height: 210px;
  background-color: #fff;
  position: relative;
  border-radius: 18px;
  box-shadow: 10px 30px 80px #00000014;
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  -o-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.why-metro-single:hover {
  transform: translateY(-7.5px);
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  -o-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.why-metro-icon-box {
  display: flex;
  align-items: center;
}

.why-metro-icon-box i {
  background: #c2c0c233;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 10px;
  color: #90111c;
  margin-right: 20px;
  font-size: 20px;
}

.why-metro-icon-box h4 {
  font-size: 16px;
  color: #302f2f;
  font-weight: 600;
  line-height: 30px;
}

/* why metro section ends */

/* cta-home section starts */
.cta-home {
  padding: 70px 0;
}

.cta {
  padding: 50px;
  background-color: #101010;
  border-radius: 0 500px 500px 0;
  height: 350px;
}

.cta h2 {
  font-size: 30px;
  line-height: 30px;
  color: #fff;
  font-weight: bold;
}

.cta p {
  color: #fff;
}

.cta h3 {
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  padding-top: 40px;
}

.cta a {
  font-size: 30px;
  color: #90111c;
  line-height: 35px;
  font-weight: bold;
}

.mt-100 {
  margin-top: -120px;
}

.np {
  position: relative;
}

.np .form-control:focus {
  border: none;
  box-shadow: none;
  outline: none;
  -webkit-box-shadow: none;
}

.ctatxtfld {
  height: 50px;
  line-height: 50px;
  background-color: #1f1e1e;
  border: none;
  padding: 0 20px;
  color: #444344;
  font-size: 14px;
  border-radius: 30px;
}

.btn-sub {
  width: 166px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #90111c;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 30px;
}

.cta-call-now {
  position: relative;
}

.curly-arrow {
  position: absolute;
  top: 0;
  right: 40%;
}

/* cta-home section ends */

/* emergency-assistance section starts */
.emergency-assistance {
  padding-top: 70px;
  padding-bottom: 150px;
}

.emr-ass {
  padding: 70px 0;
}

.emr-ass h2 {
  font-size: 50px;
  line-height: 60px;
  font-weight: bold;
  color: #302f2f;
  padding-bottom: 22px;
}

.emr-ass h3 {
  font-size: 20px;
  line-height: 20px;
  color: #302f2f;
  font-weight: 500;
}

.emr-ass-boxes {
  position: relative;
}

.emr-ass-img {
  position: absolute;
  top: 0;
  right: 0;
}

.emr-ass-box {
  background-color: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 10px 30px 80px #00000014;
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  -o-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.emr-ass-box:hover {
  transform: translateY(-7.5px);
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  -o-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.emr-ass-box i {
  background: #f3e7e8;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50px;
  color: #90111c;
  font-size: 30px;
  margin-bottom: 10px;
}

.emr-ass-box h4 {
  font-size: 18px;
  line-height: 35px;
  color: #302f2f;
  font-weight: 500;
  margin: 0;
}

/* emergency-assistance section ends */

/* footer section section start */
.footer-section {
  padding-top: 70px;
  padding-bottom: 40px;
  background-color: #101010;
}

.footer-form {
  padding: 50px;
  box-shadow: 10px -20px 80px #00000014;
  background-color: #fff;
  border-radius: 30px;
  margin-top: -200px;
}

.footer-form h2 {
  font-size: 40px;
  color: #302f2f;
  line-height: 60px;
  font-weight: bold;
  text-align: center;
}

.f-about {
  padding: 70px 0;
}

.f-about img {
  padding-top: 10px;
}

.f-about p {
  color: #c2c0c2;
}

.f-about hr {
  color: #c2c0c2;
}

.footer-service h2 {
  font-size: 20px;
  color: #90111c;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-service ul {
  list-style: none;
  padding: 0;
}

.footer-service ul li {
  padding-bottom: 2px;
}

.footer-service ul li a {
  color: #c2c0c2;
  font-size: 16px;
  transition: all 0.2s ease-in-out;
}

.footer-service ul li a:hover {
  color: #90111c;
  transition: all 0.2s ease-in-out;
}

.footer-tag h2 {
  font-size: 20px;
  color: #90111c;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-tag ul {
  list-style: none;
  padding: 0;
}

.footer-tag ul li {
  display: inline-block;
  background-color: #171616;
  border: 1px solid #1f1f1f;
  border-radius: 19px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 15px;
  color: #c2c0c2;
  padding: 8px 15px;
  text-transform: capitalize;
}

.footer-tollf {
  padding: 40px;
  background-color: #171616;
  border-radius: 20px;
}

.footer-tollf h2 {
  font-size: 25px;
  line-height: 30px;
  color: #90111c;
  font-weight: 600;
}

.footer-tollf h3 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.footer-cd {
  margin-top: 20px;
}

.footer-cd-box {
  border: 1px solid #1f1f1f;
  padding: 20px;
  width: 100%;
  min-height: 170px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.footer-cd-box i {
  font-size: 40px;
  color: #90111c;
  margin-bottom: 20px;
}

.footer-cd-box p {
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  margin: 0;
}

.footer-cd-box a {
  font-size: 14px;
  line-height: 30px;
  color: #fff;
  transition: all 0.5s ease-in-out;
}

.footer-cd-box a:hover {
  color: #90111c;
  transition: all 0.5s ease-in-out;
}

.footer-bottom {
  padding: 10px 0;
  background-color: #171616;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #c2c0c2;
}

.footer-bottom a {
  color: #90111c;
  font-size: 14px;
}

.footer-bottom a:hover {
  color: #90111c;
}

/* footer section section ends */

/* ================================================================================ */
/* breadcrumbs start */
/* ================================================================================ */
.breadcrumbs {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #90111c;
}

.breadcrumbs h2 {
  font-size: 38px;
  line-height: 57px;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
}

/* ============================ breadcrumbs end============================ */

/* ================================================================================ */
/* about us page */
/* ================================================================================ */
.about-section {
  padding-top: 50px;
  padding-bottom: 200px;
}

.exp-img img {
  border-radius: 30px;
}

.exp-img {
  position: relative;
}

.exp-text {
  width: 270px;
  height: 270px;
  background-color: #90111c;
  border-radius: 50%;
  position: absolute;
  top: 50px;
  left: 70px;
}

.exp-img h3 {
  font-size: 50px;
  color: #fff;
}

.about-section h2 {
  font-size: 40px;
  line-height: 46px;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-section .px-10 {
  padding-left: 100px;
  padding-right: 100px;
}

/* ================================================================================ */
/* contact us page */
/* ================================================================================ */
.contact-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.contact-section-form {
  padding: 50px;
  box-shadow: 10px -20px 80px #00000014;
  background-color: #fff;
  border-radius: 30px;
}

.contact-page-contact-details {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #101010;
}

.padding-for-contact-page {
  padding-top: 50px;
  padding-bottom: 350px;
}

.footer-map iframe {
  box-shadow: 10px -20px 80px #00000014;
  background-color: #fff;
  border-radius: 30px;
  margin-top: -350px;
}

/* =================================================================================== */
/* gallery */
/* =================================================================================== */
.gallery-area {
  padding-top: 70px;
  padding-bottom: 200px;
}

.single-gallery {
  position: relative;
  margin-bottom: 30px;
}

.single-gallery:hover img {
  -webkit-filter: brightness(0.5);
  filter: brightness(0.5);
}

/* =================================================================================== */
/* Services */
/* =================================================================================== */
.main-service {
  padding-top: 60px;
  padding-bottom: 50px;
  background-repeat: no-repeat;
  background-size: cover;
}

.main-service img {
  width: 350px;
  float: left;
  margin-right: 15px;
  border-radius: 10px;
}

.main-service h1 {
  padding-bottom: 10px;
  font-size: 38px;
  line-height: 57px;
  font-weight: bold;
  color: #90111c;
}

.main-service p {
  color: #302f2f;
  text-align: justify;
}

/* .features-list {
  padding: 50px 0;
}

.features-list h4 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.797);
}

.features-list ul li {
  margin: 0px 40px 17px 0px;
  display: flex;
  align-items: center;
  color: #fff;
}

.features-list ul li i {
  font-size: 20px;
  margin-right: 10px;
  color: #90111c;
}

.features-list ul li span {
  color: rgba(0, 0, 0, 0.797);
  font-size: 22px;
  font-weight: 400;
} */
.features-list {
  padding: 30px 0;
}

.features-list h4 {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: bold;
  margin-left: 5px;

  color: #90111c;
}
.features-list ul {
  margin: 0;
  padding: 0;
}
.features-list ul li {
  margin: 5px;
  color: #fff;
  padding: 5px 10px;
  display: inline-block;
  background-color: #90111c;
  border-radius: 5px;
  text-transform: capitalize;
}

.booking-form-service {
  margin: 50px 0 50px 0;
}

.iconbox-service {
  display: flex;
  align-items: center;
  padding: 10px 10px;
  border: 1px solid #90111c;
  background-color: #fff;
  position: relative;
  border-radius: 18px;
  box-shadow: 10px 30px 80px #00000014;
  -webkit-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  -o-transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
  transition: 1.2s cubic-bezier(0.17, 0.85, 0.438, 0.99);
}

.iconbox-service img {
  background: #f3e7e8;
  height: 50px;
  padding: 5px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 30px;
  color: #90111c;
  margin-right: 10px;
  font-size: 25px;
  box-shadow: 0px 10px 20px #90111c33;
}

.iconbox-service h4 {
  font-size: 16px;
  color: #302f2f;
  font-weight: 600;
  line-height: 30px;
  margin: 0;
}

.bfservice {
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #90111c;
}

.bfservice h3 {
  font-size: 22px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #90111c;
  text-align: center;
}

/* ================================================================================= */
/* Responsive Starts */
/* ================================================================================= */

/* home page */

@media (max-width: 575.98px) {
}

@media (max-width: 767.98px) {
  /* Menu bar */
  .navbar-nav {
    margin-top: 20px;
    padding: 0 20px;
  }

  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }

  .navbar .dropdown ul a {
    font-size: 11px;
  }

  .menu-book-now-button {
    width: 100%;
    margin: 0;
  }

  /* banner */
  .banner {
    padding-bottom: 10px;
  }

  .banner h1 {
    font-size: 30px;
    line-height: 35px;
  }

  .banner h1 span {
    font-size: 40px;
    line-height: 50px;
  }

  .banner-cta ul li {
    list-style: none;
    display: block;
    margin-bottom: 25px;
  }

  .cta {
    padding: 30px;
  }

  .cta h2 {
    font-size: 23px;
  }

  .cta p {
    font-size: 15px;
    line-height: 20px;
  }

  .cta h3 {
    padding-top: 35px;
  }

  .btn-sub {
    width: 100px;
  }

  .curly-arrow {
    position: absolute;
    top: 0;
    right: 0;
  }

  .bfservice {
    margin-bottom: 20px;
  }

  .main-service {
    padding-top: 10px !important;
  }

  .main-service h1 {
    line-height: 45px;
  }

  .main-service img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
  }
}

@media (max-width: 991.98px) {
  .background-shape {
    display: none;
  }

  .about-text {
    padding: 0;
  }

  .about-text h1 {
    font-size: 30px;
    line-height: 40px;
  }

  .about-text h2 {
    font-size: 25px;
    line-height: 30px;
  }

  .sheading {
    margin-bottom: 200px;
  }

  .wheading h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .emr-ass h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .emr-ass-img {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .banner h1 {
    font-size: 30px;
    line-height: 35px;
  }

  .banner h1 span {
    font-size: 40px;
    line-height: 50px;
  }

  .banner-cta a {
    padding: 10px 10px;
    font-size: 20px;
    line-height: 40px;
  }

  .banner-cta i {
    background: #90111c;
    height: 45px;
    width: 45px;
    line-height: 45px;
    font-size: 20px;
  }

  .wheading h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .emr-ass h2 {
    font-size: 30px;
    line-height: 35px;
  }

  .emr-ass-img {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .curly-arrow {
    position: absolute;
    top: 0;
    right: 0;
  }

  .mt-100 {
    margin-top: -40px;
  }
}

/* ================================================================ */
/* modal css */
/* ================================================================ */
.modal .modal-content {
  background-color: transparent;
}

.modal .modal-content .modal-body {
  border-radius: 0px;
  border-top: 5px solid #90111c;
  overflow: hidden;
  background-color: #efefef;
  padding-left: 0px;
  padding-right: 0px;
  -webkit-box-shadow: 0 10px 50px -10px rgba(0, 0, 0, 0.9);
  box-shadow: 0 10px 50px -10px rgba(0, 0, 0, 0.9);
}

.modal .modal-content .modal-body h2 {
  font-size: 18px;
}

.modal .modal-content .modal-body p {
  color: #777;
  font-size: 14px;
  line-height: 16px;
}

.modal .modal-content .modal-body h3 {
  color: #000;
  font-size: 22px;
}

.modal .modal-content .modal-body .close-btn {
  color: #000;
}

.textfield {
  height: 50px;
  width: 100%;
  /* border: 1px solid #e1e1e1; */
  font-size: 14px;
  color: #b7b7b7;
  padding-left: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: transparent;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  border: none;
}

.textfield:active,
.textfield:focus,
.textfield:hover {
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
}

.modalbtn {
  padding: 10px 20px;
  color: #fff;
  border-radius: 28px;

  background-color: #90111c;
}

.modalbtn:hover {
  background-color: #fff;
  border: 1px solid #90111c;
  color: #90111c;
}

.modalbtn:active,
.modalbtn:focus {
  outline: none;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.custom-note {
  color: #999;
}

.custom-note a {
  color: #555;
  font-weight: 700 !important;
}

/* -----------------------
    36. Error Page CSS
--------------------------*/
.page-error {
  background: url(../images/banner.jpg);
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.page-error .error-not-found {
  position: relative;
  background: #cfd0ef;
  width: 650px;
  padding: 50px;
  height: 650px;
  border-radius: 50%;
  margin: 0 auto;
  text-align: center;
}

.page-error .error-not-found .error-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-error .error-not-found .title {
  font-size: 35px;
  line-height: 52px;
  font-weight: 700;
  color: #101010;
  margin-bottom: 30px;
}

.page-error .error-not-found .title span {
  font-size: 251px;
  line-height: 171px;
  font-weight: 700;
  color: #101010;
  display: block;
  padding-bottom: 70px;
}

@media only screen and (max-width: 767px) {
  .page-error .error-not-found {
    width: 450px;
    height: 450px;
  }

  .page-error .error-not-found .title {
    font-size: 30px;
    line-height: 50px;
  }

  .page-error .error-not-found .title span {
    font-size: 175px;
    line-height: 150px;
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 480px) {
  .page-error .error-not-found {
    width: 325px;
    height: 325px;
    padding: 30px;
  }

  .page-error .error-not-found .title {
    font-size: 20px;
    line-height: 30px;
  }

  .page-error .error-not-found .title span {
    font-size: 120px;
    line-height: 100px;
    padding-bottom: 20px;
  }

  .page-error .error-not-found .readon.learn-more {
    padding: 10px 25px;
  }
}

/* ***************************************
      call & whatsapp ------ Mobile
******************************************/
#mobile-call-buttons {
  background: #156afd;
  bottom: 0;
  height: 50px;
  left: 0;
  position: fixed;
  display: none;
  right: 0;
  z-index: 100;
}

#mobile-call-buttons ul {
  padding: 0px;
}

#mobile-call-buttons ul li {
  border-bottom: 1px solid #fff;
  background: #90111c;
  position: relative;
  width: 50%;
  list-style: none;
  float: left;
  line-height: 50px;
  text-align: center;
}

#mobile-call-buttons ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}


#mobile-call-buttons ul li a i {
  animation: pulsate 0.5s ease-out;
  animation-iteration-count: infinite;
  -webkit-animation: pulsate 0.5s ease-out;
  -webkit-animation-iteration-count: infinite;
}

@media (max-width: 575px) {
  #mobile-call-buttons {
    display: block;
  }
  .footer-bottom {
    margin-bottom: 45px;
}
}
