/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #dfa194;
  --secondary: #333333;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
  font-family: "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: "Bungee", sans-serif;
  margin: 0;
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.preLoader.black {
  background-color: var(--white);
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--primary);
  font-size: 1.25rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  padding: 1.5625rem 2.5rem;
  border-radius: 7px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  line-height: normal;
  font-family: "Bungee";
}

.themeBtn::before {
  position: absolute;
  content: "";
  inset: 0;
  background: var(--primary);
  z-index: -2;
}

.themeBtn::after {
  position: absolute;
  content: "";
  background: var(--black);
  width: 100%;
  top: 100%;
  left: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: -1;
  box-shadow: 0 0 0 1rem #ffff inset, 0 0 0 2rem #cccc inset;
  transition: 1.9s ease;
}

.themeBtn:hover::after {
  top: -30%;
  left: 0%;
  transform: scale(3);
}

.themeBtn:hover {
  color: var(--white);
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 1.5rem 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 3.75rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--black);
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  font-family: "Bungee";
  position: relative;
}

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 4px;
  width: 0;
  background-color: var(--black);
  bottom: -5px;
  border-radius: 50px;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  transition: 0.8s ease;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 960px;
}

.homeSlider .swiper-button-next:after,
.homeSlider .swiper-button-prev:after {
  font-family: "Font Awesome 5 Pro";
  font-size: 1.875rem;
}

.homeSlider .swiper-button-next:hover {
  background-color: var(--black);
  color: var(--white);
  transition: 0.6s ease;
}

.homeSlider .swiper-button-prev:hover {
  background-color: var(--black);
  color: var(--white);
  transition: 0.6s ease;
}

.homeSlider .swiper-button-next:after {
  content: "\f105";
}

.homeSlider .swiper-button-prev:after {
  content: "\f104";
}

.homeSlider .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  display: flex;
  align-items: center;
  background: #fff;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50px;
}

.homeSlider .swiper-pagination-bullet-active::before {
  content: "'";
  height: 1.5625rem;
  width: 1.5625rem;
  position: absolute;
  background: unset;
  border: 2px solid #fff;
  left: -7px;
  right: 0;
  margin: auto;
  bottom: 0;
  top: 0;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  height: 4.25rem;
  width: 4.25rem;
  border-radius: 50px;
  background-color: var(--white);
  color: var(--black);
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 5rem;
  right: 0;
  left: 0;
  margin: auto;
}

.homeSlider .swiper-button-next {
  right: 4.8125rem;
}

.homeSlider .swiper-button-prev {
  left: 4.8125rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  display: inline-block;
  opacity: 1;
  background: transparent;
  position: relative;
  margin: 6px !important;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  height: 0.75rem;
  width: 0.75rem;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 8.125rem;
  line-height: 1.19;
  font-weight: bold;
  text-transform: uppercase;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
  font-size: 1.5625rem;
}

.slideOne .themeBtn {
  margin-top: 1.4rem;
}

/* !MAIN HERO SLIDER CSS */

/* New Css Start */
.form-inline ul {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.form-inline ul li a i:hover {
  background-color: var(--black);
  color: var(--white);
  transition: 0.6s ease;
}

.form-inline ul li a i {
  height: 3.55rem;
  width: 3.55rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  background-color: #f2f1ef;
  color: var(--black);
  font-size: 1.125rem;
}

.homeSlider .slide-inner::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 43%);
  border-radius: 30px;
  z-index: -1;
}

/* New Css start End  */

/* Bakes-Sec Css Start */

.mainHead {
  font-size: 4.375rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.2;
}

.bakes-content p {
  color: #565656;
  font-size: 1.125rem;
  text-transform: capitalize;
}

.bakes-content p+p {
  margin: 1.95rem 0;
}

.bakes-content {
  padding-left: 3.125rem;
}

.bakes-content h2 {
  margin-bottom: 0.625rem;
  font-size: 3rem;
}

/* Bakes-Sec Css End  */

/* Categories-Sec Css Start */

section.categories-sec {
  background-color: #f2f1ef;
  border-radius: 30px;
  border-bottom: 4px solid #372321;
  padding-bottom: 4rem;
}

.categories-wrapp:hover {
  transition: 0.9s ease;
  box-shadow: 0 46px 66px 0 rgb(0 0 0 / 25%);
}

section.categories-sec .mainHead {
  text-align: center;
  margin-bottom: 3rem;
}

.categories-wrapp {
  text-align: center;
  background-color: var(--white);
  padding: 2.375rem 2.625rem 2.5rem;
  border-radius: 40px;
}

.categories-wrapp figure img {
  width: 100%;
}

