* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif !important;
  text-decoration: none !important;
  margin-bottom: 0 !important;
}

body {
  background: #F5F5F5 !important;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

.p-lr {
  padding-left: 140px;
  padding-right: 140px;
}

.p-tb {
  padding-top: 100px;
  padding-bottom: 100px;
}

.m-lr {
  margin-left: 140px;
  margin-right: 140px;
}

.mt-120 {
  margin-top: 120px;
}

.title {
  font-size: 40px;
  font-weight: 700;
  line-height: 54px;
}

.mt-48 {
  margin-top: 48px;
}

.mt-40 {
  margin-top: 40px;
}
.navbar_area{
    background:#f5f5f5;
}
nav {
    margin-top:20px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius:20px;
}
nav .left-navbar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  gap: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
nav .nav-logo {
  width: 85px;
}
nav .nav-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
nav .nav-logo .home_logo {
  display: none;
}
nav .nav-item {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
  padding-top: 8px;
  padding-bottom: 8px;
  cursor: pointer;
}
nav .nav-item:hover {
  color: #2E51A3;
}
nav .active {
  font-weight: 500;
  color: #2E51A3;
  border-bottom: 1px solid #2E51A3;
}
nav .nav-menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  padding-top: 4px;
  padding-bottom: 4px;
}
nav .nav-menu .nav-sub-menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: absolute;
  left: 0;
  top: 53px;
  visibility: hidden;
  opacity: 0;
  width: -moz-max-content;
  width: max-content;
  background: #f8f8f8;
  transition: 0.6s;
  z-index:10;
}
nav .nav-menu .nav-sub-menu .sub-nav-item {
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  color: #000000;
  padding: 12px 24px;
}
nav .nav-menu .nav-sub-menu .sub-nav-item:hover {
  color: #2E51A3;
}
nav .nav-menu:hover .nav-sub-menu {
  top: 48px;
  visibility: visible;
  opacity: 1;
}
nav .right-navbar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 40px;
}
nav .right-navbar .right-links {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  gap: 40px;
  padding-left: 40px;
  padding-right: 40px;
}
nav .right-navbar .language .currentLang {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  background: #F5F5F5;
  color: #000;
  line-height: 24px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  padding: 8px;
}
nav .right-navbar .language .currentLang::after {
  display: none;
}
nav .right-navbar .language .otherLang {
  margin-top: 10px;
  min-width: 1rem;
  width: 54px;
  border: none;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2);
}
nav .hamburger {
  background: transparent;
  font-size: 32px;
  color: #000;
  display: none;
}

.mobile_navbar_area {
  position: fixed;
  z-index: 999;
  top: -200%;
  left: 0%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(7px);
          backdrop-filter: blur(7px);
  transition: 0.6s;
}
.mobile_navbar_area .mobile_menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  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: transparent;
  color: #fff;
  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);
  color: #fff;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .closeMenu {
  background: transparent;
  margin-left: auto;
}
.mobile_navbar_area .mobile_menu .mobile_menu_top .closeMenu i {
  color: #fff;
  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: #fff;
}
.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;
  background: transparent;
}
.mobile_navbar_area .mobile_menu .mobile_links .mobile_link_menu .mobile_link_main i {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}
.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: 15px;
  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: #fff;
}
.mobile_navbar_area .mobile_menu .mobile_links .active_mobile_link {
  font-weight: 600;
}

