:root {
  --white: #ffffff;
  --header-height: 100px;
}


* {
  box-sizing: border-box;
}

html {
  margin: 0 !important;
  scroll-behavior: smooth !important;

}

#wpadminbar {
/*   display: none; */

}



body {
  font-family: "Noto Sans", serif;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

h1 {
  margin: 0;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

h4 {
  margin: 0;
}

h5 {
  margin: 0;
}

h6 {
  margin: 0;
}

p {
  margin: 0;
}

.page-id-260 #faq-section{
	display: none;
}

/* --------------------------  Header CSS Start ------------------ */

.sidebar-open {
  overflow: hidden;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.sidebar-open .overlay {
  opacity: 1;
  visibility: visible;
}

.header {
  background: #fff;
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 14px 0px #1D3FD033;

}

.header .upper_row {
  padding: 8px 0 8px 0;
  width: 575px;
  max-width: 100%;
  min-height: 34px;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0 0 0 60px;
  background: #EAEBF0;

}


.header .upper_row .inner_container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
}

.header .upper_row .inner_container a:hover {
  opacity: .7;
}

.header .upper_row .inner_container #header_phone_number {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.header .upper_row .inner_container #header_phone_number::before {
  content: url("../assets/call-icon.svg");
  position: relative;
  top: 1px;

}

.header .upper_row .inner_container #header_email_address {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.header .upper_row .inner_container #header_email_address::before {
  content: url("../assets/message-icon.svg");
  position: relative;
  top: 1px;

}




.row-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.row-wrap .logo-wrap a img {
  width: 122px;
}

.row-wrap .logo-wrap a img:hover {
  opacity: .9;
}

.header .header_btn {
  padding: 0;
}

.header .header_btn a {
  padding: 10px 23px 11px 25px;
  background: #1D3FD0;
  cursor: pointer;
  border-radius: 115px;
  font-size: 14px;
  font-weight: 400 !important;
  line-height: 19.07px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
}

.header .header_btn a:hover {
  opacity: .7;
}

.header .header_btn::after {
  content: none !important;
}

.menu-mobile-container {
  display: none;

}

.nav-list {
  display: flex;
  align-items: center;
  padding: 0;
  list-style: none;
  margin: 0;
  gap: 20px;

}

.nav-list li {
  padding: 15px 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}



.nav-list li a:hover {
  opacity: .9;
}

.nav-list .current-menu-item a {
  font-weight: 700;
}

.nav-list .current-menu-item .sub-menu a {
  background-color: transparent;
}



.hamburger {
  display: none;
  z-index: 99;
}

.hamburger .line {
  width: 25px;
  height: 2px;
  background-color: #122A5A;
  display: block;
  margin: 5px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(2) {
  width: 15px;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger.is-active .line {
  background-color: #122A5A;
}

.hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .line:nth-child(1) {
  -webkit-transform: translateY(6.5px) rotate(45deg);
  -ms-transform: translateY(6.5px) rotate(45deg);
  -o-transform: translateY(6.5px) rotate(45deg);
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.is-active .line:nth-child(3) {
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
  -ms-transform: translateY(-6.5px) rotate(-45deg);
  -o-transform: translateY(-6.5px) rotate(-45deg);
  transform: translateY(-6.5px) rotate(-45deg);
}

.header .nav-wrap {
  display: flex;
  align-items: center;
  margin-top: 35px;

}


.header .nav-wrap .menu-item-has-children::before {
  content: url("../assets/arrow-header.svg");
  position: absolute;
  right: -6px;
  top: 13px;
}

.header .nav-wrap .menu-item-has-children .sub-menu .menu-item-has-children::before {
  content: none;
}

.header .nav-wrap .menu-item-has-children .sub-menu li {
  width: 48%;
}


.header li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 21.79px;
  text-align: right;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;

}

.header .sub-menu li a {
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 19.07px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  padding: 6px 10px;


}

.header .sub-menu li .sub-menu li a {
  font-size: 14px !important;
  font-weight: 400 !important;
}

#menu-item-725 .sub-menu li {
  border-bottom: none;
}


.header .nav-wrap .menu-item-has-children .sub-menu {
  padding: 10px 15px 10px 15px;
  position: absolute;
  top: 52px;
  left: 2px;
  width: 665px;
  background: #FFF;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  box-shadow: 0px 14px 24px 0px #1D3FD033;
  border-radius: 0 0 5px 5px;
  gap: 5px;
}
#menu-item-627 .sub-menu {
	left: -120px;
}
.header .nav-wrap .menu-item-has-children .sub-menu li {
  flex-direction: column;
}

.header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu {
  position: static;
  width: 100%;
  flex-direction: column;
  padding: 0;
  box-shadow: none;
  gap: 0;
}

.header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li {
  width: 100%;
  padding: 5px 5px !important;
	background: #F7FAFF !important;
}

.nav-list li {
  align-items: flex-start;
}

#menu-item-360 .sub-menu {
  width: 420px;
}

#menu-item-627 > .sub-menu {
	max-height: 710px; 
	overflow-y: scroll; 
}


.header .nav-wrap .menu-item-has-children .sub-menu li {
  padding: 0px 0px !important;
  justify-content: flex-start;
  background: white !important;
  margin: 5px 0;
  border-radius: 5px;
}
.header .nav-wrap .menu-item-has-children .sub-menu li a{
	background: white !important;
}

.header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li a{
	background: #F7FAFF !important;
}

.header .nav-wrap .menu-item-has-children .sub-menu {
  display: none;
}



.header .nav-wrap .menu-item-has-children .sub-menu .sub-menu {
  display: flex;
}


/* .header .sub-menu li .sub-menu li {
  border-bottom: 1px solid #AFAFAF;
} */

.header .sub-menu li .sub-menu li:last-child {
  border-bottom: none;
}

.header .sub-menu li .sub-menu li a {
  padding: 10px 5px;
}


.header .nav-wrap .menu-item-has-children .sub-menu li a:hover {
  opacity: 1;
  color: #1D3FD0;
}

.header .nav-wrap .menu-item-has-children .sub-menu li::after {
  position: absolute;
  left: -9px;
  right: auto;
  transform: translate(0) scale(0.8);
  bottom: auto;
  top: 5px;
}

.header .nav-wrap .menu-item-has-children .sub-menu .sub-menu li::after {
  top: 10px;
}

.nav-list .current-menu-item .sub-menu a {
  color: #041148;
  font-weight: 400;
  font-size: 14px;
}

.nav-list .current-menu-item .sub-menu li .sub-menu li a {
  font-weight: 400 !important;
  font-size: 14px !important;
}

#menu-item-360 li a {
  font-weight: 400 !important;
  font-size: 14px !important;
}



.header .nav-wrap .menu-item-335 a::before {
  content: none;
}

.header .nav-wrap .menu-item-335 a::after {
  content: none;
}

.header .nav-wrap .menu-item-335 .sub-menu {
  flex-direction: column;
  padding: 0;
  position: absolute;
  top: 54px;
  right: 18px;
  width: 275px;
  border-radius: 7.348px;
  border: 1.196px solid #353634;
  background: #FFF;
  box-shadow: 0px 0px 13.13px 1.31px rgba(255, 255, 255, 0.30);
  display: none;
}

.header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
  right: -260px;
  top: 0px;
  display: none;
  width: 260px
}


.header .nav-wrap .menu-item-335 .sub-menu li {
  list-style: none;
  width: 100%;
  border-bottom: 1px solid #ACACAC;
  padding: 10px 0;
}

.nav-list .menu-item-335 .sub-menu .current-menu-item a {
  background-color: transparent;
  color: #2B2B2B !important;
}


.header .nav-wrap .menu-item-335 .sub-menu li a {
  color: #000 !important;
  font-size: 18.325px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 20px;
  text-align: left;
}

.header .nav-wrap .menu-item-335 .sub-menu li a::after {
  content: none;
}

.header .nav-wrap .menu-item-335 .sub-menu li a::before {
  content: none;
}




.nav-list .current-menu-item {
  position: relative;
}

.nav-list .current-menu-item::after {
  content: url("../assets/dot.svg");
  position: absolute;
  left: 50%;
  right: 50%;
  transform: translate(-50%);
  bottom: -4px;
}


.header .nav-wrap .cta-button {
  width: 95px;
  height: 40px;
  border-radius: 30px;
  background: rgba(18, 42, 90, 1);
  font-family: Open Sans;
  font-size: 15px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: 0em;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  display: flex;
  align-items: center;
  justify-content: center;

}

.header .nav-wrap .cta-button:hover {
  opacity: .8;
}

/* --------------------------  Header  CSS End ------------------ */


/* --------------------------  Footer CSS Start ------------------ */

footer {}

footer .upper_footer {
  background: #03081D;
  padding: 26px 0 42px 0;
  width: 100%;
  height: auto;
}

footer .upper_footer .footer_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}

footer .upper_footer .footer_wrapper .content_box {
  max-width: 395px;

}

footer .upper_footer .footer_wrapper .content_box img {
  max-width: 90px;
}

footer .upper_footer .footer_wrapper .content_box p {
  font-size: 14px;
  font-weight: 300;
  line-height: 26px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 100%;
  margin: 16px 0 0 0;

}

footer .upper_footer .footer_wrapper .links_box {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 61px;
  flex-wrap: wrap;
}


footer .upper_footer .footer_wrapper .links_box .links {}

footer .upper_footer .footer_wrapper .links_box .links h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}


footer .upper_footer .footer_wrapper .links_box .links h6 ul {}


footer .upper_footer .footer_wrapper .links_box .links ul li a {
  font-family: Noto Sans;
  font-size: 15px;
  font-weight: 300;
  line-height: 22px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  margin: 14px 0 0 0;
  display: block;

}

footer .upper_footer .footer_wrapper .links_box .links ul li a:hover {
  opacity: .7;
}


footer .lower_footer {
  background: #010412;
  padding: 13px 0;
  width: 100%;
  height: auto;

}

footer .lower_footer .lower_footer_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer .lower_footer .lower_footer_wrapper .details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 21px;
}

footer .lower_footer .lower_footer_wrapper .details a {
  font-size: 14px;
  font-weight: 400;
  line-height: 19.07px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}

footer .lower_footer .lower_footer_wrapper .details #phone::before {
  content: url("../assets/footer-call.svg");
  position: relative;
  top: 1px;
  margin-right: 8px;
}

footer .lower_footer .lower_footer_wrapper .details #email::before {
  content: url("../assets/footer-message.svg");
  position: relative;
  top: 1px;
  margin-right: 8px;
}

footer .lower_footer .lower_footer_wrapper a:hover {
  opacity: .7;
}



footer .lower_footer .lower_footer_wrapper h6 {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}

footer .lower_footer .lower_footer_wrapper .links_box {}

footer .lower_footer .lower_footer_wrapper .links_box ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

footer .lower_footer .lower_footer_wrapper .links_box ul li {
  border-right: 1px solid #fff;
  padding-right: 10px;
}

footer .lower_footer .lower_footer_wrapper .links_box ul li:last-child {
  border-right: none;
  padding-right: 0px;

}

footer .lower_footer .lower_footer_wrapper .links_box ul li a {
  font-size: 13px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}




















/* --------------------------  Footer CSS End ------------------ */




/* --------------------------  404 Page Start ------------------ */


#not_found {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#not_found .box h2 {
  color: #041148;
  text-align: center;
  font-size: 80px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
  max-width: 605px;
  margin: 30px auto 0;
}

#not_found .box h4 {
  color: #041148;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  max-width: 605px;
  margin: 50px 0 0 0;
}

#not_found .box p {
  color: #041148;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  max-width: 648px;
  margin: 25px 0 0 0;
}

#not_found .box a {
  padding: 21px 64px 21px 64px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  background: #1D3FD0;
  border-radius: 115px;
  cursor: pointer;
  color: #FFFFFF;
  min-height: 50px;
  text-transform: uppercase;
  margin: 50px auto 0;
}

#not_found .box a:hover {
  opacity: .8;
}


/* --------------------------  404 Page End ------------------ */

/* --------------------------  Thank You Page Start ------------------ */

#thank_you_section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

#thank_you_section .inner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;

}

#thank_you_section .inner-box h4 {
  color: #041148;
  text-align: center;
  font-size: 48px;
  font-style: normal;
  font-weight: 600;
  line-height: 44px;
  max-width: 605px;
  margin: 30px 0 0 0;
}

#thank_you_section .inner-box p {
  color: #041148;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  max-width: 700px;
  margin: 25px auto 0;
}

#thank_you_section .inner-box a {
  padding: 21px 64px 21px 64px;
  font-size: 18px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  background: #1D3FD0;
  border-radius: 115px;
  cursor: pointer;
  color: #FFFFFF;
  min-height: 50px;
  text-transform: uppercase;
  margin: 50px auto 0;
}

#thank_you_section .inner-box a:hover {
  opacity: .8;
}


/* --------------------------  Thank You Page End ------------------ */



.cta_main {
  padding: 14px 42px 14px 42px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  background: #1D3FD0;
  border-radius: 115px;
  cursor: pointer;
  color: #FFFFFF;
  min-height: 50px;
  text-transform: uppercase;

}


.cta_2 {
  padding: 13px 56px 12px 56px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  border-radius: 115px;
  border: 3px solid #FFFFFF;
  min-height: 50px;
  text-transform: uppercase;

}

.cta_3 {
  padding: 13px 26px 13px 26px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1D3FD0;
  border-radius: 115px;
  border: 3px solid #1D3FD0;
  min-height: 50px;
  text-transform: uppercase;

}

.cta_4 {
  padding: 13px 56px 12px 56px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1D3FD0;
  border-radius: 115px;
  border: 3px solid #1D3FD0;
  min-height: 50px;
  text-transform: uppercase;

}

.cta_5 {
  padding: 13px 49px 12px 49px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1D3FD0;
  border-radius: 115px;
  border: 3px solid #1D3FD0;
  min-height: 50px;
  text-transform: uppercase;
}

