*
{
    margin: 0px;
    padding: 0px;
}
@font-face {
    font-family: poppins_light;
    src: url('../fonts/poppins/Poppins-Light.ttf');
}
@font-face {
    font-family: poppins_regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf');
}
@font-face {
    font-family: poppins_medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf');
}
@font-face {
    font-family: poppins_semibold;
    src: url('../fonts/poppins/Poppins-SemiBold.ttf');
}
@font-face {
    font-family: poppins_bold;
    src: url('../fonts/poppins/Poppins-Bold.ttf');
}
:root
{
    --white: #fff;
    --black: #000000;
    --primary-color: #1D6499;
    --secondary-color: #85AB30;
    --poppins_light: poppins_light;
    --poppins_regular: poppins_regular;
    --poppins_medium: poppins_medium;
    --poppins_semibold: poppins_semibold;
    --poppins_bold: poppins_bold;
}
body
{
  position: relative;
  width: 100%;
}

h2{
    font-size: 2.2rem !important;
    font-family: var(--poppins_semibold);
}
h3{
    font-size: 1.2rem !important;
}
p
{
  font-size: 1rem !important;
  font-family: var(--poppins_regular);
}
.p-btn
{
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 30px;
    border-radius: 30px;
    border: none;
}
a.nav-link {
    color: var(--black) !important;
    font-family: var(--poppins_light);
    font-size: 16px !important;
    font-weight: 300;
}
a.nav-link.active
{
   color: var(--primary-color) !important;
   border-bottom: 1px solid var(--primary-color);
}
.navbar-expand-lg .navbar-nav .nav-link
{
    padding: 1rem !important;
}






/* Banner Section Start */
header .item {
    height: 100vh;
    position: relative;
  }
  header .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  header .item .cover {
    padding: 75px 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
  }
  header .item .cover .header-content {
    position: relative;
    padding: 56px;
    overflow: hidden;
  }
  header .item .cover .header-content .line {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    border: 9px solid #fff;
    -webkit-clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
    clip-path: polygon(0 0, 60% 0, 36% 100%, 0 100%);
  }
  header .item .cover .header-content h2 {
    font-weight: 300;
    font-size: 35px;
    color: #fff;
  }
  header .item .cover .header-content h1 {
    font-size: 56px;
    font-weight: 600;
    margin: 5px 0 20px;
    word-spacing: 3px;
    color: #fff;
  }
  header .item .cover .header-content h4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 36px;
    color: #fff;
  }
  header .owl-item.active h1 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
  }
  header .owl-item.active h2 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
  }
  header .owl-item.active h4 {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 0.3s;
  }
  header .owl-item.active .line {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 0.3s;
  }
  header .owl-nav .owl-prev {
    position: absolute;
    left: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
  }
  header .owl-nav .owl-prev span {
    font-size: 1.6875rem;
    color: #fff;
  }
  header .owl-nav .owl-prev:focus {
    outline: 0;
  }
  header .owl-nav .owl-prev:hover {
    background: #000 !important;
  }
  header .owl-nav .owl-next {
    position: absolute;
    right: 15px;
    top: 43%;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    background: rgba(0, 0, 0, 0.5) !important;
    width: 40px;
    cursor: pointer;
    height: 40px;
    position: absolute;
    display: block;
    z-index: 1000;
    border-radius: 0;
  }
  header .owl-nav .owl-next span {
    font-size: 1.6875rem;
    color: #fff;
  }
  header .owl-nav .owl-next:focus {
    outline: 0;
  }
  header .owl-nav .owl-next:hover {
    background: #000 !important;
  }
  header:hover .owl-prev {
    left: 0px;
    opacity: 1;
  }
  header:hover .owl-next {
    right: 0px;
    opacity: 1;
  }
  /* Banner Section Start */
  .know-more .en-cover
  {
    border-radius: 30px;
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.5);
    padding: 30px;
  }
.my-section
{
    margin-top: 90px;
}
.index-about img
{
    width: 100%;
    box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
}
.our-menu .col-md-3
{
  margin-top: 40px;
}
.menu-card
{
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}
.menu-card img
{
  width: 100%;
  border-radius: 15px;
}
.menu-card div
{
  padding: 10px;
}
.menu-card div p
{
  margin-bottom: 0rem !important;
}
.menu-card div p span
{
  color: var(--primary-color);
  font-size: 18px !important;
  font-weight: 800;
}
.earning-yourself ul
{
  padding-left: 0rem !important;
  list-style: none;
  margin-top: 20px;
}
.earning-yourself ul li
{
  font-size: 1.2rem !important;
  font-family: var(--poppins_regular);
  margin-top: 5px;
}
.earning-yourself ul li svg
{
  color: var(--secondary-color);
}
.earning-yourself h3
{
  color: var(--primary-color);
  font-weight: bold;
}
footer
{
  background-color: var(--primary-color);
  padding: 80px 0px 0px 0px;
}
.copy-right-mc
{
  background-color: var(--secondary-color);
  padding: 5px 0px;
}
.copy-right-mc p
{
  margin-bottom: 0rem !important;
  font-size: 0.8rem !important;
}
footer p
{
  color: var(--white);
  font-size: 1rem !important;
}
footer p b
{
  color: var(--white);
  font-size: 1.3rem !important;
}
footer ul
{
   list-style: none;
   padding-left: 0px !important;
}
footer ul li
{
  margin-top: 5px;
}
footer ul li a
{
  text-decoration: none;
  color: var(--white);
  font-family: var(--poppins_regular);
  font-size: 1rem !important;
}
footer ul li a:hover
{
  color: var(--white);
}
.inner-page-banner
{
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/inner-page-banner.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  padding: 100px 0px;
  background-size: cover;
}
.inner-page-banner h1
{
  color: var(--white);
  font-family: var(--poppins_semibold);
}
.uf-mc img
{
  width: 100%;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}
