* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/Merriweather-Bold.woff2') format('woff2'),
    url('../fonts/Merriweather-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-Regular.woff2') format('woff2'),
    url('../fonts/Rubik-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #064f44;
  --secondary-color: #f5c945;
  --tertiary-color: #07296c;
  --white-color: #fff;
  --black-color: #000;
  --light-gray-color: rgba(185, 185, 185, .3);
  --font-primary: font-family: 'Merriweather';
  --font-secondary: font-family: 'Rubik';
  --transition: 0.4s all ease-in-out;
  --paragraph-color: #818090;
}


.bg-primary {
  background: var(--primary-color) !important;
  color: white !important;
  border-radius: 25px;
  padding: 10px 30px;
}

.bg-primary:hover {
  background: var(--secondary-color) !important;
  color: white !important;
}


.bg-secondary {
  background-color: var(--secondary-color) !important;
  color: white !important;
  border-radius: 25px !important;
  padding: 10px 30px;
}

.bg-secondary:hover {
  background: var(--primary-color) !important;
  color: white !important;
}

.bg-White {
  background: var(--white-color) !important;
  color: white !important;
  padding: 10px 30px;
}

.bg-White:hover {
  background: var(--primary-color) !important;
  color: white !important;
}

.btn.bg-primary a {
  color: white;
  padding: 20px 12px;
  display: inline-block;

}

.btn.bg-secondary a {
  color: white;
  padding: 20px 12px;
}

.btn.bg-White a {
  color: rgb(0, 0, 0);
  padding: 20px 12px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-family: 'Rubik';
}

a {
  text-decoration: none;
  font-family: 'Rubik';
}

h1,
h2 {
  font-family: 'Merriweather';
  font-size: 45px;
  font-weight: 700;
}


h3,
h4,
h5,
h6 {
  font-family: 'Merriweather';
  font-weight: 700;
}

label {
  font-family: 'Rubik';
}

p,
input,
select,
textarea,
li {
  color: #575757;
  font-family: 'Rubik';
  font-size: 16px;
}

img {
  width: 100%;
}

body {
  font-family: 'Rubik';

}

::-webkit-scrollbar{
	width:8px;
}

::-webkit-scrollbar-track{
	background:transparent;
}

::-webkit-scrollbar-thumb{
	background: var(--primary-color);
}

.sticky-top {
  top: 100px;
}

.section-mt {
  padding: 60px 0px 20px;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 100%;
  padding: 0px 0px;
}

/* You can define the slidetop animation if needed */
@keyframes slidetop {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

/* =================footer==================== */
.logo {
  width: 10%;
}

.abb-box {
  position: relative;
}

.header-top {
  height: 40px;
  position: relative;
  background-color: var(--secondary-color);
}

.header-info {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 6px;
  float: inline-end;
  justify-content: space-between;
}

.header-contact {
  width: 48%;
}

.header-contact ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header-contact ul li {
  display: flex;
  justify-content: flex-start;
  padding: 0px 10px;
}

.info-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background-color: var(--secondary-color);
  font-size: 13px;
  color: white;
}

.head-icon {
  width: 30%;
  text-align: right;
}

.head-icon ul {
  display: inline-block;
  margin: 0;
  padding: 0;
}

.head-icon ul li {
  display: inline-block;
}

.head-icon ul li a {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: var(--tertiary-color);
  margin: 0 8px 0 0;
  font-size: 12px;
  color: white;
  transition: all 0.5s;
  cursor: pointer;
}

.header {
  width: 100%;
  position: relative;
  background: white;
}

.logo img {
  width: 80px;
}

.nav-box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 10px 0px;
}

.menu {
  /* width: 90%; */
  display: flex;
  /* justify-content: flex-end; */
  align-items: center;
}

.menu ul {
  margin: 0;
  display: inline-block;
  padding-left: 0;
}

.menu ul li {
  display: inline-block;
  margin: 0 14px;
  position: relative;
}

.menu ul li a {
  font-size: 16px;
  color: black;
  text-transform: capitalize;
  transition: .1s;
  border-bottom: 2px solid white;
}

.info-icon i {
  color: var(--tertiary-color);
  font-size: 18px;
}

.info-text a {
  color: black;
  font-size: 15px;
}

li.login-btn {
  background: var(--primary-color);
  padding: 10px 30px;
  border-radius: 28px;
}

li.login-btn a {
  color: white !important;
}

.banner {
  width: 100%;
  height: 550px;
  position: relative;
}