.cta_2::before {
  content: url("../assets/call.svg");
  margin-right: 5px;
  position: relative;
}

.cta_4::before {
  content: url("../assets/call-2.svg");
  margin-right: 5px;
  position: relative;
}

.cta_main:hover {
  opacity: .7;
}

.cta_2:hover {
  opacity: .7;
}

.cta_3:hover {
  opacity: .7;
}

.cta_4:hover {
  opacity: .7;
}

.cta_5:hover {
  opacity: .7;
}

.cta_box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}




/* --------------------------  Home Page Start ------------------ */


#home_banner_section {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 100%;
  position: relative;
  padding: 100px 0 240px;
  margin-top: var(--header-height);
}

#home_banner_section h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 58px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 579px;


}

#home_banner_section h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 538px;
  margin: 8px 0 0 0;
}

#home_banner_section .cta_box {
  margin: 44px 0 0 0;
  justify-content: flex-start;
}

#home_banner_section #banner_main_image {
  position: absolute;
  right: 70px;
  bottom: -160px;
}

#home_section_1 {
  padding: 0 0 0px 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}

#home_section_1 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;

}

#home_section_1 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 14px auto 0;
}

#home_section_1 .stats_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin: 48px auto 0;
}

#home_section_1 .stats_wrapper .box {
  width: 220px;
  max-width: 100%;
  min-height: 180px;
  height: auto;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 33px 18px 33px 18px;

}

#home_section_1 .stats_wrapper .box h5 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;

}

#home_section_1 .stats_wrapper .box h5 span:nth-of-type(2) {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 0 0 -4px;

}

#home_section_1 .stats_wrapper .box h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 182px;
  margin: 10px auto 0;
}


#home_section_2 {
  padding: 67px 0 90px 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}



#home_section_2 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;
  max-width: 580px;


}

#home_section_2 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 14px auto 0;
  max-width: 606px;


}

#home_section_2 .services_tab_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 26px auto 0;
}


#home_section_2 .services_tab_wrapper h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 0 auto;
  border-bottom: 4px solid #D9D9D9;
  width: 100%;
  padding-bottom: 8px;
  cursor: pointer;
}

#home_section_2 .services_tab_wrapper .active_service_tab {
  color: #1D3FD0;
  border-bottom: 4px solid #1D3FD0;
  width: 100%;
}


#home_section_2 .wrapper {
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin: 33px auto 0;
}

#home_section_2 .wrapper .card {
  width: 370px;
  max-width: 100%;
  min-height: 354px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 11px 11px 11px;
  cursor: pointer;
  transition: .5s all ease-in-out;

}

#home_section_2 .wrapper .card img {
  margin: 0 auto;
  width: 348px;
  max-height: 227px;
  border-radius: 10px;
}

#home_section_2 .wrapper .card h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 21px auto 0;

}

#home_section_2 .wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 3px auto 0;

}

#home_section_2 .wrapper .card:hover {
  background: #041148;
  box-shadow: 0px 14px 34px 0px #545DB326;

}

#home_section_2 .wrapper .card:hover h5 {
  color: #FFFFFF;

}

#home_section_2 .wrapper .card:hover h6 {
  color: #FFFFFF;
}


#home_section_2 .cta_box {
  margin: 65px auto 0;
}


#home_section_3 {
  padding: 52px 0 65px 0;
  width: 100%;
  height: auto;
  background: #EFF2FC;

}



#home_section_3 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;
  max-width: 480px;


}

#home_section_3 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 14px auto 0;
  max-width: 619px;


}

#home_section_3 #wollongong_wrapper {
  display: none;
}

#home_section_3 .industries_tab_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 26px auto 0;
}

#home_section_3 .industries_tab_wrapper h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 0 auto;
  border-bottom: 4px solid #D9D9D9;
  width: 100%;
  padding-bottom: 8px;
  cursor: pointer;

}

#home_section_3 .industries_tab_wrapper .active_industry_tab {
  color: #1D3FD0;
  border-bottom: 4px solid #1D3FD0;
  width: 100%;

}


#home_section_3 .wrapper {
  /* display: flex;
    align-items: flex-start;
    justify-content: center; */
  margin: 10px auto 0;
  max-width: 1200px;
}

#home_section_3 .wrapper .card {
  width: 238px !important;
  max-width: 238px !important;
  min-height: 310px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 25px 0px #545DB326;
  padding: 28px 12px 20px 12px;
  margin: 30px 7px 45px;
}

#home_section_3 .slick-track {
  display: flex !important;
  align-items: normal;
  justify-content: center;
  /* flex-wrap: wrap; */
}

#home_section_3 .wrapper .card img {
  margin: 0 auto;
}


#home_section_3 .wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 15px auto 0;
  max-width: 100%;
  width: 150px;
}

#home_section_3 .wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px auto 0;
  width: 180px;
  max-width: 100%;
  transition: all .3s ease-in-out;
}

#home_section_3 .wrapper .card:hover {
  background-color: #041148;

}

#home_section_3 .wrapper .card:hover img {
  filter: invert(100%) brightness(1000%) contrast(100%);

}

#home_section_3 .wrapper .card:hover h5 {
  color: #fff;
}

#home_section_3 .wrapper .card:hover h6 {
  color: #fff;
}

#home_section_3 .wrapper .slick-dots {
  bottom: -15px !important;
}

#home_section_3 .slick-dots li button:before {
  font-size: 60px !important;
  width: 20px !important;
  opacity: 1 !important;
  color: #BAC6F1 !important;
}

#home_section_3 .slick-dots li.slick-active button:before {
  opacity: 1 !important;
  color: #FFFFFF !important;
}

#home_section_3 .slick-dots li {
  margin: 0 4px !important;
}















#home_section_3 .cta_box {
  margin: 60px auto 0;
}


#home_section_4 {
  padding: 80px 0 75px 0;
  width: 100%;
  height: auto;
  background: #FFF;

}

#home_section_4 .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 101px;
}


#home_section_4 .wrapper .content_wrapper {}

#home_section_4 .wrapper .content_wrapper h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 340px;


}



#home_section_4 .wrapper .content_wrapper h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 499px;
  margin: 14px 0 0 0;

}

#home_section_4 .wrapper .content_wrapper img {
  margin: 14px auto 0;
}


#home_section_4 .cards_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  width: 500px;
  max-width: 100%;

}


#home_section_4 .cards_wrapper .card {
  max-width: 100%;
  width: 100%;
  width: 500px;
  min-height: 103px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 16px 25px 20px 21px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 29px;
}

#home_section_4 .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 220px;


}

#home_section_4 .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 380px;


}


#home_section_4 .cta_box {
  margin: 54px auto 0;
}


#home_section_5 {
  padding: 70px 0 80px 0;
  width: 100%;
  height: auto;
  background: #EFF2FC;
}

#home_section_5 .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 115px;
}

#home_section_5 .wrapper .content_wrapper {}

#home_section_5 .wrapper .content_wrapper h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 520px;

}


#home_section_5 .wrapper .content_wrapper p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 531px;
  margin: 20px 0 0 0;
}

#home_section_5 .wrapper .content_wrapper .cta_box {
  margin: 34px 0 0 0;
  justify-content: flex-start;
}



#home_section_5 .wrapper .right_wrapper #section_image_main {
  max-width: 528px;

}


#home_section_5 .wrapper .cards_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 0 0;
  text-align: center;
}

#home_section_5 .wrapper .cards_wrapper .card {
  text-align: center;
  width: 252px;
  max-width: 100%;
  min-height: 221px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 24px 18px 24px 18px;

}

#home_section_5 .wrapper .cards_wrapper .card img {
  margin: 0 auto;
}

#home_section_5 .wrapper .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 15px 0 0 0;
  max-width: 220px;

}

#home_section_5 .wrapper .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 216px;
}



#home_section_6 {
  padding: 75px 0 119px 0;
  width: 100%;
  height: auto;
  background: #FFF;
}


#home_section_6 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 640px;
  margin: 0 auto;

}

#home_section_6 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 619px;
  margin: 14px auto 0;
}


#home_section_6 .cards_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 39px 0 0 0;
  gap: 0px;
  flex-wrap: wrap;
}

#home_section_6 .cards_wrapper .card {
  width: 305px;
  max-width: 100%;
  min-height: 187px;
  border-radius: 10px;
  padding: 0px 0 0px 45px;
  position: relative;
  z-index: 9;
}

#home_section_6 .cards_wrapper .card::after {
  content: url("../assets/card-bg-2.png");
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0px 14px 34px #545DB326);
}

#home_section_6 .cards_wrapper .card:first-of-type {
  padding: 0px 0 0px 20px;
}

#home_section_6 .cards_wrapper .card:first-of-type::after {
  content: url("../assets/card-bg-1.png");
}

#home_section_6 .cards_wrapper .card:last-of-type::after {
  content: url("../assets/card-bg-3.png");
}

#home_section_6 .cards_wrapper .card h5 {
  font-size: 23px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  background-color: #1D3FD0;
  max-width: 44px;
  min-height: 51px;
  border-radius: 0px 0px 10px 10px;
  padding: 8px 9px 7px 8px;
  position: relative;
  z-index: 9;

}

#home_section_6 .cards_wrapper .card h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 9px 0 0 0;
  position: relative;
  z-index: 9;
}

#home_section_6 .cards_wrapper .card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 235px;
  position: relative;
  z-index: 9;
}



#home_section_6 .cta_box {
  margin: 60px auto 0;
}


#home_section_7 {
  width: 100%;
  height: auto;
}

#home_section_7 .wrapper {
  max-width: 1180px;
  border-radius: 10px;
  background: #041148;
  padding: 60px 96px 60px 49px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 140px;
  margin: 0 auto;
}

#home_section_7 .wrapper h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 555px;


}

#home_section_7 .wrapper p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 535px;
  margin: 18px 0 0 0;

}

#home_section_7 .wrapper .cta_box {
  margin: 32px 0 0 0;
  justify-content: flex-start;
}


#home_section_7 .wrapper #section_image_main {
  max-width: 353px;

}



#home_blogs_section {
  width: 100%;
  height: auto;
  padding: 70px 0 84px 0;
  background: #FFFFFF;

}


#home_blogs_section h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 315px;
  margin: 0 auto;


}

#home_blogs_section .blogs_wrapper {
  margin: 40px auto 0;
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;

}

#home_blogs_section .blogs_wrapper .blog_card {
  width: 370px;
  max-width: 100%;
  min-height: auto;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 11px 11px 30px 11px;
}

#home_blogs_section .blogs_wrapper .blog_card img {
  border-radius: 10px;

}


#home_blogs_section .blogs_wrapper .blog_card h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 21px 0 0 0;

}

#home_blogs_section .blogs_wrapper .blog_card h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 8px 0 0 0;
  max-width: 326px;

}

#home_blogs_section .blogs_wrapper .blog_card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 306px;
  margin: 8px 0 0 0;


}

#home_blogs_section .blogs_wrapper .blog_card .read_more_btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1D3FD0;
  margin: 18px 0 0 0;
  display: block;
  border: none;
  background: transparent;
  cursor: pointer;
}

#home_blogs_section .blogs_wrapper .blog_card .read_more_btn:hover {
  opacity: .7;
}

#home_blogs_section .blogs_wrapper .blog_card:hover {
  opacity: .9;
}

#home_blogs_section .blogs_wrapper .blog_card .read_more_btn::after {
  content: url(../assets/blog-card-tick.svg);
  position: relative;
  top: 0px;
  left: 3px;
}

#home_blogs_section #noPostsSection_text {
  font-size: 46px;
  font-weight: 700;
  line-height: 64px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 550px;
  margin: 40px auto;
  border: 1px solid #333;
  padding: 20px;
  text-transform: capitalize;

}





#home_blogs_section .cta_box {
  margin: 50px auto 0;
}






#home_quote_form {
  background: #041148;
  padding: 48px 0 0px;
  width: 100%;
  height: auto;

}

#home_quote_form .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

#home_quote_form .wrapper .left_wrapper {
  align-self: flex-end;
}

#home_quote_form .wrapper #section_image_main {
  max-width: 560px;

}

#home_quote_form .wrapper .right_wrapper {
  padding-top: 30px;
}

#home_quote_form .wrapper .right_wrapper h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 450px;

}

#home_quote_form .wrapper .right_wrapper h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 506px;
  margin: 15px 0 0 0;
}




#home_quote_form .wrapper .right_wrapper form {
  max-width: 100%;
  width: 507px;
}

#home_quote_form .wrapper .right_wrapper form .row-50 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 19px;
  margin-top: 20px;
}

#home_quote_form .wrapper .right_wrapper form .row-100 {
  margin-top: 20px;

}

#home_quote_form .wrapper .right_wrapper form label {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}

#home_quote_form .wrapper .right_wrapper form input {
  background: #FFFFFF42;
  border: 1px solid #E7E7E7;
  width: 244px;
  max-width: 100%;
  height: 50px;
  border-radius: 5px;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  padding: 0 0 0 10px;
  margin-top: 5px;
}

#home_quote_form .wrapper .right_wrapper form select {
  background: #FFFFFF42;
  border: 1px solid #E7E7E7;
  width: 244px;
  max-width: 100%;
  height: 50px;
  border-radius: 5px;
  outline: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  padding: 0 0 0 10px;
  margin-top: 5px;
}

#home_quote_form .wrapper .right_wrapper form select {
  cursor: pointer;
}

#home_quote_form .wrapper .right_wrapper form select option {
  background: #041148;


}

#home_quote_form .wrapper .right_wrapper form .row-100 input {
  width: 100%;

}


#home_quote_form .wrapper .right_wrapper form input[type="submit"] {
  width: 506px;
  max-width: 100%;
  height: 50px;
  border-radius: 115px;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  background: #FFFFFF;
  color: #1D3FD0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 27px auto 0;
  text-transform: uppercase;

}

