@import url("https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&family=Manrope:wght@200..800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  overflow-x: hidden;
}

body {
  font-family: "Manrope", sans-serif;
  background-color: #FEF9F1;
  overflow: hidden;
}

h1 {
  font-size: 4.625rem;
  font-weight: 800;
  line-height: 3.495rem;
}

h2 {
  font-size: 5rem;
  font-weight: 300;
  line-height: 3.495rem;
}

a {
  color: #ffffff;
}

h3 {
  font-size: 2.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.625rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
  font-weight: 500;
}

p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
}

a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

/*--------margin and padding global------*/
.mt-6 {
  margin-top: 6rem;
}

.mb-6 {
  margin-bottom: 6rem;
}

.my-6 {
  margin: 6rem 0rem;
}

.mx-6 {
  margin: 0rem 6rem;
}

.p-6 {
  padding: 6rem;
}

.pt-6 {
  padding-top: 6rem;
}

.pb-6 {
  padding-bottom: 6rem;
}

.py-6 {
  padding: 6rem 0rem;
}

.px-6 {
  padding: 0rem 6rem;
}

.rounded-4 {
  border-radius: 1rem;
}

.bg-white {
  background-color: #ffffff;
}

.text-red {
  color: #E11F26;
}

.drop-shadow {
  box-shadow: 0.625rem 0.625rem 3.125rem 0rem rgba(0, 0, 0, 0.05);
}