.banner:after {
  content: "";
  background: linear-gradient(90deg, #07296c 44%, #05154a1c);
  width: 100%;
  height: 550px;
  left: 0;
  position: absolute;
  z-index: 1;
}

.banner img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.banner_cont {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8;
  left: 5%;
  top: 20%;
}

.line-class {
  background: white;
  content: "";
  width: 80px;
  height: 1px;
  margin-right: 20px;
}

.header-tittle {
  display: flex;
  align-items: center;
}

.header-tittle h5 {
  color: white;
  font-family: var(--font-secondary);
  font-weight: 100;
  text-transform: uppercase;
  font-size: 17px;
}

.banner_cont h2 {
  font-size: 45px;
  color: white;
}

.banner_cont p {
  font-size: 15px;
  color: white;
	display: none;
}

.banner_cont .main-btn{
	display: none;
}

.big_img img {
  width: 80%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 2px solid white;
  height: 360px;
}

.small_img {
  position: absolute;
  top: 25%;
  left: 35%;
  width: 62%;
  object-fit: cover;
}

.big_img {
  position: relative;
  margin-bottom: 60px;
}

.small_img img {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 4px solid white;
  height: 340px;
}

.About-head h3 {
  font-size: 42px;
}

.About-head-tittle h3 {
  font-size: 20px;
}

.About-head ul, .About-head ol{
	margin-bottom: 20px;
}

.About-head ul li{
	margin: 10px 0 0 0;
	list-style: square;
	list-style-position: inside;
}

.About-head ol li{
	margin: 10px 0 0 0;
	list-style: decimal;
	list-style-position: inside;
}

.big_img.secnd img {
  position: absolute;
  right: 0;
}

.small_img.secnd img {
  position: absolute;
  top: 10%;
  left: 3%;
  width: 59%;
}

section.company-section {
  background: var(--tertiary-color);
  margin: 60px 0px;
}

.com_item_tbcell {
  width: 90%;
  float: right;
}

.About-text.comp h5 {
  color: white;
}

.About-text.comp h2 {
  color: white;
}

.com_item_tbcell p {
  color: white;
  width: 90%;
}

.com_item_tbcell ul, .com_item_tbcell ol{
	width: 90%;
	margin-bottom: 20px;
}

.com_item_tbcell ul li, .com_item_tbcell ol li{
	margin: 12px 0 0 0;
	list-style-position: inside;
	color: #fff;
}

.com_item_tbcell ul li{
	list-style: square;
}

.com_item_tbcell ol li{
	list-style: decimal;
}

.offer-icon img {
  width: 100px;
}

.offer-box {
  text-align: center;
  padding: 20px 10px;
}

.offer-text h3 {
  font-size: 22px;
  color: var(--primary-color);
}

.offer-btn a {
  color: var(--primary-color);
}

.offer-btn i {
  font-size: 10px;
}

section.cts-setion {
  /* background-image: url(../images/img-sec.jpg); */
  background-image: url(http://www.socoehs.com/wp-content/uploads/2025/10/Case-Studies.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-position-y: -255px;
  background-size: cover;
  min-height: 250px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: 60px 0px 0px;
}

.cts-header i {
  font-size: 15px;
}

.cts-header h2 {
  color: white;
  font-size: 36px;
  text-shadow: 3px 3px #000;
}

.cts-header {
  text-align: center;
  width: 70%;
  margin: auto;
  margin-bottom: 30px;
}

.cts-header a {
  color: white;
  font-size: 24px;
  border-bottom: 2px solid white;
}

.appointment {
  background: var(--secondary-color);
}

.app-form {
  padding: 50px 50px;
  background: #fff;
  border-radius: 6px;
  width: 90%;
  margin: 20px 0px;
}

.app-form input {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px;
  background: #dfdfdf;
  margin: 0 0 20px;
  border-radius: 6px;
}

.app-form textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 10px;
  background: #dfdfdf;
  margin: 0 0 20px;
  border-radius: 6px;
}

label {
  font-size: 14px;
}

.About-text.comp h2 {
  color: var(--tertiary-color);
}

.About-text.comp .line-class.inner {
  background: black;
}

.About-text.comp .header-tittle h5 {
  color: black;
}

.foot-nav-2 {
  width: 90%;
  float: right;
}

.app-txt p {
  font-size: 16px;
  color: black;
  /* font-weight: 600; */
}

section.News.section-mt {
  padding: 60px 0px;
}

.ab-felx.app-flex {
  margin-top: 60px;
}

.blog-box:hover .blog-text {
  background: var(--primary-color);
  color: white;
}

.blog-box:hover .blog-text span {
  color: white;
}

.blog-box:hover .blog-text h3,
.blog-box:hover .blog-text p,
.blog-box:hover .blog-text a {
  color: white;
}

.ab-felx.app-flex a {
  color: var(--tertiary-color);
  padding: 20px 30px;
  margin-top: 30px;
  font-size: 24px;
  font-weight: 700;
  border-radius: 12px;
}

.blog-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-text span {
  font-size: 13px;
  color: gray;
}

.blog-text h3 {
  font-size: 17px;
  color: var(--primary-color);
  margin-top: 10px;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.blog-text p {
  font-size: 13px;
}

.blog-text a {
  font-size: 14px;
  color: var(--primary-color);
}

.blog-text i {
  font-size: 12px;
  color: var(--primary-color);
}

.header-tittle.grrren .line-class.inner {
  background: var(--primary-color);
}

.header-tittle.grrren h5 {
  color: var(--primary-color);
  font-size: 16px;
}

.blog-box {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.blog-text {
  padding: 10px;
}

.gallery-box {
  width: 100%;
  margin: 0 0 60px 0;
}

.gallery-slider .slick-slide {
  padding: 0 10px;
}

.gallery {
  aspect-ratio: 3 / 2;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  cursor: pointer;
  margin: 40px 0 0 0;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  transition: all 1s;
  cursor: pointer;
}

.gallery:hover img {
  transform: scale(1.2);
}

.gallery::after {
  content: "";
  position: absolute;
  width: 300%;
  height: 0%;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.5s linear;
}

.gallery:hover:after {
  height: 250%;
  background: transparent;
}

.gallery-abso {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -100%;
  left: 0;
  transition: all 0.5s;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  z-index: 1;
}

.gallery-abso a {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  font-size: 25px;
  color: var(--white-color);
  border-radius: 50%;
  background: var(--secondary-color);
  transition: all 1s;
  cursor: pointer;
}

.gallery-abso a:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.gallery:hover .gallery-abso {
  top: 0;
}

.gallery:hover .gallery-abso a {
  top: 50%;
}

/* gallery css ends */

footer.fa-margin {
  background: var(--secondary-color);
}

.foot-logo img {
  width: 130px;
}

.border-br {
  border: 1px solid var(--tertiary-color);
  position: relative;
  width: 113px;
  margin-bottom: 20px;
}

.foot-nav ul li {
  color: black;
  margin: 3px 0px;
  position: relative;
  width: 49%;
  display: flex;
  align-items: center;
}

.foot-nav ul li::before {
  content: "➤";
  position: absolute;
  left: -6px;
  color: var(--tertiary-color);
  font-size: 10px;
}

.foot-nav ul li a {
  color: black;
  margin-left: 14px;
  transition: 0.2s ease-in;
}

.foot-nav-2 ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.foot-nav-2 ul li i {
  font-size: 20px;
  color: var(--tertiary-color);
  margin-right: 15px;
}

.foot-nav-2 ul li a {
  color: black;
  transition: 0.2s ease-in;
  font-size: 15px;
}

.foot-icon input[type="email"] {
  border-radius: 40px;
  width: 100%;
}

.foot-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.foot-icon {
  display: flex;
  align-items: center;
  position: relative;
}

.foot-icon input {
  border: 0;
  padding: 6px 20px;
  font-size: 12px;
}

.foot-icon a {
  background-color: #07296b;
  color: #fff;
  padding: 3px 18px;
  border-radius: 30px;
  position: absolute;
  right: 0;
}

.foot-nav h3 {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
}

.foot-nav-2 h3 {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
}

.foot-icon-2 {
  margin-top: 25px;
  display: flex;
  column-gap: 10px;
}

.foot-icon-2 span {
  background: var(--tertiary-color);
  border-radius: 50%;
  color: white;
  display: grid;
  place-items: center;
  font-size: 15px;
  width: 30px;
  height: 30px;
  transition: all 0.5s;
}

.foot-icon-2 span:hover {
  background: var(--primary-color);
}

.foot-icon-2 span a {
  color: white;
}

.mean-footer-copy {
  background: #f5c945;
  border-top: 1px solid black;
}

.mean-footer-copy p {
  margin: 0;
  padding: 10px;
  text-align: center;
}

.menu ul li a:hover {
  border-bottom: 2px solid var(--primary-color);
  width: 60%;
  color: var(--primary-color);
}

.Why-box {
  width: 90%;
  float: right;
}

.abb-box.two-section {
  position: relative;
}

.abb-box.two-section .big_img-2 {
  position: absolute;
  width: 70%;
  right: 0;
  border: 2px solid white;
  margin-bottom: 60px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.abb-box.two-section .small_img-2 img {
  width: 59%;
  left: 24px;
  z-index: 12;
  top: 50px;
  position: absolute;
  border: 2px solid white;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.Why-box-2 {
  width: 95%;
}

.com_img img {
  height: 550px;
  object-fit: cover;
}

input[type="submit"] {
  background: var(--primary-color);
  color: white;
  border-radius: 60px;
}

#common_banner_area {
  background-image: url(../images/common-banner.png);
  background-size: cover;
  background-position: center;
  padding: 145px 0;
}

.commn_banner_page h2 {
  color: #fff;
  font-size: 36px;
}

.breadcrumb_wrapper {
  display: flex;
  padding-top: 10px;
}

.breadcrumb_item {
  padding: 0 10px 0 0;
}

.breadcrumb_item a {
  color: white;
}

.breadcrumb_item.active {
  color: #ffffff8c;
}

.color_big_heading {
  position: relative;
  z-index: 9;
}

.color_big_heading::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  background: var(--secondary-color);
  bottom: 4px;
  left: 0;
  z-index: -1;
}

.section_padding {
  padding: 70px 0;
}

.section_heading {
  text-align: center;
  margin-bottom: 50px;
}

.section_heading h3 {
  color: var(--paragraph-color);
  font-weight: 400;
  margin-bottom: -30px;
}

.section_heading h2 {
  padding-top: 20px;
  position: relative;
}

.section_heading h2:before {
  content: url(../images/heading.png);
}

.contact_left_item {
  background: #ffffff;
  box-shadow: 8px 10px 24px rgb(0 0 0 / 10%);
  border-radius: 8px;
  display: flex;
  padding: 30px 40px;
  margin-bottom: 30px;
}

.contact_left_text h3 {
  padding-bottom: 10px;
  font-size: 24px;
}

.contact_left_text {
  padding-left: 20px;
}

.contact_left_text a:hover {
  color: var(--primary-color);
}

.contact_left_text a {
  color: var(--paragraph-color);
  display: block;
  font-size: 18px;
  padding-top: 5px;
}

.contact_form_Wrapper {
  background: #ffffff;
  box-shadow: 8px 10px 24px rgb(0 0 0 / 10%);
  border-radius: 8px;
  padding: 48px 40px;
}

.contact_form_Wrapper h3 {
  padding-bottom: 20px;
}

#contact_form .form-group {
  padding-bottom: 15px;
}

.form-control {
  height: 60px;
  border: none;
  box-shadow: 0px 1px 13px 0px #0000000d;
  padding: 10px 22px;
  font-size: 16px;
  background: #e03c3314;
}

.btn_theme {
  color: var(--white-color);
  background-color: var(--primary-color);
  transition: var(--transition);
  box-shadow: none;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  z-index: 0;
  border: none;
}

.form-control {
  height: 60px;
  border: none;
  box-shadow: 0px 1px 13px 0px #0000000d;
  padding: 10px 22px;
  font-size: 16px;
  background: #064f4421;
}

textarea.form-control {
  height: auto;
}

textarea.form-control {
  min-height: calc(1.5em +(0.75rem + 2px));
}

.inner-banner {
  position: relative;
  z-index: 1;
  background: url(../images/services-bg-img.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.inner-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
/*   background: #000000;
  opacity: 0.55; */
	background: linear-gradient(90deg, #07296c 40%, #05154a1c);
}

.inner-banner .inner-title {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
	text-align: left !important;
}

.inner-banner .inner-title h3 {
  font-size: 56px;
  color: #fff;
  font-weight: 600;
  position: relative;
  text-transform: capitalize;
}

.inner-banner .inner-title ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.inner-banner .inner-title ul li {
  font-size: 18px;
  color: #fff;
  display: inline-block;
}

.inner-banner .inner-title ul li a {
  color: #fff;
}

.inner-banner .inner-title ul li i {
  color: #fff;
  position: relative;
  top: 3px;
  margin: 0 3px;
}

.counter-box {
  width: 100%;
  padding: 50px 0;
  background: #07296b;
  margin: 60px 0 60px 0;
}

.counter {
  width: 100%;
  color: var(--secondary-color);
}

.counter.about-counter img {
  width: 70px;
  margin: auto;
  display: block;
}

.counter-head {
  display: flex;
  align-items: center;
  justify-content: center;
}

.counter-head h3 {
  font-size: 60px;
  margin: 0;
  font-weight: 800;
  color: var(--secondary-color);
}

.counter-head span {
  margin: 0 0 0 5px;
  font-size: 60px;
  color: var(--secondary-color);
  font-weight: 700;
}

.counter p {
  margin: 0 auto;
  font-size: 21px;
  text-align: center;
  width: 100%;
  color: var(--white-color);
  font-weight: 900;
  letter-spacing: 1px;
}

.Careers-box {
  background: white;
  padding: 20px 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 30px;
  border-radius: 8px;
}

img.cases__card-range--dollar {
  background: #9C27B0;
  border-radius: 50%;
  padding: 9px;
  filter: invert(1);
}

.head-text h2 {
  color: #064f44;
}

section.Careers-sec {
  padding: 60px 0px;
}

.car-num h3 {
  font-size: 62px;
  color: #0324452e;
  font-family: 'Helvetica';
}

.Careers-box h2 {
  font-size: 28px;
  color: #3a3a3a;
}

.Careers-text p {
  text-align: center;
}

.Careers-text p span {
  font-size: 20px;
  color: var(--primary-color);
  margin-right: 10px;
}

section.blog-inner {
  padding: 60px 0px;
}

.blog2-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog2-image img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.blog2-content {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 6px;
  /* margin: 10px; */
  background-color: #063c72;
  padding: 20px;
  width: 90%;
}

.Locations-sec .Careers-box {
  background: white;
  padding: 5px 6px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 30px;
  border-radius: 8px;
}

section.Careers-silder-2 {
  padding: 60px 0;
  background: #d9d9d957;
}

.Companies-2 img {
  width: 75%;
  height: auto;
  object-fit: cover;
}

.blog2-content h3 {
  font-size: 26px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.blog-text h4 {
  font-size: 14px;
  font-weight: 200;

}

.blog-box {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  width: 95% !important;
  margin: 40px 8px 0 8px;
}


.blog-text h3 a {
  font-size: 24px;
  color: var(--primary-color);
}

.blog-content {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  border-radius: 6px;
  margin: 20px 0px;
  background-color: white;
  /* width: 90%; */
}

.blog-content h3 {
  font-size: 26px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
}

.blog-text {
  padding: 17px;
}

.blog-text a {
  font-size: 14px;
  color: #000000;
}

.blog-text a i {
  color: var(--primary-color);
  margin-top: 4px;
}

section.blog-box {
  padding: 30px 0px 50px;
  background-color: var(--secondary-color);
}

.blog-para p {
  width: 85%;
  float: inline-end;
}

.blog-image img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 8px;
}

.head-text h2 span {
  /* display: block; */
  color: var(--secondary-color);
}

.blog-image {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

.Careers-text {
  margin-top: 20px;
  text-align: center;
}

.Careers-box:hover .car-num .careers-icon {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
}

.careers-icon {
  text-align: center;
  position: absolute;
  border: 0;
  left: 41%;
  opacity: 0;
  visibility: hidden;
  top: 37%;
}

.d-flex.align-items-center img {
  width: 50px;
}

section.Locations-sec {
  padding: 60px 0px;
}

.cases__card-range--bottom {
  display: flex !important;
}

.overlay-area {
  overflow: hidden;

}

.development img:hover {
  transform: scale(1.2);
  transition: 0.6s;
}

.Careers-box:hover .overlay-area img {
  transform: scale(1.2);
  transition: 0.6s;
}

.careers-icon i {
  font-size: 32px;
  color: white;
  background: var(--primary-color);
  padding: 14px 16px;
  border-radius: 50%;

}

.car-num {
  position: relative;
}

.car-num .overlay-area {
  position: relative;
  z-index: 00;
  border-radius: 8px;
}

.car-num:hover .overlay-area::after {
  position: absolute;
  content: "";
  background-color: #0000006b;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 8;

}

.car-loc p {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.Careers-text p span {
  font-size: 20px;
  color: var(--primary-color);
  margin-right: 10px;
}

.cases__card-range {
  border-radius: 10px;
  background: #F2F8F7;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(208, 208, 208, 0.07);
  box-shadow: 0px 8px 20px 0px rgba(208, 208, 208, 0.07);
  padding: 18px 16px;
  margin: 12px 0 0 0;
}

.global__desc {
  margin: 24px 0 40px 0;
  font-family: "Inter", sans-serif;
  color: #344054;
  font-size: 16px;
  font-weight: 400;
  line-height: 33px;
}

.cases__card-progress {
  height: 5px !important;
  background: #EAECF0 !important;
  margin: 12px 0 0 0;
}

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 0.25rem;
}

.cases__card-range--bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cases__card-range--bottom {
  display: block;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 16px 0 0 0;
}

.cases__card-range--bottom---m {
  margin: 0 0;
}

.cases__card-range--price {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #344054;
  text-transform: capitalize;
}

.cases__card-tag {
  position: absolute;
  bottom: 3px;
  left: 27px;
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  background: #4fa13d;
  color: #fff;
  padding: 6px 20px;
  border-radius: 100px;
}

.team-card {
  position: relative;
  margin-bottom: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	min-height: 100%;
}

.team-card > a{
	width: 100%;
	height: 300px;
	display: block;
}

.team-card img {
  position: relative;
/*   margin-bottom: 120px; */
  border-radius: 5px 5px 0 0;
}

.team-card .content {
/*   position: absolute; */
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 30px 20px;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  border-radius: 0 0 5px 5px;
}

.team-card .content .social-link {
  position: absolute;
  top: 320px;
  left: 0;
  width: 100%;
  visibility: visible;
  opacity: 1;
}

.team-card .content .social-link li i {
  background-color: var(--primary-color);
  color: white;
  padding: 10px 12px;
  border-radius: 50%;
}

.team-card:hover .content .social-link {
  top: 230px;
  opacity: 1;
  visibility: visible;
}

/* .team-card:hover .content {
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  padding: 30px 20px;
  bottom: -20;
  left: 0;
  text-align: center;
  width: 100%;
  border-radius: 0 0 5px 5px;
} */

.team-card .content h3 {
  margin-bottom: 10px;
}

.team-card .content h3 a {
  font-size: 22px;
  color: #202647;
}

.team-card .content span {
  color: var(--secondary-color);
  display: inline-block;
}

.team-card .content .social-link {
  padding: 0;
  margin: 15px 0 -50px 0;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.team-card .content .social-link li {
  list-style-type: none;
  display: inline-block;
  margin: 0 5px;
}

section.Careers-sec {
  padding: 40px 0px;
  background: #07296b;
}

.About-text {
  margin-top: 60px;
}

.Companies-box {
  width: 200px !important;
  height: 200px;
  overflow: hidden;
  transition: 0.2s;
  margin: 10px !important;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
  border-radius: 8px;
}

section.Careers-silder {
  padding: 40px 0px;
  background: #07296b;
}

.Companies-box img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.8s;

}

.Companies-box img:hover {
  transform: scale(1.2);
}

section.Our-team {
  padding: 60px 0px;
}

section.Careers-sec-2 {
  padding: 60px 0px;
}

section.Careers-sec-2 .Companies-box {
  width: 100% !important;
  height: 270px;
  object-fit: cover;
}

.progress-bar.cases__card-progress--bar {
  background: #064f44;
}

section.Careers-sec-2 .Companies-box img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.inner-case .blog-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  padding: 8px;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
	object-position: top;
}

section.About.section-mt2 {
  padding: 60px 0px;
  background: whitesmoke;
}

.abb-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.blog-image a {
  display: inline-block;
  width: 100%;
  overflow: hidden;
}

.blog-image img {
  overflow: hidden;
}

.blog-content:hover .blog-image img {
  transform: scale(1.3);
}

.blog-content:hover .blog-image img {
  transition: 1s;
}

.blog-image a {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.detail_image {
  width: 100%;
  height: 400px;
}

.detail_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.blog_head ul {
  padding: 0;
  display: inline-block;
  margin: 20px 0;
}

.blog_head ul li {
  display: inline-block;
  margin: 0 30px 0 0;
  color: black;
  font-size: 15px;
}

.blog_head ul li i {
  color: var(--primary-color);
  margin: 0 10px 0 0;
}

.blog_info {
  width: 100%;
  background-color: #0000003d;
  padding: 30px 60px 30px 40px;
  margin: 0 0 30px 0;
}

.blog-sidebar {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}

.blog_box_cont {
  width: 100%;
  padding: 12px;
  border: 1px solid #b2b2b2;
  border-radius: 10px;
  background: #064f44;
}

.blog_box_cont h4 {
  font-size: 30px;
  color: #ffffff;
  position: relative;
  /* display: inline-block; */
  margin: 0;
  text-align: center;
}

section.contact-box {
  padding: 60px 0px;
}

.blog-link i {
  margin-right: 12px;
}

.blog-link-img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
}

.blog-link {
  width: 100%;
  margin: 20px 0 0 0;
  background: white;
  padding: 6px 6px;
  border-radius: 8px;
  display: flex;
}

.detail_blogtext h2 {
  font-size: 36px;
  margin: 30px 0 0 0;
  color: #09296c;


}

.blog-link a {
  font-size: 20px;
  transition: all 0.5s;
  color: #09296c;
  font-weight: bolder;
  padding-left: 1px;
  text-transform: capitalize;
}

.blog-link p {
  padding: 0;
  margin: 0;
}

.foot-nav ul li a:hover {
  letter-spacing: 1px;
}

.foot-nav-2 ul li a:hover {
  letter-spacing: 1px;
}

.dz-share-post {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
  border-top: 1px dashed #cccccc;
}

.dz-share-post .dz-social-icon {
  display: flex;
  align-items: center;
}

.dz-share-post .dz-social-icon .title {
  margin-right: 20px;
  margin-bottom: 0;
}

.dz-share-post .dz-social-icon ul {
  margin-left: -3px;
  margin-right: -3px;
}

.dz-share-post .dz-social-icon ul li {
  padding: 0 3px;
}

.dz-share-post .dz-social-icon ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  display: block;
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 6px;
}

.dz-share-post .post-tags {
  display: flex;
  align-items: center;
}

.dz-share-post .post-tags {
  display: flex;
  align-items: center;
}

.dz-share-post .post-tags a {
  border-radius: 2px;
  padding: 6px 12px;
  border: 1px solid #e1e1e1;
  line-height: 1.4;
  display: inline-block;
  color: inherit;
  font-size: 14px;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  margin-right: 10px;
}

.dz-share-post .dz-social-icon ul {
  margin-left: -3px;
  margin-right: -3px;
  display: flex;
}

.dz-share-post .dz-social-icon {
  display: flex;
  align-items: center;
}

section.About.section-mt .big_img img {
  width: 80%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 2px solid white;
  height: 360px;
}

.offer-box:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 6px;
}

/* .head-box span {
    width: 50px;
    height: 50px;
    background: red;
    display: grid;
    justify-items: center;
    align-items: center;
    border-radius: 50px;
    font-size: 35px;
    color: white;
}
.head-box h2 {
    font-size: 24px;
    background: red;
    color: white;
    padding: 8px 30px 8px 60px;
    border-radius: 30px;
}
.head-box {
    display: flex;
    align-items: center;
}
.head-main {
    background: #bbbbbb;
} */

section.Health-sec {
  padding: 60px 0px;
}

.head h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
}

.head h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 25px;
}

