@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

body > br {
    display: none;
}


#main_index {
    overflow: hidden;
    padding-bottom: 0 !important;
}

#main_index a:hover {
    text-decoration: none;
}

#main_index button:focus {
    outline: none;
}


/*navigation bar*/
.navbar_type8 {
    height: 110px;
    padding: 0 3%;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    transition: all 0.2s ease-in-out;
}

#main_index .navbar_type8 {
    height: 140px;
    background-color: transparent;
    border-bottom: none;
}

.dark_nav {
    height: 80px !important;
    border-bottom: 1px solid #ccc !important;
    background-color: rgb(255,255,255,0.9) !important;
}

.navbar_type8 .logo {
    margin-left: 0;
}

.navbar_type8 .logo img {
    width: 100%;
  padding: 5px 0;
  object-position: left;
  transition: all 0.2s ease-in-out;
}

#main_index .navbar_type8 .logo img {
    padding: 20px 0;
}

.navbar_type8.dark_nav .logo img {
    padding: 5px 0 !important;
}

.navbar_type8 .nav_tab {
    padding-right: 0;
  gap: 2vw;
}

.navbar_type8 .nav_tab .nav_item a {
    color: #000;
  font-size: 1vw;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  padding: 15px 0;
}

.navbar_type8 .nav_tab .nav_item:hover a {
    color: #065eb5;
}

.navbar_type8 .nav_tab .nav_item::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 110%;
  width: 0;
  border-bottom: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  height: 2.8px;
  background-color: #00daf3;
  transform: translate(-50%, 0);
}

.navbar_type8 .nav_tab .nav_item:hover::before {
    width: 80%;
}

.navbar_social {
    display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 2vw;
}

.navbar_social img {
  max-width: 25px;
  width: 25px !important;
}

.navbar_social img:hover {
    animation: 1s swing;
}



/*footer*/
.footer_type8 {
  background-color: #fff;
  color: #000;
  padding-top: 3.5rem !important;
  padding-bottom: 2.5rem !important;
  line-height: 1.7;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.footer_type8::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, 0);
    width: 90%;
    height: .8px;
    background-color: #000;
}

.footer_type8 a {
    color: #000;
}

.footer_type8 a:hover {
    color: #065eb5;
}

.footer_type8 .logo img {
    max-height: 135px;
}

.footer_type8 .logo {
    min-height: 135px;
}

.footer_type8 .col-12.col-md-4.mb-md-0.p-3:nth-child(2),
.footer_type8 .col-12.col-md-4.mb-md-0.p-3:nth-child(3) {
    margin-top: -135px;
}

.footer_type8 .title h5 {
  text-transform: uppercase;
  color: #065eb5;
  font-size: 19px;
}

.footer_type8 .social_media a {
    border: 1px solid #000;
  color: #000;
}

.footer_type8 .social_media a:hover {
  color: #fff;
  background-color: #065eb5;
  border: 1px solid #065eb5;
}

/*homepage banner*/
.slider_banner .banner_content {
    overflow: hidden;
}

.hp_banner {
    position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 9%;
  padding-bottom: 5vw;
}

.hp_banner_box {
    position: relative;
    z-index: 4;
}

.hp_banner_img  {
    position: absolute;
  right: 5.5vw;
  bottom: 6.5vw;
  width: 48%;
}

.hp_banner_img img {
    animation: floating 2s infinite linear;
}

.hp_banner_small {
    font-size: 1.9vw;
  color: #fff;
  font-weight: 500;
  background-image: linear-gradient(to right, #065eb5, #00daf3);
  width: fit-content;
  padding: .6vw 3vw .6vw 2vw;
  border-radius: 0 50px 50px 0;
  margin-bottom: 1.5vw;
}

.hp_banner_title {
    font-size: 3.35vw;
  font-weight: 600;
  color: #fff;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
  padding-left: 2vw;
  border-left: 3px solid #fff;
  margin-bottom: 0;
}

.hp_banner_title span {
    display: block;
}

.hp_banner_button {
    display: flex;
  align-items: center;
  gap: 1vw;
  margin-top: 2.5vw;
}

.hp_banner .hp_button {
    border: 2px solid #222;
  width: 160px;
  height: 50px;
  gap: 15px;
  padding: 5px 6px 5px 20px;
}

.hp_banner_button a:nth-child(2) .hp_button {
    border: 2px solid #fff;
    color: #fff;
    padding: 5px 20px;
    background-color: transparent;
}

.slider_banner .item {
    overflow: hidden;
}

.slider_banner .item > img {
    animation: zoomAnimation 12s infinite linear;
}

@keyframes zoomAnimation {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.slider_banner {
    margin-bottom: 0 !important;
}

.slider_banner .slick-dots {
  position: absolute;
  bottom: 3vw;
}

.slider_banner .slick-dots li button::before {
  color: #fff;
  font-size: 14px;
  opacity: 1;
}

.slider_banner .slick-dots li.slick-active button::before {
  opacity: 1;
  color: #00daf3;
}

.slider_banner .slick-dots li:hover button::before {
    color: #ccc;
}

@media (min-width: 991px) {
    #main_index .index_wrapper_2 {
        margin-top: -140px;
    }
}

/*homepage about*/
.hp_about {
    padding: 5rem 8%;
  background-image: url('https://cdn1.npcdn.net/userfiles/27924/image/B_aboutus_bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.hp_about_left_box {
   width: 78%;
  border-radius: 15px;
  overflow: hidden;
}

/*.hp_about_left_box img {*/
/*    animation: floating 1.5s infinite linear;*/
/*}*/

@keyframes floating {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0px);
  }
}