#home_quote_form .wrapper .right_wrapper form input[type="submit"]:hover {
  opacity: .8;
}

#home_quote_form .wrapper .right_wrapper form .wpcf7-response-output {
  margin: 0 0 30px 0 !important;
  color: #fff !important;
  text-align: center !important;
}


#home_quote_form .wrapper .right_wrapper form .wpcf7-spinner {
  margin: 10px auto 10px !important;
  text-align: center !important;
  display: flex !important;
  background-color: #fff !important;
}

#home_quote_form .wrapper .right_wrapper form .wpcf7-spinner::before {
  background-color: #000 !important;
}






/* --------------------------  Home Page End ------------------ */



/* --------------------------  About Us Page Start ------------------ */


.page-id-358 #home_section_1 {
  padding: 63px 0 0px 0;
  background: #EFF2FC;

}

.page-id-358 #home_section_2 {
  padding: 67px 0 108px 0;
  background: #EFF2FC;

}

.page-id-358 #home_section_2 .cta_box {
  display: none;
}



#about_banner_section {
  background: #041148;
  height: 100%;
  position: relative;
  padding: 100px 0 120px;
  margin-top: var(--header-height);
}

#about_banner_section h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 58px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 579px;


}

#about_banner_section h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 557px;
  margin: 12px 0 0 0;
}

#about_banner_section .cta_box {
  margin: 41px 0 0 0;
  justify-content: flex-start;
}


#about_section_1 {
  padding: 49px 0 64px 0;
  background-color: #fff;
  width: 100%;
  height: auto;
}

#about_section_1 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 609px;
  margin: 0 auto;
}


#about_section_1 p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 598px;
  margin: 20px auto 0;
}


#about_section_1 .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 93px;
  margin: 64px auto 0;
}

#about_section_1 .wrapper #section_image_main {
  max-width: 425px;


}

#about_section_1 .wrapper h4 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;

}

#about_section_1 .wrapper h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 559px;
  margin: 18px auto 0;
}


#about_section_2 {
  padding: 63px 0 91px 0;
  background: #FFFFFF;
  width: 100%;
  height: auto;

}

#about_section_2 .wrapper {
  max-width: 1100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}



#about_section_2 .wrapper #section_image_1_main {
  width: 366px;
  margin: 0 auto;
}

#about_section_2 .wrapper #section_image_2_main {
  max-width: 287px;
  margin: 36px auto 0;

}



#about_section_2 .wrapper .content_wrapper {}


#about_section_2 .wrapper .content_wrapper h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 600px;
  margin: 0;
}

#about_section_2 .wrapper .content_wrapper h4:last-of-type {
  margin: 34px 0 0 0;
}

#about_section_2 .wrapper .content_wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 592px;
  margin: 16px 0 0 0;
}



#about_section_2 .wrapper .points_wrapper {
  margin: 28px 0 0 0;
}


#about_section_2 .wrapper .points_wrapper .point {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  margin: 17px 0 0 0;

}

#about_section_2 .wrapper .points_wrapper .point h5 {
  width: 26px;
  max-width: 100%;
  min-height: 24px;
  border-radius: 0px 10px 10px 0px;
  background: #1D3FD0;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 0 0;


}


#about_section_2 .wrapper .points_wrapper .point h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 566px;

}


#about_section_2 .wrapper .points_wrapper .point h6 span {
  font-weight: 700;
}





#about_section_2 .cards_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin: 83px auto 0;
}

#about_section_2 .cards_wrapper .card {
  width: 380px;
  max-width: 100%;
  min-height: 471px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 25px 20px 24px 22px;

}

#about_section_2 .cards_wrapper .card h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 18px 0 0 0;
  max-width: 100%;
}

#about_section_2 .cards_wrapper .card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 12px 0 0 0;
  max-width: 315px;
}









/* --------------------------  About Us Page End ------------------ */





#global_strip_section {
  padding: 10px 0 10px 0;
  background: #041148;
  width: 100%;
  height: auto;

}



#global_strip_section .strip_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}


#global_strip_section .strip_wrapper #section_logo_main {
  max-width: 383px;

}

#global_strip_section .strip_wrapper .content {}

#global_strip_section .strip_wrapper .content h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 500px;

}



#global_strip_section .strip_wrapper .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 526px;
  margin: 18px 0 0 0;

}


#global_strip_section .strip_wrapper .content .cta_box {
  margin: 28px 0 0 0;
  justify-content: flex-start;
}





/* --------------------------  Why BNK Services Page Start ------------------ */








#why_bnk_banner_section {
  background: #041148;
  height: 100%;
  position: relative;
  padding: 80px 0 80px;
  margin-top: var(--header-height);
}

#why_bnk_banner_section h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 58px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}

#why_bnk_banner_section h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 496px;
  margin: 18px 0 0 0;
}


#why_bnk_section_1 {
  padding: 53px 0 51px 0;
  background-color: #fff;
  width: 100%;
  height: auto;
}

#why_bnk_section_1 .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1175px;
  margin: 0 auto;
}

#why_bnk_section_1 .wrapper #section_image_main {
  max-width: 574px;
}



#why_bnk_section_1 .wrapper h4 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 563px;

}

#why_bnk_section_1 .wrapper h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 559px;
  margin: 18px 0 0 0;
}






#why_bnk_section_2 {
  padding: 70px 0 70px 0;
  width: 100%;
  height: auto;
  background: #EFF2FC;

}

#why_bnk_section_2 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 580px;
  margin: 0 auto;
}


#why_bnk_section_2 h6 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 636px;
  margin: 15px auto 0;
}

#why_bnk_section_2 .cards_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 35px;
  margin: 42px auto 0;
  flex-wrap: wrap;
}


#why_bnk_section_2 .cards_wrapper .card {
  width: 370px;
  max-width: 100%;
  min-height: 448px;
  height: auto;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 27px 25px 30px 43px;
  position: relative;

}

#why_bnk_section_2 .cards_wrapper .card::before {
  content: url("../assets/blue-tick.svg");
  position: absolute;
  top: 31px;
  left: 0;
}

#why_bnk_section_2 .cards_wrapper .card:nth-child(4) {
  min-height: 391px;
}

#why_bnk_section_2 .cards_wrapper .card:nth-child(5) {
  min-height: 391px;
}

#why_bnk_section_2 .cards_wrapper .card:nth-child(6) {
  min-height: 391px;
}

#why_bnk_section_2 .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 300px;

}


#why_bnk_section_2 .cards_wrapper .card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 298px;
  margin: 11px 0 0 0;
}



#why_bnk_section_2 #bottom_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 600px;
  margin: 54px auto 0;
}







/* --------------------------  Why BNK Services Page End ------------------ */








/* --------------------------  Blog Page Start ------------------ */



#blog_banner_section {
  background: #041148;
  height: 100%;
  position: relative;
  padding: 102px 0 102px;
  margin-top: var(--header-height);
}



#blog_banner_section h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 58px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  margin: 0;
}


#blog_banner_section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  margin: 12px 0 0 0;
  max-width: 557px;

}

#blogs_main_section {
  background: #FFFFFF;
  padding: 79px 0 92px 0;
  width: 100%;
  height: auto;
}


#blogs_main_section .blogs_wrapper {
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;

}

#blogs_main_section .blogs_wrapper .blog_card {
  width: 370px;
  max-width: 100%;
  min-height: auto;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 11px 11px 30px 11px;
}

#blogs_main_section .blogs_wrapper .blog_card img {
  border-radius: 10px;

}


#blogs_main_section .blogs_wrapper .blog_card h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 21px 0 0 0;

}

#blogs_main_section .blogs_wrapper .blog_card h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 8px 0 0 0;
  max-width: 326px;

}

#blogs_main_section .blogs_wrapper .blog_card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 306px;
  margin: 8px 0 0 0;


}

#blogs_main_section .blogs_wrapper .blog_card .read_more_btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1D3FD0;
  margin: 18px 0 0 0;
  display: block;
  border: none;
  background: transparent;
  cursor: pointer;

}

#blogs_main_section .blogs_wrapper .blog_card .read_more_btn:hover {
  opacity: .7;
}

#blogs_main_section .blogs_wrapper .blog_card:hover {
  opacity: .9;
}

#blogs_main_section .blogs_wrapper .blog_card .read_more_btn::after {
  content: url("../assets/blog-card-tick.svg");
  position: relative;
  top: 0px;
  left: 3px;
}

#blogs_main_section #noPostsSection_text {
  font-size: 46px;
  font-weight: 700;
  line-height: 64px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 550px;
  margin: 40px auto;
  border: 1px solid #333;
  padding: 20px;
  text-transform: capitalize;

}


#blogs_main_section #loadMoreBlogs {
  padding: 14px 41px 14px 41px;
  width: auto;
  max-width: 248px;
  height: 50px;
  border-radius: 115px;
  border: 2px solid #1D3FD0;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1D3FD0;
  margin: 55px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;

}

#blogs_main_section #loadMoreBlogs:hover {
  cursor: pointer;
  opacity: .7;
}


#single_blog_banner {
  background: #041148;
  height: 100%;
  position: relative;
  padding: 100px 0 100px;
  margin-top: var(--header-height);

}

#single_blog_banner h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}


#single_blog_banner h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 58px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  margin: 9px 0 0 0;
  max-width: 522px;

}

#single_blog_banner .author {
  display: none ;
/*   display: flex; */
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin: 23px 0 0 0;
}

#single_blog_banner .author img {
  width: 41px;
}

#single_blog_banner .author h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}

#main_content_section {
  padding: 40px 0 100px 0;
  width: 100%;
  height: auto;
  background-color: #fff;

}



#main_content_section .inner_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#main_content_section .inner_box .content_box {
  max-width: 600px;
  width: 600px;
}

#main_content_section .inner_box .content_box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 19px 0 0 0;

}

#main_content_section .inner_box .content_box a {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1D3FD0;

}

#main_content_section .inner_box .content_box a:hover {
  opacity: .7;
  text-decoration: underline;

}

#main_content_section .inner_box .content_box h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 40px 0 0 0;

}

#main_content_section .inner_box .content_box img {
  border-radius: 5px;
  margin: 40px auto 0;
}



#main_content_section .inner_box .content_box h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 40px 0 0 0;
}

#main_content_section .inner_box .content_box h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 40px 0 0 0;
}

#main_content_section .inner_box .content_box h5 {
  font-family: Noto Sans;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 21px 0 0 0;
  display: flex;
  gap: 12px;
}

#main_content_section .inner_box .content_box h5::before {
  content: url("../assets/blog-tick.svg");
  position: relative;
  top: 3px;
}

#main_content_section .inner_box .content_box ul {
  margin: 3px 0 0 0;
}

#main_content_section .inner_box .content_box ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 17px 0 0 0;
  position: relative;
  padding-left: 36px;
}


#main_content_section .inner_box .content_box ul li::before {
  content: url("../assets/blog-tick.svg");
  position: absolute;
  top: 6px;
  left: 0;
}



#main_content_section .inner_box .content_box ol {
  margin: 3px 0 0 0;
  list-style-type: none;
  padding: 0;
  counter-reset: my-counter;
}

#main_content_section .inner_box .content_box ol li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 17px 0 0 0;
  position: relative;
  padding-left: 38px;
}

#main_content_section .inner_box .content_box ol li::before {
  counter-increment: my-counter;
  content: counter(my-counter);
  width: auto;
  padding: 0px 10px;
  height: 24px;
  border-radius: 0px 10px 10px 0px;
  position: absolute;
  top: 4px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1D3FD0;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;

}

#main_content_section .inner_box .content_box .quote-box {
  width: 100%;
  width: 100%;
  min-height: 181px;
  border-radius: 5px;
  background: #EFF2FC;
  padding: 20px 50px 5px 48px;
  position: relative;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 47px 0 0 0;
}

#main_content_section .inner_box .content_box .quote-box p {
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
}

#main_content_section .inner_box .content_box .quote-box::before {
  content: "";
  width: 4px;
  height: 75%;
  background: #1D3FD0;
  border-radius: 5px;
  position: absolute;
  left: 21px;
  top: 25px;
}

#main_content_section .inner_box .content_box .quote-box::after {
  content: url("../assets/quote-blog.svg");
  position: absolute;
  right: 19px;
  top: -18px;
}

#main_content_section .inner_box .content_box .quote-box img {
  width: 41px;
  margin: 14px 0 0 0;
}

#main_content_section .inner_box .content_box h6 {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  margin: 0;
  position: absolute;
  left: 105px;
  bottom: 31px;
  font-style: normal;

}

#main_content_section .inner_box .summary_box {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  background: #EFF2FC;
  padding: 38px;
  margin: 40px 0 0 0;
}

#main_content_section .inner_box .summary_box #summary_title {
  font-family: Noto Sans;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0;

}

#main_content_section .inner_box .summary_box #summary_title::before {
  content: none;
}

#main_content_section .inner_box .summary_box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 16px 0 0 0;

}

#main_content_section .inner_box .author_box {
	display: none ;
  margin: 51px auto 0;
}

#main_content_section .inner_box .author_box h6 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;
  position: static;
}

#main_content_section .inner_box .author_box img {
  margin: 13px auto 0;
  width: 61px;
}

#main_content_section .inner_box .author_box h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 6px auto 0;

}

#main_content_section .inner_box .share-box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  max-width: 600px;
  height: auto;
  margin: 16px 0 0 0;
}

#main_content_section .inner_box .share-box h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #000000;
  margin: 0;
  position: static;
}

#main_content_section .inner_box .share-box .a2a_kit {
  line-height: 0 !important;
}

#main_content_section .inner_box .author_box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 17px auto 0;
  max-width: 526px;
}

#main_content_section .inner_box .right_wrapper {
  height: 100%;
  position: sticky;
  top: 121px;
  width: 370px;
  max-width: 100%;
  min-height: 502px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 30px 27px 10px;
}

