/* STYLES.CSS */

:root {
  --green1: #006736;
  --green2: #11b911;
  --green3: #198754;
  --green4: #d4f3de80;
  --green5: #a2e3b780;
  --green6: #24713c;
  --green7: #ecf5e8;
  --green8: #16693091;
  --green9: #094a2c;
  --green10: #43705380;
  --green11: #2a895e;
  --green12: #067547;
  --green13: #137157;
  --green14: #4caf50;
  --white: #fff;
  --black: #000;
  --black2: #212529;
  --black3: #363636;
  --blue1: #103b73;
  --blue2: #114277;
  --text: #636363;
  --text2: #2b2626;
  --text3: #7c7c7c;
  --text4: #9ca3af;
  --text5: #6b7280;
  --red1: #c52929;
  --gray1: #f8f9fa;
  --gray2: #595959;
  --gray3: #ddd;
  --gray4: #56595f;
  --light1: #f0f0f0;
  --light2: #d4d3d3;
  --light3: #e9ecef;
  --light4: #ebebeb;
  --light5: #daf1e9;
  
}

::selection {
  color: var(--white);
  background: var(--green10);
}

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

#root {
	overflow-x: hidden;
}

html {
  font-family: "Open Sans", serif;
}

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

h1 {
  font-size: 2rem;
}

h2 {
  margin-bottom: 20px;
  font-size: 2.813rem;
  color: var(--green1);
  font-family: "Exo", serif;
}

h3 {
  font-size: 1.5rem;
  color: var(--green1);
  font-family: "Exo", serif;
}

h4 {
  color: var(--green1);
  font-family: "Exo", serif;
}

h5 {
  font-weight: bold;
  color: var(--green1);
  font-family: "Exo", serif;
}

h6 {
  text-transform: uppercase;
  font-size: 0.813rem;
  line-height: 1.6;
  font-family: "Exo", serif;
}

p {
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-family: "Open Sans", sans-serif;
}

img {
  width: 100%;
  object-fit: cover;
}

.transition-all {
  transition: all .3s;
}

.swiper.themes__carousel {
  width: 60%;
  margin: 0 auto;
}

.themes__carousel .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 22px;
  font-weight: bold;
  color: var(--white);
}

.one--line h6{
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.two--line h6{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}


.title__ct1,
.title__ct2 {
  text-align: center;
  margin-bottom: 50px;
}

.title__ct1 h2,
.title__ct2 h2 {
  font-weight: bold;
  font-size: 2.188rem;
  margin-bottom: 15px;
}

.title__ct2 span {
  font-family: "Exo", serif;
  font-size: 1.25rem;
  color: var(--red1);
  font-weight: 600;
  font-style: italic;
}

.title__ct1 p,
.title__ct2 p {
  font-size: 0.938rem;
  font-style: italic;
}

.btn {
  border-radius: 50px;
}

hr.hr-1 {
  border: 0;
  height: 2px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.breadcrumb {
  display: flex;
}

.breadcrumb-links {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  row-gap: 10px;
  flex-wrap: wrap;
}
.breadcrumb-links > li:nth-child(n + 4) {
  display: none;
}

.breadcrumb-box {
  display: flex;
  align-items: center;
  transition: .3s;
}

.breadcrumb-link {
  color: var(--text4);
}
.breadcrumb-box:hover > *:not(.breadcrumb-icon) {
  color: var(--green3);
}

.breadcrumb-icon,
.breadcrumb-icon-home {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text4);
}
.breadcrumb-links li:first-child .breadcrumb-text {
  display: none;
}

.breadcrumb-text {
  margin-left: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: var(--text5);
}

#pagination {
  margin: 0;
  padding: 0;
  text-align: center;
  margin: 20px 0;
}
#pagination li {
  display: inline
}
#pagination li a {
  display: inline-block;
  text-decoration: none;
  padding: 5px 10px;
  color: var(--text5);
}

#pagination li a {
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s
    
}
#pagination li a.active {
  background-color: var(--green14);
  color: var(--white);
}

#pagination li a:hover:not(.active) {
  background-color: var(--gray3);
} 

.products__title h5{
  font-size: 1.375rem;
  color: var(--black3);
  text-transform: capitalize;
}

.space-banner {
  margin-top: 90px;
}

.form-control-lg {
  font-size: 1rem;
}

.dropdown-menu-title li a {
  color: var(--text);
  font-weight: 600;
}

.dropdown-menu-title li a:hover {
  color: var(--white);
  background-color: var(--green1);
  border-radius: 5px;
}

.space-ct1 {
  height: 50px;
}

.space-ct2 {
  height: 40px;
}

.center-items {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-vr-item {
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.rotate-shake {
  animation: rotate-shake 1.5s infinite;
}

.loader {
  color: var(--white);
  position: relative;
  font-size: 11px;
  background: var(--white);
  animation: escaleY 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
  left: 2em;
  background: var(--white);
  width: 1em;
  height: 4em;
  animation: escaleY 1s infinite ease-in-out;
}
.loader:before {
  left: -2em;
  animation-delay: -0.32s;
}

.contact-vr-item:first-child {
  animation: wave1 linear 1.2s infinite;
}
.contact-vr-item:nth-child(2) {
  animation: wave2 linear 1.2s infinite;
}
.contact-vr-item:nth-child(3) {
  animation: wave3 linear 1.2s infinite;
}
.contact-vr-item:last-child {
  animation: wave4 linear 1.2s infinite;
}

header .btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: var(--white);
}

.btn-sm-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-weight: normal;
  border-radius: 50%;
}

