/* Reset Style Start */
/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}
body {
  font-size: 16px;
  line-height: 22px;
}

ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reset Style End */

/* Contact Style Start */
.contact-details-section {
  background: url(../images/contact-us.jpg) no-repeat fixed center center /
    cover rgb(0 0 0 / 0.7);
  background-blend-mode: multiply;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 96px 0;
}
.contact-details-section .contact-widget {  
  padding: 30px 26px;
  border: 1px solid rgba(108, 117, 125, 0.2);
  border-radius: 4px;
  background-color: #fff;
  transition: var(--bs-transition);
  min-height: 150px;
  display: flex;
  align-items: inherit;
}
.contact-details-section .contact-area {
  display: flex;
  align-items: center;
}
.contact-details-section .contact-icon {
  font-size: 65px;
  height: 65px;
  width: 82px;
  justify-content: flex-start;
  margin-right: 15px;
}

.contact-details-section .contact-info {
  display: inline-block;
  text-align: left;
  color: inherit;
}
.contact-details-section .contact-area .text,
.contact-details-section .contact-area .text a {
  color: var(--bs-black);
  margin: 0;
}

.contact-area .contact-icon img {
  color: inherit;
  display: inline-block;
  vertical-align: baseline;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

/* Contact Style End */

/* Slider Style Start */
.slider-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  color: #fff;
  background-color: var(--bs-secondary);
  z-index: 0;
}

.home-slider,
.home-slider .owl-item img {
  width: 100%;
  height: 100%;
}

.home-slider .owl-item .item img {
  max-height: 90vh;
  object-fit: cover;
}

@media (max-width: 991px) {
  .home-slider .owl-item .item img {
      max-height: 420px;
  }
}

.main-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.8);
}

.main-table {
  overflow: hidden;
  display: table;
  width: 100%;
  height: 100%;
}

.main-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.main-slider div.main-content {
  position: relative;
  max-width: 720px;
  width: 100%;
  margin-top: 120px;
}

.main-slider .text-left {
  margin-right: auto;
}

.main-slider .text-center {
  margin: auto;
}

.main-slider .text-right {
  margin-left: auto;
}

.main-content h4 {
  margin-bottom: 2px;
  position: relative;
  font-weight: 600;
  font-size: 50px;
  font-family: var(--bs-font-title);
}

.main-content h1 {
  font-size: 45px;
  margin-bottom: 16px;
}

.main-content p {
  font-weight: 400;
  font-size: 18px;
  margin-bottom: 28px;
}

.main-content .btn:not(.btn-play) {
  margin-right: 18px;
}

.banner-area {
  width: 100%;
  position: relative;
  z-index: 1;
  height: auto;
  display: block;
  min-height: 260px;
  background-size: 100%;
  background: url(../images/menus.jpg) no-repeat fixed center center / cover rgb(0 0 0 / 0.7);
  background-blend-mode: multiply;
}

.banner-content {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  height: max-content;
  padding: 30px;
  min-height: 147px;
  color: #fff;
  position: relative;
  margin-top: 270px;
  margin-bottom: 100px;
  padding: 30px 60px;
  max-width: 100%;
  width: max-content;
  border-radius: 4px;
}

.banner-heading {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  width: 100%;
  text-align: center;
  margin-bottom: 16px;
  max-width: 100%;
}

.banner-heading h2 {
  font-size: 45px;
  line-height: 1.1;
  margin-bottom: 0;
}

.btn.btn-play {
  text-decoration: none;
  color: #fff;
  vertical-align: middle;
  box-shadow: none;
}

.btn.btn-play span.btn {
  vertical-align: baseline;
  text-align: center;
  width: 38px;
  height: 38px;
  padding: 0;
  position: relative;
  z-index: 0;
  line-height: 38px;
}

.btn.btn-play span.btn:after,
.btn.btn-play span.btn:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 50%;
  border: 1px solid #fff;
}

.btn.btn-play span.btn:before {
  -webkit-animation: ripple 2s linear infinite;
  animation: ripple 2s linear infinite;
}

