/*
Theme Name: Insight Society Custom Wordpress Theme
Author: Raja Muneeb Razaq
Author URI: https://www.linkedin.com/in/raja-muneeb-razaq
Description:Custom WordPress theme for Insight Society by Raja Muneeb Razaq
Version: 1.0.0
*/
/************type***************/
:root {
  --blue: #283272;
  --light-blue: #28538D;
  --blue-rgba: 40, 50, 114;
  --light: #ffffff;
  --orange: #FED53D;
  --light-bg: #F2F6FF;
  --light-orange: #FAF2D6;
  --orange-rgba: 254, 213, 61;
  --light-orange-rgba: 250, 242, 214;
  --button-border: #A8BCCC;
  --footer-bg: #F5F5F5;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

.idScrollfix {
  position: relative;
  top: -112px;
}

body {
  overflow-x: hidden !important;
  color: var(--color-neutral-950);
  background-color: var(--color-neutral-50);
  font-size: 14px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
}

::-webkit-input-placeholder {
  color: var(--color-neutral-950);
}

::-moz-placeholder,
:-moz-placeholder,
:-ms-input-placeholder {
  color: var(--color-neutral-950);
}

li.cat-item-10,
li.cat-item-9 {
  display: none;
}

img {
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  image-rendering: -webkit-optimize-contrast;
}

h1 {
  font-size: 60px;
  line-height: 60px;
  color: var(--blue);
}

h2 {
  font-size: 35px;
  line-height: 40px;
  color: var(--blue);
}

h3 {
  font-size: 24px;
  line-height: 32px;
  color: var(--blue);
}

h4 {
  font-size: 20px;
  line-height: 30px;
  color: var(--blue);
}

h5 {
  font-size: 16px;
  line-height: 24px;
  color: var(--blue);
}

h6 {
  font-size: 14px;
  line-height: 24px;
  color: var(--blue);
}

.regular h1,
.regular h2,
.regular h3,
.regular h4,
.regular h5,
.regular h6 {
  font-weight: 400;
}

.accent-h-container h1,
.accent-h-container h2,
.accent-h-container .accent-h {
  position: relative;
  display: inline-block;
}
.accent-h-container h1:before, .accent-h-container h1:after,
.accent-h-container h2:before,
.accent-h-container h2:after,
.accent-h-container .accent-h:before,
.accent-h-container .accent-h:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 48.4%;
  height: 2px;
  width: 50px;
  background: var(--color-primary);
}
.accent-h-container h1:before,
.accent-h-container h2:before,
.accent-h-container .accent-h:before {
  left: -60px;
}
.accent-h-container h1:after,
.accent-h-container h2:after,
.accent-h-container .accent-h:after {
  right: -60px;
}

.search-results h1 {
  font-size: 30px;
  color: var(--color-neutral-900);
  font-weight: 400;
  line-height: 36px;
}

.bdr-btm-primary {
  border-bottom: 5px solid var(--color-primary);
}

.heading-inline {
  display: inline;
}

.heading-notopmargin h1,
.heading-notopmargin h3 {
  margin-top: 0;
}

.white {
  color: var(--color-neutral-100);
}

.black {
  color: var(--color-neutral-900);
}

a {
  color: var(--color-primary);
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s ease-in-out !important;
}
a:hover, a:focus {
  color: var(--color-primary);
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

p {
  margin: 15px 0 0 0 !important;
  padding: 0;
}
p.p-notopmargin {
  margin-top: 0 !important;
}

.centered {
  text-align: center;
}

.right {
  text-align: right;
}

.just {
  text-align: justify;
}

.italic {
  font-style: italic;
}

.f-right {
  float: right;
}

.btnPrimary:before {
  background: var(--color-primary);
}
.btnPrimary:after {
  background: var(--color-secondary);
}
.btnPrimary:hover:before {
  width: 100%;
}
.btnPrimary:hover:after {
  width: 0;
}

/* Button Styles */
.slide-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-neutral-100);
  background-color: var(--color-neutral-950);
  border: none;
  border-radius: 6px;
}

.slide-button:hover {
  background-color: var(--color-primary);
}

.button-text,
.button-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.button-text {
  transform: translateX(0);
}

.button-icon {
  position: absolute;
  left: -28px;
  transform: translateX(0);
  opacity: 1;
  color: var(--light);
  font-size: 28px;
}

/* Hover Effect */
.slide-button:hover .button-text {
  transform: translateX(calc(100% + 24px));
}

