@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

body{
  font-family: 'Barlow', sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizelegibility;
}
.container-fluid{
  width: 70% !important;
  height: 100%;
  padding: 0 !important;
}
.container-fluid.single-page{
  width: 60% !important;
}
@media(max-width:1600px) {
  .container-fluid.single-page,
  .container-fluid{
    width: 80% !important;
  }
}
@media(max-width:992px) {
  .container-fluid.single-page,
  .container-fluid{
    width: 90% !important;
  }
}

.text-pink{
  color: #ff525e !important;
}
.text-purple{
  color: #462d44 !important;
}
.text-white{
  color: #fff !important;
}
.text-yellow{
  color: #eec80a !important;
}
.bg-purple{
  background-color: #462d44 !important;
}
.caret{
  font-size: 12px;
}
.bd{
  border: 1px solid #000;
}
.show-phone{
  display: none !important;
}

/********* BODY **********/

.h5{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.h6{
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

a:hover{
  color: #fff;
  text-decoration: none;
}

#body-wrapper{
  position: relative;
  margin: 0px auto;
  top: 155px;
}
@media(max-width:992px) {
  #body-wrapper{
    top: 115px;
  }
}

/********* INPUT **********/

textarea.form-control,
input.form-control{
  border: none;
  height: 50px;
  border-radius: 0;
  background-color: #eee;
  margin-bottom: 20px;
  padding: 10px 20px;
}
textarea.form-control{
  width: 100%;
  height: 200px;
}
textarea.form-control::placeholder,
input.form-control::placeholder {
  font-size: 19px;
  font-weight: 400;
  color: #808080 !important;
}
.form-control:focus {
  border-color: #ff525e !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 82, 94, 0.5);
}

/********* SELECT **********/

select.form-control{
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='black' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
  background-position: calc(100% - 30px) 18px, calc(100% - 20px) 18px, 100% 0;
  background-size: 15px 15px, 15px 15px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #e5e5e5;
  border: none;
  border-radius: 25px;
  padding: 10px 20px;
  height: 50px;
}

/********* BUTTON **********/

.btn{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 35px;
  background-color: #ff525e;
  color: #fff;
  padding: 13px 50px;
  line-height: 1;
  cursor: pointer;
}
.btn i.arrow{
  margin-left: 10px;
  margin-top: 0;
}
.btn,
.btn i.arrow{
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.btn:hover{
  padding-left: 60px;
}
.btn:hover i.arrow{
  margin-left: 60px;
}
.btn.btn-outline{
  background-color: #fff;
  color: #ff525e;
  border: 2px solid #ff525e;
}
.btn.btn-transparent{
  background-color: #fff;
  color: #ff525e;
  border: none;
  padding-left: 0;
}
.btn.btn-transparent:hover{
  padding-left: 0;
}

/********* TOPBAR **********/

#topbar {
  position: fixed;
  top: 0;
  background-color: #462d44;
  height: 35px;
  width: 100%;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
#topbar.scrolled {
  top: -35px;
}
#topbar .question {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ff525e;
}
#topbar .detail {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
#topbar .topbar-nav{
  width: 100vw !important;
}
#topbar ul.topbar-menu{
  display: flex;
  justify-content: space-between;
  width: 40vw !important;
  list-style-type: none;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0.5;
}

/********* NAVBAR **********/

#navbar-header {
  position: absolute;
  left:0;
  right:0;
  margin-top: 35px;
  z-index: 2;
  background-color: #ff525e !important;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
#navbar-header.scrolled {
  position:fixed;
  left: 0;
  right: 0;
  margin-top: 0 !important;
}
#navbar-header .navbar-collapse,
#navbar-header .navbar-classic{
  padding: 0;
  margin: 0px auto;
  min-height: 120px;
  width: 100%;
}
#navbar-header ul.navbar-nav{
  display: flex;
  justify-content: space-around;
  width: 100% !important;
  padding: 0 50px;
}
@media(max-width:1400px) {
  #navbar-header ul.navbar-nav{
    padding: 0 20px;
  }
}

@media(max-width:992px) {
  #navbar-header .navbar-classic{
    min-height: 80px;
  }
  #navbar-header .navbar-brand {
    height: 80px;
  }
}
#navbar-header .navbar-brand {
  display: flex;
  align-items: center;
  justify-content:flex-start;
}
#navbar-header .navbar-brand img {
  width: 200px;
}
@media(max-width:1400px) {
  #navbar-header .navbar-brand img {
    width: 150px;
  }
}
#navbar-header .nav-item {
  padding: 15px 0;
  text-decoration: none;
  transition: 0.3s;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
#navbar-header .nav-link {
  display: flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  color: #462d44 !important;
  font-weight: 500;
  font-size: 22px;
}
@media(max-width:1400px) {
  #navbar-header .nav-link {
    font-size: 18px;
  }
}
@media(max-width:992px) {
  #navbar-header .nav-link {
    font-size: 22px;
  }
}
#navbar-header .nav-link::after{
  line-height: 0;
  color: #fff;
  display: none;
}
#navbar-header .nav-link:hover,
#navbar-header .nav-link.active{
  color: #fff !important;
}
#navbar-header .nav-icons{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 20%;
}
#navbar-header .nav-icons .nav-item{
  padding: 40px 0;
  margin: 0;
}
#navbar-header .nav-icons .nav-link{
  padding: 0;
  margin: 0;
}
#navbar-header .nav-icons img{
  width: 30px;
}
@media(max-width:1400px) {
  #navbar-header .nav-icons img{
    width: 25px;
  }
}
#navbar-header .mob-drop {
  display: flex;
  align-items: center;
  width: 40%;
  height: 70px;
}
#navbar-header .mob-drop .nav-icons {
  margin: 0 !important;
  padding: 2px 10px;
  width: 100%;
  height: 100%;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99999;
	display: none;
	float: left;
	min-width: 16rem;
	padding: 12px;
	margin: 20px 0px;
	font-size: 1rem;
	color: #462d44;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgb(255, 255, 255);
	border-radius: 2px;
	-webkit-box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.09);
	-moz-box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.09);
	box-shadow: 0px 3px 11px 0px rgba(0, 0, 0, 0.09);
}
.dropdown-item {
	display: block;
	width: 100%;
	padding: 15px 15px;
	clear: both;
	font-weight: 400;
	color: #462d44;
	text-align: inherit;
	white-space: nowrap;
	background-color: transparent;
	border: 0;
	font-size: 16px;
	line-height: 15px;
}
.dropdown-item:focus,
.dropdown-item:hover {
	color: #fff !important;
	text-decoration: none;
	background-color: #ff525e !important;
	border-radius: 4px;
}
@media(min-width:992px) {
	.dropdown .dropdown-menu {
		display: block;
		visibility: hidden;
		opacity: 0;
		-webkit-transform: translateY(20px);
		-ms-transform: translateY(20px);
		transform: translateY(20px);
		-webkit-transition: all .3s ease-in;
		-o-transition: all .3s ease-in;
		transition: all .3s ease-in
}
	.dropdown:hover>.dropdown-menu {
		visibility: visible;
		opacity: 1;
		-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
		transform: scaleY(1);
		opacity: 1;
		visibility: visible;
	}
	.dropdown-submenu:hover .dropdown-menu {
		visibility: visible;
		opacity: 1;
		-webkit-transform: scaleY(1);
		-ms-transform: scaleY(1);
		transform: scaleY(1);
		opacity: 1;
		visibility: visible;
	}
}
.dropdown-submenu {
	position: relative;
}
.dropdown-submenu a::after {
	transform: rotate(-90deg);
	position: absolute;
	right: 17px;
	top: 25px;
}
.dropdown-submenu .dropdown-menu {
	top: 0px;
	left: 100%;
	margin-left: 13px;
	margin-right: .1rem;
}
.mega-dropdown {
	position: unset;
}
.mega-dropdown-menu {
	width: 100%;
	position: absolute;
	top: 100px;
}
.mega-dropdown-menu ul {
	list-style: none;
}

.navbar-classic .navbar-toggler {
	padding: 5px 5px;
  border: 2px solid  #462d44;
	font-size: 1.25rem;
	line-height: 1;
	position: relative;
}
.navbar-classic .navbar-toggler:focus {
	outline: 0px;
}

.navbar-classic .navbar-toggler .icon-bar {
	width: 21px;
	height: 3px;
	background-color: #462d44;
	display: block;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
	margin-top: 4px
}
.navbar-toggler .top-bar {
	transform: rotate(45deg);
	transform-origin: 10% 190%;
	background-color: #fff;
}
.navbar-toggler .middle-bar {
	opacity: 0;
}
.navbar-toggler .bottom-bar {
	transform: rotate(-45deg);
	transform-origin: 10% -80%;
	background-color: #fff;
}
.navbar-toggler.collapsed .top-bar {
	transform: rotate(0);
	background-color: #462d44;
}
.navbar-toggler.collapsed .middle-bar {
	opacity: 1;
}
.navbar-toggler.collapsed .bottom-bar {
	transform: rotate(0);
	background-color: #462d44;
}

.navbar-collapse.show{
  height: 100vh;
}
.navbar-classic .navbar-collapse.show .dropdown .dropdown-menu {
	background: #fff;
	box-shadow: none;
	margin: 7px 0px;
}
.navbar-classic .navbar-collapse.show .navbar-nav {
  max-height: 80vh;
  overflow-y: scroll;
}
.navbar-classic .navbar-collapse.show .navbar-nav .nav-item .nav-link {
	border-bottom: 1px solid #462d44;
}

.navbar-classic .navbar-collapse.show .dropdown .dropdown-menu .dropdown-submenu.dropdown-item {
	border-bottom: 1px solid #f1f1f6;
}

/********* NAVSEARCH **********/

