@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #f2a600;
  --theme2: #FFD531;
  --header: #121212;
  --text: #f5f5f4cc;
  --border: #2A2A2A;
  --body-bg: #121212;
  --bg: #171717;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}
.hero-info-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.info-group {
    display: flex;
    flex-direction: column;
}
.info-group.right {
    text-align: right;
}
.status-text {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}

.car-model {
    font-size: 18px;
    font-weight: 800;
    color: var(--theme);
}

.price-label {
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}
.price-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--theme);
}

.price-highlight {
    color: var(--theme);
    font-weight: 700;
    font-size: 40px !important;
}
.callback-bt {
    position: fixed;
    right: 8%;
    bottom: 10%;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #FFC107;
    border: 2px solid #FFC107;
    box-shadow: 0 8px 10px rgba(242,166,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
    z-index: 999;
    animation: hoverWave 2s infinite;
}

@keyframes hoverWave {
    0% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(255, 193, 7, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 193, 7, 0); }
}

.text-call .truck_signal {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: shake 1.5s infinite;
}

#phone-link {
    display: flex; 
}

.text-call .truck_signal::before {
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url("/assets/img/project/phone.svg") no-repeat center center;
    background-size: contain;
}

@keyframes shake {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(-25deg); }
    20% { transform: rotate(25deg); }
    30% { transform: rotate(-25deg); }
    40% { transform: rotate(25deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.callback-bt:hover {
    transform: scale(1.1);
}
:root {
--default-border-color: #555555;
--highlight-color: #FFC107;
--text-color: #ffffff;
}


.icon svg {
width: 40px;
height: 40px;
}
.language-switcher {
  display: flex;
  gap: 10px;
  margin-left: 20px;
}

.lang-btn {
  display: inline-block;
  padding: 5px 12px;
  border: 2px solid #333;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: #333;
  color: #fff;
}
/* Десктоп */
#desktop-menu, .language-switcher {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__hamburger {
  display: none;
}

@media (max-width: 991px) {
  #desktop-menu, .language-switcher {
    display: none; 
  }

  .header__hamburger {
    display: block;
    cursor: pointer;
  }


  .offcanvas__info {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    padding: 20px;
  }

  .offcanvas__info.info-open {
    right: 0;
  }

  .offcanvas__overlay.overlay-open {
    display: block;
  }

  .offcanvas__info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }

  .offcanvas__info ul li {
    margin: 10px 0;
  }

  .mobile-language-switcher {
    display: flex;
    gap: 10px;
  }
}
#callback-form {
    border: 2px solid;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.6);	
}
#callback-form h3{
	text-align: center;
}
.widget-head img
{width: 80px;}
.theme-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--theme);
  color: var(--header);
  font-size: 18px;
  font-weight: 700;
  padding: 22px 40px;
  transition: 0.5s ease-in-out;
  text-transform: capitalize;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
  border-radius: 120px;
  line-height: 1;
  font-family: "Kanit", sans-serif;
}
.theme-btn::after {
  content: "";
  background-color: var(--white);
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
  z-index: -1;
}
.theme-btn i {
  margin-left: 10px;
}
.theme-btn:hover {
  background-color: var(--white);
  color: var(--header);
}
.theme-btn:hover::after {
  clip-path: circle(100% at 50% 50%);
  transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 4s;
}
@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}
@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.theme-btn-2 {
  font-size: 16px;
  display: inline-block;
  font-weight: 700;
  color: var(--theme);
  text-transform: capitalize;
}
.theme-btn-2 i {
  margin-left: 10px;
}
.theme-btn-2:hover {
  color: var(--theme2);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Kanit", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Teko", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 55px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-size: 40px;
  line-height: 120%;
  font-weight: 700;
}
@media (max-width: 575px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 700;
}

h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 145%;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

.about-wrapper .about-image-items {
  margin-top: 30px;
  margin-right: 40px;
}
@media (max-width: 1199px) {
  .about-wrapper .about-image-items {
    margin-right: 0;
  }
}
.about-wrapper .about-image-items .support-content {
  background-color: var(--theme);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}