.slide-button:hover .button-icon {
  transform: translateX(calc(100% + 28px));
  left: 0;
}

.btnBlue:before {
  background: var(--color-secondary);
}
.btnBlue:after {
  background: var(--color-primary);
}
.btnBlue:hover:before {
  width: 100%;
}
.btnBlue:hover:after {
  width: 0;
}

.myBtn {
  color: var(--light);
  font-weight: 600;
  font-size: 15px;
  display: inline-block;
  background: var(--orange);
  padding: 10px 43px;
  border-radius: 20px;
}
.myBtn:hover {
  background: var(--blue);
  color: var(--light);
}

.navbar-toggler .navbar-toggler-icon {
  background-image: url("assets/img/nav-icon.svg");
}

/***
====================================================================
	End Button
====================================================================
***/
.iconOutset p {
  padding-left: 22px;
  line-height: 18px;
}

.iconOutset i {
  margin-left: -23px !important;
  width: 12px;
  height: 26px;
  border-radius: 100%;
  color: var(--color-primary);
  margin-right: 8px;
  padding-top: 6px;
}

.iconOutset p span {
  margin-bottom: 10px;
  display: inline-block;
}

.txt-black {
  color: #000000;
}

.txt-black h3 {
  color: #000000 !important;
}

.txt-md {
  font-size: 16px;
  line-height: 28px;
}

.txt-white,
.txt-white a {
  color: var(--light);
}

.txt-white h1,
.txt-white h2,
.txt-white h3,
.txt-white h4,
.txt-white h5,
txt-white h6 {
  color: var(--light);
}

.bullet-text ul {
  margin-top: 15px;
}

.bullet-text ul li {
  position: relative;
  margin-left: 25px;
}

.bullet-text ul li::before {
  position: absolute;
  content: "\f0c8";
  left: -20px;
  color: var(--color-primary);
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
}

/************************* fonts, buttons, icons and text blocks styles end**********************************/
/************************* margins and paddings***************************************************************/
.xtrapadding {
  padding: 0 65px;
}

.marginvh100 {
  margin-top: 100vh;
}

.marginbtfooter {
  margin-bottom: 600px;
}

.marginxxs {
  margin-top: 15px;
  margin-bottom: 15px;
}

.marginxs {
  margin-top: 30px;
  margin-bottom: 30px;
}

.marginsm {
  margin-top: 55px;
  margin-bottom: 55px;
}

.marginmd {
  margin-top: 90px;
  margin-bottom: 90px;
}

.marginlg {
  margin-top: 150px;
  margin-bottom: 150px;
}

.paddingxs {
  padding-top: 30px;
  padding-bottom: 30px;
}

.mrg-bt-40 {
  margin-bottom: 40px;
}

.mrg-bt-30 {
  margin-bottom: 30px;
}

.mrg-bt-20 {
  margin-bottom: 20px;
}

.marginauto {
  margin: auto;
}

.notopmargin {
  margin-top: 0 !important;
}

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

.noleftmargin {
  margin-left: 0 !important;
}

.norightmargin {
  margin-right: 0 !important;
}

.notoppadding {
  padding-top: 0 !important;
}

.nobottompadding {
  padding-bottom: 0 !important;
}

.noleftpadding {
  padding-left: 0 !important;
}

.norightpadding {
  padding-right: 0 !important;
}

.custom-width-80 {
  width: 80%;
  margin: auto;
}

.custom-width-90 {
  width: 90%;
}

.txt-padded {
  padding-left: 15px;
  padding-right: 15px;
}

.txt-padded-white {
  padding: 60px 100px;
  background: #f9f9f9;
}

.notopmargin h1,
.notopmargin h2,
.notopmargin h3,
.notopmargin h4,
.notopmargin h5,
.notopmargin h6 {
  margin-top: 0;
}

/************************* margins and paddings end***************************************************************/
/*****************backgrounds, borders and lines**************************************************************************************/
.section-sep {
  height: 3px;
  background: url("assets/img/section-sep.png") center center no-repeat;
}

.line {
  height: 1px;
  border-bottom: 1px solid #dddddd;
  position: relative;
  z-index: 99;
}

.line-blue {
  height: 1px;
  border-bottom: 5px solid #517da4;
  position: relative;
  z-index: 99;
}

.line-gold-thin {
  height: 1px;
  border-bottom: 2px solid #dda036;
}