.navbar-classic .search-wrap{
  padding: 30px;
}
@media(max-width:992px) {
  .navbar-classic .search-wrap{
    padding: 15px;
  }
}
.navbar-classic .search-wrap .title{
  font-size: 30px;
  font-weight: 600;
}
@media(max-width:992px) {
  .navbar-classic .search-wrap .title{
    font-size: 20px;
  }
}

.navbar-classic .search-wrap .search-container{
  background-color: #ff525e;
  padding: 20px;
}
.navbar-classic .search-wrap .search-container .btn img.arrow{
  width: 15px !important;
}
/********* NAVLOGIN **********/

.navbar-classic .login-wrap{
  padding: 30px;
  display: flex;
  justify-content:space-around;
}
.navbar-classic .login{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.navbar-classic .login .title{
  font-size: 30px;
  font-weight: 600;
}
.navbar-classic .login .slogen{
  font-size: 16px;
  font-weight: 500;
}
.navbar-classic .login .alt-text{
  font-size: 14px;
  font-weight: 500;
  color: #ff525e;
  margin-top: 30px;
}
.navbar-classic .vl {
  border-left: 1px solid #eee;
  height: auto;
}
.navbar-classic .login .btn img.arrow {
  width: 20px !important;
}

/********* NAVCART **********/

.navbar-classic .cart-wrap{
  padding: 30px;
}
@media(max-width:992px) {
  .navbar-classic .cart-wrap{
    padding: 15px;
  }
}
.navbar-classic .cart-wrap .title{
  font-size: 30px;
  font-weight: 600;
}
@media(max-width:992px) {
  .navbar-classic .cart-wrap .title{
    font-size: 20px;
  }
}
.navbar-classic .cart-wrap .cart-content{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-height: 440px;
  overflow-y: scroll;
}
.navbar-classic .cart-wrap .cart-content .cart-product{
  display: flex;
  justify-content:space-between;
  color: #000;
  margin: 30px;
}
.navbar-classic .cart-wrap .cart-content .cart-product img{
  width: 100px !important;
}
.navbar-classic .cart-wrap .cart-content .cart-product .description{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}
.navbar-classic .cart-wrap .cart-content .cart-product .description .brand{
  font-size: 16px;
}
.navbar-classic .cart-wrap .cart-content .cart-product .description .productname{
  font-size: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}
.navbar-classic .cart-wrap .cart-content .cart-product .description .productmeta{
  font-size: 18px;
  font-weight: 500;
  color: #ff525e;
}
.navbar-classic .cart-wrap .cart-content .cart-product .description .product-price{
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}
.navbar-classic .cart-wrap .cart-content .cart-product i{
  color: #ff525e;
}

@media(max-width:992px) {
  .navbar-classic .cart-wrap .btn{
    padding: 15px 35px;
  }
}
@media(max-width:992px) {
  .navbar-classic .cart-wrap .btn:hover{
    padding-left: 40px;
    padding-right: 15px;
  }
}

/********* TW-SLIDER **********/

.tw-slider{
  position: relative;
  height: 84vh;
  background-color: #e7b7be;
  overflow: hidden;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, minmax(min-content, 1fr));
}
@media(max-width:992px) {
  .tw-slider{
    height: auto;
  }
}
.tw-slider-container{
  position: relative;
  display: flex;
	align-items: center;
	justify-content: space-between;
  width: 100vw;
}
@media(max-width:992px) {
  .tw-slider-container{
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 120px;
  }
}
.tw-slider .tw-slider-container .img-container{
  position: absolute;
  width: 100%;
  height: 100%;
 }
 @media(max-width:992px) {
   .tw-slider .tw-slider-container .img-container{
     position: relative;
     height: auto !important;
    }
 }
.tw-slider .tw-slider-container .img-container img{
  position: relative;
  float: right;
  max-width: 100%;
  height: auto;
 }
.tw-slider .tw-slider-container .tw-slider-box{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 55%;
  height: 65%;
  background-color: #fff;
  padding: 0 15%;
  margin-top: -110px;
  z-index: 1;
}
@media(max-width:1400px) {
  .tw-slider .tw-slider-container .tw-slider-box{
    padding: 0 10%;
  }
}
@media(max-width:992px) {
  .tw-slider .tw-slider-container .tw-slider-box{
    width: 80%;
    height: 60%;
    background-color: #fff;
    padding: 5%;
    z-index: 1;
  }
}
.tw-slider .tw-slider-container .tw-slider-box h1{
  font-size: 4.8vw;
  line-height: 0.85;
  color: #462d44;
  font-weight: 800;
}
@media(max-width:700px) {
  .tw-slider .tw-slider-container .tw-slider-box h1{
    font-size: 8vw;
  }
}
.tw-slider .tw-slider-container .tw-slider-box p{
  font-family: 'Barlow Condensed', sans-serif;
  margin-top: 40px;
  font-size: 1.5vw;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: #462d44;
  font-weight: 500;
}
@media(max-width:700px) {
  .tw-slider .tw-slider-container .tw-slider-box p{
    margin-top: 20px;
    font-size: 3.5vw;
  }
}
.tw-slider .tw-slider-container img.thumb{
  position: absolute;
  right: 2vw;
  bottom: -60px;
  width: 13vw;
 }
.tw-slider .tw-slider-container .tw-slider-box .btn{
  position: absolute;
  bottom: -30px;
  left: 27%;
}
@media(max-width:1400px) {
  .tw-slider .tw-slider-container .tw-slider-box .btn{
    left: 17%;
    padding: 12px 30px;
  }
}
.tw-slider .dot-container {
  position: absolute;
  display: flex;
  justify-content:space-between;
  align-items: center;
  left: 17vw;
  width: 260px;
  bottom:8vh;
}
@media(max-width:992px) {
  .tw-slider .dot-container {
    width: 80%;
    left: 10%;
    right: 10%;
    bottom: 5%;
  }
}
.tw-slider .dot-container .dot {
  cursor: pointer;
	width: 10px;
	height: 10px;
	border-radius: 50%;
  background-color: #462d44;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.tw-slider .dot-container .dot.active, .tw-slider .dot-container .dot:hover {
  background-color: #ff525e;
  width: 15px;
  height: 15px;
}

/********* INTRO SECTION **********/

#intro{
  position: relative;
  background-color: #fff6f7;
  width: 100%;
  overflow: hidden;
}
#intro .intro-content{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: auto;
  padding: 50px 0;
}
#intro img.intro-logo{
  position: absolute;
  margin-top: -20px;
  margin-left: 12vw;
}
#intro .intro-content h1{
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
}
#intro .intro-content h2{
  font-size: 29px;
  text-align: center;
  font-weight: 800;
  color: #462d44;
  margin-top: 20px;
}
#intro .intro-content p{
  text-align: center;
  font-size: 19px;
}
#intro .intro-content .intro-row{
  margin-top: 60px;
  width: 100%;
}
#intro .intro-content .intro-row .intro-block{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 30px;
}

/********* SPECIAL PRODUCT **********/

#special-product{
  position: relative;
  background-color: #fff;
  width: 100%;
  overflow: hidden;
}
#special-product .special-content{
  height: auto;
  padding: 50px 0;
  margin-bottom: 50px;
}
#special-product .special-content h1{
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
}
@media(max-width:992px) {
  #special-product .special-content h1{
    font-size: 50px;
  }
}
#special-product .special-content .slider {
  margin-top: 60px;
}

/********* PRODUCT BLOCK **********/

.product-block{
  width: 300px;
  height: 100%;
  text-align: center;
  border-right: 1px solid #e9e9e9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.product-block:last-child{
  border-right: none;
}
@media(max-width:992px) {
  .product-block{
    border-right: none;
  }
}
.product-block img.product{
  width: 160px;
  margin-bottom: 30px;
}
.product-block .brand{
  font-size: 16px;
  display: block;
}
.product-block .open-product{
  margin-top: 10px;
  font-size: 17px;
  font-weight: 600;
  display: block;
  color: #ff525e;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.product-block .open-product:hover{
  color: #462d44;
}
.product-block .open-product span{
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
.product-block .open-product:hover span{
  margin-left: 20px;
}
.product-block .productname{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 27px;
  font-weight: 700;
  color: #462d44;
}
.product-block .product-price{
  display: block;
  margin-top: 10px;
  font-size: 29px;
  font-weight: 800;
  color: #462d44;
}
.product-block .product-price.sale{
  color: #ff525e;
}
.product-block .old-price{
  display: block;
  margin-top: 10px;
  margin-bottom: -20px;
  font-size: 18px;
  font-weight: 600;
  color: #462d44;
  text-decoration: line-through;
}
.product-block ul.details{
  list-style: none;
  padding: 5% 10%;
  margin: 0;
  text-align: left;
}
.product-block ul.details li{
  border-bottom: 2px dotted #e9e9e9;
  color: #6f6f6f;
  font-size: 16px;
  padding: 5px 0;
}
.product-block ul.details li:last-child{
  border-bottom: none;
}
.product-block .btn img,
.product-block ul.details li img{
  display: inline-block;
  margin-top: -5px;
  line-height: 3em;
}
.product-block .btn{
  margin-top: 15px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 600;
  padding: 12px 50px;
}
.product-block .btn img.cart-btn{
  margin-right: 10px;
}
.product-block .stickers{
  position: absolute;
  top:-20px;
  left:20px;
}
.product-block .stickers img{
  position: relative;
}

/********* FAMOUS DOG PRODUCT **********/

#famous{
  position: relative;
  width: 100%;
}
#famous .famous-content{
  height: auto;
  padding: 50px 0;
  margin-bottom: 20px;
}
#famous .famous-content h1{
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
  margin-left: 13vw;
}
@media(max-width:1600px) {
  #famous .famous-content h1{
    margin-left: 16vw;
  }
}
@media(max-width:700px) {
  #famous .famous-content h1{
    font-size: 48px;
    margin-left: auto;
  }
}
#famous .famous-content .background{
  position: absolute;
  top:0;
  right: 0;
  left: 10vw;
  background-color: #fff6f0;
  height: 368px;
  z-index: -1;
}
@media(max-width:1600px) {
  #famous .famous-content .background{
    left: 0;
    height: 300px;
  }
}
#famous .famous-content img.pet{
  position: absolute;
  width: 15vw;
  top: -40px;
}
@media(max-width:1400px) {
  #famous .famous-content img.pet{
    width: 20vw;
  }
}
#famous .famous-content .famous-row{
  display: flex;
  justify-content:space-between;
  flex-direction: row;
  margin-top: 120px;
  width: 100%;
}
@media(max-width:1600px) {
  #famous .famous-content .famous-row{
    flex-direction: column;
  }
}

