* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  word-wrap: break-word;
  font-family: "Mulish", sans-serif;
  scroll-behavior: smooth;
}

/*--- nav bar -----*/
.navBarMain {
  z-index: 11111;
}
.logo {
  width: 220px;
  transform: scale(1.2);
}
.nav-item {
  margin: 0px 10px;
}
.nav-link {
  font-size: 14px;
  font-weight: 800;
  color: #000 !important;
  text-transform: uppercase;
}

.nav-link.active {
  color: #0a66c2 !important;
}

.navbar-toggler {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}
.navbar-toggler i {
  color: #000;
  font-size: 25px;
}
.request_esti_btn {
  background-color: #0a66c2;
  color: white !important;
  padding: 12px 20px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: all linear 0.3s;
}
.request_esti_btn:hover {
  background-color: white;
  color: #0a66c2 !important;
  border: 1px solid #0a66c2;
}
/*--- /nav bar -----*/

/*----- hero ----*/

.hero {
  width: 100%;
  height: 90vh;
}
.hero_video {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
#index-video {
  width: 100%;
  z-index: -100;
  right: 0;
  top: 0;
  background-size: cover;
  overflow: hidden;
  position: absolute;
}

.inner-video-container {
  height: 100%;
}

.inner-video-container video {
  object-fit: cover;
}

.hero_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
}
.hero_txt h1 {
  color: white;
  font-size: 60px;
  font-weight: 300;
}
.hero_txt h1 b {
  font-weight: 800;
}
.cmn_btn {
  display: inline-block;
  margin-top: 20px;
  background-color: #fff;
  color: #339dfa !important;
  font-size: 17px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
}

.cmn_btn {
  all: unset;
  height: 35px;
  min-width: 170px;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border: none;
  position: relative;
  color: #f0f0f0 !important;
  cursor: pointer;
  z-index: 1;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  user-select: none;
  touch-action: manipulation;
}

.cmn_btn::after,
.cmn_btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -99999;
  transition: all 0.4s;
}

.cmn_btn::before {
  transform: translate(0%, 0%);
  width: 100%;
  height: 100%;
  background: #339dfa;
  border-radius: 10px;
}

.cmn_btn::after {
  transform: translate(10px, 10px);
  width: 35px;
  height: 35px;
  background: #339dfa60;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
}

.cmn_btn:hover::before {
  transform: translate(5%, 20%);
  width: 110%;
  height: 110%;
}

.cmn_btn:hover::after {
  border-radius: 10px;
  transform: translate(0, 0);
  width: 100%;
  height: 100%;
}

.cmn_btn:active::after {
  transition: 0s;
  transform: translate(0, 5%);
}
/*----- /hero ----*/

/*----- service ----*/
.service {
  padding-top: 80px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  overflow: hidden;
  background-color: #39414d;
  color: white;
}
.cmn_title {
  text-transform: uppercase;
  display: block;
  font-size: 50px;
  font-family: "Barlow Condensed", sans-serif;
  text-shadow: 0 4px 9px #b7eaf0, 0px -2px 1px #fff;
  font-weight: 600;
  letter-spacing: 4px;
  text-align: center;
}
.service .cmn_title {
  color: white;
}

.service_inner {
  margin-top: 40px;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  gap: 20px;
}

.service_inner_front {
  grid-template-columns: auto auto auto auto;
}

.service_item {
  margin: 12px 0;
  padding: 10px;
}
.service_item a {
  display: block;
}
.service_item a img {
  width: 170px;
  margin: auto;
  transition-duration: 0.3s;
  filter: brightness(0) invert(1);
}
.service_item a img:hover {
  transition-duration: 0.3s;
  filter: grayscale(100%);
}

.service_item h4 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 4px;
  color: #339dfa !important;
  letter-spacing: 2px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.service_item h4 a {
  color: #339dfa !important;
  text-decoration: none;
}
.service_item h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-top: 0px;
  margin-bottom: 14px;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
.service_item h3 a {
  color: white !important;
  text-decoration: none;
}
.service_item p {
  font-size: 15px;
  font-weight: 300;
  margin: 2px 0;
}

/*----- /service ----*/

/*----- about us  ----*/

.i_about_us {
  padding: 50px 0;
}
.i_about_us .cmn_title {
  color: #39414d;
}
.i_about_inner {
  margin-top: 100px;
}

.i_about_left {
  padding-left: 30px;
  padding-right: 30px;
}

.i_about_left,
.i_about_right {
  margin: 10px 0;
}
.i_about_left h2 {
  font-size: 40px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 15px;
  color: #339dfa;
}
.i_about_left p {
  font-size: 17px !important;
  font-weight: 300 !important;
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}
.i_about_right img {
  width: 100%;
  border-radius: 5px;
}
.i_about_inner .row {
  align-items: center;
}

/*----- /about us  ----*/

/*----- partners  ----*/
.partners {
  padding: 50px 0;
}

.swiper.partner_swiper {
  width: 100%;
}

.partner_swiper .swiper-wrapper {
  align-items: center;
}

.partner_swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
}

.partner_swiper .slide_img {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.partner_swiper .swiper-slide img {
  display: block;
  max-width: 200px;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: contain;
  margin: auto;
}

/*----- /partners  ----*/

/*------ index review -------*/
.l_review {
  padding: 60px 0;
}
.l_review_overview {
  display: flex;
  align-items: end;
  justify-content: center;
  padding-bottom: 40px;
}

.l_review_overview ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  margin-right: 10px;
}
.l_review_overview ul li {
  display: inline-block;
  color: orange;
  font-size: 24px;
}
.l_review_overview h5 {
  margin: 0px;
  font-size: 25px;
  font-weight: 700;
  margin-right: 15px;
}
.l_review_overview h5 i {
  color: orange;
}
.l_review_overview p {
  margin: 0px;
  font-size: 18px;
  font-weight: 600;
}
.l_review_inner {
  margin-top: 70px;
}
.l_review_top {
  display: flex;
  align-items: center;
}

.l_review_row_box .row {
  align-items: stretch;
}
.l_review_row_box .row > div {
  margin: 10px 0;
}

.l_review_single {
  height: 100%;
  padding: 20px 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.l_review_top h2 {
  background-color: #339dfa;
  color: white;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  font-size: 35px;
  font-weight: 600;
  margin-right: 10px;
}

.l_review_top h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0px;
  margin-bottom: 0px;
}

.l_review_top ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}
.l_review_top ul li {
  display: inline-block;
  color: orange;
  font-size: 18px;
}

.l_review_top > p {
  margin: 2px;
  font-size: 14px;
  font-weight: 500;
}

.l_review_mid p {
  margin: 4px 0;
  font-size: 16px;
  font-weight: 400;

  /*  --max-lines: 4;
    --line-height: 1.5;
    max-height:calc(var(--max-lines) * 1em * var(--line-height));
    line-height:var(--line-height);  
    overflow:hidden;
    position:relative; */
}
.expand-btn {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 1rem;
  color: black !important;
  outline: none;
  box-shadow: none;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

.large_reivew,
.small_review {
  display: none;
}
.large_reivew.active,
.small_review.active {
  display: block;
}

/* 
.expand-btn {
    appearance:none;
    border:none;
    border-radius: 5px;
    cursor:pointer;
    margin-top:1rem;  
    color: black;
    outline: none;
    box-shadow: none;
    font-size: 15px;
    font-weight: 600;
    text-decoration: underline;
}
.expand-btn::before
{
    content:"Expand";
}
.expand-btn:checked:before
{
    content:"Collapse";
}
.l_review_mid p:has(+ .expand-btn:checked)
{
    max-height: none;
}  */

.expand-btn:checked ~ .small_review {
  max-height: none;
}

.review_write_div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  gap: 30px;
}

