@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=DM+Sans:wght@500;700&display=swap");


/* font */
@import url("https://fonts.googleapis.com/css2?family=Lobster&family=Montserrat&family=Nunito&family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Piedra&display=swap");

:root {
  --primary: #be6361;
  --secondary: #fff2dd; 
/* --primary: #2874A6 ;
  --secondary: #2874A6; */
  --third: #333333;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
}

/* navigation bar style :start */

nav {
   background-color: #FF8482;
 /* background-color: #2874A6;*/
  position: fixed;
  z-index: 9999;
  width: 100%;
}

.nav-wrapper {
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: right;
  width: 85vw;
  margin: auto;
}

.logo img {
  width: 200px;
  height: 50px;
  object-fit: cover;
  border-radius: 35px 0px;
  cursor: pointer;
}

.nav-links-wrapper {
  display: flex;
  justify-content: space-evenly;
  align-items: right;
  /*height: 52px; */
  height: 40px;
  width: 40vw;
  background: linear-gradient(89.97deg, #fdc068 1.14%, #fff2dd 98.23%); 
/* background: linear-gradient(89.97deg, #AED6F1 1.14%, #fff2dd 98.23%); */
  border-radius: 0px 55px;
}

.nav-links {
  width: 70%;
  /*font-family: DM Sans; */
   font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  letter-spacing: 0px;
  text-align: right;
  color: #333333;  /* font color in menue bar */
}

.nav-links ul {
  display: flex;
  justify-content: space-evenly;
  align-items: right;
  list-style: none;
  transition: all 0.5s ease-in-out;
}

.nav-links li {
  transition: all 0.5s ease-in-out;
}

.nav-links ul li:hover {
  cursor: pointer;
}

.nav-links span {
  transform: rotate(90deg);
  display: inline-block;
}

.nav-links ul li {
  display: inline-block;
}

.nav-links ul li::after {
  content: "";
  width: 0px;
  height: 3px;
  display: block;
  background: #C6B6A7;  /* Change color under text in menu bar */
/*  background: #5DADE2; */
  transition: 300ms;
}

.nav-links ul li:hover::after {
  width: 100%;
}

.nav-link {
  border: 2px solid var(--third);
/*  padding: 8px; */
  padding: 12px;
  border-radius: 16px 0px;
}
.nav-cta {
  width: 70px;
 /* height: 35px; */
  height: 40px; 
  text-align: center;
  border: 1px solid black;
  background-color: #ff8482;
  font-size:12px;
/* background-color: #5DADE2; */  /* Book free demo background color*/ 
 /* border-radius: 0px 20px;*/
  border-radius: 14px 0px;
  cursor: pointer;
  padding-top: 3px;
}

.nav-cta h3 {
 /* font-family: "DM Sans", sans-serif;*/
   font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size:12px;
  color: white;  /* font color of Book Free Demo color*/
  margin-top: 1px;
  cursor: pointer;
}

.burger-menu {
  display: none;
}

.drop {
  cursor: pointer;
}

.temp {
  height: 5vh;
  width: 7vw;
  position: absolute;
}

.drop-down {
  position: absolute;
  top: 5vh;
  flex-direction: column;
  display: none;
  justify-content: space-evenly;
  background: var(--secondary);
  border-radius: 10px;
  /* min-height: 10vh; */ /* increase space between cousesin drop down menu-courses list */ 
  min-height: 20vh;
  min-width: 100px;
  padding-left: 10px;
  padding-right: 10px;
  /* border-radius: 6px; */
  border: 2px solid #131313;
  transition: all 0.2s ease-in-out;
}

.drop-down a {
  color: #333333;  /* color font in courses*/ 
/*  color: white; */
/*  font-family: "DM Sans", sans-serif; */
 font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-top: 5px;
  text-align: left;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.drop-down a:hover {
  min-width: 40%;
  background-color: #ff8482;  /* background of courses drop down menu */ /* when hover over courses highlight the course */
/* background-color: white;  */  /* then the color change to secondary color  */
  color: var(--secondary);
  border-radius: 5px;
  padding: 1vh 1vw;
  animation: drop-down-animation 0.5s ease-in forwards 1s;
}

.drop:hover .nav-links span {
  transform: rotate(270deg);
}

.drop:hover .drop-down {
  display: flex;
}

.drop-down:hover {
  display: flex;
}

@keyframes drop-down-animation {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@media all and (max-width: 1300px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .heading h2 {
    font-size: 40px;
  }

  .logo {
    padding-left: 10vw;
  }

  .burger-menu {
    display: block;
    padding-right: 10vw;
  }

  nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .nav-links-wrapper {
    flex-direction: column;
  }

  .nav-links ul {
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
  }

  .nav-links {
    height: 60%;
  }

  .nav-links-wrapper {
    height: 85vh;
    position: absolute;
    top: 10vh;
    right: 0;
    transform: translateX(100%);
    transition: transform 1s ease-in-out;
  }

  .nav-links-active {
    transform: translateX(0);
  }

  .nav-divider {
    transform: rotate(90deg);
  }

  @keyframes navFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }

  .drop-down a {
   /* display: none;*/
  }
}

/*edit small screen menu*/
@media all and (max-width: 1300px) and (min-width: 1000px){ 
  
  /*edit for mobile menu 24-11   @media all and (max-width: 1300px) and (min-width: 800px){ } */
    .drop-down {
	  position: static;  
    height: auto; /*try to put width also 90% of screen*/
	width: 320px; 
	/*margin-top: 45px; */
	opacity:1;
  }
  .drop-down:hover {
  display: flex;
  margin-top: 250px; 
}  /* this for editing menu in small screen I need to adjust margin to start from the top of the window */
}
@media all and (max-width: 990px) and (min-width: 800px){ 
  
  /*edit for mobile menu 24-11   @media all and (max-width: 1300px) and (min-width: 800px){ } */
    .drop-down {
	  position: static;  
    height: auto; /*try to put width also 90% of screen*/
	width: 320px; 
	/*margin-top: 45px; */
	opacity:1;
  }
  .drop-down:hover {
  display: flex;
  margin-top: 250px; 
}  /* this for editing menu in small screen I need to adjust margin to start from the top of the window */
} 
@media all and (max-width: 790px) and (min-width: 250px){
    .drop-down {
	  position: static;  
    height: 83vh; /*try to put width also 90% of screen*/
	width: 90vw; 
	/*margin-top: 45px; */
	opacity:1;
  }
  .drop-down:hover {
  display: flex;
  margin-top: 200px; 
}	
}
/* navigation bar style :end */

/* courses style :start */

.courses-landing {
  min-height: 80vh;
  background-color: #ff8482;   /* landing section first part Background*/ 
/*  background-color: #5DADE2; */  /* we also can use background-color: white;  */
  padding-top: 17vh;
}

.landing-img img {
  height: 438px;
  width: 681px;
  border-radius: 10px;
}

.landing-wrapper {
  width: 85vw;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* .landing-text {
  padding-left: 2vw;
} */

.landing-text h4 {
  color: var(--secondary);  /* font color in course landing "Features" */
/*  color: white; */
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.landing-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32;
  font-style: normal;
  font-weight: 800;
  text-align: left;
  color: var(--secondary);   /* font color in course landing "header" */
 /* color: white; */
}

.landing-text p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 50px;
  text-align: left;
  color: var(--secondary);    /* font color in course landing "paragraph" */
/*  color: white; */
}

.highlight-1 {
  position: absolute;
  width: 329px;
  height: 308px;
  background: #fafbff;
  box-shadow: 8px 14px 8px rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  top: 56vh;
  left: 36vw;
}
.highlight-2 {
  position: absolute;
  width: 329px;
  height: 308px;
  background: #fafbff;
  box-shadow: 8px 14px 8px rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  top: 56vh;
  left: 55vw;
}
.highlight-3 {
  position: absolute;
  width: 329px;
  height: 308px;
  background: #fafbff;
  box-shadow: 8px 14px 8px rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  top: 56vh;
  left: 74vw;
  z-index: 1;
}

.highlight {
  position: relative;
}

.highlight-circle-1,
.highlight-circle-2,
.highlight-circle-3 {
  position: absolute;
  width: 155px;
  height: 154px;
  background: #fff2dd;
  border-radius: 77px;
  left: 50%;
  transform: translate(-50%);
}

.highlight-circle img {
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translate(-50%);
}

.highlight-1 h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
 /* font-weight: normal;*/
  font-weight: 750px;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
  margin-top: 150px;
}

.highlight-1 p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
}

