﻿:root {
  --primary: #FF3E41;
  --secondary: #51CFED;
  --primary-hover: #ff5b5e;
  --secondary-hover: #6bd6f0;
  --light: #F8F2F0;
  --dark: #060315;
  --bs-primary-rgb: 255, 62, 65;
  --bs-body-font-family: "Inter", sans-serif;
  --bs-border-radius: 0;
  --bs-body-color: #555;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #060315;
}

.btn {
  font-weight: 600;
  transition: 0.5s;
}
.btn.btn-primary, .btn.btn-secondary {
  color: #FFFFFF;
}
.btn-primary {
  background-color: var(--primary);
  border-color: #FF3E41;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: #ff5154;
}
.btn-secondary {
  background-color: var(--secondary);
  border-color: #51CFED;
}
.btn-secondary:hover {
  background-color: var(--secondary-hover);
  border-color: #51CFED;
}
.btn-square, .btn-sm-square, .btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
.btn-square {
  width: 38px;
  height: 38px;
}
.btn-sm-square {
  width: 32px;
  height: 32px;
}
.btn-lg-square {
  width: 48px;
  height: 48px;
}

.fw-medium {
  font-weight: 600 !important;
}

.normal-link {
  text-decoration: none;
  color: #060315;
}

.limit-lines {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.limit-lines.two-lines {
  -webkit-line-clamp: 2;
}
.limit-lines.three-lines {
  -webkit-line-clamp: 3;
}

.gap-y-5 {
  row-gap: 3rem;
}

.logo {
  width: 60px;
  border-radius: 50%;
  float: left;
  margin: 0 10px 0 0;
  -webkit-transition: -webkit-transform 0.4s ease-out;
  -moz-transition: -moz-transform 0.4s ease-out;
  transition: transform 0.4s ease-out;
}

.purchase-progess .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  margin-top: 45px;
  background-color: #f8f8f9;
  padding: 25px;
  border-radius: 5px;
  height: calc(100% - 3rem);
  box-shadow: 1px 1px 3px #cccccc;
}

.number-box {
  background-color: var(--primary);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem !important;
}

.post-item .img-fluid {
  aspect-ratio: 4/3;
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}
#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: FontAwesome;
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
.navbar .container-fluid {
  background-color: #f2e9e4;
}
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    border: none;
    margin-top: 0;
    top: 150%;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
  }
}
@media (min-width: 992px) {
  .navbar .nav-item:hover .dropdown-menu {
    top: 100%;
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
    box-shadow: 3px 3px 5px 1px #ccc;
  }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
  height: 75px;
}
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 30px;
  padding: 25px 0;
  color: #FFFFFF;
  font-size: 15px;
  text-transform: uppercase;
  outline: none;
  color: var(--dark);
  font-weight: 500;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}
@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    top: -6px;
    left: 50%;
    background: #FFFFFF;
    transition: 0.5s;
  }
  .navbar-light .navbar-nav .nav-link:hover::before, .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}
.navbar-light.sticky-top {
  top: -100px;
  transition: 0.5s;
}

.navbar-brand hgroup h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: normal;
}

.page-header {
  background: linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)), url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

@media (min-width: 992px) {
  .container.about {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .about-text {
    padding-right: calc((100% - 960px) / 2 + 0.75rem);
  }
}
@media (min-width: 1200px) {
  .about-text {
    padding-right: calc((100% - 1140px) / 2 + 0.75rem);
  }
}
@media (min-width: 1400px) {
  .about-text {
    padding-right: calc((100% - 1320px) / 2 + 0.75rem);
  }
}

@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .feature-text {
    padding-left: calc((100% - 960px) / 2 + 0.75rem);
  }
}
@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc((100% - 1140px) / 2 + 0.75rem);
  }
}
@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc((100% - 1320px) / 2 + 0.75rem);
  }
}