.bg-gradient {
  background: linear-gradient(0deg, rgba(252, 248, 244, 0) 0%, #FCF8F4 100%);
}

.bg-gradient-light {
  background: linear-gradient(0deg, rgba(252, 248, 244, 0) 0%, #FCF8F4 100%);
}

.border-red {
  border: 1px solid #E11F26;
}

.button_white {
  background-color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  padding: 0.8rem 4rem;
  border-radius: 0.625rem;
}
.button_white a {
  color: #E11F26;
  text-decoration: none;
}

.button_red {
  background-color: #E11F26;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 0.625rem;
}
.button_red a {
  color: #ffffff;
  text-decoration: none;
}

.tashika-header {
  background-image: url(../images/home/tasvika-header-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100%;
}

.marquee-container {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  animation: marquee 13s linear infinite;
}
.marquee-container .marquee-content {
  margin-right: 1.25rem;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes textAnimation {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.header-top-wrapper {
  background-color: #000000;
  color: #ffffff;
}
.header-top-wrapper h6 {
  font-size: 0.9rem;
  margin-bottom: 0;
}
.header-top-wrapper .header-contacts ul li a {
  color: #ffffff;
  font-size: 0.9rem;
}

header nav .menu-list li a {
  color: #000000;
  font-weight: 600;
}
header nav .menu-list li a.active {
  color: #E11F26;
}
header .offcanvas .offcanvas-header img {
  width: 45%;
}
header .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
  margin-left: 0rem;
  border-bottom: 1px solid #E11F26;
  padding: 1rem 0rem;
}

.clients {
  position: relative;
  z-index: 1;
}

.tashvika_slider .gallery h5 {
  color: #e11f26;
  font-size: 1.25rem;
  font-weight: 600;
}

.upcoming_events .event-card .card-inner {
  border: 1px solid #d2d2d2;
  border-radius: 1.5625rem;
  padding: 0.2rem 1rem;
  width: -moz-fit-content;
  width: fit-content;
}
.upcoming_events .event-card .card-inner .calender-logo {
  aspect-ratio: 8/8;
  width: 1rem;
  -o-object-fit: fill;
     object-fit: fill;
}
.upcoming_events .event-card .card-inner .time-logo {
  aspect-ratio: 8/8;
  width: 1.2rem;
  -o-object-fit: fill;
     object-fit: fill;
}
.upcoming_events .event-card .card-inner p {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: normal;
}
.upcoming_events .event-card h5 {
  font-size: 1.7rem;
  font-weight: 700;
}
.upcoming_events .event-card .loco-icon {
  max-height: 1.5rem;
  min-height: 1.5rem;
  margin-top: 0.125rem;
}

.upcoming_events {
  position: relative;
}
.upcoming_events .upcoming_heading::before {
  content: "";
  background-image: url(../images/home/millet_after.png);
  position: absolute;
  width: 18rem;
  height: 21rem;
  left: -3rem;
  top: 21rem;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}
.upcoming_events .upcoming_heading::after {
  content: "";
  background-image: url(../images/home/millet_before.png);
  position: absolute;
  width: 23rem;
  height: 31rem;
  right: -9rem;
  bottom: 7rem;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}

.for_everyone {
  background-image: url("../images/home/hlt-food-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 65%;
  position: relative;
}
.for_everyone::before {
  content: "";
  position: absolute;
  display: block;
  background: linear-gradient(0deg, rgba(252, 248, 244, 0) 0%, #fcf8f4 100%);
  width: 100%;
  height: 3rem;
  top: 0;
}

.controls {
  text-align: center;
  margin-top: 1.25rem;
}

.controls button {
  padding: 0.625rem 1.25rem;
  margin: 0.3125rem;
  cursor: pointer;
  background-color: #4dc7a0;
  color: white;
  border: none;
  border-radius: 0.3125rem;
}

.contact-us {
  background: linear-gradient(0deg, #e11f26 -825.06%, #ffffff 100%);
}
.contact-us .dot-images {
  position: relative;
}
.contact-us .dot-images img {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
}

.contact-us {
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.contact-us .con-side-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}
.contact-us .con-side-bar p {
  transform: rotate(-90deg);
}

.contact_image {
  position: relative;
  z-index: 2;
}
.contact_image::after {
  position: absolute;
  content: url("../images/home/con-dots.png");
  height: 100%;
  width: 100%;
  z-index: -1;
  right: -85%;
  bottom: 9%;
}

.loaction-card {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
}

.slider-images .owl-carousel .item {
  text-align: center;
  color: rgb(0, 0, 0);
  font-size: 1.125rem;
  padding: 2rem 1rem;
}
.slider-images .owl-carousel .item h5 {
  padding-top: 20px;
}
.slider-images .owl-carousel .item img {
  aspect-ratio: 4/3;
  width: 100%;
  border-radius: 0.625rem;
}
.slider-images .owl-carousel .owl-item.active.center .item {
  transition: all 500ms ease-in-out;
  position: relative;
  z-index: 2;
  padding: 0 0;
}
.slider-images .owl-carousel .owl-prev img, .slider-images .owl-carousel .owl-prev svg,
.slider-images .owl-carousel .owl-next img,
.slider-images .owl-carousel .owl-next svg {
  width: 2.5rem;
}
.slider-images .owl-carousel .owl-prev:hover,
.slider-images .owl-carousel .owl-next:hover {
  background: transparent !important;
}

.amrit_bhojanam {
  position: relative;
}
.amrit_bhojanam .amrit {
  position: relative;
}
.amrit_bhojanam .amrit::before {
  content: "";
  background-image: url("../images/home/millet_after.png");
  position: absolute;
  width: 18rem;
  height: 21rem;
  right: -15rem;
  top: -4rem;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}
.amrit_bhojanam .amrit::after {
  content: "";
  background-image: url("../images/home/millet_before.png");
  position: absolute;
  width: 23rem;
  height: 31rem;
  left: 3.5rem;
  bottom: -3rem;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}
.amrit_bhojanam .millets .millet-left-img {
  text-align: end;
}
.amrit_bhojanam .millets .millet-left-img .millet-img {
  position: relative;
  margin-top: -7rem;
  z-index: -1;
  margin-left: 10rem;
}
.amrit_bhojanam .millets .millet-content h5 {
  color: #E11F26;
}

.marque-sec {
  position: relative;
}

.flower-card {
  position: relative;
}
.flower-card::after {
  content: "";
  background-image: url("../images/home/flower.png");
  position: absolute;
  width: 23rem;
  height: 31rem;
  left: -7.5rem;
  top: 0rem;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.tashvika_india .mou {
  border-radius: 2.5rem;
  background-color: #E11F26;
  padding: 2.6rem;
  color: #ffffff;
}
.tashvika_india .mou img {
  border-radius: 1.5rem;
}

.our_values .cards {
  box-shadow: rgba(149, 157, 165, 0.2) 0rem 0.5rem 1.5rem;
}

.for_everyone .everyone h5 {
  color: #E11F26;
}

.lets_connect {
  background-image: url(../images/home/let_connect_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.lets_connect .lets-connect-form {
  color: #ffffff;
}
.lets_connect .lets-connect-form .form-group .form-control {
  font-size: 1rem;
  line-height: 2.8rem;
  border-radius: 0.65rem;
  padding-inline: 1rem;
}
.lets_connect .lets-connect-form .form-group .form-control::-moz-placeholder {
  color: #7E7E7E;
}
.lets_connect .lets-connect-form .form-group .form-control::placeholder {
  color: #7E7E7E;
}

.blog {
  background: linear-gradient(180deg, rgba(252, 248, 244, 0) 0%, #fcf8f4 100%);
  background-image: url(../images/home/last_section_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.blog h3 {
  line-height: 3.75rem;
  text-align: center;
}
.blog .differ_page ul {
  list-style-type: none;
}
.blog .differ_page ul li {
  margin: 0px 2rem;
}
.blog hr {
  border-top: 2px solid #e2cebe;
}

.tashvika_food .pvt_ltd {
  font-size: 1rem;
  line-height: 1.195rem;
}

.subsccribe-wrapper {
  position: relative;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.2rem;
}
.subsccribe-wrapper .form-control {
  border: 0;
  border-radius: 0;
  border-right: 1px solid #000000;
  margin-right: 1rem;
  color: #7E7E7E;
}
.subsccribe-wrapper .form-control:focus-within {
  box-shadow: none;
  outline: none;
}

.differ_page ul li a {
  text-decoration: none;
  color: #000000;
  font-weight: 500;
}

.social_link {
  list-style: none;
  padding-left: 0;
}
.social_link li {
  display: inline-grid;
  place-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #ffffff;
}
.social_link li a {
  color: #000000;
}

.top-slid-heading h2 {
  color: brown;
  text-wrap: nowrap;
  font-family: "Amatic SC", sans-serif;
}

.our-card img {
  aspect-ratio: 6/5;
  width: 100%;
}
.our-card .our-card-text {
  background-color: #ffffff;
  text-align: center;
  box-shadow: 0.625rem 0.625rem 3.125rem 0rem rgba(0, 0, 0, 0.1);
}
.our-card .our-card-text p {
  font-size: 0.9rem;
}/*# sourceMappingURL=style.css.map */