.about-wrapper .about-image-items .support-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--header);
}
.about-wrapper .about-image-items .support-content .text-area {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.about-wrapper .about-image-items .support-content .text-area p {
  font-size: 16px;
  color: var(--header);
  font-weight: 400;
}
.about-wrapper .about-image-items .support-content .text-area .icon {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 48px;
  text-align: center;
  line-height: 48px;
  color: var(--white);
  background-color: var(--header);
}
.about-wrapper .about-image-items .support-content .text-area .icon i {
  transform: rotate(-40deg);
}
.about-wrapper .about-image-items .about-image-2 {
  position: relative;
}
.about-wrapper .about-image-items .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.about-wrapper .about-image-items .about-image.style-2 {
  position: relative;
}
.about-wrapper .about-image-items .about-image.style-2 img {
  object-fit: cover;
}
.about-wrapper .about-content {
  margin-left: 70px;
  margin-top: 30px;
}
@media (max-width: 1600px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}
.about-wrapper .about-content .about-icon-items {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
}
.about-wrapper .about-content .about-icon-items .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  text-align: center;
  background-color: var(--theme);
  color: var(--header);
  font-size: 24px;
  position: relative;
}
.about-wrapper .about-content .about-icon-items .icon .line-bar {
  position: absolute;
  bottom: -68px;
  left: 50%;
  transform: translateX(-50%);
}
.about-wrapper .about-content .about-icon-items .content {
  flex-basis: 80%;
}
.about-wrapper .about-content .about-icon-items .content h3 {
  margin-bottom: 5px;
}

.brand-text {
  position: relative;
  margin-bottom: 50px;
}
.brand-text::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 86px;
  background-color: var(--border);
  top: 8px;
}
@media (max-width: 1399px) {
  .brand-text::before {
    display: none;
  }
}
.brand-text::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 945px;
  background-color: var(--border);
  top: 8px;
  right: 0;
}
@media (max-width: 1399px) {
  .brand-text::after {
    display: none;
  }
}
.brand-text h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--theme);
  padding-left: 110px;
}

.footer-widgets-wrapper {
  padding: 50px 0 80px;
  position: relative;
  z-index: 9;
}
.footer-widgets-wrapper .single-footer-widget {
  margin-top: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: bold;
  color: var(--white);
  font-size: 32px;
  display: inline-block;
}
@media (max-width: 767px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 23px;
  }
}
@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-size: 20px;
  }
}
.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  gap: 15px;
  margin-top: 30px;
}
.social-icon {
    gap: 18px;
}
.small-subtitle {
    color: var(--theme);
    font-weight: 600;
    text-transform: capitalize;
    font-size: 20px;
    position: relative;
    line-height: 1;
    margin-bottom: 15px;
}
.contact-icon {
    font-size: 30px;
    transition: 0.3s;
}

