@font-face {
  font-family: 'poppinsbold';
  src: url('fonts/poppins-bold-webfont.woff2') format('woff2'), url('fonts/poppins-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppins_mediumregular';
  src: url('fonts/poppins-medium-webfont.woff2') format('woff2'),
    url('fonts/poppins-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppinsregular';
  src: url('fonts/poppins-regular-webfont.woff2') format('woff2'),
    url('fonts/poppins-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'poppins_semiboldregular';
  src: url('fonts/poppins-semibold-webfont.woff2') format('woff2'),
    url('fonts/poppins-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

/* --- RESET --- */
body,
h1,
h2,
h3,
h4,
h5,
h6,
img,
a,
p,
dl,
dt,
dd,
input,
textarea,
select,
ul,
li button,
area,
map {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  outline: none;
  border: none;
}

html,
body {
  height: 100%;
  min-height: 100%;
}

body {
  overflow-x: hidden;
  font-size: 14px;
  font-weight: normal;
}

/*fonts*/

.poppingMedium {
  font-family: 'poppins_mediumregular', Arial, sans-serif;
  font-weight: normal;
}

.poppingBold {
  font-family: 'poppinsbold', Arial, sans-serif;
  font-weight: normal;
}

.poppingReg {
  font-family: 'poppinsregular', Arial, sans-serif;
  font-weight: normal;
}

.poppingSemiBold {
  font-family: 'poppins_semiboldregular', Arial, sans-serif;
  font-weight: normal;
}

/*predefined classes*/

.transition {
  -webkit-transition: all 0.2s ease-in-out;
  /* Safari 3.2+, Chrome */
  -moz-transition: all 0.2s ease-in-out;
  /* Firefox 4-15 */
  -o-transition: all 0.2s ease-in-out;
  /* Opera 10.5-12.00 */
  transition: all 0.2s ease-in-out;
  /* Firefox 16+, Opera 12.50+ */
}

.centre-left {
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  position: relative;
}

.centre-top {
  top: 50%;
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  position: relative;
}

.centre-left-top {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: relative;
}

.width-100,
.tag-default {
  float: left;
  width: 100%;
  position: relative;
  font-weight: normal;
}

.absolute {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.left {
  float: left;
}

.right {
  float: right;
}

.clear {
  clear: both;
}

.height100 {
  height: 100%;
}

.cursor {
  cursor: pointer;
}

.center {
  text-align: center;
}

.upper {
  text-transform: uppercase;
}

.justify {
  text-align: justify;
}

.normalText {
  text-transform: none;
}

.cubic {
  -webkit-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 600ms cubic-bezier(0.42, 0, 0.58, 1);
  /* easeInOutCubic */

  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
  /* easeInOutCubic */
}

.cubic2 {
  -webkit-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  /* easeInOutCubic */
}

/*predefined classes*/

/*custom*/
.wrapper {
  width: 100%;
  position: relative;
  float: left;
  overflow: hidden;
  background-color: #fff;
  min-height: 100%;
  padding-bottom: 50px;
}

.safearea {
  width: 1000px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  position: relative;
  float: left;
}

header {
  height: 92px;
  z-index: 10;
  position: fixed !important;
  background-color: #fff;
  top: 20px;
  border-bottom: 3px solid #1f3c90;
}

section.content{
  margin-top: 116px;
}

.banner{
  margin-top: 20px;
}

header nav {
  float: right;
}

header nav ul li {
  margin-right: 30px;
  color: #494949;
  font-size: 15px;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  /* Safari 3.2+, Chrome */
  -moz-transition: all 0.2s ease-in-out;
  /* Firefox 4-15 */
  -o-transition: all 0.2s ease-in-out;
  /* Opera 10.5-12.00 */
  transition: all 0.2s ease-in-out;
  /* Firefox 16+, Opera 12.50+ */
}

header nav ul li a {
  color: #494949;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
  float: left;
  -webkit-transition: all 0.2s ease-in-out;
  /* Safari 3.2+, Chrome */
  -moz-transition: all 0.2s ease-in-out;
  /* Firefox 4-15 */
  -o-transition: all 0.2s ease-in-out;
  /* Opera 10.5-12.00 */
  transition: all 0.2s ease-in-out;
  /* Firefox 16+, Opera 12.50+ */
}

header nav ul > li:last-child {
  margin-right: 0px;
}

header nav ul li.activeMenu a,
header nav ul li:hover a {
  color: #1f3c90;
}

header nav ul li::before {
  position: absolute;
  left: 0px;
  bottom: 5px;
  width: 100%;
  content: '';
  height: 2px;
  background-color: #1f3c90;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  /* Safari 3.2+, Chrome */
  -moz-transition: all 0.2s ease-in-out;
  /* Firefox 4-15 */
  -o-transition: all 0.2s ease-in-out;
  /* Opera 10.5-12.00 */
  transition: all 0.2s ease-in-out;
  /* Firefox 16+, Opera 12.50+ */
}

header nav ul li.activeMenu::before,
header nav ul li:hover::before {
  bottom: 0px;
  opacity: 1;
}

.topBand {
  background-color: #1f3c90;
  height: 20px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10;
}

.width70,
.width70About {
  background-color: #f2f2f2;
  height: 582px;
  position: absolute;
  top: 20px;
  left: 0px;
  width: 75%;
}

.width70About {
  left: auto;
  right: 0px;
  height: 750px;
}

.bannerText {
  width: 435px;
}

.bannerText h3 {
  color: #494949;
  font-size: 35px;
  line-height: 40px;
}

.bannerText article {
  color: #898989;
  font-size: 14px;
  margin-top: 25px;
  line-height: 20px;
}

.bannerIMGsWrapper {
  position: absolute;
  top: 0px;
  overflow: hidden;
}

.bannimgs {
  position: relative;
  left: 0px;
}

.bannimgs li {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.bannNav {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 250px;
  height: 80px;
  background-color: #1f3c90;
}

.bannNav span {
  width: 125px;
  height: 80px;
  background-image: url(../../images/arrow.png);
  background-repeat: no-repeat;
  background-position: 30px center;
  position: relative;
}

.bannNav span.rightArrow {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.bannNav span.rightArrow::before {
  content: '';
  position: absolute;
  right: 0px;
  background-color: #fff;
  width: 1px;
  height: 30px;
  top: 27px;
}

.aboutHome {
  margin-top: 130px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.aboutContent {
  padding-left: 65px;
  padding-right: 65px;
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #1f3c90;
  width: 422px;
}

.aboutContent h3 {
  color: #fff;
  font-size: 35px;
  position: relative;
  padding-bottom: 25px;
}

.aboutContent h3::before,
.aboutContent a::before,
.contactMessage::before,
.sect2About h2::before,
.aboutServices h2::before {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  width: 50px;
  height: 1px;
  background-color: #fff;
  content: '';
}

.contactMessage::before,
.sect2About h2::before,
.aboutServices h2::before {
  width: 75px;
  background-color: #1f3c90;
  height: 1px;
}

.aboutServices h2::before {
  background-color: #fff;
}

.aboutContent a::before {
  width: 40px;
}

.aboutContent article {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin-top: 30px;
  margin-bottom: 45px;
  -ms-text-align-last: center;
  text-align-last: center;
}

.aboutContent a {
  color: #fff;
  font-size: 14px;
  padding-bottom: 10px;
}

.aboutIMG {
  background-image: url(../../images/about-img.jpg);
  background-position: center;
  background-size: cover;
  position: absolute;
  left: 0px;
  top: 0px;
}

.companiesHome {
  margin-top: 140px;
  margin-bottom: 140px;
}

.companiesLeft {
  width: 385px;
  margin-top: 80px;
}

.companiesLeft h3 {
  color: #494949;
  font-size: 35px;
  position: relative;
  padding-bottom: 30px;
}

.companiesLeft article {
  color: #898989;
  font-size: 14px;
  line-height: 20px;
  margin-top: 45px;
  margin-bottom: 45px;
}

.companiesLeft a {
  color: #1f3c90;
  font-size: 14px;
  padding-bottom: 10px;
  position: relative;
}

.companiesLeft h3::before,
.companiesLeft a::before,
.boardHomeIntroLeft h3::before,
.boardHomeIntroRight a::before,
.officialSiteWrapper h3::before,
.contactUsHomeWrapper h3::before {
  position: absolute;
  bottom: 0px;
  width: 50px;
  height: 1px;
  background-color: #1f3c90;
  content: '';
}

.officialSiteWrapper h3::before {
  background-color: #494949;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.companiesLeft a::before {
  width: 25px;
}

.boardHomeIntroRight a::before {
  width: 25px;
  background-color: #fff;
}

.boardHomeIntroLeft h3::before,
.contactUsHomeWrapper h3::before {
  background-color: #fff;
}

.companiesRight {
  width: 565px;
}

.allCompaniesHolder {
  overflow: hidden;
}

.allCompanies {
  position: relative;
  padding-bottom: 110px;
  left: 0px;
}

.homeCompanyDiv {
  width: 168px;
  height: 138px;
  background-color: #f2f2f2;
  background-size: 75%;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
  margin-right: 30px;
  margin-bottom: 30px;
}

.homeCompanyMerge > div:nth-child(3n-1) {
  top: 55px;
}

.homeCompanyMerge > div:nth-child(3n) {
  margin-right: 0px;
  top: 110px;
}

.homeCompanyMerge {
  float: left;
  margin-right: 30px;
}

.companiesNav span {
  color: #b5b5b5;
  font-size: 17px;
  margin-right: 30px;
}

.companiesNav span.activeCompanyNav {
  color: #1f3c90;
}

.companiesNav > span:last-child {
  margin-right: 0px;
}

.boardMembersWrapper {
  padding-top: 110px;
  margin-bottom: 150px;
}

.width70Board {
  position: absolute;
  width: 85%;
  background-color: #1f3c90;
  height: 437px;
  top: 0px;
  right: 0px;
}

.boardHomeIntroLeft {
  margin-left: 85px;
}

.boardHomeIntroLeft h3,
.contactUsHomeWrapper h3 {
  color: #fff;
  font-size: 35px;
  position: relative;
  padding-bottom: 40px;
}

.boardHomeIntroRight {
  width: 510px;
}

.boardHomeIntroRight article {
  color: #fff;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 40px;
}

.boardHomeIntroRight a {
  color: #fff;
  font-size: 14px;
  position: relative;
  padding-bottom: 10px;
}

.boardMembersIMGwrapper {
  margin-top: 65px;
}

.boardMembersULwrap {
  overflow: hidden;
  margin-left: 85px;
  width: 810px;
}

.boardMembersULwrap ul {
  position: relative;
  left: 0px;
}

.boardMembersULwrap ul li {
  width: 120px;
  padding-top: 160px;
  background-repeat: no-repeat;
  background-size: 100% 148px;
  margin-right: 15px;
  position: relative;
}

.boardMembersULwrap ul li h4,
.boardMemberDiv h4 {
  font-size: 11px;
  color: #494949;
}

.boardMembersULwrap ul li h5,
.boardMemberDiv h5 {
  font-size: 13px;
  color: #1f3c90;
  margin-bottom: 3px;
  margin-top: 5px;
}

.boardNav {
  position: absolute;
  right: 0px;
  bottom: 6px;
}

.boardNav span {
  width: 8px;
  height: 15px;
  background-image: url(../../images/arrowBlue.png);
  background-repeat: no-repeat;
  position: relative;
}

.boardNav span.rightArrow {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
  margin-left: 50px;
}

.officialSiteWrapper {
  padding-top: 75px;
  margin-bottom: 160px;
}

.width100OfficialSites {
  background-color: #f2f2f2;
  height: 400px;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
}

.officialSiteWrapper h3 {
  font-size: 35px;
  position: relative;
  color: #494949;
  padding-bottom: 40px;
}

.officialSiteWrapper article {
  margin-top: 30px;
  font-size: 14px;
  line-height: 20px;
  -ms-text-align-last: center;
  text-align-last: center;
  color: #898989;
  width: 650px;
  margin-bottom: 75px;
}

.officialContainer > div:last-child {
  margin-right: 0px;
}

.officialsiteDiv {
  width: 180px;
  margin-right: 25px;
}

.officialsiteDivIMG {
  width: 180px;
  height: 150px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fff;
  -webkit-box-shadow: 0px 7px 11px #ccc;
  box-shadow: 0px 7px 11px #ccc;
}

.officialsiteDiv h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #1f3c90;
  font-size: 14px;
  line-height: 17px;
}

.officialsiteDiv a {
  color: #494949;
  font-size: 13px;
}

.contactUsHomeWrapper {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: #1f3c90;
}

.homecontactInfoDiv {
  width: 650px;
}

.homecontactInfoDiv span {
  font-size: 20px;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 42px;
  margin-top: 12px;
}

.homecontactInfoDiv address {
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}

.homecontactInfoDiv address a {
  color: #fff;
}

.addressLeft {
  width: 180px;
  margin-right: 85px;
  margin-top: 20px;
}

.addressRight {
  width:260px;
  margin-top: 20px;
}

.contactFormHome {
  margin-top: 100px;
  margin-bottom: 155px;
}

.formDiv {
  width: 885px;
  padding-top: 62px;
  padding-bottom: 62px;
  padding-left: 55px;
  padding-right: 55px;
  border: 1px solid #1f3c90;
}

.formDiv label {
  font-size: 16px;
  color: #1f3c90;
  width: 115px;
  margin-top: 10px;
}

.formDiv label span {
  font-size: 14px;
  color: #c73d34;
}

.formDiv input[type='text'],
.formDiv textarea {
  border: 1px solid #1f3c90;
  font-size: 14px;
  color: #898989;
  padding-left: 10px;
  padding-right: 10px;
  width: 268px;
  height: 33px;
  margin-bottom: 50px;
}

.formDiv input[type='text'].FormInputError {
  border-color: red;
}

.formDiv form > input[type='text']:nth-child(2),
.formDiv form > input[type='text']:nth-child(6) {
  margin-right: 75px;
}

.formDiv textarea {
  resize: none;
  overflow: auto;
  padding-top: 10px;
  height: 113px;
  width: 748px;
}

.formDiv input[type='submit'] {
  width: 200px;
  height: 50px;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  background-color: #c73d34;
}

footer {
  height: 50px;
  position: absolute !important;
  background-color: #1f3c90;
  bottom: 0px;
}

.copy {
  font-size: 12px;
  color: #fff;
}

.sectionBanner {
  background-size: cover;
  background-position: center;
  width: 90%;
}

.sectionIntro {
  margin-top: 75px;
  margin-bottom: 75px;
}

.sectionIntro h2,
.sectionIntro h1,
.aboutNumberInfo h3 {
  font-size: 17px;
  color: #1f3c90;
  position: relative;
}

.aboutNumberInfo h3 {
  font-size: 14px;
}

.sectionIntro h2::before,
.sectionIntro h1::before,
.aboutNumberInfo h3::before {
  content: '';
  background-color: #1f3c90;
  height: 2px;
  width: 100px;
  float: left;
  position: relative;
  top: 8px;
  margin-right: 10px;
}

.aboutNumberInfo h3::before {
  width: 35px;
}

.sectionIntro h1::before {
  width: 25px;
  margin-left: 10px;
}

.sectionIntro article {
  margin-top: 25px;
  font-size: 14px;
  color: #898989;
  line-height: 20px;
  width: 495px;
}

.section2 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f2f2;
}

.searchCompanies span {
  font-size: 17px;
  color: #1f3c90;
  position: relative;
  padding-bottom: 20px;
  margin-right: 50px;
}

.searchCompanies span::before,
.companiesSect h3::before {
  position: absolute;
  height: 2px;
  content: '';
  bottom: 0px;
  background-color: #1f3c90;
  width: 25px;
}

.companiesSect h3::before {
  width: 40px;
}

.searchCompanies input[type='text'],
.searchCompanies select {
  background-color: #fff;
  width: 216px;
  height: 36px;
  border: 1px solid #898989;
  font-size: 15px;
  margin-right: 20px;
  padding-left: 10px;
  padding-right: 10px;
  color: #898989;
}

.searchCompanies select {
  width: 230px;
  padding-left: 10px;
  padding-right: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  height: 38px;
  appearance: none;
  background-image: url(../../images/arrowSelect.png);
  background-repeat: no-repeat;
  background-position: 95% center;
}

.searchCompanies input[type='submit'] {
  cursor: pointer;
  width: 150px;
  height: 38px;
  color: #fff;
  font-size: 15px;
  background-color: #1f3c90;
}

.clearSearch {
  cursor: pointer;
  width: 150px;
  height: 38px;
  color: #fff;
  font-size: 15px;
  background-color: red;
  margin-top: 10px;
}

.section3 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.companiesListingWrap > div:last-child {
  margin-bottom: 0px;
}

.companiesSect {
  margin-bottom: 75px;
}

.companiesSect h3 {
  font-size: 17px;
  color: #1f3c90;
  position: relative;
  padding-bottom: 20px;
}

.companiesGroup {
  margin-top: 25px;
}

.companiesGroup > div:nth-child(4n) {
  margin-right: 0px;
}

.companiesGroup > div:nth-child(4n + 1) {
  clear: both;
}

.companiesDiv {
  margin-right: 25px;
  margin-bottom: 25px;
  width: 231px;
  position: relative;
}

.companiesDivIMG {
  background-color: #f2f2f2;
  height: 190px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75%;
}

.companiesDiv h2 {
  color: #494949;
  font-size: 13px;
  margin-top: 20px;
}

.established {
  font-size: 15px;
  color: #1f3c90;
  margin-bottom: 10px;
}

.companyLogo {
  background-color: #fff;
  width: 200px;
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 75%;
}

.companyInfo {
  width: 750px;
}

.companyInfo h1 {
  font-size: 20px;
  color: #1f3c90;
  margin-bottom: 10px;
}

.companyInfo h2 {
  color: #494949;
  font-size: 16px;
  margin-bottom: 30px;
}

.companyInfo address {
  font-style: normal;
  color: #898989;
  font-size: 14px;
  line-height: 20px;
}

.companyInfo address span {
  min-width: 290px;
  float: left;
}

.companyInfo address span span {
  min-width: auto;
}

.companyInfo address a {
  color: #898989;
}

.companyInfo address a.website {
  color: #1f3c90;
  font-size: 15px;
  background-image: url(../../images/websiteIcon.png);
  padding-left: 27px;
  height: 18px;
  background-repeat: no-repeat;
  background-position: left center;
  margin-top: 15px;
  clear: both;
}

.allcategorysWrap {
  text-align: center;
  width: 475px;
}

.allcategorysWrap div {
  display: inline-block;
  position: relative;
  padding-right: 10px;
  color: #898989;
  font-size: 14px;
  margin-top: 5px;
}

.allcategorysWrap div::after {
  content: '|';
  margin-left: 10px;
}

.allcategorysWrap > div:nth-child(6)::after,
.allcategorysWrap > div:last-child::after {
  content: '';
}

.categoryActivity {
  background-image: url(../../images/categoryIcon.png);
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 140px;
}

.categoryCenter h4 {
  font-size: 17px;
  color: #1f3c90;
  margin-bottom: 10px;
}

.activeCategory {
  font-family: 'poppins_semiboldregular', Arial, sans-serif !important;
  font-size: 16px !important;
  color: #1f3c91 !important;
}

.allcategorysWrap > div.activeCategory::after {
  font-family: 'poppinsregular', Arial, sans-serif !important;
  font-size: 14px !important;
}

.activityTypeDiv {
  margin-top: 75px;
}

.activityTypeDiv h5 {
  font-size: 14px;
  color: #898989;
}

.boardMembers > div:nth-child(6n) {
  margin-right: 0px;
}

.boardMemberDiv {
  width: 154px;
  margin-right: 15px;
  margin-bottom: 15px;
  position: relative;
}

.boardIMG {
  height: 160px;
  background-size: cover;
}

.boardDetailsLeft {
  width: 390px;
}

.boardDetailsIMG {
  height: 439px;
  background-size: cover;
  background-position: center;
}

.boardDetailsLeft a {
  color: #fff;
  font-size: 14px;
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #1f3c90;
}

.boardDetailsRight {
  width: 500px;
}

.boardDetailsRight h3,
.boardDetailsRight h6 {
  color: #1f3c90;
  font-size: 25px;
  margin-bottom: 5px;
}

.boardDetailsRight h4,
.boardDetailsRight h5 {
  font-size: 20px;
  color: #494949;
}

.boardDetailsRight h5 {
  font-size: 14px;
  margin-bottom: 30px;
}

.boardDetailsRight h6 {
  font-size: 17px;
  margin-bottom: 5px;
}

.seperator {
  width: 2px;
  height: 120px;
  background-color: #1f3c90;
  margin-top: 30px;
  margin-bottom: 30px;
}

.boardBand {
  position: absolute;
  bottom: 50px;
  right: 0px;
  width: 65%;
  height: 379px;
  background-color: #f2f2f2;
}

.contactBand {
  bottom: auto;
  top: -30px;
  height: 500px;
}

.contactDetailsRight {
  margin-top: 100px;
}

.contactDetailsRight address {
  font-style: normal;
}

.contactDetailsRight label {
  min-width: 150px;
  color: #1f3c90;
  font-size: 17px;
  margin-bottom: 40px;
}

.contactDetailsRight span {
  color: #494949;
  font-size: 14px;
  margin-bottom: 40px;
  margin-top: 2px;
}

.contactMessage {
  font-size: 20px;
  position: relative;
  color: #494949;
  padding-bottom: 30px;
}

.contactFormContact {
  margin-top: 50px;
}

.sect2About {
  padding-top: 45px;
  padding-bottom: 45px;
}

.sect2About h2,
.aboutServices h2 {
  font-size: 17px;
  position: relative;
  color: #1f3c90;
  padding-bottom: 20px;
}

.sect2About article {
  margin-top: 20px;
  color: #898989;
  font-size: 14px;
  -ms-text-align-last: center;
  text-align-last: center;
  line-height: 20px;
  width: 545px;
}

.sect2About article span {
  color: #1f3c90;
  font-family: 'poppins_semiboldregular', Arial, sans-serif;
}

.aboutSectTemp {
  padding-top: 75px;
  padding-bottom: 75px;
}

.aboutSectContent {
  padding-left: 50px;
  position: relative;
  width: 395px;
  margin-left: 50px;
}

.aboutSectContent h2 {
  color: #1f3c90;
  font-size: 17px;
  margin-bottom: 10px;
}

.aboutSectContent h3 {
  color: #494949;
  font-size: 15px;
  margin-bottom: 20px;
}

.aboutSectContent article {
  color: #898989;
  font-size: 14px;
  line-height: 20px;
}

.aboutSectContent article span {
  color: #1f3c90;
  font-family: 'poppins_semiboldregular', Arial, sans-serif;
}

.aboutSectContent article li {
  margin-top: 15px;
  margin-left: 17px;
}

.aboutSectContent article li::before {
  width: 8px;
  height: 8px;
  content: '';
  background-color: #1f3c90;
  border-radius: 50%;
  margin-top: 2px;
  display: inline-block;
  margin-right: 10px;
  margin-left: -17px;
}

.line {
  width: 1px;
  position: absolute;
  top: 104px;
  left: 0px;
  background-color: #1f3c90;
  height: 170px;
}

.line2 {
  height: 242px;
}

.aboutSectImg {
  width: 289px;
  height: 332px;
  background-size: cover;
  margin-right: 100px;
}

.aboutSectImg.left {
  margin-right: 0px;
  margin-left: 100px;
}

.aboutSectContent.right {
  padding-left: 0px;
  margin-left: 0px;
  margin-right: 100px;
}

.aboutgrayBG {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 70%;
  background-color: #f2f2f2;
  height: 577px;
}

.aboutNumberInfo {
  width: 165px;
  margin-left: 222px;
  padding-right: 160px;
  height: 180px;
  background-image: url(../../images/about-icons1.png);
  background-position: 134px 1px;
  padding-top: 20px;
  background-repeat: no-repeat;
  background-size: 149%;
}

.aboutNumberInfo.right {
  margin-left: 0px;
  margin-right: 100px;
  background-position: -268px 0px;
  background-size: 149%;
}

.aboutNumberInfo h4 {
  font-size: 14px;
  color: #494949;
  margin-top: 10px;
}

.aboutNumberInfo h4 span {
  font-size: 16px;
}

.aboutNumberInfo h5 {
  font-size: 16px;
  color: #1f3c90;
  margin-top: 10px;
  width: 50%;
}

.aboutNumberInfo.right h5 {
  width: 100%;
}

.aboutNumberInfo h5 span {
  font-size: 24px;
}

.salesCapa {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #f2f2f2;
  margin-bottom: 75px;
}

.salesCapa h5 {
  color: #494949;
  font-size: 17px;
}

.salesCapa h5 span {
  color: #1f3c90;
  font-size: 24px;
  margin-top: 5px;
}

.aboutServices {
  padding-top: 30px;
  padding-bottom: 7px;
  background-color: #1f3c90;
  margin-bottom: 50px;
  position: relative;
  width: 1000px;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
  position: relative;
}

/* .aboutServices::before{
  position: absolute;
  top: 0px;
  left: -688px;
  width: 1000px;
  background-color: white;
  content: '';
  height: 100%;
} */

.aboutServices h2 {
  color: #fff;
}

.aboutServices span {
  color: #fff;
  font-size: 13px;
  margin-top: 5px;
}

.aboutServices span span {
  font-size: 14px;
  margin-top: 6px;
}

.servicesWrapper {
  width: 660px;
  margin-top: 30px;
}

.servicesWrapper > div:nth-child(3n) {
  margin-right: 0px;
}

.aboutServiceDiv {
  background-image: url(../../images/about-icons2.png);
  background-position: 52px 0px;
  padding-top: 95px;
  width: 200px;
  margin-right: 30px;
  background-repeat: no-repeat;
  margin-bottom: 15px;
  background-size: 213%;
}

.servicesWrapper > div:nth-child(2) {
  background-position: -106px 0px;
}

.servicesWrapper > div:nth-child(3) {
  background-position: -272px 0px;
}

.servicesWrapper > div:nth-child(4) {
  background-position: 52px -178px;
}

.servicesWrapper > div:nth-child(5) {
  background-position: -106px -178px;
}

.servicesWrapper > div:nth-child(6) {
  background-position: -272px -178px;
}

.searchParams{
  float: left;
  width: 100%;
  margin-top: 20px;
}

.searchParams .search{
  margin-bottom: 15px;
}

.menu-btn {
  display: none;
}

.totalValues{
  float: right;
  display: flex;
  flex-direction: column;
  border: 2px solid #494949;
  padding: 10px;
  padding-bottom: 0px;
  margin-left: 10px;
}

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

.totalValues b{
  font-family: 'poppinsbold', Arial, sans-serif;
  font-weight: normal;
  color: #1f3c90;
}

.totalValues span{
  margin-bottom: 10px;
  font-family: 'poppinsregular', Arial, sans-serif;
  font-weight: normal;
  color: #494949;
  margin-top: 3px;
}

.genericProductDescription {
  margin-left: 91px;
  margin-top: 15px;
  width: 716px !important;
}

.seeAllproducts{
  float: left;
  clear: both;
  margin-top: 10px;
  color: blue;
  font-weight: bold;
  font-family: 'poppins_semiboldregular', Arial, sans-serif;
  margin-left: 90px;
}

.section3Products{
  padding-top: 0px;
  padding-bottom: 0px;
}

.productsListing {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  grid-gap: 10px; /* Adjust the gap between columns */
  margin-bottom: 50px;
}
.productsDiv{
  position: relative;
}
.productsDiv h2{
  font-size: 16px;
}

footer{
  display: flex;
  align-items: center;
}

footer .safearea{
  display: flex;
}

footer a{
  font-family: 'poppins_mediumregular', Arial, sans-serif;
  font-weight: normal;
  color: #fff;
  text-decoration: underline;
  width: 120px;
}

.NDA{
  font-family: 'poppinsregular', Arial, sans-serif;
  font-weight: normal;
  color: #494949;
  line-height: 22px;
  text-align: justify;
}

@media screen and (max-width: 1200px) {
  .boardHomeIntroLeft {
    margin-left: 190px;
  }
  .boardHomeIntroRight {
    width: 440px;
  }
}

@media screen and (max-width: 1000px) {
  .safearea {
    width: 760px;
  }

  header nav{
    position: relative !important;
    left: 0px !important;
    -webkit-transform: translate(0%, -50%) !important;
    -moz-transform: translate(0%, -50%) !important;
    -o-transform: translate(0%, -50%) !important;
    -ms-transform: translate(0%, -50%) !important;
    transform: translate(0%, -50%) !important;
    float: right;
  }

  .width70{
    width: 100%;
  }

  .bannerText {
    width: 100%;
    margin-top: 75px;
  }

  .bannerIMGsWrapper{
    position: relative;
    right: 0px !important;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) !important;
    -moz-transform: translate(-50%, 0%) !important;
    -o-transform: translate(-50%, 0%) !important;
    -ms-transform: translate(-50%, 0%) !important;
    transform: translate(-50%, 0%) !important;
    float: left;
  }
  .aboutContent {
    width: 280px;
  }
  .aboutHome{
    padding-bottom: 0px;
  }
  .companiesHome {
    margin-top: 0px;
  }
  .width70About {
    height: 605px;
  }
  .companiesLeft {
    width: 100%;
  }
  .companiesRight {
    width: 100%;
    margin-top: 40px;
  }
  .homeCompanyDiv {
    width: 233px;
    height: 185px;
  }
  .width70Board {
    width: 100%;
  }

  .boardHomeIntroLeft {
    margin-left: 0px;
  }
  .boardMembersWrapper {
    margin-bottom: 50px;
  }
  .officialsiteDiv {
    width: 140px;
    margin-right: 15px;
  }
  .officialsiteDivIMG {
    width: 140px;
    background-size: 85%;
  }
  .officialsiteDiv h2 {
    font-size: 11px;
    line-height: 14px;
  }
  .officialSiteWrapper {
    margin-bottom: 75px;
  }
  .homecontactInfoDiv {
    width: 505px;
  }
  .contactUsHomeWrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .formDiv {
    padding-left: 25px;
    width: 710px;
    padding-right: 25px;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .contactFormHome {
    margin-top: 75px;
    margin-bottom: 75px;
  }
  .formDiv input[type='text'], .formDiv textarea {
    width: 217px;
  }
  .formDiv form > input[type='text']:nth-child(2), .formDiv form > input[type='text']:nth-child(6) {
    margin-right: 30px;
  }
  .formDiv label {
    width: 100px;
  }
  .formDiv textarea{
    width: 586px;
  }
  .width70, .width70About {
    height: 458px;
  }

  .aboutSectImg{
    margin-right: 0px;
  }

  .aboutSectContent {
    margin-left: 0px;
    padding-left: 0px;
  }
  .line{
    display: none;
  }

  .aboutgrayBG2{
    width: 100%;
  }
  .aboutSectImg.left{
    margin-left: 0px;
    margin-right: 0px;
  }
  .aboutSectContent.right {
    margin-left: 0px;
    margin-right: 0px;
  }
  .aboutNumberInfo{
    margin-left: 0px;
  }
  .aboutNumberInfo.right{
    margin-right: 0px;
    padding-right: 0px;
    padding-left: 120px;
    background-position: -313px 0px;
  }
  .searchCompanies input[type='text'], .searchCompanies select{
    width: 176px;
  }
  .searchCompanies span {
    margin-bottom: 15px;
  }

  .companiesDiv{
    width: 236px;
  }

  .companiesGroup > div:nth-child(4n) {
    margin-right: 25px;
  }

  .companiesGroup > div:nth-child(3n) {
    margin-right: 0px;
  }

  .companyInfo {
    width: 530px;
  } 

  .boardMembers > div:nth-child(6n) {
    margin-right: 15px;
  }  
  .boardMembers > div:nth-child(4n) {
    margin-right: 0px;
  }
  .boardMemberDiv {
    width: 178px;
  }
  .boardIMG {
    height: 196px;
    background-position: center;
  }

  .boardDetailsRight {
    width: 385px;
  }

  .boardDetailsLeft {
    width: 324px;
  }

  .companiesGroup > div:nth-child(4n + 1) {
    clear: none;
  }

  .companiesGroup > div:nth-child(3n + 1) {
    clear: both;
  }

  .genericProductDescription {
    margin-left: 0px;
    width: 568px !important;
  }
  .seeAllproducts{
    margin-left: 0px;
  }
  .companyArticle{
    width: 450px !important;
  }
  .boardMembersULwrap {
    width: 660px;
    margin-left: 0px;
  }

  header nav ul li {
    margin-right: 10px;
  }

}

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

  .safearea{
    width: 320px;
  }

  .menu-btn {
    display: block;
    width: 44px;
    height: 44px;
    background-repeat: no-repeat;
    background-position: 0px 0px;
    float: right;
    background-image: url(../../images/burger.svg);
    margin-top: 45px;
    cursor: pointer;
  }

  .menu-btn-close {
    background-image: url(../../images/burgerClose.svg);
  }

  header{
    position: fixed !important;
    background-color: white;
    height: 110px;
  }
  .topBand {
    position: fixed !important;
    z-index: 12;
  }

  .logo{
    left: 0px;
    top: 0px;
    -webkit-transform: translate(0%, 0%) !important;
    -moz-transform: translate(0%, 0%) !important;
    -o-transform: translate(0%, 0%) !important;
    -ms-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;
    margin-top: 30px;
  }

  header nav{
    left: 0px !important;
    top: 0px !important;
    -webkit-transform: translate(0%, 0%) !important;
    -moz-transform: translate(0%, 0%) !important;
    -o-transform: translate(0%, 0%) !important;
    -ms-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;
    width: 100%;
    margin-top: 15px;
    display: none;
  }

  header nav ul{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header nav ul li{
    margin-right: 0px;
  }
  header nav ul li.activeMenu::before, header nav ul li:hover::before {
    bottom: 11px;
  }

  section.content{
    margin-top: 110px;
  }

  .bannerText{
    left: 0px !important;
    top: 0px !important;
    -webkit-transform: translate(0%, 0%) !important;
    -moz-transform: translate(0%, 0%) !important;
    -o-transform: translate(0%, 0%) !important;
    -ms-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;
    margin-top: 20px;
  }

  .bannerIMGsWrapper{
    width: 100%;
    margin-top: 30px;
  }
  .bannNav {
    width: 140px;
    height: 60px;
  }
  .bannNav span {
    width: 70px;
    height: 60px;
  }

  .bannNav span.rightArrow::before {
    top: 16px;
  }

  .aboutHome .safearea {
    display: flex;
    flex-direction: column-reverse;
  }

  .aboutIMG{
    left: 0px !important;
    width: 100% !important;
    height: 300px !important;
    position: relative;
    margin-top: 20px;
  }

  .aboutContent{
    left: 0px !important;
    top: 0px !important;
    -webkit-transform: translate(0%, 0%) !important;
    -moz-transform: translate(0%, 0%) !important;
    -o-transform: translate(0%, 0%) !important;
    -ms-transform: translate(0%, 0%) !important;
    transform: translate(0%, 0%) !important;
    width: 280px;
    padding: 20px;
  }
  .width70About{
    display: none;
  }

  .aboutHome{
    margin-top: 10px;
    height: auto !important;
  }

  .companiesLeft {
    margin-top: 55px;
  }

  .homeCompanyMerge{
    margin-right: 0px;
  }

  .homeCompanyDiv {
    width: 155px;
    height: 105px;
    margin-right: 10px;
    margin-bottom: 10px;
  }
  .homeCompanyMerge > div:nth-child(3n-1) {
    top:0px;
    margin-right: 10px;
  }
  .homeCompanyMerge > div:nth-child(3n) {
    margin-right: 10px;
    top: 0px;
  }
  .homeCompanyMerge > div:nth-child(2n) {
    margin-right: 0px;
  }

  .companiesLeft article{
    margin-bottom: 20px;
    margin-top: 20px;
  }
  
  .allCompanies {
    padding-bottom: 25px;
  }

  .companiesHome {
    margin-bottom: 40px;
  }

  .boardMembersWrapper {
    padding-top: 20px;
  }
  .boardHomeIntroRight {
    width: 100%;
  }
  .boardHomeIntroLeft h3, .contactUsHomeWrapper h3 {
    padding-bottom: 15px;
    margin-bottom: 20px;
  }
  .boardMembersULwrap{
    margin-left: 0px;
  }

  .officialSiteWrapper {
    padding-top: 20px;
  }

  .officialSiteWrapper h3 {
    padding-bottom: 15px;
  }
  .officialSiteWrapper article{
    width: 100%;
    margin-bottom: 30px;
  }

  .width100OfficialSites {
    height: 950px;
  }

  .officialContainer > div:nth-child(2n) {
    margin-right: 0px;
  }
  .officialsiteDivIMG {
    width: 152px;
  }
  .officialsiteDiv {
    width: 152px;
    margin-bottom: 15px;
  }
  .officialsiteDiv h2 {
    margin-top: 17px;
    margin-bottom: 10px;
  }
  .officialSiteWrapper {
    margin-bottom: 0px;
  }
  .contactUsHomeWrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .homecontactInfoDiv {
    width: 100%;
  }
  .homecontactInfoDiv span {
    padding-bottom: 15px;
  }

  .aboutContent::before{
    width: 1000px;
    position: absolute;
    left: -1000px;
    content: '';
    top: 0px;
    background-color: #1f3c90;
    height: 100%;
  }

  .aboutContent::after{
    width: 1000px;
    position: absolute;
    right: -1000px;
    content: '';
    top: 0px;
    background-color: #1f3c90;
    height: 100%;
  }

  .contactFormHome {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  .formDiv {
    padding: 20px;
    width: 280px;
  }
  .formDiv input[type='text'], .formDiv textarea {
    width: 259px;
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .formDiv form > input[type='text']:nth-child(2), .formDiv form > input[type='text']:nth-child(6) {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .formDiv label {
    margin-bottom: 5px;
  }

  .sectionBanner {
    margin-top: 20px;
  }
  .sectionIntro {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .sectionIntro article,.sect2About article{
    width: 100%;
  }
  .width702{
    display: none;
  }
  .aboutSectTemp {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .aboutSectContent{
    width: 100%;
  }

  .aboutSectImg {
    margin-right: 12px;
    margin-top: 30px;
  }

  .aboutSectTemp2 .safearea{
    display: flex;
    flex-direction: column-reverse;
  }

  .aboutgrayBG2 {
    height: 100%;
  }

 .aboutSectTemp2 .aboutSectImg.left {
    margin-left: 14px;
  }
  .aboutServices {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .servicesWrapper {
    width: 320px;
    margin-top: 0px;
  }
  .servicesWrapper > div:nth-child(3n) {
    margin-right: 10px;
  }

  .servicesWrapper > div:nth-child(2n) {
    margin-right: 0px;
  }
  .aboutServiceDiv {
    width: 155px;
    margin-right: 10px;
    padding-top: 105px;
    margin-bottom: 0px;
    margin-top: 20px;
  }

  .servicesWrapper > div:nth-child(2) {
    background-position: -137px 0px;
  }
  .servicesWrapper > div:nth-child(3) {
    background-position: -299px 0px;
  }
  .servicesWrapper > div:nth-child(4) {
    background-position: 31px -183px;
  }
  .servicesWrapper > div:nth-child(5) {
    background-position: -137px -183px;
  }
  .servicesWrapper > div:nth-child(6) {
    background-position: -299px -183px;
  }
  .aboutServiceDiv span {
    margin-top: 0px;
  }

  .width703{
    display: none;
  }

  .section2,.section3 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .searchCompanies input[type='text'] {
    width: 298px;
    margin-right: 0px;
  }
  .searchCompanies select {
    width: 320px;
    margin-right: 0px;
    margin-top: 10px;
  }
  .searchCompanies input[type='submit']{
    margin-top: 55px;
  }

  .companiesGroup > div:nth-child(3n) {
    margin-right: 10px;
  }

  .companiesGroup > div:nth-child(2n) {
    margin-right: 0px;
  }

  .companiesDiv {
    width: 155px;
    margin-right: 10px;
  }

  .companiesDivIMG {
    height: 130px;
  }
  .companiesDiv h2 {
    margin-top: 10px;
  }

  .companyLogo{
    left: 50%;
    -webkit-transform: translate(-50%, 0%) !important;
    -moz-transform: translate(-50%, 0%) !important;
    -o-transform: translate(-50%, 0%) !important;
    -ms-transform: translate(-50%, 0%) !important;
    transform: translate(-50%, 0%) !important;
    position: relative;
  }
  .companyInfo {
    width: 100%;
    margin-top: 20px;
  }
  .allcategorysWrap {
    width: 100%;
  }

  .boardMembers > div:nth-child(2n) {
    margin-right: 0px;
  }
  .boardMemberDiv {
    width: 155px;
    margin-right: 10px;
  }
  h1.boardDetails{
    display: none;
  }

  .boardDetailsLeft {
    width: 100%;
  }
  .boardDetailsRight {
    width: 100%;
    margin-top: 20px;
  }
  .boardBand {
    bottom: -52px;
    height: 505px;
    width: 100%;
  }

  .contactBand{
    display: none;
  }

  .contactMessage {
    width: 320px;
    left: 50%;
    -webkit-transform: translate(-50%, 0%) !important;
    -moz-transform: translate(-50%, 0%) !important;
    -o-transform: translate(-50%, 0%) !important;
    -ms-transform: translate(-50%, 0%) !important;
    transform: translate(-50%, 0%) !important;
    position: relative;
  }
  .contactDetailsRight span {
    margin-bottom: 20px;
  }
  .contactDetailsRight label {
    margin-bottom: 20px;
  }

  .companiesGroup > div:nth-child(3n + 1) {
    clear: none;
  }

  .companiesGroup > div:nth-child(2n + 1) {
    clear: both;
  }

  .genericProductDescription {
    margin-left: 0px;
    width: 299px !important;
    position: absolute;
    bottom: 47px;
    left: 0px;
  }
  .seeAllproducts {
    position: absolute;
    right: 0px;
    bottom: 22px;
  }
  .productsListing {
    grid-template-columns: 1fr;
  }

  .companyArticle{
    width: 100% !important;
  }

  .totalValues{
    margin-top: 20px;
    margin-right: 20px;
  }
  .boardMembersULwrap {
    width: 255px;
  }
  .boardNav span.rightArrow {
    margin-left: 28px;
  }
  .contactDetailsRight label {
    min-width: 85px;
  }
}