.btn-sm-square i {
  font-size: 0.875rem;
}

.has-search .form-control {
  padding-left: 2.375rem;
}

.slick-dots {
  display: flex;
  justify-content: center;
}

.slick-dots li button {
    border-radius: 50%;
    font-size: 0;
    width: 10px;
    height: 10px;
    border: 0;
    outline: none;
    background: var(--green5);
    margin: 0 5px;
}

.slick-active button {
  background: var(--green3) !important;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}

.header-top {
  height: 34px;
  background-color: var(--green1);
  color: var(--white);
}

.header-top a {
  color: var(--white);
}

.header__mail {
	display: none;
}

.header-cart {
  position: relative;
}

.header-cart .quantity {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--white);
  font-size: 11px;
  top: -6px;
  right: -12px;
  background: var(--red1);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
}

.bg-light {
  background-color: var(--light1) !important;
}

div.dropdown-item {
  position: relative;
  cursor: pointer;
}

div.dropdown-item i {
  color: var(--text);
}

.dropdown-item:hover .sub-menu {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.dropdown-item:hover .sub-menu li:hover {
  border-radius: 7px;
}

.dropdown-item:active {
  background-color: var(--white);
  color: var(--black2);
}

div.dropdown-item .sub-menu::after {
  content: "";
  display: block;
  position: absolute;
  left: -16px;
  top: 0;
  width: 16px;
  height: 100%;
  background-color: transparent;
}

.sub-menu-txt-icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-menu-txt-icon i {
  transform: rotate(90deg);
}

.sub-menu li {
  padding: 4px 16px;
}

.sub-menu li a {
  color: var(--black2);
}

.sub-menu li:hover {
  background-color: var(--gray1);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 0px;
}

.navbar-nav {
  justify-content: flex-end;
  gap: 0;
  overflow: hidden;
  padding-bottom: 10px;
}

.navbar-light .navbar-nav .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  outline: none;
  padding: 10px 0;
  position: relative;
  color: var(--text);
}

.navbar-light .navbar-nav .nav-link::after,
.navbar-light .navbar-nav .nav-link.active::after {
  content: "";
  display: block;
  height: 1px;
  width: 0;
  background-color: var(--green3);
  position: absolute;
  left: 30px;
  top: 100%;
  transition: 0.3s;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after,
.nav-item.dropdown:hover .nav-link::after {
  width: 100%;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.nav-item.dropdown:hover .nav-link {
  color: var(--green3);
}

.collapse {
  background-color: var(--white);
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  box-shadow: 0 4px 5px -2px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: 0.5s;
}

.collapse.show {
  transform: translateX(0%);
  display: block !important;
}

.nav-mobile {
  width: 100%;
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}

.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
  outline: none;
}
.line {
  fill: none;
  stroke: var(--green3);
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.main__slider {
  margin-top: 90px;
  height: 500px;
}

.main__slider .slick-list,
.main__slider .slick-track {
  height: 100%;
}

.main__slider .slick-prev,
.main__slider .slick-next {
    display: block;
    padding: 15px 25px;
    font-size: 40px;
    font-weight: bold;
    outline: none;
    border: 0;
    background: transparent;
    color: var(--white);
}

.main__slider .slick-prev {
  left: 0;
  transition: .3s;
  opacity: 0;
}

.main__slider:hover .slick-prev {
  left: 10px;
  opacity: 1;
}

.main__slider .slick-prev:hover {
  color: var(--green3);
}

.main__slider .slick-next {
  right: 0;
  transition: .3s;
  opacity: 0;
}

.main__slider:hover .slick-next {
  right: 10px;
  opacity: 1;
}

.main__slider .slick-next:hover {
  color: var(--green3);
}

.main__slider-item {
  position: relative;
  height: 100%;
}

.main__slider-item img {
  height: 100%;
}

.main__slider-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-family: "Exo", serif;
}

.main__slider-content h1 {
  line-height: 1.5;
  font-weight: bold;
  width: 80%;
  padding: 10px 10px;
  background-image: linear-gradient(to right, var(--green8), transparent);
  border-radius: 10px;
  opacity: 0;
}

.main__slider-item.slick-active h1{
  animation: showSlide ease .6s forwards;
  animation-delay: 1s;
}

.main__slider-item.slick-active p {
  animation: showSlide ease .6s forwards;
  animation-delay: 1.2s;
}

.main__slider-content p {
  max-width: 700px;
  width: 90%;
  margin-top: 18px;
  font-size: 1rem;
  padding: 10px;
  background-color: var(--green10);
  border-radius: 10px;
  opacity: 0;
}

.swiper-pagination {
  text-align: left;
}

.theme-btn,
.theme-btn-s2 {
  background-color: var(--white);
  font-size: 0.813rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  color: var(--green3);
  padding: 10px 20px;
  border: 0;
  border-radius: 3px;
  text-transform: uppercase;
  display: inline-block;
  line-height: initial;
  transition: all 0.4s ease;
}

a {
  text-decoration: none;
  transition: all 0.2s ease;
}

.theme-btn-s2 {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--green3);
}

