* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif !important;
  text-decoration: none !important;
}

.p-lr {
  padding-left: 100px;
  padding-right: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-48 {
  margin-top: 48px;
}

p {
  margin-bottom: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0 !important;
}

.title {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 4px 4px 0px rgba(44, 44, 54, 0.1490196078);
  background: #fff;
}
nav .nav-logo {
  width: 160px;
}
nav .nav-logo img {
  width: 100%;
  height: 100%;
}
nav .navbar-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
nav .navbar-links .navbar-link {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #ED213C;
  cursor: pointer;
  position: relative;
}
nav .navbar-links .navbar-link::after {
  content: "";
  width: 0;
  height: 2px;
  background: #ED213C;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: 0.6s;
}
nav .navbar-links .navbar-link:hover::after {
  width: 100%;
}
nav .navbar-links .navbarMenu {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  padding-top: 23px;
  padding-bottom: 23px;
}
nav .navbar-links .navbarMenu .navbar-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
nav .navbar-links .navbarMenu .submenu {
  display: flex;
  flex-direction: column;
  align-items: start;
  background: rgba(65, 49, 138, 0.5);
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  left: 0;
  top: 100px;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}
nav .navbar-links .navbarMenu .submenu .subLink {
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
  width: 100%;
  z-index: 2;
  border-bottom: 1px dashed rgb(65, 49, 138);
  transition: 0.2s;
}
nav .navbar-links .navbarMenu .submenu .subLink:hover {
  text-shadow: 1px 1px 2px pink;
}
nav .navbar-links .navbarMenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  top: 90px;
}
nav .navbar-links .navbarMenu:hover .navbar-link i {
  transition: 0.6s;
  transform: rotate(180deg);
}
nav .navbar-links .navbarMenu:hover .navbar-link::after {
  width: 100%;
}
nav .navbar-right-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}
nav .navbar-right-buttons a {
  padding: 14px 30px;
  text-align: center;
  background: #ED213C;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  border-radius: 50px;
  transition: 0.4s;
}
nav .navbar-right-buttons a:hover {
  background: #c00019;
}
nav .navbar-right-buttons .language .currentLang {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: transparent;
  color: #E21D36;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  padding: 6px 12px;
}
nav .navbar-right-buttons .language .currentLang::after {
  display: none;
}
nav .navbar-right-buttons .language .otherLang {
  margin-top: 10px;
  min-width: 1rem;
  width: 54px;
  border: none;
  background: transparent;
  padding: 0;
}
nav .navbar-right-buttons .language .otherLang a {
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #E21D36;
  line-height: 24px;
  border-radius: 0;
  background: transparent;
}
nav .hamburger {
  display: none;
}
nav .hamburger i {
  font-size: 32px;
  color: #ED213C;
}
nav .hamburger i::before {
  font-weight: 700 !important;
}

