/*======================
   01. Theme Base CSS
=========================*/
html,
body {
  width: 100%;
  height: 100%;
}

body {
  position: relative;
  font-family: "Open Sans", sans-serif;
  color: #2d353d;
  font-size: 16px;
  letter-spacing: 0.26px;
  font-weight: 400;
  background: #e6dcf7;
  height: unset;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  height: 100vh;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  background: #e6dcf7;
  background: linear-gradient(45deg, #e6dcf7 0%, #ede8f5 100%);
  z-index: -1;
}

section {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.container-fluid {
  padding: 0px;
  height: 100%;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0px auto;
  padding: 0px 15px;
}

* {
  box-sizing: border-box;
}

p,
tr td {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.26px;
  line-height: 24px;
  color: #2d353d;
  margin: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 10px;
  font-family: "Roboto", sans-serif;
  color: #8b735b;
  font-size: 28px;
  font-weight: 500;
}

a {
  font-family: "Roboto", sans-serif;
  text-decoration: none;
  display: block;
  margin: 0px;
  color: #2d353d;
  font-weight: 500;
  text-transform: capitalize;
}

a:hover {
  text-decoration: none;
}

a:active,
a:hover {
  outline: 0 none;
  color: none !important;
}

button {
  cursor: pointer;
  background: transparent;
  border: 0px;
  outline: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

section {
  position: relative;
}

dialog,
figure,
figcaption {
  margin: 0px;
  border: 0px;
  padding: 0px;
  position: relative;
}

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

li {
  display: inline-block;
}

.section_title {
  text-transform: capitalize;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  width: 100%;
  font-size: 38px;
  line-height: 52px;
  font-weight: 700;
  margin-bottom: 40px;
}

.o_zero {
  opacity: 0;
}

.d_none {
  display: none;
}

.color_one {
  color: #17b0c3;
}

.bold_p {
  font-weight: 700;
}

header {
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
header.sticky {
  position: fixed;
  width: 100%;
  background: linear-gradient(45deg, #e6dcf7 0%, #ede8f5 100%);
  transition: all 0.3s ease-in-out;
  animation: top 1s 1;
}
@keyframes top {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
header.sticky .navarea .logo a {
  color: #8b735b;
}
header .menu-button {
  display: none;
}
header .navarea {
  display: flex;
  align-items: center;
  padding: 20px 0;
  gap: 50px;
  justify-content: space-between;
}
header .navarea .logo a {
  text-transform: uppercase;
  font-size: 32px;
  line-height: 40px;
  color: #f9cb41;
  font-weight: 600;
}
header .navarea .menu ul li {
  padding: 0px 10px;
}
header .navarea .menu ul li a {
  position: relative;
  padding: 5px 10px;
}
header .navarea .menu ul li a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  height: 1px;
  background: #2d353d;
  top: unset;
  bottom: 0;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}
header .navarea .menu ul li a:hover::before {
  transform: scaleX(1);
  transition: all 0.3s ease-in-out;
}

.banner {
  padding: 120px 0px 120px;
  position: relative;
}
.banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  width: 50%;
  background: #8b735b;
  z-index: -1;
  background: #8b735b;
}
.banner .banner_area {
  display: flex;
  gap: 50px;
  align-items: center;
}
.banner .banner_area .banner_content {
  width: 50%;
}
.banner .banner_area .banner_content h1 {
  font-size: 62px;
  margin-bottom: 30px;
  color: #f9cb41;
}
.banner .banner_area .banner_content p {
  font-size: 18px;
  color: rgb(255, 255, 255);
  line-height: 30px;
  padding-right: 50px;
}
.banner .banner_area .banner_img {
  height: 520px;
  margin: 0px auto;
  display: flex;
  margin-top: 50px;
}
.banner .banner_area .banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section_title {
  margin-bottom: 50px;
}
.section_title h2 {
  font-size: 38px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}
.section_title h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  height: 4px;
  width: 50%;
  background: #8b735b;
  bottom: 0;
  top: unset;
  left: 50%;
  transform: translate(-50%, 0);
}
.section_title p {
  margin-bottom: 10px;
  font-size: 18px;
}

.orderbtn {
  margin-top: 40px;
}
.orderbtn a {
  background: #f9cb41;
  border-radius: 5px;
  display: inline-block;
  padding: 10px 30px;
  transition: all 0.3s ease-in-out;
}
.orderbtn a:hover {
  background: #e6dcf7;
  transition: all 0.3s ease-in-out;
}

.petsafe {
  padding: 120px 0;
}
.petsafe .pet_area {
  display: flex;
  align-items: center;
  gap: 40px;
}
.petsafe .pet_area .pet_image {
  flex: 1;
}
.petsafe .pet_area .pet_image img {
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  border-radius: 10px;
}
.petsafe .pet_area .pet_inner {
  flex: 1.5;
}
.petsafe .pet_area .pet_inner h4 {
  font-size: 38px;
  position: relative;
}
.petsafe .pet_area .pet_inner p {
  font-size: 18px;
  line-height: 30px;
}
.petsafe .pet_area .pet_inner .orderbtn a {
  background: #8b735b;
  color: rgb(255, 255, 255);
}
.petsafe .pet_area .pet_inner .orderbtn a:hover {
  background: #f9cb41;
}

.feature {
  padding: 120px 0px;
  background: #f7f7f7;
}
.feature .orderbtn {
  text-align: center;
  margin-top: 50px;
}
.feature .orderbtn a {
  padding: 14px 50px;
}
.feature .feature_area {
  display: flex;
  gap: 20px;
}
.feature .feature_area .feature_item {
  background: rgb(255, 255, 255);
  border-radius: 10px;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  padding: 20px;
  flex: 1;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.feature .feature_area .feature_item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background: #ede8f5;
  width: 60%;
  transition: all 0.3s ease-in-out;
}
.feature .feature_area .feature_item:hover::before {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.feature .feature_area .feature_item .item_icon {
  width: 80px;
}
.feature .feature_area .feature_item .item_icon img {
  width: 100%;
  object-fit: cover;
}
.feature .feature_area .feature_item .item_content {
  margin-top: 20px;
}
.feature .feature_area .feature_item .item_content h4 {
  font-size: 30px;
}
.feature .feature_area .feature_item .item_content p {
  font-size: 20px;
}

.suggest {
  padding: 120px 0;
}
.suggest .suggest_area {
  display: flex;
  gap: 30px;
  align-items: center;
}
.suggest .suggest_area .suggest_content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.suggest .suggest_area .suggest_content .suggest_inside {
  background: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
}
.suggest .suggest_area .suggest_content .suggest_inside:hover {
  background: #8b735b;
  transition: all 0.3s ease-in-out;
}
.suggest .suggest_area .suggest_content .suggest_inside:hover h2,
.suggest .suggest_area .suggest_content .suggest_inside:hover p {
  color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}
.suggest .suggest_area .suggest_content .suggest_inside h2 {
  font-size: 32px;
}
.suggest .suggest_area .suggest_content .suggest_inside p {
  font-size: 17px;
  line-height: 28px;
}
.suggest .suggest_area .suggest_img img {
  border-radius: 10px;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
}

.benifit {
  padding: 120px 0px;
}
.benifit .benifit_area {
  display: flex;
  gap: 40px;
  align-items: center;
}
.benifit .benifit_area .benifit_img {
  flex: 1;
}
.benifit .benifit_area .benifit_img .section_title {
  margin-bottom: 20px;
  text-align: left;
}
.benifit .benifit_area .benifit_img .section_title h2 {
  text-align: left;
  margin-bottom: 10px;
}
.benifit .benifit_area .benifit_img .section_title h2::before {
  left: 0;
  transform: none;
}
.benifit .benifit_area .benifit_img img {
  border-radius: 10px;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
}
.benifit .benifit_area .benefit_content {
  flex: 1.3;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.benifit .benifit_area .benefit_content .benefit_item {
  flex: calc(50% - 20px);
  background: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 1px 10px 0px rgba(45, 19, 106, 0.1);
  transition: all 0.3s ease-in-out;
}
.benifit .benifit_area .benefit_content .benefit_item:hover {
  background: #8b735b;
  transition: all 0.3s ease-in-out;
}
.benifit .benifit_area .benefit_content .benefit_item:hover h4,
.benifit .benifit_area .benefit_content .benefit_item:hover p {
  color: rgb(255, 255, 255);
  transition: all 0.3s ease-in-out;
}
.benifit .benifit_area .benefit_content .benefit_item h2 {
  font-size: 34px;
  color: #f9cb41;
}
.benifit .benifit_area .benefit_content .benefit_item h4 {
  font-size: 22px;
}

footer {
  background: #8b735b;
  padding: 80px 0;
  text-align: center;
}
footer h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: rgb(255, 255, 255);
}
footer p {
  font-size: 20px;
  color: rgb(255, 255, 255);
}

.preloader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #8b735b;
  z-index: -55;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.preloader.active {
  z-index: 999;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.preloader .preloader__spinner {
  width: 100px;
  height: 100px;
  border: 5px solid #f9cb41;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  animation: scale 1.2s infinite;
}
.preloader .preloader__spinner:nth-child(2) {
  animation-delay: 0.6s;
}
@keyframes scale {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.5);
  }
}

#scrollBtn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  width: 40px;
  height: 40px;
  background: #f9cb41;
  opacity: 0;
  visibility: hidden;
  z-index: -50;
}
#scrollBtn.show {
  opacity: 1;
  visibility: visible;
  z-index: 50;
}
#scrollBtn i {
  font-size: 18px;
  line-height: 1;
}/*# sourceMappingURL=style.css.map */