:root {
  --white: #fff;
  --black: #222;
  --pink: #f60091;
  --grey: #444;
  --grey2: #959595;
  --grey-alt: #d1e2e9;
  --yellow: #ffd800;
  --green: #59b210;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  position: relative;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  background-color: var(--white);
  z-index: -1;
}

li,
ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.container {
  max-width: 114rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 1200px) {
  .container {
    padding: 0 5rem;
  }
}

#pre-loader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  z-index: 999999;
  background-color: var(--white);
  transition: all 300ms ease-in-out;
}

.loader {
  height: 100vh;
  width: 100vw;
  background: url("./images/loader.svg") center/20rem no-repeat fixed;
}

#pre-loader.hide {
  opacity: 0;
  pointer-events: none;
}

@media only screen and (max-width: 567px) {
  .loader {
    background-size: 20rem;
  }
  
  .adverts{font-size:9px;}
}

/* Header */

.adverts {
  line-height: 3rem;
  height: 3rem;
  background-color: rgb(5, 35, 77);
  color: var(--white);
  font-weight: 500;
  text-transform:uppercase;
}

.navigation {
  /* padding: 1.6rem 0; 
  background-color: rgb(219, 193, 43);*/
  background-color: rgb(233, 233, 233);
 
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-top {
  display: none;
}

.logo img{
  width: auto;
  height: 100%;
  max-height: 100px;
}

.nav-list {
  display: flex;
  align-items: center;
}

.fix-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  background-color:  rgb(244, 244, 244);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-item:not(:last-child) {
  margin-right: 0.5rem;
}

.nav-item {
  padding: 0 1rem;
}

.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0 0.2rem;
  font-size: 1.5rem;
  color: var(--black);
  text-transform: uppercase;
  transition: all 500ms ease-in-out;
}

.nav-link::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  top: 100%;
  left: 0;
  background: rgb(40, 13, 150);
  transition: transform 0.5s;
  transform: scaleX(0);
  transform-origin: right;
}
.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-icons span:not(:last-child) {
  margin-right: 0.5rem;
}

.nav-icons span {
  font-size: 1.6rem;
  border-radius: 50%;
  border: 1px solid var;
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.nav-icons span:hover {
  background: var(--grey);
}

.nav-icons .fas {
  transition: all 300ms ease-in-out;
}

.nav-icons span:hover .fas {
  color: var(--white);
}

.hamburger {
  display: none;
}

.nav-link .drop-menu{
  background: #555555;
  width: 180px;
  top: 65px;
  line-height: 45px;
  position: absolute;
  opacity: ;
}

@media only screen and (max-width: 996px) {
  .nav-item:not(:last-child) {
    margin-right: 0.3rem;
  }

  .nav-item {
    padding: 0 0.5rem;
  }

  .nav-link {
    font-size: 1.4rem;
  }

  .nav-icons span {
    font-size: 1.2rem;
    padding: 0.3rem 0.7rem;
  }
}

@media only screen and (max-width: 768px) {
  .navigation.show {
    background-color: rgba(43, 42, 42, 0.6);
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    z-index: 9990;
    background-color:rgb(212, 212, 212);
    transition: all 500ms linear;
    opacity: 0.8;
    padding: 4.4rem;
    

  }

  .nav-menu.show {
    left: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: start;
    padding: 2rem 0;
  }



  .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.6rem 2rem;
  }

  .hamburger {
    display: block;
    font-size: 2.5rem;
    cursor: pointer;
  }

  .close {
    font-size: 2rem;
    color: var(--grey);
    cursor: pointer;
  }

  .nav-item {
    width: 100%;
    padding: 0;
  }

  .nav-item:not(:last-child) {
    margin-bottom: 1rem;
  }

  .nav-link {
    font-size: 1.8rem;
    width: 100%;
    padding: 1rem 2rem;
  }

  .nav-icons span {
    display: none;
    border: none;
    font-size: 1.6rem;
  }

  .nav-icons span:last-child {
    display: block;
  }

  body.show::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
  }
}
/* Hero Area */
.hero,
.glide__hero,
.banner {
  position: relative;
  max-height:650px;
  height: 100vh;
  width: 100%;
  /* background: linear-gradient(to top, */
  /* rgba(241, 7, 7, 0.575), */
  /* rgba(19, 42, 83, 0.6)), */
    /* url("./images/banner1.jpg") center/cover no-repeat fixed; */
	 background: url("./images/banner1.jpg") center/cover no-repeat fixed;
}