.review_btn::before {
  background-color: #0a66c2;
}
.review_btn::after {
  background-color: #0a66c2;
}

@media (max-width: 575px) {
  .l_review_overview {
    display: block;
    text-align: center;
  }
  .l_review_overview h5 {
    margin-top: 10px;
    margin-right: 0px;
  }
}
/*------ /index review -------*/

/*----- contact us  ----*/
.contact_us {
  padding: 50px 0;
  background-color: whitesmoke;
}
.mt-60 {
  margin-top: 100px;
}

.project_discuss.contact_discuss {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../image/request_estimate.jpg");
}

.contact_inner {
  margin-top: 30px;
  margin-bottom: 30px;
}
.contact_inner .row {
  align-items: stretch;
}

.contact_in_left {
  padding: 30px 15px 40px 0;
  margin-top: 10px;
  position: relative;
}

.contact_in_right {
  padding-top: 30px;
  padding-bottom: 40px;
  height: 100%;
  margin-top: 10px;
  position: relative;
}
.contact_in_left > h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #307ecc;
  font-style: italic;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}
.contact_in_left > h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  color: #307ecc;
  text-align: center;
  position: absolute;
  bottom: -60px;
  left: 0%;
  width: 100%;
  padding-right: 20px;
}

.contact_in_right h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #307ecc;
  text-align: center;
  position: absolute;
  top: -20px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
}

@media (max-width: 991px) {
  .contact_in_left h3,
  .contact_in_left h4,
  .contact_in_right h4 {
    position: initial;
    transform: none;
    text-align: center;
    margin-top: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .contact_in_left h3,
  .contact_in_right h4 {
    top: -35px;
  }
}

.contact_in_right iframe {
  width: 100%;
  height: 98%;
  border-radius: 10px;
}

.contact_inp {
  margin-bottom: 30px;
}
.contact_inp label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
.contact_inp input,
.contact_inp textarea {
  width: 100%;
  height: 50px;
  padding: 6px 9px;
  outline: none;
  box-shadow: none;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contact_inp textarea {
  height: 120px;
}
.contact_inp button i {
  margin-right: 10px;
}

@media (max-width: 991px) {
  .contact_in_left {
    padding: 0 0px 0 0;
  }
  .contact_inner {
    margin-top: 0px;
  }
  .contact_in_right {
    height: 400px;
  }
}

/*----- /contact us  ----*/

/*----- footer ----*/
.footer {
  padding: 60px 0 40px 0;
  background-color: #39414d;
}
.footer_box {
  margin: 12px 0;
  color: white;
}
.footer_box h5 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
}
.footer_phone {
  margin-top: 15px;
}
.footer_phone p {
  margin: 7px 0;
  font-size: 16px;
  font-weight: 400;
}
.footer_box h3 {
  font-size: 33px;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
}

.footer_box ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}
.footer_box ul li {
  margin: 12px 0;
}
.footer_box ul li a {
  font-size: 16px;
  color: white !important;
  font-weight: 400;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer_box ul li a img {
  width: 22px;
}

.newsletter_box input {
  width: 100%;
  height: 40px;
  outline: none;
  padding: 5px 8px;
  display: inline-block;
  margin-bottom: 6px;
  border: none;
  border-radius: 4px;
}

.footer_copyright {
  padding-top: 40px;
}
.footer_copyright > h2 {
  text-align: center;
  color: white;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}
.footer_copyright h2 span {
  color: #339dfa;
}
.footer_copyright p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin-top: 10px;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
}
.footer_copyright p a {
  display: inline-block;
  color: #339dfa !important;
  padding: 0px 10px;
  position: relative;
}
.footer_copyright p a:first-child {
  margin-left: 10px;
}
.footer_copyright p a::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 55%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background-color: white;
}

/*----- /footer ----*/