#famous .famous-content .famous-row .nav-pills{
  margin-top: 60px;
  width: 17vw;
  height: 100%;
}
@media(max-width:1600px) {
  #famous .famous-content .famous-row .nav-pills{
    flex-direction: row !important;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
    margin-top: -20px;
    margin-bottom: 20px;
  }
}
@media(max-width:1400px) {
  #famous .famous-content .famous-row .nav-pills{
    margin-top: -90px;
    margin-bottom: 20px;
  }
}
@media(max-width:992px) {
  #famous .famous-content .famous-row .nav-pills{
    flex-wrap: wrap;
  }
}

#famous .famous-content .famous-row .nav-pills a{
  padding: 22px;
  border-bottom: 3px dotted #f9e7d9;
  font-size: 21px;
  font-weight: 600;
  color: #462d44;
  width: 90%;
}
#famous .famous-content .famous-row .nav-pills a.active{
  position: relative;
  background-color: #ffd5d3;
  border-radius: 0;
}
#famous .famous-content .famous-row .nav-pills a.active::after {
  position: absolute;
  content:" ";
  top:0;
  right: -40px;
  border-top: 39px solid transparent;
  border-bottom: 39px solid transparent;
  border-left: 40px solid #ffd5d3;
}

@media(max-width:1600px) {
  #famous .famous-content .famous-row .nav-pills a{
    padding: 16px;
    margin-right: 10px;
    text-align: center;
    font-size: 18px !important;
  }
  #famous .famous-content .famous-row .nav-pills a.active::after {
    border: none;
  }
}
@media(max-width:992px) {
  #famous .famous-content .famous-row .nav-pills a{
    width: 100%;
    margin-right: 0;
  }
}

#famous .famous-content .famous-row .tab-content .tab-pane{
  position: relative;
  width: 100%;
}

#famous .famous-content .famous-row .tab-content .tab-pane .famous-tab{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
@media(max-width:992px) {
  #famous .famous-content .famous-row .tab-content .tab-pane .famous-tab{
    flex-direction: column;
  }
}
#famous .famous-content .famous-row .product-block{

}
@media(max-width:992px) {
  #famous .famous-content .famous-row .product-block{
    width: auto;
    margin-bottom: 40px;
    border: none;
  }
  #famous .famous-content .famous-row .product-block ul.details{
    padding: 5% 0%;
  }
}

/********* PRODUCT LIST **********/

#product{
  margin-bottom: 50px;
}
#product .container-fluid{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
}
@media(max-width:1400px) {
  #product .container-fluid{
    flex-direction: column;
  }
}
/********* PRODUCT LIST SIDE **********/

#product .product-side{
  position: relative;
  width: 25%;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
#product .product-side .product-side-opener{
  display: none;
  color: #fff;
  cursor: pointer;
}
@media(max-width:1400px) {
  #product .product-side{
    width: 300px;
    background-color: #fff;
    position: fixed;
    padding: 20px;
    height: 100vh;
    margin-top: 0;
    left: -300px;
    top:0;
    z-index: 99;
  }
  #product .product-side.active{
    left: 0;
  }
  #product .product-side .product-side-content{
    overflow-y: scroll;
  }
  #product .product-side .product-side-opener{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 20%;
    right: -50px;
    background-color: #ff525e;
    width: 50px;
    height: 50px;
    border-radius: 0 10px 10px 0;
    z-index: 9999;
  }
}
#product .product-side h2{
  color: #462d44;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 30px;
}
#product .product-side h3{
  color: #ff525e;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 20px;
}
#product .product-side ul{
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}
#product .product-side ul li{
  display: flex;
  justify-content: flex-start;
  font-size: 16px;
  margin-bottom: 5px;
}
#product .product-side ul li label{
  margin-right: 15px;
}
#product .product-side .btn-transparent{
  text-align: left;
  color: #000;
  font-weight: 600;
  font-size: 21px;
  font-family: 'Barlow Condensed', sans-serif;
  padding-left: 10px !important;
}

/********* PRODUCT LIST COLUMN **********/

#product .product-column{
  width: 75%;
  margin-top: 50px;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
}
@media(max-width:1400px) {
  #product .product-column{
    width: 100%;
    padding-left: 0;
  }
}
#product .product-column .product-header{
  margin-bottom: 20px;
}
#product .product-column h1{
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
  margin-bottom: 20px;
}
#product .product-column h2{
  font-size: 35px;
  font-weight: 800;
  color: #462d44;
}
#product .product-column p{
  font-size: 19px;
  font-weight: 400;
  color: #000;
}
#product .product-column .product-proposal{
  position: relative;
  margin-bottom: 20px;
}
#product .product-column .product-proposal .bg{
  position: absolute;
  right: -30%;
  top:0;
  left: -20px;
  height: 300px;
  background-color: #fff6f0;
  z-index: -1;
}
@media(max-width:1600px) {
  #product .product-column .product-proposal .bg{
    right: -17%;
  }
}
@media(max-width:1400px) {
  #product .product-column .product-proposal .bg{
    right: -12%;
  }
}
@media(max-width:992px) {
  #product .product-column .product-proposal .bg{
    right: -5%;
  }
}
#product .product-column .product-proposal h3{
  font-size: 27px;
  font-weight: 800;
  color: #ff525e;
  padding: 30px;
  margin-bottom: 20px;
}
#product .product-column .product-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}
@media(max-width:992px) {
  #product .product-column .product-row{
    flex-direction: column;
  }
}
@media(max-width:992px) {
  #product .product-column .product-row .product-block{
    margin-bottom: 50px;
  }
}
#product .product-column .product-filter{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media(max-width:992px) {
  #product .product-column .product-filter{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#product .product-column .paginate-container{
  width: 100%;
}
#product .product-column .product-filter .result{
  font-size: 19px;
}
#product .product-column .product-filter .sort-option{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media(max-width:992px) {
  #product .product-column .product-filter .sort-option{
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
#product .product-column .product-filter .sort-option .sort{
  font-size: 17px;
  margin-right: 10px;
}
#product .product-column .product-filter .sort-option .dropdown .btn{
  font-family: 'barlow';
  background-color: #e5e5e5;
  font-size: 17px;
  color: #000;
  font-weight: 400;
  border: none;
  border-radius: 25px;
  padding: 10px 40px;
  height: 50px;
}
#product .product-column .product-filter .sort-option .dropdown .btn::after{
  margin-left: 40px;
}
#product .product-column .product-filter .sort-option .dropdown .dropdown-menu{
  width: 100%;
  margin-top: 5px;
}

/********* PETSOCIAL PAGE **********/

#product .product-page {
  margin-top: 50px;
}
#product .product-page h1{
  font-size: 53px;
  font-weight: 800;
  color: #ff525e;
  line-height: 1;
  margin-bottom: 20px;
}
@media(max-width:992px) {
  #product .product-page h1{
    font-size: 46px;
  }
}
#product .product-showcase{
  margin-top: 50px;
  display: flex;
}
@media(max-width:992px) {
  #product .product-showcase{
    flex-direction: column;
  }
}
#product .product-showcase .product-gallery{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 0;
}
#product .product-showcase .product-gallery .thumb-container{
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#product .product-showcase .thumb-container .thumb{
  position: relative;
  border: 1px solid #eee;
  width: 160px;
  height: 160px;
  margin: 0 10px;
  display: flex;
  justify-content: center;
  align-self: center;
}
@media(max-width:700px) {
  #product .product-showcase .thumb-container .thumb{
    width: 100px;
    height: 100px;
  }
}
#product .product-showcase .thumb img{
  position: absolute;
  align-self: center;
  max-width: 100%;
  max-height: 100%;
}