.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
  background-color: var(--green3);
  color: var(--white);
}

.theme-btn-s3 {
  font-weight: 500;
  font-size: 0.813rem;
  line-height: 1.5;
  color: var(--white);
  text-transform: uppercase;
  padding: 10px 20px;
}

i.fa-chevron-circle-right {
  height: 22px;
  width: 22px;
}

a:hover {
  text-decoration: none;
}

.nav-details__list {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.nav-details__list li {
  position: relative;
}

.nav-details__list li:not(:last-child)::after {
  content: ">";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -26px;
  font-weight: 600;
}

.nav-details__list li a {
  color: var(--text);
  font-weight: 600;
}

.nav-details__list li:last-child a {
  color: var(--black);
}

.nav-btn {
  padding: 50px 0;
}

.nav__btn-svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}

.nav__btn-svg path {
  transform: scale(1.8);
}

.sub__nav-item {
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
    padding: 15px 20px;
    color: var(--text);
    border-radius: 10px;
    transition: .3s;
    margin-bottom: 20px;
    background-color: var(--white);
}

.sub__nav-item svg {
  width: 50px;
}

.sub__nav-item .sub__nav-desc h6 {
  margin-bottom: 0;
  font-weight: bold;
  font-size: .75rem;
}

.sub__nav-item .sub__nav-desc p {
    margin-bottom: 0;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sub__nav-item:hover {
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 10px 5px -2px rgba(0,0,0,.2);
}

.sub__nav-item-green:hover {
  background-color: var(--green3);
}

.sub__nav-item-red:hover {
  background-color: var(--red1);
}

.sec-service .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sec-service .service-item .service-content p{
  font-size: 1rem;
  margin-bottom: 0;
  width: 80%;
  margin: auto;
}

.sec-service .service-item:hover .service-img {
  color: var(--green2);
  transform: scale(1.2);
}

.sec-service .service-img {
  width: 80px;
  transition: 0.3s;
  color: var(--text2);
}

.sec-service .service-content {
  margin-top: 10px;
}

.sec-service .service-content h5 {
  color: var(--green6);
}

.sec-shop .shop-item {
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.sec-shop .shop-item:hover img {
  transform: scale(1.1);
}

.sec-shop .shop-item .shop-item-img {
  overflow: hidden;
  display: block;
  padding-bottom: 100%;
  position: relative;
}

.sec-shop .shop-item .shop-item-img img {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.sec-shop .shop-item-content {
  padding: 0 20px 20px;
}

.sec-shop .shop-item-content a {
  color: var(--white);
}

.sec-shop .shop-item p {
  font-size: 1rem;
  color: var(--text);
}

.sec-shop .shop-item h6 {
  margin-top: 20px;
  color: var(--text2);
  transition: .3s;
}

.sec-shop .shop-item h6:hover {
  color: var(--green3);
}

.sec-shop .shop-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--green1);
  transition: 0.3s;
}

.sec-shop .shop-item:hover::after {
  height: 4px;
}

.sec-news-item:hover .news-img img {
  transform: scale(1.1);
}

.sec-shop .shop-item-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sec-shop .shop-item-price p {
  margin-bottom: 0;
  color: var(--green6);
  font-weight: 600;
}

.sec-shop .shop-item-price a {
  background: var(--green7);
  color: var(--green6);
}

.sec__themes {
  padding: 50px 0;
  background-color: var(--green4);
}

.sec__themes .swiper.themes__carousel  {
  width: 80%;
}

.sec__project .project__item {
  background-color: var(--white);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,.3);
  transition: .3s;
}

.sec__project .project__item > a {
    display: block;
    overflow: hidden;
    padding-bottom: 70%;
    position: relative;
}

.sec__project .project__item > a img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
}

.sec__project .project__item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 5px -2px rgb(0 0 0 / 20%);
}

.sec__project .project__content {
  padding: 10px;
}

.sec__project .project__content h6 {
  color: var(--red1);
  text-transform: inherit;
  font-size: 1.125rem;
  font-family: "Exo", serif;
  line-height: 1.4;
}

.sec__project .project__content p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec__project .project__content p svg {
  width: 20px;
}

.sec__project .project__content span {
  font-size: 0.875rem;
  font-style: italic;
}

.sec-bg-company {
  background: url("company.jpg") center/cover no-repeat;
  padding-bottom: 37%;
}

.slick-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.slick-next {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.sec-customer {
  height: 460px;
  position: relative;
  background-image: linear-gradient(45deg, var(--green13), var(--green12));
}

.sec-customer::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.2);
}

.sec-customer .customer-item {
  padding: 10px 20px;
  background-color: var(--white);
  border-radius: 10px;
}

.sec-customer .customer-img {
  width: 60px;
  background: var(--green11);
  position: absolute;
  top: 0;
  padding: 10px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.sec-customer .customer-content {
  margin-left: 110px;
}

.sec-customer .customer-content span {
  display: block;
}

.sec-customer .customer-content .info {
  font-weight: bold;
  font-size: 1.563rem;
  color: var(--red1);
}

.sec-customer .customer-content .more-info {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray4);
}