.line-dark-thin {
  height: 1px;
  border-bottom: 1px solid #cccccc;
}

.bg-white {
  background: var(--light);
  position: relative;
  z-index: 99;
}

.bg-white-tr {
  background: rgba(255, 255, 255, 0.8);
}

.bg-dark {
  background: #2e3233;
}

.bg-light-gray {
  background: #f5f5f5;
  position: relative;
}

.bg-dark-gray {
  background: #eeeeee;
  position: relative;
  z-index: 99;
}

.bg-blue {
  background: #0a2a6d;
}

.bg-green {
  background: #82c23e;
}

.ind-cre-nav {
  background: #517da4;
}

/*****************backgrounds, borders and lines**************************************************************************************/
/*************************** general global styles**************************************************************************************/
.deadcenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.deadcenter2 {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gen-transition {
  transition: 0.3s ease-in-out !important;
}

.gen-transition2 {
  transition: 0.5s ease-in-out !important;
}

.gen-rel {
  position: relative;
}

.img-100 img {
  max-width: 100%;
  height: auto !important;
}

.img-min-100 img {
  min-width: 100%;
  max-width: 100%;
  height: auto !important;
}

#map {
  height: 500px;
  border-top: 1px solid #eeeeee;
}

.owl-carousel .owl-nav {
  display: block !important;
}

.owl-carousel .owl-nav button {
  color: var(--l-blue) !important;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 40px !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
  right: -20px;
}

.divider h3 {
  font-size: 36px;
  position: relative;
  margin: 0;
  padding-bottom: 50px;
}
.divider h3 strong {
  color: var(--color-secondary);
}
.divider h3::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 90px;
  height: 3px;
  background: #c2c2c2;
  display: block;
  z-index: 1;
}
.divider h3::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  display: block;
  z-index: 0;
}

.contactUs .dividerSec::before,
.ourServices .dividerSec::before {
  left: 15px;
  transform: translate(0, -50%);
}

/*************************** general global styles end**************************************************************************************/
/*******************main navigation************************************************/
.home .navbar-brand {
  pointer-events: none;
}

header {
  background: var(--light);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}
header .headerTopBar {
  background: var(--blue);
  padding: 6px 0;
}
header .headerTopBar .headerInfo {
  margin-right: 30px;
  font-size: 14px;
  color: var(--light);
}
header .headerTopBar .headerInfo .icon {
  background: var(--orange);
  border-radius: 3px;
  display: inline-block;
  line-height: 1;
  text-align: center;
  height: 15px;
  width: 15px;
  margin-right: 10px;
}
header .headerTopBar .headerInfo .icon img {
  height: 10px;
  width: 10px;
}
header .headerNav {
  border-bottom: 1px solid rgba(167, 164, 164, 0.25);
}
header .headerNav .navbar .navbar-brand {
  width: 250px;
  height: 65px;
  margin: 0;
  padding: 0;
}
header .headerNav .navbar .navbar-collapse {
  flex-grow: initial;
}
header .headerNav .navbar .navbar-nav {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
header .headerNav .navbar .navbar-nav li {
  display: inline-block;
  position: relative;
}
header .headerNav .navbar .navbar-nav li a {
  display: block;
  text-decoration: none;
  font-size: 16px;
  color: var(--blue);
  overflow: hidden;
  font-weight: 400;
  padding: 0;
}
header .headerNav .navbar .navbar-nav li.current-menu-item a {
  font-weight: 700;
}
header #menu-main-menu {
  transition: 0.3s ease-in-out !important;
}

/*******************main navigation ends************************************************/
/********************************Page Banner****************************************************/
.page-banner {
  position: relative;
}

.page-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.page-banner .page-banner-inner {
  padding: 190px 0 20px;
}

.page-banner .page-banner-inner h1 {
  margin: 0;
  color: var(--light);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
  display: inline-block;
  font-size: 36px;
  line-height: 44px;
}

.page-banner .page-banner-inner h1:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 20%;
  height: 3px;
  background: var(--light);
  z-index: 1;
}

.page-banner .page-banner-inner h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--l-blue);
  z-index: 0;
}

/****************************Start LOADER**********************/
.page-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: var(--light);
  z-index: 1042;
  opacity: 1;
}

.page-loaded {
  opacity: 0;
}

.loaded-zindex {
  z-index: -9 !important;
}

.loaded {
  display: none !important;
}

