/* Utilities CSS Start */
:root {
  /* my var */
  --text-color: #33363f;
  --text-muted: #7a7a7a;
  --text-gray: #818493;
  --footer-bg: #0e1820;
  --body-font-family: "Articulat-CF", sans-serif;
  --primary: #1070b7;
  --primary-rgb: 16, 112, 183;
  --primary-dark: #124a74;
  --secondary: #eb7606;
  --secondary-rgb: 235, 118, 6;
  --white: #fff;
  --orange: #f05325;
  --bg-light-gray: #f5f5f5;
  --dark-gray: #1e1e23;
  --link-color: var(--primary);
  --link-hover-color: var(--secondary);
  --border-radius: 6px;
  --border-light-color: rgba(0, 0, 0, 0.175);
  --dropdown-link-hover-bg: #f8f9fa;
  --card-img-overlay-padding: 3.75rem;
  --input-border-color: #e3e3e3;
  --box-shadow: 0px 20px 12px -10px rgba(0, 0, 0, 0.24);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--body-font-family);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  background-color: var(--white);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  letter-spacing: -0.4px;
}
h6,
h5,
h4,
h3,
h2,
h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: 3.75rem;
  letter-spacing: -1.2px;
  line-height: 1;
}
h2 {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.96px;
}
h3 {
  font-size: 1.5rem;
  line-height: 140%;
  letter-spacing: -0.48px;
}
a {
  text-decoration: none;
}
img,
svg {
  vertical-align: middle;
}
p {
  margin-top: 0;
  margin-bottom: 2rem;
}
.container {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}
.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.ms-auto {
  margin-left: auto !important;
}
.mt-auto {
  margin-top: auto !important;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-muted {
  color: var(--text-muted);
}
.text-bg-dark {
  color: var(--white) !important;
}
.text-white {
  color: var(--white);
}
.text-center {
  text-align: center !important;
}
.text-capitalize {
  text-transform: capitalize;
}
.fw-lighter {
  font-weight: lighter !important;
}
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 500 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-bolder {
  font-weight: bolder !important;
}
.opacity-8 {
  opacity: 0.8;
}
.btn {
  display: inline-block;
  padding: 14px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: var(--btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 1px solid var(--btn-border-color);
  background-color: var(--btn-bg);
  border-radius: var(--border-radius);
  transition: all 0.15s ease-in-out;
  min-width: 180px;
  font-family: var(--body-font-family);
  box-shadow: var(--box-shadow);
}
.btn:hover {
  color: var(--btn-hover-color);
  background-color: var(--btn-hover-bg);
  border-color: var(--btn-hover-border-color);
}
.btn-secondary {
  --btn-bg: var(--secondary);
  --btn-color: var(--white);
  --btn-border-color: var(--secondary);
  --btn-hover-bg: var(--white);
  --btn-hover-color: var(--secondary);
  --btn-hover-border-color: var(--secondary);
  --btn-focus-shadow-rgb: 130, 138, 145;
  --btn-active-bg: var(--white);
  --btn-active-border-color: var(--secondary);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-secondary:hover {
  border-color: var(--secondary);
  background-color: var(--white);
  color: var(--secondary);
}
.btn-light {
  --btn-bg: var(--white);
  --btn-color: var(--text-color);
  --btn-border-color: var(--white);
  --btn-hover-bg: var(--secondary);
  --btn-hover-color: var(--white);
  --btn-hover-border-color: var(--secondary);
  --btn-focus-shadow-rgb: 130, 138, 145;
  --btn-active-bg: var(--secondary);
  --btn-active-border-color: var(--secondary);
  --btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:disabled {
  opacity: 0.16;
  cursor: not-allowed;
}
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  z-index: 100;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  text-align: left;
  list-style: none;
  background-color: var(--white);
  background-clip: padding-box;
  border: 1px solid var(--border-light-color);
  border-radius: 6px;
}
.show-menu .dropdown-menu {
  display: block;
}
.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 500;
  color: var(--text-color);
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--dropdown-link-hover-bg);
}
.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid var(--border-light-color);
  opacity: 1;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.d-flex {
  display: flex;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 10px;
  padding-left: 10px;
}
.col {
  flex: 1 0 0%;
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}
.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}
.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}
.col-3 {
  flex: 0 0 auto;
  width: 25%;
}
.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}
.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}
.col-6 {
  flex: 0 0 auto;
  width: 50%;
}
.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}
.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}
.col-9 {
  flex: 0 0 auto;
  width: 75%;
}
.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}
.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}
.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
.order-1 {
  order: 1;
}
.order-2 {
  order: 2;
}
.order-3 {
  order: 3;
}
.order-4 {
  order: 4;
}
.order-5 {
  order: 5;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: var(--white);
  word-wrap: break-word;
  background-color: transparent;
  background-clip: border-box;
  /* border: 1px solid rgb(0 0 0 / 75%); */
  border-radius: var(--border-radius);
}
.aac_slider .card > img {
  width: 100%;
}
.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: var(--card-img-overlay-padding);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
/* Slick Slider CSS */
.slick-track {
  display: flex;
  overflow: hidden;
}
.slick-slide {
  float: unset;
  padding: 0 10px;
}
/* .aac_slider .slick-list {
  padding-left: 0 !important;
} */
.form-group {
  margin-bottom: 27px;
}
label {
  display: block;
  color: var(--dark-gray);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 15px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 20px 26px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #212529;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid var(--input-border-color);
  border-radius: 0;
  transition: all 0.15s ease-in-out;
  font-family: var(--body-font-family);
}
input[type="file"] {
  position: fixed;
  right: 100%;
  bottom: 100%;
}
.custom-file-upload {
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #cacaca;
  display: inline-block;
  padding: 24px 36px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
  margin-right: 12px;
}
.custom-file-upload svg {
  margin-right: 15px;
}
.submit_wrapper {
  display: flex;
}
.submit_wrapper .btn {
  font-weight: 500;
  flex-grow: 1;
  border-radius: 2px;
}
/* Utilities CSS End */

/* Header CSS */
header .navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  background-color: var(--white);
  box-shadow: 0px 2px 12px 0px #0000000d;
  z-index: 999;
}
.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-collapse {
  display: flex;
  align-items: center;
}
.navbar-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}
header .navbar-brand {
  margin-right: 0.5rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
header .navbar-brand img {
  max-width: 215px;
}
.collapse:not(.show) {
  /* display: none; */
}
header .navbar-collapse {
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-basis: auto;
}
.nav-book-wrapper {
  display: flex;
  align-items: center;
}
.nav-book-wrapper .btn {
  box-shadow: none;
}
header .navbar .nav-link {
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.36px;
  padding: 0 20px;
  color: var(--text-color);
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: all 0.15s ease-in-out;
}
/* header .navbar .nav-link.dropdown-toggle:hover,
header .navbar .nav-link.dropdown-toggle:focus,
header .navbar .nav-link.dropdown-toggle:active {
  color: var(--text-color);
} */
header .navbar .btn.contact_btn {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.36px;
  margin-right: 20px;
  text-align: right;
  min-width: auto;
  color: var(--primary);
  padding: 14px 0;
}
header .navbar .btn.call_btn {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  margin-left: 20px;
  text-align: left;
  color: var(--secondary);
  min-width: auto;
  padding: 14px 0;
  box-shadow: none;
}
header .navbar .navbar-toggler {
  border: 0;
  background-color: transparent;
  display: none;
}
header .navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-image: url("data:image/svg+xml,%3Csvg width='22' height='19' viewBox='0 0 22 19' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.239502' y='0.396149' width='20.8445' height='3.31068' rx='1.65534' fill='%23EB7606'/%3E%3Crect x='0.239502' y='7.70682' width='20.8445' height='3.31068' rx='1.65534' fill='%23EB7606'/%3E%3Crect x='0.239502' y='15.0175' width='20.8445' height='3.31068' rx='1.65534' fill='%23EB7606'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
header ul.navbar-nav > li:last-child {
  display: none;
}
/* Footer CSS */
footer {
  background-color: var(--footer-bg);
  color: var(--white);
}
.footer_wrapper {
  padding: 100px 0;
}
.ft_navbar_brand {
  display: inline-block;
  margin-bottom: 60px;
}
footer .navbar-nav {
  flex-direction: column;
  --nav-link-padding-y: 12px;
}
footer .navbar-nav .nav-link {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 140%;
  padding: 12px 0px;
  color: var(--white);
  text-decoration: none;
  background: 0 0;
  border: 0;
  transition: all 0.15s ease-in-out;
}
.ft_left_navbar {
  text-align: left;
}
.ft_right_navbar .navbar-nav .nav-link {
  font-size: 14px;
  letter-spacing: -0.28px;
}
footer .navbar-nav .nav-link:hover {
  color: var(--secondary);
}
.ft_social_wrapper {
  margin-top: 45px;
}
.social_icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.social_icon:last-child {
  margin-right: 0;
}
.ft_right_navbar h6 {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.26px;
  opacity: 0.5;
  margin-bottom: 10px;
}
.copyright_ft {
  padding-bottom: 50px;
  font-size: 14px;
}
.copyright_text {
  display: flex;
  align-items: center;
}
.copyright_ft p {
  margin-right: 20px;
}

/* Home page CSS */
.home_hero_section {
  padding: 80px 0 120px;
}
.home_hero_section h1 {
  margin: 40px 0 100px;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.aac_tags {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.4px;
  text-align: center;
}
.aac_tags span {
  padding: 0 10px;
}
.aac_tags span:first-child {
  padding-left: 0;
}
.service_box {
  margin-bottom: 60px;
}
.service_box .card {
  border: none;
  box-shadow: var(--box-shadow);
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}
.service_box .aac_slider .card:hover {
  transform: scale(1.025);
  overflow: hidden;
}
.service_box .card {
  height: 100%;
}
.service_box .aac_slider .card > img {
  border-radius: 6px;
  height: 100%;
  object-fit: cover;
}
.service_box .card-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.48px;
  margin-bottom: 1.25rem;
  opacity: 0.6;
}
.service_box .card-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.96px;
  padding-top: 20px;
}
.service_box .aac_slider .col-md-4:last-child .btn.btn-secondary {
  --btn-bg: var(--white);
  --btn-color: var(--text-color);
  --btn-border-color: var(--white);
  --btn-active-border-color: var(--secondary);
}
.acc_logo_slider_wrapper,
.acc_logo_sliders_container,
.acc_logo_slider {
  display: flex;
  align-items: center;
}
.acc_logo_slider .slick-list.draggable {
  padding-left: 0 !important;
}
.acc_logo_sliders_container .acc_logo_slider_wrapper:last-child {
  /* margin-left: auto; */
}
.acc_logo_slider_img {
  padding: 0 22px;
}
.acc_logo_slider_wrapper > p {
  font-weight: 600;
  letter-spacing: -0.4px;
  padding-right: 30px;
}
.enquire_section {
  padding: 160px 0 0;
  background: radial-gradient(
    78.5% 78.5% at 50% 21.5%,
    #1070b7 0%,
    #123e5f 100%
  );
}
.aac_video_wrapper {
  padding-top: 160px;
}
.enquire_left_box {
  border-radius: var(--border-radius);
  border: 4px solid var(--white);
  height: 100%;
  box-shadow: 0px 36px 12px -10px rgba(0, 0, 0, 0.3);
}
.enquire_left_box .card,
.enquire_left_box .card .card_img {
  height: 100%;
}
.enquire_left_box .card .card_img {
  object-position: top left;
  object-fit: cover;
  width: 100%;
}
.enquire_left_box .card-img-overlay {
  background: linear-gradient(180deg, #8a7d76 0%, rgba(138, 125, 118, 0) 100%);
}
.enquire_left_box .card-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.2px;
  margin-bottom: 40px;
}
.enquire_left_box .card-text {
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  color: #e5e3e2;
  max-width: 90%;
  margin: 0 auto;
}
.enquire_left_box .card-text strong {
  color: var(--white);
}
.aac_shape_bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 0 0 6px 0;
}
.enquire_right_box {
  padding: 60px;
  background: white;
  border-radius: 6px;
  height: 100%;
  box-shadow: 0px 36px 12px -10px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
 /*  background-image: url(../images/screen_logo_d.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center; */
}
.enquire_right_box:before {
  content: "";
  background-image: url(../images/screen_logo_d.png);
  position: absolute;
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-position: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5; 
  z-index: -1;
}