.uf-2
{
  background-color: rgb(241,248,243);
  padding: 80px 0px;
}
.uf-2-card
{
  background-color: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0px 0px 15px -3px rgba(0, 0, 0, 0.1);
}
.uf-2 .row .col-md-4:nth-child(2) .uf-2-card
{
  background-color: var(--primary-color);
}
.uf-2 .row .col-md-4:nth-child(2) .uf-2-card
{
  color: #fff;
}
.uf-3
{
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../images/uf-banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0px;
}
.uf-3 h2
{
  color: #fff;
  text-align: center;
}
.ufr-card
{
  padding: 10px;
  border-radius: 15px;
}
.ufr-card img
{
  width: 100%;
  border-radius: 15px 15px 0px 0px;
}
.ufr-content
{
  padding: 10px;
}





#gallery {
  padding-top: 40px;
}
@media screen and (min-width: 991px) {
  #gallery {
    padding: 60px 30px 0 30px;
 }
}
.img-wrapper {
  position: relative;
  margin-top: 15px;
}
.img-wrapper img {
  width: 100%;
}
.img-overlay {
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: 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: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#overlay img {
  margin: 0;
  width: 80%;
  height: auto;
  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;
  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;
  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;
  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;
 }
}
.navbar-brand img
{
  width: 100px;
}
.footer-logo img
{
  filter: brightness(0) invert(1);
  width: 100px;
}
.shop-card
{
  border: 2px dashed #477a7b;
  border-radius: 15px;
}
.shop-card img
{
  width: 100%;
  border-radius: 15px 15px 0px 0px;
}
.shop-card p
{
  margin-bottom: 0rem !important;
  text-align: center;
  padding: 20px 0px;
  font-size: 1.3rem !important;
  font-weight: 600;
}
.row .col-md-4:nth-child(1) img {
  width: 100%;
  border-radius: 10px 10px 0px 10px;
}
.row .col-md-4:nth-child(3) img {
  width: 100%;
  border-radius: 10px 10px 10px 0px;
}
.memu-page .row .col-md-4 ul{
  margin-top: 20px;
}
.memu-page .row .col-md-4 ul li {
  font-size: 1.2rem;
  font-weight: 500;
}

.my-form-control
{
  width: 100%;
  height: 50px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
.my-form-control[placeholder]
{
  padding-left: 10px;
}
.my-form-control-btn
{
  background-color: #477A7B;
  border: 1px solid #477A7B;
  padding: 10px 30px;
  border-radius: 5px;
  margin-top: 15px;
}
.my-form-control-text
{
  width: 100%;
  height: 100px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
.my-form-control-text[placeholder]
{
  padding-left: 10px;
}
.contact-u-mc img
{
  box-shadow: 0px 0px 5px 0px rgba(87,87,87,1);
  border-radius: 15px;
}

.banner-row
{
  display: grid;
  grid-template-columns: 40% 60%;
}
.banner-row img
{
  width: 100%;
}
.banner-text-mc
{
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
}
.banner-text-mc h2
{
  color: var(--white);
  font-size: 1rem !important;
}
.banner-text-mc
{
  padding-left: 50px;
  padding-right: 30px;
}
.banner-text-mc h1
{
  color: var(--white);
  font-size: 2.3rem !important;
}
.banner-text-mc h4
{
  color: var(--white);
  font-size: 1rem !important;
  margin-top: 20px;
}
.item1 {
  order: 1;
}
.item2 {
  order: 2;
}
.contact-u-mc ul
{
  list-style: none;
  padding-left: 0rem !important;

}
.form-cover
{
  box-shadow: 0px 0px 5px 0px rgba(143,143,143,1);
  padding: 20px;
  border-radius: 10px;
  margin-right: -30px;
}
.contact-u-mc ul li
{
  display: flex;
  align-items: center;
}
.contact-u-mc ul li span
{
  padding: 0px 0px 0px 15px;
}
.contact-u-mc ul svg
{
  color: var(--primary-color);
  font-size: 1.5rem !important;
}
















@media only screen and (min-width: 0px) and (max-width: 768px)
{
  p,h2,h3,h5,h1{
    text-align: center;
  }
  ul{
    display: grid;
    justify-content: center
  }

  footer li {
    text-align: center;
  }

  header .item .cover .header-content h2 {
    font-size: 18px !important;
  }
  header .item .cover .header-content h1 {
    font-size: 26px !important;
    display: none;
  }
  header .item .cover .header-content h4 {
    font-size: 14px !important;
    display: none;
  }
  .banner-row
  {
    grid-template-columns: 100%;
  }
  .banner-text-mc
  {
    padding: 50px 10px !important;
    text-align: center;
  }
  .item1 {
    order: 2;
  }
  .item2 {
    order: 1;
  }
  .form-cover
  {
    margin-right: 0px;
    margin-bottom: 30px;
  }

}