#product .product-showcase .product-description{
  padding-left: 80px;
  padding-right: 0;
}
@media(max-width:992px) {
  #product .product-showcase .product-description{
    padding: 0;
    margin-top: 30px;
  }
}
#product .product-showcase .product-description p{
  font-size: 19px;
}
#product .product-showcase .product-description ul.product-detail{
  padding: 10px;
  list-style: none;
}
@media(max-width:1400px) {
  #product .product-showcase .product-description ul.product-detail{
    padding: 10px 0;
  }
}
#product .product-showcase .product-description ul.product-detail li{
  display: flex;
  font-size: 17px;
  padding: 5px 0;
}
#product .product-showcase .product-description ul.product-detail li:nth-child(even){
  background-color: #fafafa;
}
#product .product-showcase .product-description .product-interaction{
  position: relative;
  padding: 30px 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media(max-width:1400px) {
  #product .product-showcase .product-description .product-interaction{
    flex-direction: column;
  }
}
#product .product-showcase .product-description .product-interaction .bg{
  position: absolute;
  right: -48%;
  top:0;
  left: -30px;
  height: 300px;
  background-color: #fff6f0;
  z-index: -1;
}
@media(max-width:1600px) {
#product .product-showcase .product-description .product-interaction .bg{
    right: -28%;
  }
}
@media(max-width:1400px) {
  #product .product-showcase .product-description .product-interaction .bg{
      height: 370px;
    }
}
@media(max-width:992px) {
#product .product-showcase .product-description .product-interaction .bg{
    right: -5%;
  }
}
#product .product-showcase .product-description .product-interaction .price-container{
  display: flex;
  flex-direction: column;
  width: 100%;
}
#product .product-showcase .product-description .product-interaction .price-sale{
  line-height: 1;
}
#product .product-showcase .product-description .product-interaction .oldprice{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 27px;
  color: #c6b5a8;
  font-weight: 600;
  text-decoration: line-through;
  margin-right: 10px;
}
#product .product-showcase .product-description .product-interaction .sale{
  font-family: 'Barlow Condensed', sans-serif;
  background-color: #ff525e;
  font-size: 21px;
  color: #fff;
  font-weight: 600;
  padding: 1px 3px;
}
#product .product-showcase .product-description .product-interaction .price{
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1;
  font-size: 59px;
  color: #462d44;
  font-weight: 700;
}
#product .product-showcase .product-description .product-interaction .cart-container{
  display: flex;
  flex-direction: row;
}
@media(max-width:1400px) {
  #product .product-showcase .product-description .product-interaction .cart-container{
    margin-top: 15px;
  }
}
#product .product-showcase .product-description .product-interaction .cart-container .btn{
  padding: 15px 30px;
}
#product .product-showcase .product-description .product-interaction .cart-container .btn:hover img.arrow{
  margin-left: 30px;
}
#product .product-showcase .product-description .product-interaction .cart-container .btn img.cart-btn{
    margin-top: -5px;
}
#product .product-showcase .product-description .product-interaction .cart-container .btn-outline{
  border: none;
  margin-right: -70px;
  padding-right: 80px;
  color: #000;
  font-size: 19px;
  font-weight: 400;
  cursor:auto;
}
#product .product-showcase .product-description .product-interaction .cart-container .btn-outline input{
  border: none;
  width: 20px;
}

#product .product-showcase .product-description .product-type{
  position: relative;
  padding: 5px 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#product .product-showcase .product-description .product-type .text{
  width: 160px;
}
#product .product-showcase .product-description .product-type .text .title{
  font-size: 15px;
  font-weight: 600;
}
#product .product-showcase .product-description .product-type .text p{
  font-size: 13px;
}
#product .product-showcase .product-description .product-type .product-selector{
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
#product .product-showcase .product-description .product-type .product-selector .type{
  position: relative;
  margin-right: 15px;
  padding: 10px 15px;
  border-radius: 10px;
  cursor: pointer;
}
@media(max-width:500px) {
  #product .product-showcase .product-description .product-type .product-selector .type{
    margin-right: 5px;
    padding: 10px 10px;
  }
}
#product .product-showcase .product-description .product-type .product-selector .type:last-child{
  margin-right: 0;
}
#product .product-showcase .product-description .product-type .product-selector .type .weight{
  font-family: 'Barlow Condensed', sans-serif;
  position: absolute;
  text-align: center;
  width: 100%;
  left:0;
  top: 32%;
  color: #462d44;
  font-size: 21px;
  font-weight: 500;
}
#product .product-showcase .product-description .product-type .product-selector .type:hover{
  background-color: #fff;
  -webkit-box-shadow: 11px 9px 20px -14px rgba(0,0,0,0.4);
  -moz-box-shadow: 11px 9px 20px -14px rgba(0,0,0,0.4);
  box-shadow: 11px 9px 20px -14px rgba(0,0,0,0.4);
}

#product .product-showcase .product-description .product-proposal{
  margin-top: 80px;
}
#product .product-showcase .product-description .product-proposal h3{
  font-size: 24px;
  color: #ff525e;
  font-weight: 800;
  line-height: 1
}
#product .product-showcase .product-description .product-proposal h4{
  font-size: 17px;
  color: #000;
  font-weight: 700;
  line-height: 0.8
}
#product .product-showcase .product-description .product-proposal ul{
  padding: 0;
  list-style: none;
  margin-top: 30px;
}
#product .product-showcase .product-description .product-proposal ul li{
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}
#product .product-showcase .product-description .product-proposal ul li .thumb{
  position: relative;
  border: 1px solid #eee;
  width: 50px !important;
  height: 50px !important;
  display: flex;
  justify-content: center;
  align-self: center;
  margin: 0 20px;
}
#product .product-showcase .product-description .product-proposal ul li .thumb img{
  position: absolute;
  align-self: center;
}
#product .product-showcase .product-description .product-proposal ul li .detail{
  display: flex;
  flex-direction: column;
  font-size: 16px;
}

/********* PRODUCT INTRO **********/

#intro.product-intro{
  margin-top: 140px;
  background-color: #edeaed;
  overflow:visible;
  padding-bottom: 50px;
}
#intro.product-intro .intro-content{
  padding: 0;
}
#intro.product-intro .intro-content .intro-row,
#intro.product-intro .intro-content .intro-block{
  margin: 0;
}
#intro.product-intro .intro-content .intro-row{
    margin-top: -60px;
}

/********* PRODUCT DATA **********/

#product-data{
  margin-top: 20px;
}
#product-data .navigation{
  position: relative;
  background-color: #462d44;
  padding: 30px 0;
}
@media(max-width:700px) {
  #product-data .navigation .nav-pills{
    display: flex;
    flex-direction: column;
  }
}
#product-data .navigation .nav-pills a.nav-link{
  position: relative;
  font-size: 21px;
  font-weight: 600;
  border-radius: 0;
  color: #fff;
}
#product-data .navigation .nav-pills .nav-link{
  border-right: 1px solid #654363;
}
@media(max-width:700px) {
  #product-data .navigation .nav-pills .nav-link{
    border-right: none;
  }
}
#product-data .navigation .nav-pills .nav-link:last-child{
  border-right: none;
}
#product-data .navigation .nav-pills .nav-link:before{
  content: "";
  position: absolute;
  bottom: -37px;
  left: 5%;
  width: 90%;
  height: 15px;
  background-color: #ff525e;
  transition: 0.3s;
  opacity: 0;
}
@media(max-width:700px) {
  #product-data .navigation .nav-pills .nav-link:before{
    bottom: 0px;
    height: 5px;
  }
}
#product-data .navigation .nav-pills .nav-link.active{
  background-color: transparent;
}
#product-data .navigation .nav-pills .nav-link:hover:before,
#product-data .navigation .nav-pills .nav-link.active:before {
  opacity: 1;
}

#product-data .tab-pane{
  padding: 100px;
  padding-bottom: 0;
}
@media(max-width:1400px) {
  #product-data .tab-pane{
    padding: 100px 10px;
    padding-bottom: 0;
  }
}
#product-data .tab-pane p{
  font-size: 19px;
  margin: 20px 0;
}
#product-data #nav-petguru .bck{
  position: absolute;
  background-color: #fff6f1;
  left: 0;
  right:0;
  height: 100%;
  z-index: -1;
}
#product-data .tab-pane .petguru{
  display: flex;
}
@media(max-width:992px) {
  #product-data .tab-pane .petguru{
    flex-direction: column;
  }
}
#product-data .tab-pane .petguru .content{
  margin-left: -400px;
  align-self: center;
}
@media(max-width:992px) {
  #product-data .tab-pane .petguru .content{
    margin-top: 20px;
    margin-left: 0;
    align-self: center;
  }
}
#product-data .tab-pane .petguru .content h2{
  font-size: 64px !important;
  font-weight: 800 !important;
  color: #ff525e !important;
  line-height:1 !important;
}
#product-data .tab-pane .petguru .content p{
    font-size: 21px;
    font-style: italic;
}

#product-data .tab-pane .product-row{
  display: flex;
  flex-wrap: wrap;
}
@media(max-width:992px) {
  #product-data .tab-pane .product-row .product-block{
    margin-bottom: 70px;
  }

}

/********* RATING **********/

.rating-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rating-container h2{
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
}
.rating-container .rating-box{
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid #f1eef1;
  border-radius: 10px;
  height: 100%;
  width: 100%;
}
@media(max-width:992px) {
  .rating-container .rating-box{
    flex-direction: column;
  }
}
.rating-container .rating-stars{
  border-right: 2px solid #f1eef1;
  border-radius: 10px;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media(max-width:992px) {
  .rating-container .rating-stars{
    border-right: none;
  }
}
.rating-container .rating-stars .rating-number{
  font-size: 96px;
  font-weight: 700;
  color: #462d44;
  line-height: 1;
}
.rating-container .rating-stars .stars i{
  font-size: 30px;
}
.rating-container .rating-stars .rating-total{
  font-size: 15px;
  margin-top: 10px;
}
.rating-container .rate-cta{
  padding: 0 50px;
}
@media(max-width:992px) {
  .rating-container .rate-cta{
    padding: 50px;
  }
}
.rating-container .rate-cta h2{
  font-size: 29px;
  font-weight: 800;
  color: #462d44;
  line-height: 0.7;
}
.rating-container .rate-cta p{
  font-size: 19px;
  color: #462d44;
  margin: 0;
}
.rating-container .rate-cta .btn-transparent{
  margin: 0;
  padding-top: 5px;
  padding-bottom: 5px;
}
/********* PETSOCIAL CTA **********/

.petsocial-cta{
  position: relative;
  margin-bottom: 50px;
}
.petsocial-cta .img{
  background-size: cover;
  height: 600px;
  width: 249px;
  background-image:
      linear-gradient(to bottom, rgba(245, 246, 252, 0) 50%, rgba(0, 0, 0, 1)),
      url('../img/social-sm.jpg');
}
@media(max-width:1400px) {
.petsocial-cta .img{
    display: block;
    height: 600px;
    width: 600px;
    max-width: 85vw;
    background-image:
        linear-gradient(to bottom, rgba(245, 246, 252, 0) 50%, rgba(0, 0, 0, 1)),
        url('../img/social.jpg');
  }
}
.petsocial-cta .petsocial-cta-detail{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 20px;
}
.petsocial-cta .petsocial-cta-detail h2{
  font-size: 48px !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height:1 !important;
}
.petsocial-cta .petsocial-cta-detail h3{
  font-size: 32px !important;
  font-weight: 800 !important;
  color: #ff525e !important;
  line-height:1 !important;
}

.petsocial-cta .petsocial-cta-detail .btn{
  position: absolute;
  padding-top: 15px;
  padding-bottom: 15px;
  bottom: -25px;
}

/********* PET SOCIAL **********/

#petsocial{
  position: relative;
  width: 100%;
}
#petsocial .petsocial-content{
  height: auto;
  padding: 20px 0;
  margin-bottom: 120px;
}
#petsocial .petsocial-content .petsocial-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
@media(max-width:992px) {
  #petsocial .petsocial-content .petsocial-nav{
    flex-direction: column;
  }
}
#petsocial .petsocial-content .petsocial-nav h1{
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
}
#petsocial .petsocial-content .petsocial-nav .controller{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media(max-width:992px) {
  #petsocial .petsocial-content .petsocial-nav .controller{
    margin-top: 30px;
  }
}

