@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap');

::selection {
  background-color: #777777db;
  color: #fff;
}

::-moz-selection {
  background-color: #777777db;
  color: #fff;
}

:root {
  --theme-color-red: #e6201c;
  --theme-color-black: #000000;
  --theme-color-blue: #1167b1;
}

.bg-light {
  background-color: #fff !important;
  font-family: 'Work Sans', sans-serif !important;
}

.container {
  padding: 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-container-left {
  display: flex;
  width: 250px;
}

.header-logo,
.header-logo > a {
  display: flex;
  width: 100%;
}

.header-logo > a > img {
  width: 100%;
}

.header-container-menu #cssmenu > ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1rem;
}

.header-container-right {
  display: flex;
  width: 150px;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.header-container-center {
  display: flex;
  width: calc(100% - 400px);
  align-items: center;
  justify-content: center;
}

.header-container-menu #cssmenu > ul > li > a {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  padding: .5rem;
  color: #fff;
  cursor: pointer;
  transition: .2s ease-in-out;
}

.header-container-menu #cssmenu > ul > li.current-menu-item > a,
.header-container-menu #cssmenu > ul > li > a:hover {
  color: var(--theme-color-red);
}


.header-wrapper {
  width: 100%;
  z-index: 999;
  padding: .5rem 0;
  background-color: var(--theme-color-black);
  transition: .3s ease;
}

.header-wrapper.fixed{
  background-color: #000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.header-container-right > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--theme-color-red);
}

.header-container-right > div > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.header-container-right > div i {
  font-size: 18px;
  color: #fff;
}

.header-wrapper.sticked {
  background-color: var(--theme-color-black);
}

.home-page-about-wrapper {
  display: flex;
  align-items: flex-start;
  padding: 3rem;
  gap: 2rem;
  margin-top: 0;
}

.home-page-about-wrapper > div {
  width: calc(50% - (2rem) / 2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-about-title > span {
  font-weight: 500;
  font-size: 44px;
  display: flex;
  line-height: 1;
  color: var(--theme-color-blue);
}

.home-about-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.home-about-btn > a {
  display: flex;
  padding: .5rem 1.5rem;
  border: 1px solid var(--theme-color-blue);
  font-size: 17px;
  font-weight: 500;
  color: var(--theme-color-blue);
  border-radius: 25px;
  margin-top: 1.5rem;
  transition: .2s ease-in-out;
}

.home-about-btn > a:hover {
  background-color: var(--theme-color-blue);
  color: #fff;
}

.section-block-container {
  display: flex;
  gap: 1rem;
}

.section-block-content {
  display: flex;
  flex-direction: column;
  width: calc(25% - (1rem * 3) / 4);
}

.section-block-image {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.section-block-image > img {
  width: 100%;
  transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-block-content:hover .section-block-image > img {
  transform: scale(1.1);
}

.section-block-title {
  font-size: 18px;
  font-weight: 500;
  color: var(--theme-color-blue);
}

.section-block-text-top > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
  gap: 0.5rem;
  display: flex;
  flex-direction: column;
}

.section-block-text-top > ul > li > span {
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-color-black);
}

.section-block-btn {
  display: flex;
  justify-content: flex-start;
}

.section-block-btn > a {
  background-color: var(--theme-color-blue);
  padding: .5rem;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: .2s ease-in-out;
}

.section-block-btn > a:hover {
  background-color: transparent;
  color: var(--theme-color-blue);
  border: 1px solid var(--theme-color-blue);
}

.section-block-text {
  padding: 1rem;
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
}

.section-block-wrapper {
  padding: 2rem;
  background-color: #eff5f8;
}

.six-box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.six-box-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--theme-color-blue);
  width: calc(33.33% - (2rem * 2) / 3);
  padding: 4rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.six-box-image {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}

.six-box-image > img {
  width: 100px;
  height: 100px;
}

.six-box-name {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
}

.six-box-wrapper {
  margin-top: 2rem;
}

.six-box-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem;
  background-color: rgba(255, 255, 255, .9);
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
}

.six-box-overlay-content {
  display: flex;
  font-size: 14px;
  color: var(--theme-color-black);
  font-weight: 400;
  text-align: start;
  line-height: 26px;
}

.six-box-content:hover .six-box-overlay {
  opacity: 1;
  visibility: visible;
}

.home-page-gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.home-page-gallery-content {
  display: flex;
  width: calc(33.33% - (.5rem * 2) / 3);
  position: relative;
}