.loader-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader {
  display: inline-block;
  width: 120px;
  height: 125px;
  position: relative;
  border: 20px solid var(--l-blue);
  border-radius: 30px;
  top: 50%;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: var(--l-blue);
  animation: loader-inner 2s infinite ease-in;
}
@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
/****************************END LOADER**********************/
/*******************************home slider ends************************************/
/**************misc******************/
.pageHeading {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 90px 0 30px;
  transition: background-color 0.3s ease;
}
.pageHeading .icon {
  width: 32px;
  height: 32px;
  color: var(--color-neutral-950);
}
.pageHeading p {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-neutral-950);
}
.pageHeading h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
}
.pageHeading h2 strong {
  color: var(--color-secondary);
}

.pagetitle h1 {
  color: var(--light);
  font-size: 40px;
  background: url(assets/img/nav-hover.png) left bottom no-repeat;
  background-size: 50% 4px;
  display: inline-block;
}

.mypage-header {
  padding-top: 150px;
  border-bottom: 5px solid rgba(0, 0, 0, 0.6);
}

.page-margin {
  margin-top: 133px;
}

.page-heading {
  margin-top: 110px;
  padding: 0 0 4px 0;
  background: #f5f5f5;
  text-align: right;
}

.page-heading h1 {
  font-size: 16px;
  color: #333333;
  margin: 0;
  line-height: 12px;
}

.page-heading span {
  color: #bbbbbb;
  font-size: 12px;
}

.form-fields,
.form-fields2,
.form-fields3 {
  width: 100%;
  box-sizing: border-box;
  padding: 6px;
  font-size: 12px;
  float: left;
  margin-bottom: 15px;
  border: 1px solid var(--color-neutral-400);
  background: var(--color-neutral-200);
  transition: 0.3s ease-in-out !important;
  border-radius: 5px;
}

.modal-open {
  overflow: visible;
}

.form-fields:focus,
.form-fields2:focus,
.form-fields3:focus {
  background: none;
  outline: none !important;
}

.form-fields-left {
  width: 48%;
  float: left;
  box-sizing: border-box;
  padding: 5px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid #c9c9c9;
}

.form-fields-right {
  width: 48%;
  float: right;
  box-sizing: border-box;
  padding: 5px;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid #c9c9c9;
}

.form-fields2 {
  height: 224px;
}

.form-fields3 {
  height: 182px;
}

.form-terms {
  float: left;
  margin-bottom: 25px !important;
  font-size: 13px;
  line-height: 22px;
}

