* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    line-height: 1.5;
    color: #26263D;
    font-size: 18px;
    padding-top: 104px;
}

@media (max-width: 1600px) {
    body {
        font-size: 16px;
    }
}

@media (max-width: 1200px) {
    body {
        padding-top: 96px;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 40px;
}

@media (max-width: 1600px) {
    h1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 28px;
    }
}

h2 {
    font-size: 32px;
}

@media (max-width: 1600px) {
    h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 24px;
    }
}

h3 {
    font-size: 24px;
}

@media (max-width: 1600px) {
    h3 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    h3 {
        font-size: 18px;
    }
}

h4 {
    font-size: 20px;
}

@media (max-width: 1600px) {
    h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    h4 {
        font-size: 16px;
    }
}

a,
a:hover,
a:focus {
  color: inherit;
  text-decoration: none;
}

figure {
    margin: 0;
}

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

.section__pt {
    padding-top: 96px;
}

.section__pb {
    padding-bottom: 96px;
}

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

.section__title,
.section__desc h1,
.section__desc h2,
.section__desc h3,
.section__desc h4 {
    color: #7B2D86;
}

.section__row:not(:last-child) {
    margin-bottom: 48px;
}

.section__desc > *:not(:last-child) {
    margin-bottom: 24px;
}

.section__desc ul,
.section__desc ol {
    padding-left: 18px;
}

.section__desc a {
    text-decoration: underline;
    transition: all .5s;
}

.section__desc a:hover {
    color: #1BBD69;
}

.section__btn {
    padding: 16px 32px;
    font-weight: 700;
    display: inline-block;
    color: #fff;
    border-radius: 28px;
    line-height: 1;
    white-space: nowrap;
    transition: all .5s;
}

.section__btn--primary {
    background-color: #1BBD69;
    border: 3px solid #1BBD69;
}

.section__btn--primary:hover {
    color: #D1F2E1;
}

.section__btn--secondary {
    border: 3px solid #1BBD69;
}

.section__btn--secondary:hover {
    background-color: #1BBD69;
    color: #fff;
}

.header {
    background-color: #fff;
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    transition: all .5s;
}

.header.scroll {
    transform: translateY(-100%);
}

.header .header__columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.header .header__column:last-child {
    display: none;
}

@media (max-width: 1200px) {
    .header .header__column:nth-child(2) {
        display: none;
    }

    .header .header__column:last-child {
        display: block;
    }
}

.header .header__logo > img {
    width: auto;
    height: 56px;
}

@media (max-width: 1200px) {
    .header .header__logo > img {
        width: auto;
        height: 48px;
    }
}

.header .header__nav ul {
    list-style-type: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.header .header__nav li {
    position: relative;
}

.header .header__nav a {
    font-weight: 700;
    transition: all .5s;
}

.header .header__nav li:not(.header__btn):hover > a,
.header .header__nav li:not(.header__btn).current-menu-item > a,
.header .header__nav li:not(.header__btn).current_page_item > a {
    color: #1BBD69;
}

.header .header__nav li.header__btn > a {
    padding: 16px 32px;
    font-weight: 700;
    display: inline-block;
    color: #fff;
    border-radius: 28px;
    line-height: 1;
    white-space: nowrap;
    transition: all .5s;
    background-color: #1BBD69;
    border: 3px solid #1BBD69;
}

.header .header__nav li.header__btn > a:hover {
    color: #D1F2E1;
}

.header .header__nav .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
}

.header .header__nav .sub-menu a {
    background-color: #1BBD69;
    padding: 8px 16px;
    color: #fff;
    display: block;
}

.header .header__nav a.gt-current-wrapper {
    color: #1BBD69;
}

.header .header__nav .sub-menu li:hover a {
    color: #fff;
}

.header .header__nav li:hover .sub-menu {
    display: block;
}

