* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif !important;
}

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

.m-lr {
    margin-left: 140px;
    margin-right: 140px;
}

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

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

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

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

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

.large-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 54px;
}

.title {
    font-size: 36px;
    font-weight: 600;
    line-height: 48px;
    color: #020A23;
}

header {
  display: flex;
  justify-content: space-between;
  padding-top: 19px;
  padding-bottom: 19px;
  background: #fff;
}
header .header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .header-left a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #020A23;
  text-decoration:none !important;
}
header .header-left a img {
  width: 20px;
  height: 20px;
}
header .header-left a p {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: #020A23;
}
header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
header .header-right a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  transition: 0.5s;
}
header .header-right a:hover {
  transform: scale(1.2);
}
header .header-right a img {
  width: 100%;
  height: 100%;
}


.navbar-area {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    background:#fafafa;

}

.navbar-area .navbarlogo {
    width: 80px;
    height: 80px;
}

.navbar-area .navbarlogo img {
    width: 80px;
    height: 80px;
}

.navbar-area .navbar_links {
    margin-left: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.navbar-area .navbar_links .navbar_link {
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.8);
    text-decoration: none;
    padding-top: 12px;
    padding-bottom: 12px;
}

.navbar-area .navbar_links .navbar_dropMenu {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
}

.navbar-area .navbar_links .navbar_dropMenu .navbar_link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-area .navbar_links .navbar_dropMenu .navbar_subMenu {
    width: -moz-max-content;
    width: max-content;
    min-width: 150px;
    position: absolute;
    top: 99px;
    left: 0;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    align-items: start;
    transform: translateY(50px);
    z-index: -20;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.navbar-area .navbar_links .navbar_dropMenu .navbar_subMenu .subMenu_link {
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    padding: 10px 20px;
    color: #000;
    text-decoration: none;
}

.navbar-area .navbar_links .navbar_dropMenu:hover .navbar_subMenu {
    transform: translateY(0px);
    z-index: 10;
    opacity: 1;
    visibility: visible;
}

.navbar-area .navbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-area .navbar-right .language .currentLang {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 8px;
    background: transparent;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
}

.navbar-area .navbar-right .language .currentLang::after {
    display: none;
}

.navbar-area .navbar-right .language .otherLang {
    transform: translate(0px, 62px) !important;
    min-width: 1rem;
    width: 74px;
    border: none;
    text-transform: capitalize;
}

.navbar-area .navbar-right .apply_us {
    padding: 12px 24px;
    background: #fff;
    display: flex;
    font-weight:500;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-align: center;
    color: #2E448D;
    border-radius: 4px;
    transition: 0.4s;
    text-decoration: none;
}

.navbar-area .navbar-right .apply_us:hover {
    background: #2E448D;
    color: #fff;
}

.navbar-area .navbar-right .hamburgerBtn {
    display: none;
}

.navbar-area .navbar-right .hamburgerBtn i {
    font-size: 42px;
    color: #fff;
}

.navbar-area .navbar-right .hamburgerBtn i::before {
    font-weight: 500 !important;
}

.home_navbar {
    position: absolute;
    left: 0;
    top: 62px;
    z-index: 80;
    background: rgba(0, 0, 0, 0.05);
}
.home_navbar .navbar_links .navbar_link {
    color: #fff;
}
.home_navbar .navbar-right .language .currentLang {
    color: #fff;
}
.home_navbar .navbar_links .navbar_dropMenu .navbar_subMenu {
    background: rgba(255, 255, 255, 0.5);
}

.home_hero_slide {
    width: 100%;
}

.home_hero_slide .home_hero_item {
    width: 100%;
    position: relative;
}

.home_hero_slide .home_hero_item .home_hero_img {
    height:700px;
    width: 100%;
}

.home_hero_slide .home_hero_item .home_hero_img img {
    width: 100%;
    height: 100%;
    filter: brightness(70%);
}

.home_hero_slide .home_hero_item .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(46, 68, 141, 0.2);
}