.contact-icon.telegram i {
    color: #229ED9 !important;
}
.contact-icon.viber i {
    color: #7360F2 !important;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  display: inline-block;
  background-color: #2A2A2A;
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text {
  margin-top: 25px;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h4 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Kanit", sans-serif;
  text-transform: lowercase;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h4 a {
  color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h5 {
  font-size: 20px;
  font-weight: 400;
  font-family: "Kanit", sans-serif;
  text-transform: lowercase;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .contact-text h5 a {
  color: var(--text);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  outline: none;
  width: 100%;
  color: rgba(245, 245, 244, 0.6);
  background-color: transparent;
  border: none;
  font-size: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: rgba(245, 245, 244, 0.6);
}
.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
  background-color: #2A2A2A;
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  color: var(--white);
  position: absolute;
  top: 0;
  right: 0;
}
.footer-widgets-wrapper .single-footer-widget .list-items li {
  text-transform: capitalize;
  background-image: linear-gradient(var(--theme), var(--theme));
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  display: table;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.footer-widgets-wrapper .single-footer-widget .list-items li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f061";
  font-family: "Font Awesome 6 Pro";
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li a {
  font-size: 18px;
  color: var(--text);
  position: relative;
  font-weight: 400;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover {
  background-size: 100% 1px;
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover::before {
  opacity: 1;
  visibility: visible;
  color: var(--theme);
}
.footer-widgets-wrapper .single-footer-widget .list-items li:hover a {
  padding-left: 25px;
  color: var(--theme);
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid var(--border);
}
.footer-bottom .footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .footer-bottom .footer-bottom-wrapper {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.footer-bottom p {
  color: var(--white);
  font-weight: 400;
}
.footer-bottom p a {
  color: var(--theme);
  font-weight: 400;
  text-decoration: underline;
}
.footer-section.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1D1D1D;
  z-index: -1;
  left: 73%;
}
@media (max-width: 1399px) {
  .footer-section.style-2::before {
    left: 0;
  }
}
.footer-right-content {
  padding-top: 80px;
  margin-right: -350px;
  text-align: center;
}
@media (max-width: 1899px) {
  .footer-right-content {
    margin-right: -75px;
  }
}
@media (max-width: 1399px) {
  .footer-right-content {
    margin-right: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.footer-right-content h2 {
  font-size: 40px;
  text-align: center;
}
.footer-right-content .radius-btn {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid var(--border);
  margin: 50px auto 0;
  padding-top: 50px;
}
.footer-right-content .radius-btn i {
  display: block;
  transform: rotate(-40deg);
  margin-bottom: 5px;
}
.footer-right-content .radius-btn:hover {
  background-color: var(--theme);
  color: var(--header);
}
.footer-right-content h4 {
  font-size: 20px;
  font-weight: 500;
  font-family: "Kanit", sans-serif;
  margin-top: 50px;
}
.footer-right-content p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 5px;
}

.footer-section.style-2 {
  position: relative;
  z-index: 9;
}
.footer-section.style-2::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1D1D1D;
  z-index: -1;
  left: 73%;
}
@media (max-width: 1399px) {
  .footer-section.style-2::before {
    left: 0;
  }
}

@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 32px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 240px;
  background: #120f0f;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 6px solid var(--theme);
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  width: 100%;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    flex-wrap: wrap;
  }
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  color: var(--header) !important;
  width: initial;
  font-size: 16px;
  text-align: center;
  border-radius: 0px !important;
  background-color: var(--theme);
  line-height: initial;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--header) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover::before {
  background-color: var(--header) !important;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(20, 19, 19, 0)), to(#5e5ef6));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #252527 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  transform: translateY(50%);
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}
.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 400;
  font-family: "Kanit", sans-serif;
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 24px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.sidebar__toggle::before {
content: "☰";
font-size: 24px;
cursor: pointer;
}
.header-1 {
  border-bottom: 1px solid #2A2A2A;
}
@media (max-width: 767px) {
  .header-1 .header-right {
    gap: 15px;
  }
}
.header-1 .header-right .header-button {
  display: flex;
  align-items: center;
  gap: 0;
}
.header-1 .header-right .header-button .search-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  color: var(--header);
  display: inline-block;
}
.header-1 .header-right .header-button .theme-btn {
  padding: 19px 30px;
}
@media (max-width: 1399px) {
  .header-1 .header-right .header-button .theme-btn {
    display: none;
  }
}
.header-1 .header-right .sidebar__toggle {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--header);
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: #181818;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.offcanvas__info {
  background: var(--bg) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 280px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas__content .text {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 20px 40px;
  text-transform: capitalize !important;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
  margin-top: 30px;
  gap: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}
.offcanvas__close{
  font-size: 40px;	
}
.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}
@media (max-width: 450px) {
  .offcanvas__info {
    width: 300px;
	height: 90%;
    border-radius: 25px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.error-content h2 {
  font-weight: 600;
  font-size: 320px;
  color: var(--theme);
  line-height: 1;
}
.error-content h2 span {
  color: var(--white);
}
@media (max-width: 1199px) {
  .error-content h2 {
    font-size: 300px;
  }
}
@media (max-width: 991px) {
  .error-content h2 {
    font-size: 200px;
  }
}
@media (max-width: 575px) {
  .error-content h2 {
    font-size: 110px;
  }
}
.error-content h3 {
  font-weight: 700;
  font-size: 40px;
}
.error-content p {
  max-width: 640px;
  margin: 20px auto 0;
}
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}
.fix {
  overflow: hidden;
}
.hero-phone-container {
    margin: 0 0 35px 0;
    display: flex;
    justify-content: center;
}
.hero-phone-button {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}


.hero-phone-button i {
    font-size: 24px;
}

.hero-map-frame {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
}

@media (max-width: 576px) {
    .hero-phone-button {
        font-size: 20px;
        padding: 12px 25px;
    }
    .hero-map-frame {
        height: 350px;
    }
}
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.form-select-custom {
    width: 100%;
    height: 55px;
    padding: 0 45px 0 15px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
    background: #fff;
    font-size: 15px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
}

.form-select-custom:hover {
    border-color: #ff3c00;
}

.form-select-custom:focus {
    outline: none;
    border-color: #ff3c00;
    box-shadow: 0 0 0 2px rgba(255,60,0,0.1);
}
.car-type-wrapper {
    position: relative;
}

.car-type-wrapper:after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #999;
    border-bottom: 2px solid #999;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
    transition: 0.3s;
}

.form-select-custom:focus + .arrow,
.form-select-custom:focus ~ :after {
    transform: translateY(-50%) rotate(-135deg);
}

textarea.form-control {
    height: 100px;
    resize: none;
}
#zamoviti{
padding-top: 50px;	
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: transparent;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border: 1px solid var(--border);
  color: var(--white);
  border-radius: 50%;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers.icon {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers.icon:hover {
  border: none;
  background-color: transparent;
  color: var(--theme);
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--header);
  border: 1px solid transparent;
}

.body-bg {
  background-color: var(--body-bg);
}

.hero-1 {
  position: relative;
}
@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 991px) {
  .hero-1 .hero-content h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-1 .hero-content h1 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 34px;
  }
}
.hero-1 .hero-content h1 span {
  color: var(--theme);
  text-decoration: underline;
}
@media (max-width: 575px) {
  .hero-1 .hero-content h1 img {
    width: 80px;
  }
}
.hero-1 .hero-content p {
  max-width: 600px;
  font-size: 20px;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .hero-1 .hero-content p {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-content p {
    font-size: 16px;
  }
}
.hero-1 .hero-image {
  margin-top: 50px;
}
.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-1 .hero-counter {
  padding: 40px;
  background-color: var(--theme);
  display: inline-block;
  width: 340px;
  position: absolute;
  top: 120px;
  right: 172px;
}

@media (max-width: 1600px) {
  .hero-1 .hero-counter {
    position: static;
    max-width: 1500px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
	z-index: 3;
	right: 0;
  }
}
@media (max-width: 575px) {
  .hero-1 .hero-counter {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}
.hero-1 .hero-counter .counter-items {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 1600px) {
  .hero-1 .hero-counter .counter-items {
    margin-bottom: 0;
  }
}
.hero-1 .hero-counter .counter-items:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--header);
}
@media (max-width: 1600px) {
  .hero-1 .hero-counter .counter-items:not(:last-child) {
    padding-bottom: 0;
    border: none;
  }
}
.hero-1 .hero-counter .counter-items h2 {
  font-size: 80px;
  font-weight: 600;
  color: var(--header);
}
@media (max-width: 991px) {
  .hero-1 .hero-counter .counter-items h2 {
    font-size: 55px;
  }
}
.hero-1 .hero-counter .counter-items p {
  text-transform: uppercase;
  color: var(--header);
  font-weight: 400;
}
.hero-1 .circle-item {
  width: 170px;
  height: 170px;
  line-height: 179px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--white);
  position: absolute;
  right: 30%;
  top: 25%;
  z-index: 3;
}
@media (max-width: 991px) {
  .hero-1 .circle-item {
    display: none;
  }
}
.hero-1 .circle-item .circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  top: -4%;
  left: 7%;
  animation: cir36 10s linear infinite;
}
.hero-1 .circle-item .border-line {
  border: 1px solid var(--white);
  border-radius: 50%;
  width: 76px;
  height: 76px;
  line-height: 76px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-1 .circle-item .border-line .arrow-icon {
    width: 40px;
    height: 40px;
    background-color: var(--theme);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    /* Убираем line-height и прочий мусор */
}

.hero-1 .circle-item .border-line .arrow-icon i {
  transform: rotate(-40deg);
}
.arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.arrow-icon::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: url("/assets/img/project/right-down.svg") no-repeat center center;
    background-size: contain;
}