.content-flex {
  display: flex;
  align-items: center;
  background: var(--secondary-color);
  width: max-content;
  padding: 10px 30px;
  border-radius: 30px;
  position: relative;
}

.content-flex h2 {
  font-size: 18px;
  margin: 0;
  padding-left: 20px;
}

/* .content-flex{
	
} */

.num {
  width: 30px;
  height: 30px;
  background: #fff;
  display: grid;
  place-content: center;
  border-radius: 100%;
  border: 1px solid #000;
  position: absolute;
  left: 10px;
}

.content-box {
  width: 100%;
  margin-bottom: 20px;
}

.content-txt {
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  width: 96%;
  padding: 40px 20px 20px;
  border-radius: 20px;
  border: 1px solid yellow;
  margin-top: -20px;
  margin-left: auto;
}

.back-text {
  position: absolute;
  font-size: 115px;
  line-height: normal;
  letter-spacing: 3px;
  display: block;
  text-transform: uppercase;
  top: 6px;
  z-index: -1;
  font-weight: bold;
  left: 40px;
  opacity: .2;
  color: #fff;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #4ea03c;
}

section.Health-sec {
  position: relative;
}

/* feature css starts */

.feature-box {
  width: 100%;
  background: #f3f3f3;
  padding: 60px 0;
}