#main_content_section .inner_box .right_wrapper h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 288px;

}

#main_content_section .inner_box .right_wrapper h6 {
  font-family: Noto Sans;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 315px;
  margin: 7px 0 5px 0;
}

#main_content_section .inner_box .right_wrapper form label {
  font-family: Noto Sans;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #444444;
  margin: 11px 0 0 0;
  display: block;
}

#main_content_section .inner_box .right_wrapper form input {
  width: 100%;
  max-width: 100%;
  height: 50px;
  border-radius: 5px;
  background: #FCFCFC;
  border: 1px solid #C4C4C4;
  margin: 1px 0 0 0;
  outline: none;
  padding: 0 0 0 15px;
}


#main_content_section .inner_box .right_wrapper form input[type="submit"] {
  width: 100%;
  max-width: 100%;
  height: 56px;
  border-radius: 115px;
  background: #1D3FD0;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 0;
  outline: none;
  border: none;
  cursor: pointer;

}

#main_content_section .inner_box .right_wrapper form input[type="submit"]:hover {
  opacity: .7;
}


#main_content_section .inner_box .right_wrapper form .wpcf7-spinner {
  margin: 10px auto 0 !important;
  display: block !important;
}

.wpcf7-response-output {
  margin: 5px !important;
}



#related_blogs_section {
  padding: 0 0 87px 0;
  width: 100%;
  height: auto;
  background-color: #FFF;
}


#related_blogs_section h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;
}


#related_blogs_section .cta_box {
  margin: 50px auto 0;
}

#related_blogs_section .blogs_wrapper_2 {
  margin: 40px auto 0;
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}


#related_blogs_section .blogs_wrapper_2 .blog_card {
  width: 370px;
  max-width: 100%;
  min-height: auto;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 11px 11px 30px 11px;
}

#related_blogs_section .blogs_wrapper_2 .blog_card img {
  border-radius: 10px;
}

#related_blogs_section .blogs_wrapper_2 .blog_card h5 {
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 21px 0 0 0;
}

#related_blogs_section .blogs_wrapper_2 .blog_card h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 8px 0 0 0;
  max-width: 326px;
}

#related_blogs_section .blogs_wrapper_2 .blog_card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 306px;
  margin: 8px 0 0 0;
}

#related_blogs_section .blogs_wrapper_2 .blog_card .read_more_btn {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #1D3FD0;
  margin: 18px 0 0 0;
  display: block;
  border: none;
  background: transparent;
  cursor: pointer;
}

#related_blogs_section .blogs_wrapper_2 .blog_card .read_more_btn::after {
  content: url("../assets/blog-card-tick.svg");
  position: relative;
  top: 0px;
  left: 3px;
}

#related_blogs_section .blogs_wrapper_2 .blog_card:hover {
  opacity: .9;
}


#related_blogs_section .blogs_wrapper_2 .blog_card .read_more_btn:hover {
  opacity: .7;
}







/* --------------------------  Blog Page End ------------------ */






/* --------------------------  Contact US Page Start ------------------ */



#contact_banner_section {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 100%;
  position: relative;
  padding: 91px 0 100px;
  margin-top: var(--header-height);
}



#contact_banner_section h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 58px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  margin: 0;
}


#contact_banner_section p {
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  margin: 10px 0 0 0;
  max-width: 484px;

}



#contact_section_1 {
  padding: 50px 0 75px 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}

#contact_section_1 .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#contact_section_1 .wrapper .content_wrapper {}

#contact_section_1 .wrapper .content_wrapper .phone_number,
.email,
.address {
  font-size: 20px;
  font-weight: 400;
  line-height: 27.24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #444444;
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  max-width: 270px;

}

#contact_section_1 .wrapper .content_wrapper .phone_number::before {
  content: url("../assets/call-3.svg");
  position: relative;
  top: 2px;
}

#contact_section_1 .wrapper .content_wrapper .email {
  margin: 14px 0 0 0;

}

#contact_section_1 .wrapper .content_wrapper .email::before {
  content: url("../assets/message.svg");
  position: relative;
  top: 2px;
}

#contact_section_1 .wrapper .content_wrapper .address {
  margin: 19px 0 0 0;
}

#contact_section_1 .wrapper .content_wrapper .address::before {
  content: url("../assets/location.svg");
  position: relative;
  top: 2px;
}

#contact_section_1 .wrapper .content_wrapper a:hover {
  opacity: .7;
}


#contact_section_1 .wrapper .form_wrapper form {
  width: 550px;
  max-width: 100%;
  min-height: 600px;
  border-radius: 5px;
  background: #FFFFFF;
  box-shadow: 0px 4px 64px 0px #44539F26;
  padding: 14px 40px 5px;
  margin-top: -370px;
  position: relative;
}



#contact_section_1 .wrapper .form_wrapper form .row-50 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  margin: 19px 0 0 0;
}

#contact_section_1 .wrapper .form_wrapper form .row-100 {

  margin: 19px 0 0 0;
}

#contact_section_1 .wrapper .form_wrapper form label {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #444444;

}


#contact_section_1 .wrapper .form_wrapper form input,
select {
  background: #FCFCFC;
  border: 1px solid #C4C4C4;
  width: 226px;
  max-width: 100%;
  height: 50px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #444444;
  outline: none;
  padding: 0 0 0 15px;

}

#contact_section_1 .wrapper .form_wrapper form select {
  cursor: pointer;
}


#contact_section_1 .wrapper .form_wrapper form textarea {
  width: 100%;
  max-width: 100%;
  height: 100px;
  background: #FCFCFC;
  border: 1px solid #C4C4C4;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #444444;
   padding: 5px 0 0 15px;
    outline: none;

}


#contact_section_1 .wrapper .form_wrapper form input[type="submit"] {
  width: 100%;
  width: 100%;
  height: 56px;
  border-radius: 115px;
  background: #1D3FD0;
  font-size: 16px;
  font-weight: 500;
  line-height: 21.79px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-items: center;
  margin: 30px auto 0;
  text-transform: uppercase;

}

#contact_section_1 .wrapper .form_wrapper form input[type="submit"]:hover {
  opacity: .8;
  cursor: pointer;
}

#contact_section_1 .wrapper .form_wrapper form .wpcf7-response-output {
  margin: 0 0 20px 0 !important;
  text-align: center !important;
  font-size: 15px !important;
}

#contact_section_1 .wrapper .form_wrapper form .wpcf7-spinner {
  margin: 10px auto 5px;
  display: flex;
}


#contact_section_1 .google_map iframe {
  width: 100%;
  max-width: 100%;
  height: 360px;
  margin: 66px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;

}


#faq-section {
  background: #FFFFFF;
  padding: 65px 0 0px;
}


#faq-section h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;

}

#faq-section .faq-sec {
  max-width: 740px;
  margin: 38px auto 0;
}

#faq-section .faq-wrap {
  margin: 0 0px 26px;
  padding: 20px 24px 16px 28px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;

}

#faq-section .faq-wrap:last-of-type {
  margin: 0 0 40px;
}

#faq-section .faq-head {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 0px !important;
  padding-top: 0px;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;


}

#faq-section .faq-content {
  padding-top: 9px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  max-width: 613px;
  margin: 0px;
  color: #333;

}

#faq-section .faq-content p {
  padding-top: 9px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  max-width: 613px;
  margin: 0px;
  color: #333;

}

#faq-section .faq-content ul {
  padding-left: 25px;
  padding-bottom: 15px;
}

#faq-section .faq-content li {
  padding-top: 9px;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  max-width: 613px;
  margin: 0px;
  color: #333;
  list-style: disc;

}

#faq-section .faq-head.active {
  padding-bottom: 0px;
}

#faq-section .faq-content {
  display: none;
}

#faq-section .faq-head.active:after {
  content: url("../assets/up.svg");
  right: 16px;
  margin-left: 20px;
}

#faq-section .faq-head:after {
  content: url("../assets/down.svg");
  right: 16px;
  margin-left: 20px;
}

#faq-section .cta_main {
  margin: 48px auto 0;
  display: table;
}









/* --------------------------  Contact US Page End ------------------ */


/* --------------------------  Facilities Page Start ------------------ */





#facilities_banner_section {
  background: #041148;
  height: auto;
  position: relative;
  padding: 120px 0 120px;
  margin-top: var(--header-height);
}

#facilities_banner_section h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 54px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 600px;

}

#facilities_banner_section h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 600px;
  margin: 10px 0 0 0;
}

#facilities_banner_section .cta_box {
  margin: 29px 0 0 0;
  justify-content: flex-start;
}

#facilities_banner_section .cta_box .cta_main {
  background-color: #fff;
  color: #1D3FD0;

}

#facilities_section_1 {
  padding: 60px 0 90px 0;
  background: #FFFFFF;
  width: 100%;
  height: auto;
}

#facilities_section_1 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;

}

#facilities_section_1 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 14px auto 0;
}

#facilities_section_1 .services_tab_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 26px auto 0;
}

#facilities_section_1 .services_tab_wrapper h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 0 auto;
  border-bottom: 4px solid #D9D9D9;
  width: 100%;
  padding-bottom: 8px;
  cursor: pointer;
  max-width: 400px;
}

#facilities_section_1 .services_tab_wrapper .active_facilites_service_tab {
  color: #1D3FD0;
  border-bottom: 4px solid #1D3FD0;
  width: 100%;
}


#facilities_section_1 .wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: flex-start;
  gap: 20px;
  margin: 50px auto 0;
  max-width: 1185px;
}


#facilities_section_1 .wrapper .card {
  width: 280px;
  max-width: 100%;
  min-height: 245px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 29px 24px 30px 24px;
  cursor: pointer;
  transition: .5s all ease-in-out;
}




#facilities_section_1 .wrapper .card img {
  margin: 0 auto;
}


#facilities_section_1 .wrapper .card h5 {
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 22px auto 0;
}

#facilities_section_1 .wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 3px auto 0;
  max-width: 240px;
}

#facilities_section_1 .wrapper .card:hover {
  background: #041148;
  box-shadow: 0px 14px 34px 0px #545DB326;
}

#facilities_section_1 .wrapper .card:hover h5 {
  color: #fff !important;
}

#facilities_section_1 .wrapper .card:hover h6 {
  color: #fff !important;
}

#facilities_section_1 .wrapper .card:hover img {
  filter: invert(100%) brightness(1000%) contrast(100%);
}






#facilities_section_3 {
  padding: 72px 0 73px 0;
  width: 100%;
  height: auto;
  background: #EFF2FC;

}

#facilities_section_3 .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 101px;
}


#facilities_section_3 .wrapper .content_wrapper {}

#facilities_section_3 .wrapper .content_wrapper h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 340px;


}



#facilities_section_3 .wrapper .content_wrapper h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 499px;
  margin: 14px 0 0 0;

}

#facilities_section_3 .wrapper .content_wrapper img {
  margin: 12px auto 0;
}


#facilities_section_3 .cards_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  width: 500px;
  max-width: 100%;

}


#facilities_section_3 .cards_wrapper .card {
  max-width: 100%;
  width: 100%;
  width: 500px;
  min-height: 103px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 16px 25px 20px 21px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 29px;
}

#facilities_section_3 .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 220px;


}

#facilities_section_3 .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 380px;


}


#facilities_section_3 .cta_box {
  margin: 54px auto 0;
}


















/* --------------------------  Facilities Page End ------------------ */







/* --------------------------  Facilities Single Page Start ------------------ */



#mobile_image_section #mobile_image {
  display: none;
}

#facilities_single_banner_section {
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  height: 100%;
  position: relative;
  padding: 140px 0 140px;
  margin-top: var(--header-height);
}

#facilities_single_banner_section h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 58px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 580px;

}

#facilities_single_banner_section h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 496px;
  margin: 11px 0 0 0;
}

#facilities_single_banner_section .cta_box {
  margin: 29px 0 0 0;
  justify-content: flex-start;
}

#facilities_single_banner_section .cta_box .cta_main {
  background-color: #fff;
  color: #1D3FD0;

}

#facilities_single_banner_section #banner_main_image {
  position: absolute;
  right: -25px;
  bottom: -150px;
}


#facilities_single_section_1 {
  padding: 56px 0 90px 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}

#facilities_single_section_1 .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 105px;

}

#facilities_single_section_1 .wrapper #section_image_1_main {
  max-width: 477px;
  width: 100%;
  margin: 0 auto 0;

}

#facilities_single_section_1 .wrapper #section_image_2_main {
  max-width: 287px;
	width: 100%;
  margin: 16px auto 0;
}

#facilities_single_section_1 .wrapper h4 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 547px;

}

#facilities_single_section_1 .wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 20px 0 0 0;
  max-width: 559px;
}

#facilities_single_section_2 {
  background: #EFF2FC;
  padding: 70px 0 100px 0;
  width: 100%;
  height: auto;
}


#facilities_single_section_2 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;
  max-width: 638px;

}

#facilities_single_section_2 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 725px;
  margin: 15px auto 0;
}

#facilities_single_section_2 .cards_wrapper {
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin: 38px auto 0;
}



#facilities_single_section_2 .cards_wrapper .card {
  width: 370px;
  max-width: 100%;
  min-height: auto;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 25px 28px 30px 27px;

}

#facilities_single_section_2 .cards_wrapper .card h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 17px 0 0 0;
  max-width: 317px;
}


#facilities_single_section_2 .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 12px 0 0 0;
  max-width: 317px;
}




#facilities_single_section_3 {
  padding: 85px 0 85px 0;
  background: #041148;
  width: 100%;
  height: auto;
}

#facilities_single_section_3 .strip_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#facilities_single_section_3 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 540px;
}


#facilities_single_section_3 p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 608px;
  margin: 13px 0 0 0;
}


#facilities_single_section_3 .strip_wrapper .content .cta_box {
  margin: 29px 0 0 0;
  justify-content: flex-start;
}

#facilities_single_section_3 .strip_wrapper #section_logo_main {
  width: 490px;
}