#petsocial .petsocial-content .petsocial-nav .controller .btn.left{
  background-color: #fff6f0;
}
#petsocial .petsocial-content .petsocial-nav .controller .btn,
#petsocial .petsocial-content .petsocial-nav .controller .btn:hover{
  padding: 10px 40px;
}
#petsocial .petsocial-content .petsocial-nav .controller .btn img{
  margin: 0;
  width: 20px;
}

#petsocial .petsocial-content .petsocial-nav .controller .btn:hover img{
  margin-right: -20px;
  margin-left: 20px;
}
#petsocial .petsocial-content .petsocial-nav .controller .btn.left:hover img{
  margin-left: -20px;
  margin-right: 20px;
}

#petsocial .petsocial-content .petsocial-nav .controller ul{
  list-style: none;
  margin: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
}
#petsocial .petsocial-content .petsocial-nav .controller ul li{
  margin: 0 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #462d44;
  cursor: pointer;
}
#petsocial .petsocial-content .petsocial-nav .controller ul li.active{
  width: 10px;
  height: 10px;
  background-color: #ff525e;
}
#petsocial .petsocial-content .petsocial-row{
  display: flex;
  justify-content: space-between;
}
@media(max-width:992px) {
  #petsocial .petsocial-content .petsocial-row{
    flex-direction: column-reverse;
    justify-content: space-between;
  }
}

#petsocial .petsocial-content .petsocial-row .petsocial-cta{
  position: relative;
  width: 55vw;
  height: 100%;
}
@media(max-width:1600px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-cta{
    width: 87vw;
  }
}
#petsocial .petsocial-content .petsocial-row .petsocial-cta .bg{
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100px;
  bottom: -60px;
  background-color: #462d44;
  z-index: -1;
}

#petsocial .petsocial-content .petsocial-row .petsocial-cta .img{
  background-size: cover;
  width: 100%;
  height: 680px;
  background-image:
      linear-gradient(to bottom, rgba(245, 246, 252, 0) 50%, rgba(0, 0, 0, 1)),
      url('../img/social.jpg');
}
#petsocial .petsocial-content .petsocial-row .petsocial-cta .petsocial-cta-detail{
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 60px;
}
@media(max-width:992px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-cta .petsocial-cta-detail{
    padding: 40px 20px;
    width: 90vw;
  }
}
#petsocial .petsocial-content .petsocial-row .petsocial-cta .petsocial-cta-detail h2{
  font-size: 48px;
  font-weight: 800;
  color: #fff;
}
@media(max-width:992px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-cta .petsocial-cta-detail h2{
    font-size: 42px;
  }
}
#petsocial .petsocial-content .petsocial-row .petsocial-cta .petsocial-cta-detail h3{
  font-size: 35px;
  font-weight: 800;
  color: #ff525e;
}
#petsocial .petsocial-content .petsocial-row .petsocial-cta .petsocial-cta-detail .btn{
  position: absolute;
  padding-top: 15px;
  padding-bottom: 15px;
  bottom: -25px;
}
@media(max-width:992px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-cta .petsocial-cta-detail .btn{
    padding: 15px 40px;
  }
}
#petsocial .petsocial-content .petsocial-row .petsocial-pets{
  position: relative;
  width: 100%;
}
@media(max-width:992px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-pets{
    margin-bottom: 50px;
  }
}
#petsocial .petsocial-content .petsocial-row .petsocial-pets .pet-slider{
  position: absolute;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, minmax(min-content, 1fr));
  left: 0;
  right: -14.9vw;
}
@media(max-width:1600px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-pets .pet-slider{
    right: -9.8vw;
  }
}

@media(max-width:992px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-pets .pet-slider{
    position: relative;
    width: 105.5%;
    height: auto;
  }
}
#petsocial .petsocial-content .petsocial-row .petsocial-pets .pet-slider .slider-container{
  display: flex;
  flex-direction: column;
	align-items: center;
	justify-content: space-between;
  width: 620px;
  height: auto;
  padding-left: 30px;
}
@media(max-width:1600px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-pets .pet-slider .slider-container{
    width: 560px;
  }
}
@media(max-width:1400px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-pets .pet-slider .slider-container{
    width: 500px;
  }
}
@media(max-width:992px) {
  #petsocial .petsocial-content .petsocial-row .petsocial-pets .pet-slider .slider-container{
    width: 90vw;
  }
}
#petsocial .petsocial-content .btn.abs{
  position: absolute;
  bottom: -80px;
  right: 30%;
}
@media(max-width:1600px) {
  #petsocial .petsocial-content .btn.abs{
    right: 20%;
  }
}
@media(max-width:1400px) {
  #petsocial .petsocial-content .btn.abs{
    right: 15%;
  }
}
@media(max-width:992px) {
  #petsocial .petsocial-content .btn.abs{
    right: 1%;
    padding: 15px 30px;
  }
}

/********* PETCARD **********/

.petcard{
  position: relative;
  background-color: #fff6f0;
  width: 95%;
  height: 290px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-left: 30px;
  z-index: 0;
}
.petcard i.heart{
  position: absolute;
  top: 0;
  right: 100px;
  color: #fff;
  font-size: 340px;
  transform: rotate(10deg);
  z-index: -1;
}
@media(max-width:992px) {
  .petcard i.heart{
    right: 20px;
  }
}
.petcard .img-container i.like{
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #ff525e;
  font-size: 35px;
  cursor: pointer;
  z-index: 2;
}
@media(max-width:992px) {
  .petcard .img-container i.like{
    font-size: 28px;
  }
}
.petcard i.like:hover{
  animation: beat 0.25s infinite alternate;
  transform-origin: center;
}
@keyframes beat {
  to {
    transform: scale(1.2);
  }
}
.petcard .img-container i.like .likenum{
  font-family: 'Barlow Condensed', sans-serif;
  position: absolute;
  bottom: 11px;
  left: 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
@media(max-width:992px) {
  .petcard .img-container i.like .likenum{
    font-size: 14px;
    bottom: 7px;
    left: 11px;
  }
}
.petcard .img-container{
  position: relative;
  width: 27vw;
  height: auto;
  margin-top: -70px;
  margin-left: -30px;
}
@media(max-width:992px) {
  .petcard .img-container{
    width: 42vw;
  }
}
.petcard .img-container img{
  width: 100%;
  height: 100%;
}
.petcard .img-container .overlay {
  top:0;
  position: absolute;
	content: " ";
  background-image: linear-gradient(210deg, rgba(245, 246, 252, 0) 50%, rgba(0, 0, 0, 1));
  width: 100%;
  height: 100%;
  z-index: 1;
}
.petcard .content{
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}
@media(max-width:992px) {
  .petcard .content{
    padding: 20px;
  }
}
.petcard .title{
  font-size: 36px;
  font-weight: 800;
  color: #462d44;
}
.petcard ul.details{
  list-style: none;
  margin: 0;
  text-align: left;
  padding: 0 !important;
}
.petcard ul.details li{
  border-bottom: 3px dotted #ede6e1;
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  margin: 0 !important;
}
.petcard ul.details li:last-child{
  border-bottom: none;
}
.petcard ul.details li .title{
  font-weight: 600;
  font-size: 16px;
  color: #000;
  width: 100%;
}
.petcard ul.details li .text{
  border-bottom: none;
}

/********* CTA CARD **********/

.cta-card{
  height: 180px;
  display: flex;
  justify-content: space-between;
  background-color: #fff1e7;
  border-radius: 20px;
}
.card-img{
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card-content{
  width: 100%;
  display: flex;
  flex-direction:column;
  justify-content: center;
}

.single-page .card-content h3{
  font-size: 27px;
  font-weight: 800;
  color: #462d44;
}

.single-page .card-content h4{
  font-size: 19px;
  font-weight: 600;
  color: #ff525e;
}

/********* PAGES **********/

.single-page h2{
  font-size: 40px;
  font-weight: 600;
  color: #462d44;
}

.single-page h3{
  font-size: 53px;
  font-weight: 800;
  color: #ff525e;
}

.single-page p{
  font-size: 19px;
}

.single-page img.family{
  width: 100%;
}

.single-page .contact-card{
  width: 70%;
}

.single-page .contact-img{
  border-radius: 50%;
  overflow: hidden;
  width: 220px;
  height: 220px;
}

.single-page .about-gallery1{
  width: 43%;
}
.single-page .about-gallery2{
  width: 57%;
}

@media(max-width:998px) {
  .single-page .about-gallery1{
    width: 100%;
  }
  .single-page .about-gallery2{
    width: 100%;
    padding: 0 !important;
  }
}

.contact-page{
  position: relative;
}
.contact-page img.shop-image{
  position: absolute;
  left: 0;
  max-width: 60vw;
}

.contact-page iframe{
  margin-top: 70px;
  display: block;
  float: right;
  width: 70%;
  height: 60vh;
}

.single-page .about-container{
  position: relative;
}

.single-page .about-container .bg-divider{
  position: absolute;
  background-color: #fff1e7;
  left: -35%;
  right: -35%;
  top: 15%;
  width: 200vw;
  height: 95vh;
  z-index: 0;
}

#shipping{
  background-color: #fff1e7;
  padding-top: 50px;
  padding-bottom: 60px;
}

#shipping table.shipping-table thead{
  font-weight: 600;
  font-size: 14px;
  background-color: #f7cfb1;
}
#shipping table.shipping-table tr td{
  padding: 10px;
}
#shipping table.shipping-table tbody{
  font-weight: 500;
  font-size: 14px;
}