.arrow-icon:hover {
    transform: translateX(5px);
}
@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.circle-text img {
    animation: rotateCircle 10s linear infinite;
    -webkit-animation: rotateCircle 10s linear infinite;
}

.circle-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-text {
    display: block;
}
.back-to-top::before{
content:"↑";
font-size:22px;
font-weight:bold;
}
.back-to-top {
  border-radius: 50%;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--header);
  position: fixed;
  display: inline-block;
  z-index: 99;
  left: 20px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.pricing-card-items {
  border-radius: 4px;
  border: 1px solid #2A2A2A;
  background: #171717;
  padding: 40px 32px;
}
.pricing-card-items .pricing-header {
  padding-bottom: 30px;
}
.pricing-card-items .pricing-header span {
  font-size: 22px;
  display: inline-block;
  margin-bottom: 20px;
}
.pricing-card-items .pricing-header h2 {
  font-size: 35px;
}
.pricing-card-items .pricing-header h2 sub {
  font-size: 18px;
  font-weight: 400;
  font-family: "Kanit", sans-serif;
}
.pricing-card-items .pricing-header p {
  margin-top: 10px;
  font-weight: 300;
}
.pricing-card-items .pricing-list {
  border-top: 1px solid #2A2A2A;
  padding-top: 30px;
}
.pricing-card-items .pricing-list li {
  font-weight: 300;
  position: relative;
  padding-left: 20px;
}
.pricing-card-items .pricing-list li::before {
  position: absolute;
  top: 11px;
  left: 0;
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 8px;
  background-color: var(--white);
}
.pricing-card-items .pricing-list li:not(:last-child) {
  margin-bottom: 20px;
}
.pricing-card-items .pricing-button {
  margin-top: 40px;
}
.pricing-card-items .pricing-button .theme-btn {
  border-radius: 4px;
  width: 100%;
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
  padding: 20px 40px;
}
.pricing-card-items .pricing-button .theme-btn::before, .pricing-card-items .pricing-button .theme-btn::after {
  background-color: var(--theme);
}
.pricing-card-items .pricing-button .theme-btn:hover {
  color: var(--header);
}