.service-item,
.post-item,
.price-item,
.team-item {
  box-shadow: 1px 1px 9px rgba(0, 0, 0, 0.25);
}
.service-item img,
.post-item img,
.price-item img,
.team-item img {
  transition: 0.5s;
  aspect-ratio: 4/3;
}
.service-item:hover img,
.post-item:hover img,
.price-item:hover img,
.team-item:hover img {
  transform: scale(1.1);
}
.service-item a,
.post-item a,
.price-item a,
.team-item a {
  text-decoration: none;
  color: inherit;
}
.service-item a:hover,
.post-item a:hover,
.price-item a:hover,
.team-item a:hover {
  color: inherit;
}
.service-item h4 a,
.post-item h4 a,
.price-item h4 a,
.team-item h4 a {
  color: #060315;
}
.service-item h4 a:hover,
.post-item h4 a:hover,
.price-item h4 a:hover,
.team-item h4 a:hover {
  color: var(--primary);
}
.service-item a.btn-slide,
.service-item div.btn-slide,
.post-item a.btn-slide,
.post-item div.btn-slide,
.price-item a.btn-slide,
.price-item div.btn-slide,
.team-item a.btn-slide,
.team-item div.btn-slide {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-size: 0;
}
.service-item a.btn-slide i,
.service-item a.btn-slide span,
.service-item div.btn-slide i,
.service-item div.btn-slide span,
.post-item a.btn-slide i,
.post-item a.btn-slide span,
.post-item div.btn-slide i,
.post-item div.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.price-item div.btn-slide i,
.price-item div.btn-slide span,
.team-item a.btn-slide i,
.team-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
  position: relative;
  height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #FFFFFF;
  background: var(--primary);
  border-radius: 0 35px 35px 0;
  transition: 0.5s;
  z-index: 2;
}
.service-item a.btn-slide span,
.service-item div.btn-slide span,
.post-item a.btn-slide span,
.post-item div.btn-slide span,
.price-item a.btn-slide span,
.price-item div.btn-slide span,
.team-item a.btn-slide span,
.team-item div.btn-slide span {
  padding-left: 0;
  left: -100%;
  z-index: 1;
}
.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.service-item div.btn-slide:hover i,
.service-item div.btn-slide:hover span,
.post-item a.btn-slide:hover i,
.post-item a.btn-slide:hover span,
.post-item div.btn-slide:hover i,
.post-item div.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span,
.price-item div.btn-slide:hover i,
.price-item div.btn-slide:hover span,
.team-item a.btn-slide:hover i,
.team-item a.btn-slide:hover span,
.team-item div.btn-slide:hover i,
.team-item div.btn-slide:hover span {
  background: var(--secondary);
}
.service-item:hover a.btn-slide i,
.service-item:hover div.btn-slide i,
.post-item:hover a.btn-slide i,
.post-item:hover div.btn-slide i,
.price-item:hover a.btn-slide i,
.price-item:hover div.btn-slide i,
.team-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
  border-radius: 0;
}
.service-item:hover a.btn-slide span,
.service-item:hover div.btn-slide span,
.post-item:hover a.btn-slide span,
.post-item:hover div.btn-slide span,
.price-item:hover a.btn-slide span,
.price-item:hover div.btn-slide span,
.team-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
  left: 0;
}

.team-item div.btn-slide span a i {
  padding: 0 10px;
}
.team-item div.btn-slide span a:hover i {
  background: var(--secondary);
}

@media (min-width: 992px) {
  .container.contact-page {
    max-width: 100% !important;
  }
}

@media (min-width: 992px) {
  .contact-page .contact-form {
    padding-left: calc((100% - 960px) / 2 + 0.75rem);
  }
}
@media (min-width: 1200px) {
  .contact-page .contact-form {
    padding-left: calc((100% - 1140px) / 2 + 0.75rem);
  }
}
@media (min-width: 1400px) {
  .contact-page .contact-form {
    padding-left: calc((100% - 1320px) / 2 + 0.75rem);
  }
}

.footer {
  background: linear-gradient(rgba(6, 3, 21, 0.5), rgba(6, 3, 21, 0.5)), url(../Images/map.png) center center no-repeat;
  background-size: cover;
}
.footer .contact i {
  min-width: 16px;
}
.footer .btn.btn-social {
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #FFFFFF;
  border-radius: 35px;
  transition: 0.3s;
}
.footer .btn.btn-social:hover {
  color: var(--primary);
}
.footer a {
  text-decoration: none !important;
}
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}
.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: FontAwesome;
  font-weight: 900;
  margin-right: 10px;
}
.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}
.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .copyright a {
  color: var(--light);
}

.p-address {
  margin-left: calc(16px + 1rem) !important;
}