.home-navbar {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.home-navbar nav{
    background: rgba(255, 255, 255, 0.7);
}
.home-navbar .left-navbar {
  background: transparent;
}
.home-navbar .nav-logo .home_logo {
  display: block;
}
.home-navbar .nav-logo .other_logo {
  display: none;
}
.home-navbar .nav-item {
  color: #000;
}
.home-navbar .nav-item:hover {
  color: #000;
}
.home-navbar .active {
  color: #2E51A3;
  border-bottom: 1px solid #2E51A3;
}
.home-navbar .nav-menu .nav-sub-menu {
  background: rgba(0, 0, 0, 0.32);
}
.home-navbar .nav-menu .nav-sub-menu .sub-nav-item {
  color: #fff;
}
.home-navbar .nav-menu .nav-sub-menu .sub-nav-item:hover {
  color: #fff;
}
.home-navbar .right-navbar .right-links {
  background: transparent;
}
.home-navbar .right-navbar .language .currentLang {
  background: #fff;
  color: #000;
}
.home-navbar .right-navbar .language .otherLang {
  background: rgba(0, 0, 0, 0.32);
}
.home-navbar .right-navbar .language .otherLang li a {
  color: #fff;
}
.home-navbar .right-navbar .language .otherLang li a:hover {
  background: rgba(0, 0, 0, 0.32);
}
.home-navbar .hamburger {
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  padding: 5px 10px;
  border-radius: 12px;
}

.home-hero {
  width: 100%;
  border-radius: 0px 0px 60px 60px;
  position: relative;
}
.home-hero .bg-img {
  position: relative;
  width: 100%;
  border-radius: 0px 0px 60px 60px;
}
.home-hero .bg-img img {
  width: 100%;
  height: 100%;
  filter: brightness(64%);
  border-radius: 0px 0px 60px 60px;
}
.home-hero .bg-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 81, 163, 0.1);
  border-radius: 0px 0px 60px 60px;
}
.home-hero .home-hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.home-hero .home-hero-content .large-title {
  font-size: 44px;
  font-weight: 400;
  line-height: 60px;
  color: #FFFFFF;
  margin: 0;
}
.home-hero .home-hero-content .large-title span {
  font-weight: 600;
}
.home-hero .home-hero-content p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #fff;
  margin-top: 28px;
}
.home-hero .home-hero-content .hero_apply {
  margin-top: 60px;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 16px;
  background: #FFFFFF;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #2E51A3;
  transition: 0.4s;
}
.home-hero .home-hero-content .hero_apply:hover {
  background: #8FB1FF;
  color: #fff;
  transform: scale(1.05);
}
.home-hero .home-hero-content .hero_apply:hover svg path {
  transition: 0.4s;
  stroke: #fff;
}
.home-hero .down_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-align: center;
  color: #FFFFFF;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 48px;
}

.slogan {
  margin-top: 70px;
}
.slogan svg {
  width: 100%;
  height: 100%;
}

.home-about {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 20px;
}
.home-about .home-about-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 40px;
  background: #2E51A3;
  border-radius: 20px;
}
.home-about .home-about-box .title {
  color: #fff;
}
.home-about .home-about-box .txt {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.home-about .home-about-box .txt p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #fff;
}
.home-about .home-about-box .more-about {
  padding: 18px 40px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: center;
  color: #2E51A3;
  transition: 0.4s;
}
.home-about .home-about-box .more-about:hover {
  background: #8FB1FF;
  color: #fff;
  transform: scale(1.05);
}
.home-about .home-about-box .more-about:hover svg path {
  transition: 0.4s;
  stroke: #fff;
}
.home-about .home-about-img {
  border-radius: 20px;
  height: 100%;
}
.home-about .home-about-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

.home-services {
  position: relative;
}
.home-services .service-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 76px;
}
.home-services .service-boxes .service-box {
  border-radius: 20px;
  padding: 28px 43px 28px 28px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
  position: relative;
  transition: 0.4s;
}
.home-services .service-boxes .service-box .service-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-align: left;
  color: #2E51A3;
}
.home-services .service-boxes .service-box p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.home-services .service-boxes .service-box .service-box-icon {
  position: absolute;
  right: -8px;
  top: -16px;
  transform: rotate(23.5deg);
}
.home-services .service-boxes .service-box .service-box-icon .octagonWrap {
  width: 60px;
  height: 60px;
  position: relative;
  overflow: hidden;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-services .service-boxes .service-box .service-box-icon .octagonWrap .octagon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  transform: rotate(45deg);
  background: #fff;
  border: 1px solid #2E51A3;
}
.home-services .service-boxes .service-box .service-box-icon .octagonWrap .octagon::before {
  position: absolute;
  /* There needs to be a negative value here to cancel
   * out the width of the border. It's currently -3px,
   * but if the border were 5px, then it'd be -5px.
   */
  top: -0.6px;
  right: -0.6px;
  bottom: -0.6px;
  left: -0.6px;
  transform: rotate(45deg);
  content: "";
  border: 1px solid #2E51A3;
}
.home-services .service-boxes .service-box .service-box-icon .octagonWrap img {
  position: relative;
  z-index: 10;
  transform: rotate(-23.5deg);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.home-services .service-boxes .service-box:hover {
  transform: scale(1.02);
}
.home-services .service-decoration-1 {
  position: absolute;
  bottom: -24%;
  left: 0;
  z-index: -1;
}
.home-services .service-decoration-1 svg {
  width: 100%;
  height: 100%;
}
.home-services .service-decoration-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.home-services .service-decoration-2 svg {
  width: 100%;
  height: 100%;
}

.home-projects {
  position: relative;
}
.home-projects .title {
  color: #000;
}
.home-projects .all_project_link {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: rgb(46, 81, 163);
  width: -moz-max-content;
  width: max-content;
  display: block;
  text-decoration: underline !important;
}
.home-projects .home-project-swiper {
  width: 100%;
  position: initial;
  margin-top: 60px;
}
.home-projects .home-project-swiper .project-box {
  width: 373px;
  position: relative;
  padding: 28px;
}
.home-projects .home-project-swiper .project-box .project-box-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.home-projects .home-project-swiper .project-box .project-box-img {
  width: 100%;
  height: 100%;
}
.home-projects .home-project-swiper .project-box .project-name {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
.home-projects .home-project-swiper .project-box .direction-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 18px;
}
.home-projects .home-project-swiper .swiper-button-prev, .home-projects .home-project-swiper .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
  padding: 12px;
  top: 40px;
}
.home-projects .home-project-swiper .swiper-button-prev::after, .home-projects .home-project-swiper .swiper-button-next::after {
  display: none;
}
.home-projects .home-project-swiper .swiper-button-prev {
  left: auto !important;
  right: 208px !important;
}
.home-projects .home-project-swiper .swiper-button-next {
  left: auto !important;
  right: 140px !important;
}

