@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

h1 {
  font-size: 48px;
  margin-bottom: 0;
}

h2 {
  font-size: 36px;
  margin-bottom: 0;
}

h3 {
  font-size: 28px;
  margin-bottom: 0;
}

h4 {
  font-size: 22px;
  margin-bottom: 0;
}

h5 {
  font-size: 18px;
  margin-bottom: 0;
}

h6 {
  font-size: 16px;
  margin-bottom: 0;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  font-size: 16px;
  text-decoration: none;
  list-style: none;
}

p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 28px;
  color: #676767;
  font-weight: 300;
}

a {
  font-size: 15px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  color: #161616;
  font-weight: 400;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
a:hover {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  color: #064A9F;
}

.btn-close {
  filter: invert(99%) sepia(11%) saturate(762%) hue-rotate(223deg) brightness(110%) contrast(100%);
  opacity: 1;
}
.btn-close:focus {
  border: none;
  box-shadow: none;
}

form .form-group {
  margin-bottom: 20px;
}
form .form-group .form-control {
  margin-bottom: 0;
  border-radius: 0;
}
form .form-group .form-control:focus {
  box-shadow: none;
}

/* Remove default focus outline on all buttons */
/* General Button Reset */
.btn:focus {
  box-shadow: none;
  outline: none;
}

/* Primary Button – High Contrast Blue */
.primary_btn {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff; /* White text for high contrast */
  background: linear-gradient(135deg, #3B82F6, #1D4ED8); /* Gradient from light to deep blue */
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Primary Button Hover */
.primary_btn:hover {
  background: linear-gradient(135deg, #1E3A8A, #2563EB); /* Darker gradient to keep text readable */
  transform: translateY(-2px);
}

/* Secondary Button – High Contrast Outline */
.secondary_btn {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  color: #fffff; /* Deep blue text for high contrast */
  background-color: #F9FAFB; /* Very light background for contrast */
  border: 2px solid #3B82F6;
  padding: 10px 20px;
  border-radius: 8px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Secondary Button Hover */
.secondary_btn:hover {
  background-color: #1D4ED8; /* Deep blue background for better contrast */
  color: #fffff; /* White text on deep blue */
  border-color: #1D4ED8; /* Matching border color */
  transform: translateY(-2px);
}

.All_main_Headings {
  margin-bottom: 40px;
}
.All_main_Headings .sub_heading {
  font-weight: 500;
  color: #A4D8FD;
  margin-bottom: 6px;
}
.All_main_Headings .main_heading {
  font-weight: 700;
  position: relative;
  line-height: 38px;
}
.All_main_Headings .main_heading::after {
  position: absolute;
  content: "";
  width: 45px;
  height: 4px;
  bottom: -8px;
  left: 0;
  border-bottom: 4px solid #A4D8FD;
  border-radius: 30px;
}

.All_main_Headings_center {
  text-align: center;
}
.All_main_Headings_center .main_heading::after {
  transform: translate(-50%, -50%);
  left: 50%;
}

.our_services_slider, .our_team_slider, .testimonial_slider, .all_blogs_slider, .slick-track, .slick-slider .slick-list {
  direction: ltr;
}

.slick-initialized {
  overflow: show;
}

.slick-slide img {
  width: 100%;
}

/* Top Header Styling */
.top_header {
  padding: 3px 0; /* Reduced padding for a more compact look */
  background-color: #f0f4f8; /* Light grayish background for a softer feel */
}

.top_header .top_header_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #34495E; /* Soft dark gray color for text */
}

.top_header .top_header_contents .Top_contents_left img {
  width: 130px; /* Smaller logo size */
  height: auto;
  transition: transform 0.3s ease;
}

.top_header .top_header_contents .Top_contents_left img:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

.top_header .top_header_contents .Top_contents_right ul {
  display: flex;
  gap: 20px; /* Reduced gap for a more compact layout */
}

.top_header .top_header_contents .Top_contents_right ul li a {
  display: flex;
  align-items: center;
  gap: 10px; /* Reduced space between icon and text */
  color: #7F8C8D; /* Lighter gray text */
  font-weight: 400; /* Lighter font weight */
  font-size: 14px; /* Smaller text size */
  text-transform: capitalize;
  transition: color 0.3s ease, transform 0.3s ease;
}

.top_header .top_header_contents .Top_contents_right ul li a:hover {
  color: #3498DB; /* Soft blue on hover */
  transform: translateY(-1px); /* Slight lift effect */
}

.top_header .top_header_contents .Top_contents_right ul li a img {
  width: 35px; /* Smaller icons */
  height: auto;
  transition: transform 0.3s ease;
}

.top_header .top_header_contents .Top_contents_right ul li a img:hover {
  transform: scale(1.05); /* Slight zoom effect on icon hover */
}

.top_header .top_header_contents .Top_contents_right ul li a .connect_us h6 {
  font-weight: 600;
  margin-bottom: 4px; /* Reduced margin */
  font-size: 16px; /* Smaller font size for the text */
  transition: color 0.3s ease;
}

.top_header .top_header_contents .Top_contents_right ul li a:hover .connect_us h6 {
  color: #3498DB; /* Blue color for the heading on hover */
}

/* Header Styling */
header {
  background-color: #064A9F; /* Lighter background color for a soft look */
}

header .navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

header .navbar .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

header .navbar .navbar-brand img {
  width: 35px;
  transition: transform 0.3s ease;
}

header .navbar .navbar-brand img:hover {
  transform: scale(1.05);
}

header .navbar .navbar-nav {
  margin-right: auto;
}

header .navbar .navbar-nav .nav-item {
  margin-left: 15px;
}

header .navbar .navbar-nav .nav-item .nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  transition: color 0.3s ease;
}

/* Hover and Active Underline Animation */
header .navbar .navbar-nav .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #3498db;
  transition: width 0.3s ease;
}

header .navbar .navbar-nav .nav-item .nav-link:hover,
header .navbar .navbar-nav .nav-item .nav-link.active {
  color: #3498db;
}

header .navbar .navbar-nav .nav-item .nav-link:hover::after,
header .navbar .navbar-nav .nav-item .nav-link.active::after {
  width: 100%;
}

/* Right-side content */
header .navbar .navbar_right_contents {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

header .navbar .navbar_right_contents .language_selection {
  display: flex;
  background-color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

header .navbar .navbar_right_contents .language_selection:hover {
  background-color: #f0f5f9;
}

header .navbar .navbar_right_contents .language_selection img {
  width: 28px;
  margin-right: 5px;
}

header .navbar .navbar_right_contents .language_selection .form-select {
  background-color: transparent;
  border: 0;
  width: 70px;
  font-size: 12px;
  color: #444;
  padding: 5px;
}

header .navbar .navbar_right_contents .language_selection .form-select:focus {
  box-shadow: none;
  border-color: transparent;
}

header .navbar .navbar_right_contents .primary_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3498db;
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

header .navbar .navbar_right_contents .primary_btn:hover {
  background-color: #2980b9;
  transform: translateY(-1px);
}
/* Sticky Header */
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #064A9F; /* Matching soft background */
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1); /* Softer shadow for modern look */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Close Button in Offcanvas */
header .offcanvas .btn-close {
  filter: invert(25%) sepia(50%) saturate(500%) hue-rotate(200deg) brightness(105%) contrast(95%);
  opacity: 1;
  transition: filter 0.3s ease;
}

/* Offcanvas Close Button */
header .offcanvas .btn-close {
  background-color: transparent;
  color: #333; /* Dark color for visibility */
  opacity: 1;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

/* Hover Effect */
header .offcanvas .btn-close:hover {
  color: #e74c3c; /* Eye-catching red on hover */
}

footer {
  background-color: #064A9F;
  font-family: 'Inter', sans-serif;
  color: #fff;
  font-size: 14px;
}

footer .footer_top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

footer .footer_top .footer_top_left h5 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

footer .footer_top .footer_top_left p {
  color: #f1f1f1;
  max-width: 400px;
}

footer .footer_top .footer_top_right form {
  background-color: #fff;
  display: flex;
  padding: 5px;
  border-radius: 6px;
  overflow: hidden;
}

footer .footer_top .footer_top_right form .form-group {
  margin: 0;
}

footer .footer_top .footer_top_right form .form-control {
  border: none;
  width: 240px;
  padding: 10px;
  font-size: 14px;
}

footer .footer_top .footer_top_right form .primary_btn {
  background-color: #064A9F;
  color: #fff;
  padding: 0 16px;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: none;
}

footer .footer_top .footer_top_right form .primary_btn:hover {
  background-color: #04397A;
}

footer .footer_center {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 0;
  gap: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

footer .footer_center h6 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

footer .footer_center ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer_center .quick_links,
footer .footer_center .services,
footer .footer_center .contacts {
  flex: 1 1 30%;
  min-width: 250px;
}

footer .footer_center ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 20px;
}

footer .footer_center ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("../images/svg/arrow-double.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

footer .footer_center ul li a {
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s;
}

footer .footer_center ul li a:hover {
  color: #A4D8FD;
}

footer .contacts ul li a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

footer .contacts ul li a svg {
  width: 18px;
  height: 18px;
  fill: #A4D8FD;
  margin-top: 2px;
}

footer .contacts ul li a p {
  margin: 0;
  color: #fff;
}

footer .contacts ul li a:hover p {
  color: #A4D8FD;
}

footer .contacts .social_media_icons ul {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

footer .contacts .social_media_icons ul li a i {
  color: #E5E5E5;
  font-size: 18px;
  transition: color 0.3s ease;
}

footer .contacts .social_media_icons ul li a:hover i {
  color: #A4D8FD;
}

footer .footer_bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 0;
}

footer .footer_bottom p,
footer .footer_bottom a {
  color: #fff;
  font-size: 13px;
  margin: 0;
}

footer .footer_bottom a:hover {
  color: #A4D8FD;
}

footer .footer_bottom ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social_contact_icon_section {
  position: fixed;
  bottom: 30%;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social_contact_icon_section ul li {
  width: 45px;
  height: 45px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.social_contact_icon_section ul li:hover {
  transform: scale(1.1);
}

@media (max-width: 767px) {
  .footer_top,
  .footer_center,
  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer_center > div {
    width: 100%;
    margin-bottom: 30px;
  }

  .social_contact_icon_section {
    bottom: 10%;
    right: 10px;
    width: auto;
  }

  .social_contact_icon_section ul li {
    width: 40px;
    height: 40px;
  }
}
.banner {
  position: relative;
}
.banner::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-image: linear-gradient(to right, rgb(14, 47, 87), rgba(6, 74, 159, 0));
}
.banner .carousel_content {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
.banner .carousel_content .caption h1 {
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
}
.banner .carousel_content .caption h1 span {
  font-weight: 700;
}
.banner .carousel_content .caption p {
  color: #fff;
  margin-bottom: 30px;
}
.banner .carousel_content .caption .btn_group {
  display: flex;
  gap: 20px;
}

.messageUs_Home {
  margin-top: -50px;
}

.Why_ChooseUs {
  padding: 50px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.Why_ChooseUs .Why_ChooseUs_left {
  flex: 1 1 50%;
  position: relative;
  padding: 20px;
}

.Why_ChooseUs .Why_ChooseUs_left .img1 {
  width: 70%;
}

.Why_ChooseUs .Why_ChooseUs_left .img1 img {
  width: 100%;
  border-radius: 10px;
}

.Why_ChooseUs .Why_ChooseUs_left .img2 {
  width: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-10%, -50%);
  background-color: #A4D8FD;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.Why_ChooseUs .Why_ChooseUs_left .img2 img {
  width: 100%;
  border-radius: 10px;
}

.Why_ChooseUs .Why_ChooseUs_right {
  flex: 1 1 50%;
  padding: 20px;
}

.Why_ChooseUs .Why_ChooseUs_right p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .Why_ChooseUs {
    flex-direction: column;
    text-align: center;
  }

  .Why_ChooseUs .Why_ChooseUs_left,
  .Why_ChooseUs .Why_ChooseUs_right {
    flex: 1 1 100%;
    padding: 0 20px;
  }

  .Why_ChooseUs .Why_ChooseUs_left .img1 {
    margin: 0 auto;
  }

  .Why_ChooseUs .Why_ChooseUs_left .img2 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -30px auto 0 auto;
  }
}

.key_features {
  background-color: #064A9F;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.key_features::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/balls.webp");
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.08;
  z-index: 1;
}

.key_features .all_key_box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.key_features .all_key_box .key_box {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.key_features .all_key_box .key_box:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.key_features .all_key_box .key_box h2 {
  color: #fff;
  font-weight: 900;
  font-size: 32px;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.key_features .all_key_box .key_box h2 span {
  font-weight: 400;
  display: block;
  font-size: 16px;
  margin-top: 5px;
}

.key_features .all_key_box .key_box h5 {
  color: #e0e0e0;
  font-weight: 400;
  font-size: 15px;
  transition: color 0.3s ease;
}

.key_features .all_key_box .key_box:hover h2,
.key_features .all_key_box .key_box:hover h5 {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .key_features {
    padding: 40px 0;
  }

  .key_features .all_key_box {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .key_features .all_key_box {
    grid-template-columns: 1fr;
  }
}

.our_services {
  padding: 60px 0;
  background-color: rgba(242, 248, 251, 0.9);
  position: relative;
  overflow: hidden;
}

.our_services::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/bgservice.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  opacity: 0.08;
}

.our_services .our_services_slider {
  padding-bottom: 40px;
}

.our_services .our_services_slider .service_box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 15px;
  height: 100%;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.our_services .our_services_slider .service_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
}

.our_services .our_services_slider .service_box .img_top {
  margin-bottom: 20px;
}

.our_services .our_services_slider .service_box .img_top img {
  border-radius: 20px;
  height: 140px;
  width: 100%;
  object-fit: cover;
}

.our_services .our_services_slider .service_box .card_body p {
  font-weight: 400;
  margin-bottom: 15px;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.our_services .our_services_slider .service_box .card_body .list_box {
  background-color: #064A9F;
  border-radius: 15px;
  padding: 18px;
  transition: background 0.3s ease;
}

.our_services .our_services_slider .service_box:hover .list_box {
  background-color: #053a7e;
}

.our_services .our_services_slider .service_box .card_body .list_box h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.our_services .our_services_slider .service_box .card_body .list_box p {
  color: #e0ecf5;
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.our_services .our_services_slider .service_box .card_body .list_box h6 {
  color: #A4D8FD;
  font-weight: 600;
  font-size: 14px;
}

/* Slick carousel styles */
.our_services .our_services_slider .slick-list {
  margin: 0 -10px;
}

.our_services .our_services_slider .slick-slide {
  margin: 0 10px;
  height: inherit !important;
  display: flex !important;
}

.our_services .our_services_slider .slick-track {
  display: flex;
}

.our_services .our_services_slider .slick-dots {
  bottom: 0;
}

.our_services .our_services_slider .slick-dots li button:before {
  background-color: #064A9F;
  opacity: 1;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

.our_services .our_services_slider .slick-dots li.slick-active button:before {
  background-color: #064A9F;
  width: 50px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.our_services .our_services_slider .slick-dots li.slick-active {
  width: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .our_services {
    padding: 40px 0;
  }

  .our_services .our_services_slider .service_box {
    padding: 10px;
  }

  .our_services .our_services_slider .service_box .card_body .list_box h4 {
    font-size: 18px;
  }
}

.our_team {
  padding: 50px 0;
  position: relative;
}
.our_team::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  bottom: 0;
  right: 0;
  background-image: url("../images/teamBefore.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
  background-position: bottom right;
}
.our_team .our_team_left p {
  margin-bottom: 15px;
}
.our_team .our_team_right .our_team_slider {
  padding: 30px 0;
}
.our_team .our_team_right .our_team_slider .team_box {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  padding: 30px;
  border-radius: 30px;
  background-color: #fff;
  height: 100%;
}
.our_team .our_team_right .our_team_slider .team_box .profile .card_top {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 100%;
  border: 2px solid #A4D8FD;
  padding: 6px;
  position: relative;
}
.our_team .our_team_right .our_team_slider .team_box .profile .card_top::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  top: 0;
  left: -5px;
  background-color: #fff;
  z-index: 0;
}
.our_team .our_team_right .our_team_slider .team_box .profile .card_top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}
.our_team .our_team_right .our_team_slider .team_box .profile .naming {
  text-align: center;
  margin-top: 12px;
}
.our_team .our_team_right .our_team_slider .team_box .profile .naming h6 {
  font-weight: 700;
  color: #064A9F;
}
.our_team .our_team_right .our_team_slider .team_box .profile .naming p {
  font-weight: 400;
  color: #A4D8FD;
}
.our_team .our_team_right .our_team_slider .team_box .card_body ul {
  margin: 30px 0;
  height: 82px;
  overflow-y: scroll;
  line-height: 24px;
  padding-right: 10px;
}
.our_team .our_team_right .our_team_slider .team_box .card_body ul li {
  color: #676767;
  padding-left: 20px;
  font-weight: 400;
  position: relative;
  margin-bottom: 5px;
  font-size: 15px;
}
.our_team .our_team_right .our_team_slider .team_box .card_body ul li::before {
  position: absolute;
  content: "";
  background-color: #D9D9D9;
  width: 10px;
  height: 10px;
  top: 6px;
  left: 0;
  border-radius: 100%;
}
.our_team .our_team_right .our_team_slider .team_box .card_body ul li:last-child {
  margin-bottom: 0;
}
.our_team .our_team_right .our_team_slider .team_box .card_body ul::-webkit-scrollbar {
  width: 6px;
}
.our_team .our_team_right .our_team_slider .team_box .card_body ul::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.our_team .our_team_right .our_team_slider .team_box .card_body ul::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px #A4D8FD;
  background-color: #A4D8FD;
  opacity: 1;
}
.our_team .our_team_right .our_team_slider .team_box a.mail_btn {
  background-color: #A1AABD;
  color: #fff;
  border-radius: 5px;
  padding: 4px 15px;
  font-size: 14px;
  margin: auto;
  display: block;
  width: fit-content;
}
.our_team .our_team_right .our_team_slider .team_box:hover {
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.25);
}
.our_team .our_team_right .our_team_slider .slick-list {
  padding: 30px 0;
  margin: 0 -20px;
}
.our_team .our_team_right .our_team_slider .slick-slide {
  margin: 0 30px;
}
.our_team .our_team_right .our_team_slider .slick-dots {
  bottom: 0;
}
.our_team .our_team_right .our_team_slider .slick-dots li button:before {
  background-color: #064A9F;
  opacity: 1;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
}
.our_team .our_team_right .our_team_slider .slick-dots li.slick-active button:before {
  background-color: #064A9F;
  width: 60px;
  border-radius: 30px;
}
.our_team .our_team_right .our_team_slider .slick-dots li.slick-active {
  width: 60px;
}
.our_team .our_team_right .our_team_slider .slick-track {
  display: flex;
}
.our_team .our_team_right .our_team_slider .slick-slide {
  height: inherit !important;
  display: flex !important;
}
.our_team .our_team_right .our_team_slider .slick-slide div {
  width: 100%;
}

.testimonials {
  margin: 50px 0;
}
.testimonials .testimonailbefore {
  position: relative;
}
.testimonials .testimonailbefore::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/world-map.png");
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonials .testimonailbefore .testimonial_slider {
  padding-bottom: 20px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 15px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater .test_small_wrapper {
  display: flex;
  align-items: center;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater .test_small_wrapper:last-child {
  align-items: end;
  margin-bottom: 5px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater .rater_img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 10px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater .rater_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater .rater_name h6 {
  font-weight: 700;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater .rater_name p {
  font-weight: 400;
  color: #000;
  line-height: 20px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater .icon_from {
  width: 20px;
  margin-left: 15px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rated_contents h6 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rated_contents p {
  height: 74px;
  overflow-y: scroll;
  line-height: 24px;
  padding-right: 10px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rated_contents p::-webkit-scrollbar {
  width: 6px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rated_contents p::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.testimonials .testimonailbefore .testimonial_slider .testimonial_box .rated_contents p::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px #A4D8FD;
  background-color: #A4D8FD;
  opacity: 1;
}
.testimonials .testimonailbefore .testimonial_slider .slick-list {
  padding-bottom: 20px;
  margin: 0 12%;
}
.testimonials .testimonailbefore .testimonial_slider .slick-slide {
  margin: 0 10px;
}
.testimonials .testimonailbefore .testimonial_slider .slick-arrow {
  position: absolute;
  content: "";
  z-index: 9;
  width: 35px;
  height: 35px;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.testimonials .testimonailbefore .testimonial_slider .slick-arrow::before {
  content: "";
}
.testimonials .testimonailbefore .testimonial_slider .slick-prev {
  left: inherit;
  top: inherit;
  bottom: 30%;
  left: 2%;
  right: inherit;
  background-size: contain;
  background-image: url("../images/svg/Arrow-Left.svg");
}
.testimonials .testimonailbefore .testimonial_slider .slick-next {
  top: inherit;
  bottom: 30%;
  right: 0;
  left: inherit;
  background-size: contain;
  background-image: url("../images/svg/Arrow-Right.svg");
}

.blogs {
  padding: 60px 0;
  position: relative;
}
.blogs::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  background-color: #F2F8FB;
  top: 0;
  left: 0;
  z-index: -1;
}
.blogs::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 70%;
  top: 0;
  left: 0;
  background-image: url("../images/blog_before.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.blogs .all_blogs_slider {
  margin-bottom: 30px;
  padding-bottom: 10px;
}
.blogs .all_blogs_slider .blog_card {
  border: 1px solid #E5E5E5;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  height: 100%;
}
.blogs .all_blogs_slider .blog_card .card_top img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.blogs .all_blogs_slider .blog_card .card_body {
  padding: 1.5rem 1rem;
}
.blogs .all_blogs_slider .blog_card .card_body h6 {
  color: rgb(108, 117, 125);
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 5px;
}
.blogs .all_blogs_slider .blog_card .card_body h4 {
  color: rgb(6, 74, 159);
  font-weight: 700;
  margin-bottom: 12px;
}
.blogs .all_blogs_slider .blog_card .card_body p {
  color: rgb(108, 117, 125);
  font-weight: 400;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blogs .all_blogs_slider .blog_card .card_body a {
  color: #064A9F;
  font-weight: 400;
  font-size: 16px;
}
.blogs .all_blogs_slider .blog_card .card_body a:hover {
  color: #A4D8FD;
}
.blogs .all_blogs_slider .slick-list {
  margin: 0 -10px;
}
.blogs .all_blogs_slider .slick-slide {
  margin: 0 10px;
}
.blogs .all_blogs_slider .slick-track {
  display: flex;
}
.blogs .all_blogs_slider .slick-slide {
  height: inherit !important;
  display: flex !important;
}

.inner_banner {
  position: relative;
}
.inner_banner::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 74, 159, 0.7);
  z-index: 1;
}
.inner_banner .background_img img {
  width: 100%;
  height: auto;
}
.inner_banner .caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.inner_banner .caption h1 {
  color: #fff;
  font-weight: 400;
  text-align: center;
}
.inner_banner .caption .breadcrumb {
  justify-content: center;
}
.inner_banner .caption .breadcrumb .breadcrumb-item {
  color: #A4D8FD;
}
.inner_banner .caption .breadcrumb .breadcrumb-item a {
  color: #A4D8FD;
}
.inner_banner .caption .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "";
  background-image: url("../images/svg/noun-chevron.svg");
  margin-top: 8px;
  margin-right: 6px;
  width: 10px;
  height: 10px;
  background-repeat: no-repeat;
  background-size: contain;
}

.Why_ChooseUs_about .Why_ChooseUs_left {
  position: relative;
}
.Why_ChooseUs_about .Why_ChooseUs_left .maid_service {
  position: absolute;
  bottom: -16px;
  left: 20%;
  background-color: #064A9F;
  width: fit-content;
  padding: 30px 40px;
  border-radius: 15px;
}
.Why_ChooseUs_about .Why_ChooseUs_left .maid_service p {
  color: #fff;
  font-weight: 400;
}
.Why_ChooseUs_about .Why_ChooseUs_left .maid_service h6 {
  color: #fff;
  font-weight: 900;
}
.Why_ChooseUs_about .Why_ChooseUs_left .img2 {
  margin-top: -44%;
}
.Why_ChooseUs_about .Why_ChooseUs_right {
  display: flex;
  align-items: center;
}
.Why_ChooseUs_about .Why_ChooseUs_center {
  margin-top: 40px;
}
.Why_ChooseUs_about .Why_ChooseUs_center p {
  margin-top: 20px;
}

.more_about_us {
  background-color: #F2F8FB;
  padding: 50px 0;
  position: relative;
}
.more_about_us::before {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-image: url("../images/vision_mission_before.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom;
  z-index: 0;
}
.more_about_us .more_about_us_left {
  z-index: 1;
  position: relative;
}
.more_about_us .more_about_us_left p {
  margin-bottom: 30px;
}
.more_about_us .more_about_us_right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
  position: relative;
  z-index: 2;
}
.more_about_us .more_about_us_right .our_vision_mission_card {
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 15px;
  padding: 40px;
}
.more_about_us .more_about_us_right .our_vision_mission_card .card_top {
  position: relative;
  border: 2px solid #A4D8FD;
  width: 140px;
  height: 140px;
  display: block;
  margin: auto;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  margin-bottom: 20px;
}
.more_about_us .more_about_us_right .our_vision_mission_card .card_top img {
  display: block;
  margin: auto;
  width: 100%;
}
.more_about_us .more_about_us_right .our_vision_mission_card .card_top::before {
  position: absolute;
  content: "";
  top: 0;
  left: -5px;
  width: 25%;
  height: 100%;
  background-color: #fff;
}
.more_about_us .more_about_us_right .our_vision_mission_card .card_body {
  text-align: center;
  margin-bottom: 40px;
}
.more_about_us .more_about_us_right .our_vision_mission_card .card_body h5 {
  font-weight: 700;
  color: #064A9F;
  margin-bottom: 5px;
}
.more_about_us .more_about_us_right .our_vision_mission_card .card_body h6 {
  font-weight: 400;
  color: #A4D8FD;
  font-size: 14px;
  margin-bottom: 15px;
}
.more_about_us .more_about_us_right .our_vision_mission_card .card_body p {
  text-align: start;
}

.maids {
  padding: 60px 0;
}
.maids .sub_head {
  text-align: center;
}
.maids .maid_list_contents {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: flex-start;
}
.maids .maid_list_contents .sticky-lg-top {
  top: 150px;
  z-index: 99;
}
.maids .maid_list_contents .maid_list_contents_left {
  width: 25%;
  background-color: #F2F8FB;
  padding: 40px 20px;
  border: 1px solid #E5E5E5;
  border-radius: 15px;
}
.maids .maid_list_contents .maid_list_contents_left h5 {
  margin-bottom: 25px;
  color: #064A9F;
  font-weight: 700;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item {
  margin-bottom: 20px;
  background-color: transparent;
  border: 0;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-header {
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 15px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16);
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-header .accordion-button {
  border-radius: 15px;
  color: rgb(103, 103, 103);
  box-shadow: none;
  border-color: transparent;
  font-weight: 400;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: rgb(73, 80, 87);
  box-shadow: none;
  border-color: transparent;
  background-color: #fff;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  background-image: url("../images/svg/accordionArrow.svg");
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-header .accordion-button::after {
  width: 2rem;
  height: 2rem;
  background-size: 2rem;
  background-image: url("../images/svg/accordionArrow.svg");
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.16);
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .form-check {
  padding-left: 0;
  margin-bottom: 10px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .form-check .form-check-label {
  flex-wrap: wrap;
  width: 80%;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .form-check .form-check-input {
  float: inherit;
  margin-right: 0;
  width: 22px;
  height: 22px;
  margin-top: 0;
  margin-left: 0em;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .form-check .form-check-input:focus {
  box-shadow: none;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .form-check .form-check-input:checked {
  background-color: #064A9F;
  border-color: #064A9F;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body ul li {
  font-weight: 400;
  color: #676767;
  border-radius: 30px;
  padding: 5px 0 5px 15px;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body ul li:hover {
  background-color: #ECF0F5;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .overflow_contents {
  height: 100px;
  overflow-y: scroll;
  padding-right: 15px;
  padding-top: 2px;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .overflow_contents::-webkit-scrollbar {
  width: 6px;
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .overflow_contents::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgb(229, 246, 255);
  border-radius: 10px;
  background-color: rgb(229, 246, 255);
}
.maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .overflow_contents::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px #A4D8FD;
  background-color: #A4D8FD;
  opacity: 1;
}
.maids .maid_list_contents .maid_list_contents_right {
  width: 75%;
  background-color: #F2F8FB;
  padding: 40px 20px;
  border: 1px solid #E5E5E5;
  border-radius: 15px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 20px;
  scroll-margin-block-start: 150px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .img_box {
  position: relative;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .img_box .main_img {
  height: 200px;
  object-fit: cover;
  object-position: center;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .img_box img {
  width: 100%;
  border-radius: 15px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .img_box .video-btn {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: transparent;
  border: none;
  animation: animate 2s linear infinite;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    border-radius: 100%;
  }
  40% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    border-radius: 100%;
  }
  80% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    border-radius: 100%;
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    border-radius: 100%;
  }
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box {
  display: flex;
  align-items: center;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box h5 {
  color: #000;
  font-weight: 600;
  margin-bottom: 5px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box .ages {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box .ages p {
  font-weight: 400;
  color: #064A9F;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul li {
  margin-bottom: 8px;
  display: flex;
  gap: 5px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul li p {
  font-weight: 400;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul li p:first-child {
  color: #676767;
  line-height: 22px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul li p:last-child {
  color: #161616;
  line-height: 22px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul .skill_list {
  font-weight: 600;
  color: #064a9f;
  flex-direction: column;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul .skill_list p {
  font-weight: 600;
  text-transform: uppercase;
  color: #064a9f !important;
  line-height: 22px;
  font-size: 15px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul .skill_list ul li {
  font-size: 13px;
  line-height: 22px;
  color: #161616;
  margin-bottom: 3px;
  position: relative;
  padding-left: 15px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul .skill_list ul li::before {
  position: absolute;
  content: "";
  background-color: #d9d9d9;
  width: 5px;
  height: 5px;
  top: 8px;
  left: 0;
  border-radius: 100%;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .share_box {
  display: grid;
  grid-template-rows: 1fr 1fr;
  align-items: center;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .share_box .share a {
  display: flex;
  gap: 10px;
  align-items: center;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .share_box .share .dropdown-menu {
  background-color: #A4D8FD;
  min-width: 3rem;
  left: 50px;
  padding: 0;
  z-index: 2;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .share_box .share .dropdown-menu hr {
  margin: 0px 0;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .share_box .share .dropdown-menu li a {
  padding: 10px 0;
  justify-content: center;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .share_box .share img {
  width: 25px;
}
.maids .maid_list_contents .maid_list_contents_right .maid_box .share_box .share p {
  font-weight: 400;
}
.maids .maid_list_contents .maid_list_contents_right .loads {
  color: #064A9F;
  font-weight: 400;
}

.services_contents {
  padding: 60px 0;
}
.services_contents .service_contents_box {
  padding: 5%;
  padding-top: 1%;
  margin-bottom: 25px;
}
.services_contents .service_contents_box .left_content {
  padding-right: 10%;
  display: flex;
  align-items: center;
}
.services_contents .service_contents_box .left_content h3 {
  color: #064A9F;
  font-weight: 700;
  margin-bottom: 30px;
}
.services_contents .service_contents_box .right_content img {
  width: 96%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  margin-left: 2%;
}
.services_contents .service_contents_box .right_content .img_right {
  position: relative;
}
.services_contents .service_contents_box .right_content .img_right::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/service_before1.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.services_contents .service_contents_box .center_content {
  margin-top: 20px;
}
.services_contents .all_service_contents_boxes .service_contents_box {
  scroll-margin-block-start: 150px;
}
.services_contents .all_service_contents_boxes .service_contents_box:nth-child(odd) {
  background-color: #E5F6FF;
  border-radius: 5px;
}
.services_contents .all_service_contents_boxes .service_contents_box:nth-child(even) {
  flex-direction: row-reverse !important;
}
.services_contents .all_service_contents_boxes .service_contents_box:nth-child(even) .left_content {
  padding-left: 10%;
  padding-right: 0;
}
.services_contents .all_service_contents_boxes .service_contents_box:nth-child(even) .right_content .img_right::before {
  transform: scaleX(-1);
}

.blogs_services::before {
  display: none;
}
.blogs_services::after {
  display: none;
}

.why_choose_visa .Why_ChooseUs_right {
  display: flex;
  align-items: center;
}

.visa_contents_box {
  padding: 20px 0 60px 0;
}
.visa_contents_box .contents_align {
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: minmax(50px, auto);
  grid-column-gap: 15%;
  grid-row-gap: 50px;
}
.visa_contents_box .contents_align .visa_box {
  background-color: #064A9F;
  width: 100%;
  padding: 60px 30px;
  border-radius: 45px;
  position: relative;
}
.visa_contents_box .contents_align .visa_box .contents {
  position: relative;
  z-index: 2;
}
.visa_contents_box .contents_align .visa_box::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-image: url("../images/visa_before.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: initial;
  z-index: 0;
}
.visa_contents_box .contents_align .visa_box h5 {
  text-align: center;
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
}
.visa_contents_box .contents_align .visa_box h6 {
  text-align: center;
  margin-bottom: 40px;
  color: #A4D8FD;
  font-weight: 400;
}
.visa_contents_box .contents_align .visa_box ul {
  margin-bottom: 30px;
}
.visa_contents_box .contents_align .visa_box ul li {
  color: #D9D9D9;
  font-weight: 400;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.visa_contents_box .contents_align .visa_box ul li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #A4D8FD;
  border-radius: 100%;
}
.visa_contents_box .contents_align .visa_box p {
  color: #D9D9D9;
  font-weight: 400;
  position: relative;
  margin-bottom: 30px;
}
.visa_contents_box .contents_align .visa_box .primary_btn {
  background-color: #fff;
  color: #064A9F;
  margin: auto;
}
.visa_contents_box .contents_align .visa_box .primary_btn:hover {
  background-color: #064A9F;
  border-color: #fff;
  color: #fff;
}

.privacy_policy {
  padding: 60px 0;
}
.privacy_policy p {
  margin-bottom: 20px;
}
.privacy_policy h5 {
  margin-bottom: 15px;
  color: #064A9F;
  font-weight: 700;
}
.privacy_policy ul {
  margin-bottom: 20px;
}
.privacy_policy ul li {
  color: #6C757D;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}
.privacy_policy ul li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #A4D8FD;
  top: 8px;
  left: 10px;
  border-radius: 100%;
}

.enquiry_modal .modal-dialog .modal-content {
  border-radius: 1rem;
  border: 0;
}
.enquiry_modal .modal-dialog .modal-content .modal-header {
  background-color: #064A9F;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  border-bottom: 0;
}
.enquiry_modal .modal-dialog .modal-content .modal-header .modal-title {
  color: #fff;
}
.enquiry_modal .modal-dialog .modal-content .modal-body {
  padding: 2rem;
}
.enquiry_modal .modal-dialog .modal-content .modal-body form .form-group .form-control:focus, .enquiry_modal .modal-dialog .modal-content .modal-body form .form-group .form-select:focus {
  box-shadow: none;
  border-color: #064A9F;
}
.enquiry_modal .modal-dialog .modal-content .modal-body .select2-container .select2-selection--single {
  height: 38px;
  padding: 0 0.75rem;
  color: #7d7c7c;
  border-radius: 0;
  width: 100%;
}
.enquiry_modal .modal-dialog .modal-content .modal-body .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 33px;
  color: #7d7c7c;
}
.enquiry_modal .modal-dialog .modal-content .modal-body .select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
}
.enquiry_modal .modal-dialog .modal-content .modal-body .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
  position: absolute;
  top: 1px;
  right: 10px;
  width: 20px;
}

.blog_listing_section {
  padding: 60px 0;
  position: relative;
}
.blog_listing_section::after {
  position: absolute;
  content: "";
  width: 41%;
  height: 100%;
  top: 0;
  right: 0;
  background: url("../images/blog_list.png") top right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.blog_listing_section .primary_btn {
  border: 2px solid #064A9F;
}
.blog_listing_section .primary_btn:hover {
  background: transparent;
  color: #064A9F;
}
.blog_listing_section .blog_card {
  margin-bottom: 30px;
  border: 1px solid #E5E5E5;
  background-color: #fff;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.blog_listing_section .blog_card .card_top img {
  width: 100%;
  border-radius: 10px;
}
.blog_listing_section .blog_card .card_body {
  padding: 1.5rem 1rem;
}
.blog_listing_section .blog_card .card_body h6 {
  color: rgb(108, 117, 125);
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 5px;
}
.blog_listing_section .blog_card .card_body h4 {
  color: rgb(6, 74, 159);
  font-weight: 700;
  margin-bottom: 12px;
}
.blog_listing_section .blog_card .card_body p {
  color: rgb(108, 117, 125);
  font-weight: 400;
  margin-bottom: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.blog_listing_section .blog_card .card_body a {
  color: #064A9F;
  font-weight: 400;
  font-size: 16px;
}
.blog_listing_section .blog_card .card_body a:hover {
  color: #A4D8FD;
}

.blog_destails_section {
  padding: 60px 0;
  position: relative;
}
.blog_destails_section::after {
  position: absolute;
  content: "";
  width: 41%;
  height: 100%;
  top: 0;
  right: 0;
  background: url("../images/blog_list.png") top right;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.blog_destails_section .blog_details_left .All_main_Headings h6 {
  font-weight: 500;
  color: #A4D8FD;
  margin-bottom: 6px;
}
.blog_destails_section .blog_details_left h6 {
  color: rgb(108, 117, 125);
  font-size: 12px;
  margin-bottom: 5px;
  display: flex;
  font-weight: 700;
  margin-bottom: 30px;
}
.blog_destails_section .blog_details_left h6 span {
  margin-left: 10px;
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
}
.blog_destails_section .blog_details_left h6 span::before {
  margin-right: 10px;
  width: 15px;
  height: 1px;
  background: #C4C4C4;
  content: "";
  display: inline-block;
  position: relative;
}
.blog_destails_section .blog_details_left p {
  color: rgb(108, 117, 125);
  font-weight: 400;
  margin-bottom: 20px;
}
.blog_destails_section .blog_details_left img {
  border-radius: 15px;
  width: 85%;
  margin-bottom: 40px;
}
.blog_destails_section .blog_details_left .video-area {
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  width: 85%;
}
.blog_destails_section .blog_details_left .video-area img {
  width: 100%;
  margin-bottom: 0;
}
.blog_destails_section .blog_details_left .video-area .video-btn {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 44px;
  border-radius: 20px;
  background: transparent;
  border: none;
  animation: animate 2s linear infinite;
  box-shadow: 0 0px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.blog_destails_section .blog_details_left .video-area .video-btn img {
  width: 100%;
  border-radius: 0px;
}
@keyframes animate {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  40% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    border-radius: 0px;
  }
  80% {
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
    border-radius: 0px;
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}
.blog_destails_section .blog_details_left .share_navigation {
  border-top: 1px solid #C4C4C4;
  margin-top: 50px;
  padding-top: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.blog_destails_section .blog_details_left .share_navigation .share a {
  color: #676767;
  font-size: 17px;
  margin-right: 10px;
}
.blog_destails_section .blog_details_left .share_navigation .share a:hover {
  color: #064A9F;
}
.blog_destails_section .blog_details_left .share_navigation .share a:last-child {
  margin-right: 0;
}
.blog_destails_section .blog_details_left .share_navigation .navigation {
  display: flex;
}
.blog_destails_section .blog_details_left .share_navigation .navigation .primary_btn {
  width: 130px;
  text-align: center;
  border: 2px solid #064A9F;
}
.blog_destails_section .blog_details_left .share_navigation .navigation .primary_btn:hover {
  background: transparent;
  color: #064A9F;
}
.blog_destails_section .blog_details_left .share_navigation .navigation .secondary_btn {
  margin-left: 15px;
  width: 130px;
  text-align: center;
  background: #A4D8FD;
  border: 2px solid #A4D8FD;
  color: #161616;
}
.blog_destails_section .blog_details_left .share_navigation .navigation .secondary_btn:hover {
  background: transparent;
  color: #A4D8FD;
}
.blog_destails_section .blog_list_wrapper {
  padding: 50px 40px;
  background: #064A9F;
  border-radius: 15px;
}
.blog_destails_section .blog_list_wrapper h4 {
  color: #fff;
  font-weight: 400;
}
.blog_destails_section .blog_list_wrapper ul {
  margin-top: 30px;
}
.blog_destails_section .blog_list_wrapper ul li {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 30px;
}
.blog_destails_section .blog_list_wrapper ul li img {
  border-radius: 10px;
  margin-bottom: 15px;
}
.blog_destails_section .blog_list_wrapper ul li h6 {
  color: rgb(108, 117, 125);
  font-weight: 400;
  font-size: 12px;
  margin-bottom: 5px;
  display: flex;
}
.blog_destails_section .blog_list_wrapper ul li h6 span {
  margin-left: 10px;
  position: relative;
  display: flex;
  align-items: center;
}
.blog_destails_section .blog_list_wrapper ul li h6 span::before {
  margin-right: 10px;
  width: 15px;
  height: 1px;
  background: #C4C4C4;
  content: "";
  display: inline-block;
  position: relative;
}
.blog_destails_section .blog_list_wrapper ul li h4 {
  color: #161616;
  font-weight: 400;
  margin-bottom: 12px;
}
.blog_destails_section .blog_list_wrapper ul li a {
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #064A9F;
  font-weight: 400;
  font-size: 16px;
}
.blog_destails_section .blog_list_wrapper ul li a:hover {
  color: #A4D8FD;
}
.blog_destails_section .blog_list_wrapper ul li:last-child {
  margin-bottom: 0px;
}
.blog_destails_section .sticky-lg-top-110 {
  z-index: 2;
}

input[type=number] {
  -moz-appearance: textfield;
}

.contact_share_info {
  padding: 60px 0 80px;
}
.contact_share_info .main_heading {
  width: 42%;
  margin: 0 auto;
}
.contact_share_info .info_list {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.contact_share_info .info_list li {
  width: 20%;
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 20px;
  padding: 20px 10px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  z-index: 99;
}
.contact_share_info .info_list li img {
  width: 40px;
  margin: 0 auto 20px;
}
.contact_share_info .info_list li p {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 6px;
  font-weight: 500;
}
.contact_share_info .info_list li p a {
  font-size: 14px;
  line-height: 28px;
  color: #676767;
  font-weight: 500;
}
.contact_share_info .info_list li p a:hover {
  color: #064A9F;
}
.contact_share_info .info_list li .primary_btn {
  width: 100%;
  padding: 15px;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  border-radius: 15px;
  margin: 0;
  margin-top: 20px;
}
.contact_share_info .info_list li:hover {
  box-shadow: 0 40px 20px -20px rgb(110, 148, 160);
}

.business_time {
  background: #A4D8FD;
  padding: 30px 0;
}
.business_time .hours_wrapper {
  display: flex;
}
.business_time .hours_wrapper h3 {
  color: #064A9F;
  font-weight: 400;
}
.business_time .hours_wrapper ul {
  margin-left: 40px;
}
.business_time .hours_wrapper ul li {
  font-size: 22px;
  color: #fff;
}
.business_time .hours_wrapper ul li span {
  margin-left: 25px;
  color: #064A9F;
  font-weight: 700;
}
.business_time .icons {
  display: flex;
  justify-content: flex-end;
}
.business_time .icons a {
  margin-right: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.business_time .icons a i {
  font-size: 25px;
  width: 35px;
  height: 35px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  box-shadow: none;
}
.business_time .icons a:hover i {
  transform: scale(1.5);
  background: #fff;
  color: #064A9F;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.message_section {
  background: #E5F6FF;
  padding: 60px 0;
}

.message_box {
  position: relative;
  z-index: 5;
  padding: 50px;
  background: #064A9F url(../images/form_vector-1.webp) no-repeat;
  background-position: right;
  border-radius: 20px;
}
.message_box h3 {
  color: #A4D8FD;
  font-weight: 700;
  margin-bottom: 40px;
}
.message_box label {
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.message_box .form-group {
  position: relative;
}
.message_box .form-group img {
  position: absolute;
  left: 15px;
  bottom: 10px;
  width: 15px;
}
.message_box .form-control {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #fff;
  font-weight: 300;
  color: #A1AABD;
  padding-left: 40px;
  font-size: 14px;
}
.message_box .form-control::placeholder {
  color: #A1AABD;
  opacity: 1;
}
.message_box .form-control:-ms-input-placeholder {
  color: #A1AABD;
}
.message_box .form-control::-ms-input-placeholder {
  color: #A1AABD;
}
.message_box .primary_btn {
  background: #fff;
  padding: 10px 40px;
  color: #064A9F;
  border: 2px solid #fff;
  font-size: 18px;
  height: 50px;
}
.message_box .primary_btn:hover {
  background: transparent;
  color: #fff;
}

.map_frame {
  margin-top: -180px;
  position: relative;
  z-index: 2;
}
.map_frame iframe {
  width: 100%;
  height: 600px;
  border: 0;
  outline: none;
  margin: 0;
  padding: 0;
}

.error_page {
  padding: 60px 0 130px;
  background: url(../images/404.png) center;
  background-size: cover;
}
.error_page .main_heading {
  width: 45%;
  margin: 0 auto;
}
.error_page p {
  text-align: center;
  margin-bottom: 80px;
}
.error_page .primary_btn {
  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 50px;
  border: 1px solid #064A9F;
}
.error_page .primary_btn:hover {
  background: transparent;
  color: #064A9F;
}

.siteInfo {
  padding: 60px 0;
}
.siteInfo .text_area h1 span, .siteInfo .text_area h2 span, .siteInfo .text_area h3 span, .siteInfo .text_area h4 span, .siteInfo .text_area h5 span, .siteInfo .text_area h6 span {
  font-weight: 700;
}
.siteInfo .text_area p {
  color: rgb(108, 117, 125);
  font-weight: 400;
  margin-bottom: 20px;
}
.siteInfo .text_area ul {
  margin-top: 20px;
  margin-left: 15px;
}
.siteInfo .text_area ul li {
  list-style: inherit;
  color: #676767;
  font-weight: 400;
  position: relative;
  padding-left: 15px;
  margin-bottom: 15px;
}
.siteInfo .text_area ul li span {
  color: #676767 !important;
}

@media (max-width: 991.99px) {
  .text_area h1 span, .text_area h2 span {
    font-size: 25px;
  }
  .text_area h3 span, .text_area h4 span, .text_area h5 span, .text_area h6 span {
    font-size: 18px;
  }
  .text_area p {
    font-size: 13px;
    line-height: 26px;
  }
  .text_area ul {
    margin-top: 20px;
    margin-left: 15px;
  }
  .text_area ul li {
    font-size: 13px;
    line-height: 26px;
  }
  .testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater {
    flex-direction: column;
  }
  .testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater .test_small_wrapper:last-child {
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .container_left {
    max-width: calc((100% - 1140px) / 2 + 1140px) !important;
    margin-left: 0;
    padding-left: 0;
  }
}
@media (min-width: 1400px) {
  .container_left {
    max-width: calc((100% - 1320px) / 2 + 1320px) !important;
  }
}
@media (max-width: 1399.98px) {
  .contact_share_info .info_list li {
    width: 25%;
  }
}
@media (max-width: 1199.98px) {
  header .navbar .mobile_right_section .navbar_right_contents {
    display: flex;
    min-height: 36px;
  }
  header .navbar .mobile_right_section .navbar_right_contents .language_selection .form-select {
    font-size: 14px;
    padding: 0.375rem 1.5rem 0.375rem 0.3rem;
    background-size: 10px 12px;
  }
  header .navbar .mobile_right_section .navbar_right_contents .primary_btn {
    padding: 10px 10px;
  }
  header .navbar .navbar_right_contents .language_selection img {
    width: 26px;
  }
  header .navbar .navbar-nav .nav-item {
    margin-left: 10px;
  }
  header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }
  footer .footer_center .quick_links ul {
    width: 100%;
  }
  .key_features .all_key_box .key_box h2 {
    font-size: 28px;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-list {
    margin: 0 8%;
  }
  .visa_contents_box .contents_align {
    width: 100%;
    grid-column-gap: 8%;
  }
  .blog_destails_section .blog_list_wrapper {
    padding: 30px 20px;
  }
}
@media (max-width: 1099.98px) {
  .maids .maid_list_contents .maid_list_contents_left {
    width: 30%;
  }
}
@media (max-width: 992px) {
  .top_header .top_header_contents .Top_contents_right ul li a .connect_us {
    display: none;
  }
  footer .footer_center .quick_links ul {
    display: block;
  }
  footer .footer_center .services ul {
    display: block;
  }
  footer .footer_top {
    display: block;
  }
  footer .footer_top .footer_top_left {
    text-align: center;
    margin-bottom: 20px;
  }
  footer .footer_top .footer_top_right {
    width: fit-content;
    margin: auto;
  }
  .banner .carousel_content .caption h1 {
    font-size: 40px;
  }
  .key_features .all_key_box {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 30px;
  }
  .key_features .all_key_box .key_box:nth-child(2) {
    border-right: 0;
  }
  .Why_ChooseUs .Why_ChooseUs_left {
    margin-bottom: 30px;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-prev {
    bottom: -12%;
    left: 44%;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-next {
    bottom: -12%;
    right: 40%;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-list {
    margin: 0 4%;
  }
  .blogs .all_blogs_list {
    grid-template-columns: 1fr 1fr;
  }
  .inner_banner .caption h1 {
    font-size: 36px;
  }
  .more_about_us .more_about_us_left {
    margin-bottom: 40px;
  }
  .more_about_us::before {
    width: 50%;
  }
  .maids .maid_list_contents .maid_list_contents_right .maid_box {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 10px;
  }
  .maids .maid_list_contents .maid_list_contents_left {
    width: 45%;
  }
  .services_contents .service_contents_box .right_content img {
    height: 350px;
  }
  .services_contents .service_contents_box {
    padding: 2%;
  }
  .services_contents .service_contents_box .left_content {
    padding-right: 4%;
  }
  .visa_contents_box .contents_align .visa_box {
    padding: 40px 15px;
  }
  .visa_contents_box .contents_align {
    width: 100%;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
@media (max-width: 991.98px) {
  header .navbar .mobile_right_section {
    display: flex !important;
    align-items: flex-start;
  }
  header .navbar .mobile_right_section .navbar_right_contents {
    display: flex;
  }
  header .navbar .mobile_right_section .navbar_right_contents .language_selection {
    padding: 2px 0 2px 10px;
  }
  header .navbar .mobile_right_section .navbar_right_contents .language_selection img {
    width: 20px;
  }
  header .navbar .mobile_right_section .navbar_right_contents .language_selection .form-select {
    font-size: 13px;
  }
  header .navbar .mobile_right_section .navbar_right_contents .primary_btn {
    padding: 0px 10px;
    font-size: 13px;
    line-height: 13px;
    margin-right: 20px;
  }
  header .btn-close {
    filter: grayscale(100%);
  }
  .navbar-light .navbar-toggler {
    font-size: 1rem;
    padding: 0.25rem 0.35rem;
    border: 2px solid #064A9F;
    color: #064A9F;
    border-color: #064A9F;
  }
  .navbar-light .navbar-toggler:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none;
  }
  .offcanvas {
    background-color: #A4D8FD;
    border-right: 0px solid rgba(0, 0, 0, 0.2);
  }
  .offcanvas .offcanvas-header .btn-close {
    filter: grayscale(0%);
    background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23064A9F'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  }
  .offcanvas .offcanvas-header .imgheight {
    height: 44px;
  }
  .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link {
    color: #161616;
  }
  .offcanvas .offcanvas-body .navbar-nav .nav-item .nav-link:hover {
    color: #fff;
  }
  .offcanvas .offcanvas-body .navbar-nav .nav-item .active {
    color: #fff;
  }
  .blog_destails_section .blog_details_left .All_main_Headings h6 {
    margin-bottom: 6px;
    color: #A4D8FD;
  }
  .blog_destails_section .blog_details_left .All_main_Headings h3 {
    font-size: 18px;
  }
  .blog_destails_section .blog_details_left img {
    width: 100%;
  }
  .blog_destails_section .blog_details_left .video-area {
    width: 100%;
  }
  .blog_destails_section .blog_list_wrapper {
    margin-top: 40px;
    padding: 30px 20px;
  }
  .blog_destails_section .blog_list_wrapper ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: minmax(80px, auto);
    grid-gap: 15px;
  }
  .blog_destails_section .blog_list_wrapper ul li {
    margin-bottom: 0px;
  }
  .blog_destails_section .blog_list_wrapper ul li h4 {
    font-size: 16px;
  }
  .blog_destails_section .blog_list_wrapper ul li h6 {
    font-size: 11px;
  }
  .blog_destails_section .blog_list_wrapper ul li a {
    font-size: 13px;
  }
  .contact_share_info .main_heading {
    width: 80%;
    font-size: 18px;
    line-height: 24px;
  }
  .contact_share_info .info_list li {
    width: 30%;
  }
  .business_time .hours_wrapper {
    justify-content: center;
  }
  .business_time .icons {
    margin-top: 20px;
    justify-content: center;
  }
  .message_section .main_heading {
    font-size: 18px;
    line-height: 24px;
  }
  .map_frame iframe {
    height: 400px;
  }
  .error_page {
    padding-bottom: 50px;
  }
  .error_page .main_heading {
    width: 100%;
    font-size: 18px;
    line-height: 28px;
  }
  .message_box {
    background: #064A9F url(../images/form_vector-1.webp) no-repeat;
    background-position: top right;
  }
}
@media (max-width: 880px) {
  .testimonials .testimonailbefore .testimonial_slider .slick-list {
    margin: 0 0;
  }
  .testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  footer .footer_center {
    display: block;
    grid-template-columns: 1fr 1fr;
  }
  footer .footer_center .quick_links {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .footer_center .quick_links ul {
    display: grid;
  }
  footer .footer_center .services {
    width: 100%;
    margin-bottom: 20px;
  }
  footer .footer_center .services ul {
    display: grid;
  }
  footer .footer_center .contacts {
    width: 100%;
  }
  footer .footer_bottom {
    display: block;
  }
  footer .footer_bottom .footer_bottom_left {
    text-align: center;
    margin-bottom: 5px;
  }
  footer .footer_bottom .footer_bottom_right ul {
    justify-content: center;
  }
  .top_header .top_header_contents .Top_contents_right ul li a img {
    width: 35px;
  }
  .top_header .top_header_contents .Top_contents_left img {
    width: 140px;
  }
  .banner .carousel_content .caption h1 {
    font-size: 30px;
  }
  .banner .carousel_content .caption .btn_group .secondary_btn, .banner .carousel_content .caption .btn_group .primary_btn {
    font-size: 12px;
    padding: 8px 14px;
  }
  .banner .carousel_content .caption p {
    margin-bottom: 20px;
  }
  .our_team .our_team_right .our_team_slider .team_box .card_body a {
    width: 100%;
    text-align: center;
  }
  .our_team .our_team_right .our_team_slider .slick-slide {
    margin: 0 20px;
  }
  .our_team .our_team_right .our_team_slider .slick-list {
    margin: 0 -15px;
  }
  .our_team .our_team_right .our_team_slider .team_box {
    padding: 20px 10px;
    border-radius: 10px;
  }
  .testimonials {
    overflow: hidden;
  }
  .testimonials .container {
    padding-right: 0;
    margin-right: 0;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-list {
    padding-right: 90px;
  }
  .inner_banner .caption h1 {
    font-size: 26px;
  }
  .inner_banner .caption .breadcrumb .breadcrumb-item {
    font-size: 14px;
  }
  .inner_banner .caption .breadcrumb .breadcrumb-item a {
    font-size: 13px;
  }
  .inner_banner .caption .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    width: 8px;
    height: 8px;
  }
  .more_about_us .more_about_us_right {
    grid-column-gap: 20px;
  }
  .more_about_us .more_about_us_right .our_vision_mission_card {
    padding: 25px;
  }
  .maids .maid_list_contents {
    display: block;
  }
  .maids .maid_list_contents .maid_list_contents_left {
    width: 100%;
    margin-bottom: 20px;
  }
  .maids .maid_list_contents .maid_list_contents_right {
    width: 100%;
  }
  .services_contents .service_contents_box .right_content {
    margin: 20px 0;
  }
  .services_contents .all_service_contents_boxes .service_contents_box:nth-child(even) .left_content {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .messageUs_Home {
    margin-top: 25px;
  }
  .blog_listing_section .blog_card .card_body h4 {
    font-size: 18px;
  }
  .blog_destails_section .blog_list_wrapper {
    margin-top: 40px;
    padding: 30px 20px;
  }
  .blog_destails_section .blog_list_wrapper ul {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(80px, auto);
    grid-gap: 30px;
  }
  .blog_destails_section .blog_list_wrapper ul li {
    margin-bottom: 0px;
  }
  .contact_share_info .main_heading {
    width: 100%;
  }
  .contact_share_info .info_list {
    flex-direction: column;
  }
  .contact_share_info .info_list li {
    width: 100%;
    min-height: 230px;
    margin-bottom: 30px;
  }
  .contact_share_info .info_list li:last-child {
    margin-bottom: 0;
  }
  .contact_share_info .info_list li p {
    font-size: 12px;
    line-height: 20px;
    padding: 0;
  }
  .contact_share_info .info_list li p a {
    font-size: 12px;
    line-height: 20px;
  }
  .contact_share_info .info_list li .primary_btn {
    font-size: 16px;
    padding: 10px;
  }
  .business_time .hours_wrapper {
    flex-direction: column;
    justify-content: flex-start;
  }
  .business_time .hours_wrapper h3 {
    font-size: 18px;
  }
  .business_time .hours_wrapper ul {
    margin-left: 0;
    margin-top: 15px;
  }
  .business_time .hours_wrapper ul li {
    font-size: 16px;
  }
  .business_time .icons {
    justify-content: flex-start;
  }
  .message_box {
    padding: 50px 30px;
  }
  .map_frame {
    margin-top: -80px;
  }
  .map_frame iframe {
    height: 400px;
  }
  .visa_contents_box .contents_align {
    display: block;
  }
  .visa_contents_box .contents_align .visa_box {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .enquiry_modal .modal-dialog .modal-content .modal-body {
    padding: 2rem 1rem;
  }
  .visa_contents_box .contents_align .visa_box h6 {
    margin-bottom: 20px;
  }
  .visa_contents_box .contents_align .visa_box ul li {
    font-size: 12px;
    line-height: 20px;
  }
  .visa_contents_box .contents_align .visa_box p {
    font-size: 12px;
    line-height: 20px;
  }
  footer .footer_top .footer_top_left p br {
    display: none;
  }
  .top_header .top_header_contents .Top_contents_right ul li a img {
    width: 30px;
  }
  .top_header .top_header_contents .Top_contents_right ul {
    gap: 20px;
  }
  .top_header .top_header_contents .Top_contents_left img {
    width: 120px;
  }
  .banner .carousel_content .caption h1 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .banner .carousel_content .caption p {
    margin-bottom: 20px;
    font-size: 12px;
  }
  .banner .carousel_content .caption .btn_group .secondary_btn, .banner .carousel_content .caption .btn_group .primary_btn {
    font-size: 11px;
    padding: 7px 14px;
  }
  .banner .carousel_content .caption p {
    display: none;
  }
  .banner .carousel_content .caption h1 {
    margin-bottom: 20px;
  }
  .key_features .all_key_box {
    grid-row-gap: 30px;
  }
  .key_features .all_key_box .key_box h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 3px;
  }
  .key_features .all_key_box .key_box h5 {
    font-size: 16px;
  }
  .our_services {
    overflow: hidden;
  }
  .our_services .container {
    padding-right: 0;
    margin-right: 0;
  }
  .our_services .our_services_slider .slick-list {
    padding-right: 90px;
  }
  .our_team {
    overflow: hidden;
  }
  .our_team .container {
    padding-right: 0;
    margin-right: 0;
  }
  .our_team .our_team_slider .slick-list {
    padding-right: 90px !important;
  }
  .blogs .all_blogs_slider .slick-list {
    padding-right: 90px;
  }
  .blogs {
    overflow: hidden;
  }
  .blogs .container {
    padding-right: 0;
    margin-right: 0;
  }
  .more_about_us .more_about_us_right {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
  }
  .more_about_us::before {
    width: 75%;
  }
  .maids .maid_list_contents .maid_list_contents_right .maid_box {
    grid-template-columns: 1fr;
  }
  .blog_destails_section .blog_list_wrapper {
    padding: 30px 15px;
  }
  .blog_destails_section .blog_list_wrapper ul {
    grid-gap: 15px;
  }
  .blog_destails_section .blog_list_wrapper ul li {
    padding: 8px;
  }
  .message_box {
    background: #064A9F url(../images/form_vector-1.webp) no-repeat;
    background-position: top right;
    padding: 30px 15px 10px;
  }
  .message_box h3 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .message_box label {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .message_box form .form-group img {
    display: none;
  }
  .message_box form .form-group .form-control {
    padding-left: 0px;
    font-size: 13px;
  }
  .message_box .primary_btn {
    font-size: 15px;
    height: 40px;
    padding: 0 20px;
    margin-top: 10px;
  }
}
@media (max-width: 525px) {
  .key_features .all_key_box .key_box h2 {
    font-size: 17px;
  }
  .key_features .all_key_box .key_box h5 {
    font-size: 14px;
  }
  .blog_destails_section .blog_details_left .share_navigation {
    flex-direction: column;
  }
  .blog_destails_section .blog_details_left .share_navigation .share {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
  .blog_destails_section .blog_details_left .share_navigation .navigation {
    width: 100%;
    justify-content: space-between;
  }
  .blog_destails_section .blog_details_left .share_navigation .navigation .primary_btn, .blog_destails_section .blog_details_left .share_navigation .navigation .secondary_btn {
    width: 100px;
    font-size: 12px;
  }
  .testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater {
    display: flex;
    position: relative;
    flex-wrap: wrap;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-next {
    bottom: -8%;
    right: 30%;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-prev {
    bottom: -8%;
    left: 40%;
  }
}
@media (max-width: 430px) {
  header .navbar-brand {
    margin-right: 10px;
  }
  header .navbar .mobile_right_section .navbar_right_contents {
    grid-column-gap: 10px;
  }
  header .navbar .mobile_right_section .navbar_right_contents .language_selection {
    padding: 2px 0 2px 0px;
  }
  header .navbar .mobile_right_section .navbar_right_contents .language_selection img {
    display: none;
  }
  header .navbar .mobile_right_section .navbar_right_contents .language_selection .form-select {
    font-size: 13px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.25rem center;
    background-size: 12px 9px;
    padding: 0.375rem 1rem 0.375rem 0.375rem;
  }
  header .navbar .mobile_right_section .navbar_right_contents .primary_btn {
    margin-right: 10px;
  }
}
@media (max-width: 410px) {
  .message_box .col-6 {
    width: 100%;
  }
  .message_box label {
    display: none;
  }
}
@media (max-width: 390px) {
  header .navbar .mobile_right_section .navbar_right_contents .primary_btn {
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: 67px;
    text-align: center;
  }
  header.sticky .navbar .navbar-brand img {
    width: 80px !important;
  }
  footer .footer_top .footer_top_right form .form-group .form-control {
    width: 100%;
  }
  footer .footer_top .footer_top_right form .form-group .form-control::placeholder {
    font-size: 13px;
  }
  footer .footer_top .footer_top_right form .primary_btn {
    font-size: 12px;
    padding: 6px 12px;
  }
  footer .footer_center .services ul {
    display: block;
  }
  .top_header .top_header_contents .Top_contents_right ul li a img {
    width: 25px;
  }
  .top_header .top_header_contents .Top_contents_left img {
    width: 110px;
  }
  .our_services .our_services_slider .slick-list {
    padding-right: 60px;
  }
  .our_services .our_services_slider .service_box .card_body .list_box h4 {
    font-size: 17px;
  }
  .our_services .our_services_slider .service_box .card_body .list_box p {
    font-size: 13px;
  }
  .our_services .our_services_slider .service_box .card_body .list_box h6 {
    font-size: 13px;
  }
  .our_team .our_team_right .our_team_slider .slick-list {
    margin: 0 -8px;
  }
  .our_team .our_team_right .our_team_slider .slick-slide {
    margin: 0 10px;
  }
  .our_team .our_team_right .our_team_slider .team_box .card_body a {
    font-size: 12px;
    padding: 4px 8px;
  }
  .our_team .our_team_slider .slick-list {
    padding-right: 60px !important;
  }
  .blogs .all_blogs_slider .slick-list {
    padding-right: 60px;
  }
  .inner_banner .caption h1 {
    font-size: 20px;
  }
  .inner_banner .caption .breadcrumb .breadcrumb-item {
    font-size: 11px;
  }
  .inner_banner .caption .breadcrumb .breadcrumb-item a {
    font-size: 11px;
  }
  .inner_banner .caption .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    width: 6px;
    height: 6px;
    margin-top: 6px;
    margin-right: 4px;
  }
  .services_contents .service_contents_box .right_content img {
    height: 300px;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-list {
    padding-right: 70px;
  }
}
@media (max-width: 350px) {
  .blogs .all_blogs_slider .blog_card .card_body h4 {
    font-size: 18px;
  }
  .services_contents .service_contents_box .right_content img {
    height: 250px;
  }
  .visa_contents_box .contents_align .visa_box {
    padding: 40px 20px;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-list {
    padding-right: 60PX;
  }
}
@media (max-width: 330px) {
  footer .footer_bottom .footer_bottom_left p {
    font-size: 12px;
  }
  footer .footer_bottom .footer_bottom_right ul li a {
    font-size: 13px;
  }
  .our_services .our_services_slider .service_box .card_body .list_box h4 {
    font-size: 16px;
  }
  .our_services .our_services_slider .service_box .card_body .list_box p {
    font-size: 12px;
  }
  .our_services .our_services_slider .service_box .card_body .list_box h6 {
    font-size: 12px;
  }
  .our_services .our_services_slider .slick-list {
    padding-right: 45px;
  }
  .our_team .our_team_slider .slick-list {
    padding-right: 45px !important;
  }
  .blogs .all_blogs_slider .slick-list {
    padding-right: 40px;
  }
  .visa_contents_box .contents_align .visa_box ul li {
    font-size: 14px;
  }
  .visa_contents_box .contents_align .visa_box h5 {
    font-size: 16px;
  }
  .visa_contents_box .contents_align .visa_box h6 {
    font-size: 14px;
  }
  .testimonials .testimonailbefore .testimonial_slider .slick-list {
    padding-right: 40PX;
  }
}
@media only screen and (min-device-width: 566px) and (max-device-width: 768px) {
  .services_contents .service_contents_box .right_content .img_right::before {
    display: none;
  }
}
.form-control.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-search--inline .select2-search__field {
  width: initial !important;
}

html:lang(ar) {
  direction: rtl;
}
html:lang(ar) header .navbar .navbar-nav {
  margin-left: auto;
  margin-right: inherit;
}
html:lang(ar) header .navbar .navbar-nav .nav-item {
  margin-right: 20px;
  margin-left: inherit;
}
html:lang(ar) header .navbar .navbar_right_contents {
  display: flex;
}
html:lang(ar) header .navbar .navbar_right_contents .language_selection {
  padding: 5px 5px 5px 10px;
}
html:lang(ar) header .navbar .navbar_right_contents .language_selection .form-select {
  background-position: left 0rem center;
  font-size: 14px;
}
html:lang(ar) header .navbar .navbar_right_contents .primary_btn span {
  padding-right: 3px;
}
html:lang(ar) footer .footer_center .contacts ul li a svg {
  margin-top: 6px;
}
html:lang(ar) footer .footer_center .quick_links ul li::before {
  left: inherit;
  right: 0;
  transform: scaleX(-1);
}
html:lang(ar) footer .footer_center .quick_links ul li {
  padding-left: inherit;
  padding-right: 20px;
}
html:lang(ar) footer .footer_center .services ul li::before {
  left: inherit;
  right: 0;
  transform: rotate(180deg);
  top: 4px;
}
html:lang(ar) footer .footer_center .services ul li {
  padding-left: inherit;
  padding-right: 20px;
}
html:lang(ar) footer .footer_center .contacts .social_media_icons ul {
  direction: ltr !important;
  display: flex;
  justify-content: flex-end;
}
html:lang(ar) footer .footer_center .contacts .social_media_icons ul li {
  direction: ltr !important;
}
html:lang(ar) footer .footer_center .contacts .social_media_icons ul li a {
  direction: ltr !important;
}
html:lang(ar) footer .footer_center .contacts .social_media_icons ul li a i {
  direction: ltr !important;
}
html:lang(ar) .banner::before {
  right: 0;
  left: inherit;
  background-image: linear-gradient(to right, rgba(6, 74, 159, 0), rgb(14, 47, 87));
}
html:lang(ar) .our_services .our_services_slider .service_box .card_body .list_box {
  text-align: end;
}
html:lang(ar) .All_main_Headings .main_heading::after {
  left: inherit;
  right: 0;
}
html:lang(ar) .All_main_Headings_center .main_heading::after {
  left: inherit;
  right: 50%;
  transform: translate(35%, -50%);
}
html:lang(ar) .Why_ChooseUs .Why_ChooseUs_left .img2 {
  margin-left: inherit;
  margin-right: 40%;
}
html:lang(ar) .key_features .all_key_box .key_box:last-child {
  border-right: 1px solid #fff;
}
html:lang(ar) .key_features .all_key_box .key_box:first-child {
  border-right: 0;
}
html:lang(ar) .our_team::before {
  transform: scaleX(-1);
  right: inherit;
  left: 0;
}
html:lang(ar) .banner .carousel-item img {
  transform: scaleX(-1);
}
html:lang(ar) .more_about_us::before {
  left: inherit;
  right: 0;
  transform: scaleX(-1);
}
html:lang(ar) .inner_banner .caption .breadcrumb .breadcrumb-item {
  padding-left: 0;
  padding-right: 0.5rem;
}
html:lang(ar) .inner_banner .caption .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  margin-left: 6px;
  margin-right: 0;
  transform: scaleX(-1);
  float: right;
}
html:lang(ar) .maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-header .accordion-button::after {
  margin-right: auto;
  margin-left: inherit;
}
html:lang(ar) .maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .form-check .form-check-input {
  float: left;
}
html:lang(ar) .maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .form-check .form-check-input {
  margin-left: inherit;
  margin-right: -1.5em;
}
html:lang(ar) .maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body .overflow_contents {
  padding-right: 0;
  padding-left: 15px;
}
html:lang(ar) .maids .maid_list_contents .maid_list_contents_left .accordion .accordion-item .accordion-body ul li {
  padding: 5px 15px 5px 0px;
}
html:lang(ar) .services_contents .service_contents_box .left_content {
  padding-left: 10%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
}
html:lang(ar) .services_contents .service_contents_box .right_content img {
  margin-right: 2%;
  margin-left: 0;
}
html:lang(ar) .services_contents .all_service_contents_boxes .service_contents_box:nth-child(even) .left_content {
  padding-right: 10%;
  padding-left: 0;
}
html:lang(ar) .privacy_policy ul li {
  padding-left: 0;
  padding-right: 40px;
}
html:lang(ar) .privacy_policy ul li::before {
  right: 10px;
  left: inherit;
}
html:lang(ar) .visa_contents_box .contents_align .visa_box ul li {
  padding-left: 0;
  padding-right: 20px;
}
html:lang(ar) .visa_contents_box .contents_align .visa_box ul li::before {
  left: inherit;
  right: 0;
}
html:lang(ar) .visa_contents_box .contents_align .visa_box::before {
  transform: scaleX(-1);
}
html:lang(ar) .our_services .our_services_slider .service_box .card_body p {
  text-align: end;
}
html:lang(ar) .our_team .our_team_right .our_team_slider .team_box .card_body ul li {
  padding-left: inherit;
  padding-right: 20px;
  text-align: end;
}
html:lang(ar) .our_team .our_team_right .our_team_slider .team_box .card_body ul li::before {
  left: inherit;
  right: 0;
}
html:lang(ar) .our_team .our_team_right .our_team_slider .team_box .profile .card_top::before {
  left: inherit;
  right: -5px;
}
html:lang(ar) .testimonials .testimonailbefore .testimonial_slider .testimonial_box .rated_contents p {
  transform: scaleX(-1);
}
html:lang(ar) .testimonials .testimonailbefore .testimonial_slider .testimonial_box .rater {
  flex-direction: row-reverse;
}
html:lang(ar) .testimonials .testimonailbefore .testimonial_slider .testimonial_box::before {
  right: inherit;
  left: 20px;
}
html:lang(ar) .blogs .all_blogs_slider .blog_card .card_body {
  text-align: end;
}
html:lang(ar) .key_features .all_key_box .key_box h2 {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
html:lang(ar) .enquiry_modal .modal-dialog .modal-content .modal-header .btn-close {
  margin-left: 0 !important;
}
html:lang(ar) .maids .maid_list_contents .maid_list_contents_right .maid_box .share_box .share .dropdown-menu.show {
  transform: translate(-50px) !important;
}
html:lang(ar) .maids .maid_list_contents .maid_list_contents_right .maid_box .share_box .share .dropend .dropdown-toggle::after {
  transform: rotate(-180deg);
}
@media (max-width: 575px) {
  html:lang(ar) .maids .maid_list_contents .maid_list_contents_right .maid_box .share_box .share .dropdown-menu.show {
    transform: translate(-120px) !important;
  }
}
html:lang(ar) .blog_destails_section .pe-lg-5 {
  padding-left: 3rem !important;
  padding-right: 0.8rem !important;
}
html:lang(ar) .blog_destails_section .blog_details_left .video-area .video-btn img {
  transform: scaleX(1);
}
html:lang(ar) .blog_destails_section .blog_details_left .share_navigation .share {
  direction: ltr !important;
}
html:lang(ar) .blog_destails_section .blog_details_left .share_navigation .share a {
  direction: ltr !important;
}
html:lang(ar) .blog_destails_section .blog_details_left .share_navigation .share a i {
  direction: ltr !important;
}
html:lang(ar) .blog_destails_section .blog_details_left .share_navigation .navigation {
  direction: ltr !important;
}
html:lang(ar) .blog_destails_section .blog_details_left .share_navigation .navigation .secondary_btn, html:lang(ar) .blog_destails_section .blog_details_left .share_navigation .navigation .primary_btn {
  direction: ltr !important;
}
html:lang(ar) .form-control.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
}
html:lang(ar) .select2-container {
  width: 100% !important;
  direction: rtl;
}
html:lang(ar) .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none;
  margin-left: 5px;
}
html:lang(ar) .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  min-height: 38px;
  margin-top: 0;
  flex-wrap: wrap;
  padding: 5px;
}
html:lang(ar) .select2-container--default .select2-results > .select2-results__options {
  direction: rtl;
}
html:lang(ar) .select2-container--default .select2-search--inline .select2-search__field {
  width: initial !important;
}
html:lang(ar) .business_time .hours_wrapper ul {
  margin-left: 0;
  margin-right: 40px;
}
html:lang(ar) .error_page picture, html:lang(ar) .error_page img {
  direction: ltr !important;
  transform: scaleX(1);
}
html:lang(ar) .maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul .skill_list ul li {
  padding-left: 0;
  padding-right: 15px;
}
html:lang(ar) .maids .maid_list_contents .maid_list_contents_right .maid_box .name_box ul .skill_list ul li::before {
  left: inherit;
  right: 0;
}
@media (max-width: 1199.98px) {
  html:lang(ar) header .navbar .navbar-nav .nav-item {
    margin-right: 10px;
  }
  html:lang(ar) header .navbar .mobile_right_section .navbar_right_contents .language_selection .form-select {
    padding: 0.375rem 0.5rem 0.375rem 0.8rem;
  }
}
@media (max-width: 991.98px) {
  html:lang(ar) header .navbar .mobile_right_section .navbar_right_contents .primary_btn {
    margin-right: 0px;
  }
  html:lang(ar) header .navbar .mobile_right_section {
    display: flex !important;
    align-items: center;
  }
  html:lang(ar) header .navbar .navbar_right_contents .language_selection {
    padding: 0px 5px 0px 10px;
  }
  html:lang(ar) header .navbar .mobile_right_section .navbar_right_contents .primary_btn {
    margin-left: 10px;
  }
  html:lang(ar) .key_features .all_key_box .key_box:nth-child(2) {
    border-right: 1px solid #fff;
  }
  html:lang(ar) .key_features .all_key_box .key_box:nth-child(3) {
    border-right: 0;
  }
}
@media (max-width: 991.98px) {
  html:lang(ar) .blog_destails_section .pe-lg-5 {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
  }
}
@media (max-width: 766.98px) {
  html:lang(ar) .business_time .hours_wrapper ul {
    margin-right: 0px;
  }
  html:lang(ar) .business_time .icons {
    justify-content: flex-end;
    direction: ltr !important;
  }
  html:lang(ar) .business_time .icons a {
    direction: ltr !important;
  }
  html:lang(ar) .business_time .icons a i {
    direction: ltr !important;
  }
  html:lang(ar) .testimonials .container {
    padding-right: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    padding-left: 0;
    margin-left: 0;
  }
  html:lang(ar) .testimonials .testimonailbefore .testimonial_slider .slick-list {
    padding-right: 0px;
    padding-left: 90px;
  }
}
@media (max-width: 576px) {
  html:lang(ar) .key_features .all_key_box .key_box {
    border-right: 0 !important;
  }
  html:lang(ar) .our_services .container {
    padding-right: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    padding-left: 0;
    margin-left: 0;
  }
  html:lang(ar) .our_services .our_services_slider .slick-list {
    padding-left: 90px;
    padding-right: inherit;
  }
  html:lang(ar) .our_team .container {
    padding-right: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    padding-left: 0;
    margin-left: 0;
  }
  html:lang(ar) .our_team .our_team_slider .slick-list {
    padding-left: 90px !important;
    padding-right: inherit !important;
  }
  html:lang(ar) .blogs .container {
    padding-right: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    padding-left: 0;
    margin-left: 0;
  }
  html:lang(ar) .blogs .all_blogs_slider .slick-list {
    padding-left: 90px;
    padding-right: inherit;
  }
}
@media (max-width: 430px) {
  html:lang(ar) header .navbar .mobile_right_section .navbar_right_contents .language_selection .form-select {
    font-size: 13px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 0rem center;
    padding: 0.375rem 0.3rem 0.375rem 0.8rem;
  }
  html:lang(ar) header .navbar-brand {
    margin-right: 0px;
    margin-left: 10px;
  }
}
@media (max-width: 390px) {
  html:lang(ar) header .navbar .mobile_right_section .navbar_right_contents .primary_btn {
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: 67px;
    text-align: center;
  }
  html:lang(ar) .our_team .our_team_right .our_team_slider .slick-list {
    padding-left: 60px !important;
    padding-right: inherit !important;
  }
  html:lang(ar) .blogs .all_blogs_slider .slick-list {
    padding-left: 60px;
    padding-right: inherit;
  }
}
@media (max-width: 330px) {
  html:lang(ar) .our_team .our_team_right .our_team_slider .slick-list {
    padding-left: 45px !important;
    padding-right: inherit !important;
  }
  html:lang(ar) .blogs .all_blogs_slider .slick-list {
    padding-left: 40px;
    padding-right: inherit;
  }
}

@media (min-width: 1200px) {
  .container_left {
    max-width: calc((100% - 1140px) / 2 + 1140px) !important;
    margin-right: 0;
    padding-right: 0;
  }
}
@media (min-width: 1400px) {
  .container_left {
    max-width: calc((100% - 1320px) / 2 + 1320px) !important;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 94%;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 94%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 94%;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 100%;
  }
}
#loading {
  position: fixed;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  opacity: 0.9;
  background-color: #fff;
  z-index: 99;
}

#loading-image {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translate(-50%, -50%);
  width: 200px;
  height: auto;
}

header.sticky .navbar .navbar-brand img {
  width: 100px;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

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