.feature-box h5 {
  font-family: rubik;
  font-weight: 500;
  font-size: 18px;
  padding: 0 60px;
  position: relative;
  margin: 0 0 10px 0;
  display: inline-block;
}

.feature-box h5::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: #f5c945;
}

.feature-box h5::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background: #f5c945;
}

.feature-box h2 {
  margin: 0;
}

.feature-box h2 span {
  color: var(--primary-color);
}

.feature-row {
  width: 100%;
}

.feature-card {
  width: 100%;
  position: relative;
  padding: 0 0 0 50px;
  margin: 60px 0 0 0;
}

.feature-iconbox {
  width: 20%;
  padding: 0 30px 0 0;
  border-radius: 20px;
  background: #f5c945;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: -20px;
  left: 0;
}

.feature-icon {
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
  font-family: rubik;
  font-weight: 600;
}

.feature-icontext {
  width: calc(100% - 60px);
}

.feature-icontext h3 {
  font-size: 18px;
  margin: 0;
}

.feature {
  width: 100%;
  border: 1px solid #f5c945;
  border-radius: 0 0 10px 10px;
  padding: 20px 20px 20px 20px;
  background: #fff;
}

.feature-text {
  margin: 20px 0 0 0;
}

.feature-text h4 {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0 0 30px;
  font-size: 20px;
  color: #07296b;
  margin: 0;
}