@media (max-width: 375px) {
  .service {
    padding-left: 0px;
    padding-right: 0px;
  }

  .logo {
    width: 150px;
  }
  .navbar-nav {
    text-align: right;
  }
  .cmn_title {
    font-size: 40px;
  }
  .service_inner {
    grid-template-columns: auto;
  }
  .service_item {
    margin: 0px 0;
  }

  .hero_txt h1 {
    font-size: 40px;
  }
  .i_about_left {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mt-60 {
    margin-top: 58px;
  }
  .footer_copyright > h2 {
    font-size: 20px;
  }
  .footer_copyright p {
    margin-top: 20px;
    display: inherit;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .service {
    padding-left: 0px;
    padding-right: 0px;
  }

  .logo {
    width: 150px;
  }
  .navbar-nav {
    text-align: right;
  }
  .cmn_title {
    font-size: 40px;
  }
  .service_inner {
    grid-template-columns: auto;
  }
  .service_item {
    margin: 0px 0;
  }

  .hero_txt h1 {
    font-size: 40px;
  }
  .i_about_left {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mt-60 {
    margin-top: 58px;
  }
  .footer_copyright > h2 {
    font-size: 20px;
  }
  .footer_copyright p {
    margin-top: 20px;
    display: inherit;
  }
}

@media (min-width: 426px) and (max-width: 500px) {
  .service {
    padding-left: 0px;
    padding-right: 0px;
  }

  .logo {
    width: 150px;
  }
  .navbar-nav {
    text-align: right;
  }
  .cmn_title {
    font-size: 40px;
  }
  .service_inner {
    grid-template-columns: auto;
  }
  .service_item {
    margin: 0px 0;
  }

  .hero_txt h1 {
    font-size: 45px;
  }

  .i_about_left {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mt-60 {
    margin-top: 58px;
  }
  .cmn_btn {
    height: 26px;
    width: 156px;
  }
  .footer_copyright > h2 {
    font-size: 20px;
  }
  .footer_copyright p {
    margin-top: 20px;
    display: inherit;
  }
}

@media (min-width: 501px) and (max-width: 574px) {
  .service {
    padding-left: 0px;
    padding-right: 0px;
  }

  .logo {
    width: 150px;
  }
  .navbar-nav {
    text-align: right;
  }
  .hero_txt h1 {
    font-size: 36px;
  }

  .service_inner {
    margin-top: 30px;
    grid-template-columns: auto auto;
    gap: 10px;
  }
  .i_about_left {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mt-60 {
    margin-top: 50px;
  }
  .footer_copyright p {
    margin-top: 20px;
    display: inherit;
  }
}

@media (min-width: 575px) and (max-width: 599px) {
  .service {
    padding-left: 0px;
    padding-right: 0px;
  }

  .logo {
    width: 150px;
  }
  .navbar-nav {
    text-align: right;
  }
  .hero_txt h1 {
    font-size: 40px;
  }

  .service_inner {
    margin-top: 30px;
    grid-template-columns: auto auto;
    gap: 10px;
  }
  .i_about_inner {
    margin-top: 60px;
  }
  .i_about_left {
    padding-left: 10px;
    padding-right: 10px;
  }
  .mt-60 {
    margin-top: 50px;
  }
  .footer_copyright p {
    margin-top: 20px;
    display: inherit;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .service {
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-nav {
    text-align: right;
  }
  .hero_txt h1 {
    font-size: 44px;
  }

  .service_inner {
    grid-template-columns: auto auto;
  }
  .service_item {
    margin: 1px 0;
  }
  .i_about_left {
    padding-left: 10px;
    padding-right: 10px;
  }
  .i_about_inner {
    margin-top: 50px;
  }
  .mt-60 {
    margin-top: 60px;
  }
  .footer_copyright p {
    margin-top: 20px;
    display: inherit;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service {
    padding-left: 0px;
    padding-right: 0px;
  }

  .navbar-nav {
    text-align: right;
  }

  .hero_txt h1 {
    font-size: 54px;
  }

  .service_inner {
    margin-top: 20px;
    grid-template-columns: auto auto;
  }
  .service_item {
    margin: 5px 0;
  }
  .i_about_inner {
    margin-top: 60px;
  }
  .i_about_left p {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .mt-60 {
    margin-top: 60px;
  }
  .footer_box h3 {
    font-size: 25px;
  }
  .logo {
    width: 145px;
  }
  .newsletter_box form button {
    width: 120px;
  }

  .hero_txt h1 {
    font-size: 40px;
  }

  .service_inner {
    grid-template-columns: auto auto;
  }
  .service_item {
    margin: 1px 0;
  }
  .i_about_left {
    padding-left: 10px;
    padding-right: 10px;
  }
  .i_about_inner {
    margin-top: 50px;
  }
  .mt-60 {
    margin-top: 60px;
  }
  .cmn_btn {
    min-width: 142px;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .service {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo {
    width: 130px;
  }
  .request_esti_btn {
    padding: 12px 12px;
    white-space: nowrap;
  }
  .nav-link {
    font-size: 12px;
  }
  .nav-item {
    margin: 0px 5px;
  }

  .service_inner {
    grid-template-columns: auto auto auto;
  }
  .service_inner_front {
    grid-template-columns: auto auto auto auto;
  }

  .service_item {
    margin: 5px 0;
  }
  .i_about_inner {
    margin-top: 60px;
  }
  .i_about_left p {
    font-size: 16px;
  }
  .mt-60 {
    margin-top: 60px;
  }
  .footer_box h5 {
    font-size: 15px;
  }
  .footer_box ul li a {
    font-size: 15px;
  }
  .footer_box h3 {
    font-size: 28px;
  }
}

@media (min-width: 1025px) and (max-width: 1200px) {
  .service {
    padding-left: 20px;
    padding-right: 20px;
  }

  .logo {
    width: 130px;
  }

  .request_esti_btn {
    padding: 12px 12px;
    white-space: nowrap;
  }
  .nav-link {
    font-size: 12px;
  }
  .nav-item {
    margin: 0px 5px;
  }

  .service_inner {
    grid-template-columns: auto auto auto;
  }
  .service_inner_front {
    grid-template-columns: auto auto auto auto;
  }

  .i_about_inner {
    margin-top: 60px;
  }
  .i_about_left p {
    font-size: 16px;
  }
  .mt-60 {
    margin-top: 60px;
  }
}

@media (min-width: 1201px) and (max-width: 1400px) {
  .service {
    padding-left: 0px;
    padding-right: 0px;
  }

  .logo {
    width: 200px;
    transform: scale(1);
  }
  .nav-item {
    margin: 0px 6px;
  }
}

/*----- testominal page ------*/
.testominal {
  padding: 40px 0;
  /* background-color: #fafbfe; */
  background-color: #b7eaf020;
}

.testominal_inner h3 {
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: center;
  font-family: "Barlow Condensed", sans-serif;
}

.testominal_inner p {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
}

.testo_box_inner {
  margin-top: 50px;
}
.testo_box_single {
  display: grid;
  grid-template-columns: 63% 35%;
  gap: 10px;
  justify-content: center;
}
.testo_rate {
  margin: 0px;
  margin-top: 40px;
  padding: 0px;
  list-style: none;
}
.testo_rate li {
  display: inline-block;
  font-size: 22px;
  color: orange;
  letter-spacing: -3px;
}
.testo_box_left h2 {
  font-size: 34px;
  font-weight: 600;
  line-height: 50px;
  width: 98%;
}
.testo_profile {
  display: flex;
  align-items: center;
}
.testo_profile img {
  width: 70px !important;
  margin-right: 10px;
}
.testo_profile p {
  text-align: left;
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
}
.testo_box_right img {
  width: 100% !important;
}

/* .testo_box_inner .owl-dots
{
    display: none;
} */

.testo_box_inner .owl-prev {
  position: absolute;
  bottom: 50%;
  left: -50px;
}
.testo_box_inner .owl-next {
  position: absolute;
  bottom: 50%;
  right: -50px;
}

.testo_box_inner .owl-prev span,
.testo_box_inner .owl-next span {
  height: 40px !important;
  width: 40px !important;
  line-height: 30px !important;
  display: inline-block;
  font-size: 50px;
  color: #39414d;
  border: 1px solid #39414d;
  border-radius: 50%;
}
.testo_box_inner .owl-prev:hover,
.testo_box_inner .owl-next:hover {
  background-color: transparent !important;
}

@media (max-width: 425px) {
  .testo_box_inner .owl-prev {
    display: none !important;
    left: 0px;
  }
  .testo_box_inner .owl-next {
    display: none !important;
    right: 0px;
  }
  .testo_box_left h2 {
    font-size: 22px;
    line-height: 37px;
    width: 100%;
  }
  .testo_box_single {
    grid-template-columns: 100%;
  }
}

@media (min-width: 426px) and (max-width: 767px) {
  .testo_box_inner .owl-prev {
    display: none !important;
  }
  .testo_box_inner .owl-next {
    display: none !important;
  }
  .testo_box_left h2 {
    font-size: 22px;
    line-height: 37px;
    width: 100%;
  }
  .testo_box_single {
    grid-template-columns: 100%;
  }
  .testo_box_right img {
    width: 50% !important;
    margin: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .testo_box_inner .owl-prev {
    display: none !important;
  }
  .testo_box_inner .owl-next {
    display: none !important;
  }
  .testo_box_left h2 {
    font-size: 20px;
    line-height: 37px;
    width: 100%;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .testo_box_inner .owl-prev {
    left: 0px;
  }
  .testo_box_inner .owl-next {
    right: 0px;
  }
  .testo_box_left h2 {
    font-size: 20px;
    line-height: 37px;
    width: 100%;
  }
}

/*----- /testominal page ------*/

/*----- charity page ------*/

.charity_hero {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.charity_right img {
  width: 100%;
}

.charity_left {
  color: white;
  padding-left: 100px;
}

.charity_left h4 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #339dfa;
  margin-bottom: 40px;
}

.charity_left h1 {
  font-size: 80px;
  font-weight: 600;
  margin-bottom: 30px;
}

.charity_left h3 {
  font-size: 44px;
  font-weight: 500;
}

.charity_info {
  padding: 50px 0;
  background-color: #f0f3f7;
}

.charity_info_title {
  padding: 150px 0px 150px 150px;
}

.charity_info_title h3 {
  font-size: 42px;
  font-weight: 600;
  width: 70%;
}

.charity_info_title .cmn_btn {
  width: 320px;
}

.charity_single .row {
  align-items: center;
}

.charity_single_left img {
  width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 8px;
}

.charity_single_right,
.charity_single_left {
  margin: 12px 0;
}
.charity_single_right {
  padding: 0px 80px;
}

#philanthropy_newsletter h3 {
  font-size: 28px;
  font-weight: 600;
}

#philanthropy_newsletter input {
  max-width: 450px;
  width: 96%;
  height: 60px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 15px;
  border: 0.3px solid #339dfa;
}

.charity_single_right h3 {
  font-size: 45px;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 12px;
}
.charity_single_right p {
  font-size: 19px;
  line-height: 32px;
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 20px;
}

.charity_single_right p a {
  color: #339dfa !important;
  text-decoration: none;
  display: inline-block;
  padding-bottom: 0px;
  border-bottom: none;
}

.charity_single_right a {
  display: block;
  color: #39414d !important;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 18px;
  padding-bottom: 10px;
  text-decoration: none;
  border-bottom: 1px solid #39414d8a;
  width: fit-content;
}
.charity_gallery {
  padding-top: 40px;
  padding-bottom: 70px;
  background-color: #fff;
}
.charity_gallery h1 {
  font-size: 60px;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 50px;
}

.showcase_caption {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.gallery_box > h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 40px;
}

.gallery_item_right {
  padding: 0 20px;
}
.gallery_item_right p {
  font-size: 25px;
  font-weight: 400;
  margin: 5px 0;
  text-align: center;
}

.showcase_box {
  /* display: grid; */
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 25%;
  max-width: 100%;
}

.image-container,
.video_box {
  width: 100%;
  height: 70vh;
  /* height: 70vh; */
  /* max-width: 100%; */
  aspect-ratio: 1/1;
}

@media (max-width: 375px) {
  .image-container,
  .video_box {
    height: 50vh;
  }
}

@media (min-width: 376px) and (max-width: 991px) {
  .image-container,
  .video_box {
    height: 100%;
  }
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

.image-before {
  position: absolute;
  inset: 0;
  width: var(--position) !important;
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.slider-line {
  position: absolute;
  inset: 0;
  width: 0.2rem;
  height: 100%;
  background-color: #fff;
  /* z-index: 10; */
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.slider-button {
  position: absolute;
  background-color: #fff;
  color: black;
  padding: 0.5rem;
  border-radius: 100vw;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* z-index: 100; */
  box-shadow: 1px 1px 1px hsl(0, 50%, 2%, 0.5);
}

.gallery_title {
  padding: 40px 10px 20px 10px;
  background-color: #39414d;
}
.gallery_title h2 {
  color: white;
  font-size: 22px;
  font-weight: 600;
}
.gallery_title p {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin: 5px 0;
}

.gallery_inner {
  background-color: #39414d;
  padding: 20px 20px 30px 20px;
  border-radius: 20px;
  color: white;
}

.gallery_inner .owl-carousel .owl-prev {
  position: absolute;
  top: 40%;
  left: -8%;
  transform: translateY(-50%);
}
.gallery_inner .owl-carousel .owl-next {
  position: absolute;
  top: 40%;
  right: -8%;
  transform: translateY(-50%);
}

.gallery_inner .owl-carousel .owl-dots {
  position: absolute;
  left: 22%;
  cursor: pointer !important;
}

.gallery_inner .owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 5px;
}

.gallery_inner .owl-theme .owl-dots .owl-dot.active span {
  width: 22px;
}

.gallery_inner .owl-dots {
  display: none !important;
}

.gallery_item_left .owl-dots {
  display: block !important;
}

.gallery_item_left .owl-carousel .owl-prev {
  display: none !important;
}
.gallery_item_left .owl-carousel .owl-next {
  display: none !important;
}

@media (max-width: 767px) {
  .gallery_item_right {
    padding: 0px;
  }

  .gallery_item_right p {
    font-size: 20px;
    margin: 10px 0;
  }
  .gallery_inner .owl-carousel .owl-prev {
    top: -80px;
    right: 90px;
    left: auto;
  }
  .gallery_inner .owl-carousel .owl-next {
    top: -80px;
    right: 0px;
  }
  .gallery_inner .owl-carousel .owl-dots {
    position: initial;
  }
}

@media (max-width: 575px) {
  .gallery_inner .owl-carousel .owl-prev {
    top: -80px;
    right: 60px;
    left: auto;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .gallery_inner .owl-carousel .owl-dots {
    position: initial;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .gallery_inner .owl-carousel .owl-dots {
    left: 20%;
  }
}

@media (min-width: 768px) and (max-width: 1600px) {
  .gallery_item_right p {
    font-size: 20px;
    margin: 10px 0;
  }
  .gallery_inner .owl-carousel .owl-prev {
    top: -100px;
    right: 90px;
    left: auto;
  }
  .gallery_inner .owl-carousel .owl-next {
    top: -100px;
    right: 0px;
  }
}

.glance_inner .owl-dots,
.award_inner .owl-dots {
  display: none;
}

.glance_inner .owl-carousel .owl-prev,
.award_inner .owl-carousel .owl-prev,
.charity_program_inner .owl-carousel .owl-prev {
  position: absolute;
  bottom: -50px;
  left: 0px;
}
.glance_inner .owl-carousel .owl-next,
.award_inner .owl-carousel .owl-next,
.charity_program_inner .owl-carousel .owl-next {
  position: absolute;
  bottom: -50px;
  left: 50px;
}

.gallery_inner .owl-prev span,
.gallery_inner .owl-next span {
  /* height: 50px !important;
    width: 55px !important;
    line-height: 40px !important;
    font-size: 55px; */

  height: 70px !important;
  width: 75px !important;
  line-height: 60px !important;
  font-size: 75px;

  background-color: #339dfa;
  display: inline-block;
  color: #fff;
  border: 1px solid #339dfa;
  border-radius: 6px;
}

@media (max-width: 575px) {
  .gallery_inner .owl-prev span,
  .gallery_inner .owl-next span {
    height: 40px !important;
    width: 45px !important;
    line-height: 30px !important;
    font-size: 50px;
  }
}

.glance_inner .owl-prev span,
.glance_inner .owl-next span,
.award_inner .owl-prev span,
.award_inner .owl-next span {
  height: 40px !important;
  width: 45px !important;
  line-height: 30px !important;
  display: inline-block;
  font-size: 50px;
  color: #39414d;
  border: 1px solid #39414d;
  border-radius: 6px;
}

.charity_program_inner .owl-prev span,
.charity_program_inner .owl-next span {
  height: 40px !important;
  width: 45px !important;
  line-height: 30px !important;
  display: inline-block;
  font-size: 50px;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
}

.gallery_inner .owl-prev:hover,
.gallery_inner .owl-next:hover,
.glance_inner .owl-prev:hover,
.glance_inner .owl-next:hover,
.award_inner .owl-prev:hover,
.award_inner .owl-next:hover,
.charity_program_inner .owl-prev:hover,
.charity_program_inner .owl-next:hover {
  background-color: #339dfa !important;
}

.gallery_inner .owl-prev:hover span,
.gallery_inner .owl-next:hover span,
.glance_inner .owl-prev:hover span,
.glance_inner .owl-next:hover span,
.award_inner .owl-prev:hover span,
.award_inner .owl-next:hover span,
.charity_program_inner .owl-prev:hover span,
.charity_program_inner .owl-next:hover span {
  color: #fff;
  border: 1px solid #339dfa;
}

.glance {
  padding-top: 70px;
  padding-bottom: 80px;
  background-color: #f0f3f7;
}

.glance h1 {
  font-size: 60px;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 50px;
}

.glance .owl-carousel .owl-stage {
  display: flex;
}

.glance .owl-carousel .item {
  display: flex;
  height: 100%;
}
.glance_single {
  margin: 12px 0;
  background-color: white;
  padding: 50px 20px 50px 20px;
  border-radius: 8px;
}

.glance_single h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.glance_single h2 {
  font-size: 35px;
  font-weight: 600;
  color: #339dfa;
  padding-bottom: 6px;
  border-bottom: 1px solid #339dfa;
}

.glance_single p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
}

.charity_program {
  padding: 60px 0;
  background-color: #39414d;
  color: white;
}

.charity_program h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 50px;
}

.charity_program_inner .owl-carousel .owl-dots {
  display: none;
}

.charity_program_single {
  margin: 12px 0;
  padding: 10px;
}
.charity_program_single .line {
  width: 50px;
  height: 4px;
  border-radius: 5px;
  background-color: #339dfa;
}

.charity_program_single h2 {
  margin-top: 40px;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 30px;
}

.charity_program_single p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 0px;
  margin-bottom: 25px;
}

.charity_program_single a {
  color: #339dfa !important;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
}
.award {
  padding-top: 60px;
  padding-bottom: 70px;
  background-color: #f0f3f7;
}
.award h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 50px;
}
.award_single {
  margin: 12px 0;
}
.award_img img {
  width: 100% !important;
}
.award_info {
  background-color: #39414d;
  padding: 30px 15px 20px 15px;
  color: white;
}

.award_info p {
  padding: 30px 0;
  font-size: 17px;
  font-weight: 400;
}

.award_info h5 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
}

@media (max-width: 575px) {
  .glance_single h2 {
    font-size: 25px;
  }

  .charity_info_title .cmn_btn {
    width: 240px;
  }
  .cmn_btn {
    font-size: 12px;
  }
  .charity_left {
    padding-left: 5px;
  }
  .charity_left h4 {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .charity_left h1 {
    font-size: 40px;
  }
  .charity_left h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .charity_info_title {
    padding: 0px;
  }
  .charity_info_title h3 {
    font-size: 28px;
    width: 100%;
    margin-bottom: 16px;
  }
  .charity_single {
    padding-top: 40px;
  }
  .charity_single_right {
    padding: 0px 0px;
  }
  .charity_single_right h3 {
    font-size: 35px;
  }
  .charity_single_right p {
    font-size: 16px;
    line-height: 27px;
  }
  .charity_single_right a {
    font-size: 14px;
    padding-bottom: 4px;
  }
  .charity_gallery {
    padding-top: 10px;
  }
  .charity_gallery h1,
  .glance h1 {
    font-size: 50px;
    margin-bottom: 30px;
  }
  .glance {
    padding-top: 20px;
    padding-bottom: 25px;
  }
  .charity_info {
    padding: 25px 0;
  }
  .charity_program h1 {
    margin-bottom: 25px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .glance_single h2 {
    font-size: 30px;
  }
  .charity_left {
    padding-left: 10px;
  }
  .charity_left h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .charity_left h1 {
    font-size: 50px;
  }
  .charity_left h3 {
    font-size: 25px;
    margin-bottom: 25px;
  }
  .charity_info_title {
    padding: 0px;
    padding-left: 20px;
    padding-bottom: 20px;
  }
  .charity_info_title h3 {
    font-size: 38px;
  }
  .charity_single_right {
    padding: 0px 0px;
  }
  .charity_gallery {
    padding-top: 10px;
    padding-bottom: 50px;
  }
  .charity_gallery h1,
  .glance h1 {
    margin-bottom: 25px;
  }
  .glance {
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .charity_info {
    padding: 25px 0;
  }
  .award h1 {
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .glance_single h2 {
    font-size: 30px;
  }

  .charity_left {
    padding-left: 20px;
  }

  .charity_left h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .charity_left h1 {
    font-size: 50px;
  }
  .charity_left h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .charity_info {
    padding: 25px 0;
  }
  .charity_info_title {
    padding: 0px 0px 0px 50px;
  }

  .charity_info_title h3 {
    font-size: 34px;
  }
  .charity_single {
    padding-top: 40px;
  }
  .charity_single_right {
    padding: 0px 0px;
  }
  .charity_single_right h3 {
    font-size: 35px;
  }
  .charity_single_right p {
    font-size: 16px;
    line-height: 28px;
  }
  .charity_single_right a {
    font-size: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .glance_single h2 {
    font-size: 30px;
  }

  .charity_left {
    padding-left: 30px;
  }
  .charity_left h4 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .charity_left h1 {
    font-size: 58px;
  }
  .charity_left h3 {
    font-size: 32px;
  }
  .charity_info_title {
    padding: 0px 0px 0px 40px;
  }
  .charity_single {
    padding-top: 30px;
  }
  .charity_single_right {
    padding: 0px 0px;
  }
  .charity_single_right h3 {
    font-size: 40px;
  }
  .charity_single_right p {
    font-size: 17px;
    line-height: 30px;
  }
  .charity_gallery {
    padding-top: 50px;
  }
}

@media (min-width: 1201px) and (max-width: 1600px) {
  .charity_left h1 {
    font-size: 65px;
  }
  .charity_left h3 {
    font-size: 25px;
  }
  .charity_single_right {
    padding: 0px 20px;
  }
}
/*----- /charity page ------*/

/*----- portfolio page ------*/
.portfolio {
  /* background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url("../image/portfolio_bg.jpg"); */
  background-size: cover;
  background-position: center;
  height: 40vh;
  width: 100%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.portfolio h1 {
  margin-top: 20px;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: "Barlow Condensed", sans-serif;
}

.portfolio p {
  margin: 0px;
  font-size: 18px;
  font-weight: 400;
}

.portfolio_item {
  padding-top: 60px;
  padding-bottom: 40px;
  background-color: #efefef;
}

.portfolio_single {
  margin: 20px 0;
  background-color: white;
  border-radius: 6px;
  overflow: hidden;
}
.portfolio_single_img {
  overflow: hidden;
}
.portfolio_single_img img {
  width: 100%;
  transition-duration: 0.3s;
  height: 350px;
  object-fit: cover;
  object-position: top;
}
.portfolio_single_img img:hover {
  transition-duration: 0.3s;
  transform: scale(1.1);
}

.portfolio_info {
  padding: 20px 15px;
}
.portfolio_info a {
  display: block;
  font-size: 30px;
  font-weight: 500;
  color: #339dfa !important;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 10px;
}

.portfolio_info p {
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 17px;
  font-weight: 400;
}

.port_showcase {
  /* display: grid; */
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 25%;
  max-width: 100%;
  margin: 10px 0;
}

.port_image-container {
  width: 100%;
  /* max-height: 50vh; */
  /* aspect-ratio: 1/1; */
}

.portfolio_gallery > p {
  text-align: center;
  margin-top: 5px;
  font-size: 17px;
  font-weight: 500;
}

.portfolio_s_left .owl-dots {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.portfolio_s_left .owl-theme .owl-dots .owl-dot.active span {
  width: 30px;
}

.portfolio_s_right,
.portfolio_s_left {
  margin: 12px 0;
}

.portfolio_s_right {
  padding: 0px 20px;
}
.portfolio_s_right h1 {
  font-size: 35px;
  font-weight: 500;
  font-family: "Barlow Condensed", sans-serif;
  color: #339dfa;
  margin-top: 0px;
  margin-bottom: 20px;
}

.portfolio_clinet {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.portfolio_clinet p {
  font-size: 18px;
  font-weight: 500;
  margin: 5px 0;
}
.portfolio_clinet p b {
  font-size: 20px;
  font-weight: 700;
}

.portfolio_desc {
  margin: 20px 0;
}

.portfolio_desc h3 {
  font-size: 25px;
  font-weight: 700;
}

.portfolio_desc p {
  margin: 5px 0;
  font-size: 17px;
  font-weight: 300;
}

.portfolio_bottom h5 {
  border-top: 1px solid #39414d;
  padding-top: 6px;
  font-size: 14px;
  font-weight: 400;
}

.portfolio_bottom h5 span {
  color: #339dfa;
}

@media (max-width: 767px) {
  .portfolio_s_right {
    padding: 0px 2px;
  }
}
@media (max-width: 599px) {
  .portfolio h1 {
    font-size: 45px;
  }
}

/*----- /portfolio page ------*/

/*----- service single page ------*/
.service_banner {
  height: 70vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.service_banner h5 {
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin: 0px;
}
.service_banner h2 {
  font-size: 65px;
  line-height: 65px;
  font-weight: 800;
  color: white;
  margin-top: 30px;
  margin-bottom: 20px;
  width: 50%;
  text-align: center;
}
.service_banner p {
  font-size: 20px;
  font-weight: 500;
  color: white;
  margin-top: 0px;
  margin-bottom: 20px;
  width: 50%;
  text-align: center;
}

.service_desc {
  padding: 60px 0;
}

.service_desc h4 {
  color: #339dfa;
  font-size: 22px !important;
  font-weight: 600 !important;
  text-align: center;
  margin-bottom: 40px !important;
}

.service_desc p {
  font-size: 18px !important;
  font-weight: 400 !important;
  margin: 15px 0px !important;
}

.service_desc ul li {
  margin: 6px 0;
  font-size: 17px !important;
  font-weight: 400 !important;
}

.project_discuss {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../image/service_discuss.jpg");
  background-size: cover;
  background-position: center;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.project_discuss h2 {
  font-size: 40px;
  color: white;
  font-weight: 800;
  text-shadow: 2px 2px #0d1623;
  margin-top: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.project_discuss_inner {
  background-color: rgba(255, 255, 255, 0.42);
  padding: 33px 16.5px;
  max-width: 800px;
  width: 95%;
  border-radius: 5px;
}
.project_discuss_inp {
  margin: 10px 0;
}
.project_discuss_inp input,
.project_discuss_inp textarea,
.project_discuss_inp select {
  width: 100%;
  height: 50px;
  outline: none;
  box-shadow: none;
  padding: 5px 8px;
  font-size: 15px;
  font-weight: 400;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.project_discuss_inp textarea {
  height: 140px;
}

.project_discuss_inp > p {
  margin-top: 4px;
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 500;
}

.project_discuss_submit {
  text-align: center;
  margin-top: 30px;
}
.project_discuss_submit button {
  margin: auto;
}
.project_discuss_sec {
  padding-top: 20px;
}
.project_discuss_sec p {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 574px) {
  .service_banner h2 {
    font-size: 44px;
    line-height: 44px;
    width: 100%;
  }
  .service_banner p {
    font-size: 16px;
    width: 100%;
  }
}

@media (min-width: 575px) and (max-width: 767px) {
  .service_banner h2 {
    font-size: 50px;
    line-height: 50px;
    width: 85%;
  }
  .service_banner p {
    font-size: 18px;
    width: 80%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service_banner h2 {
    font-size: 55px;
    line-height: 55px;
    width: 85%;
  }
  .service_banner p {
    font-size: 18px;
    width: 80%;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .service_banner h2 {
    width: 85%;
  }
  .service_banner p {
    width: 80%;
  }
}
/*----- /service single page ------*/

/*----- About Us Page page ------*/
.about_info h2 {
  font-size: 40px;
  font-weight: 600;
  font-family: "Barlow Condensed", sans-serif;
  margin-bottom: 15px;
  color: #339dfa;
}

.about_info_item {
  margin-bottom: 40px;
}
.about_info p {
  font-size: 17px;
  font-weight: 400;
  margin: 4px !important;
}
/*----- About Us Page page ------*/

/*----- write review page ------*/
.adReviewTop {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("../image/testo_bg.png");
  background-size: cover;
  background-position: center;
  padding: 80px 0px 20px;
}

.addReviewInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.addReviewInnerLeft h4 {
  font-size: 45px;
  font-weight: 700;
  color: white;
}

.addReviewInnerLeft p {
  font-size: 20px;
  font-weight: 400;
  color: white;
}

#rateYo {
  z-index: 1;
}

.addReviewInnerRight img {
  width: 80%;
}

.reviewWrite {
  padding: 30px 0;
}

.reviewWriteLeft {
  margin: 15px 0;
}

.reviewWriteLeft h4 {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.reviewWriteLeft h4 span {
  position: relative;
  padding-bottom: 5px;
  font-family: "Barlow Condensed", sans-serif;
}

.reviewWriteLeft h4 span::before {
  position: absolute;
  content: "";
  height: 3px;
  width: 40%;
  background-color: #0a66c2;
  border-radius: 5px;
  bottom: 0;
  left: 0;
}

#reviewForm h5 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0px;
  font-family: "Barlow Condensed", sans-serif;
  color: #f39c12;
}

.reviewFiltertype select,
.reviewFiltertype input {
  border: none;
  border: 1px solid #ccc;
  padding: 10px 7px;
  border-radius: 5px;
  outline: none;
  width: 100%;
  cursor: pointer;
}

.reviewFiltertype select option {
  font-size: 15px;
}

#banknameList2,
#banknameList {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 11;
}

#mytable,
#mytable2 {
  border: 1px solid #ccc;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: none;
}

#mytable tr,
#mytable2 tr {
  padding: 0;
}

#mytable tr td,
#mytable2 tr td {
  font-size: 15px;
  margin: 4px 0;
  padding: 4px 8px;
  cursor: pointer;
}

#mytable tr td:hover,
#mytable2 tr td:hover {
  background-color: #0a66c2;
  color: white;
}

.reviewFiltertype {
  position: relative;
}

.filterDownAngle {
  position: absolute;
  right: 10px;
  top: 8px;
  font-size: 15px;
  pointer-events: none;
}

.writeRediveDiv {
  margin: 10px 0px 20px;
}

.writeRediveDiv label {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
  width: 120px;
}

.writeRediveDiv input {
  width: 100%;
  height: 55px;
  outline: none;
  box-shadow: none;
  border-radius: 3px;
  padding: 10px;
  font-size: 17px;
  border: none;
  border: 1px solid #ccc;
  border-bottom: 2px solid #0a66c2;
}

.writeRediveDiv input::placeholder {
  font-size: 17px;
}

.writeRediveDiv textarea {
  width: 100%;
  min-height: 100px;
  outline: none;
  box-shadow: none;
  border-radius: 3px;
  padding: 10px;
  font-size: 17px;
  border: none;
  border: 1px solid #ccc;
  border-bottom: 2px solid #0a66c2;
}

#writReviewSubmit {
  border: none;
  background-color: darkgreen;
  color: white;
}

.reviewWriteRight {
  margin: 5px 0;
  background-color: #f7fafd;
  padding: 30px 20px 20px;
  border-radius: 5px;
}

.reviewWriteRight h4 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.reviewWriteRight h4 span {
  position: relative;
  padding-bottom: 10px;
  font-family: "Barlow Condensed", sans-serif;
}

.reviewWriteRight h4 span::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 40%;
  background-color: #0a66c2;
  border-radius: 5px;
}

.reviewBox {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  margin: 30px 0;
}

.reviewProduct {
  font-size: 14px;
  font-weight: 400;
}

.reviewRating ul {
  padding: 0;
  margin: 0;
}

.reviewRating ul li {
  display: inline-block;
  list-style: none;
  color: orange;
}

.grayStar i {
  color: #ccc;
}

.reviewTitle {
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}

.reviewText {
  font-size: 14px;
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 20px;
}

.reviewOwner {
  display: flex;
  align-items: center;
}

.reviewOwner img {
  width: 50px;
  margin-right: 5px;
}

.reviewOwner p {
  font-size: 14px;
  margin: 3px 0;
}

.reviewOwner p:nth-child(1) {
  font-weight: 500;
}

.reviewOwner p:nth-child(2) {
  font-weight: 400;
}

.viewReviewBtn {
  background-color: #339dfa;
  color: white !important;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
  padding: 14px 15px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

.reviewWait {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.54);
  display: none;
}

.reviewWait img {
  width: 100px;
}

.error_msg {
  color: red;
  margin-top: 5px;
  margin-bottom: 0px;
}

@media (max-width: 599px) {
  .addReviewInnerRight {
    display: none;
  }

  .addReviewInnerLeft {
    padding: 20px 0;
  }
  .addReviewInnerLeft h4 {
    font-size: 35px;
  }
  .addReviewInnerLeft p {
    font-size: 18px;
  }

  .reviewWriteLeft {
    padding-left: 0px;
    padding: 0 30px;
  }

  .reviewFiltertype {
    margin: 8px 0;
  }

  .writeRediveDiv input {
    width: 100%;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .addReviewInnerRight {
    display: none;
  }

  .addReviewInner {
    padding: 30px 0;
  }

  .addReviewInnerLeft h4 {
    font-size: 35px;
  }

  .reviewWriteLeft {
    padding-left: 0px;
  }

  .reviewFiltertype {
    margin: 10px 0;
  }

  .writeRediveDiv input {
    width: 45%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .addReviewInnerRight img {
    width: 55%;
  }

  .addReviewInner {
    padding: 30px 0;
  }

  .addReviewInnerLeft h4 {
    font-size: 40px;
  }

  .reviewWriteLeft {
    padding-left: 0px;
  }

  .reviewFiltertype {
    margin: 10px 0;
  }

  .writeRediveDiv input {
    width: 45%;
  }

  .reviewText {
    font-size: 13px;
  }

  .reviewOwner p {
    font-size: 13px;
  }

  .reviewOwner img {
    width: 45px;
  }
}

/*----- /write review page ------*/

/*----  review page -----*/

.allReview {
  padding: 30px;
}

.allReviewTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.allReviewTopLeft h4 {
  font-size: 32px;
  font-weight: 600;
}

.allReviewTopLeft h4 span {
  padding-bottom: 10px;
  position: relative;
  font-family: "Barlow Condensed", sans-serif;
}

.allReviewTopLeft h4 span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 50%;
  background-color: #339dfa;
  border-radius: 5px;
  content: "";
}

.allReviewTopRight a {
  text-decoration: none;
  color: white !important;
  background-color: #339dfa;
  padding: 13px 20px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  border-radius: 5px;
}
.allReviewBox {
  margin: 40px 0;
}
.allReviewBox .row {
  align-items: stretch;
}
.allReviewBox .row > div {
  margin: 10px 0;
}

.allReviewBoxInner {
  background-color: whitesmoke;
  padding: 20px;
  border-radius: 5px;
  margin: 20px 0;
  position: relative;
}

.allReviewUser {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.allReviewPagination {
  margin: 40px 0 0;
}

.activePagi {
  background-color: #339dfa !important;
  color: white !important;
}

.paginationUl li a:hover {
  background-color: #339dfa !important;
  color: white;
}

@media (max-width: 599px) {
  .allReview {
    padding: 30px 10px;
  }

  .allReviewTopRight a {
    padding: 9px 8px;
    font-size: 14px;
  }

  .allReviewTopLeft h4 {
    font-size: 21px;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .allReview {
    padding: 30px 10px;
  }
}

/*----  /review page -----*/

/*======= floating contact======*/
.float_contact {
  position: fixed;
  bottom: 0px;
  right: 0px;
  z-index: 111;
    max-height: 80%;
  overflow-y: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.float_contact::-webkit-scrollbar {
  display: none;
}

.float_contact_icon button {
  background-color: rgb(25, 105, 180);
  color: white;
  border: none;
  padding: 12px 30px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  margin: 0px;
}
.float_contact_icon button i {
  margin-right: 5px;
}
.floating_messag_box {
  max-width: 400px;
  width: 98%;
  background-color: #e8f0f7;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: none;
}
.floating_m_top {
  background-color: #fff;
  color: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom: 1px solid #095dfa;
}

.floating_m_top img {
  width: 180px;
}

.floating_m_top h2 {
  font-size: 25px;
  font-weight: 500;
  margin: 0px;
}

.floating_m_top p {
  font-size: 16px;
  font-weight: 400;
  margin-top: 2px;
  margin-bottom: 0px;
  color: #000;
}
.floating_m_top p i {
  font-size: 12px;
  color: #43b72a;
}
.floating_m_top div a {
  color: #000 !important;
  font-size: 20px;
}

.floating_m_mid {
  max-height: calc(80vh - 120px);
  overflow-y: auto;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../image/chat_bg.jpg");
  background-position: center;
  background-size: cover;
}

.floating_m_mid::-webkit-scrollbar {
  width: 5px;
}

.floating_m_mid::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.floating_m_mid::-webkit-scrollbar-thumb {
  background: #888;
}

.floating_m_mid::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.floating_m_mid h6 {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 12px;
}
.floating_m_mid h6 span {
  background-color: #fff;
  padding: 8px 8px;
  border-radius: 4px;
}
.floating_mid_info {
  background-color: white;
}
.floating_m_mid_inner {
  padding: 8px 15px;
}
.floating_mid_info {
  padding: 12px;
  border-radius: 8px;
}
.floating_mid_info p {
  font-size: 14px;
  font-weight: 400;
  margin: 0px;
}
.floating_mid_form {
  margin-top: 10px;
  background-color: white;
  padding: 12px;
  border-radius: 8px;
}
.floating_inp {
  position: relative;
  margin-bottom: 10px;
}

.float_error {
  font-size: 15px;
}

.floating_inp:last-child {
  margin-bottom: 0px;
}
.floating_inp input,
.floating_inp textarea {
  height: 40px;
  width: 100%;
  outline: none;
  box-shadow: none;
  padding: 4px 20px 4px 10px;
  font-size: 17px;
  font-weight: 400;
  border: none;
  border-bottom: 1px solid #ccc;
}
.floating_inp textarea {
  height: 100px;
}
.floating_require {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  cursor: pointer;
}
#floating_btn {
  background-color: #212020;
  color: white;
  cursor: pointer;
  height: 45px;
  border-radius: 4px;
  border: 1px solid #212020;
}

@media (max-width: 425px) {
  .floating_messag_box {
    max-width: 300px;
  }
  .floating_m_top h2 {
    font-size: 22px;
  }
  .floating_m_top p {
    font-size: 13px;
  }
}

@media (min-width: 426px) and (max-width: 599px) {
  .floating_messag_box {
    max-width: 350px;
  }
}

/*======= /floating contact======*/

/*--- float top arrow ---*/
.float_top_arrow {
  position: fixed;
  right: 40px;
  bottom: 80px;
  display: none;
  z-index: 11;
}
.top_arrow_btn {
  background-color: #fff;
  border: 1px solid #095dfa;
  color: #095dfa !important;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  height: 45px;
  width: 45px;
  line-height: 45px;
  border-radius: 50%;
  text-align: center;
  transition-duration: 0.3s;
}
.top_arrow_btn:hover {
  transition-duration: 0.3s;
  background-color: #095dfa;
  color: white !important;
}
/*--- /float top arrow ---*/

/*----- service new  page -----*/

.service_new_banner {
  height: 90vh;
  position: relative;
}

#bannerResidential,
#bannerCommercial {
  display: none;
}

.service_new_item img {
  height: 90vh;
  object-fit: cover;
  object-position: center;
}

.service_new_banner .owl-carousel .owl-dots {
  display: none;
}

.service_new_type {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.service_new_type > h3 {
  text-align: center;
  font-size: 40px;
  font-weight: 900;
  color: #0a66c2;
  margin: 0 auto 40px auto;
  text-transform: uppercase;
  background-color: white;
  padding: 8px 10px;
  border-radius: 5px;
  width: fit-content;
}

.service_type_bnt_box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.type_button {
  display: inline-block;
  width: 180px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 4px 10px;
  height: 60px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 50px;
  transition: all 0.4s ease-in-out;
  background-color: #39414d;
}
.type_button:hover {
  background-position: 100% 0;
}
.type_button:focus {
  outline: none;
}
.type_button.active {
  background-image: linear-gradient(
    to right,
    #25aae1,
    #4481eb,
    #04befe,
    #3f86ed
  );
  box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}

.attached_img {
  display: none;
}

.uploaded_file {
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: white;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 5px 0;
}
.uploaded_file img {
  width: 22px;
}
.uploaded_file_right {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.uploaded_file_right h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0px;
  word-break: break-all;
}
.uploaded_file_right a {
  color: red;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.attach_file_error {
  font-size: 14px;
  font-weight: 400;
  color: red;
  margin-top: 2px;
  margin-bottom: 0px;
  display: none;
}

.attached_img h3 {
  margin-top: 4px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}

.attached_img > img {
  width: 200px;
  margin: 4px;
}

.project_attach {
  display: flex;
  align-items: start;
  justify-content: end;
  gap: 10px;
  position: relative;
}

.pro_details_info {
  position: absolute;
  top: -110px;
  right: 0;
  max-width: 220px;
  width: 98%;
  padding: 10px;
  border-radius: 5px;
  background-color: white;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  display: none;
}
.pro_details_info p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

.project_attach label {
  background-color: #339dfa;
  padding: 6px 10px;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
}

.attach_pdf {
  background-color: #339dfa;
  padding: 6px 10px;
  color: white !important;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  visibility: hidden;
  position: relative;
}
.delete_pdf {
  position: absolute;
  top: -9px;
  right: -7px;
  background: red;
  border-radius: 50%;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.edit_form {
  color: white;
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  display: none;
}

.project_attach button {
  display: inline-block;
  margin-top: 10px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  background-color: tomato;
  padding: 7px 8px;
  border-radius: 5px;
  color: white;
}

.tooltip-inner {
  padding: 12px 15px !important;
  color: #000 !important;
  background-color: white !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #fff !important;
}
.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before,
.bs-tooltip-start .tooltip-arrow::before {
  border-left-color: #fff !important;
}

.moreInfo {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100vh;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.54);
  z-index: 99;
}

.moreInfo_in {
  background-color: white;
  padding: 30px 20px;
  border-radius: 5px;
  max-width: 800px;
  width: 95%;
  position: relative;
  max-height: 90vh;
  overflow-y: scroll;
}

.more_info_title {
  margin-top: 5px !important;
  margin-bottom: 0px !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}

.moreInfo_in h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #339dfa;
}
.moreInfoAdd_btn {
  background-color: #339dfa;
  color: white;
  display: block;
  border: none;
  height: 50px;
  width: 100%;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
}

.closeMoreInfo {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #999 !important;
  font-size: 22px;
}

@media (max-width: 425px) {
  .service_new_type {
    width: 95%;
  }
  .service_new_type > h3 {
    font-size: 30px;
  }
  .type_button {
    width: 130px;
    font-size: 15px;
  }
}

@media (min-width: 426px) and (max-width: 599px) {
  .service_new_type {
    width: 90%;
  }
  .type_button {
    width: 160px;
    font-size: 18px;
    height: 55px;
  }
  .service_new_type > h3 {
    font-size: 30px;
  }
}

@media (min-width: 600px) and (max-width: 991px) {
  .service_new_type {
    width: 90%;
  }
  .service_new_type > h3 {
    font-size: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .service_new_type {
    width: 80%;
  }

  .service_new_type > h3 {
    font-size: 35px;
  }
}

/*----- /service new  page -----*/

/*----- service single page -----*/
.service_single_banner {
  height: 65vh;
  position: relative;
}
.service_single_banner .owl-carousel .item img {
  height: 65vh;
}
.service_single_banner .owl-carousel .owl-dots {
  display: none;
}
.service_single_title {
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service_single_title h2 {
  font-size: 35px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  letter-spacing: 2px;
  margin-top: 30px;
}
.service_desc_single {
  padding: 60px 0;
}
.service_desc_single_in h2 {
  font-size: 35px;
  font-weight: 700;
  color: #339dfa;
  margin-top: 0px;
  margin-bottom: 20px;
}
.service_desc_single_in p {
  margin: 12px 0;
  font-size: 18px;
  font-weight: 400;
}

.service_desc_single_in ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.service_desc_single_in ul li {
  margin: 15px 0;
  font-size: 17px;
  font-weight: 500;
}

.service_desc_single_in ul li i {
  font-size: 15px;
  margin-right: 10px;
}
/*----- /service single page -----*/

/* terms agreement */
.terms_agreement {
  display: flex;
  gap: 5px;
  cursor: pointer;
  margin-bottom: 10px;
}
.terms_agreement input {
  height: 16px;
  width: 16px;
  accent-color: #0a66c2;
}

.terms_agreement span {
  font-size: 16px;
  line-height: normal;
}