.portfolio-box-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
@media (max-width: 1199px) {
  .portfolio-box-items {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.portfolio-box-items .project-wrap {
  display: flex;
  align-items: center;
  gap: 80px;
}
@media (max-width: 991px) {
  .portfolio-box-items .project-wrap {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.portfolio-box-items .content {
  padding-right: 80px;
  border-right: 1px solid var(--border);
}
@media (max-width: 1199px) {
  .portfolio-box-items .content {
    padding-right: 0;
    border: none;
  }
}
.portfolio-box-items .content span {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 15px;
}
.portfolio-box-items .content h3 {
  font-size: 32px;
}
.portfolio-box-items .content h3 a:hover {
  color: var(--theme);
}
.portfolio-box-items p {
  max-width: 480px;
}
.portfolio-box-items .radius-btn {
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid var(--border);
  padding-top: 50px;
}
.portfolio-box-items .radius-btn i {
  display: block;
  transform: rotate(-40deg);
  margin-bottom: 5px;
}
.portfolio-box-items .radius-btn:hover {
  background-color: var(--theme);
  color: var(--header);
}
.portfolio-box-items .project-hover {
  width: 200px;
  height: 240px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(10deg);
  inset-inline-start: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: 75%;
  opacity: 0;
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  margin: -200px 0 0 -50px;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  visibility: hidden;
}
.portfolio-box-items:hover .project-hover {
  opacity: 1;
  visibility: visible;
}

.portfolio-image-items {
  position: relative;
  margin-top: 30px;
}
.portfolio-image-items::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 12px;
}
@media (max-width: 575px) {
  .portfolio-image-items {
    height: 400px;
  }
}
.portfolio-image-items img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}
.portfolio-image-items .content {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
.portfolio-image-items .content p {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  font-size: 16px;
}
.portfolio-image-items .content h3 {
  font-size: 32px;
}
.portfolio-image-items .content h3 a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: 0;
  text-transform: none;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.portfolio-image-items .content h3 a:hover {
  background-size: 100% 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme)), to(var(--theme)));
  background-image: linear-gradient(var(--theme), var(--theme));
  color: var(--theme);
}