#facilities_single_section_4 {
  padding: 70px 0 80px 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}

#facilities_single_section_4 .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 33px;
}

#facilities_single_section_4 .content_wrapper {
  width: 501px;
  max-width: 100%;
}

#facilities_single_section_4 .content_wrapper h3 {
  font-family: Noto Sans;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 505px;
}

#facilities_single_section_4 .content_wrapper img {
  max-width: 338px;
  width: 100%;
  margin: 22px auto 0;
}


#facilities_single_section_4 .wrapper .cards_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: normal;
  justify-content: center;
  gap: 20px;
  width: 650px;
  max-width: 100%;
}

#facilities_single_section_4 .wrapper .cards_wrapper .card {
  position: relative;
  width: 313px;
  max-width: 100%;
  min-height: auto;
  border-radius: 10px;
  color: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 12px 25px 10px 43px;

}

#facilities_single_section_4 .wrapper .cards_wrapper .card::before {
  content: url("../assets/blue-tick.svg");
  position: absolute;
  left: 0;
  top: 16px;
}

#facilities_single_section_4 .wrapper .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;

}


#facilities_single_section_4 .wrapper .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 245px;
}


#facilities_single_section_4 .cta_box {
  margin: 30px auto 0;
}



#facilities_single_section_5 {
  background: #EFF2FC;
  padding: 62px 0 90px 0;
  width: 100%;
  height: auto;
}

#facilities_single_section_5 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 560px;
  margin: 0 auto;
}

#facilities_single_section_5 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 768px;
  margin: 17px auto 0;
}




#facilities_single_section_5 .cards_wrapper {
  width: 610px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin: 23px auto 0;
}

#facilities_single_section_5 .cards_wrapper .card::before {
  content: url("../assets/blue-tick-2.svg");
  position: absolute;
  left: 0;
  top: 20px;
}

#facilities_single_section_5 .cards_wrapper .card {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: auto;
  border-radius: 10px;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 16px 25px 20px 58px;
  background: #FFFFFF;


}

#facilities_single_section_5 .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;

}

#facilities_single_section_5 .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 521px;
  margin: 5px 0 0 0;

}



#facilities_single_section_5 .cta_box {
  margin: 50px auto 0;
}



#facilities_single_section_6 {
  padding: 60px 0 60px 0;
  width: 100%;
  height: auto;
  background-color: #FCFCFC;
}


#facilities_single_section_6 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 682px;
  margin: 0 auto;
}

#facilities_single_section_6 .cards_wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  margin: 49px auto 0;
}



#facilities_single_section_6 .cards_wrapper .card {
  position: relative;
  padding: 60px 40px 15px 60px;
  width: 419px;
  max-width: 100%;
  min-height: 297px;
  position: relative;
  z-index: 9;
  background-image: url("../assets/bg-card-2.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  filter: drop-shadow(0px 14px 34px #545DB326);

}


#facilities_single_section_6 .cards_wrapper .card:first-of-type {
  width: 385px;
  padding: 60px 40px 25px 20px;
  background-image: url("../assets/bg-card-1.png");
}

#facilities_single_section_6 .cards_wrapper .card:last-of-type {
  width: 389px;
  padding: 60px 14px 25px 60px;
  background-image: url("../assets/bg-card-3.png");
}


#facilities_single_section_6 .cards_wrapper .card:first-of-type h6 {
  left: 20px;
}

#facilities_single_section_6 .cards_wrapper .card h6 {
  width: 44px;
  max-width: 44px;
  min-height: 51px;
  border-radius: 0px 0px 10px 10px;
  background: #1D3FD0;
  font-size: 23px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 55px;
  z-index: 9;

}

#facilities_single_section_6 .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0px 0 0 0;
  position: relative;
  z-index: 9;
}

#facilities_single_section_6 .cards_wrapper .card p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 315px;
  position: relative;
  z-index: 9;
}

#facilities_single_section_6 .cta_box {
  margin: 50px auto 0;
}






/* --------------------------  Facilities Single Page End ------------------ */



/* --------------------------  Additional Services Page Start ------------------ */




#additional_services_banner_section {
  background: #041148;
  height: 100%;
  position: relative;
  padding: 100px 0 120px;
  margin-top: var(--header-height);
}

#additional_services_banner_section h1 {
  font-size: 41px;
  font-weight: 700;
  line-height: 52px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 600px;

}

#additional_services_banner_section h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 600px;
  margin: 10px 0 0 0;
}

#additional_services_banner_section .cta_box {
  margin: 30px 0 0 0;
  justify-content: flex-start;
}


#additional_services_section_1 {
  background: #FFF;
  padding: 70px 0 100px 0;
  width: 100%;
  height: auto;
}

#additional_services_section_1 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;
  max-width: 380px;

}

#additional_services_section_1 p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 20px auto 0;
  max-width: 749px;
}


#additional_services_section_1 .services_tab_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 38px auto 0;
}

#additional_services_section_1 .services_tab_wrapper h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 0 auto;
  border-bottom: 4px solid #D9D9D9;
  width: 100%;
  padding-bottom: 8px;
  cursor: pointer;
  max-width: 400px;
}

#additional_services_section_1 .services_tab_wrapper .active_service_tab {
  color: #1D3FD0;
  border-bottom: 4px solid #1D3FD0;
  width: 100%;
}


#additional_services_section_1 .wrapper {
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin: 50px auto 0;
}

#additional_services_section_1 .wrapper .card {
  width: 370px;
  max-width: 100%;
  min-height: 354px;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 11px 11px 20px;
  box-shadow: 0px 14px 34px 0px #545DB326;
  cursor: pointer;
  transition: .5s all ease-in-out;
}

#additional_services_section_1 .wrapper .card img {
  margin: 0 auto;
  width: 348px;
  max-height: 227px;
  border-radius: 10px;
}

#additional_services_section_1 .wrapper .card h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 21px auto 0;
  max-width: 320px;
}

#additional_services_section_1 .wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 3px auto 0;
}

#additional_services_section_1 .wrapper .card:hover {
  background: #041148;
  box-shadow: 0px 14px 34px 0px #545DB326;
}

#additional_services_section_1 .wrapper .card:hover h5 {
  color: #FFFFFF;
}

#additional_services_section_1 .wrapper .card:hover h6 {
  color: #FFFFFF;

}







































/* --------------------------  Additional Services Page End ------------------ */





















/* --------------------------  Cleaning Services Page Start ------------------ */


#cleaning_services_banner_section {
  background: #041148;
  height: 100%;
  position: relative;
  padding: 100px 0 120px;
  margin-top: var(--header-height);
}

#cleaning_services_banner_section h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 54px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 600px;

}

#cleaning_services_banner_section h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 538px;
  margin: 10px 0 0 0;
}

#cleaning_services_banner_section .cta_box {
  margin: 30px 0 0 0;
  justify-content: flex-start;
}



#cleaning_services_section_1 {
  padding: 70px 0 92px 0;
}


#cleaning_services_section_1 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 678px;
  margin: 0 auto;

}

#cleaning_services_section_1 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 400px;
  margin: 11px auto 0;
}


#cleaning_services_section_1 .services_tab_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 21px auto 0;
}

#cleaning_services_section_1 .services_tab_wrapper h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 0 auto;
  border-bottom: 4px solid #D9D9D9;
  width: 100%;
  padding-bottom: 8px;
  cursor: pointer;
  max-width: 400px;
}

#cleaning_services_section_1 .services_tab_wrapper .active_cleaning_service_tab {
  color: #1D3FD0;
  border-bottom: 4px solid #1D3FD0;
  width: 100%;
}


#cleaning_services_section_1 .wrapper {
  display: flex;
  align-items: normal;
  justify-content: flex-start;
  gap: 35px;
  flex-wrap: wrap;
  margin: 50px auto 0;
  max-width: 1185px;
}


#cleaning_services_section_1 .wrapper .card {
  width: 370px;
  max-width: 100%;
  min-height: 354px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 11px 11px 28px;
  cursor: pointer;
  transition: .5s all ease-in-out;
}

#cleaning_services_section_1 .wrapper .card img {
  margin: 0 auto;
  width: 348px;
  max-height: 227px;
  border-radius: 10px;
}

#cleaning_services_section_1 .wrapper .card h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 21px auto 0;
}

#cleaning_services_section_1 .wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 3px auto 0;
}

#cleaning_services_section_1 .wrapper .card:hover {
  background: #041148;
  box-shadow: 0px 14px 34px 0px #545DB326;
}

#cleaning_services_section_1 .wrapper .card:hover h5 {
  color: #FFFFFF;
}

#cleaning_services_section_1 .wrapper .card:hover h6 {
  color: #FFFFFF;

}

.page-id-491 #cleaning_services_section_2 {
  background: #FFF;

}

#cleaning_services_section_2 {
  background: #EFF2FC;
  padding: 75px 0 101px 0;
  width: 100%;
  height: auto;
}

#cleaning_services_section_2 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 0 auto;
  max-width: 380px;

}

#cleaning_services_section_2 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 11px auto 0;
  max-width: 450px;
}


#cleaning_services_section_2 .services_tab_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  margin: 21px auto 0;
}

#cleaning_services_section_2 .services_tab_wrapper h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 0 auto;
  border-bottom: 4px solid #D9D9D9;
  width: 100%;
  padding-bottom: 8px;
  cursor: pointer;
}

#cleaning_services_section_2 .services_tab_wrapper .active_service_tab {
  color: #1D3FD0;
  border-bottom: 4px solid #1D3FD0;
  width: 100%;
}


#cleaning_services_section_2 .wrapper {
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
  margin: 35px auto 0;
}


#cleaning_services_section_2 .wrapper .card {
  width: 370px;
  max-width: 100%;
  min-height: 354px;
  border-radius: 10px;
  background: #FFFFFF;
  padding: 11px 11px 20px;
  box-shadow: 0px 14px 34px 0px #545DB326;
  cursor: pointer;
  transition: .5s all ease-in-out;
}

#cleaning_services_section_2 .wrapper .card img {
  margin: 0 auto;
  width: 348px;
  max-height: 227px;
  border-radius: 10px;
}

#cleaning_services_section_2 .wrapper .card h5 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 21px auto 0;
  max-width: 320px;
}

#cleaning_services_section_2 .wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 3px auto 0;
}

#cleaning_services_section_2 .wrapper .card:hover {
  background: #041148;
  box-shadow: 0px 14px 34px 0px #545DB326;
}

#cleaning_services_section_2 .wrapper .card:hover h5 {
  color: #FFFFFF;
}

#cleaning_services_section_2 .wrapper .card:hover h6 {
  color: #FFFFFF;

}

#cleaning_services_section_3 {
  background: #EFF2FC;
  padding: 72px 0 73px;
  width: 100%;
  height: auto;
}

#cleaning_services_section_3 .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 101px;
}

#cleaning_services_section_3 .wrapper .content_wrapper {}



#cleaning_services_section_3 .wrapper .content_wrapper h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 340px;
}

#cleaning_services_section_3 .wrapper .content_wrapper h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 499px;
  margin: 14px 0 0 0;
}


#cleaning_services_section_3 .wrapper .content_wrapper img {
  margin: 14px auto 0;
}

#cleaning_services_section_3 .cards_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  width: 500px;
  max-width: 100%;
}

#cleaning_services_section_3 .cards_wrapper .card {
  max-width: 100%;
  width: 100%;
  width: 500px;
  min-height: 103px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 16px 25px 20px 21px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 29px;
}

#cleaning_services_section_3 .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 220px;
}

#cleaning_services_section_3 .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 380px;
}


#cleaning_services_section_3 .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 380px;
}




#cleaning_services_section_3 .cta_box {
  margin: 54px auto 0;
}





/* --------------------------  Cleaning Services Page End ------------------ */



/* --------------------------  Cleaning Services Single Page Start ------------------ */


#cleaning_services_single_banner_section {
  height: 100%;
  position: relative;
  padding: 60px 0 90px;
  margin-top: var(--header-height);
  background: #041148;
}

#cleaning_services_single_banner_section h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 54px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 632px;

}

#cleaning_services_single_banner_section h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 600px;
  margin: 14px 0 0 0;
}

#cleaning_services_single_banner_section .cta_box {
  margin: 30px 0 0 0;
  justify-content: flex-start;
}





#cleaning_services_single_section_1 {
  padding: 85px 0 93px 0;
  width: 100%;
  height: auto;
  background: #FFFFFF;

}

#cleaning_services_single_section_1 .wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 75px;
}


#cleaning_services_single_section_1 .wrapper #section_image_main {
  width: 546px;
  border-radius: 10px;
}


#cleaning_services_single_section_1 .wrapper .content_wrapper {}



#cleaning_services_single_section_1 .wrapper .content_wrapper h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 546px;
}

#cleaning_services_single_section_1 .wrapper .content_wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 558px;
  margin: 20px 0 0 0;

}

#cleaning_services_single_section_1 .wrapper .content_wrapper .cta_main {
  margin: 30px 0 0 0;
  display: flex;
  justify-content: flex-start;
  max-width: 228px;
}

#cleaning_services_single_section_2 {
  background: #EFF2FC;
  width: 100%;
  padding: 68px 0 92px 0;
  height: auto;
}


#cleaning_services_single_section_2 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 700px;
  margin: 0 auto;
}


#cleaning_services_single_section_2 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 619px;
  margin: 14px auto 0;
}


#cleaning_services_single_section_2 .cards_wrapper {
  display: flex;
  align-items: normal;
  justify-content: center;
  gap: 35px;
  margin: 38px auto 0;
  flex-wrap: wrap;

}

#cleaning_services_single_section_2 .cards_wrapper .card {
  width: 370px;
  max-width: 100%;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 30px 20px 31px 27px;
  min-height: auto;

}

/* 
  #cleaning_services_single_section_2 .cards_wrapper .card:nth-child(-n+3) {
    min-height: 519px;
  } */