.home-page-gallery-content > a {
  display: flex;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
}

.home-page-gallery-content > a > img {
  width: 100%;
}

.home-page-gallery-content > a::before {
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: .3s ease-in-out;
}

.home-page-gallery-content:hover > a::before {
  opacity: 1;
  visibility: visible;
}

.home-page-gallery-wrapper {
  margin-top: 2rem;
}

.home-page-gallery-title {
  font-size: 35px;
  font-weight: 600;
}

.home-page-gallery-desc {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

.home-page-gallery-text {
  padding: 2rem 0;
}

.references-wrapper {
  margin-top: 2rem;
  background-color: #F8F8FC;
  padding: 3rem;
}

.references-title {
  margin-bottom: 2rem;
}

.references-title > span {
  font-size: 35px;
  font-weight: 600;
}

.references-content,
.references-content .references-image {
  display: flex;
  width: 100%;
  padding: 0.5rem;
  background-color: #fff;
}

.references-content .references-image > img {
  width: 100%;
  filter: grayscale(1);
  transition: .3s ease-in-out;
}

.references-content:hover .references-image > img {
  filter: grayscale(0);
}

.referencesSwiper .swiper-button-next {
  right: 0;
}

.referencesSwiper .swiper-button-prev {
  left: 0;
}

.referencesSwiper .swiper-button-prev::after,
.referencesSwiper .swiper-button-next::after {
  font-size: 35px;
  color: var(--theme-color-black);
}

.footer-wrapper {
  position: relative;
  padding: 5rem 3rem;
  margin-top: 2rem;
}

.footer-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(40deg, rgba(20, 20, 22, 0.85) 30%, rgb(20, 20, 22) 100%);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  padding: 2rem 0;
  gap: 2rem;
}

.footer-logo {
  width: 180px;
}

.footer-logo > a,
.footer-logo > a > img {
  display: flex;
  width: 100%;
}

.footer-info > span {
  color: #999;
  font-weight: 400;
  font-size: 12px;
  width: 100%;
  display: flex;
}

.footer-info {
  margin-top: 2rem;
}

.footer-list > ul {
  list-style: none;
  margin: 0;
}

.footer-list > ul > li > a {
  font-size: 17px;
  font-weight: 600;
  color: #999;
  transition: .2s ease-in-out;
}

.footer-list > ul > li:not(:last-child) {
  margin-bottom: 1rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
}

.footer-contact > a {
  font-size: 20px;
  font-weight: 600;
  color: #f0f0f0;
  display: flex;
  align-items: center;
}

.footer-contact > a > i {
  color: var(--theme-color-red);
  display: flex;
  margin-right: 1rem;
}

.footer-social > ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 1rem;
}

.footer-social > ul > li > a > i {
  font-size: 20px;
  color: var(--theme-color-red);
}

.footer-social > ul > li:not(:last-child) {
  margin-right: 1rem;
}

.footer-social-title {
  font-size: 18px;
  font-weight: 400;
  color: #f0f0f0;
}

.footer-social {
  margin-top: 2rem;
}

.footer-list {
  width: calc(25% - (2rem * 3) / 4);
}

.services-wrapper {
  margin-top: 2rem;
}