.have_a_question {
  padding: 60px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.have_a_question .have_a_question-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  width: 50%;
}
.have_a_question .have_a_question-content .title {
  color: #2E51A3;
}
.have_a_question .have_a_question-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.have_a_question a {
  padding: 18px 40px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  background: #2E51A3;
  transition: 0.4s;
}
.have_a_question a:hover {
  background: #8FB1FF;
  color: #fff;
  transform: scale(1.1);
}

footer {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
footer .footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
footer .footer-top .footer-logo {
  width: 90px;
}
footer .footer-top .footer-logo img {
  width: 100%;
  height: 100%;
}
footer .footer-top .footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
footer .footer-top .footer-links .footer_link {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  color: #000;
  cursor: pointer;
}
footer .footer-top .footer-links .footer_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  position: relative;
}
footer .footer-top .footer-links .footer_menu .footer_sub_menu {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  position: absolute;
  width: -moz-max-content;
  width: max-content;
  top: 50px;
  left: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  padding: 10px;
  border-radius: 6px;
}
footer .footer-top .footer-links .footer_menu .footer_sub_menu .footer_sublink {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}
footer .footer-top .footer-links .footer_menu .active_sub_menu {
  top: 40px;
  opacity: 1;
  visibility: visible;
}
footer .footer-top .footer-links .language .currentLang {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 12px;
  background: #fff;
  color: #000;
  line-height: 24px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 18px;
}
footer .footer-top .footer-links .language .currentLang::after {
  display: none;
}
footer .footer-top .footer-links .language .otherLang {
  margin-top: 10px;
  min-width: 1rem;
  width: 76px;
  border: none;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
}
footer .footer-contact {
  margin-top: 32px;
  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: #000;
}
footer .footer-socials {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 20px;
}
footer .footer-socials a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 50px;
  background: #fff;
  transition: 0.5s;
}
footer .footer-socials a img {
  width: 100%;
  height: 100%;
}
footer .footer-socials a:hover {
  background: #8FB1FF;
  transform: scale(1.1);
}
footer .footer-bottom {
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid #FFFFFF;
}
footer .footer-bottom p {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
footer .footer-bottom p a {
  font-weight: 500;
  color: #2E51A3;
}
footer .footer-decoration-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
footer .footer-decoration-1 svg {
  width: 100%;
  height: 100%;
}
footer .footer-decoration-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
footer .footer-decoration-2 svg {
  width: 100%;
  height: 100%;
}

.about .about-img {
  width: 100%;
  border-radius: 20px;
}
.about .about-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.about .about-content {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 50px;
}
.about .about-content .about-content-title {
  min-width: 54px;
  min-height: 155px;
  position: relative;
}
.about .about-content .about-content-title h2 {
  transform: rotate(270deg);
  font-size: 32px;
  font-weight: 500;
  line-height: 54px;
  text-wrap: nowrap;
  position: absolute;
  top: 50px;
  left: -51px;
}
.about .about-content .about-texts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.about .about-content .about-texts p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}

