@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap");
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.preload__wrap {
  background: white;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

body {
  color: #000;
  font-weight: normal;
  overflow: hidden;
}

body.loaded {
  overflow-y: visible;
}

body.loaded .preload__wrap {
  opacity: 0;
  z-index: -1;
}

body.modal-open {
  overflow: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  margin-bottom: 1rem;
}

a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}

/*----generic styling*/
.section-space {
  padding: calc(1.25rem + 1.5vw) 0;
}

.section-space-top {
  padding-top: calc(1.25rem + 1.5vw);
}

.section-space-bottom {
  padding-bottom: calc(1.25rem + 1.5vw);
}

.btn-theme {
  background-color: #cd5932;
  color: #fff;
}

.btn1 {
  display: block;
  margin: 20px auto;
  background-color: #a14a2e;
  color: #fff;
  padding: 10px 50px;
  border: none;
  border-radius: 8px;
  padding: 10px 50px;
  -webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
          box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  cursor: pointer;
}

.inner-sec-container {
  max-width: 1150px;
  height: auto;
  margin: 0 auto;
}

.all-heading-wrapper {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.section-heading-home {
  text-align: center;
  text-transform: capitalize;
  font-weight: bold;
  position: relative;
  display: inline;
  font-size: xxx-large;
}

.section-heading-home::after,
.section-heading-home::before {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #cd5932;
  display: block;
  height: 3px;
}

.section-heading-home::after {
  bottom: -30px;
  width: 50%;
  margin: 0 auto;
  left: 25%;
  background-color: skyblue;
}

.question::after {
  display: none;
}

.section-heading-home::before {
  bottom: -20px;
}

.question::before {
  display: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}

/* -------------------------------- 

Basic Style

-------------------------------- */
.cd-breadcrumb,
.cd-multi-steps {
  width: 90%;
  max-width: 768px;
  padding: 1em;
  background-color: #edeff0;
  border-radius: .25em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.cd-breadcrumb::after,
.cd-multi-steps::after {
  clear: both;
  content: "";
  display: table;
}

.cd-breadcrumb li,
.cd-multi-steps li {
  display: inline-block;
}

.cd-breadcrumb li::after,
.cd-multi-steps li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: #959fa5;
}

.cd-breadcrumb li:last-of-type::after,
.cd-multi-steps li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}

.cd-breadcrumb li > *,
.cd-multi-steps li > * {
  /* single step */
  display: inline-block;
  font-size: 16px;
  color: #2c3f4c;
}

.cd-breadcrumb li.current > *,
.cd-multi-steps li.current > * {
  /* selected step */
  color: #cd5932;
}

.no-touch .cd-breadcrumb a:hover,
.no-touch .cd-multi-steps a:hover {
  /* steps already visited */
  color: #96c03d;
}

.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
  /* replace the default separator with a custom icon */
  content: '';
  height: 16px;
  width: 16px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-separator.svg) no-repeat center center;
  vertical-align: middle;
}

.cd-breadcrumb.custom-icons li > *::before,
.cd-multi-steps.custom-icons li > *::before {
  /* add a custom icon before each item */
  content: '';
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: .4em;
  margin-top: -2px;
  background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-icons-01.svg) no-repeat 0 0;
  vertical-align: middle;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(2) > *::before {
  /* change custom icon using image sprites */
  background-position: -20px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(3) > *::before {
  background-position: -40px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(4) > *::before {
  background-position: -60px 0;
}

.cd-breadcrumb.custom-icons li.current:first-of-type > *::before,
.cd-multi-steps.custom-icons li.current:first-of-type > *::before {
  /* change custom icon for the current item */
  background-position: 0 -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(2) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(2) > *::before {
  background-position: -20px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(3) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(3) > *::before {
  background-position: -40px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(4) > *::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(4) > *::before {
  background-position: -60px -20px;
}

@media only screen and (min-width: 768px) {
  .cd-breadcrumb,
  .cd-multi-steps {
    padding: 0 1.2em;
  }
  .cd-breadcrumb li::after,
  .cd-multi-steps li::after {
    margin: 0 1em;
  }
  .cd-breadcrumb li > *,
  .cd-multi-steps li > * {
    font-size: 16px;
  }
}

#gallery {
  padding-top: 40px;
}

#gallery .fa {
  cursor: pointer;
  font-weight: 600;
  font-size: 48px;
}

.img-wrapper {
  position: relative;
  margin-top: 15px;
  cursor: pointer;
  height: 120px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.img-overlay i {
  color: #fff;
  font-size: 3em;
}

#overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 100000;
}

#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 5%;
}

@media screen and (min-width: 768px) {
  #overlay img {
    width: 60%;
  }
}

@media screen and (min-width: 1200px) {
  #overlay img {
    width: 50%;
  }
}