.btn.btn-play span.btn:after {
  -webkit-animation: ripple 2s linear 1s infinite;
  animation: ripple 2s linear 1s infinite;
}

.btn.btn-play i {
  margin-left: 4px;
}

.owl-carousel {
  position: relative;
  z-index: 0;
}

.home-slider .owl-nav {
  margin: 0;
}

.home-slider div.owl-nav button[class*='owl-'] {
  position: absolute;
  margin: auto 0;
  font-size: 12px;
  opacity: 1;
}

.home-slider .owl-nav .owl-prev {
  right: auto;
  left: 15%;
}

.home-slider .owl-nav .owl-next {
  left: auto;
  right: 15%;
}

.home-slider.owl-theme div.owl-nav [class*='owl-'] img {
  width: 17px;
}

.owl-theme div.owl-nav [class*='owl-'] {
  width: 25px;
  height: 25px;
  line-height: 25px;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  position: relative;
  border-radius: 100px;
  outline: none;
  color: #fff;
  background-color: var(--bs-primary);
  box-shadow: var(--bs-shadow);
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}

.owl-theme div.owl-nav [class*='owl-'] img {
  width: 22px;
  margin: auto;
}

.owl-theme:not(.home-slider) .owl-nav {
  width: 100%;
  margin: 25px auto 0 auto;
}

.owl-theme .owl-nav button[class*='owl-']:hover {
  color: #fff;
  background-color: var(--bs-primary);
}

.owl-theme .owl-nav button[class*='owl-'] i {
  color: #fff;
  position: relative;
  z-index: 1;
}

.owl-theme .owl-nav .owl-prev i {
  margin-left: -1px;
}

.owl-theme .owl-nav .owl-next i {
  margin-right: -2px;
}

.home-slider-thumbs {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-height: 155px;
  max-width: 730px;
}

.owl-carousel.home-slider-thumbs .owl-stage {
  margin: 0 auto;
}

.home-slider-thumbs .owl-item {
  padding: 25px 0 0;
  text-align: center;
}

.home-slider-thumbs .item {
  width: 130px;
  height: 130px;
  position: relative;
  z-index: 0;
  display: inline-block;
}

.home-slider-thumbs .thumb-content .price {
  position: absolute;
  top: 0px;
  left: 50%;
  right: 50%;
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 2.15;
  background-color: var(--bs-primary);
  border-radius: 100px;
  font-size: 22px;
  letter-spacing: -1px;
  transform: translate(-50%, -50%);
  transition: 0.5s all ease;
  word-break: keep-all;
}

.home-slider-thumbs .owl-item.active.current .price {
  background-color: #fdc50e;
}

.home-slider-thumbs .thumb-content img {
  width: 130px;
  height: 130px;
  border: 4px solid #fff;
  border-radius: 100%;
  object-fit: cover;
  display: inline-block;
}

.hr-line {
  display: inline-block;
  clear: both;
}
/* Slider Style End */

/* Menu Style Start */
.main-header {
  position: relative;
  top: auto;
  right: 0;
  left: 0;
  width: 100%;
  border-top: 0;
  margin: 0 auto;
  z-index: 99;
  display: flex;
  flex-direction: column;
  transition: min-height 0.3s ease;
  background: var(--bs-secondary);
  border-bottom: 1px solid rgb(108 117 125 / 0.6);
  height: 136px;
}
@media (min-width: 992px) {
  .main-header {
    position: absolute;
    background: transparent;
    border-bottom: 0;
  }
}
.top-header {
  border-bottom: 1px solid rgb(108 117 125 / 0.6);
}
.social-list {
  display: inline-block;
  margin: 0;
  line-height: 58px;
}
.contact-area {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 10px;
}
.contact-area:first-child {
  padding-left: 0;
}
.social-list ul {
  position: relative;
  z-index: 0;
}
.social-list li {
  display: inline-block;
  list-style: none;
  position: relative;
}
.social-list li:not(:last-child) {
  margin-right: 5px;
}
.social-list li a,
.contact-icon {
  color: var(--bs-primary);
  background-color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 28px;
  border-radius: 100%;
  overflow: hidden;
  display: inline-flex;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  font-weight: 500;
  position: relative;
  z-index: 0;
  margin-left: auto;
  text-shadow: -0.15px -0.15px 0 transparent, 0.15px 0.15px transparent;
}
.social-list li a i,
.contact-area i {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  vertical-align: middle;
}