.choose-us {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 20px;
}
.choose-us .left-box {
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.24);
  display: flex;
  align-items: center;
  margin: auto 0;
  padding: 40px;
  gap: 7px;
  height: 100%;
  border-radius: 8px;
}
.choose-us .left-box h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 54px;
  text-align: left;
  color: #000;
}
.choose-us .left-box svg {
  width: 100px;
  height: 40px;
}
.choose-us .right-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  padding: 40px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}
.choose-us .right-box .reasons-item {
  display: flex;
  align-items: start;
  gap: 20px;
}
.choose-us .right-box .reasons-item .reasons-count {
  font-size: 48px;
  font-weight: 400;
  line-height: 54px;
  text-align: left;
  color: #000000;
}
.choose-us .right-box .reasons-item .reasont-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 12px;
}
.choose-us .right-box .reasons-item .reasont-content h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  text-align: left;
  color: #000000;
}
.choose-us .right-box .reasons-item .reasont-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: #000000;
}
.choose-us .choose-us-decoration-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0;
  top: 0;
}
.choose-us .choose-us-decoration-1 svg {
    width: 60%;
  position: absolute;
  top: -100%;
  left: 0;
}
.choose-us .choose-us-decoration-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  right: 0;
  top: 0;
}
.choose-us .choose-us-decoration-2 svg {
  position: absolute;
  right: 0;
  top: -100%;
}

.faq .title {
  text-align: center;
}
.faq .faq-area {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.faq .faq-area .accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .faq-area .accordion .accordion__item .accordion__btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  background: #FAFAFA;
  border: none;
  outline: none;
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  cursor: pointer;
  transition: 0.1s;
}
.faq .faq-area .accordion .accordion__item .accordion__btn .accordion__caption {
  display: flex;
  align-items: center;
  gap: 10px;
}
.faq .faq-area .accordion .accordion__item .accordion__btn .accordion__icon {
  height: 24px;
  transform: rotate(0deg);
  transition: 0.3s ease-in-out;
}
.faq .faq-area .accordion .accordion__item .accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  color: rgba(0, 0, 0, 0.8);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  transform: translateX(16px);
  transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
}
.faq .faq-area .accordion .accordion__item .accordion__content p {
  padding: 1rem 1.8rem;
}
.faq .faq-area .accordion .accordion__item--active .accordion__btn .accordion__icon {
  transform: rotate(180deg);
}
.faq .faq-area .accordion .accordion__item--active .accordion__content {
  opacity: 1;
  transform: translateX(0px);
  max-height: 100vh;
}

.service-detail {
  position: relative;
  padding-top: 40px;
}
.service-detail .title {
  text-align: center;
  color: #2E51A3;
}
.service-detail .service-content {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: start;
  line-height:35px;
  gap: 10px;
}
.service-detail .service-content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.8);
}
.service-detail .service-img {
  width: 100%;
  border-radius: 20px;
}
.service-detail .service-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.service-detail .service-decoration-1 {
  position: absolute;
  width: 60%;
  top: 0;
  right: 0;
  z-index: -1;
}
.service-detail .service-decoration-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-detail .service-decoration-2 {
  position: absolute;
  width: 60%;
  bottom: -30%;
  left: 0;
  z-index: -1;
}
.service-detail .service-decoration-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.project-page .project-top {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.project-page .project-top p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: right;
  color: #000000;
  width: 50%;
}
.project-page .all-project-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.project-page .all-project-boxes .project-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  position: relative;
  padding: 28px;
}
.project-page .all-project-boxes .project-box .project-box-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.project-page .all-project-boxes .project-box .project-box-img {
  width: 100%;
  height: 100%;
}
.project-page .all-project-boxes .project-box .project-name {
  margin-top: 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}
.project-page .all-project-boxes .project-box .direction-icon {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  border-radius: 50px;
  padding: 18px;
}

