@import "fonts.css";
html {
  scroll-behavior: smooth;
}

:root {
  font-size: 10px;
  --panel-width: calc(100% / 6);
  --white: #fff;
  --lightgray: #fafafb;
}

@media (max-width: 1590px) {
  :root {
    font-size: 8px;
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

b,
strong {
  font-weight: 700;
}

a {
  display: inline-block;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  margin: 0;
}

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

img {
  display: block;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

/** Variables **/
/* == Colors == */
/* == Font Family == */
/* == Font Sizes == */
/** Buttons **/
.button__red__filled {
  position: relative;
  z-index: 1;
  padding: 1.25rem 4.5rem;
  background-color: #b31b27;
  border: 0.125rem solid #b31b27;
  font-size: 1.75rem;
  color: #fff;
  font-family: "avertastd_extrabold";
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.6s;
  overflow: hidden;
  cursor: pointer;
}
.button__red__filled span {
  position: relative;
  z-index: 2;
}
.button__red__filled::before,
.button__red__filled::after {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  background-color: #fff;
  transition: all 0.45s;
  content: "";
  z-index: 1;
}
.button__red__filled::before {
  top: 0;
  transform: translate(-100%, 0);
}
.button__red__filled::after {
  bottom: 0;
  transform: translate(100%, 0);
}
.button__red__filled:hover {
  color: #b31b27;
  background-color: #f7f7f7;
}
.button__red__filled:hover::before,
.button__red__filled:hover::after {
  transform: translate(0, 0);
}

.button_add_to_cart {
  position: relative;
  z-index: 1;
  padding: 8px 0px;
  width: 90px;
  background-color: #b31b27;
  border: 0.125rem solid #b31b27;
  font-size: 10px;
  color: #fff;
  font-family: "avertastd_extrabold";
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.6s;
  cursor: pointer;
  overflow: hidden;
}
.button_add_to_cart span[data-name="hover"] {
  display: inline-block;
  transition: all 0.25s;
  transform: translate(0, 0);
}
.button_add_to_cart span[data-name="me"] {
  margin-left: 0.25em;
  transition: all 0.25s;
  opacity: 1;
}
.button_add_to_cart .block {
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -30%;
  background-color: #fff;
  border-radius: 0 200% 200% 0;
  transition: all 0.25s;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button_add_to_cart .block span {
  display: block;
}
.button_add_to_cart .block span::before {
  content: "\f07a";
  font-family: "FontAwesome";
  font-size: 12px;
  color: #b31b27;
}
.button_add_to_cart:hover span[data-name="me"] {
  opacity: 0;
  font-size: 1px;
}
.button_add_to_cart:hover span[data-name="hover"] {
  color: #fff;
  transition-delay: 0.2s;
  transform: translate(1.5em, 0);
}
.button_add_to_cart:hover .block {
  transition-delay: 0.2s;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.button__red {
  position: relative;
  z-index: 1;
  padding: 1.25rem 4.5rem;
  background-color: transparent;
  border: 0.125rem solid #b31b27;
  font-size: 1.75rem;
  color: #b31b27;
  font-family: "avertastd_extrabold";
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.6s;
  overflow: hidden;
  cursor: pointer;
}
.button__red span {
  position: relative;
  z-index: 2;
}
.button__red::before,
.button__red::after {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  background-color: #b31b27;
  transition: all 0.45s;
  content: "";
  z-index: 1;
}
.button__red::before {
  top: 0;
  transform: translate(-100%, 0);
}
.button__red::after {
  bottom: 0;
  transform: translate(100%, 0);
}
.button__red:hover {
  color: #fff;
}
.button__red:hover::before,
.button__red:hover::after {
  transform: translate(0, 0);
}

.button__green__filled {
  position: relative;
  z-index: 1;
  padding: 1.25rem 4.5rem;
  background-color: #28713d;
  border: 0.125rem solid #28713d;
  font-size: 1.75rem;
  color: #fff;
  font-family: "avertastd_extrabold";
  text-align: center;
  text-transform: uppercase;
  transition: background-color 0.6s;
  overflow: hidden;
  cursor: pointer;
}
.button__green__filled span {
  position: relative;
  z-index: 2;
}
.button__green__filled::before,
.button__green__filled::after {
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0;
  background-color: #fff;
  transition: all 0.45s;
  content: "";
  z-index: 1;
}
.button__green__filled::before {
  top: 0;
  transform: translate(-100%, 0);
}
.button__green__filled::after {
  bottom: 0;
  transform: translate(100%, 0);
}
.button__green__filled:hover {
  color: #28713d;
}
.button__green__filled:hover::before,
.button__green__filled:hover::after {
  transform: translate(0, 0);
}

.line1,
.line2,
.line3 {
  background-color: #000000 !important;
}

/** Classes **/
.accordion-item {
  border: none !important;
}

.bg_red {
  background-color: #b31b27;
}

.bg_green {
  background-color: #28713d;
}

.bg-Lgtgrey {
  background-color: #f7f7f7;
}

.gutter__x {
  margin-left: 120px;
  margin-right: 120px;
}

.opacity_8 {
  opacity: 0.8;
}

.pr_100 {
  padding-right: 100px;
}

.pr_30 {
  padding-right: 30px;
}

.pr_60 {
  padding-right: 60px;
}

.pr_10 {
  padding-right: 10px;
}

.pr_40 {
  padding-right: 40px;
}

.pl_40 {
  padding-left: 40px;
}

.pt_20 {
  padding-top: 20px;
}

.pl_100 {
  padding-left: 100px;
}

.px_100 {
  padding-left: 100px;
  padding-right: 100px;
}

.mt_30 {
  margin-top: 30px;
}

.mt_50 {
  margin-top: 50px;
}

.mt_90 {
  margin-top: 90px;
}

.mb_75 {
  margin-bottom: 75px;
}

/* == Headings == */
.heading__4xl {
  font-size: 8rem;
  line-height: 8rem;
}

.heading__3xl {
  font-size: 6rem;
  line-height: 7rem;
}

.heading__2xl {
  font-size: 5rem;
  line-height: 6rem;
}

.heading__xl {
  font-size: 4rem;
  line-height: 5rem;
}

.heading__lg {
  font-size: 3.5rem;
  line-height: 4.5rem;
}

.text__2xmd {
  font-size: 3rem;
  line-height: 4rem;
}

.text__md {
  font-size: 2.5rem;
  line-height: 3.5rem;
}

.text__sm {
  font-size: 2rem;
  line-height: 3rem;
}

.text__2sm {
  font-size: 2.25rem;
  line-height: 3.25rem;
}

.text__xs {
  font-size: 1.875rem;
  line-height: 2.875rem;
}

.text__2xs {
  font-size: 1.75rem;
  line-height: 2.75rem;
}

.text__3xs {
  font-size: 1.5rem;
  line-height: 2.5rem;
}

/* === Font Family === */
.family__regular {
  font-family: "avertastd_regular";
}

.family__semibold {
  font-family: "avertastd_semibold";
}

.family__extrabold {
  font-family: "avertastd_extrabold";
}

/* === Colors === */
.color__white {
  color: #fff;
}

.color__green {
  color: #28713d;
}

.color__darkGrey {
  color: #333333;
}

.color__darkRed {
  color: #b31b27;
}

.color__black {
  color: #000000;
}

.opacity__05 {
  opacity: 0.5;
}

body {
  letter-spacing: -0.01em;
  background-color: #fff;
  max-height: 100vh;
  scroll-behavior: smooth;
}

/* == Header == */
.navbar__main {
  width: 100%;
  position: absolute;
  z-index: 100;
}
.navbar__main nav ul {
  column-gap: 80px;
}
.navbar__main nav ul li a {
  font-family: "avertastd_semibold";
  position: relative;
}
.navbar__main nav ul li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: #b31b27;
  height: 4px;
  margin-bottom: -4px;
  transition: width 0.5s;
}
.navbar__main nav ul li a:hover:after {
  width: 100%;
}

.nav__link {
  font-family: "avertastd_extrabold";
  font-size: 3rem;
}

/*Styling Hamburger Icon*/
.hamburger div {
  width: 30px;
  height: 3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}

.hamburger {
  display: none;
}

.header_mbl {
  display: none;
}

.slider_section {
  width: 100%;
  height: 100vh;
  margin-top: -125px;
}
.slider_section .swiper {
  width: 100%;
  height: 100%;
}
.slider_section .swiper-slide {
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
.slider_section .bg-slide {
  background-image: url(../images/landing-banner.png);
}
.slider_section .swiper-pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slider_section .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  height: 15px;
  width: 15px;
  position: relative;
  margin-bottom: 30px;
}
.slider_section .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
}
.slider_section .swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -12px;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: -1;
  height: 40px;
  width: 40px;
}

/* == Home == */
.section_kingtox_new {
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
  padding-bottom: 100px;
}

/* .hero_section_home {
  position: relative;
} */
.hero_bg_banner_home {
  background-image: url(../images/kingtox-banner.png);
}
.hero_section_home {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}
.home .arrown-down {
  position: absolute;
  top: 80%;
  right: 50%;
}

.container-arrow {
  position: relative;
  width: 24px;
  height: 24px;
}

.chevron {
  position: absolute;
  width: 28px;
  height: 2px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: " ";
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #b31b27;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;
  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}
#myVideo {
  width: 100%;
  display: flex;
  align-items: center;
  height: 100vh;
  object-fit: cover;
}

#myVideoMbl {
  display: none;
}