.enquire_right_box h2 {
  margin-bottom: 40px;
}
.enquire_right_box .text-muted {
  font-weight: 500;
  line-height: 120%;
  margin-bottom: 50px;
  font-weight: 700;
  color: #000 !important;
}
.aac_type_box {
  border-radius: var(--border-radius);
  border: 2px solid var(--bg-light-gray);
  /* padding: 18px; */
  margin-bottom: 20px;
  text-align: center;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  background: #fff;
  opacity: 0.90;
}
.aac_type_box input[type="radio"] {
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
}
.aac_type_box label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  padding: 18px;
}
.aac_type_box input[type="radio"]:checked + label .acc_check_arrow {
  opacity: 1;
}
.aac_type_box input[type="radio"]:checked + label {
  background: #f5f5f5;
}
.step_btn_wrapper {
  margin-top: 50px;
  text-align: center;
}
.acc_check_arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  opacity: 0;
  transition: all 0.15s ease-in-out;
}
.acc_fieldset_wrapper fieldset:not(:first-of-type) {
  display: none;
}
.acc_fieldset_wrapper fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.aac_video_wrapper {
  margin-bottom: -350px;
  z-index: 2;
}
.aac_video_wrapper video {
  box-shadow: 0px 36px 12px -10px rgba(0, 0, 0, 0.3);
}
.aac_video_wrapper .position-relative {
  position: relative;
  z-index: 2;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: none;
  min-width: auto;
}
.play-btn img {
  filter: drop-shadow(0px 20px 12px rgba(0, 0, 0, 0.24));
}
.what-do-section {
  padding: 160px 0;
  color: var(--white);
  background: radial-gradient(
    78.5% 78.5% at 50% 21.5%,
    #1070b7 0%,
    #123e5f 100%
  );
  padding-top: 510px;
  border-top: 4px solid white;
}
.what-do-section h2 {
  font-size: 48px;
  margin-bottom: 40px;
}
.what-do-section h3 {
  margin-bottom: 100px;
}
.acc_do_slider .card {
  box-shadow: var(--box-shadow);
}
.what_do_box .card:after {
  content: "";
  border-radius: 6px 6px 0px 0px;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: -1px;
  height: 50%;
  width: 100%;
  transform: rotate(-180deg);
}
.what_do_box .card {
  height: 100%;
}
.what_do_box .card > img {
  border-radius: var(--border-radius);
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.what_do_box .card-img-overlay {
  z-index: 1;
  --card-img-overlay-padding: 3rem;
}
.what_do_box .card-icon-wrapper {
  position: relative;
}
.what_do_box .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.what_do_box .curve-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.what_do_box .card-title {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.72px;
  margin-top: 30px;
  margin-bottom: 0;
}
.what_do_box .slick-list.draggable {
  padding-left: 0 !important;
}
.why-us-section {
  padding: 160px 0;
  background: var(--bg-light-gray);
  font-weight: 500;
}
.why-us-section h2 {
  font-size: 48px;
  margin-bottom: 40px;
}
.why_us_title {
  padding-right: 10%;
}
.whyus_box {
  padding-top: 120px;
}
.whyus_box .card {
  height: 100%;
}
.whyus_box .card > img {
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.whyus_box .card-img-overlay {
  padding: 0;
  position: relative;
  height: 100%;
  border-radius: 6px;
}
.whyus_box .card-title {
  padding: 40px;
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.48px;
  margin-bottom: 0;
  min-height: 130px;
}
.whyus_box .slick-list.draggable {
  padding-left: 0 !important;
}
.whyus_box .card_img {
  margin-left: auto;
  margin-right: auto;
}
.whyus_box .card_img img {
  min-height: 240px;
  height: 100%;
  width: 100%;
}
.all-in-one-section {
  padding: 160px 0;
  font-weight: 500;
}
.all-in-one-section .enquire_left_box {
  box-shadow: none;
}
.all-in-one-service-box {
  color: var(--white);
  border-radius: var(--border-radius);
  background: radial-gradient(
    78.5% 78.5% at 50% 21.5%,
    #1070b7 0%,
    #123e5f 100%
  );
  box-shadow: var(--box-shadow);
}
.all-in-one-content {
  padding: var(--card-img-overlay-padding);
  text-align: center;
}
.all-in-one-service-box h2,
.all-in-one-service-box h3 {
  margin-bottom: 27px;
}
.all-in-one-service-box .all-in-one-content p {
  /* opacity: 0.8; */
  margin-bottom: 22px;
}
.all-in-one-img {
  text-align: center;
}
.all-in-one-img img {
  width: 100%;
}
.all-in-one-right-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.all-in-one-right-box {
  border-radius: var(--border-radius);
  background: var(--bg-light-gray);
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  height: 100%;
}
.all-in-one-right-box .card,
.all-in-one-right-box .card_img {
  height: 100%;
}
.all-in-one-right-box .card_img {
  border-radius: var(--border-radius);
  width: 100%;
}
.all-in-one-right-box .card-content {
  text-align: left;
  max-width: 300px;
  color: var(--text-color);
}
.all-in-one-right-box .aac_shape_bottom {
  max-width: 166px;
  border-radius: 0 0 6px 0;
}
.about-section {
  padding: 160px 0 124px;
  color: var(--white);
  background: radial-gradient(
    78.5% 78.5% at 50% 21.5%,
    #1070b7 0%,
    #123e5f 100%
  );
  font-weight: 500;
}
.about-row {
  align-items: center;
}
.about-left-content h2 {
  font-size: 48px;
}
.about-left-content h2,
.about-left-content h3 {
  margin-bottom: 60px;
}
.about-left-content h2.mb-30 {
  margin-bottom: 2rem;
}
.about-left-content p {
  opacity: 0.8;
}
.about-left-content .about-btn {
  margin-top: 60px;
}
.about-right-wrapper {
  padding-left: 120px;
}
.about-img-wrapper {
  border: 4px solid var(--white);
  border-radius: 6px;
  background: #d9d9d9;
  box-shadow: var(--box-shadow);
  margin-bottom: 20px;
  position: relative;
}
.about-img-wrapper img {
  width: 100%;
  border-radius: 6px;
}
.about-social-btn {
  position: absolute;
  bottom: -5px;
  right: -5px;
}
.wi-fi-section {
  background: #f5f5f5;
  padding: 160px 0;
}
.wi-fi-box {
  border-radius: 6px;
  background-color: #1a1112;
  color: var(--white);
  box-shadow: var(--box-shadow);
  position: relative;
  margin: 0;
  background-image: url(../images/wi-fi-full-img.png);
  background-position: center;
  height: 580px;
}
.top-shape {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 6px 0 0 0;
}
.wi-fi-right-col {
  padding: 0;
}
.wi-fi-right img {
  display: none;
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: left;
  border-radius: 0 0 6px 0;
}
.wi-fi-right {
  position: relative;
  height: 100%;
}
.wi-fi-right .btn {
  position: absolute;
  right: -1px;
  bottom: -1px;
  padding: 17px 35px;
}
.wi-fi-right .btn svg {
  margin-right: 15px;
}
.wi-fi-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  align-items: center;
  padding: 20px 20%;
}
.wi-fi-left > *:not(:last-child) {
  margin-bottom: 40px;
}
.wi-fi-left h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -1.2px;
}
.wi-fi-left .page-book-wrapper {
  justify-content: center;
}
.area-serve-section {
  padding: 160px 0 110px;
  overflow-x: hidden;
}
.acc_area_slider::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 500%;
  height: 100%;
  background: var(--white);
  margin-left: -500%;
  z-index: 2;
}
.area-serve-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
.area-serve-btns > a:first-child {
  margin-right: 1rem;
}
.area-serve-section .what_do_box .card-title {
  font-size: 24px;
  letter-spacing: -0.48px;
  margin-top: 40px;
}
.area-serve-section .what_do_box .card-title a {
  color: var(--white);
}
.area-serve-section .what_do_box .area-serve-card:after {
  display: none;
}
.area-serve-section .area-serve-card .card-content {
  justify-content: space-between;
}
.area-serve-section .what_do_box .area-serve-card .card-title {
  margin-top: auto;
  margin-bottom: auto;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.96px;
}
.acc_area_slider {
  padding-bottom: 50px;
}
.acc_area_slider .slick-arrow {
  position: absolute;
  bottom: 0;
  right: 15px;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  cursor: pointer;
  border: 2px solid var(--text-color);
  border-radius: 6px;
  background: transparent;
}
.acc_area_slider .slick-arrow.prev-arrow {
  right: 50px;
}
.acc_area_slider .slick-arrow.slick-disabled {
  opacity: 0.5;
}
.acc_area_slider .slick-arrow.slick-disabled svg * {
  opacity: 0.5;
}
.acc_area_slider.slick-slider .slick-list {
  overflow: visible;
}

