.kashmir-wrapper {
  font-family: 'Josefin Sans', sans-serif;
}

.kashmir-wrapper .container {
  width: 1170px;
  margin: 0 auto;
  max-width: 100%;
}

@media (max-width: 767px) {
  .kashmir-wrapper .container {
    padding: 0 15px;
  }
}

.kashmir-wrapper .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.kashmir-wrapper .subHeading {
  color: #deb57a;
  font-family: 'Sacramento', cursive;
  margin-bottom: 15px;
  font-size: 40px;
  line-height: 1;
  font-weight: 600;
}

.kashmir-wrapper .section__heading {
  font-size: 44px;
  line-height: 50px;
  font-family: 'Josefin Sans', sans-serif;
  color: #000;
}

.kashmir-wrapper .btn-primary {
  background-color: #da2525;
  color: white;
  min-width: 150px;
  text-align: center;
  padding: 15px 25px;
  border: 0;
  border-radius: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 15px;
  font-weight: 600;
}

.kashmir-wrapper .btn-primary:hover {
  background-color: #deb57a;
}

.kashmir-header {
  position: fixed;
  padding: 10px 0;
  border-bottom: 1px solid #6a6767;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.kashmir-header .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kashmir-header .logo img {
  display: block;
}

.kashmir-header .navigation-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kashmir-header .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.kashmir-header .nav-list li {
  margin-right: 25px;
}

.kashmir-header .nav-list li a {
  color: white;
  text-transform: uppercase;
  position: relative;
}

.kashmir-header .nav-list li a::before {
  content: "";
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 2rem;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  left: 0;
}

.kashmir-header .nav-list li a:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.kashmir-header.WhiteHeader {
  background-color: white;
  left: 0;
  right: 0;
  z-index: 2;
}

.kashmir-header.WhiteHeader .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.kashmir-header.WhiteHeader .nav-list li a {
  color: #000;
}

.kashmir-header.WhiteHeader .nav-list li a::before {
  background-color: #000;
}

.kashmir-header .hamburger-menu {
  display: none;
}

