body {
            margin: 0;
            padding: 0;
            background-color: #EA474B;
        }

        .hamburger {
            position: absolute;
            right: 2vw;
            top: 0;
            width: 10vw;
            height: 5vh;
            float: right;
            margin: 3vh 10vw;
            cursor: pointer;
            background: url('../hamburger-menu-icon.svg') no-repeat;

        }

        .overlay {
            position: fixed;
            width: 100%;
            height: 100%;
            background-color: rgb(0,0,0,0.5);
            z-index: 5;
            opacity: 0;
            display: none;
            cursor: pointer;
        }

        .mobile-nav {
            position: fixed;
            left: -20em;
            opacity: 0;
            z-index: 10;
        }

            .mobile-nav .logo {
                width: 40vw;
                margin: 0 0 3vh 0 !important;
                padding: 0;
            }

            .mobile-nav ul {
                background-color: #EA474B;
                list-style-type: none;
                margin: 0;
                padding: 6vh 10vw;
            }

                .mobile-nav ul li:not(:last-child) {
                    margin: 0 0 3vh 0;
                    padding: 0;
                }

                .mobile-nav ul li a {
                    text-decoration: none;
                    color: white;
                    font-family: 'Montserrat', sans-serif;
                    font-weight: 500;
                    font-size: 6vw;
                    text-transform: uppercase;
                    margin: 0;
                    padding: 0;
                }

        #mobile-active {
            box-shadow: 0px 2px 0px 0px white;
        }


        @media only screen and (max-width: 990px) {
          .desktopNav {
            display: none;
          }
        }

        /* Extra small devices (phones, 600px and down) */
        @media only screen and (max-width: 600px) {
          .desktopNav {
            display: none;
          }

          .nav-container {
            height: 9vh;
          }

          .navLogo {
            display: none;
          }

            .hamburger {
                display: block;
            }

            .mobile-nav {
                display: block;
            }
        }

        /* Small devices (portrait tablets and large phones, 600px and up) */
        @media only screen and (min-width: 600px) {

            .mobile-nav .logo {
                width: 30vw;
            }

            .hamburger {
                display: block;
                width: 5vw;
            }

            .mobile-nav {
                display: block;
            }

                .mobile-nav ul li a {
                    font-size: 4vw;
                }
        }

        /* Medium devices (landscape tablets, 768px and up) */
        @media only screen and (min-width: 768px) {

            .mobile-nav .logo {
                width: 20vw;
            }

            .hamburger {
                display: block;
                width: 5vw;
            }

            .mobile-nav {
                display: block;
            }

                .mobile-nav ul li a {
                    font-size: 3vw;
                }
        }

        /* Large devices (laptops/desktops, 992px and up) */
        @media only screen and (min-width: 992px) {

            .hamburger {
                display: none;
            }

            .mobile-nav {
                display: none;
            }
        }
















html {
  overflow-x: hidden;
}

body {
  width: 100vw;
  padding: 0;
  margin: 0;
  background-color: #fff;
  font-family: 'Noto Sans', sans-serif;
}

 h2 {
  color: #B71041;
  font-family: 'basic_sans_sfbold';
  font-weight: 400;
  font-size: 2em;
}

h3 {
  font-family: 'Noto Sans', sans-serif;
  font-weight: 600;
  font-size: 1.2em;
  color: #242424;
}

p {
  color: #242424;
}

hr {
  width: 5em;
  height: 0.2em;
  background: black;
  border: none;
  opacity: 0.2;
}

a {
  outline: none;
}

button {
  outline: none;
}

