*{
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
}
/*universal-coeds*/
img{
    max-width: 100%;
    height: auto;
    object-fit: top;
}
/*css-varibles*/
:root{
    --main:#f0d9d1;
   --play:"Playfair Display", serif;
   --brown:#000000;
}
/*header-starting*/
header{
    width: 100%;
}
header nav.navbar{
  width: 100%;
  justify-content: space-between;

}
header nav.navbar  img{
    width: 175px;
  margin-left: 150px;
}

header nav.navbar{
  background-color: var(--main);
  text-align: center;
  align-items: center;
  padding: 10px 0px;
}
header nav.navbar   ul{
  margin: 0;
  padding: 0;
}
header nav.navbar ul.last{
  margin-left: 400px;
}
header nav.navbar   ul li a{
    text-decoration: none;
    color: var(--brown);
    text-transform: uppercase;
    font-family: var(--play);
    font-size: 18px;
    line-height: 32px;
    font-weight: 800;
}
header nav.navbar  ul li a:hover{
    color: #aa6e5a;
}
.offcanvas .offcanvas-header h5.offcanvas-title{
    color: var(--brown);
    text-transform: uppercase;
    font-family: var(--play);
    font-size: 30px;
    line-height: 48px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
}
.offcanvas .offcanvas-body ul li{
    margin-bottom: 15px;
}
.offcanvas .offcanvas-body ul li a{
    text-decoration: none;
    color: var(--brown);
    text-transform: uppercase;
    font-family: var(--play);
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}
.offcanvas .offcanvas-body ul li a:hover{
  color: var(--main);
}
.offcanvas .carousel-control-prev-icon,
.offcanvas .carousel-control-next-icon {
    background-color:black; 
}
.offcanvas .offcanvas-body ul li h2{
    color: #633f33;
    text-transform: uppercase;
    font-family: var(--play);
    font-size: 22px;
    line-height: 32px;
    font-weight: 800;
    align-items: center;
    justify-content: center;
}
header .headerTitle{
    width: 100%;
    position: relative;
}
header .headerTitle .carousel .carousel-inner .carousel-item img{
    height: 650px;
    filter: brightness(49%);
}
header .headerTitle .carouselText{
  position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 60px;
}
header .headerTitle .carouselText h1{
  font-weight: 700;
  font-size: 80px;
  line-height: 70px;
  font-family: var(--play);
  color: rgb(229, 217, 217);
}
/*main-starting*/



@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:opsz@6..12&family=Raleway:wght@700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Nunito Sans", sans-serif;
}

main{
    width: 100%;
    background-color: var(--main);
}

main .cards {
  position: relative;
  width: calc(min(90rem, 90%));
  margin: 0 auto;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  column-gap: 3rem;
  padding-block: min(20vh, 3rem);
}

.swiper {
  width: 100%;
  padding: 1.875rem 0;
}

.swiper-slide {
  width: 18.75rem;
  height: 35rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
  box-shadow: 0.063rem 0.5rem 1.25rem rgba(0, 0, 0, 0.1216);
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.swiper-slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: rotate(180deg);
  line-height: 0;
  bottom: -0.063rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}