.home_hero_slide .home_hero_item .home_hero_content {
    width: 65%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.home_hero_slide .home_hero_item .home_hero_content .large-title {
    text-align: center;
    color: #fff;
}

.home_hero_slide .swiper-pagination {
    bottom: 20px !important;
    display: flex;
    align-items: center;
    width: -moz-max-content !important;
    width: max-content !important;
    left: 50% !important;
    transform: translateX(-50%);
    gap: 12px;
}

.home_hero_slide .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    opacity: 1;
    margin: 0 !important;
    background: rgba(255, 255, 255, 0.24);
}

.home_hero_slide .swiper-pagination .swiper-pagination-bullet-active {
    background: #fff;
}

.mobile_navbar {
    position: fixed;
    top: 0;
    right: -200%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
    transition: 0.5s;
}

.mobile_navbar .mobile_navbar_items {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    height: 100%;
    background: #fff;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.mobile_navbar .mobile_navbar_items .mobile_link {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #000;
    text-decoration: none;
}

.mobile_navbar .mobile_navbar_items .mobile_navbar_dropMenu {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.mobile_navbar .mobile_navbar_items .mobile_navbar_dropMenu .mobile_main_link {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile_navbar .mobile_navbar_items .mobile_navbar_dropMenu .mobile_main_link i {
    cursor: pointer;
}

.mobile_navbar .mobile_navbar_items .mobile_navbar_dropMenu .mobile_main_link i::before {
    font-weight: 600 !important;
}

.mobile_navbar .mobile_navbar_items .mobile_navbar_dropMenu .mobile_subMenu {
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 5px;
    padding-left: 20px;
}

.mobile_navbar .mobile_navbar_items .mobile_navbar_dropMenu .mobile_subMenu .subMenu_link {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    color: #000;
    text-decoration: none;
}

.mobile_navbar .closeMenu {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.mobile_navbar .closeMenu i {
    font-size: 24px;
}

.mobile_navbar .closeMenu i::before {
    font-weight: 600 !important;
}

.partners {
    width: 100%;
}

.partners .partners-Slide .partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    background: #FBFBFB;
    border-radius: 12px;
    padding: 10px 20px;
}

.partners .partners-Slide .partner-item img {
    min-width: 60px;
    -o-object-fit: contain;
    object-fit: contain;
}

.home_advantages .advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.home_advantages .advantages .advantage-box {
    padding: 28px;
    background: #E7ECFC;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
}

.home_advantages .advantages .advantage-box .advantage-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2E448D;
    border-radius: 4px;
}

.home_advantages .advantages .advantage-box .advantage-icon img {
    width: 28px;
    height: 28px;
}

.home_advantages .advantages .advantage-box .advandages-title {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    color: #020A23;
}

.home_advantages .advantages .advantage-box p {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: rgba(2, 10, 35, 0.8);
}

.home_project {
    width: 100%;
    position: relative;
}

.home_project .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_project .top .all_projects_link {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #2E448D;
    text-decoration: none;
}

.home_project .projects-slider {
    position: initial;
}

.home_project .projects-slider .swiper-button-next,
.home_project .projects-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.0509803922);
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    top: 55%;
}

.home_project .projects-slider .swiper-button-next::after,
.home_project .projects-slider .swiper-button-prev::after {
    display: none;
}

.home_project .projects-slider .swiper-button-next {
    right: 115px;
}

.home_project .projects-slider .swiper-button-prev {
    left: 115px;
}

.project_box {
    border-radius: 4px;
    background: #f5f5f5;
    text-decoration: none;
    min-height: 300px;
}

.project_box .project_img {
    border-radius: 4px 4px 0 0;
    width: 100%;
    height: 260px;
}

.project_box .project_img img {
    border-radius: 4px 4px 0 0;
    width: 100%;
    height: 100%;
}

.project_box .project_body {
    padding: 20px;
}

.project_box .project_body .project_name {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #020A23;
}