.highlight-2 h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
   /* font-weight: normal;*/
  font-weight: 750px;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
  margin-top: 150px;
}

.highlight-2 p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
}

.highlight-3 h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
   /* font-weight: normal;*/
  font-weight: 750px;
  font-size: 24px;
  line-height: 60px;
  text-align: center;
  margin-top: 150px;
}

.highlight-3 p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 40px;
  text-align: center;
}

.landing-features {
  margin-left: 8.8vw;
  margin-top: 20px;
}

.feat-flex {
  display: flex;
  align-items: center;
}

.feat-flex h2 {
  font-family: "Poppins", sans-serif;
  font-style: normal;
   /* font-weight: normal;*/
  font-weight: 750px;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
  margin-left: 20px;
  color: var(--secondary);
}

.feat-flex:nth-child(2) {
  margin-top: 15px;
}

.btn {
  width: 100px;
  height: 40px;
  background: #fff2dd;   /* button Enroll Now  background*/
/*  background: white; */
  border: 2px solid #1b1b1b;
  text-align: center;
  margin-top: 10px;
  border-radius: 25px 0px;
}

.btn a {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 60px;
  color: #232121;  /* button Enroll Now text color */
}

.traingle-1 img {
  position: absolute;
  top: 50vh;
  right: 0;
}