.wpcf7-list-item {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.wpcf7-submit,
.ln-widgetBox.search .searchButton a {
  text-align: center;
  background: var(--blue) !important;
  color: var(--light) !important;
  outline: none;
  font-weight: 600 !important;
  padding: 8px 24px !important;
  font-size: 14px;
  border-radius: 10px;
  box-sizing: border-box;
  text-transform: uppercase;
  transition: 0.3s ease-in-out !important;
  text-indent: 0 !important;
  text-align: center;
  width: auto !important;
  height: auto !important;
  line-height: 24px;
  border: none;
}

.wpcf7-submit:hover,
.searchButton a:hover {
  color: var(--blue) !important;
  background: var(--orange) !important;
}

div.wpcf7 img.ajax-loader {
  float: left;
}

.wpcf7-list-item {
  margin: 0 10px 0 0px !important;
}

.wpcf7-list-item first label {
  margin-bottom: 0;
}

.wpcf7-list-item-label {
  font-weight: 400;
}

div.wpcf7-response-output {
  float: left;
}

.wpcf7-not-valid-tip {
  display: none !important;
}

.wpcf7-not-valid {
  border: 1px solid red;
}

.wpcf7-textarea {
  height: 200px;
}

/**************misc ends*****************/
.show {
  display: block;
}

.hide {
  display: none;
}

/***
====================================================================
	Start Flex 
====================================================================
***/
.flexContainer {
  display: flex;
  flex-flow: row wrap;
  max-width: 100%;
  justify-content: flex-start;
  gap: 15px;
}

/***
====================================================================
	End Flex
====================================================================
***/
/***
====================================================================
	Section Heading
====================================================================
***/
.sectionHeading span {
  text-align: center;
  display: inline-block;
  border-radius: 17px;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  padding: 6px 16px;
}

/***
====================================================================
	Header
====================================================================
***/
.headerbg {
  padding: 100px 0 100px;
  position: relative;
}
.headerbg .sectionHeading {
  text-align: center;
}
.headerbg .sectionHeading span {
  color: var(--light);
  font-weight: 700;
  font-size: 36px;
  line-height: 37px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: linear-gradient(90deg, rgb(var(--blue-rgba), 0.76) 0%, rgb(var(--blue-rgba), 0.76) 40%, rgb(var(--orange-rgba), 0.76) 100%);
  opacity: 1;
}

/***
====================================================================
	Start Hero Section
====================================================================
***/
/*******************************home slider************************************/
.heroSection {
  max-height: 738px;
  height: 70vh;
}
.heroSection .hreoTextContainer {
  display: flex;
  align-items: center;
}
.heroSection .hreoTextContainer .hreoText h3 {
  color: var(--light);
  margin-top: 0;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 20px;
}
.heroSection .hreoTextContainer .hreoText h1 {
  font-weight: 600;
  color: var(--light);
  margin-top: 0;
  font-size: 64px;
  line-height: 70px;
  width: 604px;
  margin-bottom: 20px;
}
.heroSection .hreoTextContainer .hreoText p {
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
  width: 434px;
  margin-bottom: 30px !important;
}

/***
====================================================================
	Company Info Boxes
====================================================================
***/
.companyInfoBoxes {
  background: var(--blue);
  color: var(--light);
}
.companyInfoBoxes .bgBlue {
  background: var(--blue);
}
.companyInfoBoxes .bgOrange {
  background: var(--orange);
}
.companyInfoBoxes .bgOrange .infoText {
  color: var(--blue);
}
.companyInfoBoxes .infoBox {
  width: 100%;
  justify-content: center;
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  padding: 30px;
  height: 100%;
}
.companyInfoBoxes .infoBox .infoIcon {
  width: 24px;
  height: 24px;
}
.companyInfoBoxes .infoBox .infoIcon img {
  width: 100%;
  height: 100%;
}
.companyInfoBoxes .infoBox .infoText {
  width: 160px;
  font-weight: 600;
}
.companyInfoBoxes .infoBox .infoText p {
  font-size: 14px;
  line-height: 1.4;
  margin: 0 !important;
  font-weight: 700;
}

/***
====================================================================
	About Home Page
====================================================================
***/
.ourMissionHome {
  padding: 120px 0;
  position: relative;
}
.ourMissionHome .ourMissionImage {
  position: relative;
  border-radius: 9px;
  padding: 0 30px;
}
.ourMissionHome .sectionHeading span {
  background: rgb(var(--light-orange-rgba), 0.37);
  font-size: 16px;
  padding: 10px 20px;
}
.ourMissionHome .ourMissionText h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin-top: 24px;
}
.ourMissionHome .ourMissionText p {
  color: var(--blue);
}

.bgImageSec::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(var(--blue-rgba), 0.77);
  z-index: 0;
}
.bgImageSec .bgImageSecText {
  position: relative;
  z-index: 1;
  padding: 120px 150px;
}
.bgImageSec .bgImageSecText p {
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
  line-height: 37px;
  margin: 0 auto !important;
}

.ourMissionBoxes {
  padding-bottom: 120px;
}
.ourMissionBoxes .missionBoxesHeading {
  padding: 50px 0;
}
.ourMissionBoxes .missionBoxesHeading p {
  font-size: 24px;
  line-height: 37px;
  color: var(--blue);
  font-weight: 700;
  margin: 0 auto !important;
}
.ourMissionBoxes .missionTopBox,
.ourMissionBoxes .missionBottomBox {
  border-radius: 30px;
  overflow: hidden;
}
.ourMissionBoxes .missionTopBox .missionBoxText p,
.ourMissionBoxes .missionBottomBox .missionBoxText p {
  font-size: 16px;
  line-height: 28px;
  color: var(--blue);
  margin: 0 !important;
  font-weight: 700;
  width: 680px;
}
.ourMissionBoxes .missionTopBox .missionTopBoxText {
  position: relative;
  display: flex;
  border-radius: 30px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  background: var(--orange);
  align-items: center;
  justify-content: center;
  padding: 30px 50px 30px 110px;
}
.ourMissionBoxes .missionTopBox .missionTopBoxText::before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 60px;
  height: 100%;
  background: var(--orange);
  border-top-right-radius: 30px;
}
.ourMissionBoxes .missionBottomBox {
  margin-top: 50px;
}
.ourMissionBoxes .missionBottomBox .missionBottomBoxText {
  display: flex;
  border-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: var(--blue);
  align-items: center;
  justify-content: center;
  padding: 30px 50px;
  position: relative;
}
.ourMissionBoxes .missionBottomBox .missionBottomBoxText::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  height: 100%;
  background: var(--blue);
  border-bottom-left-radius: 30px;
}
.ourMissionBoxes .missionBottomBox .missionBottomBoxText p {
  font-size: 16px;
  line-height: 28px;
  color: var(--light);
  margin: 0 !important;
  font-weight: 700;
  width: 680px;
}
.ourMissionBoxes .w-70 {
  width: 70%;
}
.ourMissionBoxes .w-30 {
  width: 30%;
}