.home-about {
    width: 100%;
    position: relative;
    min-height: 300px;
}

.home-about .home-about-img {
    width: 100%;
    min-height: 500px;
    height: 100%;
}

.home-about .home-about-img img {
    width: 100%;
    min-height: 500px;
    height: 100%;
    filter: brightness(0.35);
}

.home-about .home-about-content {
    width: 60%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.home-about .home-about-content .title {
    color: #fff;
}

.home-about .home-about-content p {
    margin-top: 20px;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
    color: #fff;
}

.home-about .home-about-content .more_about_link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: -moz-max-content;
    width: max-content;
    padding: 12px 28px;
    border-radius: 4px;
    background: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-align: center;
    color: #000;
    transition: 0.5s;
}

.home-about .home-about-content .more_about_link:hover {
    transform: scale(1.2);
    background: #000;
    color: #fff;
}

.home_product {
    width: 100%;
    position: relative;
    background: #f5f5f5;
}

.home_product .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_product .top .all_product_link {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #2E448D;
    text-decoration: none;
}

.home_product .products-slider {
    position: initial;
}

.home_product .products-slider .swiper-button-next,
.home_product .products-slider .swiper-button-prev {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    box-shadow: 4px 4px 8px 4px rgba(0, 0, 0, 0.0509803922);
    padding: 12px;
    background: rgba(255, 255, 255, 0.9);
    top: 55%;
}

.home_product .products-slider .swiper-button-next::after,
.home_product .products-slider .swiper-button-prev::after {
    display: none;
}

.home_product .products-slider .swiper-button-next {
    right: 115px;
}

.home_product .products-slider .swiper-button-prev {
    left: 115px;
}

.product_box {
    background: #fff;
    text-decoration: none;
    min-height: 300px;
    position: relative;
}

.product_box .product_img {
    width: 100%;
    height: 300px;
}

.product_box .product_img img {
    filter: brightness(70%);
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product_box .product_body {
    background: #fff;
    padding: 20px;
    width: 100%;
}

.product_box .product_body .product_name {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    height:48px;
    color: #020A23;
}

.have_question {
    padding: 60px;
    background: #F5F5F5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.have_question .have_question_content {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: start;
}

.have_question .have_question_content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #020A23;
}

.have_question .contact_us_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    background: #2E448D;
    padding: 16px 36px;
    border-radius: 4px;
    transition: 0.5s;
    position: relative;
    margin-right: 16px;
}

.have_question .contact_us_link::after {
    position: absolute;
    content: "";
    top: -8px;
    left: -8px;
    border: 8px solid rgba(46, 68, 141, 0.24);
    width: 107%;
    height: 127%;
    border-radius: 4px;
    z-index: 10;
}

.have_question .contact_us_link::before {
    position: absolute;
    content: "";
    top: -16px;
    left: -16px;
    border: 8px solid rgba(46, 68, 141, 0.12);
    width: 114%;
    height: 154%;
    border-radius: 4px;
    z-index: 10;
}

.have_question .contact_us_link:hover {
    background: #fff;
    color: #2E448D;
    transform: scale(1.15);
    border-radius: 4px;
}

.have_question .contact_us_link:hover svg path {
    stroke: #2E448D;
}

.footer {
    background: #020A23;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer .footer-top {
    padding-bottom: 60px;
    border-bottom: 1px solid #fff;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .footer-top .footer-logo {
    width: 100px;
    height: 100px;
}

.footer .footer-top .footer-logo img {
    width: 100%;
    height: 100%;
}

.footer .footer-top .footer-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.footer .footer-top .footer-links .footer-link {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
}

.footer .footer-top .footer-links .language .currentLang {
    width: -moz-max-content;
    width: max-content;
    display: flex;
    padding: 6px 12px;
    align-items: center;
    gap: 5px;
    border-radius: 4px;
    background: #fff;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    text-transform: capitalize;
}

.footer .footer-top .footer-links .language .currentLang::after {
    display: none;
}