#nextButton {
  color: #fff;
  font-size: 2em;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

#nextButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #nextButton {
    font-size: 3em;
  }
}

#prevButton {
  color: #fff;
  font-size: 2em;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}

#prevButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #prevButton {
    font-size: 3em;
  }
}

#exitButton {
  color: #fff;
  font-size: 2em;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
  position: absolute;
  top: 15px;
  right: 15px;
}

#exitButton:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  #exitButton {
    font-size: 3em;
  }
}

@-webkit-keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomin {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*End of Zoom in Keyframes */
/* Zoom out Keyframes */
@-webkit-keyframes zoomout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.67);
            transform: scale(0.67);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomout {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.67);
            transform: scale(0.67);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

/*End of Zoom out Keyframes */
.top-banner-animated-section-parent {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.46);
  -webkit-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.46);
  -moz-box-shadow: 0px 9px 37px -10px rgba(0, 0, 0, 0.46);
  position: relative;
}

.top-banner-animated-section-parent::after {
  content: "About Us";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.45);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: calc(20px + 4vw);
  color: #fff;
  font-weight: 600;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.3);
}

.event-listing-top-image-section {
  width: 100%;
  height: 100%;
  background-color: antiquewhite;
  position: relative;
  overflow: visible;
  padding: 0px 20px;
  -webkit-animation: zoomin 10s ease-in infinite;
  animation: zoomin 38s ease-in infinite;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  background-image: url(./assets/images/punjab-culture/pc2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about-us-section {
  width: 100%;
  height: auto;
}

.about-us-inner-parent {
  width: 100%;
  height: auto;
  padding: 30px 20px;
}

.about-us-tabs-section {
  width: 100%;
  height: auto;
}

.tabs-wrapper {
  width: 100%;
  height: auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabs-content-wrapper {
  width: 100%;
  height: auto;
}

.tabs-wrapper .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 6px;
  padding-bottom: 0;
  border-bottom: 1px solid black;
}

.tabs-wrapper .nav-tabs .nav-link {
  background: white;
  color: #4d4d4d;
  margin-left: 15px;
  font-weight: 600;
  height: 40px;
  padding: 6px 30px;
  margin-right: 15px;
}

.tabs-wrapper .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  margin: 0;
  color: white;
  background-color: #a14a2e;
  margin-left: 15px;
  margin-right: 15px;
  border: 1px solid black;
  border-bottom: none;
}

.tabs-wrapper .nav-tabs .nav-link {
  margin-bottom: -1px;
  background: white;
  color: #4d4d4d;
  font-weight: 600;
  height: 40px;
  padding: 6px 30px;
  border: none;
}

.tabs-content-wrapper {
  width: 100%;
  height: auto;
}

.tabs-content-wrapper .tabs-content-introduction-section {
  width: 100%;
  height: auto;
  line-height: 1.8;
  text-align: justify;
  margin-top: 10px;
}

.tabs-wrapper .nav-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 6px;
  padding-bottom: 0;
  border-bottom: 1px solid black;
}