.popular-courses {
  min-height: 50vh;
  background-color: var(--secondary); /* our popular section Background color */
  padding-top: 2vh;
  padding-bottom: 2vh;
  position: relative;
  z-index: 1;
}

.popular-courses img {
/*  width: 370px;
  height: 288px; */
  width: 300px;
  height: 208px;
  object-fit: cover;
 
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.popular-courses h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 750;
  text-align: center;
}

.popular-wrapper {
  padding-top: 10vh;
  width: 85vw;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.popular-course {
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.popular-course h5 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0px;
  text-align: left;
  color: var(--primary);   /* our popular section course name color */
  /* color: #333333; */
}

.popular-course p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0px;
  text-align: left;
  color: #333333;   /* our popular section course paragrapph font color */
}

.triangle-2 img {
  position: absolute;
  bottom: 0;
  height: 582px;
  width: 553px;
}

.popular-courses-cta {
  height: 40px;
  width: 100px;
  border: 2px solid #1b1b1b;
  background-color: var(--primary);  /* button background */
 /* background-color: #5DADE2; */
  text-align: center;
  padding-top: 15px;
  margin-left: 45vw;
  margin-top: 5vh;
  border-radius: 25px 0px;
}

.popular-courses-cta a {
  color: var(--secondary);   /* button font color  */
 /* color: white; */
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

@media all and (max-width: 1300px) and (min-width: 800px){
	
 .popular-courses img {
  width: 200px;
  height: 150px;
 }
 .popular-course p {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
 }
 
}
.recommended-courses {
  min-height: 80vh;
  background-color: #ff8482;   /*Background color in recommended-courses section */ 
/*  background-color: white; */
  padding-top: 2vh;
  position: relative;
  padding-bottom: 5vh;
}

.recommended-courses h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 750;
  text-align: center;
  color: var(--secondary);
  position: relative;
  z-index: 1;
}

.recommended-wrapper {
  width: 85vw;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 3vh;
}

.recommended-course {
  width: 316px;
  min-height: 303px;
  background: #fafbff;
  box-shadow: 8px 14px 8px rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  position: relative;
  z-index: 1;
  margin-top: 40px;
  cursor: pointer;
  margin-right: 30px;
}

.recommended-course:hover img {
  transform: translateY(-10px);
}

.recommended-course img {
  width: 316px;
  height: 233px;
  border-radius: 30px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.recommended-course h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  color: #000000;
  text-align: center;
}

.circle-2 {
  position: absolute;
  width: 652px;
  height: 604px;
  right: 0;
  top: 30vh;
  background: #fdc068;  /* background circle behind the courses box*/
  mix-blend-mode: normal;
  opacity: 0.5;
  filter: blur(150px);
}