.sec-news-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.sec-news-item .news-img {
  overflow: hidden;
  position: relative;
  padding-bottom: 80%;
}

.sec-news-item .news-img img {
  height: 100%;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.sec-news-item .news-content {
  padding: 15px;
}

.sec-news-item .news-content

.sec-news-item .sub-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sec-news-item .sub-content {
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec-news-item .date {
  margin-left: 5px;
  display: inline-block;
}

.partner-item {
  padding: 0 15px;
}

.quantity-cart button {
  background-color: var(--green3);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  width: 30px;
  height: auto;
  text-align: center;
  transition: background-color 0.2s;
}

.quantity-cart button:hover {
  background-color: var(--green1);
}

.input-box {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 1rem;
  outline: none;
}

/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-box[type="number"] {
  -moz-appearance: textfield;
}

.side-bar__top-title {
    padding: 10px 20px;
    background: var(--green1);
    color: var(--white);
}

.side-bar__top-title h6 {
  margin-bottom: 0;
}

.side-bar__top-title i {
  margin-right: 10px;
}

.side-bar__top-list {
  border: 1px solid var(--gray3);
  border-top: 0;
  height: calc(100vh - 198px);
  overflow: auto;
}

.side-bar__top-list .top__list-item {
  padding: 9px 17px;
}

.side-bar__top-list .top__list-item:hover .top__list-link {
  color: var(--green3);
}

.side-bar__top-list .top__list-item .top__list-link::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--green3);
  transition: .3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.side-bar__top-list .top__list-item:hover .top__list-link::after {
  width: 100%;
}

.side-bar__top-list .top__list-item .top__list-link {
  color: var(--text);
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 5px;
  position: relative;
}

.side-bar__top-list .top__list-item .top__list-link .top__list-txt {
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: bold;
}

.side-bar__top-list-sub li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--gray3);
}

.side-bar__top-list-sub li:hover a {
  color: var(--green3);
  margin-left: 10px;
}

.side-bar__top-list-sub li a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text);
  font-size: .75rem;
  text-transform: uppercase;
  font-weight: 600;
}

.side__bar-mobile {
    position: fixed;
    top: 88px;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    width: 320px;
    padding: 0;
    transform: translateX(100%);
    transition: .3s;
    box-shadow: 0 0 10px rgba(0,0,0, .3);
}

.side__bar-mobile.active {
  transform: translateX(0) !important;
}

.side__bar-mobile .btn__side-bar-mb {
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--green3);
  border: 0;
  outline: none;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  color: var(--white);
  animation: wave5 infinite 1s;
}

.side__bar-mobile .btn__side-bar-mb i {
  animation: leftToRight infinite 1s;
}

.products__top-list,
.products__more-list {
  margin-top: 10px;
}

.products__top-list .slick-list,
.products__more-list .slick-list {
  margin: 0 -10px;
}

.products__top-list .slick-slide,
.products__more-list .slick-slide {
  margin: 0 10px;
}

.products__top-list .slick-next,
.products__top-list .slick-prev,
.products__more-list .slick-next,
.products__more-list .slick-prev {
    border: 0;
    background: var(--green1);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 5px;
}

.products__top-list .slick-prev,
.products__more-list .slick-prev {
  position: absolute;
  top: -45px;
  right: 40px;
}

.products__top-list .slick-next,
.products__more-list .slick-next {
  position: absolute;
  right: 0;
  top: -45px;
}

.products__top-list img  {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  transition: .3s;
}

.products__top-list img:hover {
  transform: scale(1.05);
}

.products__top-list .slick-list  {
  padding: 15px 0;
}

.products__item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.products__item-title h6 {
  color: var(--text2);
  font-size: .875rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  margin-bottom: 3px;
  line-height: 1.5em;
  height: 3em;
}
.products__prices {
  margin-bottom: 10px;
}

.products__prices b {
  color: var(--red1);
  font-size: 1.125rem;
}

.products__item-btns {
  display: flex;
  align-items: center;
  gap: 5px;
}

.products__item-btns a{
  font-size: .813rem;
}

.products__item-img {
  position: relative;
  overflow: hidden;
  padding-bottom: 100%;
}

.products__item-img img {
  transition: .3s;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.products__item:hover img {
  transform: scale(1.05);
}

#product__modal {
  z-index: 9999;
  background: rgba(0,0,0,.3);
}

.modal-header {
  background: var(--green3);
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  justify-content: center;
}

.modal-header h1 {
  font-weight: bold;
}

#product__modal .modal-dialog {
  height: 92vh;
}

#product__modal .modal-dialog .modal-content {
  height: 100%;
}

#product__modal .modal-body {
  overflow: auto;
}

.dropdown__select-main {
  width: 100%;
  font-weight: 300;
  border: 1px solid var(--gray3);
  border-radius: 10px;
  margin-bottom: 15px;
}

.dropdown__select-main.active .dropdown__select {
  transform: scaleY(1);
  opacity: 1;
}

.dropdown__select-main.active .dropdown__filter::after {
  transform: rotate(-135deg) ;
}

.dropdown__select-main .dropdown__options-filter {
  width: 100%;
  cursor: pointer;
}

