/* ======================== variables ============================ */
/* ======================== variables ============================ */
/*============ Google fonts ============*/
 @import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
 
 
 @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
 
 
 
/*======= CSS variables =======*/
/*======= Main CSS =======*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
font-family: 'Poppins', sans-serif;
font-family: 'Roboto Slab', serif;

}

body {
font-family: 'Poppins', sans-serif;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: #54662e;
  border-radius: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Roboto Slab', serif !important;

}


p{
    font-family: 'Poppins', sans-serif;
}

.btn {
  color: #fff;
  font-family: "Roboto Flex", sans-serif;
  font-size: 18px !important;
  font-weight: 100 !important;
  text-transform: capitalize !important;
  letter-spacing: 1px;
  padding: 13px 24px !important;
  margin: 0 0px;
  border-radius: 40px !important;
  border: 2px solid #9dc33b !important;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .btn {
    padding: 10px 17px !important;
  }
}
@media (max-width: 991px) {
  .btn {
    padding: 10px 15px !important;
  }
}
@media (max-width: 639px) {
  .btn {
    padding: 8px 11px !important;
  }
}

.btn:focus {
  color: #fff;
}

.btn:hover {
  color: #6c207b;
  box-shadow: 0 0 10px -5px #6c207b;
}

.btn:before {
  content: "";
  background: #6c207b;
  width: 100%;
  height: 100%;
  transform-origin: 50% 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.2s cubic-bezier(0.7, 0, 0.2, 1);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.btn:hover:before {
  transition-duration: 0.3s;
  -webkit-clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 0 0, 0% 100%);
}

.btn span {
  display: block;
  position: relative;
}
@media (max-width: 1199px) {
  .btn span {
    font-size: 17px;
  }
}
@media (max-width: 991px) {
  .btn span {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .btn span {
    font-size: 13px;
  }
}

.btn:hover span {
  -webkit-animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
          animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

@-webkit-keyframes MoveUpInitial {
  100% {
    transform: translate3d(0, -105%, 0);
  }
}

@keyframes MoveUpInitial {
  100% {
    transform: translate3d(0, -105%, 0);
  }
}
@-webkit-keyframes MoveUpEnd {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes MoveUpEnd {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    margin-bottom: 30px;
  }
}
.section-home {
  position: relative;
  min-height: 100vh;
  background: url(bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-home:before {
  content: "";
  position: absolute;
  background: linear-gradient(to top, #23252B, transparent);
  width: 100%;
  height: 80px;
  bottom: 0;
}

.section-home h1 {
  color: #fff;
  font-size: 10vw;
  font-weight: 800;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  opacity: 0.3;
}

.section-two {
  min-height: 100vh;
  background: #23252B;
}

.section-two h2 {
  color: #fff;
  font-size: 3em;
  font-weight: 700;
  margin: 30px 0;
}

.section-two p {
  color: #fff;
  font-size: 1em;
  margin: 30px 0;
}

header {
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  /*box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);*/
  padding: 10px 100px;
  transition: 0.6s;
}

header .logo {
  color: #fff;
  font-size: 1.8em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
}
header .logo img {
  width: 200px;
}

header .navigation {
  position: relative;
  transition: 0.6s;
  transition-property: line-height;
}
header .navigation .social {
  display: flex;
  justify-content: end;
  align-items: baseline;
  margin: 0 0 7px 0;
}
@media (max-width: 1199px) {
  header .navigation .social {
    display: none;
  }
}
header .navigation .social li {
  background: #4b0060;
  width: 27px;
  height: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 5px;
}
header .navigation .social li a {
  color: #ffffff;
  font-size: 14px;
      font-family: 'Poppins';
}

header.sticky .navigation {
  line-height: 60px;
}

header .navigation .menu {
  position: relative;
  display: flex;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: 0;
}

.menu-item > a {
  color: #333;
  font-size: 1em;
  text-decoration: none;
  margin: 20px;
  padding: 25px 0;
      font-family: 'Poppins';
}