.hp_about_right_box {
    width: 107%;
  position: relative;
  left: -8%;
}

.hp_about_title {
    font-size: 2.35vw;
  color: #065eb5;
  font-weight: 600;
  margin-bottom: 15px;
}

.hp_keyword {
    font-size: 17px;
  margin-bottom: 0;
  line-height: 1.4;
  color: #000;
}

.hp_about_button {
    display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.hp_button {
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: 5px 6px 5px 30px;
  background-color: #222222;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffff;
  gap: 25px;
  font-weight: 500;
  border: none;
  outline: none;
  overflow: hidden;
  font-size: 16px;
  cursor: pointer;
}

.hp_button img {
    max-width: 35px;
    width: 35px !important;
}

.hp_button:hover img {
    animation: 1s swing;
}

.hp_button:hover {
  transform: scale(1.05);
}

.hp_button:active {
  transform: scale(0.75);
}

.hp_button:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.hp_button::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

.hp_about_images {
    display: flex;
  gap: 2.5rem;
  width: 85%;
  margin: 0 auto;
}

.hp_about_imag {
    transition: all 0.4s ease-in-out;
}

.hp_about_imag:hover {
    transform: translateY(-10px);
}

/*homepage services*/
#main_index .index_wrapper_4 {
    position: relative;
    padding: 4rem 3.5% 7rem;
    overflow: hidden;
}

#main_index .index_wrapper_4::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn1.npcdn.net/userfiles/27924/image/C_service_bg.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    z-index: -1;
    transform-origin: bottom;
    animation: floating2 4s linear infinite;
}

@keyframes floating2 {
  0%, 100% {
    transform: translateY(8px);
  }
  50% {
    transform: translateY(0px);
  }
}

.hp_big_title {
    font-size: 3.1vw;
  color: #065eb5;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto 20px;
  line-height: 1.1;
  position: relative;
}

.hp_big_title::before {
  content: "";
  left: -2vw;
  top: 50%;
  transform: translate(0, -50%);
  width: 4vw;
  height: 4vw;
  background-color: #00daf3;
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  animation: floatPulse 2s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translate(0, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(0, -55%) scale(1.1);
    opacity: 0.8;
  }
}

.hp_services .hp_services_top_box {
    margin-bottom: 3rem;
}

.hp_services .hp_keyword {
    width: 35%;
  margin: 0 auto;
}

#main_index .service_type4 .col-6.col-md-4 {
    margin: 10px 0;
    padding: 0 10px;
}

#main_index .service_type4 .col-6.col-md-4:nth-child(even) {
    margin: 50px 0 10px;
}

#main_index .service_type4 .col-6.col-md-4:nth-child(n+6) {
    display: none;
}

#main_index .service_type4 .container {
    max-width: 100%;
}

#main_index .service_type4 .service_box_type4 {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

#main_index .service_type4 .service_box_type4:hover {
    transform: translateY(-10px);
}

#main_index .service_type4 .service_box_type4 .img_frame:hover .overlay {
  background-color: transparent;
}

#main_index .service_type4 .service_box_type4 .img_frame .overlay {
    display: flex;
  align-items: flex-end;
}

#main_index .service_type4 .service_box_type4 .img_frame .box {
    width: 100%;
  height: auto;
  position: relative;
  border: none;
  left: 0;
  top: unset;
  background-color: rgba(0, 0, 0, 0.65);
  padding: 14px 10px;
}