.header .header__hamburger .line {
	width: 32px;
	height: 2px;
	background-color: #7B2D86;
	display: block;
	margin: 10px auto;
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.header .header__hamburger .line:first-child,
.header .header__hamburger .line:last-child {
	width: 20px;
}

.header .header__hamburger .line:first-child {
	margin-top: 0;
}

.header .header__hamburger .line:last-child {
	margin-bottom: 0;
}

.header .header__hamburger:hover {
	cursor: pointer;
}

.header .header__hamburger.is-active .line:nth-child(1) {
	-webkit-transform: translateY(12px) rotate(45deg);
	-ms-transform: translateY(12px) rotate(45deg);
	-o-transform: translateY(12px) rotate(45deg);
	transform: translateY(12px) rotate(45deg);
	width: 32px;
}

.header .header__hamburger.is-active .line:nth-child(2) {
	opacity: 0;
}

.header .header__hamburger.is-active .line:nth-child(3) {
	-webkit-transform: translateY(-12px) rotate(-45deg);
	-ms-transform: translateY(-12px) rotate(-45deg);
	-o-transform: translateY(-12px) rotate(-45deg);
	transform: translateY(-12px) rotate(-45deg);
	width: 32px;
}

.menu-mobile {
	display: none;
	position: fixed;
	top: 96px;
	left: 0;
	width: 100%;
	background-color: #7B2D86;
	padding: 16px 0;
	text-align: right;
	max-height: calc(100vh - 96px);
	overflow-y: scroll;
	z-index: 400;
}

.menu-mobile .menu-mobile__nav ul {
	list-style-type: none;
}

.menu-mobile .menu-mobile__nav li {
    position: relative;
}

.menu-mobile .menu-mobile__nav a {
	color: #fff;
	display: block;
	padding: 16px 0;
    font-weight: 700;
}

.menu-mobile .menu-mobile__nav li.header__btn > a {
    padding: 8px 16px;
    font-weight: 700;
    display: inline-block;
    color: #fff;
    border-radius: 18px;
    line-height: 1;
    font-size: 14px;
    white-space: nowrap;
    transition: all .5s;
    background-color: #1BBD69;
    border: 3px solid #1BBD69;
    margin-top: 16px;
    margin-bottom: 16px;
}

.menu-mobile .menu-mobile__nav li.header__btn > a:hover {
    color: #D1F2E1;
}

.menu-mobile .menu-mobile__nav li:after {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 100%;
	height: 1px;
	background-color: rgba(0, 0, 0, .1);
}

.menu-mobile .menu-mobile__nav .menu>li:last-child::after {
	display: none;
}

@media (max-width: 1200px) {
   .menu-mobile .menu-mobile__nav a.gt-current-wrapper {
        display: none;
    }
}

.hero .hero__img {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.hero .hero__img > img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 21/9;
}

@media (max-width: 768px) {
    .hero .hero__img > img {
        aspect-ratio: 3/4;
    }
}

.hero .hero__caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 64px 64px 64px;
    z-index: 100;
    width: 50%;
}

@media (max-width: 768px) {
    .hero .hero__caption {
        width: 100%;
        padding: 0 32px 32px 32px;
    }
}

.hero .hero__caption > *:not(:last-child) {
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .hero .hero__caption > *:not(:last-child) {
        margin-bottom: 24px;
    }
}

.hero .hero__header {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    line-height: 1.2;
    font-size: 56px;
    color: #fff;
}

@media (max-width: 1600px) {
    .hero .hero__header {
        font-size: 48px;
    }
}

@media (max-width: 1200px) {
    .hero .hero__header {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .hero .hero__header {
        font-size: 32px;
    }
}

.hero .hero__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

@media (max-width: 768px) {
    .hero .hero__buttons {
        gap: 16px;
    }
}

.welcome .welcome__header {
    width: 66.6667%;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 768px) {
    .welcome .welcome__header {
        width: 100%;
    }
}

.why-us .why-us__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.why-us .why-us__column {
    padding: 16px;
}

.why-us .why-us__column:first-child {
    width: 58.3333%;
}

@media (max-width: 768px) {
    .why-us .why-us__column:first-child {
        width: 100%;
    }
}

.why-us__reverse .why-us__column:first-child {
    order: 2;
}

@media (max-width: 768px) {
    .why-us__reverse .why-us__column:first-child {
        order: 1;
    }
}

.why-us .why-us__column:last-child {
    width: 41.6667%;
}

@media (max-width: 768px) {
    .why-us .why-us__column:last-child {
        width: 100%;
    }
}

.why-us__reverse .why-us__column:last-child {
    order: 1;
}

@media (max-width: 768px) {
    .why-us__reverse .why-us__column:last-child {
        order: 2;
    }
}

.why-us .why-us__column:only-child {
    width: 100%;
}

.why-us .why-us__img > img {
    width: 100%;
    border-radius: 32px;
}

.icons {
    padding: 64px 0;
    background-color: #FAF1C580;
}

.icons .icons__columns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: -16px;
}

.icons .icons__column {
    width: 25%;
    padding: 16px;
}