.feature-text h4::before {
  content: url(../images/check.png);
  width: 16px;
  top: 2px;
  left: 0;
  position: absolute;
}

.feature-text h4 span {
  padding: 3px 15px;
  font-size: 15px;
  font-family: rubik;
  background: #f5c945;
  margin: 0 0 0 10px;
  border-radius: 5px;
  color: #fff;
  font-weight: 500;
}

.feature-text h4 span:nth-child(2) {
  background: #064f45;
}

.feature-card:nth-child(even) .feature-iconbox {
  background: #4ea03c;
}

.feature-text h4 a{
	color: inherit;
	font-family:inherit;
	font-weight: inherit;
}

.feature-text h4 a:hover{
	color: #064f45;
	text-decoration: underline;
}

.feature-text p {
  margin: 15px 0 0 0;
}

.feature-card:nth-child(even) .feature-icontext h3 {
  color: #fff;
}

.login-btn a {
  background: #064f45;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
}

/* feature css ends */


.About-img {
  position: sticky;
  top: 100px;
}

.about-image{
	position: static;
}

.leaderpopup .modal-dialog {
  max-width: 900px;
	max-height:400px;
}

.leaderpopup .modal-content {
  border: 2px solid var(--secondary-color);
	max-height:400px;
}

.leaderpopup .modal-header h3 {
  color: #064f45;
  font-size: 24px;
  margin: 0;
}

