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

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

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Medium.woff2") format("woff2"),
    url("../fonts/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2"),
    url("../fonts/Roboto-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-family: var(--roboto);
  font-weight: bold;
}

h1 {
  font-size: var(--size-50);
}

h2 {
  font-size: var(--size-46);
}

h3 {
  font-size: var(--size-32);
}

h4 {
  font-size: var(--size-24);
}

h5 {
  font-size: var(--size-18);
}

h6 {
  font-size: var(--size-16);
}

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

a,
a:hover,
a:focus {
  text-decoration: none;
  border: 0;
  outline: 0;
}

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

p {
  padding-bottom: 15px;
  margin-bottom: 0;
  font-weight: normal;
}

p:last-child {
  padding: 0;
}

:root {
  /* colors */
  --black: #000;
  --white: #ffffff;
  --green: #7bbc2e;
  --yellow: #fcc834;
  --semigrey: #404040;
  --lightgrey: #6d6d6d;
  --darkgrey: #222222;
  --dark: #282828;
  --transition: all 0.3s ease-out;

  /* font-family */
  --roboto: "Roboto";
  --courgette: "Courgette";

  /* font-sizes */
  --size-14: 14px;
  --size-16: 16px;
  --size-18: 18px;
  --size-24: 24px;
  --size-32: 32px;
  --size-46: 46px;
  --size-50: 50px;
}

body {
  font-family: var(--roboto);
  color: var(--darkgrey);
  font-weight: normal;
  font-size: var(--size-14);
  line-height: 1.7;
}

.contentsection {
  padding: 80px 0;
}

.headersec {
  padding: 20px 0;
}

.headersec .navbar-collapse {
  justify-content: flex-end;
  gap: 10px;
}

.headersec .navbar-brand {
  padding: 0;
  margin: 0;
  max-width: 225px;
}

.headersec ul.navbar-nav li a {
  padding: 0;
  text-transform: capitalize;
  font-weight: 500;
  color: var(--darkgrey);
  font-size: var(--size-16);
  transition: var(--transition);
}

.headersec ul.navbar-nav li a:hover,
.headersec ul.navbar-nav li.current_page_item a {
  color: var(--green);
}

a.callbutton {
  position: relative;
  padding: 12px 15px;
  line-height: normal;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  font-size: var(--size-16);
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
}

a.callbutton:hover {
  background: var(--white);
  color: var(--green);
}

a.callbutton i {
  margin-right: 5px;
  font-size: var(--size-18);
}

