:root {
  --main-color: #4caf4f;
  --secondary-color: #2d9d5d;

  --head-color: #495250;
  --muted-color: #666666;
  --White: #ffffff;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif !important;
}
/* Navbar Container */
.navbar-section {
  position: relative;
  padding: 15px 0px;
  background: #fff;
}

.content-container {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Left Section */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* .logo {
  width: 300px;
} */
.brand-name {
  font-weight: 600;
  color: #8e248f;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.menu-toggle{
  display: none;
}
.navbar-links a {
  text-decoration: none;
  color: var(--head-color);
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s;
}
.navbar-links a:hover {
  border-bottom: 2px solid #495250;
}

.navbar-right {
  /* position: absolute; */
 /* right: 70px; */
  /* top: 40%; */
  margin-left: 160px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-enquire {
  background: var(--main-color);
  color: #fff !important;
  padding: 8px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.btn-enquire:hover {
  background: #1b5e20;
}

.social-icons img {
  width: 21px;
  height: 21px;
}
.social-icons a:hover {
  color: #2e7d32;
}

.hero-slider {
  width: 100%;
  background: #2d6c38;
  padding: 40px 0;
}

/* Container */
.hero-slider .content-container {
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.main-slider {
  width: 100%;
  height: 450px;
}

.main-slider .swiper-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.main-slider .slide-content {
  max-width: 50%;
}
.slide-content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 60px;
}
.slide-content p {
  font-size: 18px;
  font-weight: lighter;
  margin-bottom: 50px;
  line-height: 20px;
  width: 70%;
}
.main-slider img {
  max-height: 450px;
  object-fit: contain;
}
.slide-content a {
  text-decoration: none;
  margin-top: 50px;
}
.btn-main {
  background: transparent;
  color: #fff;
  padding: 8px 20px;
  border: 2px solid var(--main-color);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.btn-main:hover {
  background: #1b5e20;
}

.thumbs-fixed {
  /* margin-top: 25px; */
  display: flex;
  gap: 50px;
}

.thumbs-fixed .thumb {
  text-align: center;
  cursor: pointer;

  transition: all 0.3s ease;
  padding: 10px 0;
  border-bottom: 3px solid transparent;
  color: #fff;
}

.thumbs-fixed .thumb img {
  width: 45px;
  height: auto;
  margin: 0 auto 8px;
}

.thumbs-fixed .thumb span {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.thumbs-fixed .thumb img.active {
  color: var(--main-color) !important;
}
.thumbs-fixed .thumb.active {
  color: var(--main-color) !important;
  border-bottom: 5px solid #4caf4f;
}

.about-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-left img {
  width: 90%;
  max-width: 550px;
  min-height: 350px;
  height: auto;
  object-fit: contain;
}

.about-right {
  flex: 1 1 50%;
}

.about-right h2 {
  font-size: 36px !important;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 48px;
  color: var(--main-color);
}

.about-right p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #495250;
  font-family: "Poppins", sans-serif;
}

.vehicles-section {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;

  background-color: rgba(217, 217, 217, 0.3);
  min-height: 244px;
  height: auto;
}

.vehicle-tabs-row {
  display: flex;

  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.vehicle-tabs {
  display: flex;
  gap: 20px;
}

.vehicle-card {
  max-width: 295px;
  width: 90%;
  min-height: 142px;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  cursor: pointer;

  transition: all 0.3s ease;
}

.vehicle-card img {
  width: 40px;
  margin-bottom: 8px;
}
.vehicle-cardh2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 30px;
}
.vehicle-card p {
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  color: #495250;
}
.vcard-cnt h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 20px;
  color: var(--main-color);
}
.vcard-cnt p {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  color: #495250;
}
.vehicle-tab-desc {
  max-width: 500px;
}

.vehicle-tab-desc h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 48px;
  color: var(--main-color);
}

.vehicle-tab-desc p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #495250;
  font-family: "Poppins", sans-serif;
}

.vehicle-detail {
  display: none;

  gap: 40px;
}

.vehicle-detail.active {
  display: flex;
}

.vehicle-detail img {
  max-width: 600px;
  width: 90%;
}

.vehicle-info {
  max-width: 600px;
  margin-top: 60px;
}
.vehicle-info h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 60px;
  color: var(--main-color);
}
.vehicle-info p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #495250;
  margin-bottom: 50px;
}
.vehicle-card.active {
  background: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}