.dropdown__select-main .dropdown__filter {
  position: relative;
  display: flex;
  padding: 10px 20px;
  color: var(--gray2);
  background-color: var(--white);
  border-radius: 18px;
  font-size: 14px;
  transition: 0.3s;
}

.dropdown__select-main .dropdown__filter:focus {
  outline: none;
}

.dropdown__select-main .dropdown__filter::after {
  position: absolute;
  top: 45%;
  right: 20px;
  content: '';
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray2);
  transform: rotate(45deg) translateX(-45%);
  transition: 0.3s ease-in-out;
}

.dropdown__select-main .dropdown__select {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 5px;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 18px;
  opacity: 0;
  transition: 0.2s ease-in-out;
  border: 1px solid var(--gray3);
  z-index: 1;
  height: 420px;
  overflow-y: auto;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0,0,0,.3);
}

.dropdown__select-main .dropdown__select-option {
  padding: 12px 20px;
  background-color: var(--white);
  border-bottom: 1px solid var(--light3);
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 20px;
}

.dropdown__select-main .dropdown__filter-selected {
  font-size: .875rem;
  font-weight: 600;
}

.dropdown__select-main .dropdown__select-option .select__option-img {
    width: 15%;
    border-radius: 10px;
    box-shadow: 0 0 5px rgb(0,0,0,.3);
    overflow: hidden;
}

.dropdown__select-main .dropdown__select-option span {
  width: 85%;
}

.dropdown__select-main .dropdown__select-option:last-of-type {
  border-bottom: 0;
}

.dropdown__select-main .dropdown__select-option:hover {
  background-color: var(--light3);
}

.dropdown__select-main .dropdown__select li:first-child {
  padding: 0 20px;
}

.dropdown__select-search {
  margin-top: 15px;
  margin-bottom: 15px;
}

.banner__themes {
  padding: 50px 0;
  background-image: linear-gradient(to right top, rgb(210, 238, 224) 0%, rgba(212, 243, 222, 0.5) 50%, rgb(166, 238, 193) 100%);
}

.banner__themes-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.banner__themes-list li svg{
  width: 40px;
}

.banner__themes-list li p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 24px;
  color: var(--gray4);
  margin: 0;
}

.themes__carousel {
  margin-top: 40px;
}

.themes__carousel-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

.themes__carousel-img {
  position: relative;
  padding-bottom: 100%;
}

.themes__carousel-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.themes__carousel-item-info {
  padding: 20px;
  background-color: var(--white);
}

.themes__carousel-item h4 {
  font-weight: bold;
  margin-bottom: 5px;
}

.themes__carousel-item p {
  color: var(--gray4);
  margin-bottom: 0;
}

.slick--btns .slick-next,
.slick--btns .slick-prev {
    outline: none;
    border: 0;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--green3);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    transition: .3s;
}

.slick--btns .slick-next:hover,
.slick--btns .slick-prev:hover {
  background-color: var(--green3);
  color: var(--white);
}

.banner__nav {
    padding: 20px 0;
    border-bottom: 1px solid green;
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.banner__nav-list {
  display: flex;
  gap: 2%;
}

.banner__nav-list .banner__nav-item {
  padding: 20px 0;
  position: relative;
}

.banner__nav-list .banner__nav-item:hover .banner__nav-sub-list {
  transform: scaleY(1);
}

.banner__nav-list .banner__nav-item .banner__nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
}

.banner__nav-list .banner__nav-link span {
  color: var(--text2);
  margin-left: 5px;
  transition: .3s;
  font-weight: 600;
}

.banner__nav-list .banner__nav-item:hover .banner__nav-link span {
  color: var(--green3);
}

.banner__nav .banner__nav-sub-list {
    position: absolute;
    top: 71px;
    left: 0;
    z-index: 9;
    background: var(--white);
    border: 1px solid var(--light4);
    width: 280px;
    padding: 0 15px;
    transform: scaleY(0);    
    transform-origin: top;
    transition: .3s;
}

.banner__nav .banner__nav-sub-list a {
    line-height: normal;
    height: auto;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text3);
    display: block;
    border-bottom: 1px solid var(--light4);
    font-weight: 600;
    transition: .3s;
}

.banner__nav .banner__nav-sub-list li:hover a{
  color: var(--green3);
  padding-left: 10px;
}

.themes__search {
    display: flex;
    justify-content: space-between;
    padding: 4px 5px 4px 20px;
    background: var(--light5);
    border-radius: 50px;
}

.themes__search input {
    outline: none;
    border: 0;
    background: transparent;
    color: var(--green1);
    flex: 1;
    width: 100%;
}

.themes__search input::placeholder {
  color: var(--green1);
}

.sec__products-slide .products__theme-title {
  margin-bottom: 30px;
}

.products__theme-title {
  text-align: center;
  margin-bottom: 50px;
}

.products__theme-title h3 {
  font-weight: bold;
}

.products__theme-title p {
  color: var(--green3);
  font-size: 1.25rem;
}

.products__theme-item {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  position: relative;
}

.products__theme-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 0px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--green1);
  transition: 0.3s;
}

.products__theme-item:hover::after {
  height: 4px;
}

.products__theme-item-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.products__theme-item-img img {
  position: absolute;
  bottom: 100%;
  transform: translateY(100%);
  left: 0;
  width: 100%;
  transition: 4s;
}