.leaderpopup .modal-body::-webkit-scrollbar{
	width:3px;
}

.leader-flex {
  width: 100%;
}

.leader-image {
  width: 300px;
  height: 200px;
  margin: 0 20px 10px 0;
  float: left;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}

.leader-text p {
  margin: 0 0 10px 0;
}

.leader-text p:last-child {
  margin: 0;
}

.prior-text p {
  margin: 15px 0 0 0;
}

.prior-text ul {
  margin: 15px 0 0 0;
}

.prior-text ul li {
  list-style: square;
  list-style-position: inside;
  margin: 0 0 10px 0;
}

.prior-text ul li:last-child {
  margin: 0;
}

.Locations-sec .section-heading {
  margin: 0;
}

.career-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.Locations-sec .Careers-box {
  margin: 30px 0 0 0;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  width: 32%;
  padding: 20px 30px;
  background: #000;
  transition: all 0.5s;
  cursor: pointer;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;


}

.Careers-text {
  margin: 0;
}

.Locations-sec .Careers-box h2 {
  margin: 0;
}

.Locations-sec .Careers-box a {
  color: #fff;
  font-size: 18px;
  display: inline-block;
}


.Locations-sec .Careers-box:hover {
  background: #000;
}

.Locations-sec .Careers-box:hover a {
  color: #fff;
	background: #064f45;
}

/* .Locations-sec .Careers-box:nth-child(even) {
  background: #4ea03c;
}

.Locations-sec .Careers-box:nth-child(even) a {
  color: #fff;
}

.Locations-sec .Careers-box:nth-child(even):hover {
  background: #000;
}

.Locations-sec .Careers-box:nth-child(even):hover a {
  color: #fff;
}
 */

/* priorty page css starts */

.priority-head-box {
  width: 100%;
  margin: 60px 0;
}

.prior-head {
  width: 100%;
}

.prior-head h3 {
  font-size: 42px;
  margin: 0;
}

.priority-head-text {
  width: 100%;
}

.priority-head-text p {
  margin: 15px 0 0 0;
}

.prior-head-flex {
  column-gap: 30px;
  margin: 20px 0 0 0;
  align-items: center;
}

.prior-head-flex h4 {
  font-size: 22px;
}

.prior-head-icon {
  width: 80px;
  height: 30px;
  background: #ffc000;
  border: 1px solid var(--black-color);
}

.priority-monitor-box {
  width: 100%;
  margin: 0 0 60px 0;
}

.prior-iconbox {
  width: 100%;
  margin: 40px 0 0 0;
  align-items: center;
  justify-content: space-between;
}

.prior-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  background: #ccd2d8;

}

.prior-icon img {
  width: 60%;
  padding: 5px;
  border: 3px solid var(--white-color);
}

.prior-icontext {
  width: calc(100% - 130px);
}

.prior-icontext p {
  margin: 0;
}

.priority-member-box {
  width: 100%;
  margin: 0 0 60px 0;
}

.prior-member {
  width: 100%;
  text-align: center;
  margin: 40px 0 0 0;
}

.prior-member-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}

.prior-member-icon img {
  width: 90%;
}

.prior-member-text {
  width: 100%;
  margin: 20px 0 0 0;
}

.prior-member-text p {
  margin: 0;
}

.priority-management-box {
  width: 100%;
  margin: 0 0 60px 0;
}

.prior-manage-row {
  justify-content: space-between;
}

.prior-manage {
  width: 24%;
  padding: 0;
  margin: 40px 0 0 0;
}

.prior-manage:nth-child(1) {
  background: #f8d9d2;
}

.prior-manage:nth-child(1) .prior-manage-head {
  background: #e97132;
}

.prior-manage:nth-child(2) {
  background: #f0e9cf;
}

.prior-manage:nth-child(2) .prior-manage-head {
  background: #cbc11e;
}

.prior-manage:nth-child(3) {
  background: #dce5cf;
}

.prior-manage:nth-child(3) .prior-manage-head {
  background: #56991d;
}

.prior-manage:nth-child(4) {
  background: #d1d8d1;
}

.prior-manage:nth-child(4) .prior-manage-head {
  background: #196b24;
}

.prior-manage-head {
  padding: 10px;
  text-align: center;
}

.prior-manage-head h4 {
  color: var(--white-color);
  font-size: 22px;
  margin: 0;
}

.prior-manage-text {
  padding: 20px;
}