.menu-item > a:hover {
  color: #333;
  transition: 0.3s;
  text-decoration: none;
}

.menu-item .sub-menu {
  position: fixed;
  background: #54662e;
  top: 70px;
  line-height: 40px;
  list-style: none;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s;
  transition-property: transform, opacity;
  width: 86%;
  left: 0;
  right: 0;
  margin: 0 auto;
 padding: 30px 30px 30px 30px;
}
.menu-item .sub-menu h5 {
  position: relative;
}
.menu-item .sub-menu h5 a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  font-family: 'Poppins';
}
.menu-item .sub-menu h5 a:hover {
  text-decoration: none;
  color: #fff;
}
.menu-item .sub-menu h5::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 1px;
  background: #fff;
  bottom: -5px;
  left: 0;
}
.menu-item .sub-menu ul li {
  list-style: none;
  line-height: 28px;
}
.menu-item .sub-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  font-family: 'Poppins';
}
.menu-item .sub-menu ul li a:hover {
  text-decoration: none;
  color: #fff;
}

header.sticky .menu-item .sub-menu {
  top: 60px;
}

.menu-item:hover .sub-menu {
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
}

.menu-item .sub-menu .sub-item {
  position: relative;
  padding: 7px 0;
  cursor: pointer;
  box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
}

.menu-item .sub-menu .sub-item a {
  color: #fff;
  font-size: 1em;
  text-decoration: none;
  padding: 15px 30px;
}

.menu-item .sub-menu .sub-item:hover {
  background: #4b0060;
}

.menu-item .sub-menu .sub-item:last-child:hover {
  border-radius: 0 0 8px 8px;
}

.more .more-menu {
  position: absolute;
  background: #4b0060;
  list-style: none;
  top: 0;
  left: 100%;
  white-space: nowrap;
  border-radius: 0 8px 8px 8px;
  overflow: hidden;
  pointer-events: none;
  transform: translateY(20px);
  opacity: 0;
  transition: 0.3s;
  transition-property: transform, opacity;
}

.more:hover .more-menu {
  pointer-events: all;
  transform: translateY(0);
  opacity: 1;
}

.more .more-menu .more-item {
  padding: 7px 0;
  box-shadow: inset 0px -30px 5px -30px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.more .more-menu .more-item:hover {
  background: #4080EF;
}

.menu-btn {
  display: none;
}

@media (max-width: 1060px) {
  header .navigation .menu {
    position: fixed;
    display: block;
    background: #f7f7f7;
    min-width: 350px;
    height: 100vh;
    top: 0;
    right: -100%;
    padding: 80px 20px;
    visibility: hidden;
    overflow-y: auto;
    transition: 0.5s;
    transition-property: right, visibility;
  }
  header.sticky .navigation {
    line-height: 75px;
  }
  header .navigation .menu.active {
    right: 0;
    visibility: visible;
  }
  .menu-item {
    position: relative;
    padding: 0 0 20px 0;
  }
  .menu-item .sub-menu {
    opacity: 1;
    position: relative;
    top: 0;
    transform: translateX(10px);
  
    border-radius: 5px;
    overflow: hidden;
    display: none;
    padding: 20px 20px;
  }
  header.sticky .menu-item .sub-menu {
    top: 0;
  }
  .menu-item:hover .sub-menu {
    transform: translateX(10px);
    background: #54662e;
  }
  .menu-item .sub-menu .sub-item {
    box-shadow: none;
  }
  .menu-item .sub-menu .sub-item:hover {
    background: none;
  }
  .menu-item .sub-menu .sub-item a:hover {
    color: #4080EF;
    transition: 0.3s;
  }
  .more .more-menu {
    opacity: 1;
    position: relative;
    left: 0;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    display: none;
  }
  .more .more-menu .more-item {
    box-shadow: none;
  }
  .more .more-menu .more-item:hover {
    background: none;
  }
  .more .more-menu .more-item a {
    margin-left: 20px;
  }
  .close-btn {
    position: absolute;
    background: url(../img/close.png) no-repeat;
    width: 40px;
    height: 40px;
    background-size: 25px;
    background-position: center;
    top: 0;
    left: 0;
    margin: 25px;
    cursor: pointer;
  }
  .menu-btn {
    background: url(../img/menu.png) no-repeat;
    width: 40px;
    height: 40px;
    background-size: 30px;
    background-position: center;
    cursor: pointer;
    display: block;
  }
  header {
    padding: 15px 20px;
  }
  header.sticky {
    padding: 10px 20px;
  }
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Bold.woff2") format("woff2"), url("../fonts/Raleway-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-ExtraBold.woff2") format("woff2"), url("../fonts/Raleway-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Regular.woff2") format("woff2"), url("../fonts/Raleway-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Light.woff2") format("woff2"), url("../fonts/Raleway-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/Raleway-Medium.woff2") format("woff2"), url("../fonts/Raleway-Medium.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
#top {
  font-weight: bold;
  font-size: 19px;
  bottom: 10px;
  right: 30px;
  border-bottom: 0;
  padding: 10px;
  color: #FFFFFF;
  position: fixed;
}
#top i {
  color: #3a3a38;
  padding: 11px;
  border: 2px solid #3a3a38;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.bredcrums-area {
  background: #54662e;
   padding: 10px 0 10px 0;
}
.bredcrums-area .bred-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding-top: 20px;
}
.bredcrums-area .bred-box a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  padding-right: 20px;
}
.bredcrums-area .bred-box .hm {
    position: relative;
            color: #fff;
            text-decoration: underline;
            font-weight:400;
}
.bredcrums-area .bred-box .hm::after {
  position: absolute;
  content: "/";
  top: 0;
  right: 7px;
}