.hmebannersec {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hmebannersec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hmebannercontsec {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

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

.hmebannercontsec .container {
  position: relative;
  z-index: 2;
}

.hmebannercontsec h1 {
  color: var(--yellow);
  line-height: 1.1;
}

.hmebannercontsec h1 span {
  display: block;
  color: var(--white);
}

a.discovernowbut {
  position: relative;
  padding: 12px 20px;
  line-height: normal;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  font-size: var(--size-16);
  font-weight: 700;
  border-radius: 3px;
  transition: var(--transition);
  display: inline-block;
}

a.discovernowbut:hover {
  background: var(--black);
  border: 2px solid var(--black);
  color: var(--white);
}

.hmefstcontsec h5 {
  color: var(--darkgrey);
  padding: 0 0 15px 0;
  font-family: var(--courgette);
}

.hmefstcontsec h5 span {
  color: var(--green);
}

.hmefstcontsec h3 {
  color: var(--darkgrey);
  padding: 0 0 15px 0;
  position: relative;
  margin: 0 0 25px 0;
}

.hmefstcontsec h3:before {
  background: var(--green);
  width: 7%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
  content: "";
}

a.contactusbut {
  position: relative;
  padding: 15px 25px;
  line-height: normal;
  text-transform: uppercase;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  font-size: var(--size-14);
  font-weight: 700;
  border-radius: 3px;
  transition: var(--transition);
  display: inline-block;
}

a.contactusbut:hover {
  background: var(--white);
  color: var(--green);
}

.hmefstsecimg {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  height: 100%;
}

.hmesndcontsec {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  text-align: center;
}

.hmesndcontsec::before {
  background-color: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: "";
}

.hmesndcontsec .container {
  position: relative;
  z-index: 2;
}

.hmesndcontsec h2 {
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.2;
}

.hmesndcontsec h2 span {
  color: var(--green);
  font-weight: normal;
}

a.learnmore {
  position: relative;
  padding: 15px 25px;
  line-height: normal;
  text-transform: uppercase;
  background: var(--green);
  color: var(--black);
  border: 2px solid var(--green);
  font-size: var(--size-14);
  font-weight: 700;
  border-radius: 3px;
  transition: var(--transition);
  display: inline-block;
}

a.learnmore:hover {
  background: var(--white);
}

.hmethrdcontsec h2 {
  text-align: center;
  color: var(--green);
  padding: 0 0 30px 0;
}

.industryweworksec {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.sgleindustryworksec {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  row-gap: 15px;
}

.industryiconsec {
  width: 100%;
  overflow: hidden;
  text-align: center;
}

.industryiconsec img {
  max-height: 81px;
  width: auto;
}

.sgleindustryworksec h5 {
  text-align: center;
  color: var(--green);
  font-weight: 500;
}

.hmefrthcontsec {}

.foundercontsec {
  background: var(--green);
}

.foundercontalign {
  padding: 40px 100px;
}

.foundercontalign h4 {
  text-align: center;
  padding: 0 0 10px;
  color: var(--black);
}

.foundercontalign h5 {
  text-align: center;
  padding: 0 0 10px;
  color: var(--black);
}

.foundercontalign p {
  color: var(--black);
}

.foundercontalign h6 {
  color: var(--black);
}

.foundercontsec img {
  height: 100%;
  object-fit: cover;
}

.hmesixthcontsec {
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.hmesixthcontsec::before {
  background-color: rgba(0, 0, 0, 0.35);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: "";
}

.hmesixthcontsec .container {
  position: relative;
  z-index: 2;
}

.hmesixthcontsec h5 {
  color: var(--white);
  padding: 0 0 10px 0;
  text-align: center;
  font-family: var(--courgette);
}

.hmesixthcontsec h3 {
  color: var(--white);
  padding: 0 0 18px 0;
  position: relative;
  margin: 0 0 40px 0;
  text-align: center;
}

.hmesixthcontsec h3:before {
  background: var(--white);
  width: 30px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  margin: 0 auto;
}

.sgleeventsec {
  background: var(--white);
}

.sgleeventsec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgleeventsec h4 {
  padding-bottom: 25px;
}

.eventcontsec {
  padding: 30px;
}

.metadatasec {
  margin: 0 0 20px 0;
}

.metadatasec ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid var(--lightgrey);
  padding-bottom: 15px;
}

.metadatasec ul li {
  color: var(--lightgrey);
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  line-height: 1.1;
}

.metadatasec ul li i {
  color: var(--green);
}

.sgleeventsec p {
  color: var(--lightgrey);
}

a.contreadbut {
  font-weight: bold;
  color: var(--green);
  font-size: var(--size-14);
}

a.contreadbut:hover {
  color: var(--black);
}

.hmeseventhcontsec h6 {
  color: var(--darkgrey);
  padding: 0 0 10px 0;
  text-align: center;
  font-family: var(--courgette);
}

.hmeseventhcontsec h6 span {
  color: var(--green);
}

.hmeseventhcontsec h3 {
  color: var(--darkgrey);
  padding: 0 0 20px 0;
  position: relative;
  text-align: center;
}

.hmeseventhcontsec h3:before {
  background: var(--green);
  width: 50px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}

.hmeseventhcontsec .col-xl-4 {
  margin-top: 30px;
}

.sglenewssec {
  border: 1px solid #d0d0d0;
  overflow: hidden;
  border-radius: 5px;
}

.newsimgsec {
  width: 100%;
  height: 203px;
  overflow: hidden;
}

.newsimgsec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.newscontsec {
  padding: 25px;
}

.sglenewssec h5 {
  text-transform: uppercase;
  color: var(--semigrey);
  padding: 0 0 15px 0;
}

.sglenewssec h5 a {
  color: var(--semigrey);
  transition: var(--transition);
}

.sglenewssec h5 a:hover {
  color: var(--green);
}

.sglenewssec p {
  color: var(--lightgrey);
}

.botnewspart {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 1px solid #d0d0d0;
  padding-top: 15px;
}

.botnewspart p {
  color: var(--lightgrey);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  line-height: 1.1;
  align-items: center;
  padding: 0;
}

.sglenewssec .botnewspart a.readmore {
  color: var(--green);
  transition: var(--transition);
  font-weight: bold;
}

.sglenewssec .botnewspart a.readmore:hover {
  color: var(--black);
}

.topftrsec {
  background: var(--darkgrey);
  padding: 50px 0;
}

.ftrlogo {
  margin-bottom: 25px;
}

.topftrsec p {
  color: var(--lightgrey);
}

.calltxt {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  line-height: 1.1;
  margin-top: 10px;
}

.calltxt,
.calltxt i {
  color: var(--white);
}

.calltxt a {
  color: var(--green);
  transition: var(--transition);
}

.calltxt a:hover {
  color: var(--yellow);
}

.ftrsocialsec {
  width: 100%;
  overflow: hidden;
  margin-top: 25px;
}

.ftrsocialsec ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ftrsocialsec ul li {
  line-height: 1;
}

.ftrsocialsec ul li a {
  color: var(--lightgrey);
  font-size: var(--size-18);
  transition: var(--transition);
}

.ftrsocialsec ul li a:hover {
  color: var(--green);
}

.topftrsec h5 {
  color: var(--white);
  text-transform: uppercase;
  padding: 0 0 25px 0;
  font-weight: 600;
}

.latestpostsec {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

.sglepostsec {
  display: flex;
  flex-wrap: wrap;
}
.sglepostsec .postthumbsec
{
  flex:0 0 25%;
  max-width: 25%;
}
.sglepostsec .postthumbsec img
{
  width: 100%;
}
.sglepostsec .postcontsec
{
  flex:0 0 75%;
  max-width: 75%;
  padding: 0 0 0 10px;
}
.sglepostsec h6 {
  font-weight: normal;
  padding: 0 0 12px 0;
}

.sglepostsec h6 a {
  color: var(--green);
  transition: var(--transition);
}

.sglepostsec h6 a:hover {
  color: var(--yellow);
}

.sglepostsec p {
  line-height: 1.1;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.instagramfeedsec {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.instagramfeedsec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.botftrsec {
  width: 100%;
  overflow: hidden;
  background: var(--dark);
  padding: 15px 0;
}

.botftrsec p {
  text-align: center;
  line-height: 1.1;
  color: var(--lightgrey);
}

.tabtopsec {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.project-tabs ul
{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    border: 0;
}
.tabtopsec ul.nav-tabs li .nav-link
{
    position: relative;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
    font-family: var(--courgette);
    font-weight: normal;
    font-size: var(--size-18);
    color: var(--darkgrey);
}
.tabtopsec ul.nav-tabs li .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: transparent;
    transform-origin: center;
    transition: transform 0.3s ease;
}
.tabtopsec ul.nav-tabs li .nav-link:hover, .tabtopsec ul.nav-tabs li .nav-link.active
{
  color: var(--green);
}
.tabtopsec ul.nav-tabs li .nav-link.active:after
{
  content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--green);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.gallerysec
{
    display: flex;
    flex-wrap: wrap;
}
.sglegallerysec
{
    flex:0 0 25%;
    max-width: 25%;
    overflow: hidden;
    position: relative;
}
.sglegallerysec img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease-out;
}
.sglegallerysec:hover img
{
    transform: scale(1.1);
}
.gallerybg
{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    z-index: 2;
    padding: 20px;
    opacity: 0;
    transition: all 0.5s ease-out;
}
.sglegallerysec:hover .gallerybg
{
    opacity: 1;
    width: 100%;
    height: 100%;
}
.sglegallerysec .gallerybg span
{
    border: 3px solid var(--green);
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: var(--size-32);
    font-weight: bold;
    color: var(--red);
}
.sglegallerysec .gallerybg span a
{
    color: var(--red);
}

.innerbannersec {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 90px 0;
  text-align: center;
  position: relative;
}

.innerbannersec::before {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  content: "";
}

.innerbannersec .container {
  position: relative;
  z-index: 2;
}

.innerbannersec h1 {
  color: var(--white);
  text-transform: uppercase;
}

.contactpgfstsec h5 {
  text-transform: uppercase;
  padding: 0 0 20px 0;
}

.contactinfoiconbg {
  background: var(--green);
  width: 100%;
  height: 100%;
  padding: 22px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.contactinfoiconbg i {
  color: var(--white);
  font-size: var(--size-24);
}

.contactpgfstsec h6 {
  padding-bottom: 5px;
}

.contactpgfstsec p a {
  color: var(--green);
  text-decoration: underline;
}

.contactpgfstsec p a:hover {
  text-decoration: none;
}

.blogpgcontsec h6 {
  color: var(--darkgrey);
  padding: 0 0 10px 0;
  text-align: center;
  font-family: var(--courgette);
}

.blogpgcontsec h6 span {
  color: var(--green);
}

.blogpgcontsec h3 {
  color: var(--darkgrey);
  padding: 0 0 20px 0;
  position: relative;
  text-align: center;
}

.blogpgcontsec h3:before {
  background: var(--green);
  width: 50px;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  z-index: 1;
  content: "";
}

.blogdetailpgcontsec ul li {
  font-weight: normal;
  background: url(../images/bullet.png) no-repeat left 4px;
  padding: 0 0 0 25px;
  margin-top: 5px;
}

.blogdetailpgcontsec ul li:first-child {
  margin-top: 0;
}

.blogdetailpgcontsec .latestpostsec {
  background: #f3f3f3;
  padding: 30px;
  border-radius: 10px;
}

.blogdetailpgcontsec .latestpostsec h5 {
  color: var(--black);
  text-transform: uppercase;
  font-weight: 600;
}

.contactformsec {
  background: #f1f2f4;
  border: 1px solid #e6e6e6;
  padding: 30px;
  border-radius: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.inputfield {
  width: 100%;
  height: 55px;
  padding: 0 18px;
  background: var(--white);
  border: 1px solid #e6e6e6;
  outline: 0;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  line-height: 55px;
  color: var(--black);
  font-family: var(--roboto);
  font-weight: 400;
  font-size: var(--size-14);
  margin-bottom: 15px;
}

.textareafield {
  width: 100%;
  height: 150px;
  padding: 15px 18px;
  background: var(--white);
  border: 1px solid #e6e6e6;
  outline: 0;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -webkit-border-radius: 30px;
  line-height: normal;
  color: var(--black);
  font-family: var(--roboto);
  font-weight: 400;
  font-size: var(--size-14);
  margin-bottom: 15px;
}

.submitbut {
  background: var(--green);
  line-height: 50px;
  color: var(--white);
  font-family: var(--roboto);
  font-size: var(--size-16);
  font-weight: 500;
  text-transform: capitalize;
  padding: 0 40px;
  border-radius: 70px;
  display: inline-block;
  transition: var(--transition);
  border: 0;
  outline: 0;
}

.submitbut:hover {
  background: var(--black);
}

.sgleachievementsec {
  border: 1px solid #e9e9e9;
  padding: 20px;
  background: var(--white);
  position: relative;
  box-shadow: -10px 10px 0px 0px rgba(233, 233, 233, .75);
  -webkit-box-shadow: -10px 10px 0px 0px rgba(233, 233, 233, .75);
  -moz-box-shadow: -10px 10px 0px 0px rgba(233, 233, 233, .75);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.hmeeightcontsec h3 {
  color: var(--darkgrey);
  padding: 0 0 15px 0;
  position: relative;
  margin: 0;
  text-align: center;
}

.hmeeightcontsec h3:before {
  background: var(--green);
  width: 7%;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  margin: 0 auto;
}
.hmeeightcontsec .col-md-4, .achievementpgsec .col-md-4
{
  margin-top: 30px;
}
.associatecontsec h4 {
  color: var(--darkgrey);
  padding: 0 0 15px 0;
  position: relative;
  text-align: center;
}

.associatecontsec h4:before {
  background: var(--green);
  width: 7%;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  margin: 0 auto;
}

.sgleassociatesec {
  border: 1px solid #e9e9e9;
  padding: 50px 30px 30px 20px;
  background: var(--white);
  position: relative;
  box-shadow: -10px 10px 0px 0px rgba(233, 233, 233, .75);
  -webkit-box-shadow: -10px 10px 0px 0px rgba(233, 233, 233, .75);
  -moz-box-shadow: -10px 10px 0px 0px rgba(233, 233, 233, .75);
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  font-size: var(--size-16);
}

.numberdiv {
  position: absolute;
  left: 20px;
  top: -12px;
  z-index: 1;
  background: var(--green);
  width: 52px;
  height: 47px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
  font-size: var(--size-24);
}

.wpcf7-not-valid-tip {
  line-height: 1.1;
  margin-bottom: 15px;
}

.wpcf7-response-output {
  margin: 20px 0 0 0 !important;
  padding: 8px 10px !important;
  border: 0 !important;
  color: var(--white);
  font-size: var(--size-14);
  line-height: 1.1;
}

.invalid .wpcf7-response-output {
  background: #ff0000;
}

.sent .wpcf7-response-output {
  background: var(--green);
}

.clientpgcontsec h3 {
  color: var(--darkgrey);
  padding: 0 0 15px 0;
  position: relative;
  margin: 0 0 25px 0;
  text-align: center;
}

.clientpgcontsec h3:before {
  background: var(--green);
  width: 7%;
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  content: "";
  margin: 0 auto;
}

.client-filter-wrapper {
  width: 100%;
}

.client-filter-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.client-filter-field {
  flex: 1 1 220px;
}

.client-filter-field select {
  width: 100%;
  height: 42px;
  padding: 0 10px;
  border: 1px solid #ddd;
  background: var(--white);
  font-size: var(--size-14);
  outline: 0;
}

.client-filter-button {
  flex: 0 0 auto;
}
.client-filter-button button,
.client-reset-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  min-width: 110px;
  padding: 0 22px;
  border: 0;
  background: var(--green);
  color: var(--white) !important;
  text-decoration: none !important;
  cursor: pointer;
  font-size: var(--size-14);
  line-height: 1;
  box-sizing: border-box;
}
.client-filter-button button:hover,
.client-reset-button:hover {
  opacity: 0.9;
  color: var(--white) !important;
}
.client-table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.client-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.client-table th {
  background: var(--darkgrey);
  color: var(--white);
  text-align: left;
  padding: 12px 10px;
  font-weight: 600;
  white-space: nowrap;
}

.client-table td {
  padding: 10px;
  border: 1px solid #ddd;
}

.client-table tbody tr:nth-child(even) td {
  background: #f7f7f7;
}

.client-load-more-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  min-height: 42px;
}

.client-load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 42px;
  padding: 0 22px;
  border: 0;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font-size: var(--size-14);
  line-height: 1;
}

.client-load-more:hover {
  opacity: 0.9;
}

.client-load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.client-load-more-loader {
  display: none;
  font-size: 14px;
  color: var(--lightgrey);
}
.client-load-more-wrap.is-loading .client-load-more-loader {
  display: inline-block;
}
.client-no-results {
  padding: 20px;
  text-align: center;
  background: #f5f5f5;
}
.lb-number
{
  display: none !important;
}
.contactpgfstsec iframe
{
  border: 2px solid var(--lightgrey) !important;
}
.associatecontsec .col-12
{
  margin-top: 40px;
}