.mobile_navbar_area {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -200%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  transition: 0.6s;
}
.mobile_navbar_area .mobile_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 100%;
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .language .currentLang {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 8px;
  background: #f8f8f8;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 20px;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .language .currentLang::after {
  display: none;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .language .otherLang {
  margin-top: 10px;
  min-width: 1rem;
  width: 54px;
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .closeMenu {
  margin-left: auto;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .closeMenu i {
  font-size: 28px;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .closeMenu i::before {
  font-weight: 500 !important;
}
.mobile_navbar_area .mobile_menu .mobile_links {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #000;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main {
  display: flex;
  align-items: center;
  gap: 15px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main i {
  font-size: 20px;
  line-height: 28px;
  color: #000;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main i::before {
  font-weight: 700 !important;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu {
  width: -moz-max-content;
  width: max-content;
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 8px;
  padding-left: 20px;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_submenu .mobile_sub_link {
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}
.mobile_navbar_area .mobile_menu .mobile_links .active_mobile_link {
  font-weight: 600;
}

.home_navbar {
  box-shadow: none;
  background: #fdebee;
}

.home-hero {
  width: 100%;
  background: #fdebee;
  padding-top: 100px;
  padding-bottom: 140px;
  border-radius: 0% 50% 50% 50%/0% 0% 18% 18%;
}
.home-hero .home-hero-swiper {
  width: 100%;
  padding-bottom: 60px;
}
.home-hero .home-hero-swiper .home-hero-item {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
.home-hero .home-hero-swiper .home-hero-item .home-hero-content {
  display: flex;
  flex-direction: column;
  max-width: 530px;
}
.home-hero .home-hero-swiper .home-hero-item .home-hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 64px;
  color: #000000;
}
.home-hero .home-hero-swiper .home-hero-item .home-hero-content p {
  margin-top: 64px;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  color: #000;
}
.home-hero .home-hero-swiper .home-hero-item .home-hero-content a {
  width: -moz-max-content;
  width: max-content;
  margin-top: 36px;
  padding: 14px 30px;
  text-align: center;
  background: #ED213C;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  border-radius: 50px;
  transition: 0.4s;
}
.home-hero .home-hero-swiper .home-hero-item .home-hero-content a:hover {
  background: #c00019;
}
.home-hero .home-hero-swiper .home-hero-item .home-hero-img {
  width: 550px;
}
.home-hero .home-hero-swiper .home-hero-item .home-hero-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-hero .home-hero-swiper .swiper-pagination {
  bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.home-hero .home-hero-swiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ED213C;
}
.home-hero .home-hero-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #ED213C;
}

.home-icons-swiper .swiper-wrapper .home-icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
.home-icons-swiper .swiper-wrapper .home-icon-box .icon-box {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border: 1px solid #E21D36;
  border-radius: 100px;
}
.home-icons-swiper .swiper-wrapper .home-icon-box .icon-box img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-icons-swiper .swiper-wrapper .home-icon-box p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  color: #41318A;
}

.advantages-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.advantages-boxes .advantage-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 28px;
  background: #EADEF8;
  border-radius: 8px;
}
.advantages-boxes .advantage-box .box-icon {
  background: #572F7D;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.advantages-boxes .advantage-box .box-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: left;
  color: #000;
}
.advantages-boxes .advantage-box p {
  margin-top: 24px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
}

.mobile-app {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.mobile-app .mobile-app-content {
  width: 50%;
}
.mobile-app .mobile-app-content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 64px;
  text-align: left;
  color: #000;
}
.mobile-app .mobile-app-content p {
  margin-top: 30px;
  width: 70%;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
}
.mobile-app .mobile-app-content .download-links {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 25px;
}
.mobile-app .mobile-app-content .download-links a {
  width: -moz-max-content;
  width: max-content;
}
.mobile-app .mobile-app-img {
  width: 40%;
}
.mobile-app .mobile-app-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.home-service .service-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-service .service-boxes .service-box {
  box-shadow: 0px 4px 15px 0px rgba(44, 44, 54, 0.1);
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  transition: 0.6s;
}
.home-service .service-boxes .service-box .box-top {
  display: flex;
  align-items: center;
  gap: 15px;
}
.home-service .service-boxes .service-box .box-top .box-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E1CFF2;
}
.home-service .service-boxes .service-box .box-top .box-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #000;
}
.home-service .service-boxes .service-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.home-service .service-boxes .service-box:hover {
  transform: scale(1.05);
}

.home-Advertisements .advertisements-swiper {
  padding-bottom: 60px;
}
.home-Advertisements .advertisements-swiper .advertisements-box {
  width: 373px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 4px 15px 0px rgba(44, 44, 54, 0.1);
}
.home-Advertisements .advertisements-swiper .advertisements-box .advertisements-box-img {
  width: 100%;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
.home-Advertisements .advertisements-swiper .advertisements-box .advertisements-box-img img {
  border-radius: 6px 6px 0 0;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}
.home-Advertisements .advertisements-swiper .advertisements-box .advertisements-box-body {
  padding: 20px 25px;
  background: #fff;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.1);
  transition: 0.6s;
}
.home-Advertisements .advertisements-swiper .advertisements-box .advertisements-box-body .advertisements-date {
  display: block;
  gap: 0;
  margin-top: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #666;
}
.home-Advertisements .advertisements-swiper .advertisements-box .advertisements-box-body .advertisements-box-title {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  color: #000;
}
.home-Advertisements .advertisements-swiper .advertisements-box .advertisements-box-body p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-Advertisements .advertisements-swiper .advertisements-box .advertisements-box-body span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  color: #ED213C;
}
.home-Advertisements .advertisements-swiper .advertisements-box:hover .advertisements-box-img img {
  transform: scale(1.15);
  filter: brightness(60%);
}
.home-Advertisements .advertisements-swiper .advertisements-box:hover .advertisements-box-body {
  background: #f5f5f5;
}
.home-Advertisements .advertisements-swiper .swiper-pagination {
  bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.home-Advertisements .advertisements-swiper .swiper-pagination .swiper-pagination-bullet {
  opacity: 1;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ED213C;
}
.home-Advertisements .advertisements-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #ED213C;
}

footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #543486;
}
footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .footer-top .footer-logo {
  width: 250px;
}
footer .footer-top .footer-logo img {
  width: 100%;
  height: 100%;
}
footer .footer-top .footer-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
footer .footer-top .footer-links .footer_link {
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  position: relative;
}
footer .footer-top .footer-links .footer_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.6s;
}
footer .footer-top .footer-links .footer_link:hover::after {
  width: 100%;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
footer .footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  position: relative;
}
footer .footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: 0.6s;
}
footer .footer-contact a:hover::after {
  width: 100%;
}
footer .footer-socials {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 40px;
}
footer .footer-socials .social-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50px;
  padding: 10px;
  transition: 0.4s;
}
footer .footer-socials .social-item:hover {
  transform: scale(1.2);
}
footer .footer-bottom {
  margin-top: 40px;
}
footer .footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: #fff;
}

.about-head-img {
  width: 100%;
}
.about-head-img img {
  width: 100%;
}

.about-content-area .decoration-line {
  display: flex;
  align-items: center;
  width: 100%;
}
.about-content-area .decoration-line .line_item {
  width: 50%;
  height: 4px;
}
.about-content-area .decoration-line .left-line {
  background: #473A8F;
}
.about-content-area .decoration-line .right-line {
  background: #ED213C;
}
.about-content-area .about-text {
  margin-top: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.about-content-area .about-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}