.allcourses {
  min-height: 80vh;
  background-color: var(--secondary);
  position: relative;
}

.triangle-3 {
  position: absolute;
  width: 552.34px;
  height: 1160.4px;
  left: -20vw;
  bottom: -90vh;
  background: linear-gradient(180deg, #fff2dd 0%, #fdc068 100%);
  transform: rotate(41.58deg);
}

.allcourses {
  min-height: 80vh;
  background-color: var(--secondary);
  padding-top: 2vh;
  position: relative;
  z-index: 1;
  padding-bottom: 5vh;
}

.allcourses h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 750;
  text-align: center;
}

.all-course {
  width: 467px;
  height: 100px;
  background: url(../assets/allcourses-bg.png), rgba(255, 255, 255, 0.9);
  background-blend-mode: soft-light, normal;
  box-shadow: 0px 40px 80px rgba(0, 0, 0, 0.1),
    inset 0px -4px 2px rgba(0, 0, 0, 0.05),
    inset 0px 4px 2px rgba(255, 255, 255, 0.25),
    inset 4px 4px 26px rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(180px);
  border-radius: 16px;
  margin-top: 40px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.all-wrapper {
  width: 85vw;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3vh;
}

.all-course h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  padding-top: 25px;
}

.triangle-4 {
  position: absolute;
  width: 600.68px;
  height: 800.03px;
  bottom: -55vh;
  right: 22vh;
  background: linear-gradient(180deg, #ff8482 0%, #fdc068 100%);
  transform: rotate(-60.91deg);
}

.testimonials {
  min-height: 80vh;
  padding-top: 2vh;
  position: relative;
  z-index: 1;
  background-color: #ff8482;  /*background color in ‘What our learners say about us’ section*/
/* background-color: white; */
}

.testimonials h2 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 750;
  text-align: center;
  color: var(--secondary);
}

.testimonial-wrapper {
  width: 85vw;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3vh;
}

.testimonial {
  margin-top: 30px;
}

.testim-circle {
  position: absolute;
  width: 392px;
  height: 312px;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, #fff2dd 0%, #fdc068 100%);
  filter: blur(150px);
}
/* media queries */

@media all and (max-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* nav bar style :end */

  .highlight-2,
  .highlight-1,
  .highlight-3 {
    position: static;
    margin-top: 10px;
  }

  .highlights {
    width: 85vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }

  .landing-img img {
    /* height: 400px;
    width: 400px; */
    width: 100%;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 1;
  }

  .landing-text {
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .traingle-1 {
    display: none;
  }
  .landing-text h2 {
    font-size: 32px;
    width: 100%;
    text-align: center;
  }
  .landing-text p {
    font-size: 18px;
    text-align: center;
  }

  .popular-course {
    margin-top: 1vh;
  }

  .popular-courses-cta {
    position: relative;
    z-index: 1;
    margin-left: 0;
    left: 35%;
  }

  .feat-flex {
    margin-left: 10%;
  }

  .feat-flex img {
    height: 40px;
    width: 40px;
  }

  .feat-flex h2 {
    font-size: 24px;
  }

  .courses-landing {
    padding-bottom: 10vh;
  }

  .btn {
    height: 60px;
    width: 200px;
    margin-top: 5vh;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .btn a {
    font-size: 16px;
  }

  .recommended-courses h2 {
    font-size: 32px;
  }

  .recommended-wrapper {
    margin-left: 11%;
  }

  .allcourses h2 {
    font-size: 32px;
  }

  .all-course {
    height: auto;
    padding-bottom: 3vh;
  }
  .testimonials h2 {
    font-size: 32px;
  }

  .testimonial iframe {
    width: 100%;
    height: auto;
  }

  .testim-circle {
    display: none;
  }

  .popular-courses h2 {
    font-size: 32px;
  }

  .popular-course {
    width: 100%;
    height: auto;
  }

  .popular-course img {
    width: 100%;
    height: auto;
  }
}

@media all and (max-width: 774px) and (min-width: 700px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* nav bar style :end */

  .highlight-2,
  .highlight-1,
  .highlight-3 {
    position: static;
    margin-top: 10px;
  }

  .highlights {
    width: 85vw;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }

  .traingle-1 {
    display: none;
  }

  .testim-circle {
    display: none;
  }
}

@media all and (max-width: 1160px) and (min-width: 775px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .highlight-2,
  .highlight-1,
  .highlight-3 {
    position: static;
    margin-top: 10px;
  }

  .highlights {
    width: 85vw;
    margin: auto;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }

  .highlight-circle-2 {
    left: 71vw;
  }

  .traingle-1 {
    display: none;
  }
}

@media all and (max-width: 1781px) and (min-width: 1161px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }
  .highlight-2,
  .highlight-1,
  .highlight-3 {
    position: static;
    margin-top: 10px;
  }

  .highlights {
    width: 85vw;
    margin: auto;
    display: flex;
    /* flex-direction: column; */
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }

  .highlight-circle-3 {
    left: 78vw;
  }

  .traingle-1 {
    display: none;
  }
}

@media all and (max-width: 1900px) and (min-width: 1782px) {
  .highlight-1,
  .highlight-2,
  .highlight-3 {
    top: 27vw;
  }
}
@media only screen and (max-width: 475px) {

	/* Navigation Button
	-------------------------------------------------------- */

	.nav-button {
		display: block;
		position: absolute;
		top: 7px;
		left: 7px;
		width: 50px;
		height: 35px;
		background: url('../images/menu-icon-large.png'), linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.2));
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
		cursor: pointer;
		border: 0 none;
		border-bottom: 1px solid rgba(255,255,255,.1);
		box-shadow: 0 0 4px rgba(0,0,0,.7) inset;
		border-radius: 5px;
		z-index: 999;
		text-indent: -9999px;
	}
	.nav-button:hover {
		background-color: rgba(0,0,0,.1);
	}
	.nav-button.open {
		background: url('../images/close-icon-large.png'), linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.2));
		background-position: center center;
		background-repeat: no-repeat;
		background-size: 21px, 100%;
	}

	/* Navigation Bar
	-------------------------------------------------------- */