/***
====================================================================
	Start About Us
====================================================================
***/
.aboutUs .aboutUsText {
  padding: 120px 220px;
}
.aboutUs .aboutUsText h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
}

.aboutTextSection .flexContainer {
  gap: 0;
}
.aboutTextSection .flexContainer .flexItem1 {
  width: 60%;
  padding: 50px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutTextSection .flexContainer .flexItem2 {
  width: 40%;
}
.aboutTextSection .aboutText h2 {
  font-weight: 700;
  font-size: 24px;
  line-height: 37px;
}
.aboutTextSection .aboutText p {
  font-size: 16px;
  line-height: 28px;
  color: var(--blue);
}

.aboutBgSec .aboutBgSecText {
  padding: 50px 150px;
}
.aboutBgSec .aboutBgSecText p {
  margin: 0 !important;
}

/***
====================================================================
	Start Main Banner
====================================================================
***/
.mainBanner {
  height: 100vh;
}

.mainBanner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("assets/img/banner-o-overlay.svg");
  background-size: cover;
  display: block;
}

/***
====================================================================
	End Main Banner
====================================================================
***/
/***
====================================================================
	Services Start
====================================================================
***/
.ourServicesText .serviceTopBox {
  border-radius: 45px;
  overflow: hidden;
}
.ourServicesText .serviceTopBox .serviceTopBoxText p {
  font-size: 16px;
  line-height: 28px;
  color: var(--blue);
  margin: 0 !important;
  font-weight: 700;
  width: 680px;
}
.ourServicesText .serviceTopBox .serviceTopBoxText {
  position: relative;
  display: flex;
  border-radius: 45px;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  background: var(--orange);
  align-items: center;
  justify-content: center;
  padding: 30px 50px 30px 110px;
}
.ourServicesText .serviceTopBox .serviceTopBoxText::before {
  content: "";
  position: absolute;
  top: 0;
  right: -60px;
  width: 60px;
  height: 100%;
  background: var(--orange);
  border-top-right-radius: 45px;
}
.ourServicesText .w-70 {
  width: 70%;
}
.ourServicesText .w-30 {
  width: 30%;
}
.ourServicesText p {
  font-size: 18px;
  color: var(--blue);
  line-height: 28px;
}
.ourServicesText .serviceBottomText h3 {
  line-height: 37px;
}

