* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

html {
  scroll-behavior: smooth;
}

@media screen and (max-width: 1028px) {
  .top_of_page {
    background-color: rgb(173, 21, 21);
    width: 100%;
  }
  .top_of_page .menu {
    width: 2rem;
    margin: 1rem;
  }
  .top_of_page .arrow {
    width: 2rem;
  }
  .logo_div .logo {
    width: 100%;
    background: transparent;
  }
  .top_container {
    position: relative;
    top: 0;
    display: flex;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    flex-direction: column;
  }
  .top_container .navigation_items {
    background-image: url("/images/logo white clear.png");
    background-position: bottom;
    background-size: 10rem;
    background-repeat: no-repeat;
    background-color: rgb(173, 21, 21);
    flex-direction: column;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    display: none;
  }
  .top_container .navigation_items ul {
    background-color: transparent;
    width: inherit;
    margin: 0 0 7rem 0;
  }
  .top_container .navigation_items ul a {
    text-decoration: none;
    color: white;
    font-size: medium;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
  }
  .top_container .navigation_items ul a li {
    list-style: none;
    padding: 2rem 0 2rem 0;
    border: 1px solid white;
    line-height: 1rem;
  }
  .top_container .navigation_items .exit {
    width: 1.5rem;
    flex: end;
    border: 1px solid white;
  }
  .ourServices {
    margin: 0 0 1rem 0;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(61, 60, 60);
    text-align: center;
  }
  .container {
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .Lamani {
    margin: 1rem 0;
  }
}
@media screen and (min-width: 1028px) {
  .top_of_page {
    background-color: rgb(173, 21, 21);
    width: 100%;
  }
  .top_of_page .menu {
    width: 2rem;
    margin: 1rem;
    display: none;
  }
  .top_of_page .arrow {
    width: 2rem;
    margin: 0 0 0 1rem;
  }
  .logo {
    width: 15rem;
  }
  .navigation_items {
    width: 100%;
    display: flex;
  }
  .navigation_items ul {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: end;
    margin: 6rem 2rem 0 0;
  }
  .navigation_items ul .exit {
    display: none;
  }
  .navigation_items ul a {
    text-decoration: none;
    color: rgb(59, 59, 59);
    font-family: Arial, Helvetica, sans-serif;
  }
  .navigation_items ul a li {
    list-style: none;
    margin: 0 0 0 3rem;
  }
  .navigation_items ul a li:hover {
    color: red;
  }
  .logo_div {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .bContact {
    display: inline-flex;
    padding: 2rem;
  }
  .last_container {
    display: flex;
    flex-direction: column;
    margin: 2rem 0 0 0;
  }
  .last_container .container {
    width: 100%;
    flex-direction: row;
    display: flex;
    overflow-x: scroll;
    justify-content: center;
  }
  .last_container .partner {
    display: flex;
    width: 15rem;
    flex-direction: row;
    margin: 4rem 0 0 2rem;
  }
  .last_container .lamani {
    margin: 0 1rem 0 1rem;
  }
  .contact_us {
    display: flex;
    flex-direction: column;
    width: auto;
  }
  .contact_us .contact_form {
    flex-direction: row;
    display: flex;
  }
  .contact_us .contact_form .form {
    flex-direction: column;
  }
  .contact_us .contact_form .contact_details {
    position: relative;
    left: 30rem;
  }
}
.top {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateY(100%);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  -webkit-filter: blur(5px);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}

.hidden {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateX(-100%);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  -webkit-filter: blur(5px);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
}

.dot {
  opacity: 0;
  transition: all 1s;
  filter: blur(5px);
  transform: translateY(-100%);
  -webkit-transition: all 1s;
  -moz-transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  -webkit-filter: blur(5px);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}

.show {
  opacity: 1;
  filter: blur(0);
  -webkit-filter: blur(0);
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

h2 {
  margin: 1rem 0 1rem 0;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(61, 60, 60);
  text-align: center;
}

.mid_container {
  padding: 4rem 0;
  background: fixed url("/images/business-meeting-over-coffee.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  display: flex;
  min-width: auto;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}
.mid_container .title_phrase {
  margin: 0 0 2rem 1rem;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  width: auto;
}
.mid_container .catch_phrase {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  max-width: 20rem;
  line-height: 30px;
  margin: 0 0 0 2rem;
  text-align: center;
  width: auto;
}
.mid_container button {
  margin: 1rem 0 0 0rem;
}

.about_us {
  margin: 2rem 2rem 5rem 0rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  min-width: auto;
}
.about_us .aboutTitle {
  margin: 0 0 1rem 0;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(61, 60, 60);
  justify-content: center;
}
.about_us .about_Phrase {
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(89, 89, 89);
  max-width: auto;
  line-height: 30px;
  padding: 1.8rem;
}

.extra_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  width: 100%;
  min-width: auto;
}
.extra_container .ourServices {
  margin: 0 0 1rem 0;
  font-family: Arial, Helvetica, sans-serif;
  color: rgb(61, 60, 60);
}
.extra_container .bContact {
  background: rgb(137, 7, 7);
  opacity: 90%;
  min-width: auto;
  padding: 1.5rem;
}
.extra_container .bContact .block {
  flex-direction: column;
  color: rgb(245, 234, 221);
  font-family: Arial, Helvetica, sans-serif;
  font-size: small;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-items: center;
}
.extra_container .bContact .block p {
  line-height: 1.8rem;
}
.extra_container .bContact h2 {
  padding: 0 0 1rem 0;
  color: rgb(245, 234, 221);
}

button {
  background: rgb(150, 19, 19);
  color: antiquewhite;
  border: 1px solid white;
  padding: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  margin-top: 1rem;
}

button:hover {
  background: red;
}

@media screen and (max-width: 1028px) {
  .last_container {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .last_container .companies {
    display: flex;
    justify-self: center;
    align-self: center;
  }
  .last_container .container {
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .last_container .partner {
    flex-direction: row;
    padding: 3rem;
    width: 20rem;
    display: inline-flex;
    margin: auto;
    background-color: transparent;
  }
}
.container::-webkit-scrollbar {
  display: none;
}

#contact_us {
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  width: auto;
  background-color: none;
}
#contact_us .contact_form {
  background: rgb(137, 7, 7);
  padding: 4rem 0rem 0 0;
  display: grid;
  grid-template-columns: auto;
  overflow: hidden;
}
#contact_us .contact_form .close {
  border: solid 1px white;
  position: relative;
  bottom: 2.5rem;
  margin: 1rem;
}
#contact_us .contact_form form {
  margin: 1rem;
  min-width: 30rem;
  max-width: 30rem;
}
#contact_us .contact_form form label {
  color: aliceblue;
  font-family: Arial, Helvetica, sans-serif;
}
#contact_us .contact_form form select, #contact_us .contact_form form input {
  width: auto;
  padding: 0.3rem 2rem;
  border: none;
  margin: 0.4rem 0;
}
#contact_us .contact_form form textarea {
  width: auto;
  height: 15rem;
  border: none;
  margin: 0.4rem 0 0 0;
}
#contact_us .contact_details {
  width: 100%;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  flex-direction: column;
  margin: 1rem;
  color: white;
}
#contact_us .contact_details input {
  margin: 1rem 0 1rem 0;
}
#contact_us .contact_details a {
  text-decoration: none;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}