.vehicle-card.active h2,
.vehicle-card.active h4,
.vehicle-card.active p,
.vehicle-card.active span {
  color: #fff;
}
.vehicle-card.active img {
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}
.veh-btn {
  text-align: center;
  background: transparent;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  padding: 10px 20px;
}
.vehicle-info a {
  text-decoration: none;
}
/* Section Base */
.tst-sec {
  background: #263238;
  color: #fff;
  overflow-x: hidden;
}

.tst-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  padding-left: 20px;
}
.tst-box {
  width: 600px;
  padding: 0px 20px;
}

.tst-quote img {
  width: 60px;
  margin-bottom: 20px;
}

.tst-sub {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 60px;
}

.tst-text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
  color: #fff;
}

.tst-user {
  margin-top: 15px;
}

.tst-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.tst-name {
  font-weight: 600;
  margin: 0;
  font-size: 16px;
}

.tst-role {
  font-size: 14px;
  color: var(--head-color);
  margin: 0;
}
.tst-rating{
  margin-top: 5px;
  margin-bottom: 5px;
}
.tst-rating i {
  color: #fff;
  font-size: 12px;

}


.carousel-controls {
  display: flex;
margin-bottom: 30px;
  margin-top: 50px;
 
}

#tstCarousel .carousel-control-prev,
#tstCarousel .carousel-control-next {
  position: static;
  width: auto;
  padding: 0;
  background: none;
  opacity: 1;
  color: inherit;
  padding-left: 20px;
  
}