.tabs-wrapper .nav-tabs .nav-link {
  background: white;
  color: #4d4d4d;
  margin-left: 15px;
  font-weight: 600;
  height: 40px;
  padding: 6px 30px;
  margin-right: 15px;
}

.tabs-wrapper .nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  margin: 0;
  color: white;
  background-color: #a14a2e;
  margin-left: 15px;
  margin-right: 15px;
  border: 1px solid black;
  border-bottom: none;
}

.tabs-wrapper .nav-tabs .nav-link {
  margin-bottom: -1px;
  background: white;
  /* border: 1px solid transparent; */
  /* border-top-left-radius: 0.25rem; */
  /* border-top-right-radius: 0.25rem; */
  color: #4d4d4d;
  /* padding-left: 81px; */
  /* margin-left: 30px; */
  font-weight: 600;
  height: 40px;
  /* border-radius: 7px; */
  padding: 6px 30px;
  /* border-bottom: 1px solid #000; */
  border: none;
}

.tabs-content-main-section {
  width: 100%;
  height: auto;
  margin-top: 100px;
}

.tabs-content-wrapper-img-section {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tabs-content-wrapper-img-section img {
  width: 100%;
  height: 100%;
  box-shadow: 11px 9px 36px -7px rgba(0, 0, 0, 0.77);
  -webkit-box-shadow: 11px 9px 36px -7px rgba(0, 0, 0, 0.77);
  -moz-box-shadow: 11px 9px 36px -7px rgba(0, 0, 0, 0.77);
  border: 2px solid #a14a2e;
  border-radius: 10px;
}

.messages-card-section {
  width: 100%;
  height: auto;
  border: 1px solid black;
}

.tabs-content-wrapper .person-detail-msg-wrapper {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.3);
  margin-bottom: 70px;
  position: relative;
  padding-top: 20px;
}

.tabs-content-wrapper .person-detail-msg-wrapper .content-wrapper {
  width: 100%;
  min-height: auto;
  text-align: center;
  margin-top: 15px;
}

.tabs-content-wrapper .person-detail-msg-wrapper .content-wrapper h2 {
  font-weight: bold;
  font-size: 18px;
  margin-top: 20px;
}

.tabs-content-wrapper .person-detail-msg-wrapper .content-wrapper h3 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
}

.tabs-content-wrapper .person-detail-msg-wrapper .content-wrapper p {
  width: 100%;
  margin-top: 50px;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  padding: 0 20px;
}

.tabs-content-wrapper .person-detail-msg-wrapper .person-message-circle-wrapper {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 8px 9px 35px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 8px 9px 35px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 8px 9px 35px 0px rgba(0, 0, 0, 0.25);
  margin: 0 auto;
}

.tabs-content-wrapper .person-detail-msg-wrapper .person-message-circle-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.person-detail-msg-wrapper {
  margin: 20px auto;
  width: 100%;
  height: 800px;
  background: white;
  border-radius: 75px;
  font-size: 20px;
  -webkit-transition: 1s -webkit-box-shadow;
  transition: 1s -webkit-box-shadow;
  transition: 1s box-shadow;
  transition: 1s box-shadow, 1s -webkit-box-shadow;
}

.tabs-introduction-bottom-section {
  width: 100%;
  height: auto;
  margin-top: 100px;
}