#contact_us .contact_details h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: medium;
  font-weight: bold;
  color: white;
  margin: 1rem 0 1rem 0;
}

@media screen and (max-width: 1028px) {
  .logo {
    display: none;
  }
}
.backgroundImage {
  padding: 4rem 0;
  background: fixed url("/images/team-in-modern-office-meeting-room.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  margin: 0 0 5rem 0;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
  display: flex;
  min-width: auto;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}
.backgroundImage .industrial_title {
  color: azure;
  font-family: Arial, Helvetica, sans-serif;
}
.backgroundImage .industrial_phrase {
  color: azure;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5rem;
  padding: 0 1rem;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: antiquewhite;
}

.services {
  background-color: bisque;
  display: flex;
  flex-direction: row;
  padding: 1rem;
  width: auto;
}
.services .cardSection {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  width: 100%;
}
.services .cardSection .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: auto;
  max-width: 90%;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5rem;
}
.services .cardSection .card .dot_div {
  display: flex;
  justify-self: center;
  align-self: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.services .cardSection .card .dot_div .dots {
  width: 6rem;
}
.services .cardSection .card h4 {
  margin: 0 0 0.5rem 0;
  text-align: center;
}

.RecruitmentPage {
  padding: 4rem 0;
  background: fixed url("/images/large-group-standing-in-office.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  margin: 0 0 3rem 0;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
  display: flex;
  min-width: auto;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}
.RecruitmentPage p {
  color: aliceblue;
  font-family: Arial, Helvetica, sans-serif;
  width: 60%;
  line-height: 1.5;
}
.RecruitmentPage h2 {
  color: aliceblue;
  font-family: Arial, Helvetica, sans-serif;
}

.centerContainer {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  margin: 1rem;
}
.centerContainer p {
  min-width: 80%;
  line-height: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.TempPage {
  padding: 4rem 0;
  background: fixed url("/images/custodian-workers-compensation.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  margin: 0 0 3rem 0;
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.3);
  display: flex;
  min-width: auto;
  max-width: 100%;
  width: 100%;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  color: aliceblue;
}
.TempPage p {
  width: 60%;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5rem;
}
.TempPage h2 {
  color: aliceblue;
}

.contact_info {
  background: rgb(137, 7, 7);
  color: antiquewhite;
  font-family: Arial, Helvetica, sans-serif;
  padding: 2rem 1rem;
}
.contact_info h3 {
  margin: 1rem 0 1rem 0;
}

.footer {
  display: flex;
  background-color: rgb(173, 21, 21);
  width: auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  flex-direction: column;
}
.footer .logo_container {
  width: 20rem;
  padding: 2rem 1rem;
  flex-direction: column;
  margin: 2rem;
}
.footer .logo_container .logo {
  width: 13rem;
  float: left;
}
.footer .logo_container .social_container {
  display: flex;
  flex-direction: row;
  padding: 2rem 1rem;
  display: none;
}
.footer .logo_container .social_container .social {
  display: flex;
  width: 4rem;
  margin: 2rem;
  flex-direction: row;
  display: none;
}/*# sourceMappingURL=styles.css.map */