.project-details .project-gallery-area {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.project-details .project-gallery-area .gallery-part-1 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img {
  border-radius: 20px;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+1) {
  width: 66%;
  height: 300px;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+2) {
  width: 32%;
  height: 457px;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+3) {
  width: 66%;
  height: 448px;
  margin-top: -157px;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+4) {
  width: 32%;
  height: 290px;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+5) {
  width: 32%;
  height: 457px;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+6) {
  width: 66%;
  height: 300px;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+7) {
  width: 32%;
  height: 290px;
}
.project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n) {
  width: 66%;
  height: 448px;
  margin-top: -157px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  padding: 40px 76px;
  display: flex;
  flex-direction: column;
}
.contact-box .contact-box-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  color: #000000;
}
.contact-box .contact-box-items {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  row-gap: 40px;
}
.contact-box .contact-box-items .box-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.contact-box .contact-box-items .box-item p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  color: #000000;
}
.contact-box .contact-box-items .box-item a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #000000;
}
.contact-box .contact-box-items .box-item .social-medias {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-box .contact-box-items .box-item .social-medias .social-media-item {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 8px;
}
.contact-box .contact-box-items .box-item .social-medias .social-media-item img {
  width: 100%;
  height: 100%;
}

.contact-form-box {
  margin-top: 20px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid #FFFFFF;
  border-radius: 20px;
  padding: 80px 60px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 150px;
  position: relative;
}
.contact-form-box .form-box-content {
  width: 38%;
}
.contact-form-box .form-box-content .title {
  width: 60%;
}
.contact-form-box .form-box-content p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 9, 24, 0.8);
}
.contact-form-box form {
  width: 50%;
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
}
.contact-form-box form input {
  width: 100%;
  padding: 18px 16px;
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 4px 4px 4px 0px rgba(0, 35, 95, 0.04);
  border-radius: 12px;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact-form-box form input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact-form-box form input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact-form-box form .input-phone {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 18px 16px;
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 4px 4px 4px 0px rgba(0, 35, 95, 0.04);
  border-radius: 12px;
}
.contact-form-box form .input-phone input {
  width: 100%;
  padding: 0;
  padding-left: 12px;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  outline: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
  border-left: 1px solid #fff;
}
.contact-form-box form .input-phone input::-moz-placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact-form-box form .input-phone input::placeholder {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact-form-box form .input-phone .nice-select {
  min-height: 0;
  line-height: normal;
  padding: 0;
  border: none;
  outline: none;
  height: auto;
  width: 70px;
  min-width: 70px;
  background: transparent;
}
.contact-form-box form .input-phone .nice-select span {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #000000;
  background: transparent;
}
.contact-form-box form .input-phone .nice-select::after {
  width: 12px;
  height: 12px;
  border-color: #000;
  margin-top: -8px;
}
.contact-form-box form textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid #FFFFFF;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 4px 4px 4px 0px rgba(0, 35, 95, 0.04);
  border-radius: 12px;
  outline: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  resize: none;
  height: 143px;
  color: rgba(0, 0, 0, 0.6);
}
.contact-form-box form textarea::-moz-placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact-form-box form textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
  color: rgba(0, 0, 0, 0.6);
}
.contact-form-box form .send-form {
  width: 100%;
  margin-top: 16px;
  text-align: center;
  background: #2E51A3;
  box-shadow: 12px 12px 24px 0px rgba(0, 35, 95, 0.05);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  padding: 16px;
  transition: 0.4s;
}
.contact-form-box form .send-form:hover {
  background: #D6F9FC;
  color: #2E51A3;
}

.contact-decoration-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.contact-decoration-1 img {
  width: 100%;
  height: 100%;
}