.contact-area .text,
.contact-area .text a {
  color: var(--bs-white);
}
.contact-info .text {
  font-size: 14px;
  margin: 0 5px;
}
.main-navigation {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgb(108 117 125 / 0.6);
}
.main-navbar ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-navbar ul .nav-link {
  color: var(--bs-white);
  line-height: 101px;
  font-size: 20px;
  font-weight: normal;
  text-wrap: nowrap;
  white-space: nowrap;
}
.main-navigation ul li {
  padding: 20px 10px;
}
.main-navigation ul li a {
  color: var(--bs-white);
  padding: inherit;
  white-space: nowrap;
}
.main-navigation ul li a:hover {
  transform: scale(1.2);
  transition: var(--bs-transition)
}
.navbar, .nav-expanded {
  padding: 0;
  height: 136px;
}
.navbar.nav-expanded {
  width: 100%;
}
.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: inherit;
}
.navbar-toggler {
  width: inherit;
  height: inherit;
  display: block;
  border-radius: 4px;
  padding: 0 7px;
  position: relative;
  z-index: 1;
  border: 2px solid var(--bs-primary-light);
  background-color: var(--bs-primary);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF-8, <svg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'> <path stroke='rgba(0, 0, 0, 0.5)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/> </svg>");
}
.hamburger-menu {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  border-radius: 0;
  overflow: hidden;
}
.hamburger-menu div:first-child {
  margin-top: 0px;
}
.hamburger-menu div {
  height: 3px;
  width: 100%;
  margin: 0 0 5px;
  background: #fff;
}
.hamburger-menu div, .hamburger-menu .meat, .hamburger-menu .bottom-bun {
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}
.hamburger-menu div:last-child {
  margin-bottom: 0;
}
.main-navigation .nav-expanded ul {
  position: absolute;
  top: 136px;
  bottom: 0;
  left: 0;
  right: 0;
  height: max-content;
  background: var(--bs-white);
  width: 100%;
}
.navbar-nav {
  transition: var(--bs-transition);
}
.main-navigation .nav-expanded ul li {
  padding: 10px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.main-navigation .nav-expanded .nav-link {
  color: var(--bs-black);
}
.is-sticky-menu {
  background-color: var(--bs-black);
  position: fixed;
  top: -1px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  animation: 1s ease-in-out 0s normal none 1 running fadeInDown;
}

/* Menu Style End */

/* Button Style Start */
.btn-white {
  background-color: #fff;
  color: var(--bs-secondary-dark);
}

.btn-white:hover,
.btn-white:focus {
  background-color: var(--bs-primary);
}

.btn-border-white {
  color: #fff;
  border-color: #fff;
}

.btn-border-white:hover,
.btn-border-white:focus {
  background-color: #fff !important;
  color: var(--bs-secondary) !important;
}

/* Button Style End */

/* About Style Start */
.about-section, .job-section {
  position: relative;
  z-index: 0;
  padding: 96px 0;
}
.about-heading h2, .contact-details-section h2, .job-section h2 {
  font-family: var(--bs-font-title);
  font-size: 50px;
  margin-bottom: 16px;
}
p {
  line-height: 32px;
  font-size: 18px;
}
.about-summary {
  background-color: var(--bs-secondary);
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 16px;
  outline: 2px dashed #fff;
  outline-offset: -10px;
  line-height: 1.1;
  line-height: 24px;
}

.about-summary h3 {
  font-size: 60px;
  color: var(--bs-primary);
  line-height: 1;
  font-weight: 700;
}
/* About Style End */

/* Shape Style Start */
/*===== 08. Shapes =====*/

.shapes-section {
  position: relative;
  z-index: 0;
}

.lg-shape1 {
  position: absolute;
  left: 18%;
  top: 10%;
  z-index: -1;
}

.lg-shape1 img {
  -webkit-animation: moveleftbounce 5s linear infinite;
  animation: moveleftbounce 5s linear infinite;
}

.lg-shape2 {
  position: absolute;
  right: 17%;
  top: 10%;
  z-index: -1;
}

.lg-shape2 img {
  -webkit-animation: moveleftbounce 5s linear infinite;
  animation: moveleftbounce 5s linear infinite;
}

.lg-shape3 {
  position: absolute;
  left: 16%;
  bottom: 1.5%;
  z-index: -1;
}

.lg-shape3 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape4 {
  position: absolute;
  right: 20%;
  bottom: 6%;
  z-index: -1;
}

.lg-shape4 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape5 {
  position: absolute;
  left: -1.2%;
  bottom: 1.2%;
  z-index: -1;
}

.lg-shape5 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape6 {
  position: absolute;
  right: 1.5%;
  top: 7%;
  z-index: -1;
}

.lg-shape6 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape7 {
  position: absolute;
  top: 5%;
  left: 19%;
  z-index: -1;
}

.lg-shape7 img {
  -webkit-animation: moveleftbounce 5s linear infinite;
  animation: moveleftbounce 5s linear infinite;
}

.lg-shape8 {
  position: absolute;
  top: 12%;
  left: 43%;
  z-index: -1;
}

.lg-shape8 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape9 {
  position: absolute;
  top: 3%;
  right: 17%;
  z-index: -1;
}

.lg-shape9 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape10 {
  position: absolute;
  bottom: 29%;
  left: 17%;
}

.lg-shape10 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape11 {
  position: absolute;
  bottom: 14%;
  left: -1.5%;
  z-index: -1;
}

.lg-shape11 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape12 {
  position: absolute;
  top: 12%;
  right: -3%;
  z-index: -1;
}

.lg-shape12 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape13 {
  position: absolute;
  top: 5%;
  left: 0;
  z-index: -1;
}

.lg-shape13 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

.lg-shape14 {
  position: absolute;
  top: 5%;
  right: 0;
  z-index: -1;
}

.lg-shape14 img {
  -webkit-animation: bounce_one 5s linear infinite;
  animation: bounce_one 5s linear infinite;
}

/*===== // =====*/
/* Shape Style End */

/* Footer Style Start */
.main-footer {
  background: url(../images/footer_bg.jpg) no-repeat fixed center center / cover
    rgb(0 0 0 / 0.7);
  background-blend-mode: multiply;
  color: #fff;
  overflow: hidden;
}
.main-footer .footer-container {
  padding: 60px 0 60px;
}
.main-footer .footer-copyright {
  padding: 25px 0;
}
.main-footer .footer-title {
  color: #fff;
  padding: 0 0 10px;
  margin-bottom: 32px;
  display: block;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  text-align: left;
  letter-spacing: 0.35px;
  word-break: break-all;
  font-weight: 500;
}
.main-footer .footer-title::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 101px;
  height: 2px;
  background-color: #fff;
  z-index: -1;
}
.main-footer .footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 51px;
  height: 2px;
  background-color: var(--bs-primary);
  z-index: -1;
}
.main-footer .logo {
  margin-bottom: 16px;
}