/* #cleaning_services_single_section_2 .cards_wrapper .card:nth-child(n+4):nth-child(-n+6) {
    min-height: 546px;
  }
  
  #cleaning_services_single_section_2 .cards_wrapper .card:nth-child(n+7) {
    min-height: 532px;
  } */

#cleaning_services_single_section_2 .cards_wrapper h6 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 19px 0 0 0;
  max-width: 304px;
}

#cleaning_services_single_section_2 .cards_wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 12px 0 0 0;
  max-width: 315px;
}



#cleaning_services_single_section_3 {
  padding: 57px 0 100px 0;
  width: 100%;
  height: auto;
  background-color: #fff;
}

#cleaning_services_single_section_3 .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 72px;
}

#cleaning_services_single_section_3 .wrapper .content_wrapper h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 520px;
}

#cleaning_services_single_section_3 .wrapper .content_wrapper h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 520px;
  margin: 11px 0 0 0;
}



#cleaning_services_single_section_3 .wrapper .content_wrapper img {
  margin: 23px auto 0;
  max-width: 370px;
}


#cleaning_services_single_section_3 .cards_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  width: 518px;
  max-width: 100%;
}

#cleaning_services_single_section_3 .cards_wrapper .card {
  max-width: 100%;
  width: 100%;
  width: 518px;
  min-height: 136px;
  border-radius: 10px;
  background: #FFFFFF;
  box-shadow: 0px 14px 34px 0px #545DB326;
  padding: 16px 22px 26px 23px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 21px;
}

#cleaning_services_single_section_3 .cards_wrapper .card img {
  margin-top: 6px;
}

#cleaning_services_single_section_3 .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 100%;
}

#cleaning_services_single_section_3 .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 407px;
}




#cleaning_services_single_section_4 {
  background: #EFF2FC;
  padding: 72px 0 95px 0;
  width: 100%;
  height: auto;
}

#cleaning_services_single_section_4 h3 {
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  max-width: 660px;
  margin: 0 auto;

}


#cleaning_services_single_section_4 h4 {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  max-width: 660px;
  margin: 17px auto 0;

}

#cleaning_services_single_section_4 .cards_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin: 34px auto 0;
  width: 610px;
  max-width: 100%;
}

#cleaning_services_single_section_4 .cards_wrapper .card {
  background: #FFFFFF;
  width: 100%;
  max-width: 100%;
  min-height: 132px;
  border-radius: 10px;
  box-shadow: 0px 14px 34px 0px #545DB326;
  position: relative;
  padding: 16px 31px 22px 59px;
}

#cleaning_services_single_section_4 .cards_wrapper .card::before {
  content: url("../assets/tick-services.svg");
  position: absolute;
  top: 20px;
  left: 0;
}

#cleaning_services_single_section_4 .cards_wrapper .card h5 {
  font-size: 20px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;

}

#cleaning_services_single_section_4 .cards_wrapper .card h6 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 2px 0 0 0;
  max-width: 521px;

}

#cleaning_services_single_section_4 .cta_box {
  margin: 45px auto 0;
}




/* --------------------------  Cleaning Services Single Page End ------------------ */






/* --------------------------  Basic Default Page Start ------------------ */

#banner_section_default {
  background: #041148;
  height: 100%;
  position: relative;
  padding: 100px 0 120px;
  margin-top: var(--header-height);
}


#banner_section_default h1 {
  font-size: 46px;
  font-weight: 700;
  line-height: 58px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
}



#banner_section_default h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #FFFFFF;
  max-width: 675px;
  margin: 18px 0 0 0;
}


#main_section_default {
  padding: 60px 0 70px 0;
  width: 100%;
  height: auto;
  background: #FFF;
}



#main_section_default p {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 15px 0 0;
}

#main_section_default h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 15px 0 0 0;
}

#main_section_default h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #041148;
  margin: 15px 0 0 0;
}

#main_section_default ul {
  list-style: disc;
  padding: 0 0 0 21px;
}


#main_section_default ul li {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #333333;
  margin: 12px 0 0 0;
  list-style: disc;
}











/* --------------------------  Basic Default Page End ------------------ */












/* --------------------------  Media Queries  ------------------ */
@media (max-width: 1510px) {}

@media (max-width: 1400px) {
  #home_section_1 .stats_wrapper .box {
    padding: 33px 14px 33px 14px;
  }

  #home_section_2 .wrapper {
    gap: 25px;
  }

  #home_section_2 .wrapper .card {
    width: 350px;
  }

  #home_section_5 .wrapper {
    gap: 50px;
  }

  #home_section_7 .wrapper {
    padding: 60px 70px 60px 49px;
  }

  #home_blogs_section .blogs_wrapper {
    gap: 25px;
  }

  #home_blogs_section .blogs_wrapper .blog_card {
    width: 350px;
  }

  #home_section_6 .cards_wrapper {
    gap: 40px;
  }

  #about_section_2 .cards_wrapper .card h5 {
    font-size: 22px;
  }

  #why_bnk_section_2 .cards_wrapper {
    gap: 25px;
  }


  #why_bnk_section_2 .cards_wrapper .card {
    width: 353px;
    padding: 27px 20px 25px 42px;
  }

  #blogs_main_section .blogs_wrapper {
    gap: 30px;
  }

  #blogs_main_section .blogs_wrapper .blog_card {
    width: 350px;
  }


  #cleaning_services_section_1 .wrapper {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
  }

  #cleaning_services_section_1 .wrapper .card {
    width: 360px;
  }


  #cleaning_services_section_2 .wrapper {
    gap: 15px;
  }

  #cleaning_services_section_2 .wrapper .card {
    width: 360px;
  }


  #cleaning_services_single_section_2 .cards_wrapper {
    gap: 15px;
  }

  #cleaning_services_single_section_2 .cards_wrapper .card {
    width: 360px;
  }


  #facilities_single_section_2 .cards_wrapper {
    gap: 21px;
  }


  #facilities_single_section_2 .cards_wrapper .card {
    width: 355px;
  }

  #facilities_single_section_4 .wrapper {
    gap: 25px;
  }

  #facilities_single_section_4 .wrapper .cards_wrapper {
    width: 730px;
  }



  #additional_services_section_1 .wrapper {
    gap: 30px;
  }

  #additional_services_section_1 .wrapper .card {
    width: 350px;
  }

  .nav-list {
    gap: 10px;
  }

  #facilities_section_1 .wrapper .card {
    width: 263px;
  }

  #facilities_single_section_6 .cards_wrapper {
    flex-wrap: wrap;
    gap: 40px;
  }

  #facilities_single_banner_section #banner_main_image {
    right: -10px;
    bottom: -150px;
  }

  #home_banner_section #banner_main_image {
    right: 0px;
    bottom: -160px;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu {
    left: -60px;



  }
}

@media (max-width: 1200px) {
  .header .header_btn a {
    display: none;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu {
    padding: 10px 10px 10px 10px;
    top: 52px;
    left: -240px;
  }
	#menu-item-627 .sub-menu {
		left: -360px;
	}
  .nav-list li a {
    font-size: 15px;
  }

  .nav-list {
    gap: 10px;
  }

  .nav-list .current-menu-item a {
    font-size: 14px;
  }



  #home_banner_section h1 {
    font-size: 40px;
    line-height: 52px;
    max-width: 505px;
  }

  #home_banner_section h2 {
    font-size: 22px;
    line-height: 36px;
  }

  #home_section_1 .stats_wrapper {
    gap: 20px;
    flex-wrap: wrap;
  }

  #home_section_5 .wrapper {
    gap: 50px;
    flex-wrap: wrap;
  }

  #home_section_6 .cards_wrapper {
    gap: 30px;
    flex-wrap: wrap;
  }

  #home_section_7 .wrapper {
    padding: 40px 25px 40px 25px;
    gap: 20px;
  }

  #home_section_7 .wrapper h3 {
    font-size: 34px;
    line-height: 48px;
  }

  #home_blogs_section .blogs_wrapper .blog_card {
    width: 370px;
  }

  #home_quote_form .wrapper {
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  #home_quote_form .wrapper .left_wrapper {
    align-self: center;
  }

  footer .upper_footer .footer_wrapper {
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
  }

  #about_banner_section h1 {
    font-size: 40px;
    line-height: 52px;
    max-width: 505px;
  }

  #about_banner_section h2 {
    font-size: 22px;
    line-height: 36px;
  }

  #about_section_2 .wrapper {
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 50px;
  }

  #about_section_2 .cards_wrapper {
    flex-wrap: wrap;
  }

  #why_bnk_banner_section h1 {
    font-size: 40px;
    line-height: 52px;
    max-width: 505px;
  }

  #why_bnk_banner_section h2 {
    font-size: 22px;
    line-height: 36px;
  }

  #why_bnk_section_1 .wrapper {
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1175px;
    margin: 0 auto;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  #why_bnk_section_2 .cards_wrapper {
    gap: 35px;
  }

  #why_bnk_section_2 .cards_wrapper .card:nth-child(4) {
    min-height: 448px;
  }

  #blogs_main_section .blogs_wrapper .blog_card {
    width: 370px;
  }


  #contact_section_1 .wrapper {
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 50px;
  }

  #contact_section_1 .wrapper .form_wrapper form {
    margin-top: -200px;
  }

  #contact_banner_section {
    padding: 91px 0 320px;
  }

  #contact_banner_section h1 {
    font-size: 40px;
    line-height: 52px;
    max-width: 505px;
  }

  #contact_banner_section p {
    font-size: 22px;
    line-height: 36px;
  }

  #contact_section_1 .wrapper .form_wrapper form {
    margin-top: -310px;
  }


  #cleaning_services_banner_section h1 {
    font-size: 40px;
    line-height: 52px;
    max-width: 505px;
  }


  #cleaning_services_banner_section h2 {
    font-size: 22px;
    line-height: 36px;
  }

  #cleaning_services_section_1 .wrapper {
    align-items: flex-start;
    justify-content: center;
    gap: 35px;
  }


  #cleaning_services_section_1 .wrapper .card {
    width: 370px;
  }


  #cleaning_services_section_2 .wrapper {
    gap: 35px;
  }


  #cleaning_services_section_2 .wrapper .card {
    width: 370px;
  }


  #cleaning_services_single_banner_section h1 {
    font-size: 40px;
    line-height: 52px;
    max-width: 505px;
  }

  #cleaning_services_single_banner_section h2 {
    font-size: 22px;
    line-height: 36px;
  }

  #cleaning_services_single_section_1 .wrapper #section_image_main {
    max-width: 400px;
  }

  #cleaning_services_single_section_1 .wrapper {
    gap: 30px;
  }

  #cleaning_services_single_section_1 .wrapper .content_wrapper h3 {
    font-size: 34px;
    max-width: 520px;
  }


  #cleaning_services_single_section_1 .wrapper .content_wrapper p {
    max-width: 520px;
  }

  #cleaning_services_single_section_2 .cards_wrapper {
    gap: 35px;
  }



  #facilities_single_section h1 {
    font-size: 40px;
    line-height: 52px;
    max-width: 505px;
  }

  #facilities_single_section h2 {
    font-size: 20px;
    line-height: 30px;
  }

  #facilities_single_section_1 .wrapper {
    gap: 0px;
  }

  #facilities_single_section_2 .cards_wrapper {
    gap: 30px;
  }

  #facilities_single_section_2 .cards_wrapper .card {
    width: 370px;
  }

  #facilities_single_section_3 h3 {
    font-size: 32px;
    line-height: 48px;
  }

  #facilities_single_section_3 .strip_wrapper #section_logo_main {
    width: 370px;
  }

  #facilities_single_section_4 .wrapper {
    gap: 35px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #facilities_single_section_6 .cards_wrapper {
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  #additional_services_section_1 .wrapper .card {
    width: 370px;
  }

  #facilities_section_1 .wrapper {
    gap: 20px;
    align-items: normal;
    justify-content: center;
  }

  #facilities_section_1 .wrapper .card {
    width: 280px;
  }


  #cleaning_services_single_banner_section #banner_main_image {
    margin: 60px auto 0;
  }



  #cleaning_services_banner_section #banner_main_image {
    margin: 60px auto 0;

  }

  #home_banner_section #banner_main_image {
    right: 0;
  }

  #about_banner_section #banner_main_image {
    margin: 60px auto 0;
  }

  #why_bnk_banner_section #banner_main_image {
    margin: 60px auto 0;
  }

  #banner_section_default #banner_main_image {
    margin: 60px auto 0;
  }

  #blog_banner_section #banner_main_image {
    margin: 60px auto 0;
  }

  #additional_services_banner_section #banner_main_image {
    margin: 60px auto 0;
  }

  #facilities_banner_section #banner_main_image {
    margin: 60px auto 0;
  }







}



@media (min-width: 992px) {
  .header .nav-wrap .menu-item-has-children:hover>.sub-menu {
    display: flex;
  }




}