.prior-manage-text p {
  margin: 0;
  color: var(--black-color);
}

.priority-partner-box {
  width: 100%;
  margin: 0 0 60px 0;
}

.prior-partner {
  width: 100%;
  margin: 40px 0 0 0;
  align-items: center;
  justify-content: space-between;
}

.prior-partner-icon {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  background: #ccd2d8;

}

.prior-partner-icon img {
  width: 60%;
  filter: brightness(0) invert(1);
}

.partner-icon1 {
  background: #e97132;
}

.partner-icon2 {
  background: #196b24;
}

.partner-icon3 {
  background: #0f9ed5;
}

.partner-icon4 {
  background: #a02b93;
}

.partner-icon5 {
  background: #4ea72e;
}


.prior-partner-icontext {
  width: calc(100% - 130px);
}

.prior-partner-icontext p {
  margin: 0;
}

.priority-reform-box {
  width: 100%;
  margin: 0 0 60px 0;
}

.prior-reform-row {
  justify-content: space-between;
}

.prior-reform {
  width: 24%;
  margin: 40px 0 0 0;
  padding: 40px 20px;
}

.prior-reform:nth-child(1) {
  background: #e97132;
}

.prior-reform:nth-child(2) {
  background: #cbc11e;
}

.prior-reform:nth-child(3) {
  background: #56991d;
}

.prior-reform:nth-child(4) {
  background: #196b24;
}

.prior-reform-icon {
  font-family: 'Rubik';
  font-size: 70px;
  color: var(--white-color);
  line-height: normal;
}

.prior-reform-text {
  width: 100%;
  margin: 20px 0 0 0;
}

.prior-reform-text p {
  margin: 0;
  color: var(--white-color);
}

/* priority page css ends */

/* team box new css starts */

.team-inner-box{
	width: 100%;
	padding: 60px 0;
}

.team-inner-box .About-head{
	margin: 0;
	padding: 0;
}

.team-inner-box .About-head h3{
	margin: 0;
	padding: 0;
}

.team-inner-row{
	justify-content: center;
}

.team-inner-card{
	width: 100%;
	border-radius: 10px;
	margin: 30px 0 0 0;
}

.team-inner-image{
	width: 100%;
	height: 340px;
	border-radius: 10px 10px 0 0;
	overflow: hidden;
}

.team-inner-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
	transition: all 0.5s ease-in-out;
}

.team-inner-text{
	width: 100%;
	text-align: center;
	padding: 20px 20px;
	background: #f5c94578;
	border-radius: 0 0 10px 10px;
	transition: all 0.5s ease-in-out;
}

.team-inner-text h4{
	color: #000;
	margin: 0;
}

.team-inner-text p{
	margin: 8px 0 0 0;
}

.team-inner-card:hover .team-inner-image img{
	transform: scale(1.2);
}

.team-inner-card:hover .team-inner-text{
	background: #c5d9ff;
}

.team-inner-card:hover .team-inner-text h4{
	color: #064f45;
}

.team-inner-card:hover .team-inner-text h4:hover{
color:#07296b;
}

.team-popup .modal-dialog{
	max-width: 1000px;
}

.team-popup .modal-content{
	width: 100%;
	height: 400px;
}

.team-popup-image{
	width: 200px;
	height: 200px;
}

.team-popup-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.team-popup-head{
	width: 100%;
	margin: 20px 0 0 0;
}

.team-popup-head h4{
	font-size: 25px;
	margin: 0;
	color: #064f45;
}

.team-popup-head h5{
	color: #000;
	margin: 10px 0 0 0;
}

.team-popup-text{
	width:100%;
}

.team-popup-text p{
	margin:15px 0 0 0;
}

.team-popup .modal-body::-webkit-scrollbar{
	width:3px;
}


/* team box new css ends */

/* privacy page css starts */

.privacy-box{
	padding: 60px 0;
}

.privacy-text-box{
	width: 100%;
}
a.btn.btn-primary {
    display: none;
}


.privacy-head .About-head{
	margin: 0;
	padding: 0;
}

.privacy-head .About-head h3{
	margin: 0;
	padding: 0;
}

.privacy-text {
	width: 100%;
}

.privacy-text h3, .privacy-text h4{
	margin: 20px 0 0 0;
	font-size: 25px;
}

.privacy-text p{
	margin: 20px 0 0 0;
}

.privacy-text ul li{
  list-style-type: square;
  list-style-position: inside;
  margin: 20px 0 0 0;
}

.privacy-text ol li{
  list-style-type: decimal;
  list-style-position: inside;
  margin: 20px 0 0 0;
}

.privacy-text p b, .privacy-text p strong, .privacy-text ul li b, .privacy-text ul li strong, .privacy-text ol li b, .privacy-text ol li strong{
  color: #064f45;
}

.privacy-text p a, .privacy-text ul li a, .privacy-text ol li a{
  font-weight: 600;
  color: #064f45;
}

.privacy-text p a:hover, .privacy-text ul li a:hover, .privacy-text ol li a:hover{
color: #07296b;
text-decoration: underline;
}

/* privacy page css ends */

.home-page .main-btn{
	display: none;
}
.foot-icon input { 
    padding: 12px 20px;
    font-size: 14px;
}
.foot-icon a {   
    padding: 10px 18px;  
}
a.btn.btn-primary {
    background: #08296c !important;
    border: 0px !important;
}

.case-study-box .section_heading{
	margin: 0;
}

.case-study-box .section_heading h2{
	margin: 0;
}

.case-content{
	width: 100%;
	margin: 30px 0 0 0;
}

.case-content .blog-image{
	width: 100%;
	aspect-ratio: 3 / 2;
	height: auto;
}

.case-content .blog-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.case-content h3{
	display: block;
	padding: 0;
	margin: 0;
		display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.case-content p{
	margin: 15px 0 0 0;
}

.case-btn{
	margin: 15px 0 0 0;
	display: inline-block;
}

.case-info{
	display: -webkit-box;
	-webkit-box-orient: vertical;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	overflow: hidden;
	text-overflow: ellipsis;
}

.offer-text p{
	display: none;
}


/* RESPONSIVE QUERY______ */
@media only screen and (max-width: 1360px) {
.menu ul li {
    display: inline-block;
    margin: 0 8px;
    position: relative;
}
}

@media only screen and (max-width: 1320px) {

}

@media only screen and (max-width: 1280px) {
.menu ul li {
    display: inline-block;
    margin: 0 6px;
    position: relative;
}
}
@media only screen and (max-width: 1200px) {
	a.btn.btn-primary {
    display: inline-block;
}
	ul#menu-primary-menu {
    display: none;
}
	.menu {   
    gap: 10px;
}
	.menu-moblie ul {
		margin-bottom: 20px
	}
	.menu-moblie ul li {
    padding: 7px;  
		
}
	.menu-moblie ul li a{
		 color: #4CAF50;
	}
}