.hero,
.glide__hero,
.banner2 {
  position: relative;
  max-height:650px;
  height: 100vh;
  width: 100%;
  /* background: linear-gradient(to top, */
  /* rgba(241, 7, 7, 0.575), */
  /* rgba(19, 42, 83, 0.6)), */
    /* url("./images/banner1.jpg") center/cover no-repeat fixed; */
	 background: url("./images/slider3.jpg") center/cover no-repeat fixed;
}
.banner img {
  position: absolute;
  bottom: 0;
}

.banner img.special_01 {
  width: 40rem;
  right: 5%;
}
.banner img.special_02 {
  width: 40rem;
  right: 5%;
}
.banner img.special_03 {
  width: 65rem;
  right: 1%;
}

.banner-content {
  position: absolute;
  top: 50%;
  transform: translate(60%, -50%);
}
.banner-content2{
  position: absolute;
  top: 50%;
  transform: translate(30%, -50%);
}



.banner-content h1 {
  font-size: 50px;
  font-weight: 500;
  text-transform:uppercase;
  margin-bottom: 1rem;
  color: rgb(218, 251, 255);
}

.banner-content2 h1 {
  font-size: 50px;
  font-weight: 500;
  text-transform:uppercase;
  margin-bottom: 1rem;
  color: rgb(218, 251, 255);
}

.hero__btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
  background-color:  #222;
  color:  #f1f1f1;
  cursor: pointer;
  margin-top: 1rem;
  padding: 1.5rem 4rem;
  border: 1px solid #222;
  transition: all 0.3s ease-in-out;
}

.hero__btn:focus {
  outline: none;
}

.hero__btn:hover {
  font-weight: 700;
  background-color: transparent;
  color:white;
}
.hero__btn-1 {
  display: inline-block;
  font-weight: 700;
  font-size: 1.4rem;
  background-color:  #222;
  color:  #f1f1f1;
  cursor: pointer;
  margin-top: 1rem;
  padding: 1.5rem 4rem;
  border: 1px solid #222;
  transition: all 0.3s ease-in-out;
}

.hero__btn-1:focus {
  outline: none;
}

.hero__btn-1:hover {
  font-weight: 700;
  background-color: transparent;
  color:rgb(0, 0, 0);
}


.glide__arrows {
  /* position: absolute; */
  top: 50%;
}

.glide__arrow {
  position: center;
  top: 50%;
  background-color:transparent;
  border: 1px solid var(--black);
  outline: none;
  padding: 1.3rem 1.5rem;
  border-radius: 50%;
  font-size: 1.6rem;
  color: var(--white);
  visibility: hidden;
  opacity: 0;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.glide:hover .glide__arrow {
  visibility: visible;
  opacity: 1;
}

.glide__arrow:hover {
  color: var(--black);
  background-color: transparent;
}

.glide__arrow--left {
  left: 5%;
}

.glide__arrow--right {
  right: 5%;
}

@media only screen and (max-width: 1260px) {
  .hero,
  .glide__hero,
  .banner {
    height: 90vh;
  }

  .banner img.special_01 {
    width: 30rem;
  }
  .banner img.special_02 {
    width: 30rem;
  }
  .banner img.special_03 {
    width: 60rem;
  }
}

@media only screen and (max-width: 996px) {
  .banner-content {
    width: 60%;
    position: absolute;
    top: 30%;
    left: 0%;
    transform: translate(-30%, -50%);
  }

  .banner img.special_01 {
    left: 50%;
    transform: translateX(-50%);
    width: 50rem;
  }

  .banner img.special_02 {
    left: 50%;
    transform: translateX(-50%);
    width: 50rem;
  }
  .banner img.special_03 {
    left: 55%;
    transform: translateX(-50%);
    width: 50rem;
  }
}

@media only screen and (max-width: 768px) {
  .banner-content {
    width: 90%;
  }
}

@media only screen and (max-width: 568px) {
/*  .banner-content h1 {
    font-size: 3rem;
  }
*/
  .banner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .buttons-group button {
    padding: 1rem 2.5rem;
    font-size: 1.5rem;
  }
  
  .banner-content {
  position: absolute;
  top: 30%;
  transform: translate(10%, -10%)!important;
}
 .banner-content h1{
     font-size:27px!important;
 }
  .banner-content h1 span{
     font-size:27px!important;
 }
.banner-content2{
  position: absolute;
  top: 30%;
  transform: translate(10%, -10%)!important;
}
   .banner-content2 h1{
     font-size:27px!important;
 }
  
     .banner-content2 h1 span{
     font-size:27px!important;
 }
 .adverts{font-size:9px!important;}
}
@media only screen and (max-width: 420px) {
    .adverts{font-size:7px!important;}
}


/*
======================
Pop Up
======================
*/

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: 0.3s;
  transform: scale(1);
}

.popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  margin: 0 auto;
  height: 55rem;
  transform: translate(-50%, -50%);
  padding: 1.6rem;
  display: table;
  overflow: hidden;
  background-color: var(--white);
}

.popup__close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 2rem;
  right: 2rem;
  padding: 1.5rem;
  background-color: var(--primaryColor);
  cursor: pointer;
}

.popup__close svg {
  width: 1.7rem;
  height: 1.7rem;
}

.popup__left {
  display: table-cell;
  width: 50%;
  height: 100%;
  vertical-align: middle;
}

.popup__right {
  display: table-cell;
  width: 50%;
  vertical-align: middle;
  padding: 3rem 5rem;
}

.popup-img__container {
  width: 100%;
  overflow: hidden;
}

.popup-img__container img.popup__img {
  display: block;
  width: 60rem;
  height: 45rem;
  max-width: 100%;
}

.right__content {
  text-align: center;
  width: 85%;
  margin: 0 auto;
}

.right__content h1 {
  font-size: 4rem;
  color: #000;
  margin-bottom: 1.6rem;
}

.right__content h1 span {
  color: var(--green);
}

.right__content p {
  font-size: 1.8rem;
  color: var(--grey2);
  margin-bottom: 1.6rem;
}

.popup__form {
  width: 100%;
  /* padding: 2rem 0; */
  padding:1.6rem 4rem!important;
  text-indent: 1rem;
  margin-bottom: 1.6rem;
  border: none;
}

.popup__form:focus {
  outline: none;
}

.right__content a:link,
.right__content a:visited {
  display: inline-block;
  padding: 1.8rem 5rem;
  border-radius: 3rem;
  font-weight: 700;
  color: var(--white);
  
  transition: 0.3s;
}

.right__content a:hover {
  color: var(--black);
}

.hide__popup {
  transform: scale(0.2);
  opacity: 0;
  visibility: hidden;
}
/* ============ New Arrival ============== */

.section {
  padding: 5rem 0;
  display: center;
}

.arrivals {
  padding: 2rem 0;
  display: center;
}

.title {
  text-align: center;
  margin-bottom: 3rem;
}

.primary__title {
  font-size: 3rem;
  display: inline-block;
  position: relative;
}

.primary__title::after {
  content: "";
  position: absolute;
  bottom: -15%;
  left: 20%;
   transform: translate(-50%, -50%);
  width: 40%;
  margin: 0 auto;
  height: 0.4rem;
  background-color: rgb(59, 33, 164);
}

.arrival__center {
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: repeat(4, 1fr);
  margin: 4rem 4rem;
}

@media only screen and (max-width: 996px) {
  .arrival__center {
    grid-template-columns: auto;
  }
  .primary__title {
    display: center;
  }
}

@media only screen and (max-width: 768px) {
  .arrival__center {
    grid-template-columns: auto;
  }
  .primary__title {
    display: center;
  }
}

/* ========== Product ========== */

.product {
  display: inline-block;
  flex-direction: inline-block;
  padding: 2rem 1rem;
  /* text-align: center; */
}

.product:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
}

.product .img__container {
  height: 24rem;
  overflow: hidden;
  float:left;
  padding-right:35px;
}

.img__container img {
  transition: all 0.5s ease-in-out;
}

.product:hover .img__container img {
  transform: scale(1.05);
}