.swiper-slide-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  z-index: -1;
  transition: 0.3s ease-in-out;
  transform: rotate(-180deg);
}
.swiper-slide-img svg {
  position: relative;
  display: block;
  width: calc(300% + 1.3px);
  height: 5rem;
  transform: rotateY(180deg);
}
.swiper-slide-img .shape-fill {
  fill: #ffffff;
}
.swiper-slide-content {
  background: #fff;
  padding: 0 1.65rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: 100%;
}
.swiper-slide-content > div {
  transform: translateY(-1.25rem);
}
.swiper-slide-content h2 {
  color: var(--brown);
  font-family: var(--play);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.425rem;
  text-transform: capitalize;
  letter-spacing: 0.02rem;
}
.swiper-slide-content p {
  color: var(--brown);
  line-height: 1.6;
  font-size: 0.9rem;
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.swiper-slide-content .show-more {
  width: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #24aad9;
  border-radius: 50%;
  box-shadow: 0px 0.125rem 0.875rem #24aad96b;
  margin-top: 1em;
  margin-bottom: 0.2em;
  height: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  margin-left: auto;
}
.swiper-slide-content .show-more:hover {
  background: #1184ac;
}
.swiper-slide-content .show-more svg {
  width: 1.75rem;
  color: #fff;
}

.swiper-slide-active:hover img {
  transform: scale(1.2) rotate(-185deg);
}

.swiper-slide-active:hover .show-more {
  opacity: 1;
  height: 3.125rem;
}

.swiper-slide-active:hover p {
  display: block;
  overflow: visible;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

@media screen and (min-width: 93.75rem) {
  .swiper {
    width: 85%;
  }
}
/*section-starting*/
section.menu{
  width: 100%;
  background-color: var(--main);
}
section.menu .container .row ul{
  border-bottom: none;
}
section.menu .container .row ul li button:focus{
  color: var(--main);
  background-color: var(--brown);
  border: var(--brown);
}
section.menu .container .row ul li button{
  color: var(--brown);
  margin-bottom: 30px;
}
section.menu .container .row .tab-content .tab-pane .hotcofe .cards,
section.menu .container .row .tab-content .tab-pane .iceCofe .cards,
section.menu .container .row .tab-content .tab-pane .whiteCofe .cards,
section.menu .container .row .tab-content .tab-pane .tea .cards,
section.menu .container .row .tab-content .tab-pane .other .cards{
display: grid;
grid-template-columns: repeat(4, auto);
}

section.menu .container .row .tab-content .tab-pane .hotcofe .card,
section.menu .container .row .tab-content .tab-pane .iceCofe .card,
section.menu .container .row .tab-content .tab-pane .whiteCofe .card,
section.menu .container .row .tab-content .tab-pane .tea .card ,
section.menu .container .row .tab-content .tab-pane .other .card{
  margin-bottom: 30px;
}
section.menu .container .row .tab-content .tab-pane .hotcofe .card img,
section.menu .container .row .tab-content .tab-pane .iceCofe .card img,
section.menu .container .row .tab-content .tab-pane .whiteCofe .card img,
section.menu .container .row .tab-content .tab-pane .tea .card img ,
section.menu .container .row .tab-content .tab-pane .other .card img
  {
  width: 300px;
  height: 200px;
}
section.menu .container .row .tab-content .tab-pane .hotcofe .card .card-body,
section.menu .container .row .tab-content .tab-pane .iceCofe .card .card-body,
section.menu .container .row .tab-content .tab-pane .whiteCofe .card .card-body,
section.menu .container .row .tab-content .tab-pane .tea .card .card-body ,
section.menu .container .row .tab-content .tab-pane .other .card .card-body
  {
  width: 300px;
  height: 80px;
}
section.menu .container .row .tab-content .tab-pane .tea .card .lastTea .card-body{
  height: 100px;
}
section.menu .container .row .tab-content .tab-pane  .card .card-body h5{
  color: var(--brown);
  font-family: var(--play);
  font-weight: 500;
  font-size: 22px;
  line-height: 25px;
  margin-bottom: 0.425rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

section.menu .container .row .tab-content .tab-pane .cad-text-h2 h2{
  color: var(--brown);
  font-family: var(--play);
  font-weight: 700;
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 0.425rem;
  text-transform: capitalize;
  letter-spacing: 0.02rem;
}
section.menu .container .row .tab-content .tab-pane .hotcofe .card .card-body .stars,
section.menu .container .row .tab-content .tab-pane .iceCofe .card .card-body .stars,
section.menu .container .row .tab-content .tab-pane .whiteCofe .card .card-body .stars,
section.menu .container .row .tab-content .tab-pane .tea .card .card-body .stars,
section.menu .container .row .tab-content .tab-pane .other .card .card-body .stars
{
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: space-between;
}
section.menu .container .row .tab-content .tab-pane .hotcofe .card .card-body .stars ul,
section.menu .container .row .tab-content .tab-pane .iceCofe .card .card-body .stars ul,
section.menu .container .row .tab-content .tab-pane .whiteCofe .card .card-body .stars ul,
section.menu .container .row .tab-content .tab-pane .tea .card .card-body .stars ul,
section.menu .container .row .tab-content .tab-pane .other .card .card-body .stars ul
{
  display: grid;
  grid-template-columns: repeat(5, auto);
}
section.menu .container .row .tab-content .tab-pane .hotcofe .card .card-body .stars ul li,
section.menu .container .row .tab-content .tab-pane .iceCofe .card .card-body .stars ul li,
section.menu .container .row .tab-content .tab-pane .whiteCofe .card .card-body .stars ul li,
section.menu .container .row .tab-content .tab-pane .tea .card .card-body .stars ul li,
section.menu .container .row .tab-content .tab-pane .other .card .card-body .stars ul li
{
  color: #ffbf00;
}
section.aboutUs{
  background-color: var(--main);
}
section.aboutUs .text{
  align-items: center;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
section.aboutUs .text h1{
  font-weight: 700;
  font-size: 80px;
  line-height: 70px;
  font-family: var(--play);
  color: var(--brown);
}
section.aboutUs .text p{
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  font-family: var(--play);
  color: var(--brown);
  margin-top: 50px;
}
section.aboutUs .text p span{
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  font-family: var(--play);
  color: var(--brown);
}
footer{
 background-color: #633f33; 
}
footer .container .row .col-lg-5 .image{
  width: 400px;
  margin-top: 75px;
  align-items: center;
  text-align: center;
}

footer .container .row .col-lg-5 .image p{
  margin-top: 20px;
  font-weight: 400;
  font-size: 22px;
  line-height: 27px;
  font-family: var(--play);
  color: #fec2ae ;
}
footer .container .row .col-lg-3 ul{
  margin-top: 100px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
footer .container .row .col-lg-3 ul li{
  margin-bottom: 5px;
}
footer .container .row .col-lg-3 ul li a{
  text-decoration: none;
  color: #fec2ae;
  text-transform: uppercase;
  font-family: var(--play);
  font-size: 18px;
  line-height: 32px;
  font-weight: 800;
}
footer .container .row .col-lg-4 .contacts{
  margin-top: 50px;
  text-align: center;
  justify-content: center;
  align-items: center; 
}
footer .container .row .col-lg-4 .contacts h5{
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  font-family: var(--play);
  color: #fec2ae;
  margin-top: 50px;
}
footer .container .row .col-lg-4 .contacts ul li a{
  text-decoration: none;
  color: #f49473;
  text-transform: uppercase;
  font-family: var(--play);
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}
footer .container .row .col-lg-4 .adress{
  text-align: center;
  justify-content: center;
  align-items: center;
}
footer .container .row .col-lg-4 .adress h5{
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
  font-family: var(--play);
  color: #fec2ae;
  margin-top: 50px;
}
footer .container .row .col-lg-4 .adress ul li a{
  text-decoration: none;
  color: #f49473;
  text-transform: uppercase;
  font-family: var(--play);
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
}
footer .container .row ul li a i{
  margin-right: 5px;
}






/* */
@media(max-width: 1200px){
  header nav.navbar ul li a{
    font-size: 18px;
    line-height: 14px;
  }
 
  section.menu .container .row .tab-content .tab-pane .hotcofe .cards,
section.menu .container .row .tab-content .tab-pane .iceCofe .cards,
section.menu .container .row .tab-content .tab-pane .whiteCofe .cards,
section.menu .container .row .tab-content .tab-pane .tea .cards,
section.menu .container .row .tab-content .tab-pane .other .cards{
  display: grid;
  grid-template-columns: repeat(3, auto);
}
header .headerTitle .carouselText h1{
  font-weight: 700;
  font-size: 60px;
  line-height: 50px;
}
 }
@media(max-width: 991px){

  section.menu .container .row .tab-content .tab-pane .hotcofe .cards,
section.menu .container .row .tab-content .tab-pane .iceCofe .cards,
section.menu .container .row .tab-content .tab-pane .whiteCofe .cards,
section.menu .container .row .tab-content .tab-pane .tea .cards,
section.menu .container .row .tab-content .tab-pane .other .cards{
  display: grid;
  grid-template-columns: repeat(2, auto);
}
header .headerTitle .carouselText h1{
  font-weight: 700;
  font-size: 52px;
  line-height: 52px;
  width: 400px;
}
footer .container .row .col-lg-5 .image{
  width: 400px;
  margin-top: 85px;
margin-left: 175px;
}

}
@media(max-width: 768px){

  section.menu .container .row .tab-content .tab-pane .hotcofe .cards,
section.menu .container .row .tab-content .tab-pane .iceCofe .cards,
section.menu .container .row .tab-content .tab-pane .whiteCofe .cards,
section.menu .container .row .tab-content .tab-pane .tea .cards,
section.menu .container .row .tab-content .tab-pane .other .cards{
  display: grid;
  grid-template-columns: repeat(1, auto);
  margin-left: 75px;
}
header nav.navbar ul.last{
  margin:auto;
}
header .headerTitle .carouselText h1{
  font-weight: 700;
  font-size: 52px;
  line-height: 52px;
}
footer .container .row .col-lg-5 .image{
  width: 400px;
  margin-top: 75px;
margin-left: 75px;
}
} 
@media(max-width: 576px){

  section.menu .container .row .tab-content .tab-pane .hotcofe .cards,
section.menu .container .row .tab-content .tab-pane .iceCofe .cards,
section.menu .container .row .tab-content .tab-pane .whiteCofe .cards,
section.menu .container .row .tab-content .tab-pane .tea .cards,
section.menu .container .row .tab-content .tab-pane .other .cards{
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
}
header nav.navbar ul.last{
  margin:auto;
}
header nav.navbar img{
  margin-left: 50px;
}
header .headerTitle .carouselText h1{
  font-weight: 500;
        font-size: 30px;
        line-height: 30px;
        width: 200px;
    }
    section.menu .container .row .tab-content .tab-pane .cad-text-h2 h2{
      font-size: 32px;
      line-height: 45px;
    }
    footer .container .row .col-lg-5 .image{
     margin-left: 0;
      width: 310px;
      } 
      footer .container .row .col-lg-5 .image img{
        width: 300px;
      }
      footer .container .row .col-lg-5 .image p{
        margin-top: 20px;
        font-weight: 400;
        font-size: 22px;
        line-height: 27px;
        font-family: var(--play);
        color: #fec2ae ;
        width: 300px;
      }
}