@media only screen and (max-width: 1199px) {

}

@media only screen and (max-width: 1140px) {

}

@media only screen and (max-width: 1024px) {
  h1 { font-size: 42px !important; }
    h2 { font-size: 36px !important; }
    h3 { font-size: 28px !important; }
    h4 { font-size: 24px !important; }
    h5 { font-size: 20px !important; }
    h6 { font-size: 15px; }
    p { font-size: 15px !important; }   
}
.small_img {
  display : none;
}
.app-form input {   
    margin: 0 0 2px !important;    
}
.feature-iconbox {
    width: 43%;   
}
.small_img-2 {
    display: none;
}
.abb-box.two-section .big_img-2 {
    position: absolute;
    width: 100% !important;   
}
section.About.section-mt .big_img img {
    width: 100%;   
}
section.Our-team .col-lg-6.offset-lg-3.col-md-12.col-sm-12.col-12 {
    width: 100% !important;
    left: 0;
    right: 0;
    margin: 0px !important;
}


@media only screen and (max-width: 991px) {
.small_img {  
    display: none;
}
	section.About.section-mt .big_img img {
    width: 100%;  
}
	.Why-box {
    width: 100%; 
}
	.Why-box-2 {
    width: 100%;
}
	.abb-box.two-section .big_img-2 {
    position: inherit;
    width: 100%;   
}
	.abb-box.two-section .small_img-2 img {
    width: 59%;
    left: initial;  
    right: 0;
}
	.app-form {   
    width: 100%;
    margin: 60px 0px 0px 0px ;
}
	.app-txt {
    margin-bottom: 60px;
}
	.team-card {  
    min-height: auto;
}
	.prior-manage {
   width: 48%;
    margin: 20px 0 0 0;
}
	.prior-partner-icon {
    width: 60px;
    height: 60px;  
}
	.prior-reform {
    width: 48%;
    margin: 20px 0 0 0;   
}
	.prior-icon {
    width: 60px;
    height: 60px;
    margin-left: 10px;
 }
	.foot-logo {
    margin-bottom: 30px;
}
	.foot-nav {
    margin-bottom: 24px;
}
	.foot-nav-2 {
    width: 100%;
    float: right;
}
	.About-head {
    margin-top: 20px;
}
	.cts-header {  
    width: 100%;  
}
	.foot-icon {
    display: flex;
    align-items: center;
    position: relative;
    width: 500px;
}
	.feature-iconbox {
    width: 71%;
    position: relative;
    top: 0px;
    left: 0;
}
	.menu-moblie ul li a {
        padding: 7px;
        color: black !important;
    }
	section.About-2.section-mt{
    background: #ececec;
    padding: 30px 0px !important;
}
	.feature-card {  
    padding: 0px !important;   
}
	.inner-banner .inner-title {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    text-align: left !important;
}
.com_img {
    display: none;
}

.app-form input {   
    margin: 0 0 2px !important;    
}
}


@media only screen and (max-width: 980px) {

}

@media only screen and (max-width: 840px) {
  h1 { font-size: 36px !important; }
    h2 { font-size: 32px !important; }
    h3 { font-size: 24px !important; }
    h4 { font-size: 20px !important; }
    h5 { font-size: 20px !important; }
    h6 { font-size: 15px; }
    p { font-size: 15px !important; }   

}


@media only screen and (max-width: 800px) {

}


@media only screen and (max-width: 768px) {

.banner_cont {
    width: 75%;   
}
.banner {  
    height: 400px;  
}
.big_img {
    position: relative;
    margin-bottom: 20px;
}
}

@media only screen and (max-width: 767px) {

}
@media only screen and (max-width: 667px) {

}

@media only screen and (max-width: 600px) {

}

@media only screen and (max-width: 575px) {
   .foot-icon {       
        width: 100% !important;
    }
	.prior-iconbox {
    align-items: center;
    justify-content: center;
    display: flex !important;
    align-content: center;
    text-align: center;
}
	.line-class {
    display: none;
}
	.info-text {
    display: none;
}
	.head-icon {
    width: auto !important;  
}
	.logo img {
    width: 63px;
    height: auto;
}
	.prior-icontext {
    width: calc(100% - 69px);
    margin-left: 10ppx;
}
	.prior-manage {
        width: 94%;
        margin: 10px;
    }
	.prior-partner-icontext {
    width: calc(100% - 75px);
}
	.prior-reform {
        width: 94%;
        margin: 10px;
    }
	.feature-row {
    width: auto;
}
	.feature-text h4 {
    display: math;   
}
	.Locations-sec .Careers-box {
    margin: 20px auto 0px; 
    width: 100%;   
}

.banner_cont {
    width: 90%;
}

.com_item_tbcell {
    width: 96%; 
}

.small_img-2 {
    display: none;
}
.big_img-2.w-75 {
    width: 100% !important;
}
	.com_img {
    display: none;
}
	
.app-form {
    padding: 20px 20px;
}
	.app-form input {  
    margin: 0 0 3px;
    border-radius: 6px;
}
	.team-card img {  
    height: 360px;  
}
	.team-card > a { 
    height: 358px;  
}
	.feature-card {  
    padding: 2px !important;
    margin: 36px 0 0 0;
}
	.feature {    
    padding: 10px !important;   
}
	    .feature-iconbox {
        width: auto;       
    }
	section.Our-team {
    padding: 39px 0px;
}
	.contact_left_item {  
    padding: 20px !important;  
}
	.contact_form_Wrapper { 
    padding: 20px !important;
}
}
@media only screen and (max-width: 480px) {

}

@media only screen and (max-width: 414px) {

}

@media only screen and (max-width: 375px) {

}

@media only screen and (max-width: 360px) {

}


@media only screen and (max-width: 320px) {

}