.person-detail-msg-wrapper:hover {
  -webkit-box-shadow: 0 5px 35px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.person-detail-msg-wrapper:hover::before,
.person-detail-msg-wrapper:hover::after {
  display: block;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e77f5c;
  border-radius: 8px;
  z-index: -1;
  -webkit-animation: 3s clockwise infinite;
          animation: 3s clockwise infinite;
}

.person-detail-msg-wrapper:hover:after {
  background: #fff;
  -webkit-animation: 4s counterclockwise infinite;
          animation: 4s counterclockwise infinite;
}

@-webkit-keyframes clockwise {
  0% {
    top: -5px;
    left: 0;
  }
  12% {
    top: -2px;
    left: 2px;
  }
  25% {
    top: 0;
    left: 5px;
  }
  37% {
    top: 2px;
    left: 2px;
  }
  50% {
    top: 5px;
    left: 0;
  }
  62% {
    top: 2px;
    left: -2px;
  }
  75% {
    top: 0;
    left: -5px;
  }
  87% {
    top: -2px;
    left: -2px;
  }
  100% {
    top: -5px;
    left: 0;
  }
}

@keyframes clockwise {
  0% {
    top: -5px;
    left: 0;
  }
  12% {
    top: -2px;
    left: 2px;
  }
  25% {
    top: 0;
    left: 5px;
  }
  37% {
    top: 2px;
    left: 2px;
  }
  50% {
    top: 5px;
    left: 0;
  }
  62% {
    top: 2px;
    left: -2px;
  }
  75% {
    top: 0;
    left: -5px;
  }
  87% {
    top: -2px;
    left: -2px;
  }
  100% {
    top: -5px;
    left: 0;
  }
}

@-webkit-keyframes counterclockwise {
  0% {
    top: -5px;
    right: 0;
  }
  12% {
    top: -2px;
    right: 2px;
  }
  25% {
    top: 0;
    right: 5px;
  }
  37% {
    top: 2px;
    right: 2px;
  }
  50% {
    top: 5px;
    right: 0;
  }
  62% {
    top: 2px;
    right: -2px;
  }
  75% {
    top: 0;
    right: -5px;
  }
  87% {
    top: -2px;
    right: -2px;
  }
  100% {
    top: -5px;
    right: 0;
  }
}

@keyframes counterclockwise {
  0% {
    top: -5px;
    right: 0;
  }
  12% {
    top: -2px;
    right: 2px;
  }
  25% {
    top: 0;
    right: 5px;
  }
  37% {
    top: 2px;
    right: 2px;
  }
  50% {
    top: 5px;
    right: 0;
  }
  62% {
    top: 2px;
    right: -2px;
  }
  75% {
    top: 0;
    right: -5px;
  }
  87% {
    top: -2px;
    right: -2px;
  }
  100% {
    top: -5px;
    right: 0;
  }
}

.about-us-policies-section {
  width: 100%;
  height: auto;
}

.about-us-policies-section .about-us-policies-image-section {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.about-us-policies-section a img {
  width: 100%;
  height: 450px;
}

.about-us-policies-section .button-reastaurent-listing .button-area {
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.about-us-policies-section .button-reastaurent-listing .button-area button {
  background-color: #cd5932;
  color: #fff;
  border: none;
  padding: 8px 15px;
  text-transform: capitalize;
  border-radius: 6px;
  -webkit-box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.25), inset 2px 2px 5px rgba(255, 255, 255, 0.25), inset -3px -3px 5px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 5px 7px rgba(0, 0, 0, 0.25), inset 2px 2px 5px rgba(255, 255, 255, 0.25), inset -3px -3px 5px rgba(0, 0, 0, 0.5);
}

.about-us-policies-section .button-reastaurent-listing .button-area button:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

@media all and (min-width: 700px) and (max-width: 839px) {
  .tabs-wrapper .nav-tabs {
    font-size: 14px;
    font-weight: bold;
  }
  .tabs-wrapper .nav-tabs .nav-link {
    padding: 6px 19px;
  }
}

@media all and (min-width: 430px) and (max-width: 700px) {
  .tabs-wrapper .nav-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-weight: bold;
  }
  .tabs-wrapper .nav-tabs {
    border: none;
  }
}

@media all and (min-width: 320px) and (max-width: 530px) {
  .tabs-content-wrapper .person-detail-msg-wrapper .content-wrapper p {
    margin-top: 22px;
    font-size: 14px;
    line-height: 20px;
    text-align: justify;
  }
}

@media all and (min-width: 320px) and (max-width: 530px) {
  .tabs-wrapper .nav-tabs {
    font-size: 13px;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tabs-wrapper .nav-tabs {
    border: none;
  }
}
/*# sourceMappingURL=about-us.css.map */