strong::-moz-selection { background: #B71041; color: white; }
strong::selection { background: #B71041; color: white; }

p::-moz-selection { background: #B71041; color: white; }
p::selection { background: #B71041; color: white; }

h1::-moz-selection { background: #B71041; color: white; }
h1::selection { background: #B71041; color: white; }

h2::-moz-selection { background: #B71041; color: white; }
h2::selection { background: #B71041; color: white; }

h3::-moz-selection { background: #B71041; color: white; }
h3::selection { background: #B71041; color: white; }

.splash2::-moz-selection { background: #B71041; color: white; }
.splash2::selection { background: #B71041; color: white; }

img::-moz-selection { background: #B71041; }
img::selection { background: #B71041; }

a::-moz-selection { background: white; color: #B71041; }
a::selection { background: white; color: #B71041; }

span::-moz-selection { background: #B71041; color: white; }
span::selection { background: #B71041; color: white; }

@font-face {
    font-family: 'basic_sans_sfregular';
    src: url('../fonts/basicsanssf-webfont.woff2') format('woff2'),
         url('../fonts/basicsanssf-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'basic_sans_sfbold';
    src: url('../fonts/basicsanssfbold-webfont.woff2') format('woff2'),
         url('../fonts/basicsanssfbold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'basic_sans_sfitalic';
    src: url('../fonts/basicsanssfitalic-webfont.woff2') format('woff2'),
         url('../fonts/basicsanssfitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

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

/** NAVIGATION**/

.nav-container {
  background-color: #B71041;
  width: 100vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.nav-container img {
  width: 15em;
  margin: 0.5em 0;
}

.desktopNav {
  height: 3em;
  margin: 0.8em -5em 0 0;
}

.desktopNav a {
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  text-decoration: none;
  float: right;
  padding: 1em 2em 1em 0;
  font-weight: 600;
  font-size: 1em;
  color: white;
  transition: 0.35s ease;
}

.desktopNav-container:hover > *{
  opacity: 0.6;
}

.desktopNav-container:hover > *:hover{
  opacity: 1;
}

.desktopNav a:hover > *{

}
/**NAvigation ENDS**/




/* Full Width Slideshow */

.header-content {
  height: 100%;
  width: 100%;
}

.header-content .header {
  margin-top: 10.5em;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.header-content .header h1 {
  text-transform: uppercase;
  color: white;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
  font-family: Montserrat, sans-serif;
  font-size: 4em;
  text-align: center;
}

.header-content .header-button {
  margin-top: 19em;
  width: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.header-content .header-button button {
  border: none;
  padding: 1em 2em 1em 2em;
  background-color: #B71041;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1em;
  cursor: pointer;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
  -webkit-transition:background-color 0.35s, color 0.35s;
  -moz-transition:background-color 0.35s, color 0.35s;
  -o-transition:background-color 0.35s, color 0.35s;
  transition:background-color 0.35s, color 0.35s;
}

.header-content .header-button button:hover {
  background-color: white;
  color: #B71041;
}

/*jssor slider loading skin spin css*/
.jssorl-009-spin img {
    animation-name: jssorl-009-spin;
    animation-duration: 1.6s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes jssorl-009-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/*jssor slider bullet skin 032 css*/
.jssorb032 {position:absolute;}
.jssorb032 .i {position:absolute;cursor:pointer;}
.jssorb032 .i .b {fill:black;fill-opacity:0.7;}
.jssorb032 .i:hover .b {fill:black;fill-opacity:.6;stroke:#fff;stroke-opacity:.35;}
.jssorb032 .iav .b {fill:black;fill-opacity:1;}
.jssorb032 .i.idn {opacity:.3;}

/*jssor slider arrow skin 051 css*/
.jssora051 {display:block;position:absolute;cursor:pointer;}
.jssora051 .a {fill:none;stroke:#fff;stroke-width:360;stroke-miterlimit:10;}
.jssora051:hover {opacity:.8;}
.jssora051.jssora051dn {opacity:.5;}
.jssora051.jssora051ds {opacity:.3;pointer-events:none;}

/* Slidshow Ends */

/* Index */
.indexContainer {
  width: 70%;
  margin: auto;
  padding-bottom: 5%;
  overflow: auto;
}

@media only screen and (max-width: 600px) {
  .indexContainer {
    width: 90%;
  }
}

.indexCollum1 {
  float: left;
  width: 55%;
  padding-top: 3%;
  padding-right: 5%;
}

.indexCollum2 {
  float: right;
  width: 30%;
  margin-top: 3%;
  padding: 1% 3% 1% 3%;
  border: 1px solid #B71041;
}

.indexCollum2 button {
  margin-top: 0.7em;
  border: none;
  font-size: 1.2em;
  padding: 1em 4em 1em 4em;
  background-color: #B71041;
  color: white;
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-stretch: extra-condensed;
  cursor: pointer;
  -webkit-transition:background-color 0.35s, color 0.35s;
  -moz-transition:background-color 0.35s, color 0.35s;
  -o-transition:background-color 0.35s, color 0.35s;
  transition:background-color 0.35s, color 0.35s;
}

.indexCollum2 button:hover {
  background-color: white;
  color: #B71041;
}

.splash1 {
  width: 100%;
  margin: 1.2em 0 -1em 0;
  overflow: auto;
}

.splash2 {
  color: #B71041;
  margin-left: 15%;
}

.indexHeader {
  width: 100%;
  border-radius: 0.5em;
}

.callToAction {
  text-decoration: none;
  color: white;
  font-family: 'Lobster', cursive;
  position: absolute;
  font-size: 6em;
  z-index: 10;
  margin-left: 15%;
  margin-top: 2%;
  cursor: pointer;
}

/* Mobile Optimization */
@media screen and (max-width: 600px) {
  .indexContainer {
    width: 95%;
    overflow: hidden;
  }

  .splash2 {
    font-size: 2em;
    margin-left: 5%;
  }

  .splash1 {
    margin-bottom: 6%;
  }

  .indexCollum1 {
    width: 100%;
    float: none;
  }

  .indexCollum2 {
    width: 100%;
    float: none;
    margin-bottom: 10%;
    border: none;
  }

  .callToAction {
    font-size: 2em;
  }
}

/* Tablet Optimization */
@media screen and (max-width: 1024px) {
  .indexContainer {
    width: 90%;
  }

  .splash2 {
    font-size: 2em;
    margin-left: 5%;
  }

  .splash1 {
    margin-bottom: 6%;
  }

  .indexCollum1 {
    width: 100%;
    float: none;
  }

  .indexCollum2 {
    width: 100%;
    float: none;
    margin-bottom: 10%;
    border: none;
  }
}

/* Index ENDS */



/* Col 2 */
.quote-of-the-day {
  font-size: 1em;
}



/* About Page Starts */
.aboutBanner {
  padding-top: 6%;
  padding-bottom: 6%;
  width: 100%;
  background-image: url("../media/banner.jpg");
  background-size: cover;
}

.cbr {
  line-height: 0.2em;
}

.mosImg {
  width: 90%;
  border-radius: 0.5em 0.5em 0.5em 0.5em;
  margin: auto;
  margin-bottom: 5%;
  transition: 0.35s ease;
}

.mosImg:hover {
  opacity: 0.5;
  cursor: pointer;
}

.mosCol1 {
  width: 33%;
  float: left;
  padding-top: 2%;
}

.mosCol2 {
  width: 33%;
  padding-top: 2%;
  float: left;
}

.mosCol3 {
  width: 33%;
  float: left;
  padding-top: 2%;
  margin-bottom: 2em;
}

/* About Page ENDS */




/* Menu Page Starts */
.menuContainer {
  width: 70%;
  margin: auto;
  padding-top: 4em;
  padding-bottom: 5%;
}

.col1 {
  float: left;
  width: 33%;
  margin-right: 0.5%;
}

.col2 {
  float: left;
  width: 33%;
}

.col3 {
  float: right;
  width: 33%;
}

.menuItem {
  width: 90%;
  height: auto;
  margin: auto;
  padding-bottom: 0.5%;
  margin-bottom: 10%;

  -webkit-box-shadow: 10px 10px 23px -5px rgba(0,0,0,0.25);
  -moz-box-shadow: 10px 10px 23px -5px rgba(0,0,0,0.25);
  box-shadow: 10px 10px 23px -5px rgba(0,0,0,0.25);

  -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
        animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.menuImg {
  width: 100%;
}

.menuText {
  width: 80%;
  margin-left: 5%;
}

.menuButton {
  margin: auto;
  text-decoration: none;
  font-size: 1.4em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
}

.menuButtonD {
  text-align: center;
  margin: auto;
  margin-bottom: 4em;
}

#menuactive .menuButton {
  padding: 0.6em 3em 0.6em 3em;
  background-color: #B71041;
  color: white;
  transition: 0.25s ease;
}

#menuactive .menuButton:hover {
  background-color: white;
  color: #B71041;
  outline: 1px solid #B71041;
}

.menuButtonD a {
  padding: 0.6em 3em 0.6em 3em;
  background-color: white;
  outline: 1px solid #B71041;
  color: #B71041;
  transition: 0.25s ease;
}

.menuButtonD a:hover {
  background-color: #B71041;
  outline: none;
  color: white;
}

.mobileMenuNav {
  display: none;
}
/* Mobile Optimization */
@media screen and (max-width: 600px) {
  .menuContainer {
    width: 90%;
  }

  .col1 {
    width: 100%;
    float: none;
  }

  .col2 {
    width: 100%;
    float: none;
  }

  .col3 {
    width: 100%;
    float: none;
  }

  .mobileMenuNav {
    display: inherit;
  }

  .desktop {
    display: none;
  }

  .mobile {
    width: 90%;
  }
}

/* Tablet Optimization */
@media screen and (max-width: 1024px) {
  .menuContainer {
    width: 90%;
  }

  .col1 {
    width: 100%;
    float: none;
  }

  .col2 {
    width: 100%;
    float: none;
  }

  .col3 {
    width: 100%;
    float: none;
  }

  .mobileMenuNav {
    display: inherit;
  }

  .desktop {
    display: none;
  }

  .mobile {
    width: 90%;
  }

  .menuButton {
    font-size: 1.5em;
    display: block;
    margin:
  }

  .menuButtonD {
    margin-bottom: 5%;
  }
}

/* Contact */
.contactContainer {
  width: 70%;
  margin: auto;
  text-align: center;
  padding-bottom: 8%;
}

input[type=text] {
  width: 60%;
  padding: 1%;
  font-size: 1.5em;
  box-sizing: border-box;
  outline: none;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
  margin-bottom: 3%;
  border-radius: 10em 10em 10em 10em;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

input[type=text]:focus {
  width: 70%;
}

input[type=button], input[type=submit], input[type=reset] {
  border: none;
  padding: 1em 2em 1em 2em;
  background-color: #B71041;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 1.4em;
  cursor: pointer;
  -webkit-transition:background-color 0.35s, color 0.35s;
  -moz-transition:background-color 0.35s, color 0.35s;
  -o-transition:background-color 0.35s, color 0.35s;
  transition:background-color 0.35s, color 0.35s;
}

input[type=submit]:hover {
  background-color: white;
  color: #B71041;
}

textarea {
  margin-bottom: 5vh;
  padding-top: 1%;
  border-radius: 1em 1em 1em 1em;
  font-size: 1.6em;
  box-sizing: border-box;
  outline: none;
  border: none;
  width: 60%;
  font-family: 'Montserrat', sans-serif;
  -webkit-transition: width 0.4s ease-in-out;
  transition: width 0.4s ease-in-out;
}

textarea:focus {
  width: 70%;
}

/* Mobile Optimization */
@media screen and (max-width: 600px) {
  .contactContainer {
    width: 90%;
  }

  input[type=text] {
    width: 90%;
    padding: 16px 32px;
  }

  input[type=text]:focus {
    width: 100%;
  }

  textarea {
    width: 90%;
    height: 20%;
    font-family: 'Noto Sans', sans-serif;
  }
}

/* Tablet Optimization */
@media screen and (max-width: 1024px) {
  .contactContainer {
    width: 90%;
  }

  input[type=text] {
    width: 90%;
    padding: 16px 32px;
  }

  input[type=text]:focus {
    width: 100%;
  }

  textarea {
    width: 90%;
    height: 20%;
    font-family: 'Noto Sans', sans-serif;
  }
}



/* Footer */
.footer {
  width: 100%;
  padding-top: 2%;
  background-color: #B71041;
  overflow: auto;
}

.footerText {
  text-align: center;
}

.footerNav {
  width: 16em;
  text-align: center;
}

.footerNav a {
  display: inline-block;
  padding-right: 1em;
  transition: 0.35s ease;
}

.navFooter {
  text-decoration: none;
  color: white;
  font-size: 1em;
}

.footerNav:hover > *{
  opacity: 0.6;
}

.footerNav:hover > *:hover{
  opacity: 1;
}

 .navFooter a:hover > *{

}

footer {
  background-color: #B71041;
  margin: 0;
  display: block;
  padding: 1em 0 1em 0;
}

footer a, footer p {
  display: inline-block;
}

/* Mobile Optimization */
@media screen and (max-width: 600px) {
  .footerText {
    width: 100%;
	
  }
  .footerNav {
	width: 100%;
  }
}

/*Footer ENDS*/

@keyframes icon {
  0% {color:#d3d3d3;}
  100% {color:white;}
}
@keyframes icon_after {
  0% {color:white;}
  100% {color:#d3d3d3;}
}


/* Animations */
@-webkit-keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
            transform: rotateX(80deg);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes flip-in-hor-bottom {
  0% {
    -webkit-transform: rotateX(80deg);
            transform: rotateX(80deg);
    opacity: 0.2;
  }
  100% {
    -webkit-transform: rotateX(0);
            transform: rotateX(0);
    opacity: 1;
  }
}

@keyframes flip-in-hor-botom-exit {
  0% {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(80deg);
            transform: rotateX(80deg);
  }
}


/* Entrance Effect For menu Items */
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
