/* --- GLOBAL STYLES ---*/
@font-face {
  font-family: segoeRegular;
  src: url(../../Fonts/segoeuiRegular.ttf);
}
@font-face {
  font-family: segoeRegular;
  src: url(../../Fonts/segoeuiRegular.ttf);
}
@font-face {
  font-family: segoeBold;
  src: url(../../Fonts/segoeuiBold.ttf);
}
@font-face {
  font-family: segoeBlack;
  src: url(../../Fonts/segoeuiBlack.ttf);
}
@font-face {
  font-family: segoeSemiBold;
  src: url(../../Fonts/segoeuiSemiBold.ttf);
}
body {
  font-family: segoeRegular;
  color: #152444;
  font-size: 16px;
}

.web {
  display: block;
}

.mob {
  display: none;
}

a {
  color: #152444;
  text-decoration: none;
}
a:hover {
  color: #152444;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: transparent;
}

button:focus {
  box-shadow: none !important;
}

h4 {
  font-family: segoeSemiBold;
  color: #9A8459;
}

.customContainer {
  padding: 5%;
}

.d-grid {
  display: grid;
}

.active {
  color: #9A8459;
  font-family: segoeSemiBold;
}
.active:hover {
  color: #9A8459;
}

.navbar {
  border-bottom: 1px solid #ddd;
  padding: 0;
}
.navbar .navbar-nav {
  align-items: baseline;
  width: 100%;
  justify-content: end;
}
.navbar .navbar-nav .navbar-toggler {
  padding: 0;
}
.navbar .navbar-nav .dropdown {
  position: static;
  z-index: 10;
  padding: 1.5% 0;
}
.navbar .navbar-nav .dropdown-menu {
  width: 90%;
  border-radius: 0;
  padding: 1% 4%;
  background-color: rgba(21, 36, 68, 0.8901960784);
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
  height: auto;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item {
  font-size: 0.88rem;
  color: white;
  margin: 3.5% auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:focus, .navbar .navbar-nav .dropdown-menu .dropdown-item.active {
  color: #9A8459;
  background-color: transparent;
}
.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  font-size: 1rem;
  background-color: transparent;
}
.navbar .navbar-nav .dropdown-toggle::after {
  vertical-align: 0.1em;
}
.navbar .navbar-collapse {
  flex-basis: auto;
}
.navbar .customContainer {
  display: flex;
  justify-content: space-between;
  width: 100%;
  flex-wrap: inherit;
  align-items: center;
  padding: 0 5%;
}

footer {
  background-color: #152444;
  padding-top: 8%;
}
footer .footerMenu {
  justify-content: end;
  padding: 8% 5% 0;
}
footer .footerMenu p {
  font-size: 0.8rem;
  margin-left: 2%;
}
footer p {
  font-size: 0.65rem;
}
footer .contactFooter {
  padding: 3% 5%;
  border-top: 1px solid #9A8459;
  display: flex;
}
footer .contactFooter .location {
  border-right: 1px solid #9A8459;
  padding-right: 3%;
  text-align: right;
}
footer .contactFooter .contacts {
  width: 50%;
  justify-content: end;
  display: flex;
}
footer .contactFooter .contacts div:first-child p {
  margin: 1% 0 0;
}
footer .contactFooter .contacts div:last-child {
  padding-left: 3%;
}
footer .contactFooter .contacts div:last-child h2 {
  font-weight: bold;
  margin-bottom: 0;
}
footer .copyRight {
  background-color: #9A8459;
  padding: 0.5% 0;
}
footer .copyRight p {
  margin-bottom: 0;
}

.hamburgerMenu {
  width: 25px;
  height: 15px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.hamburgerMenu span {
  display: block;
  position: absolute;
  height: 2.5px;
  width: 100%;
  background: #152444;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.hamburgerMenu span:nth-child(1) {
  top: 0px;
}
.hamburgerMenu span:nth-child(2), .hamburgerMenu span:nth-child(3) {
  top: 7px;
}
.hamburgerMenu span:nth-child(4) {
  top: 14px;
}
.hamburgerMenu.open span:nth-child(2) {
  transform: rotate(45deg);
}
.hamburgerMenu.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.hamburgerMenu.open span:nth-child(3) {
  transform: rotate(-45deg);
}
.hamburgerMenu.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav .nav-item {
    padding: 1%;
  }
  .navbar-expand-md .navbar-nav .nav-item:last-child {
    padding-right: 0;
  }
  nav .dropdown-menu {
    height: 100vh;
  }
  .dropdown .dropdown-menu {
    display: none;
  }
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 14px;
  }
}
@media (min-width: 1279px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 1440px) {
  body {
    font-size: 18px;
  }
}
@media (min-width: 1680px) {
  body {
    font-size: 20px;
  }
}
@media (min-width: 1900px) {
  body {
    font-size: 22px;
  }
}
@media (max-width: 550px) {
  .web {
    display: none;
  }
  .mob {
    display: block;
  }
  .customContainer {
    padding: 10% 5%;
  }
  .navbar .navbar-nav {
    align-items: start;
    margin-top: 3%;
  }
  .navbar .navbar-nav .dropdown {
    width: 100%;
  }
  .navbar .navbar-nav .dropdown .dropdown-toggle {
    white-space: nowrap;
    padding-left: 0;
  }
  .navbar .navbar-nav .dropdown .dropdown-menu {
    margin: 0.5rem 0;
    background-color: #152444;
    width: 100%;
  }
  .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
    padding: 1rem;
    text-align: left;
    margin: 0;
  }
  .navbar .navbar-nav .nav-item {
    margin: 2% 0;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
  }
  footer .contactFooter {
    padding: 5%;
    text-align: center;
    display: block;
  }
  footer .contactFooter img {
    margin-bottom: 5%;
  }
  footer .contactFooter .contacts {
    width: 100%;
    display: block;
  }
  footer .contactFooter .contacts .location {
    border: 0;
    padding: 0;
    margin-bottom: 5%;
    text-align: center;
  }
  footer .contactFooter .contacts .location img {
    margin-bottom: 0;
  }
}
.companiesHeader .companyBanner {
  width: 100%;
}
.companiesHeader .companyContacts {
  background-color: #152444;
  padding: 0 5%;
  position: relative;
}
.companiesHeader .companyContacts .logo {
  position: absolute;
  bottom: 0;
}
.companiesHeader .companyContacts .icons {
  width: 100%;
  text-align: right;
}
.companiesHeader .companyContacts .icons img {
  padding: 1%;
}