.rating i{
  width: 1.8rem;
  height: 1.8rem;
  color: rgb(223, 223, 71);
}

.product__bottom {
  padding-top: 4.6rem;
}

.product__bottom h3 {
  margin-bottom: 1rem;
}

.product__bottom a:link,
.product__bottom a:visited {
  display: center;
  padding: 0.8rem 4rem;
  background-color: var(--default-color);
  color: var(--grey-color);
  text-transform: uppercase;
  font-weight: 500;
}

@media only screen and (max-width: 567px) {
  .product .img__container {
    height: 23rem;

  }

  .rating {
    width: 1.5rem;
    height: 1.5rem;
    display:inline;
  }

  .product__bottom a:link,
  .product__bottom a:visited {
    display: inline-block;
    padding: 0.6rem 3rem;
    font-size: 1.4rem;
  }

  .product__bottom h3 {
    font-size: 1.6rem;
  }
}
/* News */

.news {
  padding-bottom: 8rem;
}

.blog-card {
  background-color: var(--grey-alt);
  width: 100%;
  margin: 0 auto;
  text-align:center;
}

.blog-card:not(:last-child) {
  margin-right: 1rem;
}

.card-footer {
  padding: 1rem;
}

.card-footer h3 {
	font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.card-footer span {
  font-size: 1.4rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--black2);
}

.card-footer p {
  font-size: 1.4rem;
  color: var(--black2);
  margin-bottom: 1.6rem;
  line-height: 2.7rem;
  text-align:justify;
}

.card-footer a button,
.card-footer a button {
  display: inline-block;
  padding: 1.2rem 3.7rem;
  border: 1px solid var(--black);
  color: var(--black);
  cursor: pointer;
  transition: 0.3s;
}

.card-footer a button:focus {
  outline: none;
}

.card-footer a button:hover {
  border: 1px solid var(--black);
  color: var(--white);
  background-color: var(--black);
}

@media only screen and (max-width: 567px) {
  .blog-card {
    width: 100%;
  }
  .card-footer h3 {
    font-size: 1.8rem;
  }

  .card-footer span {
    font-size: 1.2rem;
  }

  .card-footer p {
    font-size: 1.2rem;

  }

  .card-footer a button,
  .card-footer a button {
    padding: 1rem 3rem;
  }
}

/* ========= Facility ========== */

.facility {
  background-color: var(--grey-alt);
  padding: 6rem 0;
}