.kashmir-header .hamburger-menu .hamburger-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50px;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.kashmir-header .hamburger-menu .hamburger-button span {
  background: #da2525;
  border-radius: 10px;
  height: 5px;
  margin: 5px 0;
  -webkit-transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.kashmir-header .hamburger-menu .hamburger-button span:nth-of-type(1) {
  width: 50%;
}

.kashmir-header .hamburger-menu .hamburger-button span:nth-of-type(2) {
  width: 100%;
}

.kashmir-header .hamburger-menu .hamburger-button span:nth-of-type(3) {
  width: 75%;
}

@media (max-width: 1023px) and (min-width: 768px) {
  .kashmir-header .book-table {
    display: none;
  }
  .kashmir-header .nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .kashmir-header .nav-list li {
    margin-right: 12px;
  }
  .kashmir-header .nav-list li:last-child {
    margin-right: 0;
  }
  .kashmir-header .nav-list li a {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .kashmir-header .logo img {
    width: 120px;
  }
  .kashmir-header .navigation-bar {
    display: none;
    position: fixed;
    top: 71px;
    background-color: white;
    left: 0;
    right: 0;
  }
  .kashmir-header .navigation-bar .nav-list {
    display: block;
    padding: 15px 0 0;
  }
  .kashmir-header .navigation-bar .nav-list li {
    margin-right: 0;
    margin-bottom: 15px;
    padding: 0 20px;
  }
  .kashmir-header .navigation-bar .nav-list li a {
    color: #000;
  }
  .kashmir-header .navigation-bar .book-table {
    padding: 0 15px 15px;
  }
  .kashmir-header .navigation-bar .book-table .btn {
    width: 100%;
  }
  .kashmir-header .hamburger-menu {
    display: block;
  }
  .kashmir-header.menu-open .navigation-bar {
    display: block;
  }
}

.kashmir-wrapper .hero-banner {
  background-image: url(../../kashmir-assets/images/heroBanner.jpg);
  background-size: cover;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-attachment: fixed;
  min-height: 700px;
}

.kashmir-wrapper .hero-banner .subHeading {
  font-size: 40px;
  margin-bottom: 30px;
  font-family: 'Sacramento', cursive;
}

.kashmir-wrapper .hero-banner h1 {
  font-size: 60px;
  line-height: 75px;
  color: #ffffff;
  font-family: 'Josefin Sans', sans-serif;
  max-width: 450px;
  margin-bottom: 30px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .kashmir-wrapper .hero-banner {
    background-position: center;
  }
  .kashmir-wrapper .hero-banner h1 {
    font-size: 50px;
    line-height: 55px;
  }
}

.kashmir-wrapper .services {
  position: relative;
  margin-top: -100px;
}

.kashmir-wrapper .services .flex-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kashmir-wrapper .services .flex-row .service-item {
  width: 32%;
  background: white;
  -webkit-box-shadow: -2px 2px 5px #e1e1e1;
          box-shadow: -2px 2px 5px #e1e1e1;
  padding: 30px;
  text-align: center;
  border-radius: 5px;
}

.kashmir-wrapper .services .flex-row .service__title {
  font-size: 24px;
  color: #000;
  font-family: 'Josefin Sans', sans-serif;
  margin: 20px 0 10px;
  font-weight: 600;
  line-height: 1.2;
}

.kashmir-wrapper .services .flex-row .service_content {
  font-size: 15px;
  color: #000;
  font-family: 'Josefin Sans', sans-serif;
  margin: 10px 0;
  line-height: 25px;
}

@media (max-width: 767px) {
  .kashmir-wrapper .services {
    margin-top: 0;
    padding: 40px 0;
  }
  .kashmir-wrapper .services .flex-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .kashmir-wrapper .services .flex-row .service-item {
    width: 100%;
    margin-bottom: 30px;
  }
  .kashmir-wrapper .services .flex-row .service-item:last-child {
    margin-bottom: 0;
  }
}

.kashmir-wrapper .aboutUs {
  padding: 80px 0;
}

.kashmir-wrapper .aboutUs .flex-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kashmir-wrapper .aboutUs .about-image {
  width: 48%;
}

.kashmir-wrapper .aboutUs .about-info {
  width: 48%;
  text-align: center;
}

.kashmir-wrapper .aboutUs .about-info h2 {
  margin-bottom: 40px;
}

.kashmir-wrapper .aboutUs .about-content p {
  font-size: 18px;
  line-height: 31px;
  font-family: 'Josefin Sans', sans-serif;
  color: #000;
  margin-bottom: 30px;
}

.kashmir-wrapper .aboutUs .about-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .kashmir-wrapper .aboutUs {
    padding: 40px 0;
  }
  .kashmir-wrapper .aboutUs .about-info h2 {
    margin-bottom: 25px;
  }
  .kashmir-wrapper .aboutUs .flex-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .kashmir-wrapper .aboutUs .flex-row .about-image {
    width: 100%;
    margin-bottom: 30px;
  }
  .kashmir-wrapper .aboutUs .flex-row .about-info {
    width: 100%;
  }
}

.kashmir-wrapper .dishes {
  padding: 70px 0;
  background: #f0efed;
}

.kashmir-wrapper .dishes .popular-dishes {
  margin-top: 40px;
}

.kashmir-wrapper .dishes .popular-dishes .slick-slide {
  position: relative;
  padding: 0 10px;
  overflow: hidden;
}

.kashmir-wrapper .dishes .popular-dishes .slick-slide .item-inner {
  position: relative;
  overflow: hidden;
}

.kashmir-wrapper .dishes .popular-dishes .slick-slide .item-inner img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.kashmir-wrapper .dishes .popular-dishes .slick-slide .item-inner:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.kashmir-wrapper .dishes .popular-dishes .slick-slide .dish-info {
  padding: 20px;
  bottom: 0;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  color: white;
}

.kashmir-wrapper .dishes .popular-dishes .slick-slide .dish-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: 'Josefin Sans', sans-serif;
}

.kashmir-wrapper .dishes .popular-dishes .slick-slide .btn {
  min-width: 140px;
  font-size: 14px;
  padding: 10px 20px;
}

.kashmir-wrapper .dishes .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 50px;
  height: 50px;
  background-size: cover;
  border: 0;
  font-size: 0;
}

.kashmir-wrapper .dishes button.slick-next {
  right: -50px;
  background-image: url(../images/arrowRight.png);
}

.kashmir-wrapper .dishes button.slick-prev {
  left: -50px;
  background-image: url(../images/arrowLeft.png);
}

@media (max-width: 767px) {
  .kashmir-wrapper .dishes {
    padding: 40px 0;
  }
  .kashmir-wrapper .dishes .popular-dishes {
    margin-top: 25px;
  }
  .kashmir-wrapper .dishes .slick-dots {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 15px;
  }
  .kashmir-wrapper .dishes .slick-dots li {
    margin: 0 5px;
  }
  .kashmir-wrapper .dishes .slick-dots li button {
    font-size: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #da2525;
    border: 0;
  }
  .kashmir-wrapper .dishes .slick-dots li.slick-active button {
    background-color: #000;
  }
}