/*	body { padding-top: 50px; }*/
	body { padding-top: 0px; }

	.primary-nav {
		width: 100%;
		float: none;
		background-color: #238be3; /* change the menu color */
		background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.2));
		display: block;
		height: 50px;
		margin: 0;
		padding: 0;
		overflow: hidden;
		box-shadow: 0 1px 2px rgba(0,0,0,.6);
		position: absolute;
		top: 0px;
		left: 0px;
		z-index: 998;
		clear: both;
	}
	.primary-nav li {
		display: none;
		width: 100%;
		font-family: Arial;
	}
	.primary-nav li a {
		display: block;
		width: 90%;
		padding: 10px 5%;
		font-size: 14px;
		font-weight: bold;
		text-shadow: -1px -1px 0 rgba(0,0,0,.15);
		color: white;
		text-decoration: none;
		border-bottom: 1px solid rgba(0,0,0,.2);
		border-top: 1px solid rgba(255,255,255,.1);
	}
	.primary-nav li a:hover {
		background-color: rgba(0,0,0,.5);
		border-top-color: transparent;
	}
	.primary-nav > li:first-child {
		border-top: 1px solid rgba(0,0,0,.2);
	}

	/* Toggle the navigation bar open  */

	.primary-nav.open {
		height: auto;
		padding-top: 50px;
	}
	.primary-nav.open li {
		display: block;
	}

	/* Submenus – optional .parent class indicates dropdowns */

	.primary-nav > li:hover > a {
		background: rgba(0,0,0,.5);
		border-bottom-color: transparent;
	}
	.primary-nav li.parent > a:after {
		content: "▼";
		color: rgba(255,255,255,.5);
		float: right;
	}
	.primary-nav li.parent > a:hover {
		background: rgba(0,0,0,.75);
	}
	.primary-nav li ul {
		display: none;
		background: rgba(0,0,0,.5);
		border-top: 0 none;
		padding: 0;
	}
	.primary-nav li ul a {
		border: 0 none;
		font-size: 12px;
		padding: 10px 5%;
		font-weight: normal;
	}
	.primary-nav li:hover ul {
		display: block;
		border-top: 0 none;
	}

} /* End Mobile Styles */
