/*-----base-----*/
@font-face {
  font-family: "poppinslight";
  src: url("../fonts/poppins-light-webfont.woff2") format("woff2"),
    url("../fonts/poppins-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "poppinsthin";
  src: url("../fonts/poppins-thin-webfont.woff2") format("woff2"),
    url("../fonts/poppins-thin-webfont.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "poppinsmedium";
  src: url("../fonts/poppins-medium-webfont.woff2") format("woff2"),
    url("../fonts/poppins-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "poppinssemibold";
  src: url("../fonts/poppins-semibold-webfont.woff2") format("woff2"),
    url("../fonts/poppins-semibold-webfont.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "poppinsbold";
  src: url("../fonts/poppins-bold-webfont.woff2") format("woff2"),
    url("../fonts/poppins-bold-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
:root {
  --myorange: #fc8c15;
}

* {
  margin: 0;
  padding: 0;
}

.container-main {
  max-width: 1024px;
  display: flex;
  margin: auto;
  box-shadow: 5px 10px 8px #888888;
  box-sizing: border-box;
}

.container {
  max-width: 643px;
  margin: 0 auto 0px;
  padding: 0 15px;
}

.btn {
  background-color: var(--myorange);
  border-radius: 7px;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid var(--myorange);
}

.btn a {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  color: #fcfcfc;
  line-height: 1.8;
  font-family: "poppinslight", sans-serif;
  font-weight: 300;
}

.btn:hover {
  background-color: transparent;
}

.btn:hover a {
  color: var(--myorange);
}

/*------main----*/
.main .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px 15px;
  box-sizing: border-box;
  display: none;
}

.side-bar {
  width: 228px;
  box-sizing: border-box;
  /* height: 790px; */
  display: flex;
  flex-direction: column;
}

.content {
  width: calc(100% - 228px);
  box-sizing: border-box;
}
/*------sidebar -------*/

.side-bar-logo {
  background: url("../images/logoshadow.png") no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  border-bottom-right-radius: 39%;
  border-bottom-left-radius: 39%;
  position: relative;
  padding: 46px 0 55px;
}

.header .toggler button {
  border: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
}

.header .toggler button:hover {
  opacity: 0.8;
}

.side-togg {
  display: none;
}

.side-togg:hover {
  opacity: 0.8;
}

.side-togg a {
  position: absolute;
  top: 6px;
  right: 25px;
  margin-left: 50px;
}

.side-toggler {
  display: none;
}
/*------sidebar menu-------*/
.side-bar-menu {
  margin: 0;
}

.side-bar-menu ul {
  list-style-type: none;
  text-align: center;
  width: 100%;
  margin: 33px auto 0;
  cursor: pointer;
}

.side-bar-menu ul a {
  color: #000;
  font-size: 22px;
  line-height: 1.3;
  word-break: break-all;
  text-decoration: none;
  font-family: "poppinssemibold", sans-serif;
  font-weight: 500;
}

.side-bar-menu ul li {
  padding: 17px 10px 17px;
  margin: 0px 0 0px;
  position: relative;
  cursor: default;
}

.side-bar-menu li:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  background-color: #d0d0d0;
  width: 60%;
  height: 1px;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.6s;
  transform: translateX(-50%);
  cursor: default;
}

.side-bar-menu li:nth-last-child(1):before{
  width: 0%;
  height: 0px;
}

.side-bar-menu ul a:hover {
  color: var(--myorange);
}

/*----sidebar icons---*/
.side-bar-icons {
  text-align: center;
  margin: 173px 0 0;
}

.side-bar-icons a {
  padding: 0 14px;
  transition: all 0.3s;
  display: inline-block;
}

.side-bar-icons a:hover {
  opacity: 0.7;
}

/*=========content section======*/
/*------hero section----*/
.hero-section {
  background-image: url("../images/homepagebannerimg.png");
  background-position: 96% 100%;
  background-size: cover;
  min-height: 370px;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-section h1 {
  text-transform: uppercase;
  font-size: 60px;
  line-height: 1.9;
  color: #fcfcfc;
  text-align: center;
  padding: 0 0 20px;
  word-break: break-all;
  font-family: "poppinslight", sans-serif;
  font-weight: 300;
}

/*-------text-section----*/
.text-section {
  background-color: #f1efe9;
  display: flex;
  align-items: center;
  padding: 50px 0px 50px;
  min-height: 320px;
}

.text-section p {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  font-family: "poppinslight", sans-serif;
}

.text-section .btn {
  margin: 38px auto 0px;
  padding: 4px 18px;
  width: max-content;
}

/*----slider section---*/
.food-bird-slider {
  background: url("../images/slidersectionbg.png") no-repeat;
  background-size: cover;
  padding: 65px 0px 91px;
}

.food-bird-slider .container {
  max-width: 485px;
}

.slider-sec {
  position: relative;
  margin: 40px 0 65px;
}

.food-bird-slider h3 {
  text-align: center;
  text-transform: uppercase;
  font-family: "poppinsmedium", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 1.4px;
}

.slider-content img {
  border: 4px solid #000;
  box-sizing: border-box;
}
/*---slider arrows---*/
.next_arrow,
.priv_arrow {
  background-color: #000;
  padding: 5px 5px 5px 5px;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  position: relative;
  transform: all 0.3s;
}

.next_arrow:hover,
.priv_arrow:hover {
  opacity: 0.8;
}

.next_arrow img {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
}

.priv_arrow img {
  position: absolute;
  top: 50%;
  left: 46%;
  transform: translate(-50%, -50%);
}

.priv_arrow {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
}

.next_arrow {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  right: -10px;
}
/*----dots styling------*/
.myslider .slick-dots {
  bottom: -38px !important;
}

.myslider .slick-dots li {
  border: 2px solid black;
  border-radius: 50%;
  width: 7px !important;
  height: 7px !important;
  margin: 0 17px !important;
  transition: all 0.3s;

}

.myslider .slick-dots li:hover {
  opacity: 0.6;
  /* background-color: #fdba72 !important; */
}

.myslider .slick-dots li button {
  padding: 0 !important;

}

.myslider .slick-dots li button:before {
  line-height: 10px !important;
  width: 9px !important;
  opacity: 0 !important;
}

.myslider .slick-dots li.slick-active {
  background-color: var(--myorange);
}

/* .slider-text {
  margin-top: 54px;
} */

.slider-text h2 {
  font-size: 25px;
  text-transform: uppercase;
  text-align: center;
  word-break: break-all;
  font-family: "poppinsmedium", sans-serif;
  font-weight: 600;
}

.slider-text p {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  margin: 18px 0 0;
  font-family: "poppinslight", sans-serif;
  font-weight: 300;
}

.slider-text .btn {
  width: max-content;
  padding: 4px 15px;
  margin: 34px auto 0;
  font-family: "poppinslight", sans-serif;
  font-weight: 300;
}

.card-sec {
  background-color: #f1efe9;
  padding: 60px 0 90px;
}

.card-sec .container {
  max-width: 680px;
}

.card-sec h2 {
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
  font-family: "poppinsmedium", sans-serif;
  font-weight: 500;
  letter-spacing: 2.4px;
}

.cards-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 23px 0 0;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: calc(50% - 79px);
  min-height: 310px;
  margin: 18px 0px 15px;
  padding: 23px 39px 42px 30px;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.card-logo {
  min-height: 110px;
  display: flex;
  align-items: center;
}

.card-body {
  margin: 39px 0 0px;
}

.card-body h4 {
  font-size: 15px;
  line-height: 1.8;
  text-transform: uppercase;
  font-family: "poppinsbold", sans-serif;
  font-weight: 700;
  /* margin: 10px 0 0; */
}

.card-body p {
  font-size: 15px;
  line-height: 1.7;
  margin: 2px 0 0px;
  font-family: "poppinslight", sans-serif;
  font-weight: 300;
}

.card-body a {
  text-decoration: none;
  color: #959595;
  font-size: 14px;
  font-style: italic;
  display: inline-block;
  margin: 15px 0 0;
  font-family: "poppinslight", sans-serif;
  font-weight: 300;
}

.card-body a:hover {
  text-decoration: underline;
}
.card-sec .btn {
  width: max-content;
  margin: 36px auto 0px;
  padding: 4px 15px;
}

.footer img {
  width: 100%;
  vertical-align: bottom;
}
/*---------Media Queries------*/
@media screen and (max-width: 1024px) {
  .text-section {
    padding: 62px 0 67px;
  }

  .food-bird-slider {
    padding: 55px 0 70px;
  }

  .card-sec {
    background-color: #f1efe9;
    padding: 52px 0 60px;
  }
}
@media screen and (max-width: 768px) {
  .content {
    width: 100%;
  }

  .main .header {
    display: flex;
  }

  .slider-content img {
    width: 100%;
  }

  .side-bar {
    background-color: #fff;
    height: 100%;
    width: 0;
    display: none;
    overflow-x: hidden;
    transition: 0.5s;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
  }

  .side-togg {
    display: block;
  }

  .text-section p {
    font-size: 18px;
  }

  .text-section {
    padding: 45px 0 45px;
  }

  .text-section .btn {
    margin: 25px auto 0px;
  }

  .food-bird-slider {
    padding: 60px 0 60px;
  }

  .slider-text .btn {
    margin: 20px auto 0;
  }

  .slider-sec {
    margin: 25px 0 50px;
  }

  /*---card mbl--*/
  .cards-main {
    justify-content: center;
    margin: 10px 0 10px;
  }

  .card {
    width: calc(76% - 80px);
    min-height: 260px;
    padding: 15px 40px 15px 40px;
    margin: 10px 0 10px;
  }

  .card-sec {
    padding: 60px 0 60px;
  }

  .card-sec .btn {
    margin: 20px auto 0px;
  }

  .card-logo {
    min-height: 35px;
  }
}

@media screen and (max-width: 480px) {
  .card {
    width: calc(100% - 80px);
    margin: 10px 0 15px;
  }

  .text-section p {
    line-height: 1.6;
  }
}

@media screen and (min-width: 769px) {
  .side-bar {
    width: 228px !important;
    display: block !important;
  }

  .main .header {
    display: none !important;
  }
}