.products__theme-item-img:hover img {
  bottom: 0;
  transform: translateY(0);
}

.products__theme-item-info {
  padding: 20px;
  background-color: var(--white);
}

.products__theme-item-info p {
  color: var(--gray4);
}

.theme__products-more-link {
  width: 100%;
  font-size: 1rem;
  color: var(--green3);
  font-weight: bold;
}

.theme__products-more-link i {
  font-size: .75rem;
  transition: .3s;
}

.theme__products-more-link:hover i {
  margin-left: 10px;
}

.sec__products-theme--bg {
  background-color: var(--green4);
  padding: 50px 0;
}

.space--themes-slide .slick-slide {
  margin: 0 15px;
}

.products__themes-slide-list .slick-next,
.products__theme-slide-js .slick-next {
  right: -25px;
  opacity: 0;
  transition: .3s;
}

.products__themes-slide-list .slick-prev,
.products__theme-slide-js .slick-prev {
  left: -25px;
  opacity: 0;
  transition: .3s;
}

.products__themes-slide-list .slick-list,
.products__theme-slide-js .slick-list{
  padding: 20px 0;
}


.products__themes-slide-list:hover .slick-next,
.products__theme-slide-js:hover .slick-next {
  right: 0;
  opacity: 1;
}

.products__themes-slide-list:hover .slick-prev,
.products__theme-slide-js:hover .slick-prev {
  left: 0;
  opacity: 1;
}

.products__theme-category-item {
  margin-bottom: 50px;
}

.products__theme-category-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 1.125rem;
  color: var(--gray4);
  font-weight: bold;
  transition: .3s;
}

.products__theme-category-item a:hover {
  color: var(--green2);
}

.products__theme-category-item a:hover img {
  transform: scaleX(-1);
}

.products__theme-category-item img {
  width: 115px;
  transition: .3s;
}

.contact-vr {
  position: fixed;
  left: 0px;
  width: 100%;
  bottom: 25px;
  z-index: 1;
}

.products__detail .products__title h5 {
  font-size: 30px;
  text-align: center;
  color: var(--gray4);
  font-weight: 600;
}

.details__image {
  margin-bottom: 20px;
}

.details__image-nav img {
  margin: 0 5px;
  transition: .3s;
  cursor: pointer;
}

.details__image-nav img:hover {
  opacity: 0.8;
}

.details__title {
  font-weight: bold;
  line-height: 1.6;
  text-overflow: ellipsis;
  overflow: hidden;
}

.details-price {
  margin-top: 15px;
}

.details-price .price__text {
  color: var(--text2);
  font-size: 1rem;
  font-weight: 600;
}

.details-price .price {
  font-size: 1.25rem;
  color: var(--red1);
  font-weight: 700;
}

.about__product p:first-child {
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: capitalize;
  font-family: "Exo", serif;
  color: var(--text2);
  margin-bottom: 10px;
}

.about__product p:nth-child(2) {
  font-size: 0.938rem;
  line-height: 1.8;
}

.about__product-list li {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 10px;
}

.about__product-list .check {
    width: 20px;
    height: 20px;
    background: var(--green2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    border-radius: 50%;
    font-size: 10px;
}

.about__product-list .about__product-info {
  font-weight: 600;
}

.purchase-info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.purchase__control {
    border: 1.5px solid var(--gray3);
    border-radius: 25px;
    text-align: center;
    padding: 4px 7px 4px 10px;
    outline: 0;
    width: 70px;
}

.products__detail .social-links {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 20px;
}

.products__detail .social-links p {
  margin-bottom: 0;
  font-style: italic;
  font-size: .875rem;
}

.products__detail .social-links ul {
  display: flex;
  gap: 20px;
}

.products__detail .social-links ul li a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--green12);
    color: var(--green12);
    border-radius: 50%;
}

.products__detail .social-links ul li a:hover {
  background: var(--green12);
  color: var(--white);
}

.products__more-list .slick-list {
  padding: 20px 0;
}

.products__more-item {
  box-shadow: 0 0 10px rgba(0,0,0,.3);
  margin: 0 10px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  border-bottom: 2px solid var(--green1);
}

.products__more-item h6 a {
    overflow: hidden; 
    text-overflow: ellipsis;
    display: block;
}

.products__more-item h6 a {
  color: var(--green1);
}

.products__more-content {
  padding: 15px;
}

.products__more-content h6 {
	line-height: 1.5em;
	height: 4.5em
}

.products__more-content p {
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 0.938rem;
}

.products__more-content p span {
	color: var(--red1);
}

.products__more-item .btn {
  font-size: .875rem;
  width: 100%;
}

.products__more-item .btn i {
  margin-right: 10px;
}

.socials__share {
  display: flex;
  align-items: center;
}

.socials__share p {
  margin-right: 15px;
  font-style: italic;
  margin-bottom: 0;
}

.socials__share ul {
  display: flex;
  gap: 20px;
  align-items: center;
}

.socials__share ul li a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--green11);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--green11);
    font-size: 20px;
    transition: .3s;
}

.socials__share ul li a:hover {
  background-color: var(--green11);
  color: var(--white);
}