.main-footer > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}

.cat-list li a {
  position: relative;
  z-index: 0;
  text-decoration: none;
  font-weight: 500;
  color: #fff;
  display: block;
  margin-bottom: 16px;
  width: max-content;
}

.tag-list a {
  font-size: 16px !important;
  display: inline-block;
  line-height: 1.5;
  padding: 5.5px 16px;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  color: var(--bs-secondary);
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgb(0 0 0 / 5%);
  margin-bottom: 16px;
}
.main-footer .footer-copyright {
  border-top: 1px solid rgb(108 117 125 / 0.6);
  padding: 25px 0;
  font-size: 18px;
}

.timing-container {
  padding: 22px 16px;
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(108, 117, 125, 0.6);
  border-radius: 4px;
}
.timing-container .icon {
  font-size: 50px;
  width: 60px;
  height: 60px;
  color: #fff;
  margin-right: 17px;
}
.icon .location {
  animation: jump 3s linear infinite;
}
/* Footer Style End */

/* Special Menu Style End */
.special-menu-section {
  background: url(../images/special-menu_bg.jpg) no-repeat fixed center center /
    cover rgb(0 0 0 / 0.7);
  background-blend-mode: multiply;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 96px 0;
}

.special-menu-section h2, .nameste-container h2 {
  font-family: var(--bs-font-title);
  color: var(--bs-white);
  font-size: 45px;
  font-weight: 500;
  text-transform: inherit;
  font-style: inherit;
  text-decoration: inherit;
}
.nameste-container h2 {
  color: var(--bs-primary);
}
.special-menu-item {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 0;
  padding: 20px;
  border: 1px solid transparent;
  border-color: rgba(108, 117, 125, 0.6);
  background-color: rgba(0, 0, 0, 0.20);
  transition: var(--bs-transition);
}
.special-menu-thumb {
  flex-shrink: 0;
  margin-right: 20px;
  max-width: 115px;
}
.special-menu-thumb img {
  border-radius: 100%;
}
.special-menu-caption {
  flex-basis: 100%;
}