.service-title {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-title > span {
  font-size: 30px;
  font-weight: 600;
}

.services-contain {
  display: flex;
  padding: 1rem;
  gap: 1rem;
}

.services-content {
  display: flex;
  width: calc(25% - (1rem * 3) / 4);
  position: relative;
}

.services-image {
  display: flex;
  width: 100%;
}

.services-image > a {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.services-image > a > img {
  width: 100%;
  transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.services-name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, .9);
}

.services-name > a {
  display: flex;
  padding: 1rem .5rem;
  font-size: 12px;
  font-weight: 600;
  color: #333;
}

.services-content:hover .services-image > a > img {
  transform: scale(1.1);
}

.home-tab-wrapper {
  margin-top: 2rem;
}

.home-tab-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.home-tab-nav > ul > li > a {
  background-color: transparent !important;
  color: #333 !important;
  font-size: 18px;
  font-weight: 600;
  transition: .2s ease-in-out;
}

.home-tab-nav > ul > li > a:hover,
.home-tab-nav > ul > li > a.active {
  color: var(--theme-color-red) !important;
}

.home-tab-nav > ul > li:not(:last-child) {
  display: flex;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding-right: 1rem;
}

.tab-pane-name {
  font-size: 45px;
  font-weight: 600;
}

.tab-pane-desc {
  font-size: 16px;
  font-weight: 400;
  margin-top: 2rem;
}

.tab-pane-bottom > ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tab-pane-bottom > ul > li > a {
  display: flex;
  align-items: center;
  padding: 1rem;
}

.tab-pane-ikon {
  display: flex;
  max-width: 50px;
  max-height: 50px;
}

.tab-pane-ikon > img {
  width: 100%;
  height: 100%;
}

.tab-pane-text {
  width: calc(100% - 50px);
  margin-left: 2rem;
}

.tab-pane-text > span {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  display: flex;
  margin-bottom: 1rem;
}

.tab-pane-text > p {
  font-size: 15px;
  font-weight: 300;
  color: var(--theme-color-black);
}

.tab-pane-bottom > ul > li:not(:last-child) > a {
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.tab-pane-bottom {
  margin-top: 2rem;
}

.home-tab-content {
  padding: 1.5rem;
  border-radius: 5px;
  padding-top: 0;
}

.footer-list > ul > li > a:hover {
  color: #fff;
}

.contact-title {
  font-size: 30px;
  font-weight: 500;
  color: #333;
  margin-bottom: 1rem;
}

.contact-wrapper {
  padding: 3rem;
}

.contact-social > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.5rem;
}

.contact-social > ul > li {
  display: flex;
  width: 50px;
  height: 50px;
  box-shadow: 0 0 0 2px #e8e8e8 inset;
  border-radius: 5px;
  overflow: hidden;
}

.contact-social > ul > li > a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  transition: .2s ease-in-out;
}

.contact-social > ul > li > a > i {
  font-size: 20px;
}

.contact-social {
  margin-bottom: 2rem;
}