.kashmir-wrapper .booking {
  background-image: url("../images/bookingBg.png");
  background-size: cover;
  padding: 70px 0;
  background-attachment: fixed;
}

.kashmir-wrapper .booking .booking-info {
  width: 30%;
  background: black;
  color: white;
  padding: 30px;
}

.kashmir-wrapper .booking .booking-info .info-inner {
  border: 2px dotted white;
  padding: 20px;
  text-align: center;
}

.kashmir-wrapper .booking .booking-info .subheading {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Josefin Sans', sans-serif;
  text-transform: uppercase;
}

.kashmir-wrapper .booking .booking-info h3 {
  color: white;
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 30px;
  font-family: 'Josefin Sans', sans-serif;
}

.kashmir-wrapper .booking .booking-info .day {
  font-size: 16px;
  color: #c6a372;
  margin-bottom: 5px;
  font-family: 'Josefin Sans', sans-serif;
}

.kashmir-wrapper .booking .booking-info .time {
  font-size: 16px;
  margin-bottom: 20px;
  font-family: 'Josefin Sans', sans-serif;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.kashmir-wrapper .booking .booking-info .phone {
  font-size: 20px;
  color: #c6a372;
  font-family: 'Josefin Sans', sans-serif;
}

.kashmir-wrapper .booking .booking-form {
  background: white;
  width: 70%;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner {
  border: 2px dotted #c6a372;
  padding: 40px;
  text-align: center;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .subheading {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Sacramento', cursive;
  line-height: 1;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .title {
  font-size: 40px;
  color: #000;
  font-weight: 600;
  font-family: 'Josefin Sans', sans-serif;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .flex-row.action-row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .form-controls {
  width: 48%;
  margin-bottom: 30px;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .form-controls .input-elements {
  width: 100%;
  height: 55px;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  background: #f8f8f8;
  padding: 5px 10px;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .form-controls .input-elements::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1;
  /* Firefox */
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .form-controls .input-elements:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1;
  /* Firefox */
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .form-controls .input-elements::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1;
  /* Firefox */
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .form-controls .input-elements::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000;
  opacity: 1;
  /* Firefox */
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .form-controls .input-elements:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #000;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .form-controls .input-elements::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #000;
}

.kashmir-wrapper .booking .booking-form .booking-form-inner .btn-primary {
  min-width: 300px;
  padding: 15px 20px;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .kashmir-wrapper .booking {
    padding: 40px 0;
  }
  .kashmir-wrapper .booking .flex-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .kashmir-wrapper .booking .booking-info {
    width: 100%;
  }
  .kashmir-wrapper .booking .booking-form {
    width: 100%;
    padding: 15px;
  }
  .kashmir-wrapper .booking .booking-form .booking-form-inner {
    padding: 20px;
  }
  .kashmir-wrapper .booking .booking-form .booking-form-inner .flex-row.action-row {
    margin-top: 0;
  }
  .kashmir-wrapper .booking .booking-form .booking-form-inner .form-controls {
    width: 100%;
  }
  .kashmir-wrapper .booking .booking-form .booking-form-inner .btn-primary {
    min-width: 200px;
    width: 100%;
  }
}

.kashmir-wrapper .Gallary {
  padding: 70px 0;
}

.kashmir-wrapper .Gallary h2 {
  display: block;
  text-align: center;
  margin-bottom: 45px;
}

.kashmir-wrapper .Gallary .flex-row {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kashmir-wrapper .Gallary .one-third {
  width: 33.33%;
  padding: 10px;
}

.kashmir-wrapper .Gallary .two-third {
  width: 66.66%;
  padding: 10px;
}

.kashmir-wrapper .Gallary .gallary-item {
  overflow: hidden;
}

.kashmir-wrapper .Gallary .gallary-item img {
  width: 100%;
  display: block;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.kashmir-wrapper .Gallary .gallary-item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

@media (max-width: 767px) {
  .kashmir-wrapper .Gallary {
    padding: 40px 0;
  }
  .kashmir-wrapper .Gallary h2 {
    margin-bottom: 25px;
  }
  .kashmir-wrapper .Gallary .one-third {
    width: 100%;
    padding: 10px 0;
  }
  .kashmir-wrapper .Gallary .two-third {
    width: 100%;
    padding: 10px 0;
  }
}

.kashmir-wrapper .testimonials {
  padding: 70px 0;
  background: #f0efed;
}

.kashmir-wrapper .testimonials h2 {
  display: block;
  text-align: center;
  margin-bottom: 45px;
}

.kashmir-wrapper .testimonials .testimonail-item {
  width: 100%;
  background: white;
  padding: 60px;
  border: 1px solid #dbdbdb;
  text-align: center;
}

.kashmir-wrapper .testimonials .client__name {
  color: #333333;
  margin-bottom: 30px;
  font-size: 26px;
  line-height: 1;
  font-weight: 600;
  font-family: 'Josefin Sans', sans-serif;
}

.kashmir-wrapper .testimonials p {
  font-size: 18px;
  line-height: 31px;
  font-family: 'Josefin Sans', sans-serif;
  color: #000;
  margin-bottom: 30px;
}

.kashmir-wrapper .testimonials p:last-child {
  margin-bottom: 0;
}

.kashmir-wrapper .testimonials .customer-rating {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.kashmir-wrapper .testimonials .slick-dots {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 15px;
}

.kashmir-wrapper .testimonials .slick-dots li {
  margin: 0 5px;
}

.kashmir-wrapper .testimonials .slick-dots li button {
  font-size: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #da2525;
  border: 0;
}

.kashmir-wrapper .testimonials .slick-dots li.slick-active button {
  background-color: #000;
}

@media (max-width: 767px) {
  .kashmir-wrapper .testimonials {
    padding: 40px 0;
  }
  .kashmir-wrapper .testimonials h2 {
    margin-bottom: 25px;
  }
  .kashmir-wrapper .testimonials .testimonail-item {
    padding: 40px;
  }
}

.kashmir-wrapper footer {
  background-image: url("../images/footerBg.png");
  background-size: cover;
  background-position: bottom;
  padding: 0;
}

.kashmir-wrapper footer .primary-footer {
  padding: 100px 0 50px;
}

.kashmir-wrapper footer .primary-footer .footer-item {
  width: 33.33%;
  text-align: center;
}

.kashmir-wrapper footer .primary-footer .footer-item .footer__heading {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
}

.kashmir-wrapper footer .primary-footer .footer-item .social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.kashmir-wrapper footer .primary-footer .footer-item .social-list li {
  margin-right: 15px;
}

.kashmir-wrapper footer .primary-footer .footer-item .social-list li a:hover {
  opacity: 0.7;
}

.kashmir-wrapper footer .footer-navigation {
  margin-top: 60px;
}

.kashmir-wrapper footer .footer-navigation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.kashmir-wrapper footer .footer-navigation ul li {
  margin: 0 20px;
}

.kashmir-wrapper footer .footer-navigation ul li a {
  color: white;
  position: relative;
  text-transform: uppercase;
}

.kashmir-wrapper footer .footer-navigation ul li a::before {
  content: "";
  height: 3px;
  background-color: #fff;
  position: absolute;
  top: 2rem;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  left: 0;
}

.kashmir-wrapper footer .footer-navigation ul li a:hover:before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
}

.kashmir-wrapper footer .secoundry-footer {
  background: #070707;
  padding: 15px 0;
  font-size: 13px;
}

.kashmir-wrapper footer .secoundry-footer .flex-row {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.kashmir-wrapper footer .secoundry-footer .privacy-links {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.kashmir-wrapper footer .secoundry-footer .privacy-links li {
  margin: 0 10px;
}

.kashmir-wrapper footer .secoundry-footer .privacy-links a {
  color: white;
  opacity: 0.7;
}

.kashmir-wrapper footer .secoundry-footer .privacy-links a:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .kashmir-wrapper footer .primary-footer {
    padding: 50px 0 10px;
  }
  .kashmir-wrapper footer .primary-footer .flex-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .kashmir-wrapper footer .primary-footer .footer-item {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  .kashmir-wrapper footer .primary-footer .footer-item .footer__heading {
    margin-bottom: 20px;
  }
  .kashmir-wrapper footer .footer-navigation {
    display: none;
  }
  .kashmir-wrapper footer .secoundry-footer {
    background: #070707;
    padding: 15px 0;
    font-size: 13px;
  }
  .kashmir-wrapper footer .secoundry-footer .flex-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .kashmir-wrapper footer .secoundry-footer .privacy-links {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-top: 10px;
  }
  .kashmir-wrapper footer .secoundry-footer .privacy-links li {
    margin: 0 10px  0 0;
  }
}
/*# sourceMappingURL=kashmir.css.map */