#button-contact-vr {
  position: fixed;
  bottom: 0;
  z-index: 99999;
}
#button-contact-vr .button-contact {
  position: relative;
  margin-top: -5px;
}
#button-contact-vr .button-contact .phone-vr {
  position: relative;
  visibility: visible;
  background-color: transparent;
  width: 90px;
  height: 90px;
  cursor: pointer;
  z-index: 11;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transition: visibility 0.5s;
  left: 0;
  bottom: 0;
  display: block;
}
#button-contact-vr.active #gom-all-in-one .button-contact {
  margin-left: -100%;
}

.phone-vr-circle-fill {
  width: 65px;
  height: 65px;
  top: 12px;
  left: 12px;
  position: absolute;
  box-shadow: 0 0 0 0 #c31d1d;
  background-color: rgba(230, 8, 8, 0.7);
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  animation: phone-vr-circle-fill 2.3s infinite ease-in-out;
  transition: all 0.5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-animation: zoom 1.3s infinite;
  animation: zoom 1.3s infinite;
}

.phone-vr-img-circle {
  background-color: #e60808;
  width: 40px;
  height: 40px;
  line-height: 40px;
  top: 25px;
  left: 25px;
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  -webkit-animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
  animation: phone-vr-circle-fill 1s infinite ease-in-out;
}
.phone-vr-img-circle a {
  display: block;
  line-height: 37px;
}
.phone-vr-img-circle img {
  max-height: 25px;
  max-width: 27px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

#instagram-vr .phone-vr-circle-fill {
  background: rgb(17, 143, 253);
  background: linear-gradient(160deg, rgb(17, 143, 253) 20%, rgb(188, 60, 218) 50%, rgb(253, 223, 5) 80%);
  background-size: contain;
  box-shadow: 0 0 0 0 #c840c9;
  background-color: rgb(79, 103, 254);
  border: 0;
}
#instagram-vr .phone-vr-img-circle {
  background: transparent;
}

#telegram-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #2c9fd8;
  background-color: rgba(44, 159, 216, 0.74);
}
#telegram-vr .phone-vr-img-circle {
  background: #2c9fd8;
}

#zalo-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #2196F3;
  background-color: rgba(33, 150, 243, 0.7);
}
#zalo-vr .phone-vr-img-circle {
  background-color: #2196F3;
}

#viber-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #714497;
  background-color: rgba(113, 68, 151, 0.8);
}
#viber-vr .phone-vr-img-circle {
  background-color: #714497;
}

#contact-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #2196F3;
  background-color: rgba(33, 150, 243, 0.7);
}
#contact-vr .phone-vr-img-circle {
  background-color: #2196F3;
}

div#whatsapp-vr .phone-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 #1fd744;
  background-color: rgba(35, 217, 72, 0.7);
}
div#whatsapp-vr .phone-vr .phone-vr-img-circle {
  background: #1cd741;
}
div#whatsapp-vr .phone-vr .phone-vr-img-circle img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 50%;
}

#fanpage-vr img {
  max-width: 35px;
  max-height: 35px;
}
#fanpage-vr .phone-vr-img-circle {
  background-color: #1877f2;
}
#fanpage-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 rgba(24, 119, 242, 0.65);
  background-color: rgba(24, 119, 242, 0.7);
}

#tiktok-vr .phone-vr-circle-fill {
  box-shadow: 0 0 0 0 rgba(2, 2, 2, 0.55);
  background-color: rgba(2, 2, 2, 0.6);
}
#tiktok-vr .phone-vr-img-circle {
  background: #020202;
}
#tiktok-vr .phone-vr-img-circle img {
  max-width: 90%;
  max-height: 90%;
}

#ftiktok-vr .phone-vr-img-circle {
  background-color: #020202;
}

#gom-all-in-one .button-contact {
  transition: 1.6s all;
  -moz-transition: 1.6s all;
  -webkit-transition: 1.6s all;
}

#all-in-one-vr .phone-bar {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  color: #fff;
  padding: 5px 15px 5px 48px;
  border-radius: 50px;
  margin-left: -64px;
  width: max-content;
  cursor: pointer;
}

.phone-bar a {
  position: absolute;
  margin-top: -65px;
  left: 30px;
  z-index: -1;
  color: #fff;
  font-size: 16px;
  padding: 7px 15px 7px 50px;
  border-radius: 100px;
  white-space: nowrap;
}
.phone-bar a:hover {
  opacity: 0.8;
  color: #fff;
}
@media (max-width: 736px) {
  .phone-bar {
    display: none;
  }
}