.news__detail {
  margin-top: 25px;
}

.news__detail-head .views {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--gray4);
}

.news__detail-head .views b {
  color: var(--red1);
  font-size: 1.25rem;
}

.news__detail-head .views p {
  margin-bottom: 0;
}

.news__title {
    font-size: 2rem;
    margin-bottom: 18px;
    font-weight: 900;
    line-height: 1.5;
    color: var(--black3);
	text-align: center;
}

.news__detail-note {
    font-size: 1.25rem;
    color: var(--text);
    margin-bottom: 20px;
    font-weight: 600;
}

.news__author-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}

.news__author-name {
    display: flex;
    align-items: center;
    gap: 20px;
}

.news__author-name .name__img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.news__author-name p {
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.news__author-date-upload {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray4);
}

.news__author-date-upload i {
  font-size: 1.25rem;
}

.news__author-date-upload p {
    margin-bottom: 0;
    font-size: 0.938rem;
}

.news__more {
  position: sticky;
  top: 180px;
}

.title__news-more {
  text-align: center;
  color: var(--black3);
  font-weight: bold;
  margin-bottom: 30px;
}

.news__more-item {
  margin-bottom: 40px;
}

.news__more-item:hover .news__more-img img {
  transform: scale(1.1);
}

.news__more-item:hover .news__more-content a {
  color: var(--red1);
}

.news__more-img {
  border-radius: 10px;
  max-height: 240px;
  overflow: hidden;
  display: block;
}

.news__more-img img{
  transition: .3s;
}

.news__more-time {
    color: var(--red1);
    font-weight: bold;
    font-size: 0.813rem;
    margin-top: 12px;
    margin-bottom: 9px;
}

.news__more-content a {
    font-weight: bold;
    font-size: 1.125rem;
    line-height: 1.5;
    color: var(--black3);
    transition: .3s;
}

.contact__top-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
  padding: 25px 10px;
}

.contact__top-item:hover::before,
.contact__top-item:hover::after {
  width: 100%;
}

.contact__top-item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  background-color: var(--green11);
  height: 3px;
  transition: .3s;
}

.contact__top-item::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  background-color: var(--green11);
  height: 3px;
  transition: .3s;
}

.contact__top-item:hover i{
  transform: translateY(-10px);
  color: var(--red1);
}

.contact__top-item i {
  font-size: 2.5rem;
  color: var(--gray2);
  transition: .3s;
}

.contact__top-item h6 {
    font-size: 1rem;
    margin-top: 20px;
    font-weight: bold;
    color: var(--gray4);
}

.contact__top-item p {
  color: var(--gray2);
  text-align: center;
  transition: .3s;
}

.contact__top-item:hover p {
  color: var(--red1);
}