@media (max-width: 992px) {
  .menu-header-container {
    width: 90%;
  }
	.header .nav-wrap .menu-item-has-children .sub-menu li a {
		background: transparent !important;
	}
	.header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li {
		background: transparent  !important;
	}
	.header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li a {
		background: transparent  !important;
	}
  .header .header_btn a {
    display: inline-block;
  }

  .menu-mobile-container {
    display: block;
  }
	.header .sub-menu li a {
		font-size: 14px !important;
	}
  .header .nav-wrap .menu-item-has-children .sub-menu li {
    padding: 4px 0px !important;
    justify-content: flex-start;
    background: transparent !important;
    margin: 0px 0;
    border-radius: 0;
    width: 100%;
  }

  #menu-item-627 .sub-menu {
    max-height: 100%;
    overflow-y: visible;
  }

  #menu-item-360 .sub-menu {
    width: 100%;
  }

  .hamburger {
    display: block;
    margin-top: 25px;
  }

  .nav-wrap {
    position: fixed;
    left: 0;
    transform: translateY(-100%);
    background: #041148;
    transition: all 0.5s linear;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    flex-direction: column;
    align-items: flex-start !important;
    padding: 20px 0 30px;

  }

  .nav-wrap.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    right: 0;
    z-index: 99;
    top: 100px;
    left: 0;
    margin: 0;
    height: auto;
    overflow-y: scroll;
    max-height: 480px;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu {
    background: #041148;
    flex-direction: column;
    position: static;
    box-shadow: none;
    width: 550px;

  }

  #menu-item-1224 .plusminus {
    display: none;
  }

  #menu-item-1225 .plusminus {
    display: none;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu li::after {
    left: -14px;
    right: auto;
    transform: translate(0);
    bottom: 11px;
  }

  .nav-list .current-menu-item a {
    width: fit-content;
    background: none;
    font-weight: 600;
    padding: 0;
  }

  .header .nav-wrap .cta-box {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .header .upper_row {
    width: 390px;
  }

  .header .nav-wrap .cta-button {
    width: 140px;
    height: 48px;
    background: #fff;
    color: rgba(44, 44, 44, 1);

  }

  .nav-list {
    flex-direction: column;
    align-items: unset;
    opacity: 0;
    visibility: hidden;
    transition-delay: 0.5s;
    transition-duration: 1s;
    transition-property: all;
    gap: 0px;
    max-width: 100%;
  }

  .nav-wrap.is-open .nav-list {
    opacity: 1;
    visibility: visible;
  }

  .nav-list li {
    padding: 10px 10px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu {
    display: none;
  }

  .header .nav-wrap .menu-item-has-children:after {
    content: none;
  }


  .nav-list li a {
    color: #fff !important;
    text-align: left;
    display: inline-block;
    padding: 2px 0;
  }

  .nav-list li a:hover {
    opacity: .75;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu li a:hover {
    opacity: .75;
  }

  .nav-list li a::after {
    background-color: #FFF;
  }

  .header .header_btn a {
    margin: 15px 0 0 0;
  }

  .nav-list .current-menu-item::after {
    left: -7%;
    bottom: 16px;
  }

  .nav-list li.with-submenu {
    display: block;
  }

  .nav-list li.with-submenu::after {
    border-color: #FFF;
    right: 10px;
    top: 12px;
  }

  .nav-list li.with-submenu:hover::after {
    transform: rotate(45deg);
    margin-top: 0;
  }

  .nav-list li.with-submenu.is-open::after {
    transform: rotate(225deg);
    margin-top: 5px;
  }

  .nav-list li.with-submenu .submenu {
    position: static;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border-radius: 0;
    border-top: 1px solid #ccc;
    display: none;
    transition: auto;
    margin: 10px 0;
  }

  .nav-list li.with-submenu .submenu li {
    padding: 7px 10px;
  }

  .nav-list li.with-submenu .submenu li:hover a {
    background-color: transparent;
  }

  .nav-list li.with-submenu .submenu li a {
    display: inline-block;
    padding: 2px 0;
  }

  .nav-list li.with-submenu .submenu li a::after {
    display: block;
  }

  .row-wrap .nav-wrap .button {
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
  }

  .row-wrap .nav-wrap .button a {
    max-width: 160px;
    height: 48px;
    padding: 0 20px;
    width: 100%;
    font-size: 14px;

  }

  .nav-wrap.is-open .menu-mobile-container {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }

  .header .nav-wrap .current-menu-item a {
    font-weight: 700;
  }



  /* Menu */

  .plusminus {
    width: 12px;
    height: 12px;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 14px;
    pointer-events: none;
  }

  #menu-item-336 .plusminus {
    right: 10px;
    top: 16px;
  }


  .plusminus.active:before {
    transform: translatey(-50%) rotate(-90deg);
    opacity: 0;
  }

  .plusminus.active:after {
    transform: translatey(-50%) rotate(0);
  }

  .plusminus:before {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.35s;
    width: 100%;
    height: 3px;
  }

  .plusminus:after {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    transition: 0.35s;
    width: 100%;
    height: 3px;
  }


  .sub-menu .plusminus:before {
    background-color: #fff !important;
  }

  .sub-menu .plusminus:after {
    background-color: #fff !important;
  }

  .plusminus:before {
    transform: translatey(-50%);
  }

  .plusminus:after {
    transform: translatey(-50%) rotate(90deg);
  }


  /* ENds */






  #home_banner_section h1 {
    font-size: 36px;
    line-height: 48px;
  }

  #home_section_2 .wrapper .card {
    width: 300px;
  }

  #home_section_4 .wrapper {
    gap: 60px;
    flex-wrap: wrap;
  }

  #home_section_7 .wrapper {
    padding: 40px 25px 40px 25px;
    gap: 40px;
    flex-wrap: wrap;
  }

  footer .lower_footer .lower_footer_wrapper {
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
  }

  footer .lower_footer {
    padding: 20px 0;
  }

  #about_banner_section h1 {
    font-size: 36px;
    line-height: 48px;
  }

  #about_section_1 .wrapper {
    align-items: center;
    justify-content: center;
    gap: 93px;
    margin: 64px auto 0;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }

  #global_strip_section {
    padding: 50px 0 50px 0;
  }

  #global_strip_section .strip_wrapper {
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 40px;
  }

  #why_bnk_banner_section h1 {
    font-size: 36px;
    line-height: 48px;
  }

  #blog_banner_section h1 {
    font-size: 36px;
    line-height: 48px;
  }


  #contact_banner_section h1 {
    font-size: 36px;
    line-height: 48px;
  }

  #cleaning_services_banner_section h1 {
    font-size: 36px;
    line-height: 48px;
  }

  #cleaning_services_section_1 .wrapper .card {
    width: 300px;
  }

  #cleaning_services_section_1 .wrapper .wrapper {
    gap: 25px;
  }

  #cleaning_services_section_2 .wrapper .card {
    width: 300px;
  }

  #cleaning_services_section_2 .wrapper {
    gap: 25px;
  }

  #cleaning_services_section_3 .wrapper {
    align-items: flex-start;
    justify-content: center;
    gap: 101px;
    flex-wrap: wrap;
  }

  #cleaning_services_single_banner_section h1 {
    font-size: 36px;
    line-height: 48px;
  }

  #cleaning_services_single_section_1 .wrapper {
    gap: 35px;
    flex-direction: column;
  }

  #cleaning_services_single_section_2 .cards_wrapper .card:nth-child(n+7) {
    min-height: auto;
  }


  #cleaning_services_single_section_2 .cards_wrapper .card:nth-child(n+4):nth-child(-n+6) {
    min-height: auto;
  }


  #cleaning_services_single_section_2 .cards_wrapper .card:nth-child(-n+3) {
    min-height: auto;
  }

  #cleaning_services_single_section_3 .wrapper {
    align-items: center;
    justify-content: center;
    gap: 72px;
    flex-direction: column;
  }


  #facilities_single_section h1 {
    font-size: 36px;
    line-height: 48px;
  }

  #facilities_single_section_1 .wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 50px;
  }

  #facilities_single_section_3 .strip_wrapper {
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-direction: column;
    gap: 50px;
  }

  #facilities_single_section_3 .strip_wrapper #section_logo_main {
    width: 490px;
  }

  #facilities_single_section_4 .cta_box {
    margin: 50px auto 0;
  }

  #additional_services_banner_section h1 {
    font-size: 36px;
    line-height: 48px;
  }

  #facilities_section_3 .wrapper {
    align-items: center;
    justify-content: center;
    gap: 70px;
    flex-direction: column;
  }





  #main_content_section .inner_box {
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 50px;
  }

  #facilities_single_section {
    height: auto;
    padding: 80px 0 120px;
    margin-top: var(--header-height);
  }



  #home_banner_section #banner_main_image {
    right: 0;
    bottom: -200px;
  }

  #facilities_single_banner_section #banner_main_image {
    position: static;
    margin: 40px auto 0 0;
    max-width: 70%;
  }

  #single_blog_banner #banner_main_image {
    margin: 60px auto 0;
  }




  #facilities_single_banner_section {
    padding: 110px 0 30px;
  }
}

@media (max-width: 768px) {
  #mobile_image_section {
    margin-top: var(--header-height);

  }

  #mobile_image_section #mobile_image {
	display:block !important;
    border-bottom: 2px solid white;
    width: 100%;
  }

  #facilities_single_banner_section {
    padding: 60px 0 30px;
    margin-top: 0;
    background: #041148 !important;
  }

  .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
    width: 92%;
  }

  .header .nav-wrap .cta-box {
    max-width: 540px;
  }

  .nav-wrap.is-open .menu-mobile-container {
    max-width: 540px;
  }

  .row-wrap .nav-wrap .button {
    max-width: 540px;
  }

  .header .nav-wrap .menu-item-335 .sub-menu {
    width: 97%;
  }

  .nav-wrap.is-open {
    height: auto;
    overflow-y: scroll;
    max-height: 480px;
  }

  .upper-row-wrap .box h4 {
    font-size: 10px;
  }

  .upper-row-wrap .box a {
    font-size: 12px;
  }

  .upper-row-wrap .box img {
    height: 12px;
  }

  .upper-row-wrap .box .mail {
    gap: 10px;
    margin-left: 0px;
  }

  #home_section_1 h3 {
    font-size: 32px;
    line-height: 40px;
  }

  #home_section_2 h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #home_section_2 .wrapper .card {
    width: 370px;
    min-height: auto;
  }

  #home_section_4 .wrapper .content_wrapper h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #home_section_5 .wrapper .content_wrapper h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #home_section_6 h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #home_section_7 .wrapper h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #home_quote_form .wrapper .right_wrapper form .row-50 {
    align-items: flex-start;
    justify-content: center;
    gap: 19px;
    margin-top: 20px;
    flex-direction: column;
  }

  #home_quote_form .wrapper .right_wrapper form input {
    width: 100%;
    max-width: 100%;
  }

  #home_quote_form .wrapper .right_wrapper form select {
    width: 380px;
    max-width: 100%;
  }

  #home_quote_form .wrapper .right_wrapper form {
    max-width: 100%;
    width: 380px;
    margin: 0 auto;
  }

  #home_quote_form .wrapper #section_image_main {
    max-width: 340px;
  }


  #cleaning_services_section_1 h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #cleaning_services_section_1 .wrapper .card {
    width: 370px;
  }


  #cleaning_services_section_2 h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #cleaning_services_section_2 .wrapper .card {
    width: 370px;
  }

  #cleaning_services_single_section_2 h3 {
    font-size: 32px;
    line-height: 42px;
    max-width: 420px;
  }

  #cleaning_services_single_section_3 .wrapper .content_wrapper h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #cleaning_services_single_section_3 .wrapper .content_wrapper h4 {
    font-size: 16px;
    max-width: 420px;
    line-height: 28px;

  }

  #cleaning_services_single_section_4 h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #cleaning_services_single_section_4 h4 {
    font-size: 16px;
    max-width: 420px;
    line-height: 28px;
  }



  #additional_services_section_1 h3 {
    font-size: 32px;
    line-height: 42px;
  }




  #facilities_section_1 h3 {
    font-size: 32px;
    line-height: 42px;
  }

  #why_bnk_section_1 .wrapper #section_image_main {
    max-width: 100%;
  }

  #about_section_1 .wrapper #section_image_main {
    max-width: 100%;
  }


  #main_content_section .inner_box .content_box {
    max-width: 100%;
    width: 600px;
  }


}