.facility-contianer {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.facility-icon {
  text-align: center;
}

.facility-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.facility-icon {
  position: relative;
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  border: 1.5px solid var(--white);
  z-index: 1;
  margin-bottom: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.facility-icon::before {
  content: "";
  position: absolute;
  display: inline-block;
  border-radius: 50%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0.7rem;
  background-color: var(--white);
  z-index: -1;
}

.facility-icon i {
  font-size: 2rem;
  transition: all 500ms ease-in-out;
}

.facility-box:hover i {
  transform: rotateY(180deg);
}
/* Testimonials */
.testimonial-center {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 6rem;
}

.testimonial {
  position: relative;
  padding: 5rem;
  background-color: #fff;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
  text-align: center;
  border-radius: 0.5rem;
}

.testimonial:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
  transform: translateY(-1rem);
}

.testimonial span {
  position: absolute;
  top: 2%;
  left: 50%;
  font-size: 12rem;
  font-family: sans-serif;
  color: #ff7c9c;
  line-height: 1;
  transform: translate(-50%, 0);
}

.testimonial p {
  margin: 2rem 0 1rem 0;
}

.testimonial .rating {
  margin-bottom: 1rem;
}

.testimonial .img-cover {
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  overflow: hidden;
  margin: 0 auto;
}

.testimonial .img-cover img {
  height: 100%;
  object-fit: cover;
}

.testimonial h4 {
  margin-top: 1rem;
}

/* Brands */
.brands-center {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3rem;
}

.brand {
  height: 8rem;
  width: 8rem;
  margin: 0 auto;
}

.brand img {
  object-fit: contain;
}

@media only screen and (max-width: 768px) {
  .brands-center {
    grid-template-columns: repeat(3, 1fr);
  }
}
/*contact us*/
.contact li{
  display:block;
  color:white;
  text-transform:uppercase;
  font-size:1.6rem;
  letter-spacing:2px;
  margin-right: -2px;
  transition:color.5s;
}

/*
======================
Facility Media Query
======================
*/
@media only screen and (max-width: 998px) {
  .facility-contianer {
    grid-template-columns: 1fr 1fr;
    row-gap: 3rem;
  }
}

@media only screen and (max-width: 568px) {
  .facility-contianer {
    grid-template-columns: 1fr;
  }

  .facility-icon {
    width: 7rem;
    height: 7rem;
    line-height: 8.5rem;
  }

  .facility-contianer p {
    font-size: 1.4rem;
  }
}
.newsletter-btn{
  margin-left:7.5rem;
}

/*footer*/
footer{
    padding:7.9rem 0 0 0;
    background-color: #e4e4e4;
	background:url(images/btm-bnr.jpg);
	  background-repeat: no-repeat;
    background-size: cover;

    color:rgb(43, 43, 43);
    text-align:center;
    position: relative;
}

.back-to-top{
    width: 7rem;
    height: 7rem;
    background-color: #e4e4e4;
    position:absolute;
    top:-3rem;
    left: 50%;
    transform: translateX(-50%);
    border-radius:50%;
}


.back-to-top i{
    display:block;
    color:rgb(27, 27, 27);
    font-size:2rem;
    padding: 2rem;
    animation:Up 2s infinite;
}

.footer-content{
    overflow:;
}
.footer-content h4{
    font-size:3rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 3rem;
}

.footer-content .asterisk{
    margin:2.4rem 0;
    color: burlywood;
}

.footer-content-about{
    margin-bottom:5.4rem;
}

.footer-content-about p{
    line-height:2;
    text-align: justify;
    text-justify: inter-word;
}

.social-icons{
    list-style:none;
    margin-bottom:5.4rem;
    display:flex;
    justify-content: center;
}

.social-icons i{
    font-size: 2rem;
    color: #fff;
    padding: .8rem 2rem;
    opacity:.5;
    transition:color .5s;
}

.social-icons i:hover,
.social-icons i:focus{
    color:#e23a48;
}


.newsletter-form{
    width: 100%;
    position: relative;
    display: flex;
    justify-content:center;
}

.newsletter-input{
    width: 100%;
    max-width: 25rem;
    padding: 1rem;
    border-radius: .4rem;
}

.btn{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-right:-2px;
}

.cta-btn{
  font-size:1.1rem;
  background-color:#fff;
  padding:.9rem 1.8rem;
  color:var(--body-font-color);
  border-radius:.4rem;
  transition:background-color .5s;
}

.cta-btn:hover,
.cta-btn:focus{
  color:#fff;
  background-color:#ff523b;
}

.footer-bottom{
    padding:15px 0px;
    color: #fff;
    font-size:14px;
    align-items: center;
	background:#222;
}
/*Media queries*/
@media screen and (min-width:900px){

.active::before{
 content: '';
       position: absolute;
       width: 100%;
       height: 2px;
       background-color:#fff;
       left:0;
       bottom:-3px;
    }

    .restaurant-info{
        display:flex;
        align-items: center;
    }

    .restaurant-info > div{
        flex:1;
    }
    .padding-right{
        padding-right: 7rem;
    }

    .footer-content{
        /* max-width: 77.5rem; */
        margin:auto;
    }

    .footer-content-about{
        max-width:51.3;
        margin:0 auto 5.4rem;
    }

    .footer-content-divider{
        display:flex;
        justify-content: space-between;
    }

   /*  .social-media,
    .newsletter-form{
        width: 100%;
        max-width: 27.3rem;
        margin:0 1rem;
    } */
    .social-icons i{
        opacity:1;
    }
    .btn{
      display:inline-block;
      text-transform:uppercase;
      letter-spacing:2px;
      margin-right:-2px;
  }
  
  .cta-btn{
      font-size:1.1rem;
      background-color:#fff;
      padding:.9rem 1.8rem;
      color:var(--body-font-color);
      border-radius:.4rem;
      transition:background-color .5s;
  }
  
  .cta-btn:hover,
  .cta-btn:focus{
      color:#fff;
      background-color:#833bff;
  }
}

/*animations*/

@keyframes fadeUp{
    0%{
        transform:translateY(4rem);
    }
    100%{
        opacity: 1;
        transform:translateY(0);
    }
}

@keyframes scale{
    0%{
        transform:scale(2);
    }
    100%{
        opacity: 1;
        transform:scale(1);
    }
}
@keyframes grow{
    0%{
        width: 0;
    }
    100%{
        opacity: 1;
       width: 100%;
    }
}
@keyframes spin{
    0%{
       transform:rotate(0);
    }
    100%{
        opacity: 1;
        transform:rotate(-360deg);
    }
}
@keyframes fadeDown{
    0%{
        transform:translateY(-1rem);
    }
    100%{
        opacity: 1;
        transform:translateY(0);
    }
}
@keyframes Up{
    0%{
        opacity:0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform:translateY(-1rem);
    }
}

/*all products*/
.small-container{
  max-width: 1080px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}


select{
    border: 1px solid coral;
    padding: 5px;
}

select:focus{
    outline: none;
}

/*single product*/


.row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-around;
}