.contact-social > ul > li:nth-child(1) > a > i {
  color: transparent;
  background: -webkit-radial-gradient(30% 107%, circle, #fdf497 0%, #fdf497 5%, #fd5949 45%,
      #d6249f 60%, #285aeb 90%);
  background: -o-radial-gradient(30% 107%, circle, #fdf497 0%, #fdf497 5%, #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  -webkit-background-clip: text;
}

.contact-social > ul > li:nth-child(2) > a > i {
  color: #3b5998;
}


.contact-social > ul > li:hover:nth-child(1) > a {
  background: -webkit-radial-gradient(30% 107%, circle, #fdf497 0%, #fdf497 5%, #fd5949 45%,
      #d6249f 60%, #285aeb 90%);
  background: -o-radial-gradient(30% 107%, circle, #fdf497 0%, #fdf497 5%, #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%);
}

.contact-social > ul > li:hover:nth-child(2) > a {
  background-color: #3b5998;
}

.contact-social > ul > li:hover > a > i {
  color: #fff;
  background: transparent;
}

.contact-info > ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info > ul > li:not(:last-child) {
  margin-bottom: 1.5rem;
}

.contact-info > ul > li > a {
  display: flex;
  align-items: center;
}

.contact-info > ul > li > a > i {
  min-width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--theme-color-red);
  border-radius: 50%;
  font-size: 25px;
  color: var(--theme-color-red);
}

.contact-info > ul > li > a > span {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  display: flex;
  margin-left: 2rem;
}

.contact-container-top {
  display: flex;
}

.contact-container-left {
  width: 35%;
}

.contact-container-right {
  width: 65%;
  margin-left: 3rem;
}

.form-wrapper-top .form-contain {
  display: flex;
  width: 100%;
  position: relative;
  flex-direction: column;
}

.form-wrapper-top .form-contain input {
  border: 2px solid rgba(0, 0, 0, .1);
  background-color: #f0f0f0;
  border-radius: 3px;
  outline: 0;
  box-shadow: none;
  padding-left: 45px;
  height: 45px;
  color: #999;
}

.form-wrapper-top .form-contain i {
  position: absolute;
  left: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #999;
}

.form-wrapper-top .form-contain textarea {
  border: 2px solid rgba(0, 0, 0, .1);
  background-color: #f0f0f0;
  border-radius: 3px;
  outline: 0;
  box-shadow: none;
  padding-left: 45px;
  color: #999;
}

.form-wrapper-top .form-contain:not(:nth-child(4)) {
  height: 45px;
}

.form-wrapper-top {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-wrapper-top .form-contain:focus-within textarea,
.form-wrapper-top .form-contain:focus-within input {
  border-color: var(--theme-color-red);
}

.form-wrapper-top .form-contain:focus-within i {
  color: var(--theme-color-red);
}

.form-wrapper-bottom {
  display: flex;
  width: 180px;
}

.form-wrapper-bottom > input {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 5px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  background-color: var(--theme-color-red) !important;
  border: none !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.form-wrapper-top p {
  margin: 0;
}

.contact-form-title > span {
  font-size: 17px;
  font-weight: 400;
  color: #000;
}

.contact-form-title {
  margin-bottom: 3rem;
}

.contact-container-center {
  margin-top: 2rem;
}

.dealer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}

.dealer-contain {
  display: flex;
  flex-direction: column;
  position: relative;
  width: calc(50% - (1.5rem) / 2);
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 5px;
}

.dealer-contain-name {
  font-size: 19px;
  font-weight: 600;
  color: var(--theme-color-blue);
  margin-bottom: 1rem;
}

.dealer-contain-address {
  font-size: 15px;
  font-weight: 400;
  color: #333;
}

.dealer-contain-bottom {
  margin-top: 2rem;
}

.dealer-social-list > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dealer-social-list > ul > li > i {
  font-size: 17px;
  display: flex;
  margin-right: 1rem;
}

.dealer-social-list > ul > li {
  display: flex;
  align-items: center;
}

.dealer-social-list > ul > li:not(:last-child) {
  margin-bottom: 0.5rem;
}

.dealer-social-list > ul > li > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-color-blue);
  text-decoration: underline;
}

.dealer-social-list > ul > li > a:hover {
  text-decoration: none;
}

.dealer-title {
  border-top: 5px solid var(--theme-color-red);
  border-top-style: dotted;
  display: flex;
  position: relative;
  margin-top: 3rem;
}

.dealer-title > span {
  font-size: 30px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  background-color: #fff;
  z-index: 9;
}

.category-page-top {
  position: relative;
  padding: 3rem;
}

.category-page-top::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.category-top-container {
  position: relative;
  z-index: 9;
}

.breadcrumb-container > ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid #999;
  padding-top: 0;
}

.breadcrumb-container > ul > li > a {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.breadcrumb-container > ul > li:not(:last-child) {
  padding-right: 1rem;
}

.active-category-name {
  font-weight: 600;
  font-size: 55px;
  color: #fff;
}

.active-category-desc {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.active-category-info {
  margin-top: 1rem;
}

.category-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.category-list {
  display: flex;
  width: calc(50% - (2rem) / 2);
  height: 500px;
}

.category-list > a {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.category-list-image {
  display: flex;
  width: 100%;
  height: 100%;
}

.category-list-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
}


.category-list-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

.category-list > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 20, 22, 0.7) 0%, rgba(20, 20, 22, 0.19) 90%);
  z-index: 9;
}

.category-list-name {
  font-size: 25px;
  color: #fff;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.category-list > a:hover .category-list-image > img {
  transform: scale(1.1);
}

.category-list-ikon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.category-list-ikon > img {
  width: 100%;
  height: 100%;
}

.category-list-title,
.post-list-title {
  font-weight: 700;
  font-size: 35px;
  color: #000;
  padding: 2rem 0;
}

.post-list-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.post-list {
  display: flex;
  width: calc(50% - (2rem) / 2);
  height: 350px;
}

.post-list > a {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.post-list-image {
  display: flex;
  width: 100%;
  height: 100%;
}

.post-list-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.post-list > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 20, 22, 0.7) 0%, rgba(20, 20, 22, 0.19) 90%);
  z-index: 9;
}

.post-list-absolute {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  z-index: 99;
  padding: 0 4rem;
}

.post-list-name {
  font-size: 25px;
  color: #fff;
  font-weight: 500;
  width: 100%;
}

.post-list-desc {
  font-size: 13px;
  color: #ffffffdb;
  font-weight: 400;
  margin-top: 1rem;
}

.post-list > a:hover .post-list-image > img {
  transform: scale(1.1);
}

.post-top-info {
  margin-top: 1rem;
}

.post-top-name {
  font-size: 55px;
  color: #fff;
  font-weight: 600;
}

.post-top-desc {
  font-weight: 400;
  font-size: 16px;
  color: #fff;
}

.post-page-wrapper {
  padding: 3rem;
  background-color: #000000db;
}

.product-page-desc {
  font-size: 17px;
  font-weight: 400;
  color: #000;
  line-height: 33px;
  padding: 2rem 0;
}

.mobile-menu-remove {
  display: none;
}