.banner-area {
  position: relative;
}
.banner-area h1 {
    color: #939f1f;
    text-align: left;
    position: absolute;
    top: 0;
    left: 440px;
    font-size: 5rem;
    font-weight: 300;
    padding: 70px 90px;
}
@media (max-width: 1199px) {
  .banner-area h1 {
    font-size: 3.2rem;
    padding: 50px;
        left: 40px;
  }
}
@media (max-width: 991px) {
  .banner-area h1 {
    font-size: 2.5rem;
    padding: 30px;
        left: 40px;
  }
}
@media (max-width: 639px) {
  .banner-area h1 {
    font-size: 2rem;
    padding: 30px;
        left:80px;
        text-align:center
  }
}


.banner-area h4 {
color: #fff;
    text-align: center;
    position: absolute;
    top: 200px;
    left: 380px;
    font-size: 30px;
    font-weight: 300;
    padding: 70px 90px;
}
@media (max-width: 1199px) {
  .banner-area h4 {
            font-size: 18px;
            padding: 30px;
            left: 40px;
               font-weight: 300;
            top: 85px;

  }
}
@media (max-width: 991px) {
  .banner-area h4 {
            font-size: 14px;
            padding: 30px;
            left: 40px;
               font-weight: 300;
  }
}
@media (max-width: 639px) {
  .banner-area h4 {
      font-size: 12px;
    padding: 0px;
    left: 80px;
    font-weight: 300;
    top: 120px;
  }
}




















