.nav_menu{
  transition: 0.6s;
  padding-top: 15px;
  padding-bottom: 15px;
}

.logo_wrap .logo{
  max-width: 220px;
  transition: 0.6s;
  display: inline-block;
}
.logo_wrap_2 .logo{
  max-width: 150px;
  transition: 0.6s;
  display: inline-block;
}
.logo_wrap .logo img,
.logo_wrap_2 .logo img{
  width: 100%;
}


/*******************Mavigation Css****************/

::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #ffe7e8;
}
::-webkit-scrollbar-thumb {
  background: #cd151d;
}
::-webkit-scrollbar-thumb:hover {
  background: #5b0307;
}

.header-wrapper{
  z-index: 100;
  position: relative;
}
.home-page .header-wrapper {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  /* background: #e7e8e9; */
}
.fixHeader.home-page .header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff94;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
  backdrop-filter: blur(10px);
}
.fixHeader .logo_wrap .logo{
  max-width: 120px;
}
.fixHeader .logo_wrap_2 .logo{
  max-width: 80px;
}
.fixHeader .nav_menu{
  padding-top: 5px;
  padding-bottom: 5px;
}


#menu {
  height: 100%;
  position: fixed;
  background-color: #e21a2d;
  width: 600px;
  transition: 1000ms all cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(-100%);
  left: 70px;
  z-index: 150;
  top: 0;
}
/* .fixHeader #menu{
  top: 80px;
} */

#menu.expanded {
  transform: translateX(0%);
  left: 0px;
}

.menu-inner {
  width: 100%;
  height: 100%;
  padding-top: 130px;
  padding-left: 40px;
  position: relative;
  padding-right: 70px;
}

.menu-inner ul{
  overflow-y: scroll;
  height: 600px;
  padding-right: 30px;
}

.menu-inner ul::-webkit-scrollbar {
  width: 4px;
}

/* Track */
.menu-inner ul::-webkit-scrollbar-track {
  background: #f1f1f1; 
}

/* Handle */
.menu-inner ul::-webkit-scrollbar-thumb {
  background: #610b5e; 
}

/* Handle on hover */
.menu-inner ul::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

.menu-inner ul li{
  list-style-type: none !important;
  padding-bottom: 16px;
  border-bottom: 1px solid #fff;
}

.menu-inner ul li a{
  color: #fff;
  font-size: 17px;
  font-weight: 600;
}

#blob {
  top: 0;
  z-index: 2;
  left: -110px;
  transform: translateX(100%);
  height: 100vh;
  position: fixed;
  /* position: absolute; */
  /*background-color: #e21a2d;*/
}

#blob-path {
  height: 100%;
  fill:  #e21a2d;
}

.hamburger {
  right: 20px;
  width: 36px;
  z-index: 20;
  margin-top: -80px;
  top: 55% !important;
  position: absolute !important;
  transform: translateY(-50%) !important;
}

.hamburger span{
  display: block;
  color: #fff;
  /* padding-top: 20px; */
  position: relative;
  top: 28px;
  font-size: 14px;
}

.hamburger .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
}

.hamburger .line:nth-child(2) {
  top: 49%;
/*margin-top: -2px;*/
}

.hamburger .line:nth-child(3) {
  bottom: 0;
  top: 20px;
}

.homeScroll {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}



.fullscreen-container{
  overflow:hidden;
  width:100%;
  height:100%;
}
#all-pages{
  position:relative;
  top:0;
  transition:all 800ms ease;
  /* height set by js */
}
.page{
  height:100%;
  width:100%;
}
.text-container{
  font-family: sans-serif, helvetica, arial;
  color:white;
  text-align:center;
  position:relative;
  top:50%;
  margin:0 40px;
  opacity:0;
  visibility:visible;
  transform:translateY(-50%);
  transition:all 3s ease;
}
.text-container.in-sight{
  opacity:1;
  visibility:visible;
}
.text-container h2{
  font-size:6vh;
  text-transform:uppercase;
}
.text-container p{
  font-size:2vh;
  padding:1em 0;
}
.nav-dot-container{
  position:fixed;
  top:50%;
  right:20px;
  transform:translateY(-50%);
  display: none;
}
.nav-dot{
  width:20px;
  height:30px;
  padding:20px 0px;
  margin:auto;
}
.nav-dot span{
  display:block;
  width:10px;
  height:10px;
  border-radius:50%;
  background:white;
  transition:all 200ms ease;
  margin: auto;
}
.nav-dot span:hover{
  width:12px;
  height:12px;
}
.nav-dot.dot-active span{
  width:15px;
  height:15px;
}



