section.tour {
  position: relative;
}

section.tour .road-lines {
  position: absolute;
  width: 125px;
  top: 210px;
  left: 0;
  right: 0;
  bottom: 210px;
  margin: auto;
  z-index: 1;
}

.tour .road-lines .road-lines-inner::before,
.tour .road-lines .road-lines-inner::after {
  top: 0px;
  content: '';
  bottom: 0px;
  position: absolute;
}

.tour .road-lines .road-lines-inner::before {
  right: 0;
  background-color: var(--color-3);
  width: 40%;
}

.tour .road-lines .road-lines-inner::after {
  left: 0;
  background-color: var(--color-4);
  width: 15%;
}

.virtual-tour,
.iranmall {
  position: relative;
  z-index: 2;
}

.iranmall h2 {
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f8f7;
}

.iranmall h2 span {
  color: #D7A867;
}

.iranmall .iranmall-logo {
  width: 100px;
  height: auto !important;
  margin: 25px auto;
  display: flex;
  mix-blend-mode: darken;
}

.iranmall .build-img {
  filter: drop-shadow(0 15px 5px rgba(0, 0, 0, 0.24));
  width: 100%;
  height: auto;
}

.mobile-frame {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-frame video {
  object-fit: contain;
  display: flex;
  width: 100%;
}

.virtual-tour-cta {
  left: 0;
  right: 0;
  bottom: 0;
}

.virtual-tour-cta-arrow {
  animation: moveArrow 1.5s infinite alternate;
}

@keyframes moveArrow {
  from {
    transform: translateY(-30px);
  }

  to {
    transform: translateY(0);
  }
}

.virtual-tour-cta-btn {
  padding: 7px 14px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.00);
  border-width: 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1.5px) saturate(0);
  -webkit-backdrop-filter: blur(1.5px) saturate(0);
  box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.50);
  color: white;
  transition: 0.3s ease-in-out;
  font-size: 14px;
}

.virtual-tour-cta-btn:hover {
  background: var(--color-3);
  border-color: var(--color-3);
}

.virtual-tour-cta-btn-2 {
  padding: 7px 14px;
  background-color: #fff;
  font-size: var(--font14);
  border: 1px solid var(--color-3);
  color: var(--color-3);
  transition: 0.3s ease-in-out;
  border-radius: 15px;
}

.virtual-tour-cta-btn-2:hover {
  background: var(--color-3);
  color: #fff;
}

.rounded-360 {
  margin: auto;
  width: 75px;
  height: 75px;
  overflow: hidden;
  left: 0;
  right: 0;
  bottom: -42.5px;
  z-index: 1;
}

.btn-tour-iranmall {
  background-color: #0682ca;
  position: absolute;
  top: 7rem;
  left: 15%;
  border-width: 1px;
  border-style: solid;
  border-color: #0682ca;
  font-size: 16px;
  color: #fff;
  border-radius: 250px;
  padding: 10px 15px 10px 20px;
  display: flex;
  gap: 10px;
}

.btn-tour-iranmall:hover {
  background-color: #0682ca;
  border-color: #0682ca;
  color: #fff;
}

.btn-tour-iranmall img {
  display: flex;
  width: 25px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .btn-tour-iranmall {
    position: unset;
    margin: 3rem auto;
    width: max-content;
  }
}

@media (max-width: 576px) {
  .mobile-frame {
    width: 50%;
  }

  .virtual-tour-img {
    width: 100%;
    overflow: hidden;
    padding: 150px 0;
  }

  .virtual-tour-img img {
    scale: 2.25;
  }

  .mobile-frame video {
    border-radius: 27.5px;
  }

  section.tour .road-lines {
    bottom: 100px;
  }
}

@media (min-width: 576px) and (max-width: 768px) {
  .mobile-frame {
    width: 25%;
  }

  .mobile-frame video {
    border-radius: 27.5px;
  }

  .virtual-tour-img {
    width: 100%;
    padding: 60px 0;
  }

  section.tour .road-lines {
    bottom: 180px;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .mobile-frame {
    width: 23%;
  }

  .mobile-frame video {
    border-radius: 30px;
  }

  .virtual-tour-img {
    width: 100%;
    padding: 60px 0;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .mobile-frame {
    width: 20%;
  }

  .mobile-frame video {
    border-radius: 32px;
  }

  .virtual-tour-img {
    width: 100%;
    padding: 30px 0;
  }
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .mobile-frame {
    width: 20%;
  }

  .mobile-frame video {
    border-radius: 40px;
  }

  .virtual-tour-img {
    width: 100%;
    padding: 10px 0;
  }
}

@media (min-width: 1400px) {
  .mobile-frame {
    width: 18%;
  }

  .mobile-frame video {
    border-radius: 42.5px;
  }

  .virtual-tour-img {
    width: 100%;
    padding: 10px 0;
  }
}