#shipping table.shipping-table tr td{
  padding: 20px 10px;
}
#shipping table.shipping-table tr:nth-child(2){
  background-color: #fde9db;
}




/********* TESTIMONIAL **********/

#testimonial{
  position: relative;
  width: 100%;
  height: 100%;
}
@media(max-width:998px) {
  #testimonial{
    margin-top: 100px;
  }
}
#testimonial .testimonial-content{
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#testimonial .testimonial-content img{
  position: relative;
  width: 2000px;
  height: 750px;
  z-index: -1;
}
#testimonial .testimonial-content .testimonial-box{
  position: absolute;
  background-color: #fff;
  width: 50vw;
  padding: 50px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 21px 18px 45px -14px rgba(0,0,0,0.2);
  -moz-box-shadow: 21px 18px 45px -14px rgba(0,0,0,0.2);
  box-shadow: 21px 18px 45px -14px rgba(0,0,0,0.2);
}
@media(max-width:1600px) {
  #testimonial .testimonial-content .testimonial-box{
    width: 80vw;
  }
}
@media(max-width:998px) {
  #testimonial .testimonial-content .testimonial-box{
    padding: 50px 30px;
    width: 90vw;
  }
}
#testimonial .testimonial-content .testimonial-box  i{
  position: absolute;
  left: 46%;
  top: -2vw;
  font-size: 80px;
  color: #ff525e;
}
@media(max-width:1600px) {
  #testimonial .testimonial-content .testimonial-box  i{
    font-size: 60px;
  }
}
#testimonial .testimonial-content .testimonial-box .testimonial-slider{
  position: relative;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(auto-fit, minmax(min-content, 1fr));
}

#testimonial .testimonial-content .testimonial-box .testimonial-slider .testimonial-container{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
	justify-content: space-between;
  width: 41.5vw;
  overflow: visible;
}
@media(max-width:1600px) {
  #testimonial .testimonial-content .testimonial-box .testimonial-slider .testimonial-container{
    width: 68vw;
  }
}
@media(max-width:996px) {
  #testimonial .testimonial-content .testimonial-box .testimonial-slider .testimonial-container{
    width: 81vw;
  }
}
@media(max-width:500px) {
  #testimonial .testimonial-content .testimonial-box .testimonial-slider .testimonial-container{
    width: 76vw;
  }
}

#testimonial .testimonial-content .testimonial-box .testimonial-slider .testimonial-container h1{
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
  margin-bottom: 30px;
}
@media(max-width:1400px) {
  #testimonial .testimonial-content .testimonial-box .testimonial-slider .testimonial-container h1{
    font-size: 32px;
    flex-wrap: wrap;
  }
}
#testimonial .testimonial-content .testimonial-box .testimonial-slider .testimonial-container p{
  text-align: center;
  font-size: 21px;
  font-weight: 400;
  color: #000;
  margin-bottom: 30px;
  padding: 10px;
}
#testimonial .testimonial-content .testimonial-box .testimonial-slider .testimonial-container .footer{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #ff525e;
  margin-bottom: 30px;
}
#testimonial .testimonial-content .testimonial-box ul{
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 30%;
  height: 100%;
  padding: 0;
}
@media(max-width:998px) {
  #testimonial .testimonial-content .testimonial-box ul{
    width: 100%;
  }
}
#testimonial .testimonial-content .testimonial-box ul li{
  margin: 0 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #c0c0c0;
  cursor: pointer;
}
#testimonial .testimonial-content .testimonial-box ul li.active{
  width: 10px;
  height: 10px;
  background-color: #ff525e;
}

/********* ARTICLE BOX **********/

.article{
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
}
.article.small{
  width: 410px;
}
.article.small:last-child{
  margin-right: 0;
}
@media(max-width:998px) {
  .article.small{
    margin-right: 0;
    width: 100%;
  }
}
.article.big{
  flex-direction: row;
  justify-content: space-between;
}
@media(max-width:998px) {
  .article.big{
    flex-direction: column;
    justify-content: space-between;
  }
}
.article .img-container{
  width:100%;
  overflow: hidden;
  object-fit: contain;
}
.article.small img.article-img{
  width: 100%;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  border: 2px dotted transparent;
  cursor: pointer;
}
.article.small img.article-img:hover{
  border: 2px dotted #ff525e;
  transform: rotate(3deg);
  padding: 4%;
}

@media(max-width:1600px) {
  .article.big img.article-img{
    width: 250%;
  }
}
@media(max-width:998px) {
  .article.big img.article-img{
    width: 100%;
  }
}
.article.big .article-content{
  padding: 30px;
  height: 100%;
}
@media(max-width:998px) {
  .article.big .article-content{
    padding: 20px 0;
  }
}
.article.small .article-content{
  padding: 10px;
  width: 100%;
}
.article.small .article-content .article-sticker,
.article.big .article-content .article-sticker{
  position: relative;
  text-align: center;
  background-color: #ff525e;
  color: #462d44;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
  margin-bottom: 20px;
  width: 130px;
}
.article.small .article-content .article-sticker{
  margin-top: -25px;
}
.article .article-content h2{
  text-align: left  !important;
  color: #462d44;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 30px;
}
.article.small .article-content h2{
  margin-bottom: 20px;
}
.article .article-content p{
  color: #000;
  font-size: 19px;
  font-weight: 400;
  margin-bottom: 0;
}

/********* NEWSLETTER **********/

#newsletter{
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 25vw;
  background-color: #462d44;
  margin-bottom: 50px;
}
@media(max-width:998px) {
  #newsletter{
    flex-direction: column;
    height: 100%;
  }
}
#newsletter img{
  top: -5%;
}
#newsletter img.newsletter-img{
  width: 50vw;
  z-index: 0;
}
@media(max-width:998px) {
  #newsletter img.newsletter-img{
    width: 90vw;
    margin-top: -30px;
  }
}
#newsletter .bigone{
  position: absolute;
  left: 40%;
  font-size: 28vw;
}
@media(max-width:998px) {
  #newsletter .bigone{
    font-size: 80vw;
    left: 10%;
    top: 10%;
  }
}
#newsletter img.app-img{
  width: 3.3vw;
  position: absolute;
  top:40%;
  left:25%;
  z-index: 1;
}
@media(max-width:998px) {
  #newsletter img.app-img{
    width: 6.5vw;
    top:15vw;
    left:50%;
  }
}
#newsletter .newsletter-content{
  position: relative;
  height: auto;
  padding: 80px;
}
@media(max-width:998px) {
  #newsletter .newsletter-content{
    padding: 20px 0;
    width: 93%;
  }
}
#newsletter .newsletter-content h1{
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
}
#newsletter .newsletter-content h2{
  font-size: 29px;
  font-weight: 500;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  margin-bottom: 40px;
}
@media(max-width:1400px) {
  #newsletter .newsletter-content h1{
    font-size: 50px;
  }
  #newsletter .newsletter-content h2{
    font-size: 22px;
  }
}
#newsletter .btn.btn-outline{
  position: relative;
  font-family: 'Barlow Condensed', sans-serif;
  background-color: transparent;
}
@media(max-width:998px) {
  #newsletter .btn.btn-outline{
    padding: 15px 50px;
  }
}
/********* FOOTER **********/