.ourServices .flexContainer {
  justify-content: center;
}
.ourServices .flexItem {
  width: calc(50% - 7.5px);
}
.ourServices .servicesBox {
  border-radius: 21px;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.ourServices .servicesBox .servicesContent {
  position: absolute;
  width: 100%;
  background-color: var(--blue);
  bottom: 0;
  border-radius: 21px;
  transition: 0.3s;
}
.ourServices .servicesBox .servicesContent a {
  padding: 20px 35px;
  display: inline-block;
}
.ourServices .servicesBox .servicesContent h3 {
  font-weight: 700;
  margin: 0;
  font-size: 24px;
  line-height: 27px;
  color: var(--light);
  transition: 0.3s;
}
.ourServices .servicesBox .servicesImage {
  transition: transform 0.3s ease-in-out;
}
.ourServices .servicesBox:hover .servicesImage {
  transform: scale(1.05);
}
.ourServices .servicesBox:hover .servicesContent {
  background-color: var(--orange);
}
.ourServices .servicesBox:hover .servicesContent h3 {
  color: var(--blue);
}

.serviceDetail {
  padding: 120px 0;
}
.serviceDetail .flexContainer {
  gap: 0;
  position: relative;
  align-items: center;
}
.serviceDetail .flexContainer::before {
  position: absolute;
  content: "";
  width: 65%;
  height: 120%;
  background-color: var(--light-bg);
  border-radius: 35px;
  left: 0;
  top: -10%;
  z-index: -1;
}
.serviceDetail .flexContainer .flexItem1 {
  width: 55%;
  display: flex;
  align-items: center;
  padding: 50px;
}
.serviceDetail .flexContainer .flexItem2 {
  width: 45%;
}
.serviceDetail .serviceDetailImage {
  border-radius: 21px;
  overflow: hidden;
}
.serviceDetail .serviceDetailText p {
  margin: 0 !important;
  font-size: 18px;
  line-height: 32px;
  color: var(--blue);
}

/***
====================================================================
	Start About
====================================================================
***/
.aboutUs {
  padding: 60px 0;
}
.aboutUs .content-box p {
  margin-top: 0 !important;
  font-weight: 400;
  color: var(--blue);
  font-size: 20px;
  line-height: 33px;
  text-align: center;
}

/***
====================================================================
	Start Our Projects
====================================================================
***/
.ourProjects {
  padding: 90px 0;
}
.ourProjects .sectionHeading p {
  margin: 0 !important;
  font-size: 24px;
  line-height: 129%;
  font-weight: 600;
  color: var(--blue);
  text-align: center;
}
.ourProjects .projectContainer {
  display: flex;
  border-radius: 35px;
  flex-wrap: wrap;
  transition: 0.3s;
}
.ourProjects .projectContainer.bg1 {
  background: var(--orange);
  margin-bottom: 50px;
}
.ourProjects .projectContainer.bg1 h3 {
  color: var(--blue);
}
.ourProjects .projectContainer.bg2 {
  background: var(--blue);
  flex-direction: row-reverse;
}
.ourProjects .projectContainer.bg2 h3 {
  color: var(--light);
}
.ourProjects .projectContainer .projectContent {
  width: 65%;
}
.ourProjects .projectContainer .projectContent a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 120px;
  height: 100%;
}
.ourProjects .projectContainer .projectContent a h3 {
  font-size: 32px;
  line-height: 129%;
  font-weight: 600;
  transition: 0.3s;
}
.ourProjects .projectContainer .projectImage {
  width: 35%;
  border-radius: 35px;
  overflow: hidden;
}

.projectDetail {
  padding: 120px 0 0;
}
.projectDetail .flexContainer {
  align-items: center;
  gap: 30px;
  position: relative;
}
.projectDetail .flexContainer .flexItem1 {
  width: calc(50% - 15px);
}
.projectDetail .flexContainer .flexItem2 {
  width: calc(50% - 15px);
}
.projectDetail .logo {
  position: absolute;
  top: -74px;
  left: calc(50% + 15px);
  width: 200px;
  height: auto;
}
.projectDetail .projectDetailText p {
  font-size: 18px;
  line-height: 30px;
  color: var(--blue);
}
.projectDetail .projectDetailText p:first-child {
  margin-top: 0 !important;
}

.projectTextBox {
  padding: 70px 30px;
}
.projectTextBox p {
  font-size: 18px;
  line-height: 30px;
  color: var(--blue);
}
.projectTextBox p:first-child {
  margin-top: 0 !important;
}
.projectTextBox ul {
  margin-top: 15px;
  font-size: 24px;
  line-height: 30px;
  color: var(--blue);
}
.projectTextBox ul li {
  margin-bottom: 10px;
}
.projectTextBox ul li:last-child {
  margin-bottom: 0;
}

.projectTextBox1 {
  background-color: var(--light-bg);
  margin-top: 60px;
}

.projectTextBox2 {
  background-color: var(--orange);
}
.projectTextBox2 .textBox2 {
  font-size: 24px;
  line-height: 30px;
}

.postid-148 .projectTextBox1 {
  background-color: var(--blue);
}
.postid-148 .projectTextBox1 .textBox1 p {
  font-size: 24px;
  line-height: 42px;
  font-weight: 700;
  color: var(--light);
}
.postid-148 .projectTextBox1 .textBox1 ul li {
  color: var(--light);
}
.postid-148 .projectTextBox1 .textBox1 ul li strong {
  color: var(--orange);
}
.postid-148 .projectTextBox2 {
  background-color: var(--light-bg);
}