@media (max-width: 768px) {
    .icons .icons__column {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .icons .icons__column {
        width: 100%;
    }
}

.icons .icons__img {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.page-id-9 .icons .icons__img {
    align-items: center;
}

.icons .icons__img > img {
    width: 64px;
    flex: 0 0 64px;
    height: 64px;
    object-fit: contain;
    object-position: center;
}

.icons .icons__caption > *:not(:last-child) {
    margin-bottom: 8px;
}

.bestsellers .bestsellers__items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
}

.bestsellers .bestsellers__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.bestsellers .bestsellers__column {
    width: 33.3333%;
    padding: 16px;
}

@media (max-width: 768px) {
    .bestsellers .bestsellers__column {
        width: 100%;
    }
}

.bestsellers .bestsellers__img {
    border: 3px solid #FAF1C5;
    border-radius: 24px;
    padding: 32px;
}

.bestsellers .bestsellers__img > a {
    display: block;
    background-color: #FAF1C54D;
    aspect-ratio: 1/1;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.bestsellers .bestsellers__img > a > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    -webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

.bestsellers .bestsellers__img > a:hover > img {
    -webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.bestsellers .bestsellers__caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.bestsellers .bestsellers__title > a {
    transition: all .5s;
}

.bestsellers .bestsellers__title > a:hover {
    color: #1BBD69;
}

.bestsellers .bestsellers__btn {
    padding: 8px 16px;
    font-weight: 700;
    display: inline-block;
    color: #fff;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    background-color: #1BBD69;
    transition: all .5s;
}

.bestsellers .bestsellers__btn:hover {
    color: #D1F2E1;
}

.faq .faq__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.faq .faq__column {
    padding: 16px;
}

.faq .faq__column:first-child {
    width: 41.67%;
}

@media (max-width: 768px) {
    .faq .faq__column:first-child {
        width: 100%;
    }
}

.faq .faq__column:last-child {
    width: 58.33%;
}

@media (max-width: 768px) {
    .faq .faq__column:last-child {
        width: 100%;
    }
}

.faq .faq__img > img {
    border-radius: 32px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

[data-accordion] {
    line-height: 1.5;
    border-radius: 24px;
    background-color: #FAF1C580;
}

[data-accordion]:not(:last-child) {
    margin-bottom: 16px;
}

[data-control],
[data-content] > * {
    border-bottom: 0;
    padding: 24px 32px;
}

[data-content] > * {
    padding-top: 0;
}

[data-content] [data-accordion] {
    border: 0;
    padding: 0;
}

[data-accordion] [data-control] {
    position: relative;
    padding-right: 40px;
}

[data-accordion] > [data-control]:after {
    right: 32px;
    top: 50%;
    height: 24px;
    width: 24px;
    background: url('../img/accordion_arrow.svg') center center no-repeat;
    background-size: contain;
    transform: translateY(-50%) rotate(-180deg);
    transition: all .5s; 
}

[data-accordion].open > [data-control]:after {
    -webkit-transform: translateY(-50%) rotate(0);  
    -ms-transform: translateY(-50%) rotate(0); 
    transform: translateY(-50%) rotate(0); 
}

.accordion__title {
    color: #7B2D86;
}

.contact-us {
    background-color: #7B2D86;
    color: #FFFFFF;
    position: relative;
}

.contact-us .contact-us__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
}

@media (max-width: 768px) {
    .contact-us .contact-us__img {
        display: none;
    }
}

.contact-us .contact-us__img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-us .contact-us__dog {
    position: absolute;
    top: -48px;
    right: 0;
    bottom: 0;
    width: 50%;
}

@media (max-width: 768px) {
    .contact-us .contact-us__dog {
        display: none;
    }
}

.contact-us .contact-us__dog > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.contact-us .section__row {
    width: 50%;
    padding-right: 32px;
}

@media (max-width: 768px) {
    .contact-us .section__row {
        width: 100%;
        padding-right: 0;
    }
}

.contact-us .section__title {
    color: #FFFFFF;
}

.contact-us .contact-us__details {
    display: flex;
    flex-wrap: wrap;
    margin: -16px;
}

.contact-us .contact-us__icon {
    padding: 16px;
    width: 50%;
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (max-width: 768px) {
    .contact-us .contact-us__icon {
        width: 100%;
    }
}

.contact-us .contact-us__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.contact-us .contact-us__socials > a {
    position: relative;
    transition: all .5s;
    top: 0;
    display: block;
}

.contact-us .contact-us__socials > a:hover {
    top: -8px;
}

.contact-us .contact-us__title > a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #FAF1C580;
    padding: 32px 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer {
        padding: 16px 0;
        font-size: 12px;
    }
}

.footer a:hover {
    text-decoration: underline;
}

.footer .footer__columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

@media (max-width: 768px) {
    .footer .footer__columns {
        gap: 8px;
        flex-wrap: wrap;
    }

    .footer .footer__columns > * {
        width: 100%;
    }
}

.banner {
    background-color: #7B2D86;
    color: #fff;
}

.breadcrumbs {
    padding-top: 32px;
    border-top: 1px solid #0A0A1226;
    font-size: 14px;
    color: #0A0A1280;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding-top: 16px;
        font-size: 12px;
    }
}

.breadcrumbs .breadcrumbs__nav > span:not(:last-child) {
    position: relative;
    padding-right: 16px;
    margin-right: 16px;
}

@media (max-width: 768px) {
    .breadcrumbs .breadcrumbs__nav > span:not(:last-child) {
        padding-right: 8px;
        margin-right: 8px;
    }
}

.breadcrumbs .breadcrumbs__nav > span:not(:last-child)::before {
    content: '/';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 14px;
    color: #0A0A1280;
}

@media (max-width: 768px) {
    .breadcrumbs .breadcrumbs__nav > span:not(:last-child)::before {
        font-size: 12px;
    }
}

.product .product__columns {
    display: flex;
    flex-wrap: wrap;
    margin: -32px;
}

@media (max-width: 768px) {
    .product .product__columns {
        margin: -16px;
    }
}

.product .product__column {
    padding: 32px;
}

@media (max-width: 768px) {
    .product .product__column {
        padding: 16px;
    }
}

.product .product__column:first-child {
    width: 41.6667%;
}

@media (max-width: 768px) {
    .product .product__column:first-child {
        width: 100%;
    }
}

.product .product__column:last-child {
    width: 58.3333%;
}

@media (max-width: 768px) {
    .product .product__column:last-child {
        width: 100%;
    }
}

.product .product__gallery {
    border: 3px solid #FAF1C5;
    border-radius: 24px;
    padding: 32px;
}

.product .slider-for__img > a {
    display: block;
    background-color: #FAF1C54D;
    aspect-ratio: 1/1;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
}

.product .slider-for__img > a > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product .slider-nav {
    margin: 0 -16px;
}

.product .slider-nav .slick-track {
    margin-left: 0;
}

.product .slider-nav__item {
    padding: 0 16px;
}

.product .slider-nav__img > img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.see-also {
    border-top: 1px solid #0A0A1226;
}

.wpcf7-form {
    width: 50%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .wpcf7-form {
        width: 100%;
    }
}

.wpcf7-form p:not(:last-of-type) {
    margin-bottom: 16px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid rgba(0,0,0, .5);
    width: 100%;
    display: block;
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #26263D;
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder {
    font-family: "Mulish", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #26263D;
}

.wpcf7-form input[type="submit"] {
    font-size: 16px;
    margin-top: 16px;
    display: inline-flex;
    padding: 16px 32px;
    font-weight: 700;
    border-radius: 16px;
    line-height: 1;
    background-color: #1BBD69;
    border: 3px solid #1BBD69;
    border-radius: 28px;
    color: #fff;
    transition: all .5s;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #1BBD69;
    border: 3px solid #1BBD69;
    color: #D1F2E1;
    cursor: pointer;
}

.wpcf7-form .wpcf7-response-output {
    margin: 32px 0 0 0;
    padding: 16px;
    border: 2px solid #00a0d2;
    font-size: 14px;
}

.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
}

.wpcf7-form .wpcf7-list-item {
    display: block;
    margin: 16px 0 0 0;
}

.wpcf7-form .wpcf7-list-item a {
    margin: 16px 0 0 0;
}

.wpcf7-form a {
    text-decoration: underline;
    transition: all .5s;
}

.wpcf7-form a:hover {
    color: #1BBD69;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.nav-links .page-numbers {
    color: #26263D;
}

.nav-links .page-numbers.current {
    color: #1BBD69;
}

.nav-links .page-numbers.prev,
.nav-links .page-numbers.next {
    font-size: 0;
    background-color: #1BBD69;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-links .page-numbers.prev::before,
.nav-links .page-numbers.next::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    background-image: url('../img/accordion_arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
}

.nav-links .page-numbers.prev::before {
   transform: translate(-50%, -50%) rotate(-90deg); 
}

.nav-links .page-numbers.next::before {
    transform: translate(-50%, -50%) rotate(90deg);
}