footer{
  width: 100%;
  height: 100%;
}
footer .footer-top{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding-bottom: 40px;
}
@media(max-width:1400px) {
  footer .footer-top{
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-top .footer-social{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 50px;
}
@media(max-width:1400px) {
  footer .footer-top .footer-social{
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  footer .footer-top .footer-social>*{
    flex: 1 1 1 40%;
    margin-right: 20px;
  }
}
footer .footer-top .footer-social img.logo{
  margin-bottom: 30px;
  width: 230px;
  height: 100%;
}
footer .footer-top .footer-social img.social{
  margin-top: 30px;
  width: 160px;
  height: 100%;
}
footer .footer-top .footer-social .email,
footer .footer-top .footer-social .phone{
  font-size: 21px;
  color: #423145;
}

footer .footer-top .footer-nav{
  display: flex;
  justify-content: space-between;
  padding: 50px 20px;
  width: 73%;
}
@media(max-width:1400px) {
  footer .footer-top .footer-nav{
    width: 100%;
  }
}
@media(max-width:998px) {
  footer .footer-top .footer-nav{
    flex-direction: column;
    align-items: center;
  }
}
footer .footer-top .footer-nav .footer-column{
  display: flex;
  flex-direction: column;
  padding: 0 40px;
  padding-right: 0;
}
@media(max-width:998px) {
  footer .footer-top .footer-nav .footer-column{
    margin-bottom: 30px;
  }
}
footer .footer-top .footer-nav .footer-row{
  display: flex;
  flex-direction: row;
}
footer .footer-top .footer-nav .footer-column .title{
  font-size: 17px;
  color: #ff525e;
  font-weight: 600;
}
footer .footer-top .footer-nav .footer-column ul{
  padding: 0;
  margin-right: 1vw;
  list-style: none;
  margin-top: 10px;
}
@media(max-width:1400px) {
  footer .footer-top .footer-nav .footer-column ul{
    margin-right: 5vw;
  }
}
@media(max-width:998px) {
  footer .footer-top .footer-nav .footer-column ul{
    margin-right: 10vw;
  }
}
footer .footer-top .footer-nav .footer-column ul:last-child{
  margin-right: 0;
}
footer .footer-top .footer-nav .footer-column ul li{
  font-size: 17px;
  padding: 5px 0;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  cursor: pointer;
}
footer .footer-top .footer-nav .footer-column ul li .caret{
  margin-right: 15px;
}
footer .footer-top .footer-nav .footer-column ul li:hover{
  color: #ff525e;
}

footer .footer-bottom{
  height: 50px;
  width: 100%;
  background-color: #f9f8f9;
}
footer .footer-bottom .container-fluid{
  display: flex;
  flex-direction: row !important;
  justify-content: space-between;
  align-items: center;
}
footer .footer-bottom .text{
  font-size: 16px;
}


/********* CUSTOM CHECKBOX **********/

input[type='checkbox'] {
  position: absolute;
  opacity: 0;
}
input[type='checkbox']:checked + label svg path {
  stroke-dashoffset: 0;
}
input[type='checkbox']:focus + label {
  transform: scale(1.03);
}
input[type='checkbox'] + label {
  display: block;
  background-color: #eeeeee;
  width: 25px;
  height: 25px;
  cursor: pointer;
  padding: 3px;
  transition: all 0.2s ease;
}
input[type='checkbox'] + label svg {
  pointer-events: none;
    margin-top: -10px;
}
input[type='checkbox'] + label svg path {
  fill: none;
  stroke: #ff525e;
  stroke-width: 4px;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 101;
  transition: all 350ms cubic-bezier(1, 0, 0.37, 0.91);
}

/********* BREADCRUMB **********/

.breadcrumb{
  background-color: #fff;
  padding: 0;
  margin: 0;
}
.breadcrumb ul{
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.breadcrumb ul li{
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  color: #a896a7;
}
.breadcrumb ul li::after{
  content: " » ";
  padding: 0 10px;
}
.breadcrumb ul li:last-child::after{
  content: "";
  padding: 0;
}

/********* MAGAZINE HOME **********/

#magazine{
  background-color: #fff;
  width: 100%;
  height: 100%;
  padding-top: 30px;
  margin-bottom: 100px;
  overflow: hidden;
}
#magazine .magazine-content{
  height: auto;
  padding: 0;
}
#magazine .magazine-content h1{
  text-align: center;
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
}
#magazine .magazine-content h2{
  text-align: center;
  font-size: 35px;
  font-weight: 800;
  color: #462d44;
}

@media(max-width:998px) {
  #magazine .magazine-content .btn.btn-outline{
     padding: 15px 30px;
  }
}
#magazine .article-container{
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
#magazine .article-container .article-row{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 50px;
  width: 100%;
}
@media(max-width:998px) {
  #magazine .article-container .article-row{
    flex-direction: column;
  }
}

/********* MAGAZINE ARTICLE **********/

#magazine .article-column{
  width: 75%;
}
@media(max-width:1400px) {
  #magazine .article-column{
    width: 100%;
  }
}
#magazine .article-column h1{
  font-size: 53px;
  font-weight: 800;
  color: #ff525e;
  line-height: 1;
}
#magazine .article-column .author{
  font-size: 19px;
  margin: 0 10px;
}
#magazine .article-column .article-tags{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#magazine .article-column .tag{
  display: block;
  text-align: center;
  background-color: #ff525e;
  color: #462d44;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
  margin: 0 5px;
}
#magazine .article-column .article-content p{
  font-size: 19px;
  margin-bottom: 50px;
}
#magazine .article-column .article-content img{
  max-width: 100%;
}
#magazine .article-column .article-content h2{
  color: #462d44;
  font-size: 37px;
  font-weight: 800;
  margin: 40px 0;
}
#magazine .article-author{
  background-color: #fff6f0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media(max-width:998px) {
  #magazine .article-author{
    flex-direction: column;
  }
}
#magazine .article-author img{
  margin-left: 40px
}
#magazine .article-author .article-author-content{
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}
#magazine .article-author h3{
  color: #462d44;
  font-size: 29px;
  font-weight: 800;
}
#magazine .article-share{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media(max-width:998px) {
  #magazine .article-share{
    flex-direction: column;
  }
}
#magazine .article-share h3{
  font-size: 19px;
  font-weight: 700;
  margin-right: 10px;
}

#magazine .article-comment{
  margin: 40px 0;
}
#magazine .article-comment h3{
  color: #462d44;
  font-size: 37px;
  font-weight: 800;
  margin-bottom: 30px;
}
#magazine .article-comment .submit{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media(max-width:1600px) {
  #magazine .article-comment .submit{
    flex-direction: column;
  }
}
#magazine .article-comment .submit p{
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  line-height:1;
  margin: 0;
}
@media(max-width:1600px) {
  #magazine .article-comment .submit p{
    margin-top: 20px;
  }
}

/********* COMMENTS **********/

.comment-entry{
  position: relative;
  margin-top: 50px;
  padding: 30px;
  padding-bottom: 0;
  background-image: linear-gradient( #fafafa, transparent, transparent );
  width: 100%;
  overflow: hidden;
}
.comment-entry p{
  color: #030000;
  font-size: 19px;
  font-style: italic;
  padding-bottom: 20px;
}
.comment-entry img{
  position: absolute;
  left: 0;
  bottom: 15px;
}
@media(max-width:700px) {
  .comment-entry img{
    bottom: 30px;
  }
}
.comment-entry .comment-signature{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 70px;
}
@media(max-width:998px) {
  .comment-entry .comment-signature{
    margin-left: 30px;
  }
}
.comment-entry .comment-signature>*{
  margin-right: 20px;
}
.comment-entry .comment-signature>*:last-child{
  margin-right: 0;
}
.comment-entry .comment-signature .username{
  color: #ff525e;
  font-size: 19px;
  font-weight: 700;
}
.comment-entry .comment-signature .vd{
  width: 1px;
  border-right: 1px solid #e0e0e0;
  height: 30px;
}
.comment-entry .comment-signature .date{
  color: #000;
  font-size: 19px;
  font-weight: 400;
}
.comment-entry .comment-signature .confirmation{
  display: flex;
  align-items: center;
  color: #000;
  font-size: 17px;
  font-weight: 600;
}
.comment-entry .comment-signature .confirmation img.tick{
  position: relative;
  bottom: auto;
  margin-right: 10px;
}
/********* MAGAZINE ARTICLE SIDE **********/

#magazine .article-side{
  width: 25%;
  padding-left: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media(max-width:1400px) {
  #magazine .article-side{
    width: 100%;
    padding-left: 0;
    margin-top: 50px;
    padding-bottom: 40px;
  }
}
#magazine .article-side h2{
  color: #462d44;
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 30px;
}
#magazine .article-side h3{
  color: #ff525e;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 20px;
}
#magazine .article-side ul{
  display: inline-block;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
  width: 100%;
}
#magazine .article-side ul.tags li{
  float: left;
  display: block;
  font-size: 16px;
  border-radius: 10px;
  padding: 3px 6px;
  cursor: pointer;
}
#magazine .article-side ul.tags li:hover{
  background-color: #ff525e;
  color: #fff;
}

#magazine .article-side ul.proposal li{
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

/********* MAGAZINE LIST **********/

#magazine .magazine-header{
  display: flex;
  flex-direction: column;
}
#magazine .magazine-header h1{
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
  margin-top: -15px;
  line-height: 1;
}
#magazine .magazine-header .banner{
  position: relative;
  margin-top: 20px;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: flex-start;
}
@media(max-width:998px) {
  #magazine .magazine-header .banner{
    height: 600px;
  }
  #magazine .magazine-header h1{
    font-size: 54px;
  }
  #magazine .magazine-header .content h2{
    font-size: 32px;
  }
}
#magazine .magazine-header .banner img.img-bck{
  position: absolute;
  right: 0;
  height: 100%;
}
#magazine .magazine-header .banner .content{
  margin-left: 45%;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 40%;
}
@media(max-width:1600px) {
  #magazine .magazine-header .banner .content{
    margin-left: 35%;
    width: 50%;
  }
}
@media(max-width:1400px) {
  #magazine .magazine-header .banner .content{
    margin-left: 10%;
    width: 80%;
  }
}
#magazine .magazine-header .banner .content h2{
  font-size: 48px;
  font-weight: 800;
  color: #462d44;
  margin-bottom: 30px;
}
#magazine .magazine-header .banner .content p{
  font-size: 19px;
  font-weight: 400;
  color: #462d44;
}
#magazine .magazine-header .selector{
  margin-top: 30px;
}
#magazine .magazine-header .selector h2{
  text-align: center;
  font-size: 29px;
  font-weight: 700;
  color: #ff525e;
  margin-bottom: 30px;
}
#magazine .magazine-header .selector .selector-row>*{
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 40px;
  border-right: 2px dotted #f7dfcf;
}
#magazine .magazine-header .selector .selector-row>* a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  font-size: 24px;
  font-weight: 600;
  color: #462d44;
  text-decoration: none;
  width: 100%;
  height: 100%;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