/* About page CSS */
.hero-section {
  background: radial-gradient(
    78.5% 78.5% at 50% 21.5%,
    #1070b7 0%,
    #123e5f 100%
  );
  padding: 144px 0;
  color: var(--white);
  position: relative;
  overflow-x: hidden;
}
.hero-section h1 {
  margin-bottom: 28.44px;
  font-size: 60px;
  max-width: 65%;
}
.hero-section .aac_tags {
  text-align: left;
  max-width: 70%;
  font-size: 20px;
}
.hero-section .aac_tags p {
  margin-bottom: 0;
}
.hero-shape {
  position: absolute;
  right: -15px;
  bottom: 0;
  max-width: 80%;
}
.hero-img-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 50%;
}
.hero-with-man-section .aac_tags {
  max-width: 55%;
}
.hero-with-man-section .hero-shape,
.about-us-main .hero-section .hero-shape {
  display: none;
}
.about-us-main .hero-section .hero-img-shape {
  height: 100%;
}
.about-section .acc_area_slider::before {
  background: linear-gradient(
    180deg,
    rgba(18, 75, 118, 1) 50%,
    rgba(18, 62, 95, 1) 100%
  );
}
.about-section .acc_area_slider .slick-arrow {
  color: var(--white);
}
.about-section .acc_area_slider .slick-arrow {
  border-color: var(--white);
}
.about-section .acc_area_slider .slick-arrow svg * {
  stroke: var(--white);
}
.about-section .area-serve-section {
  padding: 150px 0 0;
}
.page-book-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.page-book-wrapper .btn {
  box-shadow: none;
}
.why-us-section .page-book-wrapper {
  padding-top: 16px;
}
.why-us-section .page-book-wrapper .btn-link {
  color: var(--secondary);
}
.powerhouse_wrapper .whyus_box {
  padding-top: 0;
  height: 100%;
}
.powerhouse_row {
  padding-top: 70px;
}
.powerhouse-team {
  border-radius: 6px;
  background: radial-gradient(
    78.5% 78.5% at 50% 21.5%,
    #1070b7 0%,
    #123e5f 100%
  );
  box-shadow: var(--box-shadow);
  color: white;
  display: flex;
  align-items: flex-end;
  margin: 30px 0;
}
.powerhouse-team h2 {
  margin-bottom: 30px;
}
.powerhouse-team h2 {
  margin-bottom: 30px;
}
.powerhouse-text {
  padding: 50px 0 50px 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 150.5%;
  letter-spacing: -0.32px;
}
.powerhouse-img {
  overflow: hidden;
  max-width: 250px;
  flex-shrink: 0;
  margin-left: 15px;
}
.powerhouse_row .acc_about_us_slider .slick-track {
  margin: 30px auto;
}
.powerhouse_row .acc_about_us_slider,
.powerhouse_row .acc_about_us_slider .slick-list,
.powerhouse_row .acc_about_us_slider .slick-track,
.powerhouse_row .acc_about_us_slider .slick-slide,
.powerhouse_row .acc_about_us_slider .card,
.powerhouse_row .whyus_box .card > img {
  height: 100%;
}
.powerhouse_row .acc_about_us_slider .card {
  height: calc(100% - 60px);
}
.powerhouse_row .acc_about_us_slider .card-title p {
  font-size: 13px;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: -0.24px;
  margin-bottom: 0;
}
.powerhouse_row .acc_about_us_slider .card-title h5 {
  margin: 10px 0;
}
.powerhouse_row .whyus_box .card-title {
  padding: 20px;
}
.powerhouse_wrapper .all-in-one-section {
  padding: 20px 0 0;
}
/* Inner service page CSS */
.page-book-wrapper .btn-light {
  color: var(--primary-dark);
}
.powerhouse-text .page-book-wrapper .btn-link {
  color: var(--white);
}
.inner-service-main .why-us-section h2 {
  margin-bottom: 30px;
}
.inner-service-main .powerhouse-text {
  padding: 40px 0 40px 40px;
  font-size: 13px;
  font-weight: 500;
  line-height: 141.5%;
  letter-spacing: -0.26px;
}
.help-box {
  border-radius: 6px;
  background: #0c1b27;
  box-shadow: var(--box-shadow);
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
}
.help-content-left {
  padding: 70px 30px 50px 100px;
}
.help-content-left h2 {
  font-size: 56px;
  letter-spacing: -1.107px;
  margin-bottom: 30px;
}
.help-content-left h3 {
  font-size: 23px;
  letter-spacing: -0.443px;
  margin-bottom: 25px;
}
.help-content-left p {
  font-size: 15px;
  font-weight: 500;
  line-height: 141.5%;
  letter-spacing: -0.295px;
}
.help-img-right {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.help-img-right img {
  max-width: 100%;
  height: auto;
}
.help-content-left .page-book-wrapper {
  margin-top: 30px;
}
.help-content-left .page-book-wrapper .btn-link {
  color: var(--secondary);
}
.enquire_left_box .page-book-wrapper {
  justify-content: center;
  margin-top: 30px;
}
/* Electrical service page CSS */
.top-service-section {
  padding: 85px 0 75px;
}
.top-service-section h1 {
  margin: 38px 0 48px;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}
.top-service-section .page-book-wrapper {
  justify-content: center;
}
.top-service-section .page-book-wrapper .btn-link {
  color: var(--secondary);
  font-weight: 800;
}
.top-service-card {
  margin: 70px 0 60px;
}
.top-service-card .card-title {
  font-size: 48px;
  line-height: 100%;
  letter-spacing: -0.96px;
}
.top-service-card .card-text {
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.4px;
  margin-top: 40px;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  color: #e5e3e2;
}
.top-service-card .card-text strong {
  color: var(--white);
}
.top-service-card .card_img {
  border-radius: 6px;
  min-height: 375px;
  object-fit: cover;
}
.our-service-section {
  background: #f5f5f5;
  padding: 130px 0 120px;
}
.our-service-section h2 {
  color: #414141;
}
.our_service_box .row > [class^="col-"] {
  margin-bottom: 30px;
}
.our_service_box .card {
  cursor: pointer;
  height: 100%;
}
.our_service_box .card::after {
  transition: all 0.15s ease-in-out;
}
.our_service_box .card:hover:after {
  height: 100%;
}
.our_service_box .card > img {
  height: 100%;
  max-height: 435px;
  min-height: 435px;
  object-fit: cover;
  object-position: center;
}
/* Review page CSS */
.reviews-section {
  padding: 90px 0 0;
}
.reviews-section h3 {
  font-weight: 600;
  margin: 35px 0;
}
.reviews-section .page-book-wrapper {
  justify-content: center;
}
.reviews-section .page-book-wrapper .btn-link {
  color: var(--secondary);
  font-weight: 800;
}
.review-box {
  padding: 100px 0 10px;
}
.review-box .row > [class^="col-"] {
  margin-bottom: 30px;
}
.review-box .card {
  box-shadow: var(--box-shadow);
  color: var(--text-gray);
  border-radius: 0;
  height: 100%;
}
.review-box .card-header {
  padding: 15px 30px;
  border-bottom: 1px solid #eaeaed;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-box .card-body {
  padding: 30px;
}
.card-header-left,
.card-header-right,
.card-title-wrapper {
  display: flex;
  align-items: center;
}
.user-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: var(--orange);
  border-radius: 50%;
  margin-right: 12px;
}
.user-name {
  color: var(--dark-gray);
  font-size: 18px;
  line-height: 18px;
}
.review-time {
  font-size: 14px;
  line-height: normal;
  margin-right: 20px;
}
.card-title-wrapper {
  margin-bottom: 20px;
}
.review-box .card-title {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 0;
  margin-left: 20px;
}
.review-box .card-text {
  font-size: 16px;
}
/* Contact page CSS */
.contact-section {
  padding: 100px 0 0;
}
.contact-wrapper {
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0px 20px 12px 0px rgba(0, 0, 0, 0.24);
  padding: 70px 50px 60px;
}
.contact-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-header .ft_social_wrapper {
  margin-top: 0;
  margin-right: 25px;
  margin-bottom: 0;
}
.contact-header-right {
  display: flex;
  align-items: center;
}
.contact-header-right .btn {
  min-width: 240px;
  padding: 14px 36px;
  font-size: 20px;
}
.form-row {
  padding: 70px 0;
  align-items: center;
}
.contact-wrapper .aac_type_box_wrapper {
  padding-right: 25px;
}
.contact-wrapper .aac_form {
  padding-left: 25px;
}
.contact-main .area-serve-section {
  padding: 130px 0 0;
}
.mobile {
  display: none;
}
.row.aac_type_box_wrapper {
  justify-content: center;
}
/* Innera Area page CSS */
.area-top-section {
  padding: 135px 0 100px;
  color: var(--text-muted);
  font-weight: 500;
}
.area-top-section h1 {
  margin-bottom: 40px;
}
.area-top-section h3 {
  margin-bottom: 35px;
}
.area-gradient-section h2 {
  font-size: 3rem;
}
.area-top-btn-wrapper {
  margin-top: 70px;
}
.area-gradient-section {
  background: radial-gradient(
    78.5% 78.5% at 50% 21.5%,
    #1070b7 0%,
    #123e5f 100%
  );
  color: var(--white);
  padding: 170px 0;
  font-weight: 500;
}
.area-gradient-section .row {
  align-items: center;
}
.area-img {
  border-radius: var(--border-radius);
  border: 4px solid var(--white);
  background: #d9d9d9;
  box-shadow: var(--box-shadow);
}
.area_title > *:not(:last-child) {
  margin-bottom: 60px;
}
.area-details-section {
  padding: 100px 0 140px;
  font-weight: 500;
}
.area_details_title {
  padding-right: 16%;
}
.area_details_title h2 {
  margin-bottom: 40px;
  font-size: 3rem;
}
.area-details-wrapper {
  padding-top: 170px;
  color: #8e8e8e;
  line-height: 215%;
  font-weight: 400;
}
.area-details {
  margin-bottom: 40px;
}
.area-details h4 {
  font-size: 32px;
  line-height: 125.9%;
  letter-spacing: -0.311px;
  margin-bottom: 40px;
}
.area-top-btn-wrapper .btn-light {
  border: 2px solid #7a7a7a;
}
/* Area CSS */
.suburb-section {
  padding: 75px 0 80px;
}
.suburb-section ul {
  margin: 0;
  padding-left: 0;
}
.suburb-section .area-serve-title {
  align-items: center;
  margin-bottom: 40px;
}
.suburb-section .page-book-wrapper .btn-link {
  color: var(--secondary);
}
.suburb-section h5 {
  color: #23282d;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 23px;
}
.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary);
  background-color: var(--white);
  border: 1px solid var(--secondary);
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: 99px;
  transition: all 0.15s ease-in-out;
}
.btn-outline.active,
.btn-outline:focus,
.btn-outline:hover,
.btn-outline:active,
.filter-by-area-btns .btn-outline.active,
.filter-by-area-btns .btn-outline:focus,
.filter-by-area-btns .btn-outline:hover,
.filter-by-area-btns .btn-outline:active {
  color: var(--white);
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.filter-btns .btn-outline {
  margin-right: 3px;
  margin-bottom: 6px;
}
.filter-by-area-btns {
  padding: 95px 0 44px;
}
.filter-by-area-btns .btn-outline {
  border-color: #23282d;
  color: #23282d;
  margin: 0 6px 6px 0;
}
.area-result-box {
  color: #4d555b;
  font-family: "Raleway", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  padding: 23px 20px;
  background: var(--White);
  box-shadow: 0px 25px 10px -20px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.area-result-box a {
  color: #4d555b;
}
.map-section .gmap_canvas {
  width: 100%;
  height: 613px;
}
.map-section .gmap_canvas iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 613px;
}
.filter-select {
  display: none;
}
.filter-select select {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  line-height: 1;
  color: var(--secondary);
  background-color: var(--white);
  border: 1px solid var(--secondary);
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: 99px;
  transition: all 0.15s ease-in-out;
}
.filter-select select:focus,
.filter-select select:active {
  outline: none;
}
/* 27-11-2023 CSS */
.acc_us_slider .card,
.acc_area_slider .card,
.acc_about_us_slider .card {
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

/* loader svg style starts */
#areas-loader {
  text-align: center;
  margin-top: 20px;
}

#areas-loader svg {
  width: 50px; /* Adjust the width as needed */
}