.tst-btn .carousel-control-prev-icon,
.tst-btn .carousel-control-next-icon {
width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    background-size: 50% 50%;
    color: var(--main-color);
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
/* Achievements Section */
.ach-sec {
  background: var(--main-color);
  color: #fff;
}

.ach-box {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px
}

.ach-box img {
  width: 70px;
 object-fit: contain;
}

.ach-num {
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 5px;
}

.ach-label {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}
/* Partners Section */
.partner-sec {
  background: #fff;
}

.partner-title {
  font-size: 36px;
  font-weight: 700;
  color:var(--main-color)
}

.partner-sub {
  font-size: 16px;
  color: var(--head-color);
  max-width: 600px;
  line-height: 26px;
  margin: 0 auto;
}


.partner-box img {
 max-width: 230px;
 width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.partner-box:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.partner-box:hover img {
  filter: grayscale(0%);
}
.partner-row {
  row-gap: 30px;  
  column-gap: 30px;
}
/* Footer Section */
.footer-sec {
  background: #1d2b36;
  color: #fff;
  font-size: 15px;
}

.footer-logo {
  max-width: 350px;
  color: #fff;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.footer-text {
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.6;
  font-size: 15px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--main-color);
}

.footer-contact li {
  color: #fff;
  display: flex;
  /*align-items: center;*/
  gap: 8px;
}

.footer-contact i {
  color: var(--main-color);
  font-size: 16px;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  color:var(--main-color);
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: var(--main-color);
}

.footer-bottom {
  /* background: #162028; */
  color: #fff;
  font-size: 14px;
  padding: 12px 0;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1336px) {
.navbar-links{
  gap: 10px!important;
}
/* .logo {
    width: 380px;
} */
}
@media (max-width: 1283px) {
.navbar-links{
  gap: 7px!important;
}
.navbar-links a {
  font-size: 12px;
}
.btn-enquire {
    font-size: 12px;
}
}
@media (max-width: 768px) {
  .footer-title {
    font-size: 16px;
  }
  /* .footer-logo {
    max-width: 200px;
  } */
  .footer-bottom {
    text-align: center;
  }

}

@media (min-width: 768px) {
  .partner-row {
    row-gap: 50px;
    column-gap: 50px;
  }
  .about-right h2 {
        font-size: 24px;
        line-height: 38px;
        margin-bottom: 0px!important;
    }
    .about-right p {
        font-size: 12px;
        line-height: 26px;
    }


}

@media (min-width: 1200px) {
  .partner-row {
    row-gap: 100px;  
    column-gap: 100px;
  }


}

/* Responsive font tweaks */
@media (max-width: 768px) {
  .partner-title {
    font-size: 26px;
  }
  .partner-sub {
    font-size: 14px;
  }

}

@media (max-width: 480px) {
  .partner-title {
    font-size: 22px;
  }
  .partner-box img {
    height: 60px;
  }
}

@media (max-width: 991px) {
  .ach-num {
    font-size: 32px;
  }
  .ach-box img {
    width: 50px;
  }
      .vehicle-tab-desc h2 {
        font-size: 24px;
        line-height: 38px;
        margin-bottom: 0px!important;
    }
    .footer-text {
        font-size: 12px;
    }
 
.vehicle-info p {
  font-size: 12px;
  line-height: 26px;
margin-bottom: 10px !important;

 }
 .veh-btn{
      padding: 2px 10px;
 }
 .vehicle-details{
  margin-bottom: 20px !important;
 }
 .tst-sub{
    font-size: 24px;
        line-height: 38px;
        margin-bottom: 0px!important;
 }
 .tst-quote img{
  width: 40px;
 }
 .tst-text {
  font-size: 12px;
  line-height: 26px;
 }
 .tst-name{
  font-size: 12px;
 }
 .tst-btn .carousel-control-prev-icon, .tst-btn .carousel-control-next-icon{
  width: 30px;
    height: 30px;
    background-size: 50% 50%;
 }
 .partner-title{
  font-size: 24px;
 }
 .partner-sub{
  font-size: 12px;
  line-height: 26px;
 }
}

@media (max-width: 575px) {
  .ach-box {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .ach-box img {
    width: 45px;
  }
  .ach-num {
    font-size: 28px;
  }
  .ach-label {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .vehicle-tabs-row {
    flex-direction: column;
    /* text-align: center; */
    align-items: center;
  }
  .vehicle-tabs {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .vehicle-tab-desc h2 {
    margin-bottom: 2px !important;
  }
  .vehicle-tabs-row {
    gap: 0px;
  }
  .vehicle-detail.active {
    flex-wrap: wrap;
  }
}


@media (max-width: 992px) {
  .about-wrap {
    flex-direction: column;
    text-align: center;
  }

  .about-right h2 {
    font-size: 28px;
    line-height: 38px;
  }

  .about-right p {
    font-size: 15px;
    line-height: 24px;
  }
}


/* Tablet screens */
@media (max-width: 991px) {
  .hero-slider {
    padding: 20px 0;
  }
  .main-slider {
    height: auto;
  }

  .main-slider .swiper-slide {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .main-slider .slide-content {
    max-width: 100%;
  }

  .slide-content h2 {
    font-size: 25px;
    line-height: 46px;
    margin-bottom: 0px!important;
  }

  .slide-content p {
    font-size: 14px;
    line-height: 24px;
    width: 90%;
    margin: 0 auto 20px !important;
  }
  .btn-main {
    padding: 8px 20px;
    font-size: 12px;
  }
.thumbs-fixed .thumb span{
  font-size: 11px;
}
  .main-slider img {
    max-height: 200px;
  }
  .thumbs-fixed .thumb img{
    width: 30px;
  }
  .thumbs-fixed {
    margin-top: 10px;
    display: flex
;
    gap: 30px;
  }
  .navbar-right{
    position: static!important;
  }
}

/* Mobile screens */
@media (max-width: 575px) {
  .hero-slider {
    padding: 20px 0;
  }

  .slide-content h2 {
    font-size: 22px;
    line-height: 36px;
  }

  .slide-content p {
    font-size: 13px;
    line-height: 22px;
    width: 100%;
  }

  .btn-main {
    padding: 6px 15px;
    font-size: 14px;
  }

  .main-slider img {
    max-height: 180px;
  }

  .thumbs-fixed {
    gap: 20px;
  }

  .thumbs-fixed .thumb span {
    font-size: 12px;
  }

  .thumbs-fixed .thumb img {
    width: 35px;
  }
}
/* Collapse menu hidden by default */
.navbar-collapse {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 21px;
}

@media (max-width: 1200px) {
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    display: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 99;
  }

  .navbar-collapse.active {
    display: flex;
  }

  .navbar-links {
    flex-direction: column;
    gap: 15px;
  }

  .btn-enquire {
    margin-top: 10px;
  }

  .navbar-right {
    margin-top: 15px;
  }
/* .logo {
    width: 350px;
} */
  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: #222;
  }
}
@media (max-width: 991px) {
  /* .logo {
    width: 280px;
} */
}

/* newcss */
  .address-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  flex: 1 1 48%;
}

.address-item i {
  margin-right: 6px;
  margin-top: 3px;
}
.address-item h4, .address-item p {
  font-size: 15px;
}

/* Achievements Section */
.ach-sec {
  background: var(--main-color);
  color: #fff;
  padding: 60px 0;
}

/* Grid Container */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center; 
  align-items: stretch;
  gap: 30px;
  text-align: center;
}

.ach-box {
 
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ach-box:hover {
  transform: translateY(-5px);

}

.ach-box img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 10px;
}

.ach-num {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1;
}

.ach-label {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 992px) {
  .ach-num {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .ach-box img {
    width: 50px;
    height: 50px;
  }
  .ach-num {
    font-size: 36px;
  }
}


.vm-thumbs {
  display: flex;
  gap: 12px;
}

.vm-thumb {
  width: 70px !important;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

 .vm-thumb:hover {
  border-color: #bbb;
}
 .vm-thumb.active {
  border-color: #2f9e44;
}


  .vm-mainimg {
  transition: transform 0.4s ease;  /* Smooth zoom effect */
  cursor: zoom-in;
}

.vm-mainimg:hover {
  transform: scale(1.1); /* Zoom in slightly */
}


/* runadd css */

  .vt-wrap {
    background-color: #092507;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.6);
    color: #e6eef8;
    max-width: 1240px;
    margin: 16px auto;
    box-sizing: border-box;
  }

  .vt-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }

  .vt-logo {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2dd4bf, #06b6d4);
    display: grid;
    place-items: center;
    color: #042029;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(2, 6, 23, 0.5);
  }

  .vt-title {
    font-size: 22px;
    font-weight: 600;
  }

  .vt-sub {
    font-size: 15px;
    color: #9fb0c8;
  }

  /* --- Scrolling Line --- */
  .vt-row {
    overflow: hidden;
    padding: 8px 0;
  }

  .vt-track {
    display: flex;
    gap: 24px;
    align-items: center;
    width: max-content;
    white-space: nowrap;
    animation: scroll-left 20s linear infinite;
  }

  .vt-row:hover .vt-track {
    animation-play-state: paused;
    cursor: grab;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .vt-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 2px 6px rgba(3, 7, 18, 0.35);
    font-size: 14px;
    min-height: 40px;
  }

  .vt-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
  }

  .vt-text .t1 {
    font-weight: 700;
    font-size: 13px;
    color: #e6eef8;
  }

  .vt-text .t2 {
    font-size: 12px;
    color: #9fb0c8;
  }

  /* --- Responsiveness --- */
  @media (max-width: 991px) {
    .vt-title {
      font-size: 18px;
    }
    .vt-sub {
      font-size: 13px;
    }
  }

  @media (max-width: 720px) {
    .vt-wrap {
      padding: 12px;
      border-radius: 10px;
    }

    .vt-item {
      padding: 6px 10px;
      font-size: 13px;
      min-height: 36px;
    }

    .vt-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 6px;
    }

    .vt-logo {
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
    }

    .vt-title {
      font-size: 16px;
    }

    .vt-sub {
      font-size: 12px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .vt-track {
      animation: none;
      transform: none;
    }
  }


/* new loader */

#welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#welcome-modal.hidden {
  opacity: 0;
  visibility: hidden;
}