#magazine .magazine-header .selector .selector-row>* a.active,
#magazine .magazine-header .selector .selector-row>* a:hover{
  background-image: repeating-linear-gradient( 45deg, #ff525e, #ff525e 5px, #fe8b93 5px, #fe8b93 10px );
  border-radius: 10px;
  padding: 20px 0;
  color: #fff;
}
#magazine .magazine-header .selector .selector-row>* a.active .hash,
#magazine .magazine-header .selector .selector-row>* a:hover .hash{
  color: #fff;
}
#magazine .magazine-header .selector .selector-row>*:last-child{
  border-right: none;
}
#magazine .magazine-header .selector .selector-row>* .hash{
  font-weight: 400;
  color: #ff525e;
  -webkit-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -ms-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
}
#magazine .magazine-header .selector .selector-row .selector-name{
  margin-top: 10px;
  margin-bottom: -10px;
}

#magazine .search-container{
  background-color: #462d44;
  height: 100%;
  width: 100%;
  padding: 20px;
}
@media(max-width:992px) {
  #magazine .search-container{
    padding: 20px 5px;
  }
}
#magazine .paginate-container{
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  height: 100%;
  width: 100%;
  padding: 20px;
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}


/********* SEARCH BAR **********/

.search-bar{
  position: relative;
  height: 70px;
  border-radius: 35px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  padding-left: 50px;
  margin: 0;
}
@media(max-width:992px) {
  .search-bar{
    padding-left: 20px;
  }
}
.search-bar input{
  border: none;
  font-size: 19px;
  color: #808080;
  background-color: transparent;
  margin: 0px auto;
}

.search-bar .form-control:focus {
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.search-bar .btn-search{
  padding: 13px 50px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px;
  font-weight: 600;
}
.search-bar .btn-search img{
  margin: 0;
}
@media(max-width:992px) {
  .search-bar .btn-search{
    padding: 13px 20px;
  }
}

/********* PAGINATION **********/

.paginate{
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}
@media(max-width:1400px) {
  .paginate{
    width: 70%;
  }
}
@media(max-width:992px) {
  .paginate{
    width: 100%;
  }
}
.paginate ul{
  width: 100%;
  height: 100%;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 20px;
}
@media(max-width:992px) {
  .paginate ul{
    margin: 0 5px;
  }
}
.paginate ul li{
  font-size: 19px;
  height: 40px;
  width: 40px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media(max-width:992px) {
  .paginate ul li{
    font-size: 14px;
    height: 25px;
    width: 25px;
    border-radius: 15px;
  }
}
.paginate ul li:hover,
.paginate ul li.active{
  background-color: #fff6f0;
}
.paginate .btn,
.paginate .btn:hover{
  padding: 10px 40px;
  background-color: #462d44;
}
@media(max-width:992px) {
  .paginate .btn,
  .paginate .btn:hover{
    padding: 10px 14px;
  }
}
.paginate .btn img{
  margin: 0;
  width: 20px;
}
@media(max-width:992px) {
  .paginate .btn img{
    width: 15px;
  }
}
.paginate .btn:hover img{
  margin-right: -20px;
  margin-left: 20px;
}
.paginate .btn.left:hover img{
  margin-left: -20px;
  margin-right: 20px;
}
@media(max-width:992px) {
  .paginate .btn:hover img{
    margin-right: -7px;
    margin-left: 7px;
  }
  .paginate .btn.left:hover img{
    margin-left: -7px;
    margin-right: 7px;
  }
}
/********* CUSTOM STUFF **********/

.divider{
  border-bottom: 1px solid #e9e9e9;
  height: 1px;
  width: 100%;
  line-height: 0;
  margin:20px 0;
  padding:0;
}
@media(max-width:992px) {
  .hide-phone{
    display: none !important;
  }
  .show-phone{
    display: block !important;
  }
}

/********* ADOPTION FOCUS **********/

#adoption-focus {
  position: relative;
  width: 100%;
  margin-top: 50px;
  margin-bottom: 60px;
}

#adoption-focus .adoption-content {
  height: auto;
  padding: 20px 0;
}

#adoption-focus .adoption-content h1 {
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
  text-align: center;
  margin-bottom: 40px;
}

#adoption-focus .adoption-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}

#adoption-focus .adoption-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
}

#adoption-focus .adoption-block {
  position: relative;
  margin-bottom: 30px;
}

#adoption-focus .adoption-card {
  position: relative;
  background-color: #fff6f0;
  overflow: hidden;
  -webkit-box-shadow: 11px 9px 20px -14px rgba(0,0,0,0.4);
  -moz-box-shadow: 11px 9px 20px -14px rgba(0,0,0,0.4);
  box-shadow: 11px 9px 20px -14px rgba(0,0,0,0.4);
}

#adoption-focus .adoption-card img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

#adoption-focus .adoption-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(70, 45, 68, 0.7), transparent);
}

#adoption-focus .adoption-card .overlay p {
  font-size: 19px;
  color: #fff;
  margin-bottom: 30px;
}

/********* SERVICE PROVIDERS **********/

#service-providers {
  background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.0)),
              url('../img/testimonial.jpg') center/cover fixed;
  padding: 60px 0;
  position: relative;
}

#service-providers .section-title {
  color: white;
  margin-bottom: 50px;
}

#service-providers .section-title h2 {
  color: white;
}

#service-providers .provider-categories .category h3 {
  color: white;
}

#service-providers .provider-categories .category p {
  color: rgba(255, 255, 255, 0.9);
}

/* Keep the existing pink flap styles unchanged */
#service-providers .provider-categories .category .button-flap {
  background-color: #ff525e;
}

#service-providers .providers-content {
  text-align: center;
}

#service-providers .providers-content h1 {
  font-size: 64px;
  font-weight: 800;
  color: #ff525e;
  margin-bottom: 50px;
}

#service-providers .provider-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

#service-providers .provider-categories .category {
  position: relative;
  flex: 0 0 calc(25% - 30px);
  min-height: 400px;
  background-color: #462d44;
  overflow: hidden;
  transition: all 0.3s ease;
}

#service-providers .provider-categories .category:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

#service-providers .provider-categories .category .image-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

#service-providers .provider-categories .category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

#service-providers .provider-categories .category:hover img {
  transform: scale(1.1);
}

#service-providers .provider-categories .content {
  padding: 20px;
  margin-bottom: 15px;
  text-align: left;
}

#service-providers .provider-categories .category h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

#service-providers .provider-categories .category p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}

#service-providers .provider-categories .category .button-flap {
  position: absolute;
  bottom: -70px;
  left: 0;
  width: 100%;
  padding: 15px;
  background-color: #ff525e;
  transition: bottom 0.3s ease;
}

#service-providers .provider-categories .category:hover .button-flap {
  bottom: 0;
}

#service-providers .provider-categories .category .btn {
  width: 100%;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  transition: all 0.3s ease;
}

#service-providers .provider-categories .category .btn:hover {
  background: #fff;
  color: #ff525e;
}

@media(max-width: 1200px) {
  #service-providers .provider-categories .category {
    flex: 0 0 calc(33.33% - 30px);
  }
}

@media(max-width: 992px) {
  #service-providers .provider-categories .category {
    flex: 0 0 calc(50% - 30px);
  }
}

@media(max-width: 576px) {
  #service-providers .provider-categories .category {
    flex: 0 0 100%;
  }
  
  #service-providers .provider-categories .category .image-container {
    height: 400px;
  }
  
  #service-providers .provider-categories .category .button-flap {
    bottom: -80px; /* Change from 0 to -80px to hide by default */
  }
  
  #service-providers .provider-categories .category:hover .button-flap {
    bottom: 0; /* Show on hover, just like desktop */
  }
}

/********* MARKETPLACE **********/

#marketplace {
  padding: 60px 0;
  background-color: #462d44;
  position: relative;
  overflow: hidden;
}

/* Replace image with FontAwesome icon */
#marketplace::before {
  content: '\f6be'; /* FontAwesome paw icon - we can change this to any other icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 0;
  font-size: 600px;
  transform: translateY(-50%);
  opacity: 0.1;
  color: white;
  pointer-events: none;
}

/* Ensure content stays above the overlay */
#marketplace .marketplace-container {
  position: relative;
  z-index: 1;
}

#marketplace .marketplace-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

#marketplace .content-side {
  flex: 1;
  padding-right: 40px;
}

#marketplace .image-side {
  flex: 1;
  position: relative;
}

#marketplace .image-side img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

#marketplace h2 {
  font-size: 56px;
  font-weight: 800;
  color: #ff525e;
  margin-bottom: 30px;
}

#marketplace .subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: white;
  line-height: 1.6;
}

#marketplace .features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

#marketplace .feature {
  display: flex;
  align-items: center;
  gap: 15px;
}

#marketplace .feature i {
  font-size: 2rem;
  color: #ff525e;
  background: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#marketplace .feature span {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

@media (max-width: 992px) {
  #marketplace .marketplace-container {
    flex-direction: column-reverse;
    gap: 40px;
  }

  #marketplace .content-side {
    padding-right: 0;
    text-align: center;
    width: 100%;
  }

  #marketplace .features {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 300px;
    margin: 40px auto 0;
  }

  #marketplace .feature {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
  }

  #marketplace .feature i {
    margin-right: 15px;
  }

  #marketplace .feature span {
    text-align: left;
  }

  #marketplace h2 {
    font-size: 2.5rem;
  }

  #marketplace .subtitle {
    font-size: 1.2rem;
  }

  #marketplace .image-side img {
    height: 400px;
  }
}

@media (max-width: 576px) {
  #marketplace .features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}