.load-more-wrapper {
  text-align: center;
  margin-top: 30px;
}

.load-more-wrapper .btn {
  min-width: auto;
  font-size: 16px;
  padding: 10px 20px;
}
/* loader svg style ends */

/* 8-12-23 */
.curve-row {
  padding: 120px 0 0;
}
.curve-row .docs {
  display: grid;
  max-width: 1500px;
  margin: 0 auto;
  gap: 20px;
}

.curve-row .item {
  width: 100%;
  background: radial-gradient(
    78.5% 78.5% at 50% 21.5%,
    #1070b7 0%,
    #123e5f 100%
  );
  box-shadow: 0px 20px 12px -10px rgba(0, 0, 0, 0.24);
  display: flex;
  border-radius: 6px;
}

.curve-row .item p {
  margin-bottom: 1rem;
}

.curve-row .item > * {
  flex: 1;
}

.curve-row .item:nth-child(even) {
  flex-direction: row-reverse;
}

.curve-row .img {
  clip-path: polygon(
    100% 0,
    5.5% 0,
    3% 10%,
    3% 22%,
    3% 34%,
    7% 50%,
    8% 60%,
    10% 72%,
    8% 82%,
    10% 89%,
    8% 95%,
    6% 99%,
    5.5% 100%,
    100% 100%
  );
}

.curve-row .item:nth-child(even) .img {
  clip-path: polygon(
    0 0,
    94.8% 0,
    98% 15%,
    100% 26%,
    96% 39%,
    92% 56%,
    90% 66%,
    90% 78%,
    90% 81%,
    92% 91%,
    94% 100%,
    99% 100%,
    0 100%,
    0 100%
  );
}

.curve-row .text {
  padding: 100px 60px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
}

.curve-row .text h2 {
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 48px */
  letter-spacing: -0.96px;
}

.curve-row .text p,
.curve-row .text ul li,
.curve-row .text ol li {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  /* 28.8px */
  letter-spacing: -0.36px;
}

.curve-row .text ul,
.curve-row .text ol {
  padding: 0;
}

.curve-row .img {
  display: flex;
  height: 100%;
  width: 100%;
}

.curve-row .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.curve-row .img-bg {
  position: relative;
  display: flex;
}

.curve-row .img-bg::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 83px;
  background: url(../images/vertical-shape.png);
  top: 0;
  background-size: 100% 100%;
  left: 0;
  z-index: 2;
  background-repeat: no-repeat;
}

.curve-row .item:nth-child(even) .img-bg::after {
  left: unset;
  right: 0;
  transform: rotateY(180deg);
}

/* 8-12-23 end */

/* Respopnsive CSS */
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}