.footer .footer-top .footer-links .language .otherLang {
    min-width: 0;
    width: 65px;
    border: none;
    background: #fff;
    text-transform: capitalize;
}

.footer .footer-top .footer-links .language .otherLang a {
    color: #000;
}

.footer .footer-top .footer-links .language .otherLang li:hover a {
    color: #000;
}
.footer .footer-others{
    margin-top: 40px;
    display:flex;
    align-items: center;
    justify-content:space-between;
    gap:20px;
}
.footer .footer-others .line{
    height:150px;
    width:1px;
    background: #fff;
}

.footer .footer-contacts {
    width: 35%;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 20px;
}

.footer .footer-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none;
    color: #fff;
}
.footer .footer-contacts a p{
    color:#fff;
}

.footer .footer-contacts a img {
    width: 20px;
    height: 20px;
}

.footer .footer-socials {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 20px;
    width:max-content;
}

.footer .footer-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 8px;
    transition: 0.5s;
}

.footer .footer-socials a:hover {
    background: #2E448D;
    transform: scale(1.2);
}

.footer .footer-socials a img {
    width: 100%;
    height: 100%;
}
.footer .footer-bottom{
    width: 30%;
}

.footer .footer-bottom p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: #fff;
}

.footer .footer-bottom p a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

@media only screen and (max-width: 1300px) {
    .navbar-area .navbar_links {
        margin-left: 30px;
        gap: 20px;
    }

    .navbar-area .navbar-right {
        gap: 15px;
    }

    .navbar-area .navbar-right .apply_us {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 1250px) {
    .p-lr {
        padding-left: 70px;
        padding-right: 70px;
    }

    .m-lr {
        margin-left: 70px;
        margin-right: 70px;
    }

    .title {
        font-size: 28px;
        line-height: 42px;
    }

    .large-title {
        font-size: 32px;
        line-height: 44px;
    }

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

    .pt-120 {
        padding-top: 80px;
    }

    .pb-120 {
        padding-bottom: 80px;
    }

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

    .home_project .projects-slider .swiper-button-next,
    .home_project .projects-slider .swiper-button-prev {
        width: 38px;
        height: 38px;
        padding: 10px;
    }

    .home_project .projects-slider .swiper-button-next {
        right: 45px;
    }

    .home_project .projects-slider .swiper-button-prev {
        left: 45px;
    }

    .home_product .products-slider .swiper-button-next,
    .home_product .products-slider .swiper-button-prev {
        width: 38px;
        height: 38px;
        padding: 10px;
    }

    .home_product .products-slider .swiper-button-next {
        right: 45px;
    }

    .home_product .products-slider .swiper-button-prev {
        left: 45px;
    }

    .product_box {
        min-height: 250px;
    }

    .product_box .product_img {
        height: 250px;
    }

    .have_question {
        padding: 40px;
    }
}

@media only screen and (max-width: 1020px) {
    .navbar-area .navbarlogo {
        width: 60px;
        height: 60px;
    }

    .navbar-area .navbarlogo img {
        width: 60px;
        height: 60px;
    }

    .navbar-area .navbar_links {
        display: none;
    }

    .navbar-area .navbar-right {
        gap: 10px;
    }

    .navbar-area .navbar-right .apply_us {
        display: none;
    }

    .navbar-area .navbar-right .language .otherLang {
        transform: translate(0px, 45px) !important;
    }

    .navbar-area .navbar-right .hamburgerBtn {
        display: flex;
    }

    .home_advantages .advantages {
        grid-template-columns: repeat(1, 1fr);
    }
    .footer .footer-others{
        flex-direction: column-reverse;
        align-items: start;
        gap: 40px;
    }
    .footer .footer-others .line{
        display:none;
    }

    .home-about .home-about-content {
        width: 75%;
    }

    .home-about .home-about-content p {
        margin-top: 15px;
    }

    .footer .footer-top .footer-links {
        gap: 26px;
    }

    .footer .footer-contacts {
        margin-top: 20px;
        width:100%;
        gap: 15px;
    }
    .footer .footer-bottom {
        width: 100%;
    }

    .footer .footer-socials {
        display: flex;
        width:100%;
        align-items: center;
        justify-content: start;
    }
}

@media only screen and (max-width: 768px) {
    .p-lr {
        padding-left: 20px;
        padding-right: 20px;
    }

    .m-lr {
        margin-left: 20px;
        margin-right: 20px;
    }

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

    .pt-120 {
        padding-top: 40px;
    }

    .pb-120 {
        padding-bottom: 40px;
    }

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

    .title {
        font-size: 24px;
        line-height: 36px;
    }

    .large-title {
        font-size: 24px;
        line-height: 32px;
    }
    header {
        display: none;
     }
     .home_hero_slide .home_hero_item .home_hero_img {
        height: 500px;
        width: 100%;
    }
     .home_navbar{
         top:0;
     }

    .home_project .top .all_projects_link {
        gap: 10px;
        font-size: 14px;
        line-height: 20px;
    }

    .home_project .projects-slider .swiper-button-next,
    .home_project .projects-slider .swiper-button-prev {
        width: 28px;
        height: 28px;
        padding: 8px;
    }

    .home_project .projects-slider .swiper-button-next {
        right: 5px;
    }

    .home_project .projects-slider .swiper-button-prev {
        left: 5px;
    }

    .project_box .project_img {
        height: 240px;
    }

    .project_box .project_body {
        padding: 15px;
    }

    .project_box .project_body .project_name {
        font-size: 15px;
        line-height: 20px;
    }

    .home-about .home-about-content {
        width: 85%;
    }
    .home-about .home-about-content .title {
        text-align:center;
        font-size: 20px;
        color: #fff;
    }


    .home-about .home-about-content p {
        margin-top: 10px;
        font-size: 14px;
        line-height: 20px;
    }

    .home-about .home-about-content .more_about_link {
        padding: 10px 20px;
        font-size: 14px;
        line-height: 20px;
    }

    .home_product .top .all_product_link {
        gap: 10px;
        font-size: 14px;
        line-height: 20px;
    }

    .home_product .products-slider .swiper-button-next,
    .home_product .products-slider .swiper-button-prev {
        width: 28px;
        height: 28px;
        padding: 8px;
        top: 60%;
    }

    .home_product .products-slider .swiper-button-next {
        right: 5px;
    }

    .home_product .products-slider .swiper-button-prev {
        left: 5px;
    }

    .product_box .product_img {
        height: 240px;
    }

    .product_box .product_body {
        padding: 15px;
    }

    .product_box .product_body .product_name {
        font-size: 15px;
        line-height: 20px;
    }

    .have_question {
        padding: 30px;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        gap: 40px;
    }

    .have_question .have_question_content {
        width: 100%;
    }

    .have_question .have_question_content p {
        font-size: 14px;
        line-height: 20px;
    }

    .have_question .contact_us_link {
        margin-right: 0;
        margin-left: 16px;
    }

    .footer .footer-top {
        flex-direction: column;
        gap: 20px;
        align-items: start;
    }

    .footer .footer-top .footer-links {
        gap: 15px;
        flex-direction: column;
        align-items: start;
    }

    .footer .footer-bottom {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media only screen and (max-width: 575px) {
    .home_hero_slide .home_hero_item .home_hero_img {
        width: 100%;
        height: 480px;
    }
    .home_hero_slide .home_hero_item .home_hero_img img{
        object-fit:cover;
    }
    .home_hero_slide .home_hero_item .home_hero_content {
        width: 95%;
    }
    .home_hero_slide .home_hero_item .home_hero_content .large-title{
        font-size:18px;
        line-height:26px;
    }

    .home_hero_slide .swiper-pagination {
        bottom: 10px !important;
        gap: 6px;
    }

    .mobile_navbar .mobile_navbar_items {
        width: 80%;
    }
}


/*# sourceMappingURL=style.css.map */