.contact-decoration-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.contact-decoration-2 img {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 1280px) {
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+1) {
    width: 65.5%;
    height: 250px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+2) {
    width: 31.5%;
    height: 407px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+3) {
    width: 65.5%;
    height: 398px;
    margin-top: -157px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+4) {
    width: 31.5%;
    height: 240px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+5) {
    width: 31.5%;
    height: 407px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+6) {
    width: 65.5%;
    height: 250px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+7) {
    width: 31.5%;
    height: 240px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n) {
    width: 65.5%;
    height: 398px;
    margin-top: -157px;
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 70px;
    padding-right: 70px;
  }
  .m-lr {
    margin-left: 70px;
    margin-right: 70px;
  }
  .p-tb {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .mt-120 {
    margin-top: 80px;
  }
  .mt-40 {
    margin-top: 35px;
  }
  nav .left-navbar {
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  nav .nav-logo {
    width: 98px;
  }
  nav .nav-menu .nav-sub-menu .sub-nav-item {
    padding: 10px 20px;
  }
  nav .right-navbar {
    gap: 15px;
  }
  nav .right-navbar .right-links {
    gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  nav .right-navbar .language .currentLang {
    padding: 10px 6px;
  }
  .title {
    font-size: 32px;
    line-height: 48px;
  }
  .mt-48 {
    margin-top: 40px;
  }
  .home-hero .home-hero-content {
    width: 90%;
  }
  .home-hero .home-hero-content .large-title {
    font-size: 40px;
    line-height: 52px;
  }
  .home-hero .home-hero-content p {
    font-size: 20px;
    line-height: 28px;
    margin-top: 20px;
  }
  .home-hero .home-hero-content .hero_apply {
    margin-top: 50px;
    padding: 14px 36px;
    gap: 10px;
  }
  .home-hero .down_link {
    bottom: 38px;
  }
  .slogan {
    margin-top: 50px;
  }
  .home-services .service-boxes {
    margin-top: 56px;
  }
  .have_a_question {
    padding: 40px;
  }
  .have_a_question .have_a_question-content {
    width: 60%;
  }
  footer .footer-top .footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
  }
  footer .footer-top .footer-links .footer_link {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-contact {
    gap: 20px;
  }
  .home-projects .home-project-swiper {
    margin-top: 40px;
  }
  .home-projects .home-project-swiper .swiper-button-prev {
    right: 138px !important;
  }
  .home-projects .home-project-swiper .swiper-button-next {
    right: 70px !important;
  }
  .about .about-content {
    gap: 30px;
  }
  .about .about-content .about-content-title {
    min-width: 54px;
    min-height: 155px;
    position: relative;
  }
  .about .about-content .about-content-title h2 {
    transform: rotate(270deg);
    font-size: 26px;
    line-height: 36px;
    top: 50px;
    left: -51px;
  }
  .choose-us .left-box {
    padding: 35px;
    gap: 7px;
  }
  .choose-us .left-box h3 {
    font-size: 32px;
    line-height: 48px;
  }
  .choose-us .left-box svg {
    width: 100px;
    height: 40px;
  }
  .choose-us .right-box {
    gap: 35px;
    padding: 35px;
  }
  .choose-us .right-box .reasons-item {
    gap: 15px;
  }
  .choose-us .right-box .reasons-item .reasons-count {
    font-size: 42px;
    line-height: 48px;
  }
  .choose-us .right-box .reasons-item .reasont-content {
    gap: 10px;
  }
  .choose-us .right-box .reasons-item .reasont-content h5 {
    font-size: 18px;
    line-height: 32px;
  }
  .service-detail .service-content {
    padding: 30px;
  }
  .project-page .project-top {
    padding: 50px 35px;
  }
  .project-page .project-top p {
    font-size: 15px;
    line-height: 22px;
    width: 60%;
  }
  .project-page .all-project-boxes .project-box .project-name {
    margin-top: 20px;
  }
  .project-page .all-project-boxes .project-box .direction-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 10px;
  }
  .contact-box {
    padding: 30px 56px;
  }
  .contact-box .contact-box-title {
    font-size: 20px;
    line-height: 28px;
  }
  .contact-box .contact-box-items .box-item {
    gap: 15px;
  }
  .contact-box .contact-box-items .box-item a {
    gap: 6px;
  }
  .contact-box .contact-box-items .box-item .social-medias {
    gap: 15px;
  }
  .contact-form-box {
    padding: 60px 50px;
    gap: 100px;
  }
  .contact-form-box .form-box-content .title {
    width: 65%;
  }
}
@media only screen and (max-width: 992px) {
    nav{
        padding-left:20px;
        padding-right:20px;
    }
  nav .left-navbar {
    display: none;
  }
  nav .nav-logo {
    width: 65px;
  }
  nav .right-navbar {
    display: none;
  }
  nav .hamburger {
    display: flex;
  }
  .home-hero .home-hero-content {
    width: 100%;
  }
  .home-hero .home-hero-content .large-title {
    font-size: 32px;
    line-height: 36px;
  }
  .home-hero .home-hero-content p {
    font-size: 18px;
    line-height: 24px;
  }
  .home-hero .home-hero-content .hero_apply {
    margin-top: 40px;
    padding: 12px 34px;
    gap: 10px;
  }
  .home-hero .down_link {
    bottom: 28px;
  }
  .home-about {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .home-about .home-about-box {
    padding: 20px;
  }
  .home-about .home-about-box .txt {
    margin-top: 20px;
    gap: 15px;
  }
  .home-about .home-about-box .more-about {
    padding: 15px 30px;
    background: #fff;
    gap: 10px;
    font-size: 14px;
    line-height: 22px;
  }
  .choose-us {
    grid-template-columns: repeat(1, 1fr);
  }
  .choose-us .left-box {
    padding: 60px;
    gap: 80px;
    flex-direction: column;
  }
  .choose-us .left-box h3 {
    font-size: 32px;
    line-height: 48px;
  }
  .choose-us .left-box svg {
    width: auto;
    height: auto;
    transform: rotate(90deg);
  }
  .faq .faq-area {
    width: 90%;
  }
  .project-page .all-project-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-page .all-project-boxes .project-box .project-name {
    margin-top: 20px;
  }
  .project-page .all-project-boxes .project-box .direction-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 18px;
  }
  .contact-box {
    padding: 20px 46px;
  }
  .contact-box .contact-box-title {
    font-size: 20px;
    line-height: 28px;
  }
  .contact-box .contact-box-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .contact-box .contact-box-items .box-item {
    gap: 10px;
  }
  .contact-box .contact-box-items .box-item p {
    font-size: 14px;
    line-height: 22px;
  }
  .contact-box .contact-box-items .box-item a {
    gap: 4px;
    font-size: 14px;
    line-height: 22px;
  }
  .contact-box .contact-box-items .box-item .social-medias {
    gap: 10px;
  }
  .contact-box .contact-box-items .box-item .social-medias .social-media-item {
    width: 36px;
    height: 36px;
    padding: 8px;
  }
  .contact-form-box {
    padding: 50px 40px;
    gap: 40px;
    flex-direction: column;
  }
  .contact-form-box .form-box-content {
    width: 100%;
  }
  .contact-form-box .form-box-content .title {
    width: 200px;
  }
  .contact-form-box form {
    width: 100%;
  }
  .contact-form-box form input {
    padding: 14px 12px;
  }
  .contact-form-box form .input-phone {
    padding: 16px 12px;
  }
  .contact-form-box form textarea {
    padding: 12px;
    height: 120px;
  }
  .contact-form-box form .send-form {
    margin-top: 12px;
    padding: 14px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+1) {
    width: 65%;
    height: 200px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+2) {
    width: 31%;
    height: 357px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+3) {
    width: 65%;
    height: 348px;
    margin-top: -157px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+4) {
    width: 31%;
    height: 190px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+5) {
    width: 31%;
    height: 357px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+6) {
    width: 65%;
    height: 200px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+7) {
    width: 31%;
    height: 190px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n) {
    width: 65%;
    height: 348px;
    margin-top: -157px;
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .m-lr {
    margin-left: 20px;
    margin-right: 20px;
  }
  .p-tb {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mt-120 {
    margin-top: 40px;
  }
  .title {
    font-size: 24px;
    line-height: 32px;
  }
  .mt-40 {
    margin-top: 30px;
  }
  .mt-48 {
    margin-top: 30px;
  }
  .home-hero {
    height: 500px;
  }
  .home-hero .bg-img {
    height: 100%;
  }
  .home-hero .bg-img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home-hero .home-hero-content {
    width: 100%;
  }
  .home-hero .home-hero-content .large-title {
    font-size: 28px;
    line-height: 32px;
  }
  .home-hero .home-hero-content p {
    font-size: 18px;
    line-height: 24px;
  }
  .home-hero .home-hero-content .hero_apply {
    margin-top: 20px;
    padding: 12px 34px;
    gap: 10px;
  }
  .home-hero .down_link {
    bottom: 18px;
    gap: 10px;
  }
  .home-hero .down_link svg {
    width: 50px;
    height: 50px;
  }
  .slogan {
    margin-top: 30px;
  }
  .home-services .service-boxes {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 36px;
  }
  .have_a_question {
    padding: 30px;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
  .have_a_question .have_a_question-content {
    width: 100%;
  }
  .have_a_question a {
    padding: 12px 34px;
    gap: 10px;
  }
  footer .footer-top {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
  footer .footer-top .footer-links {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
  footer .footer-top .footer-links .footer_link {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-top .footer-links .footer_menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    position: relative;
  }
  footer .footer-top .footer-links .footer_menu .footer_sub_menu {
    display: none;
    position: relative;
    top: initial;
    left: initial;
    opacity: 1;
    visibility: visible;
    background: transparent;
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
  footer .footer-top .footer-links .footer_menu .active_sub_menu {
    top: 0;
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  footer .footer-contact {
    margin-top: 20px;
    gap: 20px;
  }
  footer .footer-socials {
    margin-top: 30px;
    justify-content: start;
  }
  .home-projects .title {
    width: 250px;
  }
  .home-projects .home-project-swiper {
    margin-top: 30px;
  }
  .home-projects .home-project-swiper .swiper-button-prev, .home-projects .home-project-swiper .swiper-button-next {
    width: 30px;
    height: 30px;
    padding: 6px;
  }
  .home-projects .home-project-swiper .swiper-button-prev {
    right: 58px !important;
  }
  .home-projects .home-project-swiper .swiper-button-next {
    right: 20px !important;
  }
  .about .about-content {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
  .about .about-content .about-content-title {
    min-width: 0;
    min-height: 0;
    position: relative;
  }
  .about .about-content .about-content-title h2 {
    transform: rotate(0);
    font-size: 22px;
    line-height: 32px;
    top: initial;
    left: initial;
    position: initial;
  }
  .choose-us .left-box {
    padding: 30px;
    gap: 60px;
  }
  .choose-us .left-box h3 {
    font-size: 26px;
    line-height: 36px;
  }
  .choose-us .right-box {
    gap: 30px;
    padding: 30px;
  }
  .choose-us .right-box .reasons-item .reasons-count {
    font-size: 36px;
    line-height: 42px;
  }
  .choose-us .right-box .reasons-item .reasont-content {
    gap: 10px;
  }
  .choose-us .right-box .reasons-item .reasont-content h5 {
    font-size: 18px;
    line-height: 32px;
  }
  .faq .faq-area {
    width: 100%;
  }
  .service-detail .service-content {
    padding: 20px;
  }
  .project-page .project-top {
    padding: 40px 30px;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
  }
  .project-page .project-top p {
    text-align: start;
    font-size: 15px;
    line-height: 22px;
    width: 100%;
  }
  .project-page .all-project-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .project-page .all-project-boxes .project-box .project-name {
    margin-top: 20px;
  }
  .project-page .all-project-boxes .project-box .direction-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 10px;
  }
  .project-details .project-gallery-area .gallery-part-1 {
    gap: 10px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+1) {
    width: 65%;
    height: 150px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+2) {
    width: 31%;
    height: 307px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+3) {
    width: 65%;
    height: 298px;
    margin-top: -157px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+4) {
    width: 31%;
    height: 140px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+5) {
    width: 31%;
    height: 307px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+6) {
    width: 65%;
    height: 150px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+7) {
    width: 31%;
    height: 140px;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n) {
    width: 65%;
    height: 298px;
    margin-top: -157px;
  }
  .contact-form-box {
    padding: 30px 20px;
  }
  .contact-form-box .form-box-content {
    width: 100%;
  }
  .contact-form-box .form-box-content .title {
    width: 200px;
  }
}
@media only screen and (max-width: 575px) {
    .home-hero {
    height: 600px;
  }
  .home-hero .home-hero-content .large-title {
    font-size: 22px;
    line-height: 26px;
  }
  .home-hero .home-hero-content p {
    font-size: 16px;
    line-height: 20px;
    margin-top:20px;
  }
  .home-hero .home-hero-content .hero_apply {
    margin-top: 0px;
    padding: 10px 24px;
    gap: 10px;
  }
  .home-hero .down_link {
    bottom: 18px;
    gap: 10px;
  }
  .home-hero .down_link svg {
    width: 40px;
    height: 40px;
  }
  .project-page .all-project-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .project-page .all-project-boxes .project-box .project-name {
    margin-top: 20px;
  }
  .project-page .all-project-boxes .project-box .direction-icon {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 50px;
    padding: 18px;
  }
  .mobile_navbar_area .mobile_menu {
    width: 100%;
  }
  .contact-box {
    padding: 30px;
  }
  .contact-box .contact-box-title {
    font-size: 18px;
    line-height: 26px;
  }
  .contact-box .contact-box-items {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
  .contact-box .contact-box-items .box-item {
    gap: 10px;
    align-items: center;
  }
  .choose-us .choose-us-decoration-1 svg {
      width: 100%;
    height: 100%;
    top:-42%;
  }
  .choose-us .choose-us-decoration-2 svg{
      top:0;
  }
  .project-details .project-gallery-area .gallery-part-1 {
    gap: 10px;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: start;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+1) {
    width: 100%;
    height: auto;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+2) {
    width: 100%;
    height: auto;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+3) {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+4) {
    width: 100%;
    height: auto;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+5) {
    width: 100%;
    height: auto;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+6) {
    width: 100%;
    height: auto;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n+7) {
    width: 100%;
    height: auto;
  }
  .project-details .project-gallery-area .gallery-part-1 .gallery-img:nth-child(8n) {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}/*# sourceMappingURL=style.css.map */