@media (max-width: 576px) {
  .hamburger {
    margin-top: 0px;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu {
    width: 100%;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu li {
    width: 100%;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu {
    padding: 5px 9px 5px 10px;
  }

  .header .nav-wrap .menu-item-has-children .sub-menu li .sub-menu li {
    width: 100%;
  }

  .header .upper_row {
    display: none;
  }

  .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
    left: 10px;
  }

  .header .nav-wrap .menu-item-335 .sub-menu .menu-item-336 .sub-menu {
    width: 95%;
  }

  .header .nav-wrap .cta-box {
    padding: 0 20px;
  }

  .nav-wrap.is-open .menu-mobile-container {
    padding: 0 20px;

  }

  .header {
    height: auto;
  }


  .nav-list li a {
    font-size: 16px;
  }

  .header .nav-wrap .menu-item-335 .sub-menu li a {
    font-size: 15px;
  }

  .row-wrap .nav-wrap .button {
    padding: 0 20px;
  }

  .header .nav-wrap .menu-item-335 .sub-menu {
    width: 97%;
  }

  .row-wrap .logo-wrap h6 {
    font-size: 12px;
    max-width: 240px;
  }

  .row-wrap .logo-wrap a {
    max-width: 250px;
    display: block;
  }

  .upper-row-wrap .box h4 {
    display: none;
  }



  #home_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }

  #home_banner_section h2 {
    font-size: 18px;
    line-height: 30px;
  }


  #home_banner_section .cta_box {
    margin: 44px 0 0 0;
    justify-content: center;
  }

  #home_section_1 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #home_section_1 h4 {
    font-size: 16px;
    line-height: 26px;
  }

  #home_section_1 .stats_wrapper .box h5 {
    font-size: 32px;
  }

  #home_section_1 .stats_wrapper .box h6 {
    font-size: 16px;
    line-height: 26px;
  }

  #home_section_2 {
    padding: 67px 0 52px 0;
  }

  #home_section_2 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #home_section_2 h4 {
    font-size: 16px;
    line-height: 26px;
  }

  #home_section_2 .services_tab_wrapper {
    max-width: 290px;
    margin: 26px auto 0;
  }

  #home_section_2 .services_tab_wrapper h4 {
    font-size: 15px;
    line-height: 30px;
  }

  #home_section_3 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #home_section_3 h4 {
    font-size: 16px;
    line-height: 26px;
  }

  #home_section_3 .industries_tab_wrapper {
    max-width: 290px;
    margin: 26px auto 0;
  }

  #home_section_3 .industries_tab_wrapper h4 {
    font-size: 15px;
    line-height: 30px;
  }

  #home_section_4 .wrapper .content_wrapper h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #home_section_4 .wrapper .content_wrapper h4 {
    font-size: 16px;
    line-height: 26px;
  }

  #home_section_4 {
    padding: 65px 0 75px 0;
  }

  #home_section_4 .cards_wrapper .card {
    padding: 10px 15px 10px 15px;
    gap: 15px;
    width: 470px;
    margin: 0 auto;
  }

  #home_section_4 .cards_wrapper .card h5 {
    font-size: 18px;
    line-height: 30px;
  }


  #home_section_5 .wrapper .content_wrapper h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #home_section_5 .wrapper .content_wrapper p {
    font-size: 16px;
    line-height: 26px;
  }


  #home_section_5 .wrapper .content_wrapper .cta_box {
    margin: 34px 0 0 0;
    justify-content: center;
  }

  #home_section_5 .wrapper .right_wrapper #section_image_main {
    max-width: 100%;
  }

  #home_section_5 .wrapper .cards_wrapper {
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    margin: 24px 0 0 0;
    text-align: center;
    flex-wrap: wrap;
  }

  #home_section_6 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #home_section_6 h4 {
    font-size: 16px;
    line-height: 26px;
  }

  #home_section_6 .cards_wrapper {
    gap: 0px;
    flex-wrap: wrap;
  }

  #home_section_6 .cards_wrapper .card {
    width: 257px;
    min-height: 220px;
    padding: 0px 0 0px 20px;
  }

  #home_section_6 .cards_wrapper .card::after {
    content: url("../assets/card-bg-2-mobile.png");
  }

  #home_section_6 .cards_wrapper .card:first-of-type::after {
    content: url("../assets/card-bg-1-mobile.png");
  }

  #home_section_6 .cards_wrapper .card:last-of-type::after {
    content: url("../assets/card-bg-3-mobile.png");
  }

  #home_section_6 .cards_wrapper .card p {
    max-width: 230px;
  }

  #home_section_7 .wrapper h3 {
    font-size: 28px;
    line-height: 40px;
  }

  #home_section_7 .wrapper p {
    font-size: 16px;
    line-height: 26px;
  }

  #home_section_7 .wrapper .cta_box {
    margin: 32px 0 0 0;
    justify-content: center;
  }

  #home_section_7 .wrapper {
    max-width: 380px;

  }

  #home_blogs_section h3 {
    font-size: 30px;
    line-height: 42px;
  }

  #home_quote_form .wrapper .right_wrapper form {
    max-width: 100%;
    width: 340px;
    margin: 0 auto;
  }

  #home_quote_form .wrapper .right_wrapper form select {
    width: 340px;
    max-width: 100%;
  }

  #home_quote_form .wrapper .right_wrapper h3 {
    font-size: 30px;
    line-height: 42px;
  }

  #home_quote_form .wrapper .right_wrapper h4 {
    font-size: 16px;
    line-height: 26px;
  }

  footer .upper_footer .footer_wrapper .links_box {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
  }

  footer .upper_footer .footer_wrapper .links_box .links {
    width: 100%;
  }

  footer .lower_footer .lower_footer_wrapper .details {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 21px;
    flex-direction: column;
  }

  #cleaning_services_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }


  #cleaning_services_banner_section h2 {
    font-size: 18px;
    line-height: 30px;
  }

  #cleaning_services_banner_section .cta_box {
    margin: 30px 0 0 0;
    justify-content: center;
  }


  #cleaning_services_section_1 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #cleaning_services_section_1 .services_tab_wrapper {
    max-width: 330px;
    margin: 26px auto 0;
  }

  #cleaning_services_section_1 .services_tab_wrapper h4 {
    font-size: 14px;
    line-height: 30px;
  }

  #cleaning_services_section_2 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #cleaning_services_section_2 .services_tab_wrapper {
    max-width: 330px;
    margin: 26px auto 0;
  }

  #cleaning_services_section_2 .services_tab_wrapper h4 {
    font-size: 14px;
    line-height: 30px;
  }

  #cleaning_services_section_1 h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }

  #cleaning_services_section_2 h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }


  #cleaning_services_section_3 .wrapper .content_wrapper h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #cleaning_services_section_3 .wrapper .content_wrapper h4 {
    font-size: 16px;
    line-height: 26px;
  }

  #cleaning_services_section_3 .cards_wrapper .card {
    padding: 10px 15px 10px 15px;
    gap: 15px;
    width: 470px;
    margin: 0 auto;
  }

  #cleaning_services_section_3 .cards_wrapper .card h5 {
    font-size: 18px;
    line-height: 30px;
  }


  #cleaning_services_single_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }

  #cleaning_services_single_banner_section h2 {
    font-size: 18px;
    line-height: 30px;
  }

  #cleaning_services_single_banner_section .cta_box {
    margin: 30px 0 0 0;
    justify-content: center;
  }

  #cleaning_services_single_section_1 .wrapper #section_image_main {
    max-width: 100%;
  }

  #cleaning_services_single_section_1 .wrapper {
    gap: 35px;
    flex-direction: column;
    max-width: 420px;
    margin: 0 auto;
  }

  #cleaning_services_single_section_1 .wrapper .content_wrapper h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #cleaning_services_single_section_2 h3 {
    font-size: 28px;
    line-height: 36px;
    max-width: 360px;

  }

  #cleaning_services_single_section_2 h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
  }

  #cleaning_services_single_section_3 .wrapper .content_wrapper h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #cleaning_services_single_section_3 .cards_wrapper .card h5 {
    font-size: 18px;
    line-height: 32px;

  }

  #cleaning_services_single_section_3 .cards_wrapper .card {
    padding: 10px 15px 10px 15px;
    gap: 15px;
    width: 470px;
    margin: 0 auto;
  }


  #cleaning_services_single_section_4 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #cleaning_services_single_section_4 .cards_wrapper .card h5 {
    font-size: 18px;
    line-height: 32px;
  }


  #faq-section h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #faq-section .faq-head {
    font-size: 18px;
    line-height: 26px;
  }

  #faq-section .faq-content p {
    font-size: 15px;
    line-height: 26px;
  }

  #faq-section .faq-wrap {
    padding: 15px 18px 15px 18px;
  }



  #global_strip_section .strip_wrapper .content h3 {
    font-size: 28px;
    line-height: 36px;
  }


  #global_strip_section .strip_wrapper .content p {
    font-size: 16px;
    line-height: 26px;
  }

  #global_strip_section .strip_wrapper #section_logo_main {
    max-width: 100%;
  }

  #cleaning_services_single_section_3 .wrapper .content_wrapper img {
    max-width: 100%;
  }

  #home_quote_form .wrapper #section_image_main {
    max-width: 100%;
  }

  #home_section_7 .wrapper #section_image_main {
    max-width: 100%;
  }


  #additional_services_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }

  #additional_services_banner_section h2 {
    font-size: 18px;
    line-height: 30px;
  }



  #additional_services_section_1 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #additional_services_section_1 p {
    font-size: 16px;
    line-height: 26px;
  }

  #additional_services_section_1 .services_tab_wrapper {
    max-width: 330px;
    margin: 26px auto 0;
  }

  #additional_services_section_1 .services_tab_wrapper h4 {
    font-size: 14px;
    line-height: 30px;
  }


  #additional_services_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }

  #additional_services_banner_section h2 {
    font-size: 18px;
    line-height: 30px;
  }

  #facilities_section_1 h3 {
    font-size: 30px;
    line-height: 42px;
  }

  #facilities_section_1 h4 {
    font-size: 16px;
    line-height: 26px;
  }

  #facilities_section_1 .services_tab_wrapper {
    max-width: 340px;
    margin: 26px auto 0;
  }

  #facilities_section_1 .services_tab_wrapper h4 {
    font-size: 14px;
    line-height: 28px;
  }

  #facilities_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }

  #facilities_banner_section h2 {
    font-size: 18px;
    line-height: 30px;
  }


  #facilities_single_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }

  #facilities_single_banner_section h2 {
    font-size: 18px;
    line-height: 30px;
  }

  #facilities_single_section_1 .wrapper h4 {
    font-size: 30px;
    line-height: 42px;
  }

  #facilities_single_section_2 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #facilities_single_section_4 .content_wrapper h3 {
    font-size: 28px;
    line-height: 36px;
  }


  #facilities_single_section_5 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #facilities_single_section_6 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #facilities_single_section_6 .cards_wrapper {
    gap: 20px;
    flex-wrap: wrap;
  }

  #facilities_single_section_6 .cards_wrapper .card h6 {
    left: 20px;
  }

  #facilities_single_section_6 .cards_wrapper .card:first-of-type {
    width: 330px;
    padding: 60px 18px 12px 20px;
  }

  #facilities_single_section_6 .cards_wrapper .card {
    width: 330px;
    padding: 60px 18px 12px 20px;
    background-position: bottom;
    min-height: 355px;
  }

  #facilities_single_section_6 .cards_wrapper .card:last-of-type {
    width: 330px;
    padding: 60px 18px 12px 20px;
  }

  #facilities_single_section_6 .cards_wrapper .card {
    background-image: url("../assets/bg-card-2-mobile.png");
  }

  #facilities_single_section_6 .cards_wrapper .card:first-of-type {
    background-image: url("../assets/bg-card-1-mobile.png");
  }

  #facilities_single_section_6 .cards_wrapper .card:last-of-type {
    background-image: url("../assets/bg-card-3-mobile.png");
  }

  #home_section_3 .wrapper {
    max-width: 340px;
    margin: 0 auto;
  }



  #contact_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }

  #contact_banner_section p {
    font-size: 18px;
    line-height: 30px;
  }


  #contact_section_1 .form_wrapper {
    width: 100%;
    max-width: 100%;
  }

  #contact_section_1 .wrapper .form_wrapper form {
    width: 100%;
    max-width: 420px;
	padding: 14px 20px 5px;
    margin: -320px auto 0;
  }

  #contact_section_1 .wrapper .form_wrapper form .row-50 {
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    margin: 19px 0 0 0;
    flex-direction: column;
  }

  #contact_section_1 .wrapper .form_wrapper form input {
    width: 100%;
    max-width: 100%;
  }

  #contact_section_1 .wrapper .form_wrapper form select {
    width: 100%;
    max-width: 100%;
  }

  #contact_section_1 {
    padding: 50px 0 10px 0;
  }

  #why_bnk_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }

  #why_bnk_banner_section h2 {
    font-size: 18px;
    line-height: 30px;
  }



  #why_bnk_section_1 .wrapper h4 {
    font-size: 28px;
    line-height: 36px;
  }


  #why_bnk_section_2 h3 {
    font-size: 28px;
    line-height: 36px;
  }



  #about_banner_section h1 {
    font-size: 30px;
    line-height: 40px;
  }


  #about_banner_section h2 {
    font-size: 18px;
    line-height: 30px;
  }

  #about_section_1 h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #about_section_1 .wrapper h4 {
    font-size: 28px;
    line-height: 36px;
  }

  #about_section_2 .wrapper .points_wrapper .point h6 {
    max-width: 330px;
  }

  #single_blog_banner h1 {
    font-size: 30px;
    line-height: 40px;
  }


  #main_content_section .inner_box .content_box h2 {
    font-size: 28px;
    line-height: 36px;
  }

  #related_blogs_section h3 {
    font-size: 28px;
    line-height: 36px;
  }

  #main_content_section .inner_box .summary_box {
    padding: 15px;
  }


  #banner_section_default h1 {
    font-size: 30px;
    line-height: 40px;
  }

  #banner_section_default h2 {
    font-size: 18px;
    line-height: 30px;
  }


  #main_section_default {
    padding: 40px 0 50px 0;
  }

  #main_section_default p {
    font-size: 16px;
    line-height: 28px;
  }

  #home_banner_section #banner_main_image {
    position: static;
    max-width: 70%;
    margin: 40px auto 0;
  }

  #home_banner_section {
    padding: 100px 0 140px;
  }

  #facilities_single_banner_section {
    background-position: 70% center !important;
  }

  #home_section_3 .wrapper .card {
    width: 326px !important;
    max-width: 326px !important;
    min-height: auto;
    padding: 28px 12px 20px 12px;
    margin: 30px 7px 45px;
  }


  #home_section_3 .wrapper .card h5 {
    font-size: 18px;
    line-height: 26px;
    width: 100%;
  }


  #home_section_3 .wrapper .card h6 {
    width: 100%;
    max-width: 100%;
  }


  #home_section_3 .slick-dots li {
    margin: 0 0px !important;
  }

  #home_section_3 .slick-dots li button:before {
    font-size: 30px !important;
    width: 3px !important;
    opacity: 1 !important;
  }

  #home_section_3 .wrapper .slick-dots {
    bottom: -5px !important;
  }

  #home_section_3 .cta_box {
    margin: 40px auto 0;
  }

	#facilities_single_section_4 .wrapper .cards_wrapper .card h5 {
		font-size: 18px;
		line-height: 28px;
	}



}


@media (max-width: 380px) {
	#home_quote_form .wrapper .right_wrapper{
		width: 100%;
      max-width: 100%;
	}
	#home_quote_form .wrapper .right_wrapper form .row-50 div{
		 max-width: 100%;
	}
  #home_quote_form .wrapper .right_wrapper form {
    max-width: 100%;
    width: 280px;
    margin: 0 auto;
  }

  #home_quote_form .wrapper .right_wrapper form select {
    width: 280px;
    max-width: 100%;
  }


}

@media(min-width:1460px) {
  #home_banner_section {
    padding: 100px 0 330px;
  }

  #home_banner_section #banner_main_image {
    position: absolute;
    right: 30px;
    bottom: -250px;
  }
}


@media(min-width:1640px) {
  #home_banner_section {
    padding: 160px 0 430px;
  }

  #home_banner_section #banner_main_image {
    position: absolute;
    right: -45px;
    bottom: -300px;
  }


}