#main_index .service_type4 .service_box_type4 .img_frame:hover .box {
  top: unset;
  left: unset;
  transform: unset;
}

#main_index .service_type4 .service_box_type4 .img_frame .box p {
  overflow: auto;
  max-height: unset;
  position: relative;
  top: unset;
  left: unset;
  transform: unset;
  color: white;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

#main_index .service_type4 .service_box_type4 .img_frame .box p span {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  width: 80%;
  min-height: 36px;
}

#main_index .service_type4 .service_box_type4 .img_frame .box p > br {
    display: none;
}

#main_index .service_type4 .service_box_type4 .img_frame .box .general_btn {
  border: none;
  color: #fff;
  padding: 0;
  border-bottom: 1px solid #e3bf00;
  border-radius: 0 !important;
  color: #e3bf00;
  font-size: 13px !important;
  transition: all 0.3s ease-in-out;
}

#main_index .service_type4 .service_box_type4 .img_frame .box .general_btn:hover {
  background-color: transparent;
  color: white !important;
  border-bottom: 1px solid #e3bf00 !important;
}

#main_index .service_type4 .service_box_type4 .img_frame {
    padding-bottom: 100%;
}

@media (min-width: 768px) {
  #main_index .service_type4 .col-6.col-md-4 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
  }
}

/*homepage review*/
#main_index .index_wrapper_5 {
    padding: 5rem 7% 6rem;
}

#main_index .hp_testimonial_type4 {
    max-width: 100%;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .img {
    display: none;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .text_area {
  margin-top: 0;
  font-size: 16px;
  color: #000;
  line-height: 1.3;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .name h6 {
  color: #065eb5;
  font-size: 18px;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .name p {
    font-size: 16px !important;
  color: #000;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card i {
  color: #00daf3;
  font-size: 22px;
  margin: 20px 0 10px;
}

#main_index .hp_testimonial_type4 .testimonial_box {
    margin: 0 !important;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card {
  padding: 30px;
  background-color: #e9ffff;
  border-radius: 15px;
  box-shadow: 7px 7px 0 #065eb5;
  margin: 20px 25px 10px;
  transition: all 0.4s ease-in-out;
  min-height: 285px;
}

#main_index .hp_testimonial_type4 .testimonial_box .testimonial_card:hover {
    transform: translateY(-10px);
}

#main_index .hp_testimonial_type4 .slick-dots {
  width: fit-content;
  margin: 0 auto;
  position: relative;
  bottom: -3vw;
}

#main_index .hp_testimonial_type4 .slick-arrow {
  z-index: 5;
  font-size: 25px !important;
  color: transparent;
  cursor: pointer;
  top: 110% !important;
  width: 40px;
  height: 40px;
}

#main_index .hp_testimonial_type4 .fa-chevron-right::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url('https://cdn1.npcdn.net/userfiles/27924/image/D_testimonial_next_button.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#main_index .hp_testimonial_type4 .fa-chevron-left::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background-image: url('https://cdn1.npcdn.net/userfiles/27924/image/D_testimonial_previous_button.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#main_index .hp_testimonial_type4 .fa-chevron-right.slick-arrow {
    right: 41% !important;
}

#main_index .hp_testimonial_type4 .fa-chevron-left.slick-arrow {
    left: 41% !important;
}

#main_index .hp_testimonial_type4 .slick-dots li button::before {
  color: #065eb5;
  font-size: 13px;
  opacity: 1;
}

#main_index .hp_testimonial_type4 .slick-dots li.slick-active button::before,
#main_index .hp_testimonial_type4 .slick-dots li:hover button::before {
  color: #00daf3;
}

/*homepage news*/
#main_index .index_wrapper_6 {
    padding: 4rem 8%;
  background-image: url('https://cdn1.npcdn.net/userfiles/27924/image/E_blog_bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.hp_newsTitle .hp_big_title,
.hp_newsTitle .hp_keyword {
    color: #fff;
}

.hp_newsTitle .hp_big_title::before {
    background-color: #065eb5;
}

.hp_services_top_box {
    margin-bottom: 2rem;
}

.hp_newsButton_box {
    display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

#main_index .hp_latest_new_8 .col-12.col-lg-4.mb-4 {
    margin: 15px 0 !important;
    padding: 0 20px !important;
}

#main_index .hp_latest_new_8 .col-12.col-lg-4.mb-4:nth-child(n+4),
#main_index .hp_latest_new_8 .news_box .content,
#main_index .hp_latest_new_8 .news_box .title span {
    display: none;
}

#main_index .hp_latest_new_8 .news_box {
    padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}