.banner-area img {
  width: 100%;
}
@media (max-width: 1199px) {
  .banner-area img {
    height: 330px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .banner-area img {
    height: 220px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 639px) {
  .banner-area img {
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.banner-area.cheese h1 {
bottom: 0;
 
    font-size: 48px;
    top: 0px;
    left: 400px;
    color:#fff;
}
@media (max-width: 1199px) {
  .banner-area.cheese h1 {
    font-size: 3.2rem;
    padding: 50px;
  }
}
@media (max-width: 991px) {
  .banner-area.cheese h1 {
    font-size: 2.5rem;
    padding: 30px;
  }
}
@media (max-width: 639px) {
  .banner-area.cheese h1 {
   font-size: 22px;
    padding: 30px;
    left: 26px;
    top: 34px;
  }
}


.banner-area.cheese h4 {
    bottom: 0;
    font-size: 26px;
    top: 80px;
    left: 490px;
    color: #939f1f;

}
@media (max-width: 1199px) {
  .banner-area.cheese h4 {
    font-size: 3.2rem;
    padding: 50px;
  }
}
@media (max-width: 991px) {
  .banner-area.cheese h4 {
    font-size: 2.5rem;
    padding: 30px;
  }
}
@media (max-width: 639px) {
  .banner-area.cheese h4 {
     font-size: 16px;
    padding: 30px;
    left: 50px;
    top: 70px;
  }
}














.banner-area.natural-cheese h1 {
  bottom: 0;
  top: unset;
  font-size: 4.5rem;
  color: #6c207b;
}
@media (max-width: 1199px) {
  .banner-area.natural-cheese h1 {
    font-size: 3.2rem;
    padding: 50px;
  }
}
@media (max-width: 991px) {
  .banner-area.natural-cheese h1 {
    font-size: 2.5rem;
    padding: 30px;
  }
}
@media (max-width: 639px) {
  .banner-area.natural-cheese h1 {
    font-size: 2rem;
    padding: 30px;
  }
}

.inner-banner-area {
  position: relative;
  margin-bottom: 40px;
}
.inner-banner-area .inner-banner-box {
  position: absolute;
  top: 25%;
  left: 50px;
}
@media (max-width: 1199px) {
  .inner-banner-area .inner-banner-box {
    top: 18%;
  }
}
@media (max-width: 991px) {
  .inner-banner-area .inner-banner-box {
    top: 13%;
  }
}
@media (max-width: 639px) {
  .inner-banner-area .inner-banner-box {
    left: 25px;
    top: 19%;
  }
}
.inner-banner-area .inner-banner-box h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #6c207b;
}
@media (max-width: 1199px) {
  .inner-banner-area .inner-banner-box h3 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .inner-banner-area .inner-banner-box h3 {
    font-size: 1.6rem;
  }
}
@media (max-width: 639px) {
  .inner-banner-area .inner-banner-box h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.inner-banner-area .inner-banner-box a {
  text-decoration: none;
  border: 2px solid #6c207b;
  color: #6c207b;
  padding: 11px 30px;
  font-weight: 600;
  border-radius: 5px;
}
@media (max-width: 639px) {
  .inner-banner-area .inner-banner-box a {
    padding: 8px 20px;
  }
}
.inner-banner-area .inner-banner-box a:hover {
  text-decoration: none;
  background: #6c207b;
  color: #fff;
}
.inner-banner-area img {
  width: 100%;
}
@media (max-width: 639px) {
  .inner-banner-area img {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.inner-banner-area.natu-chees {
  position: relative;
  margin-bottom: 40px;
}
.inner-banner-area.natu-chees .inner-banner-box {
  position: absolute;
  top: 25%;
  left: 80px;
}
@media (max-width: 1199px) {
  .inner-banner-area.natu-chees .inner-banner-box {
    top: 18%;
  }
}
@media (max-width: 991px) {
  .inner-banner-area.natu-chees .inner-banner-box {
    top: 13%;
  }
}
@media (max-width: 639px) {
  .inner-banner-area.natu-chees .inner-banner-box {
    left: 25px;
    top: 19%;
  }
}
.inner-banner-area.natu-chees .inner-banner-box h2 {
  font-size: 4.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
}
@media (max-width: 1199px) {
  .inner-banner-area.natu-chees .inner-banner-box h2 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .inner-banner-area.natu-chees .inner-banner-box h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 639px) {
  .inner-banner-area.natu-chees .inner-banner-box h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.inner-banner-area.natu-chees .inner-banner-box a {
  text-decoration: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 11px 30px;
  font-weight: 600;
  border-radius: 5px;
}
@media (max-width: 639px) {
  .inner-banner-area.natu-chees .inner-banner-box a {
    padding: 8px 20px;
  }
}
.inner-banner-area.natu-chees .inner-banner-box a:hover {
  text-decoration: underline;
  background: rgba(255, 255, 255, 0.3019607843);
  color: #fff;
}
.inner-banner-area.natu-chees img {
  width: 100%;
}
@media (max-width: 639px) {
  .inner-banner-area.natu-chees img {
    height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.main-container {
  top: 80px;
  position: relative;
}
@media (max-width: 1199px) {
  .main-container {
    top: 110px;
  }
}
@media (max-width: 991px) {
  .main-container {
    top: 110px;
  }
}
@media (max-width: 639px) {
  .main-container {
    top: 110px;
  }
}

.choose-category-area h3 {
  font-size: 2.5rem;
  padding: 40px 0;
  text-align: center;
  font-weight: 600;
  color: #6c207b;
}
@media (max-width: 639px) {
  .choose-category-area h3 {
    font-size: 1.9rem;
    padding: 20px 0;
    text-align: center;
    font-weight: 500;
    color: #4b0060;
  }
}
.choose-category-area .choose-category-box {
  position: relative;
  margin-bottom: 30px;
}
.choose-category-area .choose-category-box img {
  width: 100%;
}
.choose-category-area .choose-category-box .box-text {
  position: absolute;
  top: 35%;
  left: 50px;
}
@media (max-width: 639px) {
  .choose-category-area .choose-category-box .box-text {
    left: 25px;
  }
}
.choose-category-area .choose-category-box .box-text h2 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #6c207b;
}
@media (max-width: 639px) {
  .choose-category-area .choose-category-box .box-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
}
.choose-category-area .choose-category-box .box-text a {
  text-decoration: none;
  border: 2px solid #6c207b;
  color: #6c207b;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 5px;
}
.choose-category-area .choose-category-box .box-text a:hover {
  text-decoration: none;
  background: #6c207b;
  color: #fff;
}
.choose-category-area.home h3 {
  font-size: 2.1rem;
  padding: 20px 0;
  text-align: center;
  font-weight: 500;
  color: #6c207b;
}

.sub-footer-area {
  background: #54662e;
  padding: 60px 0;
  border-bottom: 2px solid #54662e;
  padding-bottom: 10px;
}
.sub-footer-area .sub-footer-box ul li {
  list-style: none;
  line-height: 28px;
  color: #fff;
      font-family: 'Poppins';
}
.sub-footer-area .sub-footer-box p {
  color: #fff;
}
.sub-footer-area .sub-footer-box p a {
  text-decoration: none;
  color: rgba(204, 204, 204, 0.9019607843);
  font-size: 15px;
  font-weight: 300;
}
.sub-footer-area .sub-footer-box p a:hover {
  text-decoration: underline;
}
.sub-footer-area .sub-footer-box img {
  width: 200px;
}
@media (max-width: 1199px) {
  .sub-footer-area .sub-footer-box img {
    width: 160px;
  }
}
@media (max-width: 991px) {
  .sub-footer-area .sub-footer-box img {
    width: 130px;
  }
}
@media (max-width: 639px) {
  .sub-footer-area .sub-footer-box img {
    margin-bottom: 20px;
  }
}
.sub-footer-area .sub-footer-box .social {
  display: flex;
  justify-content: end;
  align-items: baseline;
}
@media (max-width: 639px) {
  .sub-footer-area .sub-footer-box .social {
    justify-content: start;
  }
}
.sub-footer-area .sub-footer-box .social li {
  background: #fff;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 8px;
}
.sub-footer-area .sub-footer-box .social li a {
  color: #4b0060;
  font-size: 17px;
}
.sub-footer-area .col-md-3.one {
  display: flex;
}
@media (max-width: 639px) {
  .sub-footer-area .col-md-3.three {
    text-align: left;
  }
}

.footer-area {
  background: #6c207b;
  padding: 30px 0;
}
.footer-area .footer-box h6 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-area .footer-box ul li {
  list-style: none;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.6901960784);
  font-weight: 300;
  font-size: 15px;
}

.cheese-area {
  padding: 0 0 30px 0;
}
.cheese-area h3 {
  font-size: 2.5rem;
  padding: 40px 0;
  text-align: center;
  font-weight: 600;
  color: #6c207b;
}
@media (max-width: 639px) {
  .cheese-area h3 {
    font-size: 1.9rem;
    padding: 20px 0;
    text-align: center;
    font-weight: 500;
    color: #4b0060;
  }
}
.cheese-area .box {
  text-align: center;
  overflow: hidden;
  position: relative;
  margin-bottom: 60px;
    margin-top: -40px;
    padding: 20px;
    background: white;
}
.cheese-area .box:hover {
  text-decoration: underline;
  color: #fff;
}
.cheese-area .box h4 {
 font-size: 18px;
    padding: 0px 0px;
    color: #ab5021;
    position: relative;
    z-index: 100;
    text-align: center;
    padding-top: 20px;
    font-weight: 400;
}
.cheese-area .box h4:hover {

  color: #ab5021;
}
.cheese-area .box img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease 0.1s;
}
.cheese-area .box:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}
.cheese-area .box .box-content {
  width: 100%;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
}
.cheese-area .box .box-content:before {
  content: "";
  height: 5px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(-50%);
  position: absolute;
  top: 55%;
  left: 50%;
  right: 50%;
  transition: all 0.4s;
}
.cheese-area .box:hover .box-content:before {
  opacity: 0.6;
  left: 50px;
  right: 50px;
}
.cheese-area .box .title {
  color: #fff;
  font-size: 27px;
  font-weight: 300;
  text-transform: uppercase;
  margin: 0 0 20px;
  opacity: 0;
  transition: all 0.5s linear 0.2s;
}
.cheese-area .box .post {
  color: #5dff00;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  opacity: 0;
  transition: all 0.5s linear 0.2s;
}
.cheese-area .box:hover .title,
.cheese-area .box:hover .post {
  text-shadow: 0 0 0 rgba(255, 255, 255, 0);
  opacity: 1;
}
.cheese-area .box .icon {
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  transform: translateX(-50%);
  position: absolute;
  bottom: 10px;
  left: 50%;
  transition: all 0.5s ease-in-out;
}
.cheese-area .box:hover .icon {
  opacity: 1;
}
.cheese-area .box .icon li {
  margin: 0 3px;
  display: inline-block;
}
.cheese-area .box .icon li a {
  color: #fff;
  font-size: 15px;
  line-height: 33px;
  width: 35px;
  height: 35px;
  border-radius: 0 0 50% 50%;
  border: 1px solid #5dff00;
  display: block;
  position: relative;
  transition: all 0.5s ease 0s;
}
.cheese-area .box .icon li a:hover {
  background: #5dff00;
  text-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
}
@media only screen and (max-width: 990px) {
  .cheese-area .box {
    margin: 0 0 30px;
  }
}

.about-area {
  padding: 30px 0 0 0;
}
.about-area h2 {
  color: #49005e;
  font-size: 2.5rem;
  font-weight: 400;
}
.about-area p {
  color: #333;
  line-height: 27px;
  font-size: 16px;
}

.slider-area {
  padding: 0 0 60px 0;
}
.slider-area .swiper-slide {
  position: relative;
}
.slider-area .swiper-slide .inner-banner-box {
  position: absolute;
  top: 160px;
  left: 110px;
}
@media (max-width: 1199px) {
  .slider-area .swiper-slide .inner-banner-box {
    left: 120px;
    top: 150px;
  }
}
@media (max-width: 991px) {
  .slider-area .swiper-slide .inner-banner-box {
    left: 110px;
    top: 100px;
  }
}
@media (max-width: 639px) {
  .slider-area .swiper-slide .inner-banner-box {
    left: 100px;
    top: 60px;
  }
}
.slider-area .swiper-slide .inner-banner-box h2 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #6c207b;
}
@media (max-width: 1199px) {
  .slider-area .swiper-slide .inner-banner-box h2 {
    font-size: 3.3rem;
  }
}
@media (max-width: 991px) {
  .slider-area .swiper-slide .inner-banner-box h2 {
    font-size: 3rem;
  }
}
@media (max-width: 639px) {
  .slider-area .swiper-slide .inner-banner-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.slider-area .swiper-slide .inner-banner-box a {
  text-decoration: none;
  border: 2px solid #4b0060;
  color: #4b0060;
  padding: 11px 30px;
  font-weight: 600;
  border-radius: 5px;
}
@media (max-width: 639px) {
  .slider-area .swiper-slide .inner-banner-box a {
    padding: 8px 10px !important;
    font-weight: 300;
    font-size: 12px !important;
  }
}
.slider-area .swiper-slide .inner-banner-box a:hover {
  text-decoration: none;
  background: #4b0060;
  color: #fff;
}
.slider-area .swiper-slide .inner-banner-box.white h2 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
}
@media (max-width: 1199px) {
  .slider-area .swiper-slide .inner-banner-box.white h2 {
    font-size: 3.3rem;
  }
}
@media (max-width: 991px) {
  .slider-area .swiper-slide .inner-banner-box.white h2 {
    font-size: 3rem;
  }
}
@media (max-width: 639px) {
  .slider-area .swiper-slide .inner-banner-box.white h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.slider-area .swiper-slide .inner-banner-box.white a {
  text-decoration: none;
  border: 2px solid #fff;
  color: #fff;
  padding: 11px 30px;
  font-weight: 600;
  border-radius: 5px;
}
.slider-area .swiper-slide .inner-banner-box.white a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.2392156863);
  color: #fff;
}
.slider-area .swiper-slide .inner-banner-box.bg-clr a {
  text-decoration: none;
  color: #fff;
  padding: 11px 30px;
  font-weight: 600;
  border-radius: 5px;
  background: #6c207b;
}
.slider-area .swiper-slide img {
  height: auto;
}
@media (max-width: 1199px) {
  .slider-area .swiper-slide img {
    height: 400px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 991px) {
  .slider-area .swiper-slide img {
    height: 300px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 639px) {
  .slider-area .swiper-slide img {
    height: 200px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.slider-area .swiper-pagination .swiper-pagination-bullet-active {
  width: 10px !important;
  height: 10px !important;
  background: #6c207b !important;
  margin-right: 5px !important;
  opacity: 1;
}
.slider-area .swiper-button-next, .slider-area .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 45px;
  height: 45px;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 50%;
}
.slider-area .swiper-button-next:after, .slider-area .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 14px;
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
  font-weight: 600;
}
.slider-area .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  opacity: 0.6;
}


.milky-area {
  background: #fff;
     padding: 60px 30px 60px 30px;

}
.milky-area h2 {
  font-weight: 600;
  color: #6c207b;
  font-size: 32px;
  margin-bottom: 15px;
}


.milky-area h4 {
  font-weight: 600;
  color: #6c207b;
  font-size:18px;
  margin-bottom: 15px;
}





@media (max-width: 1199px) {
  .milky-area h2 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .milky-area h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 639px) {
  .milky-area h2 {
    font-size: 26px;
  }
}
.milky-area .milky-pic img {
  width: 100%;
}
.milky-area .milky-text p {
line-height: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 400;

}
@media (max-width: 1199px) {
  .milky-area .milky-text p {
    margin-bottom: 10px;
  }
}

.blocks-area {
     padding: 60px 30px 60px 30px;

    background:#f6ddbf;
}
.blocks-area h2 {
  font-weight: 600;
  color: #6c207b;
  font-size:32px;
  margin-bottom: 15px;
}


.blocks-area h4 {
  font-weight: 600;
  color: #6c207b;
  font-size:18px;
  margin-bottom: 15px;
}







.blocks-area .blocks-text p {
line-height: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 400;

}





@media (max-width: 1199px) {
  .blocks-area h2 {
    font-size: 2rem;
  }
}
@media (max-width: 991px) {
  .blocks-area h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 639px) {
  .blocks-area h2 {
    font-size: 26px;
  }
}
.blocks-area .blocks-pic img {
  width: 100%;
}
.blocks-area .blocks-text p {
  line-height: 25px;
  margin-bottom: 15px;
  font-size: 15px;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .blocks-area .blocks-text p {
    margin-bottom: 10px;
  }
}

.mission-area {
  padding: 60px 0;
  text-align: center;
}
@media (max-width: 639px) {
  .mission-area {
    padding: 40px 0;
  }
}
.mission-area h1 {
  font-size: 2.2rem;
  color: #6c207b;
  margin-bottom: 20px;
  font-weight: 600;
}
@media (max-width: 639px) {
  .mission-area h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 500;
  }
}
.mission-area p {
  line-height: 28px;
  font-size: 24px;
  margin-bottom: 0px;
  color: #6c207b;
}
.mission-area img {
  width: 100%;
}

.vision-area {
  padding: 0 0 50px 0;
  text-align: center;
}
@media (max-width: 639px) {
  .vision-area {
    padding: 0;
  }
}
.vision-area h1 {
    padding-top:60px;
    font-size: 42px;
    color: #89af00;
    margin-bottom: 10px;
    font-weight: 400;
    
    
}
@media (max-width: 639px) {
  .vision-area h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 500;
    padding-top:15px;
  }
}
.vision-area p {
line-height: 30px;
    font-size: 18px;
    margin-bottom: 30px;
    font-weight: 300;
  
  
}
@media (max-width: 639px) {
  .vision-area p {
    text-align: left;
    font-size: 18px;
  }
}
.vision-area img {
  width: 100%;
  padding-bottom: 20px;
}

.video-area {
  background: #f0f0f0;
  margin: 0 0 30px 0;
}
.video-area .video-box {
  padding-top: 0px;
  padding-bottom: 40px;
  position: relative;
}
.video-area .video-box img {
  width: 100%;
}
@media (max-width: 639px) {
  .video-area .video-box img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.video-area .video-box a {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 27px;
  color: #4b0060;
  background: #fff;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
@media (max-width: 1199px) {
  .video-area .video-box a {
    top: 47%;
    left: 47%;
  }
}
@media (max-width: 991px) {
  .video-area .video-box a {
    top: 45%;
    left: 45%;
  }
}
@media (max-width: 639px) {
  .video-area .video-box a {
    top: 43%;
    left: 43%;
  }
}
.video-area .video-box a:hover {
  text-decoration: none;
}

.contact-address-area {
  padding: 30px 0;
}
.form-area {
  padding: 30px 0;
  background: rgba(204, 204, 204, 0.2509803922);
  /* Clearfix */
}
.form-area h2 {
  text-align: center;
  font-size: 2.2rem;
}
.form-area form {
  max-width: 700px;
  text-align: center;
  margin: 20px auto;
}
@media (max-width: 639px) {
  .form-area form {
    width: 90%;
  }
}
.form-area form input, .form-area form textarea {
  border: 0;
  outline: 0;
  padding: 1em;
  display: block;
  width: 100%;
  margin-top: 1em;
  resize: none;
  border: 1px solid #ccc;
}
.form-area form #input-submit {
  color: white;
  cursor: pointer;
  background: #54662e;
  width: 140px;
  font-size: 17px;
  text-transform: uppercase;
}
.form-area form textarea {
  height: 150px;
  display: initial;
}
.form-area .half {
  float: left;
  width: 48%;
  margin-bottom: 1em;
}
.form-area .right {
  width: 50%;
}
.form-area .left {
  margin-right: 2%;
}
@media (max-width: 480px) {
  .form-area .half {
    width: 100%;
    float: none;
    margin-bottom: 0;
  }
}
.form-area .cf:before,
.form-area .cf:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}
.form-area .cf:after {
  clear: both;
}/*# sourceMappingURL=main.css.map */

.information2
{
   font-weight:400; 
    
}