@media screen and (max-width: 1600px) {
  header .navbar .nav-link {
    padding: 0 10px;
  }
  header .navbar .btn {
    padding: 10px 20px;
    font-size: 16px;
    min-width: auto;
  }
  header .navbar-brand img {
    max-width: 180px;
  }
  header .navbar .btn.contact_btn {
    margin-right: 10px;
  }
  header .navbar .btn.call_btn {
    margin-left: 10px;
  }
}
/* 8-12-23 */
@media (max-width: 1550px) {
  .curve-row .text h2 {
    font-size: 40px;
  }

  .curve-row .text p,
  .curve-row .text ul li,
  .curve-row .text ol li {
    font-size: 16px;
  }
  .curve-row .docs {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }

  .curve-row .img {
    clip-path: polygon(
      100% 0,
      7% 0,
      3% 10%,
      3% 22%,
      3% 34%,
      7% 50%,
      8% 60%,
      14% 80%,
      12% 82%,
      10% 91%,
      11% 93%,
      7% 101%,
      5.5% 100%,
      100% 100%
    );
  }

  .curve-row .item:nth-child(even) .img {
    clip-path: polygon(
      0 0,
      93% 0,
      98% 15%,
      100% 26%,
      96% 39%,
      92% 56%,
      90% 66%,
      86% 78%,
      86% 81%,
      88% 92%,
      92.5% 100%,
      99% 100%,
      0 100%,
      0 100%
    );
  }
}
/* 8-12-23 end  */
@media screen and (max-width: 1440px) {
  h1 {
    font-size: 3.25rem;
  }
  .enquire_section {
    padding: 120px 0 0;
  }
  .what-do-section {
    padding: 120px 0;
    padding-top: 470px;
  }
  .aac_video_wrapper {
    padding-top: 120px;
  }
  .what-do-section h3 {
    margin-bottom: 80px;
  }
  .why-us-section,
  .all-in-one-section,
  .wi-fi-section {
    padding: 120px 0;
  }
  .whyus_box {
    padding-top: 80px;
  }
  .about-section {
    padding: 120px 0 84px;
  }
  .area-serve-section {
    padding: 120px 0 70px;
  }
  .area-serve-title {
    margin-bottom: 50px;
  }
  .footer_wrapper {
    padding: 80px 0;
  }
  .copyright_ft {
    padding-bottom: 40px;
  }
  .acc_logo_sliders_container .acc_logo_slider_wrapper:last-child {
    margin-left: 0;
    margin-top: 20px;
  }
  .acc_logo_sliders_container {
    flex-direction: column;
  }
  .what_do_box .card-img-overlay {
    z-index: 1;
    --card-img-overlay-padding: 30px 20px;
  }
  .wi-fi-box .top-shape {
    max-width: 130px;
  }
  .acc_area_slider.slick-slider .slick-list {
    max-width: 90%;
  }
  .hero-section {
    padding: 10% 0;
  }
  .hero-shape {
    max-width: 60%;
  }
  .acc_area_slider::before {
    display: none;
  }
  .wi-fi-right img {
    height: 100%;
  }
  .about-section .area-serve-section {
    padding: 110px 0 0;
  }
  .powerhouse_row {
    padding-top: 50px;
  }
  .our-service-section {
    padding: 100px 0 80px;
  }
  .curve-row {
    padding: 100px 0 0;
  }
}
@media screen and (max-width: 1280px) {
  h1 {
    font-size: 3.15rem;
  }
  .home_hero_section h1 {
    margin-top: 30px;
    margin-bottom: 80px;
  }
  .home_hero_section {
    padding: 70px 0 100px;
  }
  .enquire_section {
    padding: 100px 0 0;
  }
  .what-do-section {
    padding: 100px 0;
    padding-top: 450px;
  }
  .aac_video_wrapper {
    padding-top: 100px;
  }
  .what-do-section h3 {
    margin-bottom: 70px;
  }
  .why-us-section,
  .all-in-one-section,
  .wi-fi-section {
    padding: 100px 0;
  }
  .whyus_box {
    padding-top: 60px;
  }
  .about-section {
    padding: 100px 0 64px;
  }
  .area-serve-section {
    padding: 100px 0 50px;
  }
  .area-serve-title {
    margin-bottom: 50px;
  }
  .footer_wrapper {
    padding: 70px 0;
  }
  .copyright_ft {
    padding-bottom: 30px;
  }
  .powerhouse_row {
    padding-top: 40px;
  }
  .about-section .area-serve-section {
    padding: 90px 0 0;
  }
  .hero-section {
    padding: 8% 0px;
  }
  .top-service-section {
    padding: 75px 0 65px;
  }
  .our-service-section {
    padding: 80px 0 60px;
  }

  /* 8-12-23 */
  .curve-row .item:nth-child(even) .img,
  .img {
    clip-path: none;
  }

  .curve-row .item:nth-child(even) .img-bg::after,
  .img-bg::after {
    display: none;
  }

  .curve-row .item,
  .curve-row .item:nth-child(even) {
    flex-direction: column-reverse;
  }

  .curve-row .text {
    padding: 30px;
  }

  .curve-row .text h2 {
    font-size: 30px;
  }
  .docs {
    padding: 10px;
  }
  .curve-row .text p,
  .curve-row .text ul li,
  .curve-row .text ol li {
    font-size: 16px;
  }
  /* 8-12-23 end  */
}
@media screen and (max-width: 1199.5px) {
  header ul.navbar-nav > li:last-child {
    display: block;
  }
  .nav-book-wrapper {
    display: none;
  }
  header .navbar .navbar-toggler {
    display: block;
  }
  header .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 20px;
    background-color: var(--white);
    box-shadow: 0px 2px 12px 0px #0000000d;
  }
  header .navbar-nav {
    flex-direction: column;
  }
  header .navbar .nav-link {
    padding: 10px;
    display: block;
  }
  header .navbar-nav {
    padding: 0.5rem 0;
  }
  header .navbar .dropdown-menu {
    border: var(--white);
    margin-top: 0;
    padding-left: 15px;
    position: static;
  }
  header .navbar .dropdown-menu .dropdown-divider {
    display: none;
  }
  header .navbar .btn.call_btn {
    margin-left: auto;
    margin-right: 12px;
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: var(--white);
    padding: 10px 20px;
    font-size: 16px;
  }
  /* Home Page CSS */
  .card-img-overlay {
    --card-img-overlay-padding: 3rem;
  }
  .service_box .card-title {
    font-size: 40px;
  }
  .enquire_right_box {
    padding: 48px;
  }
  .aac_type_box {
    height: 150px;
  }
  .what_do_box .card-title {
    font-size: 30px;
    margin-top: 20px;
  }
  .aac_video_wrapper {
    margin-bottom: -250px;
  }
  .what-do-section {
    padding-top: 350px;
  }
  .all-in-one-content {
    --card-img-overlay-padding: 3rem;
  }
  .about-right-wrapper {
    padding-left: 60px;
  }
  .wi-fi-left h2 {
    font-size: 40px;
  }
  .area-serve-section {
    padding: 100px 0 100px;
  }
  .our-service-section {
    padding: 100px 0 70px;
  }
  .area-serve-section .what_do_box .area-serve-card .card-title {
    font-size: 40px;
  }
  .area-serve-title {
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }
  .area-serve-title h2 {
    margin-bottom: 30px;
    font-size: 40px;
  }
  .powerhouse_row {
    display: block;
  }
  .powerhouse_row .acc_about_us_slider .card {
    height: 100%;
  }
  .powerhouse-team {
    margin-top: 20px;
  }
  .help-content-left h2,
  .top-service-card .card-title {
    font-size: 40px;
  }
  .suburb-section .area-serve-title {
    flex-direction: row;
  }
  .contact-header-right .btn {
    min-width: auto;
    padding: 14px 20px;
  }
  .curve-row {
    padding: 80px 0 0;
  }
}
@media screen and (max-width: 991px) {
  .mb-24 {
    margin-bottom: 24px;
  }
  .btn {
    padding: 10px 15px;
    font-size: 15px;
    min-width: 133px;
  }
  .footer_wrapper {
    padding: 60px 0;
  }
  .ft_right_navbar div[class^="col-"] {
    margin-bottom: 48px;
  }
  .ft_right_navbar {
    padding-left: 24px;
  }
  /* Home Page CSS */
  .card-img-overlay {
    --card-img-overlay-padding: 2rem;
  }
  .home_hero_section h1 {
    max-width: 90%;
  }
  .service_box .card-text {
    font-size: 18px;
    margin-bottom: 1rem;
  }
  .service_box .card-title {
    font-size: 35px;
  }
  .ft_right_navbar .order-2 {
    order: 3;
    margin-bottom: 0 !important;
  }
  .ft_right_navbar .order-3 {
    order: 4;
    margin-bottom: 0 !important;
  }
  .ft_right_navbar .order-4 {
    order: 2;
  }
  .acc_logo_slider_img {
    padding: 0 10px;
  }
  .acc_logo_slider_wrapper > p {
    font-size: 16px;
  }
  .aac_type_box {
    height: 180px;
  }
  .enquire_right_box {
    padding: 32px;
  }
  .what_do_box .row div[class^="col-"] {
    margin-bottom: 20px;
  }
  .whyus_box .card-title {
    font-size: 22px;
    padding: 30px 20px;
    /* padding-bottom: 10px; */
  }
  .all-in-one-service-box {
    margin-bottom: 20px;
  }
  .about-section {
    padding: 60px 0;
  }
  .about-left-content .about-btn .btn {
    padding: 14px 30px;
    min-width: 180px;
    font-size: 20px;
  }
  .why-us-section {
    padding: 70px 0;
  }
  .why-us-section .text-muted p:last-child {
    margin: 0;
  }
  .area-serve-section {
    padding: 60px 0 25px;
  }
  .about-right-wrapper {
    padding-left: 0;
    padding-top: 50px;
  }
  .wi-fi-left {
    padding: 20px 15%;
  }
  .wi-fi-box .top-shape {
    max-width: 90px;
  }
  .wi-fi-right .btn {
    padding: 11px 25px;
    font-size: 16px;
  }
  .wi-fi-right .btn svg {
    margin-right: 10px;
    width: 16px;
    height: 16px;
  }
  .about-section .area-serve-section {
    padding: 70px 0 0;
  }
  .powerhouse_row {
    padding-top: 50px;
  }
  .hero-section h1 {
    margin-bottom: 20px;
  }
  .help-content-left {
    padding: 70px 100px 50px 100px;
  }
  .top-service-section h1 {
    font-size: 3rem;
    max-width: 90%;
  }
  .review-box .card-header {
    padding: 10px 15px;
  }
  .user-img {
    width: 30px;
    height: 30px;
    margin-right: 6px;
  }
  .user-name {
    font-size: 14px;
    line-height: 14px;
  }
  .review-time {
    font-size: 12px;
    margin-right: 10px;
  }
  .card-header-right img {
    /* width: 65px; */
  }
  .review-box .card-body {
    padding: 15px;
  }
  .card-title-wrapper {
    margin-bottom: 15px;
  }
  .card-title-wrapper img {
    width: 15px;
  }
  .review-box .card-title {
    font-size: 20px;
    line-height: 20px;
    margin-left: 12px;
  }
  .review-box .card-text {
    font-size: 14px;
  }
  .reviews-section h1 {
    font-size: 3rem;
  }
  .review-box {
    padding: 50px 0 10px;
  }
  .contact-wrapper {
    padding: 40px;
  }
  .contact-wrapper .aac_type_box_wrapper {
    padding-right: 0;
    padding-bottom: 50px;
  }
  .contact-wrapper .aac_form {
    padding-left: 0;
  }
  .contact-header-right .social_icon {
    margin-right: 5px;
  }
  .contact-header .ft_social_wrapper {
    margin-right: 15px;
  }
  .form-row {
    padding: 40px 0 0;
  }
  .contact-wrapper h2 {
    font-size: 2rem;
  }
  .area-top-section,
  .area-gradient-section,
  .area-details-section {
    padding: 70px 0;
  }
  .area-top-section h1 {
    font-size: 50px;
  }
  .area-img {
    margin-top: 40px;
  }
  .area-details-wrapper {
    padding-top: 100px;
  }
  .suburb-section .area-serve-title {
    flex-direction: column;
  }
  .what_do_box .acc_area_slider .btn {
    min-width: 151px;
    padding: 12px 32px;
  }
  .page-book-wrapper .btn.btn-secondary {
    padding: 14px 30px;
    min-width: 180px;
    font-size: 20px;
  }
  .page-book-wrapper .btn.btn-link {
    font-size: 20px;
    padding: 14px 0 14px 20px;
  }
  .powerhouse-team .page-book-wrapper .btn.btn-link {
    font-size: 15px;
    padding: 10px 15px;
  }
  .curve-row {
    padding: 50px 0 0;
  }
  .whyus_box .card_img img {
    min-height: 200px;
    max-height: 200px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --box-shadow: 0px 16.44296px 9.86578px -8.22148px rgba(0, 0, 0, 0.24);
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  .home_hero_section {
    padding: 40px 0 60px;
  }
  .aac_tags {
    font-size: 15px;
  }
  .enquire_section {
    padding: 80px 0 0;
  }
  .aac_video_wrapper {
    padding-top: 90px;
  }
  .play-btn img {
    width: 56px;
  }
  .ft_left_navbar {
    text-align: center;
  }
  .ft_navbar_brand {
    margin-bottom: 47px;
  }
  .ft_social_wrapper {
    margin-top: 21px;
    margin-bottom: 60px;
  }
  .copyright_ft {
    display: none;
  }
  .copyright_text {
    flex-wrap: wrap;
    justify-content: center;
  }
  .copyright_text .ms-auto {
    margin: 10px 0 !important;
  }
  .enquire_left_box .card-title {
    font-size: 48px;
  }
  .all-in-one-section .enquire_left_box .card-title {
    font-size: 60px;
  }
  .acc_logo_sliders_container {
    display: block;
  }
  .acc_logo_slider_wrapper > p {
    font-size: 16px;
    flex-shrink: 0;
    width: 45%;
  }
  .acc_logo_slider_content {
    width: 55%;
  }
  .acc_logo_slider_wrapper .slick-track {
    align-items: center;
  }
  .aac_shape_bottom {
    max-width: 30%;
  }
  .enquire_left_box .card-text {
    font-size: 16px;
  }
  .aac_video_wrapper {
    margin-bottom: -150px;
  }
  .what-do-section {
    padding-top: 240px;
    padding-bottom: 130px;
  }
  .what-do-section h3 {
    font-size: 18px;
    margin-bottom: 64px;
  }
  .whyus_box {
    padding-top: 55px;
    margin-right: -10px;
  }
  .why_us_title {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .why_us_title h3,
  .why-us-section p {
    font-size: 18px;
  }
  .whyus_box .card > img {
    /* max-height: 415px; */
  }
  .all-in-one-section {
    padding: 24px 0 40px;
  }
  .about-left-content h2,
  .about-left-content h3 {
    margin-bottom: 30px;
  }
  .about-left-content h3,
  .about-left-content p {
    font-size: 18px;
  }
  .wi-fi-section {
    padding: 77px 0;
  }
  .inner-service-main .wi-fi-section {
    padding: 50px 0;
  }
  .wi-fi-left img,
  .wi-fi-left h2,
  .wi-fi-left h3 {
    margin-bottom: 30px;
  }
  .wi-fi-left {
    padding: 20px 5%;
    padding-top: 60px;
  }
  .wi-fi-left h2 {
    font-size: 50px;
  }
  .wi-fi-left h3 {
    font-size: 20px;
  }
  .wi-fi-right .btn {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    min-width: 228px;
  }
  .wi-fi-right .btn svg {
    width: 16px;
    height: 16px;
  }
  .acc_area_slider.slick-slider .slick-list {
    max-width: 80%;
  }
  .area-serve-btns {
    text-align: center;
  }
  .area-serve-btns > a:first-child {
    margin-right: 0;
  }
  .area-serve-btns .btn {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .hero-shape {
    max-width: 100%;
    right: 0;
  }
  .hero-section {
    padding: 100px 0 160px;
  }
  .hero-section .aac_tags {
    max-width: 100%;
  }
  .powerhouse_row {
    padding-top: 34px;
  }
  .powerhouse-team {
    margin-top: 34px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
  }
  .powerhouse-img {
    max-width: 100%;
    margin-left: 0;
  }
  .why-us-section h2 {
    /* font-size: 40px; */
    /* margin-bottom: 35px; */
  }
  .powerhouse-text,
  .inner-service-main .powerhouse-text {
    padding: 50px 30px 10px 30px;
    font-size: 14px;
  }
  .powerhouse_wrapper .all-in-one-section {
    /* padding: 20px 0 0; */
  }
  .why-us-section.powerhouse_wrapper {
    padding: 70px 0 50px;
  }
  .hero-with-man-section .hero-shape,
  .about-us-main .hero-section .hero-shape {
    display: block;
  }
  .hero-with-man-section .hero-img-shape,
  .about-us-main .hero-section .hero-img-shape {
    display: none;
  }
  .hero-section h1 {
    font-size: 46px;
  }
  .powerhouse-text .page-book-wrapper {
    justify-content: center;
  }
  .help-content-left {
    padding: 70px;
  }
  .all-in-one-content {
    --card-img-overlay-padding: 50px 40px;
  }
  .top-service-section h1 {
    font-size: 45px;
    margin: 26px auto 44px;
  }
  .top-service-card {
    margin: 56px 0 0px;
  }
  .electrical-service-main .top-service-section .acc_logo_sliders_container {
    display: none;
  }
  .top-service-section {
    padding: 56px 0 30px;
  }
  .our-service-section {
    padding: 60px 0 24px;
  }
  .acc_area_slider {
    padding-bottom: 0;
  }
  .top-service-card .card-text {
    font-size: 16px;
    margin-top: 25px;
    max-width: 70%;
  }
  .top-service-section .acc_logo_sliders_container {
    padding: 30px 0;
  }
  .reviews-section h3 {
    font-size: 20px;
  }
  .contact-section {
    padding: 65px 0 0;
  }
  .contact-wrapper {
    padding: 0 20px 65px;
    box-shadow: var(--box-shadow);
    margin: 0 -20px;
  }
  .contact-wrapper h2 {
    display: none;
  }
  .contact-header {
    flex-direction: column-reverse;
  }
  .contact-header h3 {
    font-size: 26px;
    letter-spacing: -0.534px;
    margin: 40px 0 16px;
  }
  .mobile {
    display: block;
  }
  .form-row {
    padding: 10px 0 0;
  }
  .form-row .aac_type_box_wrapper h3 {
    font-size: 1rem;
  }
  .area-top-section h3 {
    margin-bottom: 30px;
    font-size: 18px;
  }
  .area-top-section,
  .area-gradient-section {
    font-size: 1rem;
  }
  .area-top-btn-wrapper {
    margin-top: 40px;
  }
  .area_title > *:not(:last-child) {
    margin-bottom: 33px;
  }
  .area-details {
    font-size: 14px;
  }
  .area_details_title {
    padding-right: 0;
  }
  .about-social-btn img {
    max-height: 33.5px;
  }
  .area-filter-result .col-md-3 {
    flex: 0 0 auto;
    width: 50%;
  }
  .suburb-section {
    padding: 46px 0 50px;
  }
  .service_box {
    margin-bottom: 30px;
    margin-right: -10px;
    margin-left: -10px;
  }
  .home_hero_section h1 {
    margin: 40px auto 70px;
  }
  .service_box .card {
    margin: 30px 0;
  }
  .about-left-content .about-btn {
    margin-top: 37px;
  }
  .help-box .aac_shape_bottom {
    max-width: 50%;
  }
  .area-img img {
    height: 600px;
    object-fit: cover;
    object-position: left;
  }
  .filter-by-area-btns {
    padding: 45px 0;
  }
  .wi-fi-box {
    background-image: unset;
    height: auto;
  }
  .wi-fi-right img {
    display: block;
    height: 100%;
    object-position: center;
  }
  .powerhouse_row .acc_about_us_slider .slick-track {
    margin: 0 auto;
  }
  .curve-row {
    padding: 34px 0 0;
  }
  .what_do_box {
    margin-right: -10px;
  }
  .our_service_box .card > img {
    height: 342px;
    max-height: 100%;
  }
  /* .service_box .aac_slider .card > img {
    height: 428px;
    object-fit: cover;
  } */
  .what_do_box .card > img {
    height: 480px;
  }
  .hero-section h1 {
    max-width: 100%;
  }
  .whyus_box .card_img img {
    min-height: 240px;
    max-height: 240px;
  }
}
@media screen and (max-width: 576px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 1.625rem;
  }
  header .navbar .navbar-toggler-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
  header .navbar-brand img {
    max-width: 145px;
  }
  header .navbar .btn.call_btn {
    padding: 8px 15px;
    font-size: 14px;
    margin-right: 0;
  }
  .ft_right_navbar {
    padding-left: 0;
  }
  .home_hero_section {
    padding: 25px 0 50px;
  }
  .home_hero_section h1 {
    margin: 30px 0 10px;
    max-width: 100%;
    letter-spacing: -0.9px;
  }
  .aac_tags {
    font-size: 12px;
    letter-spacing: -0.25px;
  }
  .acc_logo_slider_wrapper > p {
    font-size: 14px;
    padding-right: 0;
  }
  .enquire_section {
    padding: 25px 0 0;
  }
  /* .enquire_left_box .card-text {
    font-size: 12px;
  } */
  .enquire_left_box .card-title {
    font-size: 33px;
    margin-bottom: 22px;
    letter-spacing: -0.667px;
  }
  .enquire_left_box .card .card_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .enquire_left_box .card-img-overlay {
    position: relative;
    padding-bottom: 50%;
  }
  .enquire_right_box h2 {
    margin-bottom: 22px;
  }
  .enquire_right_box .text-muted {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .aac_type_box_wrapper h3 {
    font-size: 14px;
  }
  .step_btn_wrapper {
    margin-top: 28px;
  }
  .aac_type_box {
    height: 120px;
  }
  .aac_type_box label {
    padding: 10px;
  }
  .row.aac_type_box_wrapper {
    margin-right: -5px;
    margin-left: -5px;
  }
  .row.aac_type_box_wrapper .col-4 {
    padding: 0 5px;
  }
  .acc_check_arrow svg {
    width: 14px;
    height: 14px;
  }
  .acc_check_arrow {
    top: 5px;
    right: 5px;
  }
  .col.form-group {
    margin-bottom: 23px;
    flex-basis: 100%;
  }
  .acc_file_input {
    display: none;
  }
  .submit_wrapper .btn {
    font-weight: 600;
    padding: 24px;
    font-size: 20px;
  }
  .aac_video_wrapper {
    margin-bottom: -100px;
  }
  .what-do-section {
    padding-top: 140px;
  }
  .all-in-one-service-box h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .all-in-one-service-box h3 {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .all-in-one-service-box .all-in-one-content p {
    font-size: 15px;
  }
  .all-in-one-right-box .aac_shape_bottom {
    max-width: 92px;
  }
  .all-in-one-right-box .card-content {
    max-width: 200px;
  }
  .all-in-one-right-box .btn {
    min-width: auto;
    font-size: 11px;
  }
  .hero-shape {
    right: -15%;
  }
  .help-box .top-shape {
    display: none;
  }
  .help-content-left {
    padding: 30px;
  }
  .help-content-left h3 {
    font-size: 18px;
  }
  .help-box .page-book-wrapper,
  .enquire_left_box .page-book-wrapper {
    display: none;
  }
  .top-service-card .card-content .ms-auto.mt-auto {
    display: none;
  }
  .form-row .aac_type_box_wrapper h3 {
    font-size: 0.875rem;
  }
  .contact-header p {
    font-size: 14px;
  }
  .area-filter-result .col-md-3 {
    flex: 0 0 auto;
    width: 100%;
  }
  .top-service-card .card-text {
    max-width: 100%;
  }
  .top-ac-service-card .card_img {
    min-height: 500px;
    object-position: 20%;
  }
  .about-img-wrapper {
    margin-bottom: 13px;
  }
  .top-service-section h1 {
    max-width: 100%;
  }
  .what_do_box .card > img {
    height: 400px;
  }
  .whyus_box .card-title {
    padding: 30px 50px;
  }
}
@media screen and (max-width: 376px) {
  header .navbar .btn.call_btn {
    padding: 8px 10px;
    font-size: 12px;
  }
  header .navbar-brand img {
    max-width: 135px;
  }
  .aac_type_box {
    height: 100px;
  }
  .aac_video_wrapper {
    margin-bottom: -100px;
  }
  .what-do-section {
    padding-top: 140px;
  }
  .whyus_box .card-title {
    font-size: 18px;
    padding: 25px;
    /* padding-bottom: 10px; */
  }
  .area-serve-section .what_do_box .area-serve-card .card-title {
    font-size: 35px;
  }
  .hero-section h1 {
    font-size: 40px;
  }
  .hero-section .aac_tags {
    font-size: 14px;
  }
  .help-content-left h2 {
    font-size: 30px;
  }
  .all-in-one-content {
    --card-img-overlay-padding: 2rem;
  }
  .all-in-one-section .enquire_left_box .card-title {
    font-size: 44px;
  }
  .contact-header-right {
    flex-direction: column;
  }
  .contact-header .ft_social_wrapper {
    margin-right: 0;
  }
}

/* slider 13-12 S*/

.slider-section {
	--body-bg: #F5F5F5;
	background-color: var(--body-bg);
	padding: 30px 0;
}

.slider-section .slider {
	max-width: 1500px;
	width:100%;
	position: relative;
	margin: auto;
}



.slider-section {
	font-family: 'Articulat CF', sans-serif;
}

.slider-section h2 {
	color: #33363F;
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	max-width: 1500px;
	margin: 60px auto;
	letter-spacing: -0.96px;
	text-transform: capitalize;
}

.slider-section h2 span {
	color: #EB7606;
}

.slick-track.slick-track {
	display: flex;
	gap: 15px;
    margin-left: 0;
}

.slick-track .slick-slide {
	height: unset;
}

.slider-section .docs {
	background: #fff;
	box-shadow: 0px 20px 12px -10px rgba(0, 0, 0, 0.24);

	border-radius: 6px;
	position: relative;
	overflow: hidden;
	color: #7A7A7A;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28.8px;
	padding: 60px;
	letter-spacing: -0.36px;
}

.slider-section .docs::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8px;
	background-color: #1070B7;
}

.slider-section .docs-img {
	background: radial-gradient(78.5% 78.5% at 50% 21.5%, #1070B7 0%, #123E5F 100%);
	color: #FFF;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.72px;

	box-shadow: 0px 20px 12px -10px rgba(0, 0, 0, 0.24);
	border-radius: 6px;
	position: relative;
	overflow: hidden;
	padding: 60px;
}

.slider-section .docs-img h4 {
	z-index: 1;
	position: relative;
	max-width: 80%;
}

.slider-section .docs-img img {
	position: absolute;
	bottom: 0;
	right: 0;
}

.slider-section .docs h4 {
	color: #33363F;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 43.2px;
	letter-spacing: -0.72px;
	margin-bottom: 20px;
}

.slider-section .slick-prev,
.slider-section .slick-next {
	z-index: 1;
	color: #33363F;
	display: none !important;
}


@media (max-width:1400px) {
	.slider-section h2 {
		font-size: 40px;
	}

	.slider-section .docs,
	.slider-section .docs-img {
		padding: 40px;
	}

	.slider-section .docs-img {
		font-size: 30px;
	}

	.slider-section .docs h4 {
		margin-bottom: 30px;
		font-size: 30px;
	}

}

/* 3 BLOCK CSS 13-12 S */


.residential-excellence {

	/* padding: 20px; */
	color: #fff;
	font-family: 'Articulat CF', sans-serif;
	text-align: center;
}

.residential-excellence-docs {
	display: grid;
	flex-wrap: wrap;
	/* max-width: 1500px; */
	margin: 0 auto;
	gap: 20px;
	/* grid-template-columns: repeat(3, 1fr); */
}
.residential-excellence-docs img{
	margin:auto !Important;
}
.residential-excellence .slick-track.slick-track{
  margin-left: auto;
}
.residential-excellence-docs-box {
	background: radial-gradient(78.5% 78.5% at 50% 21.5%, #1070B7 0%, #123E5F 100%);
	padding: 60px;
	border-radius:6px;
}

.residential-excellence-docs-box p {
	margin: 0;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28.8px;
	letter-spacing: -0.36px;
}

.residential-excellence-docs-box h3 {
	width: 80%;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	margin: 40px auto;
	line-height: 100%;
	letter-spacing: -0.72px;
}

@media (max-width:1200px) {
	.residential-excellence-docs {
		grid-template-columns: repeat(2, 1fr);
	}

	.residential-excellence-docs-box {
		padding: 40px;
	}
}

@media (max-width:768px) {
	.residential-excellence-docs {
		grid-template-columns: repeat(1, 1fr);
	}

	.residential-excellence-docs-box p {
		margin: 0;
	}

	.residential-excellence-docs-box {
		padding: 20px;
	}

	.residential-excellence-docs-box h3 {
		margin: 20px auto;
	}
}


/* WHY CHOOSE SECTION 13-12 */
.why-us-section {
	overflow-x: hidden;
	
}
.why-Choose-Us {
	/* background: radial-gradient(78.5% 78.5% at 50% 21.5%, #1070B7 0%, #123E5F 100%); */
	position:relative;
	padding: 160px 20px;
	color: #fff;
	font-family: 'Articulat CF', sans-serif;
	text-align: center;
}




.why-Choose-Us-docs img {
	margin:auto !Important; 
}

.why-Choose-Us h2 {
	margin-bottom: 60px !important;
	font-size: 48px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.96px;
}

.why-Choose-Us p {
	margin-bottom: 100px;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.4px;
	z-index:1;
	position:relative;
}

.why-Choose-Us-docs {
	display: grid;
	flex-wrap: wrap;
	max-width: 1500px;
	margin: 0 auto;
	gap: 20px;
	/* grid-template-columns: repeat(4, 1fr); */
	overflow:hidden;
  /* justify-content: center; */
}
.why-Choose-Us-docs .slick-track{
  margin: auto;
}
.why-Choose-Us-docs-box p {
	margin: 0;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 28.8px;
	letter-spacing: -0.36px;
}

.why-Choose-Us-docs-box h3 {

	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	margin: 40px 0;
	line-height: 100%;
	letter-spacing: -0.72px;
}
.why-Choose-Us:before {
    content:'';
    position: absolute;
    width:200%;
    height:100%;
    top: 0;
    left: 0;
    z-index: 0;
    transform: translate(-40%, 0);
    background: radial-gradient(78.5% 78.5% at 50% 21.5%,#1070b7 0%,#123e5f 100%);
}
.inner-service-main .why-us-section .why-Choose-Us h2 {
    margin-bottom: 100px;
    z-index: 1;
    position: relative;
}
.why-Choose-Us-docs-box {
    max-width: 260px;
}
.why-Choose-Us
.slick-track.slick-track
{
	justify-content: space-between;
}
@media (max-width:1200px){
	.inner-service-main .why-us-section .why-Choose-Us h2 {
		margin-bottom: 60px;
	}
}
@media (max-width:768px){
	.inner-service-main .why-us-section .why-Choose-Us h2 {
		margin-bottom: 60px;
	}
}

@media (max-width:1200px) {
	.why-Choose-Us-docs {
		grid-template-columns: repeat(2, 1fr);
	}

	.why-Choose-Us {
		padding: 100px 20px;
	}
}

@media (max-width:768px) {
	.why-Choose-Us-docs {
		grid-template-columns: repeat(1, 1fr);
	}

	.why-Choose-Us h2 {
		margin-bottom: 30px;
		font-size: 40px;
	}

	.why-Choose-Us {
		padding: 50px 20px;
	}

	.why-Choose-Us p {
		margin-bottom: 50px;
		font-size: 16px;
		line-height: 1.5;
	}

	.why-Choose-Us-docs-box p {
		margin: 0;
	}.why-Choose-Us-docs-box h3 {
		margin: 20px auto;
	}
}

:root {
	--pumpkin: #EB7606;
	--white: #fff;
	--light-grey: #F5F5F5;
	--maroon: #1A1112;
}

.btn-large-wrap {
	background-color: var(--pumpkin);
	width: 180px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	color: var(--white);
	text-align: center;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.4px;
	border: none;
	text-decoration: none;
	box-shadow: 0px 20px 12px -10px rgba(0, 0, 0, 0.24);
}

/* free wifi Section */
.free-wifi-section {
	background: var(--light-grey);
	/* padding: 160px 0px; */
}

.free-wifi-section .left-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
	color: var(--white);
	position: relative;
	align-items: start;
	height: 100%;
	justify-content: center;
	padding: 70px 0;
	padding-left: 80px;
}

.free-wifi-section .wrapper {
	background-image: url(../images/free-wifi-img.webp);
	background-color: var(--maroon);
	background-size: auto 100%;
	background-position: bottom right;
	background-repeat: no-repeat;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	-ms-border-radius: 6px;
	-o-border-radius: 6px;
}

.free-wifi-section .left-wrapper h2 {
	color: #FFF;
	font-family: 'Articulat CF', sans-serif;
	font-size: 36px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.72px;
}

.free-wifi-section .left-wrapper p {
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Articulat CF', sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	/* 28.8px */
	letter-spacing: -0.36px;

}

.left-wrapper .tagline {
	border-radius: 30px;
	background: #0056A8;
	display: inline-flex;
	padding: 16px 20px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: #FFF;
	font-family: 'Articulat CF', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: -0.32px;
}

.left-wrapper .tagline b {
	font-weight: 900;
	text-transform: capitalize;
}

.free-wifi-section .right-wrapper::after {
	content: '';
	background: url(../images/free-wifi-after.webp);
	width: 210px;
	height: 240px;
	position: absolute;
	rotate: 180deg;
	bottom: 0;
	right: 0;
	background-size: cover;
}

.free-wifi-section .right-wrapper {
	position: relative;
	height: 100%;
}

.right-wrapper img {
	display: none;
}

.wifi-right-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 20px 30px;
	color: var(--white);
	background: var(--pumpkin);
	font-size: 24px;
	font-style: normal;
	font-weight: 600;
	line-height: 140%;
	/* 33.6px */
	letter-spacing: -0.48px;
	border-radius: 6px;

}

.wifi-right-btn:hover {
	color: var(--white);
}

@media(max-width:1400px) {
	.free-wifi-section .left-wrapper {
		padding-left: 100px;
	}

	.free-wifi-section .left-wrapper h2 {
		width: 391.32px;
	}
}

@media(max-width:1200px) {
	.free-wifi-section .left-wrapper {
		padding: 60px;
	}.right-wrapper img {
		display: block;width: 100%;
	}.free-wifi-section .wrapper{
		background-image: none;
	}
	.free-wifi-section .left-wrapper h2{
		width: 100%;
	}
}

@media(max-width:768px) {

	.free-wifi-section .left-wrapper::after {
		content: '';
		background: url(../images/free-wifi-after.webp) no-repeat;
		position: absolute;
		top: 0;
		left: -50px;
		background-size: contain;
		max-width: 150px;
	}

	
	.free-wifi-section .left-wrapper h2 {
		padding: 0;
	}

	

	.wifi-right-btn {
		font-size: 16px;
		max-width: 228px;
		padding: 14px 20px;
		gap: 15px;
		left: 0;
		right: 0;
		margin: 0px auto;
	}

	.wifi-right-btn svg {
		max-width: 16px;
	}

	.free-wifi-section .right-wrapper img {
		width: 100%;
	}

	.free-wifi-section .left-wrapper {
		padding: 30px;
	}

	.free-wifi-section {
		padding: 70px 20px;
	}

	.free-wifi-section .wrapper {
		padding: 0;
		overflow: hidden;
		border-radius: 6px;
		-webkit-border-radius: 6px;
		-moz-border-radius: 6px;
		-ms-border-radius: 6px;
		-o-border-radius: 6px;
	}
	.left-wrapper span{
		font-size: 14px;flex-wrap: wrap;align-items: start;text-align: left;justify-content: start;
	}
	.free-wifi-section .left-wrapper {
		gap: 24px;
		overflow: hidden;
	}
}
@media (min-width:1200px) {
	.px-xl-0 {
		padding-left: 0;padding-right: 0;
	}
}
.px-0 {
	padding-left: 0;padding-right: 0;
}

.why-us-section.why-us-section2{
	padding:0px !Important;
}

/* free wifi Section */
/* Home page change */
.acc_do_slider{
  justify-content: center;
}
/* Home page change */


/* AIR CON PROJECTS */

.our-air-conditiong-services-docs {
    background-color: #FFF;
    padding: 35px 25px;
    margin-bottom: 20px;
}

.our-air-conditiong-services-docs h3 {
    color: #414141;
    font-size: 41.53px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 41.53px */
    letter-spacing: -0.831px;
    margin-bottom: 0px;
}

.our-air-conditiong-services-docs h3.mb-45 {
    margin-bottom: 45px;

}


.our-air-conditiong-services-docs p {
    color: #7A7A7A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.32px;
    margin-bottom: 20px;
    margin-top: 15px;
}

.our-air-conditiong-services-slider {
    margin-top: 20px;
    padding-bottom: 0;
    overflow: hidden;
}

.our-air-conditiong-services-slider .slick-arrow,
.our-air-conditiong-services-slider:before,
.our-air-conditiong-services-slider.acc_area_slider .slick-arrow,
.our-air-conditiong-services-slider.acc_area_slider:before {
    display: none !important;
}

.our-air-conditiong-services-slider .slick-track.slick-track {
    gap: 0;
}

.our-air-conditiong-services-slider .slick-slide {
    padding: 0 5px;
}

/* .our-air-conditiong-services-slider img.img-fluid {
    width: auto;
    max-width: unset;
} */

.our-air-conditiong-services-slider img.img-fluid {
    width: 380px;
    aspect-ratio: 1/1;
    max-width: unset;
    object-fit: cover;
    object-position: center;
}

@media (max-width:786px) {
    .our-air-conditiong-services-slider img.img-fluid {
        width: auto;
        max-width: 270px;
    }
    .our-air-conditiong-services-docs h3 {
        font-size: 35px;
    }
    .our-air-conditiong-services-docs {
        padding: 25px 15px;
    }
}
.acc_logo_slider_wrapper, .acc_logo_sliders_container, .acc_logo_slider{
  justify-content: center;
}

/* AIR CON PROJECTS END */