.categoreis-content a {
  display: grid;
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  font-family: "Bungee";
}

.categoreis-content a:nth-child(1) {
  margin: 1rem 0 0.625rem;
}

.categories-wrapp+.categories-wrapp {
  margin: 2.5rem 0;
}

.categories-wrapp figure {
  overflow: hidden;
}

.categories-wrapp figure:hover img {
  transition: 0.6s ease;
  transform: scale(1.1);
}

/* Categories-Sec Css End  */

/* Project-Sec Css Start */
.project-wrapp {
  text-align: center;
  background-color: #9f5c01;
  padding: 3.8125rem 4.0625rem 3.4375rem;
  border-radius: 40px;
}

.project-wrapp figure img {
  width: 100%;
}

.projetslider .swiper-pagination-bullet-active::after {
  background: #000;
  position: absolute;
  content: "";
  height: 0.625rem;
  width: 0.625rem;
  border-radius: 50px;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
}

.project-content h2 {
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 1.875rem;
}

.project-content p {
  color: #dddddd;
  font-size: 1.125rem;
  line-height: 1.9;
  text-transform: capitalize;
  width: 80%;
  margin: 1rem auto 1.6rem;
}

.project-content .themeBtn {
  padding: 1.5625rem 1.875rem;
}

.projetslider {
  padding-bottom: 6rem;
}

.projetslider .swiper-pagination-bullet {
  position: relative;
  height: 1.25rem;
  width: 1.25rem;
  background: unset;
  margin: 0 !important;
}

.projetslider .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background: #000;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 50px;
  display: flex;
  align-items: center;
  top: 0;
  bottom: 0;
}

.projetslider .swiper-pagination-bullet-active {
  border: 1px solid #000;
}

.project-wrapp figure {
  overflow: hidden;
}

.project-wrapp figure:hover img {
  transform: scale(1.1);
  transition: 0.6s ease;
}

/* Project-Sec Css End  */

/* Gallery-Sec Css Start */

.galleryslider {
  padding-bottom: 2.8125rem;
}

section.gallerry-sec {
  border-radius: 30px;
  background-color: #fff1df;
  padding: 6.9375rem 0 4.375rem;
  border-bottom: 4px solid #372321;
}

section.gallerry-sec h2 {
  font-size: 70px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  margin-bottom: 4rem;
}

/* Gallery-Sec Css End  */

/* Customers-Feedback-Sec Css Start */

section.feedback .mainHead {
  text-align: center;
  margin-bottom: 2.125rem;
}

.star-rating ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.star-rating {
  background-color: #f8f8f8;
  padding: 1.875rem 2.0625rem 1.875rem 3rem;
  border-radius: 7px;
  border: 1px solid #e7eaec;
}

.feedback-logo {
  display: flex;
  align-items: center;
  gap: 13px;
}

.star-rating p {
  margin-top: 1.125rem;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  color: #133240;
  line-height: 2.1;
  font-weight: 500;
}

.star-rating ul li a i {
  color: #f8a401;
}

.feedback-logo h3 {
  color: #133240;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: "Roboto", sans-serif;
}

.feedbackCard {
  position: relative;
  display: inline-block;
  overflow: visible;
  z-index: 1;
}

.feedbackCard .quote {
  position: relative;
  right: 50px;
  top: 30px;
  text-align: right;
}

.feedbackSlider {
  padding-bottom: 80px;
}

.feedbackSlider .swiper-pagination-bullets {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.feedbackSlider .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border: 2px solid #605d5d;
  background: transparent;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
  box-sizing: border-box;
}

.feedbackSlider .swiper-pagination-bullet-active {
  border-color: #605d5d;
}

.feedbackSlider .swiper-pagination-bullet-active::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #605d5d;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Customers-Feedback-Sec Css End  */

/* Sweet-Cake-Sec Css Start */

.sweet-container figure {
  position: relative;
}

.sweet-container figure::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 85%);
  border-radius: 40px;
}

.sweet-container {
  position: relative;
}

.sweet-container::before {
  content: "";
  position: absolute;
  background: #c2760f;
  width: 1297px;
  height: 44px;
  bottom: -1.125rem;
  left: 3%;
  border-radius: 40px;
}

.sweet-container::after {
  content: "";
  position: absolute;
  background: #dfa194;
  width: 1254px;
  height: 82px;
  bottom: -34px;
  left: 4.5%;
  border-radius: 40px;
  z-index: -1;
}

.sweet-moment {
  position: absolute;
  top: 97px;
  padding: 0 125px 0;
}

form.sweet-form .themeBtn {
  border: unset;
  outline: unset;
  padding: 15px 29px;
}