#popup-showroom-vr,
div#popup-form-contact-vr {
  display: none;
}
#popup-showroom-vr.active,
div#popup-form-contact-vr.active {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99999;
}

.bg-popup-vr {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(51, 51, 51, 0.5);
  width: 100%;
  height: 100vh;
}

.content-popup-vr {
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  border-radius: 5px;
  box-shadow: 0 0 14px 5px rgba(0, 0, 0, 0.49);
  max-width: 600px;
  display: flex;
}
.content-popup-vr input,
.content-popup-vr textarea {
  width: 100%;
  max-height: 100px;
  min-height: 38px;
  border: 1px solid #b1b1b1;
  margin-bottom: 10px;
  padding: 0 7px;
  background: #fff;
}
.content-popup-vr label {
  width: 100%;
}
.content-popup-vr input.wpcf7-form-control.wpcf7-submit {
  max-width: fit-content;
  padding: 5px 32px 2px;
  background: #2196f3;
  border: 0;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  margin: 10px auto 0;
  display: block;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.29);
  font-weight: 400;
  min-height: auto;
  line-height: 30px;
}
.content-popup-vr input.wpcf7-form-control.wpcf7-submit:hover {
  opacity: 0.7;
}
.content-popup-vr .close-popup-vr {
  font-family: sans-serif;
  width: 23px;
  height: 23px;
  background: black;
  position: absolute;
  top: -10px;
  right: -10px;
  color: #fff;
  text-align: center;
  line-height: 23px;
  font-size: 17px;
  border-radius: 50%;
  cursor: pointer;
}
.content-popup-vr .close-popup-vr:hover {
  background: #b50000;
}
.content-popup-vr .content-popup-div-vr {
  width: 100%;
  padding: 25px;
}
.content-popup-vr .content-popup-div-vr ul {
  color: #333;
  list-style: none;
  font-size: 15px;
}
.content-popup-vr .content-popup-img-vr {
  width: 100%;
  max-width: 45%;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
}

#loco-top,
#loco-bottom {
  display: block;
}
#loco-top .content-popup-img-vr,
#loco-bottom .content-popup-img-vr {
  max-width: 100%;
  text-align: center;
}

div#popup-form-contact-vr #loco-bottom .content-popup-img-vr {
  max-width: 100%;
  text-align: center;
}

#contact-showroom.no-event a {
  pointer-events: none;
}

.post-content *:not(a) {
  max-width: 100%;
  color: black;
}
.post-content img {
  display: block;
  max-height: fit-content;
}

@-webkit-keyframes phone-vr-circle-fill {
  0% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
  }
  40% {
    -webkit-transform: rotate(25deg) scale(1) skew(1deg);
  }
  50% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
  100% {
    -webkit-transform: rotate(0) scale(1) skew(1deg);
  }
}
@-webkit-keyframes zoom {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
}
@keyframes zoom {
  0% {
    transform: scale(0.9);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 15px transparent;
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 transparent;
  }
}
@media (max-width: 991.98px) {
  .navbar-light .navbar-nav {
    border-top: 1px solid #EEEEEE;
  }
  .navbar-light .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }
  .logo {
    width: 50px;
  }
  .navbar-brand h4 {
    font-size: 1.275rem;
  }
}
@media (min-width: 1250px) {
  .px-lg-custom {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }
}
@media (max-width: 1200px) {
  .number-box {
    width: 66px;
    height: 66px;
    font-size: 30px;
  }
}
@media (max-width: 475px) {
  .px-lg-custom {
    margin-right: 0;
  }
  button.navbar-toggler {
    padding: 0;
  }
}
@media (max-width: 673px) {
  div#popup-form-contact-vr .content-popup-vr {
    display: block;
  }
  div#popup-form-contact-vr .content-popup-vr .content-popup-img-vr {
    max-width: 100%;
    display: none;
  }
}
@media (max-width: 767px) {
  .swiper img {
    object-fit: cover;
    height: 300px;
  }
  .swiper img.left {
    object-position: left;
  }
  .swiper img.right {
    object-position: right;
  }
  .swiper img.center {
    object-position: center;
  }
}
