
:root {
  --nav-font: "Poppins", "IBM Plex Sans Thai", sans-serif;
}

:root { 
  --heading-color: #1F1F1F;
  --accent-color: #1F1F1F;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #e5eaee;
  --nav-hover-color: #1F1F1F;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #1F1F1F;
}

select {
  box-sizing: border-box;
  appearance: unset;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
  border-bottom-right-radius: unset;
  border-bottom-left-radius: unset;
  border-top-width: unset;
  border-right-width: unset;
  border-bottom-width: 1px;
  border-left-width: unset;
  border-top-style: unset;
  border-right-style: unset;
  border-bottom-style: solid;
  border-left-style: unset;
  color: unset;
  background-color: canvas;
  align-items: unset;
  white-space-collapse: unset;
  text-wrap-mode: unset;
  -webkit-rtl-ordering: unset;
  cursor: pointer;
}

.light-background {
  --surface-color: #ffffff;
}

.dark-background {
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  overflow-x: hidden;
  color: #1F1F1F;
  background-color: #ffffff;
  font-family: "Poppins", "IBM Plex Sans Thai", sans-serif;
  letter-spacing: 0.5px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1F1F1F;
}

.weight-300 {
  font-weight: 300;
}

.pink-white-bg {
  background: #AA0E52;
  background: linear-gradient(to bottom, #AA0E52 60%, #fff 50%);
}

.pink-white-bg-50 {
  background: #AA0E52;
  background: linear-gradient(to bottom, #AA0E52 50%, #fff 50%);
}

.softpink-bg {
  background: #F7CFE1;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: #000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  transition: all 0.5s;
  z-index: 997;
}

.header .nav-top {
  padding: 0 20px;
  height: 80px;
  justify-content: space-between;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 40px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .cta-btn,
.header .cta-btn:focus {
  color: var(--contrast-color);
  font-size: 13px;
  padding: 7px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  text-transform: uppercase;
  border: 2px solid var(--contrast-color);
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-contact {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: #D51167;
  padding: 8px 32px;
  border-radius: 50px;
}

.btn-contact:hover {
  color: #fff;
}

.btn-contact::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #AA0E52;
  clip-path: circle(0%);
  z-index: 0;
  transition: 0.5s;
  border-radius: 50px;
}

.btn-contact:hover::before {
  clip-path: circle(100%);
}

.btn-contact span {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.btn-yellow {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: #FF9D18;
  padding: 8px 32px;
  border-radius: 50px;
}

.btn-yellow:hover {
  color: #fff;
}

.btn-yellow::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #AA0E52;
  clip-path: circle(0%);
  z-index: 0;
  transition: 0.5s;
  border-radius: 50px;
}

.btn-yellow:hover::before {
  clip-path: circle(100%);
}

.btn-yellow span {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.btn-gray {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: #CACACA;
  padding: 8px 32px;
  border-radius: 50px;
}

.btn-gray:hover {
  color: #fff;
  background: #CACACA;
}

.mobile-nav-item .nav-lang {
  display: none;
}

.mobile-nav-item {
  padding: 0 !important;
}

@media (max-width: 1368px) {
  .btn-contact, .btn-yellow, .btn-gray {
      font-size: 14px;
  }
}


@media (max-width: 1200px) {
  .header .logo {
    order: 0;
  }

  .header .cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }
}

@media (max-width: 1024px) {
  .header .logo img {
    max-height: 50px;
    height: 50px;
  }

  .header .nav-top {
    height: 100px;
  }

  .header .nav-top {
    padding: 0 40px;
  }
}

@media (max-width: 992px) {
  .header .nav-top {
    padding: 20px 20px;
  }

}

@media (max-width: 600px) {
  .header .nav-top {
    height: 70px;
  }

  .header .logo img {
    max-height: 35px;
    height: 35px;
  }

}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 20px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    font-size: 16px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 4px;
    bottom: -29px;
    left: 0;
    border-radius: 20px 20px 0 0;
    background-color: #D51167;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #D51167;
    font-weight: 500;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    top: 65px;
    border-radius: 0;
    left: 20px;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .nav-item {
    padding: 15px 0 15px 20px;
  }

  .nav-item .nav-lang {
    padding-left: 15px;
    margin: auto 0;
  }

  .nav-item .nav-lang a{
    color: #000;
    font-family: "Poppins", "IBM Plex Sans Thai", sans-serif;;
    font-weight: 400;
    font-size: 12px;
  }

  .nav-item .nav-lang a.active{
    color: #D51067;
    font-weight: 600;
    text-decoration: underline;
  }
}

@media (max-width: 1368px) {
    .navmenu a, .navmenu a:focus {
      font-size: 14px;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .header {
    background: #fff;
    backdrop-filter: unset;
  }

  .scrolled .header {
    background: #fff;
    backdrop-filter: unset;
  }

  .mobile-nav-toggle {
    color: #AA0E52;
    font-size: 55px;
    line-height: 0;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .bi-x::before {
    content: "\f479";
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: 0px solid color-mix(in srgb, #000, transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }


  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
    background: #EEA0C2;
  }

  .navmenu a:hover {
    color: #D51167;
    background: #FBE7F0;
  }

  .navmenu .logo-mobile a:hover,
  .navmenu .logo-mobile .active,
  .navmenu .logo-mobile .active:focus {
    color: #D51167;
    background: transparent;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    color: #444444;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 0 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: #fff;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #AA0E52;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

@media (max-width: 1024px) {

  .nav-item .nav-lang {
    padding-left: 15px;
  }

  .nav-item .nav-lang a{
    color: #1F1F1F;
    font-family: "Poppins", "IBM Plex Sans Thai", sans-serif;;
    font-weight: 600;
    font-size: 14px;
    padding: 0 0 0 5px;
  }

  .nav-item .nav-lang a.active{
    color: #D51067;
    font-weight: 600;
    text-decoration: underline;
  }

  .navmenu {
    order: 2;
    padding-left: 15px;
  }

  .mobile-nav-toggle {
    padding-left: 15px;
  }

  .mobile-nav-item {
    position: absolute;
    top: 20px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-item .nav-lang {
    display: block;
  }

  .mobile-nav-item {
    padding: unset;
  }

}

@media (max-width: 600px) {
  .mobile-nav-toggle {
    font-size: 40px;
  }

  .mobile-nav-active .mobile-nav-toggle {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background-color: #D51167;
  font-size: 14px;
  position: relative;
}

.footer .footer-logo {
  margin-bottom: 2.5rem;
}

.footer .footer-logo img {
  width: 200px;
}

.footer .footer-top {
  padding: 60px 15px 20px 40px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about h3 {
  color: #fff;
  font-size: 20px;
}

.footer .footer-about p {
  font-size: 12px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, #000, transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, #000, transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 12px;
  margin-bottom: 2rem;
}

.footer ul {
  list-style: none;
  padding-left: 0;
}

.footer ul li{
  margin-bottom: 1.5rem;
}

.footer ul li a{
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.footer a {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.footer p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.footer h4{
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}

.footer h4 a{
  font-size: 20px;
  color: #fff;
  text-transform: capitalize;
}

.footer h4 a:hover {
  font-weight: 600 ;
}

.footer h4.poppins-extralight a:hover {
  font-weight: 400 ;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-contact p a{
  color: #fff;
}

.footer .copyright {
  padding: 20px 40px;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .copyright h4 {
  color: #EEA0C2;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 12px;
  font-weight: 200;
}

.footer .copyright a {
  color: #EEA0C2;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 12px;
  font-weight: 200;
  padding: 0 25px;
}

.footer .copyright h4 a{
  color: #EEA0C2;
}

.footer .social {
  width: 130px;
}

.footer .social img{
  margin-bottom: 1rem;
}

.footer-contact {
  margin-bottom: 1.5rem;
}

.footer .footer-links .pl-social{
  padding-left: 50px;
}

.pl-footer-desktop {
  padding-left: 100px !important;
}

.footer .mb-address {
  margin-bottom: 1.5rem;
}

@media (max-width: 2240px) {
  .footer .footer-links .pl-social{
    padding-left: 55px;
  }
}

@media (max-width: 1368px) {
  .footer .footer-links .pl-social{
    padding-left: 40px;
  }

  .footer .social img{
    width: 35px;
  }

  .pl-footer-desktop {
    padding-left: 85px !important;
  }
}

@media (max-width: 1280px) {
  .footer .footer-links .pl-social{
    padding-left: 35px;
  }

  .footer .social img{
    width: 30px;
  }
}

@media (max-width: 1024px) {
  .footer .footer-links .pl-social {
    padding-left: 15px;
  }

  .footer .social {
    width: 100%;
  }

  .pl-footer-desktop {
    padding-left: 15px !important;
  }
}

@media (max-width: 992px) {
  .footer .social {
    width: 80px;
  }

  .footer .copyright h4 {
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .footer .footer-links .pl-social{
    padding-left: 15px;
  }
  .footer .social {
    width: 100%;
  }

}

@media (max-width: 375px) {
  .footer .footer-logo {
    margin-bottom: 2rem;
  }

  .footer .footer-about h3 {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #1F1F1F;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #1F1F1F;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: #000;
  background-color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, #ffffff, transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, #000, transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: #1F1F1F;
  background-color: #ffffff;
  padding: 100px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

.btn-white {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Poppins", "IBM Plex Sans Thai", sans-serif;
  font-weight: 400;
}

.btn-white:hover {
  background: #fff;
  color: #000;
}

.btn-dark {
  background: transparent;
  color: #1F1F1F;
  border: 1px solid #1F1F1F;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Poppins", "IBM Plex Sans Thai", sans-serif;
  font-weight: 400;
}

.btn-dark:hover {
  background: #1F1F1F;
  color: #ffffff;
}

.btn-blue {
  background: #1F1F1F;
  color: #fff;
  border: 1px solid #1F1F1F;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Poppins", "IBM Plex Sans Thai", sans-serif;
  font-weight: 400;
}

.btn-blue:hover {
  border: 1px solid #1F1F1F;
  background: #fff;
  color: #1F1F1F;
}

.btn-dense-dark {
  background: #1F1F1F;
  color: #fff;
  border: 1px solid #1F1F1F;
  font-size: 12px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  transition: 0.3s;
  text-transform: uppercase;
  font-family: "Poppins", "IBM Plex Sans Thai", sans-serif;
  font-weight: 400;
}

.btn-dense-dark:hover {
  border: 1px solid #1F1F1F;
  background: #fff;
  color: #1F1F1F;
}

.hover-zoom {
  overflow: hidden;
}

.hover-zoom img{
  transition: transform .5s ease;
}

.hover-zoom:hover img{
  transform: scale(1.2);
}


.more {
  margin-top: 3rem;
}

.more span {
  color: #1F1F1F;
  opacity: .35;
  font-family: "Poppins", "IBM Plex Sans Thai", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  cursor: pointer;
}

.more span svg{
 width: 14px;
 margin-left: 5px;
}

.more span:hover {
  opacity: 1;
}

ul.navigator {
  display: flex;
  list-style: none;
  font-family: "Poppins", "IBM Plex Sans Thai", sans-serif;
  font-weight: 400;
  font-size: 12px;
  justify-content: center;
  margin-bottom: 5rem;
}

ul.navigator li a, ul.navigator li{
  color: #ADADAD;
}

ul.navigator li{
  padding: 0 10px;
}

ul.navigator li.active a{
  color: #1F1F1F;
  text-transform: uppercase;
}

@media (max-width: 1368px) {
  .btn-dark {
    padding: 10px 20px;
  }
}

@media (max-width: 1280px) {
  section, .section {
      padding: 80px 0;
  }
}


@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }

}

@media (max-width: 540px) {

  .footer .footer-links {
    margin-top: 20px;
  }

}

@media (max-width: 414px) {
  ul.navigator {
    font-size: 10px;
    margin-bottom: 3rem;
    padding-left: 0;
  }

  .btn-dark, .btn-blue, .btn-white  {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, #000, transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-center-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.text-center-content h2 {
  font-size: 40px;
  color: #fff;
  line-height: 1.5;
}

.text-center-content p {
  color: #fff;
  font-size: 16px;
}

.text-center-content .btn {
  margin-top: 1rem;
}

.text-end-content h2 {
  font-size: 30px;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.text-end-content h3 {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}

.text-end-content p {
  color: #fff;
  font-size: 14px;
}

.text-end-content .btn {
  margin-top: 1rem;
}

.text-start-content h2 {
  font-size: 30px;
  color: #1F1F1F;
  line-height: 1.5;
  margin-top: 1rem;
}

.text-start-content p {
  color: #1F1F1F;
  font-size: 14px;
}

.text-start-content .btn {
  margin-top: 4rem;
}

.content .text h2 {
  font-size: 40px;
  font-weight: 600;
  color: #DB1556;
  margin-bottom: 1rem;
}

.content .text h3 {
  font-size: 20px;
  font-weight: 300;
  width: 70%;
  margin: 0 auto;
}

.content .text-news h3 {
   width: 100%;
}

.content .text .mb-content {
  margin-bottom: 3rem;
}


@media (max-width: 1368px) {
  .text-start-content .btn {
    margin-top: 2rem;
  }

  .content .text h2 {
    font-size: 35px;
  }

  .content .text h3 {
    font-size: 20px;
  }
}

@media (max-width: 1280px) {
  .text-center-content h2 {
    font-size: 35px;
  }

  .text-end-content p {
    font-size: 12px;
  }

  .text-start-content p {
    font-size: 12px;
  }

  .text-center-content p {
    font-size: 14px;
  }

  .text-end-content h2 {
    font-size: 25px;
  }

  .text-start-content h2 {
    font-size: 25px;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .section-title p {
    font-size: 24px;
  }

  .text-center-content h2 {
    font-size: 30px;
  }

}

@media (max-width: 600px) {
  .text-center-content {
    width: 550px;
  }

  .text-start-content .btn {
    margin-top: .5rem;
    margin-bottom: 1.5rem;
  }

}

@media (max-width: 540px) {
  .text-center-content {
    width: 500px;
  }
}

@media (max-width: 480px) {
  .text-center-content {
    width: 440px;
  }
}

@media (max-width: 448px) {
  .text-center-content {
    width: 400px;
  }
}

@media (max-width: 414px) {
  .text-center-content {
    width: 390px;
  }

}

@media (max-width: 375px) {
  .text-center-content h2 {
    font-size: 25px;
  }

  .text-end-content h2 {
    font-size: 20px;
  }

  .text-start-content h2 {
    font-size: 20px;
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero::after {
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    background: #fff;
    background: linear-gradient(180deg, rgb(255 255 255 / 0%) 30%, rgb(255 255 255) 100%);
    height: 200px;
    width: 100%;
}

.hero video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;

}

.hero img {
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero p {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 25px;
  font-weight: 200;
}

.hero .mt-btn {
  margin-top: 3rem;
}

.filter-banner {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  background: #d5106742;
  height: 100%;
  width: 100%;
}

.banner-desktop {
  display: block !important;
}

.banner-tablet {
  display: none !important;
}

.banner-mobile {
  display: none !important;
}

@media (max-width: 1536px) {
  .hero p {
    font-size: 25px;
  }
}

@media (max-width: 1504px) {
  .hero h1 {
      font-size: 50px;
  }
}

@media (max-width: 1368px) {
  .hero h1 {
    font-size: 35px;
  }
}

@media (max-width: 1440px) {
  .hero p {
    font-size: 20px;
  }
}

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

  .hero p {
    font-size: 18px;
  }

  .hero h1 {
    font-size: 30px;
  }

}

@media (max-width: 480px) {
  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  .hero h1 {
    font-size: 25px;
  }

  .hero p {
    font-size: 14px;
  }
}

.artile-box .item-box {
  position: relative;
  padding: 0 20px;
  border-radius: 30px;
}

.artile-box .item-box::before {
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, #D51067 20%, rgba(213, 16, 101, 0) 50%);
    height: 100%;
    width: 91%;
    border-radius: 0 0 30px 30px;
    transition: .5s ease;
    border-radius: 30px;
}

.artile-box .item-box .cover-image{
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 30px;
}

.artile-box .item-box .icon-article{
  position: absolute;
  top: 40px;
  left: 60px;
  width: 65px;
}

.artile-box .item-box .article-text {
  width: 91%;
  z-index: 99;
  position: absolute;
  top: 65%;
  bottom: 30px;
  padding: 0 40px;
  transition: .5s ease;
  border-radius: 30px;
}

.artile-box .item-box .article-text h4 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
}

.artile-box .item-box .article-text p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

.artile-box .item-box:hover::before {
    background: #D51067;
}

.artile-box .item-box:hover .article-text {
  top: 130px;
  bottom: 30px;
}

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

.line-clamp {
  display: -webkit-box;
  max-width: 94%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artile-box .item-box:hover .line-clamp {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 20;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.artile-box2 .item-box {
  position: relative;
  padding: 0 15px;
  border-radius: 30px;
}

.artile-box2 .item-box::after {
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    background: #D51067;
    height: 115px;
    width: 98%;
    transition: .5s ease;
    border-radius: 0 0 30px 30px;
}

.artile-box2 .item-box:hover::after {
  background: #D51067;
  height: 100%;
  border-radius: 30px;
}

.artile-box2 .item-box:hover .article-text {
  top: 40px;
  bottom: 30px;
}

.artile-box2 .item-box .cover-image{
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px;
}

.artile-box2 .item-box .icon-article{
  position: absolute;
  top: 40px;
  left: 60px;
  width: 65px;
}

.artile-box2 .item-box .article-text {
  display: -webkit-box;
  width: 97%;
  z-index: 99;
  position: absolute;
  top: 83%;
  bottom: 15px;
  transition: .5s ease;
  padding: 0 40px;
}

.artile-box2 .item-box:hover .article-text {
  top: 20px;
  bottom: 15px;
}

.artile-box2 .item-box .article-text h4 {
  font-size: 30px;
  font-weight: 500;
  color: #fff;
  margin-right: 1rem;
}

.artile-box2 .item-box .article-text p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  transition: .5s ease;
  max-width: 75% !important;
}

.artile-box2 .item-box:hover .article-text p {
  font-size: 20px;
}

.oem-box {
  position: relative;
  margin-bottom: 3rem;
}

.oem-box .banner-oem::before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  background: #d510654a;
  height: 100%;
  width: 100%;
  border-radius: 30px;
}

.oem-box .banner-oem img {
  width: 100%;
  border-radius: 30px;
}

.oem-box .text-oem {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.oem-box .text-oem h4 {
  font-size: 130px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2rem;
}

.oem-box .text-oem p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 2rem;
}

.artile-box4 .item-box {
  padding: 0 20px;
}

.artile-box4 .item-box .article-image {
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  overflow: hidden;
  border-radius: 30px;
  height: 415px;
  margin-bottom: 2rem;
}

.artile-box4 .item-box .article-image .cover-image {
  width: 100%;
  height: 415px;
  object-fit: cover;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform .5s;
}

.artile-box4 .item-box .article-image .icon-article {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 65px;
}

.artile-box4 .item-box .article-text h4 {
  font-size: 23px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.artile-box4 .item-box .article-text p {
  font-size: 14px;
  font-weight: 400;
  color: #D51067;
}

.artile-box4 .item-box:hover .article-image .cover-image {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.product-btn {
  text-align: center;
  margin-top: 5rem;
}

.content .text-worldwide h2 {
  font-size: 35px;
  font-weight: 300;
  color: #F7CFE1;
  margin-bottom: 1.5rem;
}

.content .text-worldwide h3 {
  font-size: 180px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.content .text-worldwide h4 {
  font-size: 35px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12rem;
}

.map .image-section6 {
  width: 100%;
}

.map {
  position: relative;
}

.map .location {
  position: absolute;
  text-align: center;
  transition: .5s ease;
  transform-origin: center bottom;
}

.map .location:hover {
  -webkit-transform: scale(1.1) !important;
  transform: scale(1.1) !important;
  transform-origin: center bottom;
}

.map .location h5 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

.map .location h5.pink {
  color: #AA0E52;
}

.map .location.usa-and-canada {
  top: 0%;
  left: 12%;
}

.map .location.usa-and-canada h5 {
  width: 160px;
}

.map .location .icon-pointer {
  width: 160px;
}

.map .location.italy {
  top: -10%;
  left: 35%;
}

.map .location.italy h5 {
  width: 220px;
}

.map .location.japan {
  top: -8%;
  left: 61%;
}

.map .location.japan h5 {
  width: 320px;
}

.map .location.chile {
    top: 50%;
    left: 13%;
}

.map .location.chile h5 {
  width: 200px;
}

.map .location.uae {
    top: 70%;
    left: 33%;
}

.map .location.uae h5 {
  width: 250px;
}

.map .location.bangladesh {
  top: 40%;
  left: 48%;
}

.map .location.bangladesh h5 {
  width: 200px;
}

.map .location.indonesia {
    top: 50%;
    left: 65%;
}

.map .location.indonesia h5 {
  width: 250px;
}

.map .location.australia {
    top: 50%;
    left: 85%;
}

.map .location.australia h5 {
  width: 200px;
}

.border-top-bottom {
  border-top: 1px solid #8E8E8E;
  border-bottom: 1px solid #8E8E8E;
}

.content .text-sub {
  padding: 40px 0;
}

.content .text-sub h2 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 0;
}

.content .text-sub h2 span {
  color: #D51067;
}

.content .text-sub p {
  font-size: 14px;
  font-weight: 300;
  color: #8E8E8E;
  margin-bottom: 0;
}

.certificate .item{
  padding: 0 35px;
}

.certificate .item img{
  width: 100%;
  border-radius: 20px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 1.5rem;
}

.certificate .item .item-text {
  text-align: center;
}

.certificate .item .item-text h4{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.certificate .item .item-text p{
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.content .text-news h2, .content .text-news h3, .content .text-news p {
  margin-bottom: 3rem;
}

.content .text-news {
  padding-right: 2rem;
}

.news .item h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.content .text-news p, .news .item p {
  font-size: 14px;
  color: #8E8E8E;
}

.news-pr {
  margin-left: 8rem;
}

.news .item {
  padding: 0 20px;
}

.news .item .item-image {
  position: relative;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  overflow: hidden;
  margin-bottom: 2.5rem;
  border-radius: 30px;
}

.news .item .item-image img{
  height: 450px;
  object-fit: cover;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform .5s;
}

.news .item:hover .item-image img {
  -webkit-transform: scale(1.06);
  transform: scale(1.06);
}

.news .item .item-image::before {
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    background: linear-gradient(0deg, #D51067 0%, rgba(213, 16, 101, 0) 100%);
    height: 275px;
    width: 100%;
    border-radius: 0 0 30px 30px;
    z-index: 9;
}

.content .content-calendar {
  background: #FBE7F0;
  border-radius: 30px;
  padding: 80px 130px;
}

.content .content-calendar .text-calendar h2 {
  font-size: 14px;
  font-weight: 300;
  color: #D51067;
  margin-bottom: 2rem;
}

.content .content-calendar .text-calendar h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 2rem;
}

.content .about-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 30px;
}

.content .text-about {
  padding-left: 3rem;
}

.content .text-about h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 3rem;
}

.content .text-about p {
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.content .text-clip h2 {
  font-size: 45px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 2rem;
}

.content .text-clip p {
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.content .production-image {
  width: 100%;
  border-radius: 60px;
  border: 35px solid #fff;
}

.content .brochure img {
  width: 100%;
}

.content .brochure .text h2 {
  font-size: 45px;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 1.5rem;
}

.content .brochure .text p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.product-item p, .product-item a {
  font-size: 20px;
  color: #D51067;
  margin-bottom: 4rem;
}

.product-item {
  margin-bottom: 3rem;
}

.product-item a span{
  border-bottom: 1px solid #D51067;
}

.product-slide .item .item-image img {
  width: 100%;
}

.product-slide .item .item-text {
  text-align: center;
  padding: 0 20px 20px 20px;
  position: relative;
  z-index: 99;
}

.product-slide .item .item-text h4 {
  font-size: 25px;
  font-weight: 600;
}

.pakage .item-image img {
  width: 100%;
}

.pakage .item-text {
  text-align: center;
  margin-bottom: 3rem;
}

.pakage .item-text h4{
  font-size: 25px;
  font-weight: 600;
}

.pakage .item-text p{
  font-size: 13px;
  font-weight: 400;
}

.content .moochie {
  position: relative;
}

.content .moochie img {
  width: 100%;
}

.content .moochie .btn-yellow {
  font-size: 35px;
  font-weight: 500;
  padding: 10px 40px;
  position: absolute;
  left: 50%;
  bottom: -12%;
  transform: translate(-50%, -50%);
}

.content .content-form {
  background: #FBE7F0;
  border-radius: 30px;
  padding: 80px 130px;
}

.content .content-form .btn-contact {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background: #D51167;
  padding: 8px 32px;
  border-radius: 5px;
}

.content .content-form .btn-contact::before {
  border-radius: 5px;
}

.form-contact {
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 1rem;
}

.form-contact::placeholder {
  color: #000;
  font-size: 14px;
}

.content-form h2 {
  font-size: 14px;
  font-weight: 400;
  color: #D51067;
  margin-bottom: 1.5rem;
}

.content-form h3 {
  font-size: 30px;
  font-weight: 600;
}

.content-form p {
  position: absolute;
  bottom: 0;
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 0;
}

.produt-type {
  background: #FBE7F0;
  border-radius: 30px;
  position: relative;
  height: 400px;
  margin-top: 5rem;
}

.produt-type .pet-image {
  width: 425px;
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  transition: .5s ease;
}

.produt-type:hover .pet-image {
  width: 450px;
  top: -33%;
}

.produt-type .broccoli-1 {
  width: 350px;
  position: absolute;
  top: -2%;
  left: -4%;
}

.produt-type .broccoli-2 {
  width: 350px;
  position: absolute;
  top: -23%;
  left: 50%;
}

.produt-type .calamari-2 {
  width: 220px;
  position: absolute;
  top: 15%;
  left: 2%; 
}

.produt-type .calamari-1 {
  width: 190px;
  position: absolute;
  top: -15%;
  left: 60%;
}

.produt-type .text {
  width: 100%;
  height: 100px;
  position: absolute;
  bottom: 0;
  background: #D51067;
  border-radius: 0 0 30px 30px;
}

.produt-type .text h3 {
  text-align: center;
  font-size: 40px;
  color: #fff;
  font-weight: 500;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.brochure-type .left-image {
  width: 90%;
  height: 450px;
  object-fit: cover;
  border-radius: 30px;
}

.content .brochure-type .text h2 {
  font-size: 35px;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 2rem;
}

.content .brochure-type .text p {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 2rem;
}

.content .menu-type-article ul{
  list-style: none;
  padding-left: 0;
}

.content .menu-type-article ul li {
  margin: 0 1.5rem;
  font-size: 20px;
  font-weight: 400;
  color: #8E8E8E;
}

.content .menu-type-article ul li.active a{
  font-weight: 600;
  color: #D51167;
}

.content .archive ul {
  list-style: none;
  justify-content: end;
}

.content .archive ul li {
  font-size: 20px;
  margin-left: 3rem;
  margin-top: auto;
  margin-bottom: auto;
  font-weight: 600;
  color: #000;
}

.content .blogs {
  margin-top: 4rem;
}

.content .blogs .blogs-image {
  position: relative;
  transform: scale(1);
  margin-bottom: 1.5rem;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 20px;
}

.content .blogs .blogs-image .cover-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transform-style: preserve-3d;
  transition: transform .5s;
}

.content .blogs .blog-item:hover .blogs-image .cover-image {
  transform: scale(1.06);
}

.content .blogs .blogs-text {
  margin-bottom: 3rem;
}

.content .blogs .blogs-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.content .blogs .blogs-text p {
  font-size: 14px;
  font-weight: 400;
}

.default ul.pagination li {
  margin: 0 10px;
}

.default ul.pagination li a {
  font-size: 20px;
  font-weight: 600;
  color: #8E8E8E;
}

.default ul.pagination li.active span{
  font-size: 20px;
  font-weight: 600;
  color: #D51167;
}

.content .article-navigator {
  display: flex;
  margin: 3rem 0;
}

.content .article-navigator h2, .content .article-navigator a {
  font-size: 20px;
  font-weight: 300;
  color: #D51167;
}

.content .article-navigator h2 {
  margin-right: 1rem;
}

.content .text-title h1 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 4rem;
}

.content .date {
  margin-bottom: 2.5rem;
  font-size: 18px;
  color: #8E8E8E;
}

.content .image .cover-image {
  width: 100%;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.content .detail {
  margin-bottom: 3rem;
}

.content .share {
  margin-bottom: 3rem;
  font-size: 18px;
  font-weight: 500;
  color: #D51167;
}

.content .blogs .news-image {
  position: relative;
  transform: scale(1);
  margin-bottom: 1.5rem;
  transition: 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 30px;
}

.content .blogs .news-image .cover-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 26px;
  transform-style: preserve-3d;
  transition: transform .5s;
}

.content .blogs .blog-item:hover .news-image .cover-image {
  transform: scale(1.06);
}

.content .blogs .news-image::after {
    content: " ";
    display: block;
    position: absolute;
    bottom: 0;
    height: 275px;
    width: 100%;
    background: linear-gradient(0deg, rgb(213, 16, 103) 0%, rgba(213, 16, 101, 0) 100%);
    border-radius: 0px 0px 30px 30px;
}

.content .blogs .news-text {
  margin-bottom: 3rem;
}

.content .blogs .news-text h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}

.content .blogs .news-text p {
  font-size: 14px;
  font-weight: 400;
  color: #8E8E8E;
}

.content .map h2 {
  font-size: 35px;
  font-weight: 600;
  color: #D51167;
  margin-bottom: 2rem;
}

.content .map .iframe-map iframe{
  height: 350px;
  width: 100%;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.content .map .address {
  font-size: 20px;
  font-weight: 400;
  color: #000;
}

.content .policy-detail {
  margin-top: 3rem;
}

.pt-policy {
  padding-top: 10rem;
}

.content .policy-detail h4{
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content .policy-detail p{
  font-size: 14px;
  font-weight: 400;
}

.logo-desktop {
  display: block;
}

.logo-desktop-auto {
  display: flex;
}

.logo-mobile {
  display: none;
}

.slide-desktop {
  display: block;
}

.slide-moblie {
  display: none;
}

.product-item .product-slide .item {
  position: relative;
}

.product-item .product-slide .item:hover::before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  height: 200px;
  width: 100%;
  background: linear-gradient(0deg, rgb(213 16 103 / 43%) 0%, rgba(213, 16, 101, 0) 100%);
  border-radius: 0px 0px 30px 30px;
}

.brochure {
  height: 650px;
}

.brochure .section3-image {
  position: absolute;
  bottom: -35%;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 0;
}


.accordion-button:not(.collapsed) {
    box-shadow: unset;
}

.accordion-button:focus {
    box-shadow: unset;
}

.accordion-button {
    font-size: 35px !important;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 25px 50px;
    font-size: 1rem;
    color: #000000;
    text-align: left;
    background-color: #EEEEEE;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

.accordion-item {
    border: 0;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: #EEEEEE;
    box-shadow: unset;
}

.accordion-body {
    padding: 20px 50px;
}

.accordion-body.protein {
  background: linear-gradient(0deg, rgb(213, 16, 101) 0%, rgba(213, 16, 101, 0) 100%), url('../img/product/bg/shutterstock_684710068.jpg');
  background-position: center;
  background-size: cover;
}

.accordion-body.carbs {
  background: linear-gradient(0deg, rgb(213, 16, 101) 0%, rgba(213, 16, 101, 0) 100%), url('../img/product/bg/shutterstock_1691944714.jpg');
  background-position: center;
  background-size: cover;
}

.accordion-body.vegetables {
  background: linear-gradient(0deg, rgb(213, 16, 101) 0%, rgba(213, 16, 101, 0) 100%), url('../img/product/bg/shutterstock_2555677601.jpg');
  background-position: center;
  background-size: cover;
}

.accordion-body.supplements {
  background: linear-gradient(0deg, rgb(213, 16, 101) 0%, rgba(213, 16, 101, 0) 100%), url('../img/product/bg/shutterstock_2498644205.jpg');
  background-position: center;
  background-size: cover;
}


#collapseFour .accordion-body {
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

.share-icon {
  width: 30px;
  margin-right: 5px;
}

.ingredient-item {
  text-align: center;
  background-color: #EEEEEE;
  padding: 20px 40px;
  border-radius: 15px;
  margin: 10px;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 10px;
  font-size: 14px;
  color: #000;
}

.content .error {
  height: 85vh;
  position: relative;
}

.content .error .text-error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.content .error .text-error h1 {
  font-size: 50px;
  font-weight: 600;
  color: #000;
}

.content .error .text-error h1 span{
  color: #D51067;
}

.content .error .text-error h2 {
  font-size: 35px;
  font-weight: 600;
  color: #000;
  margin-bottom: 2rem;
}

.icon-image {
  width: 25px;
  margin-right: 15px;
}
@media (max-width: 2560px) {
  .map .location .icon-pointer {
      width: 120px;
  }
}

@media (max-width: 2240px) {
  .pink-white-bg {
      background: #AA0E52;
      background: linear-gradient(to bottom, #AA0E52 70%, #fff 50%);
  }

  .map .location.usa-and-canada {
    top: -5%;
    left: 12%;
  }

  .map .location.italy {
    top: -20%;
    left: 32%;
  }

  .map .location.japan {
    top: -17%;
    left: 58%;
  }

  .map .location.australia {
    top: 41%;
    left: 82%;
  }

  .map .location.indonesia {
    top: 50%;
    left: 63%;
  }

  .map .location.bangladesh {
    top: 20%;
    left: 45%;
  }

  .map .location.uae {
    top: 53%;
    left: 33%;
  }
}

@media (max-width: 2048px) {
    .map .location .icon-pointer {
        width: 100px;
    }
}

@media (max-width: 1664px) {
    .map .location.italy {
        top: -24%;
        left: 29%;
    }
    .map .location.japan {
        top: -22%;
        left: 56%;
    }

    .map .location.chile {
        top: 50%;
        left: 10%;
    }

    .map .location.australia {
        top: 38%;
        left: 80%;
    }

    .map .location.uae {
        top: 53%;
        left: 30%;
    }
}

@media (max-width: 1620px) {
    .map .location .icon-pointer {
        width: 90px;
    }
}

@media (max-width: 1504px) {
    .map .location .icon-pointer {
        width: 75px;
    }

    .artile-box2 .item-box::after {
      width: 97.8%;
    }
}

@media (max-width: 1440px) {
  .map .location h5 {
      font-size: 18px;
      font-weight: 600;
      color: #fff;
      line-height: 1.5;
  }

  .content .brochure .text h2 {
    font-size: 40px;
  }

  .footer .footer-top {
    padding: 60px 15px 20px 35px;
  }

  .news .item .item-image img {
    height: 400px;
  }
}

@media (max-width: 1368px) {
  .artile-box .item-box .article-text h4 {
    font-size: 25px;
  }

  .artile-box .item-box::before {
    width: 89.5%;
  }

  .artile-box2 .item-box .article-text h4 {
    font-size: 25px;
  }

  .artile-box4 .item-box .article-text h4 {
    font-size: 20px;
  }

  .content .text-worldwide h3 {
    font-size: 150px;
    margin-bottom: 2rem;
  }

  .content .text-worldwide h2 {
    font-size: 30px;
    margin-bottom: 1rem;
  }

  .content .text-worldwide h4 {
    font-size: 30px;
    margin-bottom: 10rem;
  }

  .map .location h5 {
    font-size: 16px;
  }

  .map .location.japan h5 {
    width: 260px;
  }

  .certificate .item .item-text h4 {
    font-size: 25px;
  }

  .certificate .item .item-text h4 {
    font-size: 25px;
  }

  .produt-type .text h3 {
    font-size: 35px;
  }

  .accordion-button {
    font-size: 30px !important;
  }

  .artile-box2 .item-box::after {
    width: 97.4%;
  }

  .footer .footer-top {
    padding: 60px 20px 20px 35px;
  }
}

@media (max-width: 1280px) {
  .artile-box .item-box .cover-image {
      height: 450px;
  }

  .artile-box .item-box .icon-article {
    top: 30px;
    left: 50px;
    width: 50px;
  }

  .artile-box .item-box:hover .article-text {
    top: 90px;
    bottom: 30px;
  }

  .artile-box2 .item-box::after {
    width: 98.2%;
  }

  .artile-box2 .item-box:hover .article-text p {
    font-size: 16px;
  }

  .artile-box4 .item-box .article-image .cover-image {
    height: 350px;
  }

  .artile-box4 .item-box .article-image .icon-article {
    width: 55px;
  }

  .artile-box4 .item-box .article-image {
    height: 350px;
  }

  .artile-box4 .item-box .article-text h4 {
    margin-bottom: 1rem;
  }

  .product-btn {
    margin-top: 3rem;
  }

  .map .location.chile {
    top: 50%;
    left: 8%;
  }

  .news-pr {
    margin-left: 4rem;
  }

  .news .item h4 {
    font-size: 25px;
  }

  .content .content-calendar .text-calendar h3 {
    font-size: 25px;
  }

  .artile-box2 .item-box  {
    padding: 0 11px;
  }

  .footer .footer-top {
    padding: 60px 30px 20px 35px;
  }

  .news .item .item-image img {
    height: 370px;
  }

}

@media (max-width: 1199px) {
  .logo-desktop {
    display: none;
  }

  .logo-desktop-auto {
    display: none;
  }

  .logo-mobile {
    display: block;
  }

}

@media (max-width: 1024px) {

  .artile-box .item-box::before {
    width: 88%;
  }

  .artile-box .item-box .article-text h4 {
    font-size: 20px;
  }

  .map .location.usa-and-canada {
    top: -10%;
    left: 8%;
  }

  .map .location.italy {
    top: -24%;
    left: 26%;
  }

  .map .location.japan {
    top: -26%;
    left: 54%;
  }

  .map .location.chile {
    top: 40%;
    left: 3%;
  }

  .map .location.uae h5 {
    width: 200px;
  }

  .map .location.uae {
    top: 45%;
    left: 28%;
  }

  .map .location.bangladesh {
    top: 15%;
    left: 40%;
  }

  .map .location.indonesia {
    top: 30%;
    left: 58%;
  }

  .map .location.australia {
    top: 40%;
    left: 77%;
  }

  .content .text-sub h2 {
    font-size: 40px;
  }

  .brochure .section3-image {
    position: absolute;
    bottom: -20%;
  }

  .artile-box2 .item-box::after {
    width: 97.8%;
  }

  .footer .footer-top {
    padding: 60px 50px 20px 25px;
  }

  .news .item .item-image img {
    height: 300px;
  }

}

@media (max-width: 884px) {
  .slide-desktop {
    display: none;
  }

  .slide-moblie {
    display: block;
  }

  .artile-mb {
    padding-left: 70px;
    padding-right: 0;
  }

  .artile-box .item-box::before {
    width: 100%;
  }

  .artile-box2 .item-box {
    padding: 0 11px;
  }

  .artile-box2 .item-box::after {
    width: 97%;
  }

  .artile-box2 .item-box .article-text h4 {
    text-align: center;
  }

  .artile-box4 .item-box {
    padding: 0;
  }

  .content .text-worldwide h3 {
    font-size: 100px;
  }

  .content .text-worldwide h4 {
    font-size: 30px;
  }

  .content .text-worldwide h2 {
    font-size: 25px;
  }

  .map .location .icon-pointer {
    width: 60px;
  }

  .map .location h5 {
    font-size: 14px;
    font-weight: 400;
  }

  .map .location.italy h5 {
    width: 180px;
  }

  .map .location.japan h5 {
    width: 240px;
  }

  .map .location.indonesia h5 {
    width: 200px;
  }

  .map .location.uae h5 {
    width: 150px;
  }

  .content .text-sub p {
    font-size: 20px;
  }

  .certificate .item .item-text h4 {
    margin-bottom: 1rem;
  }

  .content .text-news p {
    font-size: 20px;
  }

  .news .item {
    padding: 0;
  }

  .content .content-calendar {
    padding: 80px 50px;
  }

  .certificate .item {
    padding: 0;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 25px;
  }

  .content .text-about {
    padding-left: 0;
  }

  .content .production-image {
    border: 20px solid #fff;
  }

  .mb-mbsize {
    margin-bottom: 5rem;
  }

  .brochure {
    height: unset;
  }

  .content .brochure img {
    width: 100%;
    margin-bottom: 2rem;
  }

  .brochure .section3-image {
    position: unset;
  }

  .pb-text-product {
    padding-bottom: 100px;
  }

  .content .moochie .btn-yellow {
    font-size: 25px;
    bottom: -17%;
  }

  .brochure-type .left-image {
    width: 100%;
  }

  .content .blogs {
    margin-top: 1rem;
  }

  .footer .footer-top {
    padding: 60px 25px 20px 25px;
  }

  .brochure-type .btn-yellow {
    text-align: center;
    display: block;
    width: 100%;
  }

  .news .item .item-image img {
    height: 400px;
  }

  .footer .copyright {
    padding: 20px;
  }

}

@media (max-width: 820px) {
    section, .section {
        padding: 65px 0;
    }

    .oem-box .text-oem h4 {
      font-size: 95px;
    }

    .artile-box2 .item-box .article-text h4 {
        font-size: 20px;
    }

  .pakage .item-text h4 {
    font-size: 20px;
  }

  .news .item .item-image img {
    height: 370px;
  }
}

@media (max-width: 600px) {
  .artile-mb {
    padding-left: 50px;
  }

  .artile-box .item-box .article-text h4 {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .oem-box .text-oem {
    width: 90%;
  }

  .oem-box .text-oem h4 {
    font-size: 70px;
    margin-bottom: 1rem;
  }

  .artile-box4 .item-box .article-image .cover-image {
    height: 200px;
  }

  .artile-box4 .item-box .article-image {
    height: 200px;
  }

  .artile-box4 .item-box .article-image .icon-article {
    width: 45px;
  }

  .content .text-worldwide h3 {
    font-size: 80px;
    margin-bottom: 1rem;
  }

  .content .text-worldwide h2 {
    font-size: 20px;
  }

  .content .text-worldwide h4 {
    font-size: 20px;
    margin-bottom: 5rem;
  }

  .map .location h5 {
    font-size: 10px;
  }

  .map .location.usa-and-canada h5 {
    width: 70px;
  }

  .map .location.italy h5 {
    width: 105px;
  }

  .map .location.japan h5 {
    width: 170px;
  }

  .map .location.chile h5 {
    width: 100px;
  }

  .map .location.chile h5 {
    width: 100px;
  }

  .map .location.bangladesh h5 {
    width: 100px;
  }

  .map .location.indonesia h5 {
    width: 150px;
  }

  .map .location.australia h5 {
    width: 80px;
  }

  .map .location .icon-pointer {
    width: 45px;
  }

  .map .location.usa-and-canada {
    top: -20%;
    left: 11%;
  }

  .map .location.usa-and-canada {
    top: -20%;
    left: 11%;
  }

  .map .location.usa-and-canada {
    top: -20%;
    left: 11%;
  }

  .map .location.bangladesh {
    top: 13%;
    left: 43%;
  }

  .map .location.australia {
    top: 40%;
    left: 80%;
  }

  .footer h4 {
    margin-bottom: 1rem;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    font-size: 20px;
  }

  .content .text h2 {
    font-size: 30px;
  }

  .content .text h3 {
    font-size: 14px;
    width: 100%;
  }

  .content .text.mb-content {
    margin-bottom: 3rem;
  }

  .content .text.mb-content {
      margin-bottom: 3rem;
  }

  .oem-box .text-oem h4 {
    font-size: 60px;
  }

  .artile-box .item-box .article-text {
    width: 100%;
  }

  .content .content-calendar {
    padding: 30px;
  }

  .oem-box .banner-oem img {
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
  }

  .oem-box .text-oem p {
    font-size: 10px;
  }

  .content .text-about p {
    margin-bottom: 1rem;
  }

  .content .text-clip p {
    width: 100%;
  }

  .oem-box .banner-oem::before {
    border-radius: 15px;
  }

  .content .about-image {
    height: 300px;
    border-radius: 15px;
  }

  .pakage .item-text h4 {
    font-size: 14px;
  }

  .pakage .item-text p {
    font-size: 10px;
  }


  .content .moochie .btn-yellow {
    font-size: 20px;
    width: max-content;
    bottom: -20%;
  }

  .content .menu-type-article ul li {
    margin: 0 1rem;
    font-size: 18px;
  }

  .accordion-button {
    font-size: 25px !important;
  }

  .artile-box .item-box .article-text p {
    font-size: 10px;
  }

  .artile-box .item-box .cover-image {
    height: 320px;
    border-radius: 15px;
  }

  .artile-box .item-box::before {
    border-radius: 15px;
  }

  .artile-box4 .item-box .article-image {
    border-radius: 15px;
  }

  .artile-box2 .item-box .cover-image {
    height: 250px;
    border-radius: 15px;
  }

  .artile-box2 .item-box::after {
    height: 70px;
  }

  .artile-box2 .item-box .article-text {
    top: 77%;
  }

  .artile-box2 .item-box .article-text p {
    font-size: 10px;
    margin-bottom: 0;
    -webkit-line-clamp: 3;
  }

  .artile-box2 .item-box::after {
    border-radius: 0 0 15px 15px;
  }

  .artile-box2 .item-box:hover .article-text p {
    font-size: 12px;
  }

  .artile-box2 .item-box:hover::after {
    border-radius: 15px;
  }

  .pakage .item-product:hover::before, .pakage .item-product.active::before {
    content: unset !important;
  }

  .content .blogs .news-image .cover-image {
    border-radius: 15px;
  }

  .content .blogs .news-image::after {
    border-radius: 0 0 15px 15px;
  }

  .content .blogs .blogs-image {
    border-radius: 15px;
  }

  .content .text-title h1 {
    font-size: 30px;
  }

  .artile-box2 .item-box::after {
    width: 96%;
  }

  .product-slide .item .item-text {
    padding: 0 15px 15px 15px;
  }

  .product-slide .item .item-text h4 {
    font-size: 16px;
  }

  .product-item .product-slide .item:hover::before {
    border-radius: 0 0 15px 15px;
  }

  .product-item .product-slide .item:hover::before {
    height: 100px;
  }

  .artile-box2 .item-box .article-text h4 {
    margin: auto 15px auto 0;
  }

  .artile-box2 .item-box .article-text p {
    max-width: 40% !important;
  }

  .news .item .item-image img {
    height: 250px;
  }

  .news .item .item-image::before {
    border-radius: 0 0 15px 15px;
  }

  .news .item .item-image {
    border-radius: 15px;
  }

  .content .text-about h2 {
    margin-bottom: 2rem;
  }

  .content .text-about p {
    margin-bottom: 1.5rem;
  }
  
}

@media (max-width: 540px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .artile-mb {
    padding-left: 20px;
  }

  .content .text-worldwide h3 {
    font-size: 70px;
    margin-bottom: 0;
  }

  .content .text-worldwide h2 {
    margin-bottom: 0;
  }

  .content .text-worldwide h4 {
    margin-bottom: 4rem;
  }

  .map .location.usa-and-canada h5 {
    width: 60px;
  }

  .map .location .icon-pointer {
    width: 30px;
  }

  .map .location.uae h5 {
    width: 105px;
  }

  .map .location.indonesia {
    top: 30%;
    left: 55%;
  }

  .content .text-sub p {
    font-size: 18px;
  }

  .news .item .item-image::before {
    height: 100px;
  }

  .news-pr {
    margin-left: 0;
  }

}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 35px;
  }

  .hero p {
    font-size: 18px;
  }

  .artile-box .item-box .article-text {
    bottom: 20px;
    padding: 0 30px;
  }

  .artile-box .item-box .icon-article {
    left: 25px;
  }

  .oem-box .text-oem h4 {
    font-size: 45px;
  }

  .oem-box .text-oem p {
    margin-bottom: 1rem;
  }

  .artile-box2 .item-box::after {
    width: 95.5%;
  }

  .artile-box2 .item-box .article-text {
    padding: 0 15px;
  }

  .product-btn {
    margin-top: 2rem;
  }

  .map .location h5 {
    font-size: 8px;
  }

  .map .location.indonesia h5 {
    width: 120px;
  }

  .map .location.uae {
    top: 45%;
    left: 22%;
  }

  .map .location.bangladesh {
    top: 13%;
    left: 40%;
  }

  .content .text-sub p {
    font-size: 16px;
  }

  .content .text-news p {
    font-size: 16px;
  }

  .news .item h4 {
    font-size: 20px;
  }

  .content .content-calendar .text-calendar h3 {
    font-size: 20px;
  }

  .content .text-about h2 {
    font-size: 28px;
  }

  .content .text-clip h2 {
    font-size: 35px;
  }

  .content .text-clip p {
    font-size: 16px;
  }

  .content .production-image {
    border-radius: 35px;
    border: 15px solid #fff;
  }

  .content .text-about p:last-child {
    margin-bottom: 0;
  }

  .produt-type .broccoli-1 {
    left: -27%;
  }

  .produt-type .broccoli-2 {
    left: 46%;
  }

  .produt-type .calamari-2 {
    left: -14%;
  }

  .content .brochure .text h2 {
    font-size: 35px;
  }
  
  .product-slide .item .item-text h4 {
    font-size: 16px;
  }

  .pakage .item-text h4 {
    font-size: 16px;
  }

  .content .moochie .btn-yellow {
    font-size: 16px;
  }

  .content .map h2 {
    font-size: 30px;
  }

  .content .map .address {
    font-size: 16px;
  }
}

@media (max-width: 448px) {
  section, .section {
    padding: 55px 0;
  }

  .content .text-worldwide h3 {
    font-size: 55px;
  }

  .content .text-worldwide h2 {
    font-size: 18px;
  }

  .content .text-worldwide h4 {
    font-size: 18px;
  }

  .content .text-sub h2 {
    font-size: 35px;
  }

  .artile-box2 .item-box:hover .article-text {
    display: block;
  }

  .artile-box2 .item-box:hover .article-text p.line-clamp {
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    overflow: unset;
  }

  .produt-type .pet-image {
    width: 350px;
    top: -12%;
  }

  .product-slide .item .item-text h4 {
    font-size: 14px;
  }

  .pakage .item-text h4 {
    font-size: 14px;
  }

  .artile-box2 .item-box::after {
    width: 95%;
  }
}

@media (max-width: 432px) {
  .certificate .item .item-text h4 {
    font-size: 20px;
  }

  .produt-type .broccoli-2 {
    top: -15%;
    left: 43%;
  }

  .produt-type .text {
    height: 70px;
  }

  .produt-type {
    height: 375px;
  }


  .produt-type .pet-image {
    top: -11%;
  }

  .product-item:last-child {
    margin-bottom: 0;
  }

  .product-item p, .product-item a {
    font-size: 16px;
  }

  .content .moochie .btn-yellow {
    bottom: -23%;
  }

  .content .brochure .text h2 {
    font-size: 30px;
  }

  .accordion-button {
    font-size: 20px !important;
  }

  .accordion-body p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .accordion-body {
    padding: 25px;
  }

  .accordion-button {
    padding: 25px;
  }

  .artile-box2 .item-box::after {
    width: 94.8%;
  }
} 

@media (max-width: 430px) {

  .content .text-clip h2 {
    font-size: 30px;
  }

  .content .text-clip h2 {
    font-size: 30px;
    margin-bottom: 1rem;
  }
} 

@media (max-width: 428px) {
  .artile-box2 .item-box::after {
    width: 94.7%;
  }
} 

@media (max-width: 414px) {
  .content .brochure .text p {
    font-size: 16px;
  }

  .content .moochie .btn-yellow {
    font-size: 14px;
  }

  .content .menu-type-article ul li {
    font-size: 14px;
  }

  .artile-box2 .item-box::after {
    width: 94.5%;
  }
}

@media (max-width: 400px) {
  .produt-type .broccoli-1 {
    left: -33%;
  }

  .produt-type .calamari-2 {
    left: -21%;
  }

  .content .moochie .btn-yellow {
    font-size: 12px;
  }

  .artile-box2 .item-box::after {
    width: 94.2%;
  }
}

@media (max-width: 393px) {
  .map .location.chile h5 {
    width: 70px;
  }

  .map .location.italy {
    top: -40%;
    left: 26%;
  }

  .map .location.japan h5 {
    width: 100px;
  }

  .map .location.japan {
    top: -50%;
    left: 54%;
  }

  .content .text-sub h2 {
    font-size: 30px;
  }

  .product-slide .item .item-text h4 {
    font-size: 12px;
  }

  .pakage .item-text h4 {
    font-size: 12px;
  }

  .pakage .item-text p {
    font-size: 10px;
    font-weight: 400;
  }

}

@media (max-width: 385px) {
  .content .content-calendar {
    padding: 15px;
  }

  .artile-box2 .item-box::after {
    width: 94%;
  }

  .content .text-sub p {
    font-size: 14px;
  }

  .certificate .item .item-text p {
    font-size: 12px;
    font-weight: 400;
  }

  .footer ul li {
    margin-bottom: .5rem;
  }

}

@media (max-width: 375px) {
  .artile-box2 .item-box .article-text h4 {
    font-size: 18px;
  }

  .content .text-worldwide h3 {
    font-size: 45px;
  }

  .map .location .icon-pointer {
    width: 25px;
  }

  .produt-type {
    height: 340px;
    margin-top: 3rem;
  }

  .content .brochure .text p {
    font-size: 14px;
  }

  .artile-box2 .item-box::after {
    width: 93.9%;
  }

}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 14px;
  }

  .content .text h2 {
    font-size: 16px;
  }

  .artile-box .item-box .icon-article {
    top: 15px;
    left: 15px;
    width: 35px;
  }

  .artile-box .item-box .article-text {
    bottom: 10px;
    padding: 0 15px;
  }

  .artile-box .item-box:hover .article-text {
    top: 60px;
    bottom: 30px;
  }

  .artile-box .item-box .cover-image {
    height: 400px;
  }

  .artile-box2 .item-box .article-text {
    padding: 0 10px;
  }

  .artile-box2 .item-box .article-text {
    width: 90%;
  }

  .artile-box4 .item-box .article-text h4 {
    font-size: 18px;
  }

  .content .content-calendar .text-calendar h3 {
    font-size: 18px;
  }

  .produt-type .broccoli-2 {
    left: 35%;
  }

  .produt-type .broccoli-1 {
    left: -42%;
  }

  .produt-type .broccoli-1 {
    left: -42%;
  }

  .content .moochie .btn-yellow {
    font-size: 10px;
  }

  .artile-box2 .item-box::after {
    width: 93.5%;
  }
}