.hero_section_product {
  height: 100vh;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.page-id-6 .footer_logo,
.page-id-15 .footer_logo,
.page-id-381 .footer_logo,
.single-product .footer_logo {
  filter: brightness(100);
}
.page-id-6 .navbar__main nav ul,
.page-id-15 .navbar__main nav ul,
.page-id-381 .navbar__main nav ul,
.single-product .navbar__main nav ul {
  column: gap 70px;
}
.page-id-6 .navbar__main nav ul li a,
.page-id-15 .navbar__main nav ul li a,
.page-id-381 .navbar__main nav ul li a,
.single-product .navbar__main nav ul li a {
  color: #fff;
}
.page-id-6 .line1,
.page-id-6 .line2,
.page-id-6 .line3,
.page-id-15 .line1,
.page-id-15 .line2,
.page-id-15 .line3,
.page-id-381 .line1,
.page-id-381 .line2,
.page-id-381 .line3,
.single-product .line1,
.single-product .line2,
.single-product .line3 {
  background-color: white !important;
}

.slide_container {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 40px;
}

.about__bg {
  background-image: url(../images/about-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 0 170px;
}

.kingtox__bg {
  background-image: url(../images/kingtox_bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 1250px;
}

.products_slider {
  background-image: url("../images/product-slider-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section__kingtox .kingtox__content {
  margin-bottom: 75px;
}

.buttons_group {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.buttons_group a {
  margin-right: 30px;
}
.buttons_group a:last-child {
  margin-right: 0;
}

.middle__slider {
  height: 1050px;
  color: #fff;
}
.middle__slider .swiper {
  width: 100%;
  height: 100%;
  overflow-y: visible;
}
.middle__slider .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.middle__slider .swiper img {
  display: block;
  margin-bottom: -700px;
}
.middle__slider .swiper .m-slide-content {
  padding: 70px 450px 70px 70px;
  background-color: rgba(0, 0, 0, 0.5019607843);
}
.middle__slider .swiper .m-slide-content p {
  padding-bottom: 30px;
}
.middle__slider .swiper .m-slide-content button {
  margin-top: 20px;
}
.middle__slider .swiper .swiper-pagination-bullet {
  background-color: #fff;
  height: 9px;
  width: 9px;
  position: relative;
  margin-right: 20px;
  margin-bottom: 20px;
}
.middle__slider .swiper .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 2px solid #fff;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: -1;
  height: 21px;
  width: 21px;
}

.g-s .slider iframe {
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

/*Gallery*/
.gallery-section {
  text-transform: uppercase;
  font-family: "avertastd_extrabold";
  color: #b31b27;
  margin-top: 70px;
  margin-bottom: 70px;
}
.gallery-section h2 {
  font-size: 5rem;
  font-weight: 500;
}
.gallery-section p {
  font-size: 2.5rem;
  font-weight: 300;
}
.gallery-section span {
  font-size: 2.5rem;
  font-weight: 300;
  color: #00c0ad;
}

.g-s .slider {
  position: relative;
  z-index: 200;
  padding: 0 0px;
  margin: 5rem auto;
  width: 100%;
}
.swiper-button-next,
.swiper-button-prev {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #ae1826;
  color: #ae1826;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}
.g-s .slick-arrow {
  position: absolute;
  top: 55%;
  width: 50px;
  height: 50px;
  background: transparent;
  color: #b31b27;
  font-family: monospace;
  font-size: 5rem;
  z-index: 300;
  border-radius: 50%;
  border: 2px solid #b31b27;
  outline: none;
  padding-bottom: 5px;
}
.g-s .slick-prev {
  left: -60px;
  text-align: center;
}
.g-s .slick-next {
  right: -60px;
  text-align: center;
}
.g-s .item.slick-slide {
  width: 500px;
  height: 338px !important;
  transition: transform 0.4s;
  position: relative;
}
.g-s .slick-next::before {
  display: none;
}
.g-s .slick-prev::before {
  display: none;
}

.g-s .item.slick-slide {
  transform: scale(0.7) translate(640px);
}
.g-s .item.slick-slide.slick-center + .slick-slide {
  transform: scale(0.8) translate(-250px);
  z-index: 10;
}
.g-s .item.slick-slide.slick-center + .slick-slide + .item.slick-slide {
  transform: scale(0.7) translate(-640px);
  z-index: 5;
}

.g-s .item.slick-slide.slick-active {
  transform: scale(0.8) translate(250px);
}
.g-s .item.slick-slide.slick-center {
  /* margin: 0 -10%; */
  transform: scale(1);
  z-index: 30;
}
.g-s .slick-center:after {
  opacity: 0;
}
.g-s .slick-active {
  outline: none !important;
}

/*== Single Product ===*/
.sec__aboutProduct .prodDesc {
  padding-left: 3rem;
  padding-top: 14rem;
}

.float-box {
  position: relative;
  z-index: 3;
}
.float-box .floatBox_contentSec1 {
  background-color: #fff;
  box-shadow: -15px 15px 50px 0px rgba(0, 0, 0, 0.1);
}

.float-box.bottom {
  bottom: 60px;
}

.variants-list ul {
  display: flex;
  flex-direction: row;
  padding-top: 2rem;
}

.variants-list li h4 {
  font-size: 1.2rem;
  font-family: "avertastd_regular";
  text-transform: uppercase;
  color: #000000;
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
}

.variants-list li img {
  border-radius: 25px;
  border: 1px solid #f2f2f2;
}

.prim-btn {
  margin-top: 5rem;
  width: 50%;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 2rem;
  font-family: "avertastd_semibold";
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #f2f2f2;
}

.prim-btn i {
  background: #b31b27;
  padding: 12px;
  color: #fff;
  width: 25px;
  border-radius: 100px;
  height: 25px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-left: 4rem;
}

.variants-list li.active img {
  border: 1px solid #b31b27;
}

.variants-list li.active h4 {
  color: #b31b27;
}

/* == About Us == */
.hero_section {
  width: 100%;
}
.hero_section .banner_img {
  width: 100%;
  position: relative;
  overflow: hidden; /* Hide overflowing content within the banner_img */
}
.hero_section .mbl-banner {
  display: none;
}
.hero_section .banner_img img {
  width: 100%;
  max-width: 100%;
}
.hero_section .banner_text {
  position: absolute;
  top: 40%;
  left: 50%;
  -ms-transform: translate(-50%, 50%);
  -webkit-transform: translate(-50%, 50%);
  -moz-transform: translate(-50%, 50%);
  -o-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}
.hero_section h1 {
  margin-left: 10px;
}

.about_content_section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.about_content_section .about_content_p {
  margin-top: 30px;
  padding-right: 40px;
}

.history_content_section {
  padding-top: 100px;
  padding-bottom: 100px;
}
.history_content_section .history_content {
  padding-left: 40px;
}
.history_content_section .history_content_p {
  margin-top: 30px;
}

/* == Product == */
.products_section_main {
  background-color: #f8f7f7;
  padding-top: 100px;
  padding-bottom: 100px;
}

.product_grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  column-gap: 50px;
  row-gap: 40px;
}

.products_section_bg {
  background-color: #f8f7f7;
}

.box {
  background-color: #fff;
  width: 285px;
  height: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.box .product_title {
  font-family: "avertastd_extrabold";
  font-size: 16px;
  color: #333333;
  line-height: 2.75rem;
  text-align: center;
  width: 30ch;
  overflow: hidden;
  text-overflow: ellipsis;
}
.box .card-add-to-cart {
  position: absolute;
  bottom: 20px;
}
.box .pointer {
  position: absolute;
  top: 20px;
  right: 20px;
}
.box .pointer path {
  transition: fill 0.3s ease;
}
.box:hover svg g path {
  fill: #b31b27;
}

.products_section {
  padding-top: 50px;
  padding-bottom: 100px;
}
.products_section .img-box {
  margin-top: 60px;
}
.products_section .kg-bottle {
  margin-top: -40px;
}
.products_section .card-title {
  padding-top: 16px;
  text-align: center;
  font-family: "avertastd_extrabold";
  font-size: 14px;
  line-height: 2.75rem;
  color: #333333;
}
.products_section .card-title .blue {
  color: #36bbe0;
}
.products_section .card-title .green {
  color: #28713d;
}
.products_section .card-title_home {
  text-transform: lowercase;
}
.products_section .card-content {
  padding-top: 36px;
  padding-bottom: 17px;
  padding-left: 20px;
  padding-right: 20px;
}
.products_section .card-content .product_price {
  font-family: "avertastd_extrabold";
  font-size: 14px;
  line-height: 2.75rem;
  color: #333333;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: #a3a3a3;
  height: 12px;
  width: 12px;
  position: relative;
  margin-right: 10px;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #b31b27;
}
.swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
}
.swiper-pagination .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 2px solid #b31b27;
  border-radius: 50%;
  box-sizing: border-box;
  z-index: -1;
  height: 22px;
  width: 22px;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: auto !important;
}

/* == Footer == */
footer {
  border-top: 1px solid rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
  padding-top: 50px;
  padding-bottom: 50px;
  /* Create the liquid fill effect using keyframes animation */
  /* Add the liquid fill animation on hover */
  /* Icon color change on hover */
}
footer ul > li {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  text-transform: uppercase;
  font-family: "avertastd_regular";
}
footer p {
  font-size: 2rem;
  font-weight: 400;
  line-height: 3rem;
  text-transform: uppercase;
  font-family: "avertastd_regular";
}
footer .social_icons {
  display: flex !important;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 6px;
}
footer .social_icons a {
  transition: all 0.5s ease-in;
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  border: 1px solid black;
  color: black;
  border-radius: 100%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Hide overflowing content */
}
footer .social_icons a i {
  position: relative;
  z-index: 1; /* Ensure the icon is on top of the liquid fill */
  transition: color 0.5s ease-in-out;
}
footer .social_icons a::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 0;
  background: rgb(255, 255, 255); /* Color of the liquid */
  transition: height 0.5s ease-in-out;
}
footer .social_icons a:hover::before {
  height: 100%; /* Animate the height to 100% (filled) */
}
footer .social_icons a:hover i {
  color: #000000; /* Change the color when hovered */
}
footer .footer-section-one {
  padding-bottom: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}
footer .footer-section-two {
  padding-top: 35px;
}
footer .form-control {
  padding: 1.375rem 0.75rem !important;
}
footer .wpcf7-form-control {
  width: 100%;
  padding: 1rem 0.75rem !important;
}
footer form .form-control {
  border-radius: 0px !important;
  border-top: 1px solid #ced4da !important;
  border-bottom: 1px solid #ced4da !important;
  border-left: 1px solid #ced4da !important;
}
footer form .wpcf7-form-control {
  border-radius: 0px !important;
  border-top: 1px solid #ced4da !important;
  border-bottom: 1px solid #ced4da !important;
  border-left: 1px solid #ced4da !important;
}
footer form input {
  color: #000 !important;
}
footer form input:focus {
  /* Corrected spelling of "focus" */
  box-shadow: none !important; /* Corrected syntax */
}
footer form input::placeholder {
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.2rem;
}
footer form .btn {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
  border: 1px solid rgba(0, 0, 0, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  width: 100px;
  color: #000;
  border-radius: 0px !important;
  border: 1px solid #ced4da !important;
  font-family: "avertastd_semibold";
}
footer form .newsletter p {
  display: flex;
  justify-content: flex-end;
}

.mission_vission {
  background: linear-gradient(to left, #b31b27 50%, #28713d 50%);
  color: #fff;
  padding-top: 117px;
  padding-bottom: 117px;
}

.mission_content {
  padding-right: 60px;
}

.vission_content {
  padding-left: 60px;
}

.mission_vission_title {
  font-family: "avertastd_extrabold";
  text-transform: uppercase;
}

.mission_vission_content {
  font-family: "avertastd_regular";
  margin-top: 30px;
}

.section_counter {
  background-color: #eeecec;
  padding-top: 59px;
  padding-bottom: 59px;
}
.section_counter .count {
  color: #28713d;
  font-family: "avertastd_extrabold";
  font-size: 6rem;
}
.section_counter .count_text p {
  color: #28713d;
  font-family: "avertastd_regular";
  font-size: 1.75rem;
  padding: 10px 23px;
}

.section_faq {
  width: 100%;
  background-color: #f8f6f6;
  padding-top: 80px;
  padding-bottom: 80px;
}
.section_faq .accordion {
  margin-top: 50px;
}
.section_faq .accordion-item {
  background-color: #f8f6f6 !important;
  border-top: 1px solid rgba(51, 51, 51, 0.5) !important;
  padding-top: 20px;
  padding-bottom: 20px;
}
.section_faq .accordion-item:last-child {
  border-bottom: 1px solid rgba(51, 51, 51, 0.5) !important;
}
.section_faq .accordion-body {
  font-family: "avertastd_regular" !important;
  font-size: 1.75rem !important;
  color: #333333 !important;
}
.section_faq .accordion-header button {
  font-family: "avertastd_regular" !important;
  font-size: 2rem !important;
  color: #333333 !important;
}
.section_faq .accordion-button {
  background-color: #f8f6f6 !important;
  padding: 2rem 1.25rem;
}
.section_faq .accordion-button:focus {
  border: none !important;
  box-shadow: none;
}
.section_faq .accordion-button:not(.collapsed) {
  box-shadow: none;
}
.section_faq .accordion-button::after {
  background-size: 2.25rem;
  width: 20px;
  height: 20px;
}

.get_in_touch {
  background-color: #f8f6f6;
  padding-top: 100px;
  padding-bottom: 100px;
}
.get_in_touch form {
  margin-top: 50px;
}
.get_in_touch form div {
  padding-bottom: 10px;
}
.get_in_touch form button {
  margin-top: 40px;
}
.get_in_touch .form-control {
  font-family: "avertastd_regular" !important;
  color: #959595 !important;
  font-size: 1.75rem !important;
  border: 1px solid #333 !important;
  padding: 2.375rem !important;
  background-color: transparent;
}
.get_in_touch .form-control:focus {
  background-color: transparent;
  border: 1px solid #555555 !important;
  box-shadow: 0 0 0 0.25rem rgba(134, 134, 134, 0.21);
}

/* For Webkit-based browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 5px; /* Adjust the width as needed */
}

::-webkit-scrollbar-track {
  background-color: #cccccc;
}

::-webkit-scrollbar-thumb {
  background-color: #b31b27;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 6px rgba(255, 61, 61, 0.9);
}

.hidden {
  display: none;
}
/*blogs*/
.full-width-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 750px;
  object-fit: cover;
  display: block;
}

.blog__card {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.top__blogs {
  padding: 50px 0;
}

.blog__img img {
  border-radius: 10px;
}

.blog__content {
  position: relative;
  font-family: "avertastd_regular", sans-serif;
  max-width: 120ch;
}

.blog__content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.blog__content p {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
}

.arrow__cta i {
  font-size: 24px;
  transform: rotate(325deg);
  position: absolute;
  top: 10px;
  right: 20px;
}

.feature__blog__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: end;
}

.feature__blog__list .blog__content {
  max-width: 80ch;
}

.feature__blog__list .blog__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

/* .feature__blog__list .blog__img img {
        border-radius: 0px;
    } */
.blog__card {
  border: 1px solid #ae1826;
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s ease;
}
.blog__card:hover {
  transform: scale(1.01);
}
.feature__blog__list .blog__content h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.feature__blog__list .blog__content p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #333;
}

.feature__blog__list .arrow__cta i {
  font-size: 14px;
  top: 5px;
  right: 10px;
}
.blog__main .blog__img img {
  border-radius: 18px;
}

.blog__main .blog__content h2 {
  font-size: 2.2rem;
}

.blog__main .blog__content p {
  font-size: 1.4rem;
}

.blog__main .arrow__cta i {
  font-size: 20px;
}
.img-blog-list {
  width: 170px;
  height: 170px;
  object-fit: cover;
}
.mt-40 {
  margin-top: 40px;
}
.my-40 {
  margin-top: 20px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .banner-image {
    height: 500px;
  }
}
/*single blog*/
.blog__content__section {
  padding: 50px 0px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.blog__hero {
  padding: 170px 0 40px;
}

.blog__hero .blog__hero-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.blog__hero span {
  color: #333;
  font-family: "avertastd_regular", sans-serif;
  font-size: 1.5rem;
}

.cd-breadcrumb-nav {
  display: flex;
  justify-content: flex-end;
  background: #0001;
  padding: 20px 50px 20px 0;
}

.cd-breadcrumb {
  display: flex;
  gap: 10px;
}

.cd-breadcrumb li a {
  color: #333;
  font-family: "avertastd_regular", sans-serif;
  font-size: 1.1rem;
}

.cd-breadcrumb .current {
  color: #212529;
  font-family: "avertastd_regular", sans-serif;
  font-weight: bold;
}

.single__blog__content {
  font-family: "avertastd_regular", sans-serif;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.single__blog__content p {
  font-family: "avertastd_regular", sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #333;
}

.single__blog__content h2 {
  font-family: "avertastd_regular", sans-serif;
  font-size: 2.2rem;
  color: #212529;
  font-weight: bold;
}

.single__blog__content img {
  margin: 10px 0;
}

.blog__topic {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid #ad1823;
  border-radius: 25px;
  padding: 25px;
  background: #da969a14;
}

.blog__topic h2 {
  font-family: "avertastd_regular", sans-serif;
  font-size: 1.8rem;
  color: #212529;
  font-weight: bold;
}

.blog__topic ul li {
  padding: 5px 0;
  font-family: "avertastd_regular", sans-serif;
  font-size: 1.1rem;
  color: #b31b27;
  list-style: disc;
}
.latest__blog__slider__content .slick-slide {
  margin-right: 50px;
}
.latest__blog__slider__content .slick-slide h2 {
  font-size: 1.5rem;
}
.latest__blog__slider__content .slick-slide .arrow__cta i {
  font-size: 14px;
}

.latest__blog__slider__content .slick-slide p {
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  .blog__hero {
    padding: 100px 0 0px;
  }
}

@media screen and (max-width: 767px) {
  .blog__hero {
    padding: 100px 0 0px;
  }

  .r-reverse-mbl {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

/*Section Product Tabs*/
/* .products__tabs__section .nav-tabs-main{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
      gap: 10px;
} */
.products__tabs__section {
  padding: 50px 0;
  background-color: rgb(247, 247, 247);
}
.products__tabs__section .nav-tabs {
  justify-content: center;
  gap: 10px;
}
.products__tabs__section .tab-content {
  margin-top: 50px;
}
.products__tabs__section .nav-link {
  font-family: "avertastd_semibold";
  font-size: 1.75rem;
  color: #b31b27;
  border: 1px solid #b31b27;
  border-radius: 10px;
  background-color: #fff;
  padding: 1.25rem 4.5rem;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
  font-weight: 500;
}
.products__tabs__section .nav-link:hover {
  font-size: 1.75rem;
  color: #fff;
  border: 1px solid #b31b27;
  background-color: #b31b27;
}
.products__tabs__section .nav-link.active {
  color: #fff;
  border: 1px solid #b31b27;
  background-color: #b31b27;
}
.nav-tabs {
  border: none;
}
.products__tabs__section .product_grid {
  margin-top: 5px;
  column-gap: 10px;
}
@media screen and (max-width: 1336px) {
  .products__tabs__section .box {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .products__tabs__section .box {
    width: 100% !important;
    height: 460px;
  }
}
/*Home slider*/
.hero__slider .slide.slick-slide {
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
}
/* .hero__slider .slick-dots {
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    pointer-events: auto;
    z-index: 15;
}
  .hero__slider.slick-dotted.slick-slider {
    margin-bottom: 0px !important;
}
.hero__slider .slick-dots li button:before {
  width: 30px;
  height: 30px;
  opacity: 1;
  

  }
.hero__slider .slick-dots li.slick-active button:before {
  font-size: 12px;
  opacity: 1;
    color: #ffff;
  } */

.hero__slider .slick-dots {
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 15;
}
.hero__slider.slick-dotted.slick-slider {
  margin-bottom: 0px !important;
}

.hero__slider .slick-dots li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: opacity 0.3s;
}

.hero__slider .slick-dots li.slick-active button {
  opacity: 1;
  background: #ff0000; /* active dot color */
}

.hero__slider .slick-dots li button::before {
  display: none;
}

.img__box {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center .slick-slide {
  box-sizing: border-box;
}

.slick-center .img__box {
  z-index: 2;
}

.img__box iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

/* Default slide */
.center .slick-slide {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 0.4s ease-in-out;
}

.center .slick-slide,
.center
  .slick-slide[aria-hidden="true"]:not(.slick-cloned)
  ~ .slick-cloned[aria-hidden="true"] {
  transform: scale(0.8, 0.8);
  transition: all 0.4s ease-in-out;
}

.center .slick-center,
.center
  .slick-slide[aria-hidden="true"]:not([tabindex="-1"])
  + .slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);
}

.center .slick-current.slick-active {
  transform: scale(1.1);
}

/*# sourceMappingURL=style.css.map */