.why_us .why_us_boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.why_us .why_us_boxes .why_us_box {
  box-shadow: 0px 4px 15px 0px rgba(44, 44, 54, 0.07);
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  transition: 0.6s;
}
.why_us .why_us_boxes .why_us_box .why_us_box-top {
  display: flex;
  align-items: center;
  gap: 15px;
}
.why_us .why_us_boxes .why_us_box .why_us_box-top .icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E1CFF2;
}
.why_us .why_us_boxes .why_us_box .why_us_box-top h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #000;
}
.why_us .why_us_boxes .why_us_box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.why_us .why_us_boxes .why_us_box:hover {
  transform: scale(1.05);
}

.track_karqo p {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  color: #000;
  margin-top: 15px;
}
.track_karqo form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.track_karqo form input {
  width: 550px;
  padding: 20px 25px;
  border: 1px solid #543486;
  border-radius: 16px;
  outline: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #929292;
}
.track_karqo form input::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #929292;
}
.track_karqo form input::placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #929292;
}
.track_karqo form .send_karqo_number {
  padding: 14px 30px;
  text-align: center;
  background: #543486;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  border-radius: 50px;
  transition: 0.4s;
}
.track_karqo form .send_karqo_number:hover {
  background: #47257c;
}

.cooperation-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}
.cooperation-content form {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.cooperation-content form input {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  width: 100%;
}
.cooperation-content form input::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.cooperation-content form input::placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.cooperation-content form textarea {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  width: 100%;
  height: 200px;
  resize: none;
}
.cooperation-content form textarea::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.cooperation-content form textarea::placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.cooperation-content form .send_cooperation {
  margin-top: 20px;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: #543486;
  outline: none;
  cursor: pointer;
  border: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
.cooperation-content .cooperation-img {
  width: 250px;
}
.cooperation-content .cooperation-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}
.contact-content .contact-boxes {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
}
.contact-content .contact-boxes .contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 4px 8px 15px 2px rgba(44, 44, 54, 0.1);
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  width: 400px;
  transition: 0.6s;
  cursor: pointer;
}
.contact-content .contact-boxes .contact-box .contact-box-icon {
  width: 35px;
  height: 35px;
}
.contact-content .contact-boxes .contact-box .contact-box-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-content .contact-boxes .contact-box h5 {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  color: #000;
}
.contact-content .contact-boxes .contact-box a {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  color: #000;
}
.contact-content .contact-boxes .contact-box:hover {
  transform: translateX(40px);
}
.contact-content form {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.contact-content form input {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  width: 100%;
}
.contact-content form input::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.contact-content form input::placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.contact-content form textarea {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  width: 100%;
  height: 200px;
  resize: none;
}
.contact-content form textarea::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.contact-content form textarea::placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.contact-content form .send_cooperation {
  margin-top: 20px;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: #543486;
  outline: none;
  cursor: pointer;
  border: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}

.map {
  transform: translateY(120px);
  width: 100%;
  height: 600px;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.be-courier p {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}
.be-courier .be-courier-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}
.be-courier .be-courier-content .be-courier-img {
  width: 250px;
}
.be-courier .be-courier-content .be-courier-img img {
  width: 100%;
  height: 100%;
}
.be-courier .be-courier-content form {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.be-courier .be-courier-content form input {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  width: 100%;
}
.be-courier .be-courier-content form input::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.be-courier .be-courier-content form input::placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.be-courier .be-courier-content form textarea {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  width: 100%;
  height: 250px;
  resize: none;
}
.be-courier .be-courier-content form textarea::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.be-courier .be-courier-content form textarea::placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.be-courier .be-courier-content form .nice-select {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  width: 100%;
  height: auto;
}
.be-courier .be-courier-content form .nice-select::after {
  right: 30px;
  width: 20px;
  height: 20px;
  margin: 0;
  top: 32%;
  border-color: #9D87C1;
}
.be-courier .be-courier-content form .send_courier {
  margin-top: 20px;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: #543486;
  outline: none;
  cursor: pointer;
  border: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
.be-courier .be-courier-content form .martial-status {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.be-courier .be-courier-content form .martial-status span {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #674B94;
}
.be-courier .be-courier-content form .martial-status .radios {
  display: flex;
  align-items: center;
  gap: 20px;
}
.be-courier .be-courier-content form .martial-status .radios .married, .be-courier .be-courier-content form .martial-status .radios .single {
  display: flex;
  align-items: center;
  gap: 10px;
}
.be-courier .be-courier-content form .martial-status .radios .married label, .be-courier .be-courier-content form .martial-status .radios .single label {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #929292;
}
.be-courier .be-courier-content form .martial-status .radios .married input[type=radio], .be-courier .be-courier-content form .martial-status .radios .single input[type=radio] {
  width: 20px;
  height: 20px;
  border: 1px solid #674B94 !important;
}
.be-courier .be-courier-content form .martial-status .radios .married input[type=radio]:checked:after, .be-courier .be-courier-content form .martial-status .radios .single input[type=radio]:checked:after {
  width: 22px;
  height: 22px;
  border-radius: 50px;
  top: -1px;
  left: -1px;
  position: relative;
  background: #674B94;
  content: "";
  display: inline-block;
  border: 2px solid white;
}
.be-courier .be-courier-content form .gender-status {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.be-courier .be-courier-content form .gender-status span {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #674B94;
}
.be-courier .be-courier-content form .gender-status .radios {
  display: flex;
  align-items: center;
  gap: 20px;
}
.be-courier .be-courier-content form .gender-status .radios .female, .be-courier .be-courier-content form .gender-status .radios .male {
  display: flex;
  align-items: center;
  gap: 10px;
}
.be-courier .be-courier-content form .gender-status .radios .female label, .be-courier .be-courier-content form .gender-status .radios .male label {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  color: #929292;
}
.be-courier .be-courier-content form .gender-status .radios .female input[type=radio], .be-courier .be-courier-content form .gender-status .radios .male input[type=radio] {
  width: 20px;
  height: 20px;
  border: 1px solid #674B94 !important;
}
.be-courier .be-courier-content form .gender-status .radios .female input[type=radio]:checked:after, .be-courier .be-courier-content form .gender-status .radios .male input[type=radio]:checked:after {
  width: 22px;
  height: 22px;
  border-radius: 50px;
  top: -1px;
  left: -1px;
  position: relative;
  background: #674B94;
  content: "";
  display: inline-block;
  border: 2px solid white;
}
.be-courier .be-courier-content form .cv-upload {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
}
.be-courier .be-courier-content form .cv-upload span {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  position: relative;
  cursor: pointer;
}
.be-courier .be-courier-content form .cv-upload input {
  border: none;
  width: -moz-max-content;
  width: max-content;
  padding: 0;
  font-size: 14px;
  position: absolute;
  width: 126px;
  height: 65px;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.be-courier .be-courier-content form .cv-upload .file-name {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: start;
}

.make_order .make_order-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 40px;
}
.make_order .make_order-content .make_order-img {
  width: 450px;
}
.make_order .make_order-content .make_order-img img {
  width: 100%;
  height: 100%;
}
.make_order .make_order-content form {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.make_order .make_order-content form input {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  width: 100%;
}
.make_order .make_order-content form input::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.make_order .make_order-content form input::placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.make_order .make_order-content form textarea {
  outline: none;
  background: #fff;
  border: 1px solid rgba(84, 52, 134, 0.38);
  border-radius: 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
  padding: 20px 25px;
  width: 100%;
  height: 250px;
  resize: none;
}
.make_order .make_order-content form textarea::-moz-placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.make_order .make_order-content form textarea::placeholder {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #9D87C1;
}
.make_order .make_order-content form .send_order {
  margin-top: 20px;
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  background: #543486;
  outline: none;
  cursor: pointer;
  border: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
.make_order .make_order-content form .line {
  width: 100%;
  background: #9D87C1;
  height: 2px;
}

.advertisement-detail .advertisement-detail-img {
  width: 100%;
  border-radius: 35px;
}
.advertisement-detail .advertisement-detail-img img {
  width: 100%;
  height: 100%;
  border-radius: 35px;
}
.advertisement-detail .advertisement-detail-time {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}
.advertisement-detail .advertisement-name {
  margin-top: 25px;
  font-size: 32px;
  line-height: 36px;
  color: #000;
  text-align: start;
}
.advertisement-detail .advertisement-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.advertisement-detail .advertisement-content p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  line-height: 26px;
}
.advertisement-detail .advertisements-slides {
  position: relative;
}
.advertisement-detail .advertisements-slides .advertisements-slide-title {
  font-size: 28px;
  line-height: 36px;
  color: #000;
  font-weight: 600;
}
.advertisement-detail .advertisements-slides .advertisements_slider {
  padding-bottom: 10px;
  position: initial;
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box {
  width: 373px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0px 4px 15px 0px rgba(44, 44, 54, 0.1);
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box .advertisements-box-img {
  width: 100%;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box .advertisements-box-img img {
  border-radius: 6px 6px 0 0;
  width: 100%;
  height: 100%;
  transition: 0.6s;
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box .advertisements-box-body {
  padding: 20px 25px;
  background: #fff;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.1);
  transition: 0.6s;
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box .advertisements-box-body .advertisements-date {
  display: block;
  gap: 0;
  margin-top: 0;
  font-size: 12px;
  font-weight: 500;
  line-height: 14px;
  text-align: left;
  color: #666;
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box .advertisements-box-body .advertisements-box-title {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  color: #000;
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box .advertisements-box-body p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  display: -webkit-box;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.6);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box .advertisements-box-body span {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  color: #ED213C;
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box:hover .advertisements-box-img img {
  transform: scale(1.15);
  filter: brightness(60%);
}
.advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box:hover .advertisements-box-body {
  background: #f5f5f5;
}
.advertisement-detail .advertisements-slides .advertisements_slider .swiper-button-next, .advertisement-detail .advertisements-slides .advertisements_slider .swiper-button-prev {
  bottom: auto;
  top: 21px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: transparent;
}
.advertisement-detail .advertisements-slides .advertisements_slider .swiper-button-next::after, .advertisement-detail .advertisements-slides .advertisements_slider .swiper-button-prev::after {
  display: none;
}
.advertisement-detail .advertisements-slides .advertisements_slider .swiper-button-next {
  right: 0;
}
.advertisement-detail .advertisements-slides .advertisements_slider .swiper-button-prev {
  right: 45px;
  left: auto;
}

.service-detail-img {
  width: 100%;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
}

.service-detail .service-name {
  margin-top: 25px;
  font-size: 32px;
  line-height: 36px;
  color: #000;
  text-align: center;
}
.service-detail .service-content {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.service-detail .service-content p {
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
  line-height: 26px;
}
.service-detail .service-slides {
  position: relative;
}
.service-detail .service-slides .service-slide-title {
  font-size: 28px;
  line-height: 36px;
  color: #000;
  font-weight: 600;
}
.service-detail .service-slides .service_slider {
  padding-bottom: 10px;
  position: initial;
}
.service-detail .service-slides .service_slider .service-box {
  width: 373px;
  box-shadow: 0px 4px 15px 0px rgba(44, 44, 54, 0.1);
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
  transition: 0.6s;
}
.service-detail .service-slides .service_slider .service-box .box-top {
  display: flex;
  align-items: center;
  gap: 15px;
}
.service-detail .service-slides .service_slider .service-box .box-top .box-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E1CFF2;
}
.service-detail .service-slides .service_slider .service-box .box-top .box-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #000;
}
.service-detail .service-slides .service_slider .service-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000;
}
.service-detail .service-slides .service_slider .service-box:hover {
  transform: scale(1.05);
}
.service-detail .service-slides .service_slider .swiper-button-next, .service-detail .service-slides .service_slider .swiper-button-prev {
  bottom: auto;
  top: 21px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: transparent;
}
.service-detail .service-slides .service_slider .swiper-button-next::after, .service-detail .service-slides .service_slider .swiper-button-prev::after {
  display: none;
}
.service-detail .service-slides .service_slider .swiper-button-next {
  right: 0;
}
.service-detail .service-slides .service_slider .swiper-button-prev {
  right: 45px;
  left: auto;
}

.our_branch .branch-content {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 60px;
}
.our_branch .branch-content .branches {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  min-width: 340px;
  width: 340px;
}
.our_branch .branch-content .branches .branch-box {
  width: 100%;
  padding: 20px 25px;
  border: 1px solid #543486;
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.our_branch .branch-content .branches .branch-box .branch_name {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  color: #000;
}
.our_branch .branch-content .branches .branch-box p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.8);
}
.our_branch .branch-content .branches .active_branch_box {
  border: 1px solid transparent;
  background: rgba(84, 52, 134, 0.23);
}
.our_branch .branch-content .branch-maps {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.our_branch .branch-content .branch-maps .branch_map {
  display: none;
  width: 100%;
  height: 450px;
  border-radius: 10px;
}
.our_branch .branch-content .branch-maps .branch_map iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}
.our_branch .branch-content .branch-maps .active_map {
  display: block;
}

.track-result {
  width: 100%;
}
.track-result .myOrder-roadmap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
}
.track-result .myOrder-roadmap .roadmap-level-area {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
}
.track-result .myOrder-roadmap .roadmap-level-area .road-line {
  width: 100%;
  height: 5px;
  background: rgba(65, 49, 138, 0.3);
  border-radius: 50px;
}
.track-result .myOrder-roadmap .roadmap-level-area .level-circle {
  width: 62px;
  height: 62px;
  border-radius: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #000;
}
.track-result .myOrder-roadmap .roadmap-level-area .level-circle .level-icon {
  background: #41318a;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  display: flex;
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
}
.track-result .myOrder-roadmap .roadmap-level-area:first-child {
  width: -moz-max-content;
  width: max-content;
}
.track-result .myOrder-roadmap .okayLevel .road-line {
  background: #41318a;
}
.track-result .myOrder-roadmap .okayLevel .level-circle .level-icon {
  opacity: 1;
  visibility: visible;
}
.track-result .roadmap-names {
  width: 100%;
  margin-top: 30px;
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.track-result .roadmap-names p {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #000;
  text-align: start;
  max-width: 120px;
  width: -moz-max-content;
  width: max-content;
}
.track-result .roadmap-names p:nth-child(2) {
  transform: translateX(-25%);
}
.track-result .roadmap-names p:nth-child(3) {
  transform: translateX(-20%);
}
.track-result .roadmap-names p:nth-child(4) {
  transform: translateX(20%);
}
.track-result .track_result_text {
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  color: #000;
}

@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 60px;
    padding-right: 60px;
  }
  .mt-120 {
    margin-top: 80px;
  }
  .title {
    font-size: 32px;
    line-height: 48px;
  }
  .mt-48 {
    margin-top: 40px;
  }
  nav .nav-logo {
    width: 150px;
  }
  nav .navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }
  nav .navbar-right-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  nav .navbar-right-buttons a {
    padding: 10px 20px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content {
    max-width: 500px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content h1 {
    font-size: 36px;
    line-height: 48px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 28px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-img {
    width: 500px;
  }
  .mobile-app .mobile-app-content {
    width: 50%;
  }
  .mobile-app .mobile-app-content h1 {
    font-size: 42px;
    line-height: 48px;
  }
  .mobile-app .mobile-app-content p {
    margin-top: 20px;
    width: 80%;
    font-size: 20px;
    line-height: 32px;
  }
  .mobile-app .mobile-app-content .download-links {
    margin-top: 15px;
    gap: 15px;
  }
  .mobile-app .mobile-app-content .download-links a {
    width: -moz-max-content;
    width: max-content;
  }
  .mobile-app .mobile-app-img {
    width: 40%;
  }
}
@media only screen and (max-width: 1080px) {
  nav {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  nav .nav-logo {
    width: 150px;
  }
  nav .navbar-links {
    display: none;
  }
  nav .navbar-right-buttons {
    display: none;
  }
  nav .hamburger {
    display: block;
  }
}
@media only screen and (max-width: 1020px) {
  .home-hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content {
    max-width: 480px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content h1 {
    font-size: 32px;
    line-height: 36px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 24px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-img {
    width: 480px;
  }
  .mobile-app .mobile-app-content {
    width: 50%;
  }
  .mobile-app .mobile-app-content h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .mobile-app .mobile-app-content p {
    margin-top: 15px;
    width: 80%;
    font-size: 20px;
    line-height: 32px;
  }
  .mobile-app .mobile-app-content .download-links {
    margin-top: 15px;
    gap: 15px;
  }
  .mobile-app .mobile-app-content .download-links a {
    width: -moz-max-content;
    width: max-content;
  }
  .mobile-app .mobile-app-img {
    width: 40%;
  }
  .home-service .service-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-service .service-boxes .service-box {
    padding: 20px;
  }
  .home-service .service-boxes .service-box .box-top {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .home-service .service-boxes .service-box .box-top .box-icon {
    width: 48px;
    height: 48px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E1CFF2;
  }
  .home-service .service-boxes .service-box .box-top .box-title {
    font-size: 18px;
    line-height: 24px;
  }
  .home-service .service-boxes .service-box p {
    font-size: 16px;
    line-height: 24px;
  }
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .footer-top {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 20px;
  }
  footer .footer-top .footer-logo {
    width: 200px;
  }
  footer .footer-top .footer-links {
    gap: 20px;
  }
  footer .footer-top .footer-links .footer_link {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-contact {
    gap: 20px;
  }
  footer .footer-bottom {
    margin-top: 30px;
  }
  .about-content-area .about-text {
    margin-top: 20px;
    gap: 10px;
  }
  .why_us .why_us_boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .why_us .why_us_boxes .why_us_box {
    padding: 20px;
  }
  .why_us .why_us_boxes .why_us_box .why_us_box-top .icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .why_us .why_us_boxes .why_us_box .why_us_box-top h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .cooperation-content form {
    width: 60%;
  }
  .contact-content .contact-boxes {
    gap: 40px;
  }
  .contact-content .contact-boxes .contact-box {
    width: 300px;
  }
  .contact-content .contact-boxes .contact-box:hover {
    transform: translateX(20px);
  }
  .map {
    transform: translateY(80px);
    height: 500px;
  }
  .make_order .make_order-content .make_order-img {
    width: 350px;
  }
  .make_order .make_order-content form {
    width: 55%;
  }
  .our_branch .branch-content {
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 50px;
  }
  .our_branch .branch-content .branches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    gap: 20px;
    min-width: 0;
    width: 100%;
  }
  .our_branch .branch-content .branch-maps {
    width: 100%;
  }
  .our_branch .branch-content .branch-maps .branch_map {
    height: 400px;
  }
  .track-result .roadmap-names p {
    font-size: 18px;
    line-height: 24px;
  }
  .track-result .roadmap-names p:nth-child(2) {
    transform: translateX(-35%);
  }
  .track-result .roadmap-names p:nth-child(3) {
    transform: translateX(-25%);
  }
  .track-result .roadmap-names p:nth-child(4) {
    transform: translateX(10%);
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mt-48 {
    margin-top: 30px;
  }
  .mt-120 {
    margin-top: 40px;
  }
  .title {
    font-size: 24px;
    line-height: 32px;
  }
  .advantages-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .advantages-boxes .advantage-box {
    padding: 20px;
  }
  .advantages-boxes .advantage-box .box-title {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
  }
  .advantages-boxes .advantage-box p {
    margin-top: 16px;
  }
  .mobile-app {
    flex-direction: column;
    align-items: center;
  }
  .mobile-app .mobile-app-content {
    width: 100%;
  }
  .mobile-app .mobile-app-content h1 {
    font-size: 32px;
    line-height: 36px;
  }
  .mobile-app .mobile-app-content p {
    margin-top: 15px;
    width: 100%;
    font-size: 18px;
    line-height: 26px;
  }
  .mobile-app .mobile-app-content .download-links {
    margin-top: 15px;
    gap: 10px;
  }
  .mobile-app .mobile-app-content .download-links a {
    width: 150px;
  }
  .mobile-app .mobile-app-content .download-links a svg {
    width: 100%;
  }
  .mobile-app .mobile-app-img {
    width: 70%;
  }
  .home-service .service-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .home-service .service-boxes .service-box {
    padding: 20px;
  }
  .home-service .service-boxes .service-box .box-top {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .home-service .service-boxes .service-box .box-top .box-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .home-service .service-boxes .service-box .box-top .box-title {
    font-size: 18px;
    line-height: 24px;
  }
  .home-service .service-boxes .service-box p {
    font-size: 14px;
    line-height: 20px;
  }
  .home-Advertisements .advertisements-swiper {
    padding-bottom: 60px;
  }
  .home-Advertisements .advertisements-swiper .advertisements-box {
    width: 353px;
    border-radius: 6px;
  }
  .home-Advertisements .advertisements-swiper .advertisements-box .advertisements-box-body {
    padding: 15px 20px;
  }
  .home-Advertisements .advertisements-swiper .advertisements-box .advertisements-box-body .advertisements-box-title {
    font-size: 18px;
    line-height: 24px;
  }
  .home-Advertisements .advertisements-swiper .swiper-pagination {
    bottom: 5px;
    gap: 8px;
  }
  .home-Advertisements .advertisements-swiper .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
  .track_karqo p {
    font-size: 20px;
    line-height: 28px;
  }
  .track_karqo form {
    gap: 30px;
  }
  .track_karqo form input {
    width: 450px;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 20px;
  }
  .track_karqo form .send_karqo_number {
    padding: 10px 25px;
    font-size: 14px;
    line-height: 22px;
  }
  .cooperation-content {
    align-items: center;
    justify-content: start;
    flex-direction: column;
    gap: 80px;
  }
  .cooperation-content form {
    width: 100%;
    gap: 15px;
  }
  .cooperation-content form input {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
  }
  .cooperation-content form input::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .cooperation-content form input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .cooperation-content form textarea {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
    height: 150px;
  }
  .cooperation-content form textarea::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .cooperation-content form textarea::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .cooperation-content form .send_cooperation {
    margin-top: 15px;
    width: 100%;
    padding: 15px;
  }
  .cooperation-content .cooperation-img {
    width: 250px;
  }
  .contact-content {
    flex-direction: column;
  }
  .contact-content .contact-boxes {
    width: 100%;
  }
  .contact-content .contact-boxes .contact-box {
    padding: 25px;
    width: 100%;
  }
  .contact-content .contact-boxes .contact-box .contact-box-icon {
    width: 30px;
    height: 30px;
  }
  .contact-content .contact-boxes .contact-box h5 {
    margin-top: 20px;
    font-size: 18px;
    line-height: 22px;
  }
  .contact-content .contact-boxes .contact-box a {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  .contact-content .contact-boxes .contact-box:hover {
    transform: translateX(0);
  }
  .contact-content form {
    width: 100%;
    gap: 15px;
  }
  .contact-content form input {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
  }
  .contact-content form input::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .contact-content form input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .contact-content form textarea {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
    height: 150px;
  }
  .contact-content form textarea::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .contact-content form textarea::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .contact-content form .send_cooperation {
    margin-top: 15px;
    width: 100%;
    padding: 20px;
  }
  .map {
    transform: translateY(40px);
    height: 400px;
  }
  .be-courier p {
    margin-top: 15px;
    font-size: 16px;
    line-height: 20px;
  }
  .be-courier .be-courier-content {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column-reverse;
    gap: 80px;
  }
  .be-courier .be-courier-content .be-courier-img {
    width: 250px;
  }
  .be-courier .be-courier-content form {
    width: 100%;
    gap: 15px;
  }
  .be-courier .be-courier-content form input {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
  }
  .be-courier .be-courier-content form input::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .be-courier .be-courier-content form input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .be-courier .be-courier-content form textarea {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
    height: 200px;
  }
  .be-courier .be-courier-content form textarea::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .be-courier .be-courier-content form textarea::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .be-courier .be-courier-content form .send_courier {
    margin-top: 15px;
    width: 100%;
    padding: 15px;
  }
  .be-courier .be-courier-content form .nice-select {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
  }
  .be-courier .be-courier-content form .martial-status {
    gap: 15px;
  }
  .be-courier .be-courier-content form .martial-status span {
    font-size: 16px;
    line-height: 20px;
  }
  .be-courier .be-courier-content form .gender-status {
    gap: 15px;
  }
  .be-courier .be-courier-content form .gender-status span {
    font-size: 16px;
    line-height: 20px;
  }
  .be-courier .be-courier-content form .cv-upload span {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
  }
  .be-courier .be-courier-content form .cv-upload input {
    width: 108px;
    height: 55px;
  }
  .be-courier .be-courier-content form .cv-upload .file-name {
    font-size: 12px;
    line-height: 18px;
  }
  .make_order .make_order-content {
    align-items: center;
    justify-content: start;
    flex-direction: column-reverse;
    gap: 80px;
  }
  .make_order .make_order-content .make_order-img {
    width: 250px;
  }
  .make_order .make_order-content form {
    width: 100%;
    gap: 15px;
  }
  .make_order .make_order-content form input {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
  }
  .make_order .make_order-content form input::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .make_order .make_order-content form input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .make_order .make_order-content form textarea {
    font-size: 16px;
    line-height: 24px;
    padding: 15px 20px;
    height: 200px;
  }
  .make_order .make_order-content form textarea::-moz-placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .make_order .make_order-content form textarea::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
  .make_order .make_order-content form .send_order {
    margin-top: 15px;
    width: 100%;
    padding: 15px;
  }
  .advertisement-detail .advertisement-name {
    font-size: 26px;
    line-height: 32px;
  }
  .advertisement-detail .advertisement-content p {
    font-size: 14px;
    line-height: 24px;
  }
  .advertisement-detail .advertisements-slides .advertisements-slide-title {
    font-size: 24px;
    line-height: 32px;
  }
  .advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box {
    width: 353px;
    border-radius: 6px;
  }
  .advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box .advertisements-box-body {
    padding: 15px 20px;
  }
  .advertisement-detail .advertisements-slides .advertisements_slider .advertisements-box .advertisements-box-body .advertisements-box-title {
    font-size: 18px;
    line-height: 24px;
  }
  .advertisement-detail .advertisements-slides .advertisements_slider .swiper-button-next, .advertisement-detail .advertisements-slides .advertisements_slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .advertisement-detail .advertisements-slides .advertisements_slider .swiper-button-prev {
    right: 40px;
  }
  .service-detail .service-name {
    font-size: 26px;
    line-height: 32px;
  }
  .service-detail .service-content p {
    font-size: 14px;
    line-height: 24px;
  }
  .service-detail .service-slides .service-slide-title {
    font-size: 24px;
    line-height: 32px;
  }
  .service-detail .service-slides .service_slider .service-box {
    width: 353px;
    padding: 20px;
  }
  .service-detail .service-slides .service_slider .service-box .box-top {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .service-detail .service-slides .service_slider .service-box .box-top .box-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
  }
  .service-detail .service-slides .service_slider .service-box .box-top .box-title {
    font-size: 18px;
    line-height: 24px;
  }
  .service-detail .service-slides .service_slider .service-box p {
    font-size: 14px;
    line-height: 20px;
  }
  .service-detail .service-slides .service_slider .swiper-button-next, .service-detail .service-slides .service_slider .swiper-button-prev {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .service-detail .service-slides .service_slider .swiper-button-prev {
    right: 40px;
  }
  .track-result .myOrder-roadmap .roadmap-level-area .level-circle {
    width: 35px;
    height: 35px;
    padding: 5px;
  }
  .track-result .myOrder-roadmap .roadmap-level-area .level-circle .level-icon {
    padding: 6px;
  }
  .track-result .roadmap-names {
    margin-top: 20px;
  }
  .track-result .roadmap-names p {
    font-size: 14px;
    line-height: 20px;
    max-width: 85px;
  }
  .track-result .roadmap-names p:nth-child(2) {
    transform: translateX(-35%);
  }
  .track-result .roadmap-names p:nth-child(3) {
    transform: translateX(-25%);
  }
  .track-result .roadmap-names p:nth-child(4) {
    transform: translateX(10%);
  }
  .track-result .track_result_text {
    font-size: 20px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .mobile_navbar_area .mobile_menu {
    width: 100%;
  }
  .home-hero {
    padding-bottom: 60px;
    border-radius: 0% 50% 50% 50%/0% 0% 8% 8%;
  }
  .home-hero .home-hero-swiper .home-hero-item {
    flex-direction: column-reverse;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content {
    max-width: 100%;
    width: 100%;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content p {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-content a {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 14px;
    line-height: 20px;
  }
  .home-hero .home-hero-swiper .home-hero-item .home-hero-img {
    width: 100%;
  }
  .home-hero .home-hero-swiper .swiper-pagination {
    bottom: 2;
  }
  .mobile-app .mobile-app-content h1 {
    font-size: 28px;
    line-height: 32px;
  }
  .mobile-app .mobile-app-content .download-links a {
    width: 130px;
  }
  .mobile-app .mobile-app-img {
    width: 75%;
  }
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .footer-top {
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 20px;
  }
  footer .footer-top .footer-logo {
    width: 180px;
  }
  footer .footer-top .footer-links {
    gap: 20px;
    flex-direction: column;
    align-items: start;
  }
  footer .footer-top .footer-links .footer_link {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-contact {
    gap: 20px;
  }
  footer .footer-socials {
    justify-content: start;
  }
  footer .footer-bottom {
    margin-top: 30px;
    text-align: center;
  }
  .track_karqo p {
    font-size: 18px;
    line-height: 24px;
  }
  .track_karqo form input {
    width: 90%;
  }
  .map {
    height: 300px;
  }
  .our_branch .branch-content {
    gap: 40px;
  }
  .our_branch .branch-content .branches {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
  .our_branch .branch-content .branch-maps .branch_map {
    height: 300px;
  }
  .track-result .roadmap-names {
    margin-top: 10px;
  }
  .track-result .roadmap-names p {
    font-size: 10px;
    line-height: 14px;
    max-width: 60px;
  }
  .track-result .roadmap-names p:nth-child(2) {
    transform: translateX(-25%);
  }
  .track-result .roadmap-names p:nth-child(3) {
    transform: translateX(-20%);
  }
  .track-result .roadmap-names p:nth-child(4) {
    transform: translateX(15%);
  }
  .track-result .track_result_text {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 475px) {
  .track-result .roadmap-names {
    margin-top: 10px;
  }
  .track-result .roadmap-names p {
    font-size: 8px;
    line-height: 12px;
    max-width: 50px;
  }
  .track-result .roadmap-names p:nth-child(2) {
    transform: translateX(-25%);
  }
  .track-result .roadmap-names p:nth-child(3) {
    transform: translateX(-20%);
  }
  .track-result .roadmap-names p:nth-child(4) {
    transform: translateX(10%);
  }
}/*# sourceMappingURL=style.css.map */