.col-2{
  flex-basis: 50%;
  min-width: 300px;

}

.col-2 img{
  max-width: 100%;
  padding: 50px 0;
}

.col-2 h1{
  font-size: 50px;
  line-height: 60px;
  margin: 25px 0;
}

.btn{
  display: inline-block;
  background: #f1607d;
  color: white;
  padding: 8px 30px;
  margin: 30px 0;
  border-radius: 30px;
}

.btn:hover{
  background: rgba(160, 55, 55, 0.856);
}

.header{
  background: radial-gradient(#ffffff , #faadbd);
}

.header .row{
  margin-top:70px ;
}

.categories{
  margin: 70px 0;
}

.col-3{
  flex-basis: 30%;
  min-width: 250px;
  margin-bottom: 30px;
}

.col-3 img{
  width: 100%;
}

.small-container{
  max-width: 1080px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}

.col-4{
  flex-basis: 25%;
  padding: 10px;
  min-width: 200px;
  margin-bottom: 50px;
  transition: transform 0.5s;
}

.col-4 img{
  width: 100%;
}



h4{
  color: #555555;
  font-weight: normal;
}

.col-4 p{
  font-size: 14px;
}

.rating .fa{
  color: #faadbd;
}

.col-4:hover{
  transform: translateY(-7px);
}

.offer{
  background: radial-gradient(#ffffff , #faadbd);
  margin-top: 80px;
  padding: 30px 0;
}

.col-2 .offer-img{
  padding: 50px;
}

small{
  color: #555555;
}

.testimonial{
  padding-top: 108px;
}

.testimonial .col-3{
  text-align: center;
  padding: 40px 20px;
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.5s;
}

.testimonial .col-3 img{
  width: 50px;
  margin-top: 20px;
  border-radius: 50%;
}

.testimonial .col-3:hover{
  transform: translateY(-10px);
}

.fa.fa-quote-left{
  font-size: 34px;
  color: rgb(230, 159, 159);
}

.col-3 p{
  font-size: 12px;
  margin: 12px 0;
  color: #777777;
}

.testimonial .col-3 h3{
  font-weight: 600;
  color: #555555;
  font-size: 18px;
}


.brands{
  margin: 100px auto;
}

.col-5{
  width: 160px;
}

.col-5 img{
  width: 100%;
  cursor: pointer;
  filter: grayscale(100%);
}

.col-5 img:hover{
  filter: grayscale(0);
}

.footer{
  background: black;
  color: #8a8a8a;
  font-size: 14px;
  padding: 60px 0 20px;
}

.footer p{
  color: #8a8a8a;
}

.footer h3{
  color: whitesmoke;
}

.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-col-1{
  flex-basis: 30%;
}

.footer-col-2{
  flex: 1;
  text-align: center;
}

.footer-col-2 img{
  width: 180px;
  margin-bottom: 20px;
  height: 39px;
}

.footer-col-3 , .footer-col-4{
  flex-basis: 12%;
  text-align: center;
}

ul{
  list-style: none;
}

.app-logo{
  margin-top: 20px;
}

.app-logo img{
  width: 140px;
}

.footer hr{
  border: none;
  background: #b5b5b5;
  height: 1px;
  margin: 20px 0;
}

.copyright{
  text-align: center;
}

.menu-icon{
  width: 28px;
  margin-left: 20px;
  display: none;
}



.row-2{
  justify-content: space-between;
  margin: 60px auto 10px;
}

select{
  border: 1px solid coral;
  padding: 5px;
}

select:focus{
  outline: none;
}



.page-btn{
  margin: 0 auto 80px;
}

.page-btn span{
  display: inline-block;
  border: 1px solid #faadbd;
  margin-left: 10px;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
}
.page-btn span:hover{
  background: #f1607d;
  color: whitesmoke;
}

.single-product{
  margin-top: 80px;
}

.single-product .col-2 img{
  padding: 0;
}

.single-product .col-2{
  padding: 20px;

}

.single-product h4{
  margin: 20px 0;
  font-size: 22px;
  font-weight: bold;
}

.single-product select{
  display: block;
  padding: 10px;
  margin-top: 20px;
}

.single-product input{
  width: 50px;
  height: 40px;
  padding-left: 10px;
  font-size: 20px;
  margin-right: 10px;
  border: 1px solid coral;
}

input:focus{
  outline: none;
}


.single-product .fa{
  color: #f1607d;
  margin-left: 10px;
}

.small-img-row{
  display: flex;
  justify-content: space-between;
}

.small-img-col{
  flex-basis: 24%;
  cursor: pointer;
}


.cart-page{
  margin: 80px auto;
}

table{
  width: 100%;
  border-collapse: collapse;
}

.cart-info{
  display: flex;
  flex-wrap: wrap;
}

th{
  text-align: left;
  padding: 5px;
  color: #ffffff;
  background: #ca4560;
  font-weight: normal;
}

td{
  padding: 10px 5px;
}

td input{
  width: 40px;
  height: 30px;
  padding: 5px;
}

td a {
  color: #ff0033;
  font-size: 12px;
}

td img{
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

.total-price{
  display: flex;
  justify-content: flex-end;
}

.total-price table{
  border-top:  3px solid coral;
  width: 100%;
  max-width: 350px;
}

td:last-child{
  text-align: right;
}

th:last-child{
  text-align: right;
}

.account-page{
  padding: 50px 0;
  background: radial-gradient(#ffffff , #faadbd);
}

.form-container{
  background: #ffffff;
  width: 300px;
  height: 400px;
  position: relative;
  text-align: center;
  padding: 20px 0;
  margin: auto;
  box-shadow:  0 0 20px 0px rgba(0,0,0,0.3);
  border-radius: 9px;
  overflow: hidden;

}

.form-container span{
  font-weight: bold;
  padding:  0 10px;
  color: #555555;
  cursor: pointer;
  width: 100px;
  display: inline-block;
}

.form-btn{
  display: inline-block;
}

.form-container form{
  max-width: 300px;
  padding: 0 20px;
  position: absolute;
  top: 130px;
  transition: transform 1s;
}

form input{
  width: 100%;
  /* height: 30px; */
  margin: 10px 0;
  padding: 0 10px;
  border: 1px solid #cccccc;
}

form .btn{
  width: 100%;
  border: none;
  cursor: pointer;
  margin: 10px 0;
}

form .btn:focus{
  outline: none;
}


#LoginForm{

  left:-300px;
}

#RegForm{

  left:0px;
}

form a{
  font-size: 12px;
}


#Indicator{
  width: 100px;
  border: none;
  background: coral;
  height: 3px;
  margin-top: 8px;
  transform: translateX(100px);
  transition: transform 1s;
}

@media only screen and (max-width: 600px){
  .row{
      text-align: center;
  }
  .col-2 , .col-3 , .col-4{
      flex-basis: 100%;
  }

  .single-product .row{
      text-align: left;
  }

  .single-product .col-2{
      padding: 20px 0;
  }

  .single-product h1{
      font-size: 26px;
      line-height: 32px;
  }

  .cart-info p{
      display: none;
  }

}

/*blog page*/
/* Create two unequal columns that floats next to each other */
/* Left column */
.row:after{
	content: '';
	display: table;
	clear: both;
}

header h1{
	text-align: center;
	font-size:60px;
	color:#000000;
	margin:1.5 0px;
}

h2{
	color:#000000;
margin:1.5 0px;	
}
.left-column{
float: left;
width: 75%;	
}

.right-column{
 width: 25%;
 float: right;
 padding-left:20px;
}
.card{
	padding: 20px;
	background-color: #95bbcc;
 margin-top:20px;
}

.card img{
	width: 100%;
}


.right-column .card img{
	margin-bottom: 10px;
}



/*responsive */

@media(max-width:800px){
	.left-column,.right-column{
    width: 100%;
    padding: 0px;
	}
}
 

/*ajouter un produit*/
.container1{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 100px;
}

.container1:after{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: url("img/bg.jpg") no-repeat center;
	background-size: cover;
	filter: blur(50px);
	z-index: -1;
}
.contact-box1{
	max-width: 850px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	justify-content: center;
	align-items: center;
	text-align: center;
	background-color: #fff;
	box-shadow: 0px 0px 19px 5px rgba(0,0,0,0.19);
}

.left1{
	background: url("img/bg.jpg") no-repeat center;
	background-size: cover;
	height: 100%;
}

.right1{
	padding: 25px 40px;
}

h2{
	position: relative;
	padding: 0 0 10px;
	margin-bottom: 10px;
}

h2:after{
	content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    height: 4px;
    width: 50px;
    border-radius: 2px;
    background-color: #e43b49;
}

.field{
	width: 100%;
	border: 2px solid rgba(0, 0, 0, 0);
	outline: none;
	background-color: rgba(230, 230, 230, 0.6);
	padding: 0.5rem 1rem;
	font-size: 1.1rem;
	margin-bottom: 22px;
	transition: .3s;
}

.field:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

textarea{
	min-height: 150px;
}


.field:focus{
    border: 2px solid rgba(30,85,250,0.47);
    background-color: #fff;
}

@media screen and (max-width: 880px){
	.contact-box{
		grid-template-columns: 1fr;
	}
	.left{
		height: 200px;
	}

}




/*Discover our story*/

.global-headline{
  text-align:center;
  margin-top:3.9rem;
}

.discover-our-story.global-headline{
  margin-top:6.9rem;
}


.global-headline .asterisk{
  color:var(--body-font-color);
  margin:2.4rem 0;
}

.headline-dark{
  color:var(--main-font-color-dark);
  letter-spacing: .7rem;
  margin-right: -.7rem;
}

.global-headline .sub-headline{
  letter-spacing:-1px;
  line-height:.42;
  color: blue;
}

.restaurant-info{
  text-align:center;
}

.restaurant-description{
  margin-bottom:3rem;
}

.restaurant-description p{
  line-height:1.6;
  margin-bottom:2.4rem;
}

.footer-top{
	background:#343434;
}
 .footer-content2{
        max-width: 100rem;
        margin:auto;
		padding:50px 0px;
    }
 .footer-content2 h4{
	 font-size:22px;
	 color:#fff;
 }
 .banner-content h1 span{
	 font-size:45px;
	 font-weight:100;
	 text-transform:uppercase;
 }
  .banner-content2 h1 span{
	 font-size:45px;
	 font-weight:100;
	 text-transform:uppercase;
 }
.footer-links li{
display:block;
text-align:left;
	
}
.footer-links li a{
	color:#e2e2e2;
}
.card-header{
	background:#fff;
	border:1px solid #e4e4e4;
	padding:10px;
}

.card-footer{
	background:#e4e4e4;
	padding:15px;
}
.about-content .section-titles h1{
	
	text-align:Left;
	font-size:3rem;
}
.about-content .title{
	text-align:left;
}

.about-content{
	
	padding:50px 0px;
	text-align:justify;
}

.footer-content h2{
	color:#fff!important;
}
.newsletter-container h4{
	text-align:Left;
}

.product .title{
	text-align:center;
}

.product .img__container{
	padding:15px;
	background:#e2e2e2;
	margin-right:25px;
}


.product-sec .primary__title::after {
  
  left: 45%;
 
}

.pd50{
    padding:100px 0px 150px 0px;
}

.top-rht{
    float:right;
}