#welcome-modal .modal-content {
 
  background: transparent;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#welcome-modal .modal-content img {
   position: relative;
  width: 70vw;       
  max-width: 500px; 
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(255,255,255,0.3);
  animation: zoomIn 0.5s ease;
}

@keyframes zoomIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* --- Close Button --- */
#welcome-modal .close-btn {
  position: absolute;
  top: -20px;
  right: 650px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

#welcome-modal .close-btn:hover {
  background: #000;
  color: #fff;
  transform: scale(1.1);
}

/* --- Example Page Content --- */
.page-content {
  padding: 50px;
  text-align: center;
  color: #333;
}
@media (max-width: 1700px) {
#welcome-modal .close-btn {
  position: absolute;
  top: -30px;
  right: 500px;
}
}
@media (max-width: 1500px) {
#welcome-modal .close-btn {
  position: absolute;
  top: -20px;
  right: 400px;
}
}

@media (max-width: 1300px) {
#welcome-modal .close-btn {
  position: absolute;
  top: -20px;
  right: 300px;
}
}
@media (max-width: 1200px) {
#welcome-modal .close-btn {
  position: absolute;
  top: -20px;
  right: 150px;
}
}
@media (max-width: 800px) {
#welcome-modal .close-btn {
  position: absolute;
  top: -20px;
  right: 50px;
}
}
@media (max-width: 400px) {
#welcome-modal .close-btn {
  position: absolute;
  top: -20px;
  right: 20px;
}
}