.portfolio-section .portfolio-slider {
  margin-left: -10%;
  margin-right: -10%;
}

.portfolio-card-items {
  margin-top: 30px;
}
.portfolio-card-items .content {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-card-items .content .title-header span {
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 5px;
}
.portfolio-card-items .content .title-header h3 {
  font-size: 32px;
}
@media (max-width: 991px) {
  .portfolio-card-items .content .title-header h3 {
    font-size: 26px;
  }
}
.portfolio-card-items .content .title-header h3 a {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  margin: 0;
  text-transform: none;
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.portfolio-card-items .content .title-header h3 a:hover {
  background-size: 100% 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme)), to(var(--theme)));
  background-image: linear-gradient(var(--theme), var(--theme));
  color: var(--theme);
}
.portfolio-card-items .content .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background-color: #2A2A2A;
  color: var(--white);
}
.portfolio-card-items .content .icon:hover {
  background-color: var(--theme);
  color: var(--header);
}
.portfolio-card-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}
.section-title h6 {
  color: var(--theme);
  font-weight: 600;
  text-transform: capitalize;
  font-size: 20px;
  position: relative;
  line-height: 1;
  margin-bottom: 15px;
}
.section-title h2 span {
  color: var(--theme);
  text-decoration: underline;
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

.section-padding {
  padding: 20px 0;
}
@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
}
@media (max-width: 991px) {
  .section-padding {
    padding: 10px 0;
  }
}
.brand-text {
    text-align: center;
    margin-bottom: 25px;
}
.order-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #f2a600;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    padding: 15px 45px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.2);
    border: 2px solid transparent;
}

.order-btn:hover {
    background-color: transparent;
    border-color: #f2a600;
    color: #f2a600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}
.service-box-items {
  margin-top: 30px;
  padding: 32px 30px;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
  z-index: 9;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) {
  .service-box-items {
    border: none;
  }
}
.service-box-items .icon {
  font-size: 40px;
  color: var(--theme);
  position: relative;
  z-index: 9;
}
.service-box-items .content {
  margin-top: 25px;
  position: relative;
  z-index: 9;
}
.service-box-items .content h3 {
  margin-bottom: 10px;
}
.service-box-items .content h3 a:hover {
  color: var(--theme);
}
.service-box-items .content p {
  font-size: 17px;
}
.service-box-items .content .service-btn {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-box-items .content .service-btn .link-btn {
  font-size: 20px;
  font-weight: 600;
  font-family: "Teko", sans-serif;
  text-transform: capitalize;
  display: inline-block;
}
.service-box-items .content .service-btn:hover .arrow-icon, .service-box-items .content .service-btn:hover .link-btn {
  color: var(--theme);
}
.service-box-items.border-none {
  border-right: none;
}
.service-box-items img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
	border-radius: 20px;
}
.service-box-items:hover {
  border-right: 1px solid var(--theme);
}
.service-box-items:hover::before {
  transform: scale(1, 1);
  transform-origin: top center;
}