.contact__form-title {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact__form input{
  width: 100%;
  border: 0;
  outline: none;
  margin-bottom: 15px;
  padding: 10px 20px;
  background-color: var(--light3);
  border-radius: 10px;
  color: var(--gray4);
  transition: .3s;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-left: 5px solid var(--green11);
}

.contact__form textarea {
  width: 100%;
  border: 0;
  background: var(--light3);
  color: var(--gray4);
  outline: none;
  padding: 10px 20px;
  transition: .3s;
  border-radius: 10px;
}

.contact__form button {
  min-width: 100px;
  margin-top: 20px;
  border-radius: 10px;
}

footer {
  min-height: 500px;
  padding: 40px 0;
  background-color: #222222;
  color: var(--white);
}

.footer-logo {
  margin-bottom: 15px;
  max-width: 300px;
  width: 100%;
}

footer .sub-title {
  margin-bottom: 0;
}

footer h5 {
  color: var(--white);
  font-size: 1.5rem;
}

.footer-info {
  text-align: center;
}

.footer-info i {
  margin-right: 7px;
}

.footer-info p {
  margin-bottom: 10px;
}

.footer-info p span {
  font-size: 15px;
}

.footer-map iframe {
  width: 100%;
  height: 282px;
  border-radius: 10px;
}

/* ----------------END OF STYLES.CSS---------------- */

/* -----------RESPONSIVE-------------- */

@media (min-width: 576px) {
  h3 {
    font-size: 1.875rem;
  }

  .space-ct1 {
    height: 80px;
  }

  .sec-customer {
    height: 300px;
  }

  .sec-customer .customer-img {
    width: 80px;
  }

  .sec-customer .customer-content .info {
    font-size: 1.875rem;
  }

  .sec-customer .customer-content .more-info {
    font-size: 1.125rem;
  }

  .products__prices b {
    font-size: 1rem;
  }

  .products__item-btns {
    flex-direction: column;
  }

  .products__item-btns a {
    font-size: 0.875rem;
  }
}

@media (min-width: 640px) {
  .breadcrumb-links > li:nth-child(n + 4) {
    display: block;
  }

  .breadcrumb-links li:first-child .breadcrumb-text {
    display: block;
  }
}

@media (min-width: 768px) {
  h3 {
    font-size: 2.188rem;
  }

  .products__item-title h6 {
    font-size: .75rem;
  }

  .products__prices {
    flex-direction: column;
  }

  .banner__nav {
    padding: 0;
    padding-bottom: 20px;
  }

  .sec__themes .swiper.themes__carousel  {
    width: 60%;
  }

  .details-price .price {
    font-size: 1.563rem;
  }

  .details-price .price__text {
    font-size: 1.25rem;
  }
  
}

@media (min-width: 992px) {
  .navbar-nav {
    gap: 20px;
    overflow: visible;
  }
  
  .main__slider {
    margin-top: 143px;
    height: 700px;
  }

  .main__slider h1 {
    font-size: 3rem;
  }

  .main__slider p {
    font-size: 1.125rem;
  }

  .banner__nav {
    padding: 0;
  }

  .title__ct1 h2,
  .title__ct2 h2 {
    font-size: 2.813rem;
  }
  
  .title__ct1 p,
  .title__ct2 p {
    font-size: 1.125rem;
  }

  .navbar-light .navbar-nav .nav-link {
    padding: 0;
    font-size: 0.813rem;
  }

  .navbar-light .navbar-nav .nav-link::after,
  .navbar-light .navbar-nav .nav-link.active::after {
    left: 0;
  }

  .navbar-nav {
    gap: 20px;
  }

  .collapse,
  .collapse.show {
    position: static;
    box-shadow: none;
    transform: none;
    transition: none;
  }

  .nav-mobile {
    width: auto;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 250%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }

  .dropdown-menu::after {
    content: "";
    display: block;
    height: 10px;
    background-color: transparent;
    position: absolute;
    top: -10px;
    width: 100%;
    left: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    top: 150%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }

  .sub-menu {
    background: var(--white);
    position: absolute;
    min-width: 160px;
    left: 110%;
    top: 0;
    border-radius: 7px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(50%);
    transition: 0.5s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  }

  .sub-menu-txt-icon i {
    transform: rotate(0deg);
  }

  .menu {
    display: none;
  }

  .space-banner {
    margin-top: 143px;
  }

  .theme-btn-s3 {
    font-size: 1rem;
    padding: 0;
  }

  .theme-btn-s2,
  .theme-btn {
    padding: 9px 16px;
    font-size: 1rem;
  }

  .sec-customer .customer-item {
    margin-bottom: 0;
  }

  .sec-news-item .news-img {
    margin-bottom: 0;
  }

  .dropdown-menu-title {
    display: flex;
    position: static;
    border: 0;
    column-gap: 15px;
    row-gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
  }

  .dropdown-menu.show {
    display: none;
  }

  .side__bar-mobile {
    position: static;
    background: #fff;
    z-index: 0;
    padding: 0 12px;
    width: 25%;
    transform: translateX(0);
    box-shadow: none;
    height: auto;
  }

  .side-bar__top-list {
    height: auto;
    overflow: visible;
  }

  .side__bar-mobile .btn__side-bar-mb {
    display: none;
  }

  .themes__carousel {
    margin-top: 0;
  }

  .contact-vr {
    left: 30px;
    width: auto;
  }

  .news__detail {
    margin-top: 60px;
  } 

  .news__title {
    text-align: left;
  }

  .news__detail-note {
    font-size: 1.625rem;
  }

  .footer-info {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .col-xl-24 {
    width: 20%;
  }
  
  .navbar-nav {
    gap: 35px;
  }

  .navbar-light .navbar-nav .nav-link {
    font-size: 0.875rem;
  }

  .news__author-wrap {
    gap: 40px;
  }

  .sec-customer {
    height: 200px;
  }
  
  .banner__nav-list {
	gap: 5%;
  }
}

@media (min-width: 1400px) {
	.header__mail {
		display: inline-block;
	}
	
	.navbar-nav {
	  gap: 40px;
	}
}

/* -----------END OF RESPONSIVE-------------- */

/* ----------------ANIMATION---------------- */

@keyframes wave1 {
  0% {
    box-shadow: 0 0 0px 0px rgba(0, 103, 54, 1);
  }
  100% {
    box-shadow: 0 0 0px 10px transparent;
  }
}
@keyframes wave2 {
  0% {
    box-shadow: 0 0 0px 0px rgba(23, 118, 242, 1);
  }
  100% {
    box-shadow: 0 0 0px 10px transparent;
  }
}
@keyframes wave3 {
  0% {
    box-shadow: 0 0 0px 0px rgba(33, 150, 243, 1);
  }
  100% {
    box-shadow: 0 0 0px 10px transparent;
  }
}
@keyframes wave4 {
  0% {
    box-shadow: 0 0 0px 0px rgba(221, 51, 51, 1);
  }
  100% {
    box-shadow: 0 0 0px 10px transparent;
  }
}

@keyframes wave5 {
  0% {
    box-shadow: 0 0 0px 0px rgba(0, 103, 54, 1);
  }
  100% {
    box-shadow: 0 0 0px 10px transparent;
  }
}

@keyframes rotate-shake {
  0% {
    transform: rotate(-20deg);
  }
  5% {
    transform: rotate(20deg);
  }
  10% {
    transform: rotate(-20deg);
  }
  15% {
    transform: rotate(20deg);
  }
  20% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes leftToRight {
  0% {
    transform: translateX(0%);
  }
  80% {
    transform: translateX(-30%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes showSlide {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes escaleY {
  0%, 80%, 100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-100%);
  }
}

/* ----------------END OF ANIMATION---------------- */