.mobile-menu-btn{
  display: none !important;
}

@media screen and (max-width:992px) {
  .header-container-center {
    position: fixed;
    top: 0;
    left: -100%;
    width: 50%;
    background-color: #fff;
    height: 100%;
    align-items: flex-start;
    z-index: 99999;
    flex-direction: column;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out 0s;
  }

  .header-container-center.active {
    left: 0;
    opacity: 1;
    visibility: visible;
  }


  .header-container-menu #cssmenu > ul > li > a {
    color: #000;
    width: 100%;
    padding: 1rem;
  }

  .header-container-menu #cssmenu > ul {
    flex-direction: column;
    gap: 0;
  }

  .header-container-menu {
    width: 100%;
  }

  .header-container-menu #cssmenu > ul > li:not(:last-child) > a {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }

  .mobile-menu-remove {
    display: flex;
    width: 100%;
    justify-content: flex-end;
    padding: .5rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
  }

  .remove-btn {
    display: flex;
  }

  .remove-btn > i {
    font-size: 20px;
  }

  .mobile-menu-btn {
    display: flex !important;
  }

  .megamenu-overlay {
    position: fixed;
    background: rgba(0, 0, 0, 80%);
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }

  .megamenu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media screen and (max-width:769px) {

  .six-box-content,
  .home-page-gallery-content,
  .services-content,
  .section-block-content {
    width: calc(50% - (2rem) / 2);
  }

  .services-contain {
    flex-wrap: wrap;
  }

  .section-block-container {
    flex-wrap: wrap;
  }

  .home-page-about-wrapper {
    flex-direction: column;
  }

  .home-page-about-wrapper > div {
    width: 100%;
  }

  .category-list {
    height: 300px;
  }

  .contact-container-top {
    flex-direction: column;
  }

  .contact-container-left,
  .contact-container-right {
    width: 100%;
  }

  .contact-container {
    max-width: 100%;
  }

  .contact-container-right {
    margin: 0;
    margin-top: 2rem;
  }

  .footer-container {
    flex-direction: column;
    max-width: 100%;
    align-items: flex-start;
  }

  .footer-list {
    width: 100%;
  }

  .footer-list > ul {
    padding: 0;
  }

  .footer-wrapper {
    padding: 1rem;
  }
}

@media screen and (max-width:553px) {
  .home-about-title > span {
    font-size: 22px;
    line-height: 1.3;
  }

  .home-about-desc {
    font-size: 14px;
  }

  .section-block-content,
  .six-box-content,
  .home-page-gallery-content,
  .services-content {
    width: 100%;
  }

  .container {
    padding: 1rem;
  }

  .section-block-wrapper {
    padding: 0;
  }

  .home-page-gallery-title {
    text-align: center;
  }

  .home-page-gallery-desc {
    text-align: center;
  }

  .home-tab-nav > ul {
    flex-wrap: unset;
    justify-content: flex-start;
    overflow: auto;
  }

  .home-tab-nav > ul > li {
    width: 55%;
    flex-shrink: 0;
  }

  .home-tab-nav > ul > li > a {
    display: flex;
    width: 100%;
    padding: .3rem;
  }

  .tab-pane-bottom > ul > li > a {
    flex-direction: column;
    padding: 0;
  }

  .tab-pane-text {
    width: 100%;
    margin: 0;
  }

  .home-tab-content {
    padding: 0;
  }

  .tab-pane-ikon {
    margin-bottom: 1rem;
  }

  .tab-pane-text > span {
    font-size: 20px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .tab-pane-text > p {
    text-align: center;
  }

  .tab-pane-bottom > ul > li:not(:last-child) {
    margin-bottom: 1rem;
  }

  .home-page-about-wrapper {
    padding: 1.5rem;
  }

  .category-page-top {
    padding: 1rem;
  }

  .category-list-title,
  .post-list-title,
  .post-top-name {
    font-size: 25px;
  }

  .category-list {
    width: 100%;
  }

  .active-category-name {
    font-size: 35px;
  }

  .post-list {
    width: 100%;
  }

  .post-list-absolute {
    padding: 1rem;
  }

  .post-page-wrapper {
    padding: 1rem;
  }

  .dealer-contain {
    width: 100%;
  }

  .contact-wrapper {
    padding: 0;
  }

  .header-container-center {
    width: 85%;
  }

  .category-list-name {
    font-size: 23px;
  }

}

.metaslider {
  padding-top: 0 !important;
}