.special-menu-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px dashed var(--bs-secondary);
  border-bottom-color: #fff;
  padding-bottom: 16px;
}
.special-menu-description {
  margin-top: 19px;
  color: #616e7d;
}
.special-menu-description, .special-menu-heading h5 a {
  color: #fff;
}
.special-menu-heading .price {
  font-size: 20px;
  font-weight: 700;
  margin-left: 6px;
  white-space: nowrap;
  -webkit-transition: var(--bs-transition);
  transition: var(--bs-transition);
}

.text-primary {
  color: var(--bs-primary);
}
.special-menu-heading h5, .special-menu-description p {
  margin-bottom: 0;
}
.special-menu-section figure {
  margin: 0;
}
/* Special Menu Style End */

/* Filter Style End */
.st-tab-filter {
  width: 100%;
  margin: -1.25rem 0 1.875rem;
  padding: 0;
  display: block;
}

.st-tab-filter a {
  display: inline-block;
  padding: 9px 36px;
  border: 0 dashed var(--bs-secondary);
  color: var(--bs-secondary);
  margin-top: 30px;
  margin-left: 30px;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 0;
}

.st-tab-filter a:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-style: dashed;
  border-color: inherit;
  border-radius: 4px;
  transition: .5s;
  z-index: -1;
}

.st-tab-filter a:first-child {
  margin-left: 0;
}

.text-black {
  color: var(--bs-black);
}

.st-tab-filter.text-white a {
  color: #fff;
  border-color: #fff;
}

.st-tab-filter.text-white a.active,
.st-tab-filter a.active,
.st-tab-filter.text-white a:hover,
.st-tab-filter a:hover,
.st-tab-filter.text-white a:focus,
.st-tab-filter a:focus {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
  color: #fff;
}

.st-tab-filter.text-white a.active:before,
.st-tab-filter a.active:before,
.st-tab-filter.text-white a:hover:before,
.st-tab-filter a:hover:before,
.st-tab-filter.text-white a:focus:before,
.st-tab-filter a:focus:before {
  border: 20px dotted var(--bs-primary);
}
/* Filter Style End */

/* Form Start */
.contact-form label {
  color: var(--bs-white);
  margin-bottom: 10px;
}
.contact-form .form-control {
  padding: 10px;
}
.logo {
  width: 120px;
}
/* Form End */

.job-section ul {
  font-size: 18px;
    line-height: 26px;
    list-style: disc;
    padding-left: 30px;
}
.job-section ul li {
  margin-bottom: 20px;
}

ol.tc {
  list-style: decimal;
  margin-left: 15px;
  line-height: 38px;
  font-size: 18px;
}
.details-contents ul {
  font-size: 18px;
  line-height: 28px;
}
.flex-1 {
  flex: 1;
}
.content p {
  text-align: justify;
}
.text-logo {
  color: var(--bs-red);
}
.text-copyright {
  color: var(--bs-orange);
}