#main_index .hp_latest_new_8 .news_box:hover {
    transform: translateY(-10px);
}

#main_index .hp_latest_new_8 .news_box .title {
  font-size: 17px;
  color: #065eb5;
  margin-top: 10px;
}

#main_index .hp_latest_new_8 .news_box .title b {
  font-weight: 600;
}

#main_index .hp_latest_new_8 .news_box .date {
  opacity: 1;
}

#main_index .hp_latest_new_8 .news_box .read_more {
  text-decoration: underline;
  color: #000;
}

#main_index .hp_latest_new_8 .news_box .read_more:hover {
  color: #065eb5;
  text-decoration: underline !important;
}

/*homepage contact*/
.hp_contact {
    padding: 3rem 22%;
}

.hp_contact_row {
    background-color: #065eb5;
  border-radius: 40px;
  padding-bottom: 1rem;
}

.hp_contact_left  {
    margin-top: -1vw;
}

.hp_contact_left_box {
    width: 55%;
  margin: 0 15% 0 auto;
}

.hp_contact_left_box img {
    animation: floating3 3s infinite ease-in-out;
    filter: drop-shadow(0 10px 6px rgba(0, 0, 0, 0.3));
}

@keyframes floating3 {
  0%, 100% {
    transform: translateY(-30px) scale(0.87);
  }
  50% {
    transform: translateY(0px) scale(1);
  }
}

.hp_contact_title {
    font-size: 2.4vw;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 600;
}

.hp_color {
    color: #00daf3;
}

.hp_break {
    display: block;
}

.hp_contact .hp_button {
  color: #065eb5;
  background-color: #fff;
  white-space: nowrap;
  font-size: 17px;
  font-weight: 600;
}

.hp_contact_right_box {
    position: relative;
  left: -3.5%;
  padding-right: 4vw;
}

.hp_contact_button {
    display: flex;
  align-items: center;
  gap: 15px;
}

.hp_contact_button::before {
    content: "";
    width: 100%;
    height: .8px;
    background-color: #fff;
}

/*other pages*/


/*homepage responsive*/

@media (max-width: 1200.5px) {
    /*navigation bar*/
    .navbar_type8 {
        padding: 0 15px;
    }
    .navbar_type8 .nav_tab .nav_item a {
        font-size: 1.1vw;
        padding: 4px;
    }
    .navbar_social {
        padding-left: 1vw;
    }
    .navbar_type8 .nav_tab {
        gap: 1vw;
    }
    
    /*footer*/
    
    
    /*homepage banner*/
    .hp_banner {
        padding-left: 6%;
        padding-bottom: 0;
    }
    .hp_banner .hp_button {
        width: 150px;
        height: 40px;
    }
    
    /*homepage about*/
    .hp_about {
        padding: 4rem 15px;
    }
    .hp_about_left_box {
      width: 100%;
    }
    .hp_about_right_box {
      width: 100%;
      left: 0;
    }
    .hp_about_title {
        font-size: 26px;
    }
    .hp_keyword {
      font-size: 15px;
      line-height: 1.5;
    }
    .hp_about_button {
        margin: 1rem 0;
    }
    .hp_button {
        font-size: 14.5px;
        gap: 15px;
        padding: 5px 6px 5px 20px;
    }
    .hp_button img {
      max-width: 30px;
      width: 30px !important;
    }
    .hp_about_images {
        width: 100%;
    }
    
    /*homepage services*/
    #main_index .index_wrapper_4 {
        padding: 3rem 15px 4rem;
    }
    .hp_services .hp_services_top_box {
      margin-bottom: 2rem;
    }
    .hp_services .hp_keyword {
        width: 45%;
    }
    .hp_big_title {
        font-size: 30px;
    }
    #main_index .service_type4 .service_box_type4 .img_frame .box p span {
        width: 100%;
    }
    #main_index .service_type4 .col-6.col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    #main_index .service_type4 .row {
        justify-content: center;
    }
    #main_index .service_type4 .col-6.col-md-4:nth-child(2n) {
      margin: 10px 0;
    }
    #main_index .service_type4 .service_box_type4 .img_frame {
        padding-bottom: 100%;
    }
    #main_index .service_type4 .service_box_type4 .img_frame .box p span {
        font-size: 16px;
    }
    
    /*homepage review*/
    #main_index .index_wrapper_5 {
      padding: 4rem 15px;
    }
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card {
        padding: 25px 20px;
        margin: 20px 15px 10px;
        min-height: 300px;
    }
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .text_area {
        font-size: 14.5px;
    }
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .name h6 {
        font-size: 16px;
    }
    #main_index .hp_testimonial_type4 .testimonial_box .testimonial_card .name p {
        font-size: 15px !important;
    }
    #main_index .hp_testimonial_type4 .slick-arrow,
    #main_index .hp_testimonial_type4 .fa-chevron-right::before,
    #main_index .hp_testimonial_type4 .fa-chevron-left::before {
        width: 30px;
        height: 30px;
    }
    #main_index .hp_testimonial_type4 .slick-arrow {
        top: 105% !important;
    }
    
    /*homepage news*/
    #main_index .index_wrapper_6 {
        padding: 4rem 15px;
    }
    .hp_services_top_box {
      margin-bottom: 1rem;
    }
    #main_index .hp_latest_new_8 .col-12.col-lg-4.mb-4 {
        padding: 0 15px !important;
    }
    .hp_newsButton_box {
        margin-top: 1rem;
    }
    
    /*homepage contact*/
    .hp_contact {
        padding: 3rem 12%;
    }
    .hp_contact_title {
        font-size: 27px;
    }
    .hp_contact .hp_button {
        font-size: 15px;
    }
    .hp_contact_left_box {
        width: 62%;
    }

}