.gallery {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(180deg, #ffffff 64%, #152444 60%);
}
.gallery .large-img {
  width: 60%;
}
.gallery .companyRecap {
  width: 38%;
  position: relative;
}
.gallery .companyRecap .WD-txt .d-flex {
  margin: 5% 0;
}
.gallery .companyRecap .WD-txt .d-flex img {
  margin-right: 3%;
  width: 5%;
}
.gallery .companyRecap .egyconst-txt .d-flex {
  margin: 3% 0;
}
.gallery .companyRecap .egyconst-txt .d-flex:nth-child(2) {
  margin-top: 5%;
}
.gallery .companyRecap .egyconst-txt .d-flex p {
  margin-bottom: 0;
}
.gallery .companyRecap .egyconst-txt .d-flex img {
  margin-right: 3%;
}
.gallery .companyRecap .district-txt p {
  margin-left: 3%;
}
.gallery .thumbnails {
  position: absolute;
  bottom: 0;
}
.gallery .thumbnails .crop-img {
  width: 31%;
  margin-right: 3%;
  cursor: pointer;
}
.gallery .thumbnails .crop-img:last-child {
  margin-right: 0;
}
.gallery .FMPServices {
  display: flex;
  margin-top: 5%;
  gap: 15%;
}
.gallery .FMPServices p {
  font-weight: bold;
  margin-bottom: 5%;
}

.mainContacts {
  background-color: #152444;
  padding: 0 5%;
}
.mainContacts img {
  margin-right: 5%;
}
.mainContacts span {
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  .gallery .companyRecap .txt {
    margin-bottom: 35%;
  }
}
@media (max-width: 820px) {
  .gallery {
    background: linear-gradient(180deg, #ffffff 70%, #152444 30%);
  }
}
@media (max-width: 550px) {
  .companiesHeader .companyBanner {
    margin-top: 43px;
  }
  .companiesHeader .companyContacts .logo {
    position: absolute;
    bottom: 0;
    width: 18%;
  }
  .companiesHeader .companyContacts .widthMob {
    width: 30%;
  }
  .gallery {
    display: block;
    background: linear-gradient(180deg, #ffffff 20%, #152444 20%);
  }
  .gallery .large-img {
    width: 100%;
  }
  .gallery .companyRecap {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 7%;
  }
  .gallery .companyRecap .txt {
    margin: 10% 0 0;
  }
  .gallery .companyRecap .txt p, .gallery .companyRecap .txt span {
    color: white;
  }
  .gallery .companyRecap .txt b {
    color: white;
    margin-bottom: 0;
  }
  .gallery .companyRecap .thumbnails {
    position: relative;
  }
  .gallery .companyRecap img {
    filter: brightness(0) invert(1);
  }
  .gallery .companyRecap .mob,
  .gallery .companyRecap .crop-img {
    filter: none;
  }
  .gallery .companyRecap .WD-txt .d-flex:nth-child(2) {
    align-items: flex-start !important;
  }
  .gallery .companyRecap .WD-txt .d-flex:nth-child(2) img {
    margin-top: 2%;
  }
  .gallery .companyRecap .WD-txt .d-flex:last-child {
    margin-bottom: 0;
  }
  .gallery .companyRecap .district-txt p {
    margin-bottom: 3%;
  }
  .gallery .companyRecap .FMPServices {
    flex-direction: column;
  }
  .gallery .companyRecap .FMPServices div:first-child {
    margin-bottom: 5%;
  }
  .gallery .companyRecap .FMPServices div p {
    margin-bottom: 1%;
  }
}
@media (max-width: 400px) {
  .address {
    align-items: flex-start !important;
  }
  .address img {
    margin-top: 1%;
  }
}/*# sourceMappingURL=Companies.css.map */