.breadcrumbSec{
  padding: 10px 0;
  background-color: #ffdde0;
}
.container-max-fluid{
  margin: auto;
  max-width: 90%;
  text-align: center;
}
.breadcrumbSec a:not(:last-child){
  margin-right: 30px;
  position: relative;
}
.breadcrumbSec a:not(:last-child):after{
  top: 10px;
  right: 0px;
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
}



/* mobile navbar */

.mobMenuSec {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #e21a2d;
  z-index: 99;
  height: 50px;
  box-shadow: 0px 10px 20px -10px rgba(0, 0, 0, 0.3);
  display: none;
}

.mobMenuSecInn {
  /* padding: 15px; */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  width: 100px;
  height: 85px;
  top: -30px;
  background-color: #e21a2d;
  left: 50%;
  transform: translateX(-50%);
}

.mobMenuSecInn::before {
  position: absolute;
  content: " ";
  width: 30px;
  height: 30px;
  border-bottom: 15px solid #e21a2d;
  top: 15px;
  border-bottom-right-radius: 100%;
  left: -15px;
}

.mobMenuSecInn::after {
  position: absolute;
  content: " ";
  width: 30px;
  height: 30px;
  border-bottom: 15px solid #e21a2d;
  top: 15px;
  border-bottom-left-radius: 100%;
  right: -15px;
}

.menuIcon {
  display: none;
}

.mobMenuLink{
  color: #fff;
}

.mobMenuLink:hover {
  color: #fff !important;
}

.mobMenuLink span {
  transition: all 0.5s;
}

.mobMenuLink span:hover{
  color: #fff !important;
}

.mobMenuLink.open::after {
  content: "\f00d";
  font-family: fontawesome;
  position: absolute;
  font-size: 30px;
  color: #fff;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.5s;
}

.mobMenuLink.open span {
  visibility: hidden;
  opacity: 0;
}

/* footer-nisha */

.footerLogo {
    width: 296px;
    height:auto;
}
.footerLogo a img {
    width: 100%;
    height: 100%;
}

.ft-back {
    padding: 115px 0 168px;
}

.col_CC2027 {
    color: #CC2027;
}
.ft-bg-lft {
    width: 540px;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.ft-bg-rgt {
    width: 350px;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.ft-bg-lft img, .ft-bg-rgt img{
  width: 100%;
}
.footImg{
  display: none;
}
.footVdo{
  width: 100%;
}
.footLink{
    width: calc(100% - 30px);
    padding-right: 20px;
}
.dw_ln .ftdwIcon {
   padding-left: 15px;
}
.dw_ln .ftdwIcon svg{
    width: 30px;
}



/* footer-nisha */

.footerLogo {
  width: 296px;
  height:auto;
}
.footerLogo a img {
  width: 100%;
  height: 100%;
}

.ft-back {
  padding: 115px 0 168px;
}

.col_CC2027 {
  color: #CC2027;
}
.ft-bg-lft {
  bottom: 0;
  left: 0;
  z-index: -1;
}
.ft-bg-rgt {
  bottom: 0;
  right: 0;
  z-index: -1;
}
.footLink{
  width: calc(100% - 30px);
  padding-right: 20px;
}
.dw_ln .ftdwIcon {
 padding-left: 15px;
}
.dw_ln .ftdwIcon svg{
  width: 30px;
}