.sweet-cake h1 {
  font-size: 4.157rem;
  color: var(--white);
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
}

form.sweet-form label {
  margin: 3px;
  color: #cfcfcf;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: capitalize;
}

.sweet-cake h1 span {
  color: #dfa194;
}

.sweet-form {
  margin-top: 50px;
}

.sweet-form .form-control {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 1.5625rem 0.75rem;
  outline: unset;
  box-shadow: unset;
}

/* Sweet-Cake-Sec Css End  */

/* Footer-Sec Css Start */

footer {
  background-color: var(--black);
  padding-top: 121px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.biscuite {
  position: absolute;
  top: 2%;
  right: 11%;
}

.phone-link {
  text-align: center;
  margin-bottom: 70px;
}

.phone-link h4 {
  color: var(--white);
  margin: 0.75rem 0 0.2rem;
  font-size: 1.125rem;
}

.phone-link a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 400;
}

.quicklist li+li {
  margin-top: 12px;
}

.quicklist li a {
  color: var(--white);
  font-size: 1.125rem;
  font-family: "Bungee", sans-serif;
  text-transform: uppercase;
}

.social-link {
  margin-top: 33px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.social-link li a {
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--white);
  border-radius: 50px;
  display: grid;
  place-items: center;
  color: var(--black);
}

.footer-form {
  text-align: right;
}

.footer-form .form-group {
  background: var(--white);
  text-align: left;
  display: flex;
  align-items: center;
  padding-left: 20px;
  border-radius: 6px;
}

.footer-form .form-group i {
  color: #372321;
  font-size: 24px;
}

.footer-form .form-group .form-control {
  height: 100%;
  padding: 1rem 0 1rem 1rem;
  border: unset;
  margin-left: 5px;
  outline: unset;
  box-shadow: unset;
}

.footer-form .form-group .form-control::placeholder {
  color: #787878;
}

.copyRight {
  padding: 2rem 0;
  border-top: 1px solid var(--white);
  margin-top: 75px;
}

.copyRight p {
  color: var(--white);
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
}

.footer-form .themeBtn {
  border: unset;
  outline: unset;
}

form.footer-form .themeBtn::after {
  background-color: var(--white);
}

form.footer-form .themeBtn:hover {
  color: var(--black);
}

.quicklist li:hover {
  transform: translate(20px);
  transition: 0.6s ease;
}

.social-link li a:hover {
  background-color: var(--primary);
  color: var(--white);
}

section.feedback {
  padding-bottom: 3rem;
}

/* Footer-Sec Css End  */

.circle {
  animation: rotateme 20s linear infinite;
  position: absolute;
  bottom: -22rem;
  right: 0;
}

@keyframes rotateme {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.galleryslider a img {
  border-radius: 40px;
}

.galleryslider1 a img {
  border-radius: 40px;
}

.biscuite.circle {
  right: 11%;
}

.pulse {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.arrow-link i {
  transition: transform 0.3s ease;
}

.arrow-link:hover i {
  transform: translateX(8px);
}

/* Inner-Pages Css Start */

.inner-banner {
  background: url(../images/innerimg.png) no-repeat center / cover;
  width: 100%;
  height: 800px;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 30px;
}

.inner-banner::before {
  border-radius: 30px;
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(0 0 0 / 43%);
}

.inner-banner .mainHead {
  font-size: 8.125rem;
  color: var(--white);
  z-index: 11;
}

.projec-sec.projec-page .project-wrapp {
  margin-bottom: 2.5rem;
}

.gallerry-sec.gallerry-page a {
  margin: 0.625rem 0;
  display: inline-block;
}

.feedback.feedback-page .row+.row {
  padding-top: 1.125rem;
}

.feedback.feedback-page {
  padding: 8.125rem 0;
}

.contact-icon .phone-link h4 {
  color: var(--black);
  margin-top: 0.89rem;
}

.contact-icon .phone-link a {
  color: var(--black);
}

.sweet-cake.contact-page {
  padding-top: 0;
  margin-top: -24rem;
  z-index: 1;
}

section.sweet-cake.contact-page .biscuite {
  top: -5rem;
}


section.contact-icon {
  padding-top: 3rem;
}

/* Inner-Pages Css End  */



.footerLogo img {
  filter: brightness(0) invert(1);
}

.privacy-policy p {
  margin-bottom: 1rem;
}

.privacy-policy h3 {
  color: var(--secondary);
  font-weight: 600;
  margin: .6rem 0;
}

.extra_content li {
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
  color: rgb(1, 22, 45, 67%);
  font-family: var(--font-text);
  margin-left: 20px;
  list-style: disc;
}