.side_menu {
    background-color: #065eb5;
}

.side_menu .list-group .list-group-item a {
    color: #fff;
}

.navbar_mobile .logo_img {
    transform: scale(1.2);
}

@media (max-width: 991.5px) {
    /*footer*/
    
    
    /*homepage banner*/
    
    
    /*homepage about*/
    
    
    /*homepage services*/
    
    
    /*homepage review*/
    
    
    /*homepage news*/
    
    
    /*homepage contact*/
    .hp_contact {
        padding: 3rem 15px;
    }

}

@media (max-width: 767.5px) {
    /*footer*/
    .footer_type8 .logo img {
      max-height: 100px;
    }
    .footer_type8 .logo {
      min-height: 100px;
    }
    .footer_type8 .col-12.col-md-4.mb-md-0.p-3:nth-child(2), .footer_type8 .col-12.col-md-4.mb-md-0.p-3:nth-child(3) {
      margin-top: 0;
    }
    
    /*homepage banner*/
    .slider_banner .item > img {
        min-height: 400px;
        object-fit: cover;
    }
    .hp_banner {
        padding: 20px;
        align-items: flex-start;
    }
    .hp_banner_small {
        font-size: 15px;
    }
    .hp_banner_title {
        border-left: 3px solid #000;
        font-size: 24px;
        color: #000;
        text-shadow: 3px 3px 8px rgba(255, 255, 255, 0.4);
    }
    .hp_banner .hp_button img {
        max-width: 25px;
        width: 25px !important;
    }
    .hp_banner .hp_button {
        width: 130px;
        height: 35px;
        font-size: 13px;
        gap: 10px;
    }
    .hp_banner_img {
        width: 90%;
        right: 5%;
        bottom: 10px;
    }
    .hp_banner_img img {
        min-height: 220px;
        max-height: 220px;
        object-fit: contain;
        object-position: 50% 100%;
    }
    .slider_banner .slick-dots li button::before {
        font-size: 10px;
    }
    
    /*homepage about*/
    .hp_about_right_box {
        margin-top: 3rem;
    }
    .hp_about_images {
        flex-direction: column;
        gap: 20px;
    }
    
    /*homepage services*/
    .hp_services .hp_keyword {
        width: 100%;
    }
    #main_index .service_type4 .col-6.col-md-4 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    #main_index .service_type4 .service_box_type4 .img_frame {
        padding-bottom: 85%;
    }
    #main_index .service_type4 .service_box_type4 .img_frame .box p span {
        min-height: unset;
    }
    #main_index .index_wrapper_4::before {
        background-size: 200%;
    }
    .hp_big_title::before {
        display: none;
    }
    
    /*homepage review*/
    #main_index .index_wrapper_5 {
        padding: 4rem 0;
    }
    #main_index .hp_testimonial_type4 {
        padding: 0;
    }
    #main_index .hp_testimonial_type4 .slick-dots {
        bottom: -2rem;
    }
    
    /*homepage news*/
    
    
    /*homepage contact*/
    .hp_contact_left_box {
        width: 50%;
        margin: 0 auto;
    }
    .hp_break {
      display: unset;
    }
    .hp_contact_right_box {
      left: 0;
      padding: 2rem 15px;
    }
    .hp_contact_left {
      margin-top: -1rem;
    }

}