/***
====================================================================
	Start Footer
====================================================================
***/
.container-footer {
  padding: 90px 0;
  background: var(--footer-bg);
}
.container-footer .footerheading h3 {
  margin: 0;
  margin-bottom: 16px;
  position: relative;
  color: var(--blue);
}
.container-footer .footerheading ul {
  margin-left: 24px;
}
.container-footer .footerheading ul li {
  list-style: disc;
}
.container-footer .footerheading ul li a {
  color: var(--blue);
}
.container-footer .footerheading ul li a:hover {
  text-decoration: underline;
}
.container-footer .footerheading .footerContact span {
  display: block;
  color: var(--blue);
}
.container-footer .footerheading .footerContact span a:hover {
  text-decoration: underline;
}

.footerCopyright {
  background-color: var(--blue);
  padding: 18px 0;
}
.footerCopyright span {
  color: var(--light);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

/***
====================================================================
	Contact Us
====================================================================
***/
.contactUsInfo {
  padding: 75px 0 90px;
}
.contactUsInfo .contactInfoHeading {
  margin-bottom: 50px;
  text-align: center;
}
.contactUsInfo .contactInfoHeading h2 {
  font-size: 32px;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}
.contactUsInfo .contactInfoHeading p {
  color: var(--blue);
  font-weight: 600;
}
.contactUsInfo .infoBox {
  padding: 40px 40px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.14);
  border-radius: 29px;
  height: 100%;
  background: var(--light);
}
.contactUsInfo .infoBox img {
  width: 34px;
  height: auto;
}
.contactUsInfo .infoBox .topSec {
  display: flex;
  gap: 13px;
}
.contactUsInfo .infoBox .topSec h3 {
  margin: 0;
  line-height: 1;
  font-size: 14px;
  font-weight: 600;
}
.contactUsInfo .infoBox .topSec p {
  font-size: 14px;
  margin-top: 5px !important;
  color: var(--orange);
  font-weight: 600;
}
.contactUsInfo .infoBox .bottomSec p {
  color: var(--blue);
}

.contactForm .flexContainer {
  background-color: var(--light-bg);
  justify-content: center;
  border-radius: 35px;
  padding: 100px 30px;
}
.contactForm .flexContainer .flexItem {
  width: 60%;
}
.contactForm .formSection .imageBox {
  background: url("assets/img/contact-form-bg.png") top center no-repeat;
  background-size: cover;
}
.contactForm .formSection .imageBox img {
  position: relative;
  bottom: -70px;
}
.contactForm .formSection .form-container h3 {
  margin-top: 0;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}
.contactForm .formSection .form-container h3 strong {
  color: var(--orange);
  font-weight: 600;
}
.contactForm .formSection .form-container textarea.form-fields {
  border-radius: 25px;
  padding: 30px;
  resize: none;
}
.contactForm .formSection .form-container .form-fields {
  border-radius: 61px;
  background: var(--light);
  padding: 15px 30px;
}
.contactForm .formSection .form-container .form-fields::-moz-placeholder {
  color: var(--button-border);
}
.contactForm .formSection .form-container .form-fields::placeholder {
  color: var(--button-border);
}

/***
====================================================================
	Locations
====================================================================
***/
.ourLocations {
  background: var(--color-neutral-100);
}
.ourLocations h2 {
  font-size: 30px;
  color: var(--color-primary);
  margin-top: 0;
}
.ourLocations p {
  font-size: 16px;
  color: var(--color-neutral-950);
  margin-bottom: 20px;
}
.ourLocations .flexContainer {
  margin-top: 30px;
}
.ourLocations .flexContainer .location-box {
  flex: 1 1 calc(20% - 12px);
  background-color: transparent;
  border: 1px solid var(--color-neutral-400);
  border-radius: 10px;
  transition: 0.3s;
  text-align: center;
  padding: 20px;
}
.ourLocations .flexContainer .location-box i {
  color: var(--color-primary);
  font-size: 24px;
  transition: 0.3s;
}
.ourLocations .flexContainer .location-box h3 {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-neutral-950);
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 1.4;
}
.ourLocations .flexContainer .location-box:hover {
  background: var(--color-primary);
}
.ourLocations .flexContainer .location-box:hover h3,
.ourLocations .flexContainer .location-box:hover i {
  color: var(--light);
}

/* Responsive Design */
@media (max-width: 768px) {
  .location-box {
    flex: 1 1 calc(50% - 30px);
    /* 2 boxes per row for tablets */
  }
}
@media (max-width: 480px) {
  .location-box {
    flex: 1 1 100%;
    /* 1 box per row for smaller screens */
  }
}
.dFlex {
  display: flex;
  align-items: center;
}

.leaflet-top.leaflet-left {
  z-index: 940;
}/*# sourceMappingURL=style.css.map */