@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
h1, h2, h3, h4, h5, h6 {
  display: block;
  font-weight: 500;
  margin: 0;
}

header, header div {
  display: flex;
}

header {
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 30px 0;
  z-index: 100;
  background-color: white;
}
header div {
  justify-content: space-between;
  align-items: center;
  width: 90%;
}
header div img {
  height: 60px;
}
header div > a {
  display: flex;
  align-items: center;
  font-size: 20px;
}
header div > a img {
  margin-right: 20px;
}
header div > a span {
  color: black;
}
header div button {
  display: none;
  background-color: #ffffff;
  border: 1px solid gray;
  outline: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  font-size: 32px;
}
header nav a {
  text-decoration: none;
  margin-left: 15px;
  color: black;
}
header nav a:hover, header nav a.active {
  color: #42ae70;
}

@media screen and (max-width: 900px) {
  header div button {
    display: inline-block;
  }
  header nav {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  header {
    position: relative;
    padding: 20px 0;
  }
}
/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */
  height: 0;
  width: 100%;
  position: fixed; /* Stay in place */
  z-index: 1000; /* Sit on top */
  left: 0;
  top: 0;
  background-color: rgb(0, 0, 0); /* Black fallback color */
  background-color: rgba(0, 0, 0, 0.9); /* Black w/opacity */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block; /* Display block instead of inline */
  transition: 0.3s; /* Transition effects on hover (color) */
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-height: 450px) {
  .overlay a {
    font-size: 20px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
footer, footer div, footer nav {
  display: flex;
}

footer {
  justify-content: center;
  width: 100%;
  padding: 80px 0;
  background-color: #0e1623;
}
footer div.fbox {
  justify-content: space-between;
  align-items: start;
  width: 80%;
}
footer div.fbox .fleft {
  width: 50%;
}
footer div.fbox .fleft img {
  height: 120px;
}
footer div.fbox nav {
  flex-direction: column;
  width: 25%;
}
footer div.fbox nav:nth-child(2) a {
  font-size: 20px;
  font-weight: 500;
  color: white;
}
footer div.fbox nav:nth-child(3) a {
  font-size: 14px;
  font-weight: 100;
  color: rgb(220, 220, 220);
}
footer div.fbox nav a {
  text-decoration: none;
  margin-bottom: 15px;
}
footer div.fbox nav a:hover, footer div.fbox nav a.active {
  color: #42ae70;
}
footer div.fbox P {
  text-align: justify;
  margin: 0;
  color: rgb(180, 180, 180);
}

@media screen and (max-width: 1023px) {
  footer {
    padding: 50px 0;
  }
  footer div.fbox {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  footer {
    padding: 20px 0;
  }
  footer div.fbox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer div.fbox .fleft {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
  footer div.fbox nav {
    text-align: center;
    width: 100%;
    margin-bottom: 40px;
  }
}
html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

a {
  text-decoration: none;
  transition: 0.2s;
  font-family: "Outfit", sans-serif;
}

img {
  display: block;
}

body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.crumbbox {
  display: flex;
  align-items: center;
  position: absolute;
  top: 140px;
  left: 0;
  z-index: 90;
}
.crumbbox .crumbline {
  width: 10vw;
  height: 1px;
  margin-right: 20px;
  background-color: rgb(220, 220, 220);
}
.crumbbox .breadcrumb {
  color: rgb(180, 180, 180);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 3px;
}
.crumbbox .breadcrumb a, .crumbbox .breadcrumb span {
  color: black;
}
.crumbbox .breadcrumb a:hover {
  color: #42ae70;
}

.page-title {
  position: fixed;
  bottom: 50px;
  left: 4.5vw;
  color: rgb(180, 180, 180);
  font-size: 12px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: scale(-1, -1);
}

main {
  position: relative;
  width: 80%;
  margin: 120px 0 0;
  padding: 50px 0px;
}
main > h1.main-title {
  text-align: center;
  font-size: 82px;
  margin: 0 0 50px;
}
main > h1.main-title span.mil-thin {
  font-weight: 100;
}
main.main_publications {
  min-height: 50vh;
}
main.main_contact {
  min-height: 70vh;
}

section {
  display: flex;
  flex-direction: column;
  margin: 0 0 80px;
}
section:last-child {
  margin: 0;
}
section p {
  width: 100%;
  color: rgb(180, 180, 180);
  text-align: justify;
}
section h2 {
  text-align: center;
  text-transform: capitalize;
}
section > h2.main-title {
  font-size: 52px;
  margin: 0 0 20px;
}
section > h2.main-title span.mil-thin {
  font-weight: 100;
}
section.test {
  align-items: start;
}

.off_publication {
  width: 100%;
  background-color: #f2f2f2;
}

button.btn, a.btn {
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500 !important;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 15px 15px 50px;
  margin-bottom: 0;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
button.btn img, a.btn img {
  width: 40px;
  margin-left: 30px;
  transition: all 0.4s ease-in-out;
}
button.btn:hover, a.btn:hover {
  transform: scale(1.01);
}
button.btn:hover img, a.btn:hover img {
  transform: scale(1.15);
}

a.no-rm {
  padding: 0 !important;
}

.btn-orange {
  background-color: #42ae70;
  color: black;
}

.btn-white {
  background-color: white;
  color: black;
}

.btn-black1 {
  background-color: black;
  color: white;
}

.btn-black2 {
  background-color: black;
  color: #999999;
}

div.btn-shape {
  width: 240px;
  height: 70px;
  background: url("../assets/test.jpg") no-repeat center center;
  background-size: cover;
  border-radius: 50px;
}
section#alast_logo p {
  width: 100%;
}

#who_we_are, #strategies, #awards, #gallery, #team {
  align-items: center;
}

.award_box, .award,
.team_box, .member_over,
.gallery, .gal_image,
.solution_box, .sol_top {
  display: flex;
}

section#awards .award_box .award {
  flex-direction: column;
  justify-content: space-between;
  width: 250px;
  margin-right: 40px;
}
section#awards .award_box .award:last-child {
  margin-right: 0;
}
section#awards .award_box .award img {
  width: 100%;
  margin-bottom: 30px;
}
section#awards .award_box .award div {
  text-align: center;
}
section#awards .award_box .award h4, section#awards .award_box .award h5 {
  font-size: 14px;
  color: rgb(70, 70, 70);
}
section#awards .award_box .award h5 {
  font-weight: 700;
}
section#awards .award_box .award h4 {
  font-weight: 200;
}

section#gallery h3 {
  text-align: center;
  margin-bottom: 20px;
}
section#gallery .gallery {
  margin-bottom: 30px;
}
section#gallery .gallery .gal_image {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 210px;
  margin-right: 1px;
}
section#gallery .gallery .gal_image:last-child {
  margin-right: 0;
}
section#gallery .gallery .gal_image .img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  cursor: pointer;
}
section#gallery .gallery .gal_image .img img {
  width: 350px;
  transition: 0.5s;
}
section#gallery .gallery .gal_image h4 {
  font-size: 12px;
  color: rgb(70, 70, 70);
  font-weight: 200;
}
section#gallery .gallery .gal_image:hover img {
  transform: scale(1.05);
}

section#team .team_box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
section#team .team_box .member {
  position: relative;
  width: 23.5%;
  overflow: hidden;
  margin: 0 2% 30px 0;
}
section#team .team_box .member:nth-child(4n) {
  margin: 0 0 30px 0;
}
section#team .team_box .member img {
  width: 102%;
  height: 102%;
  transition: 500ms;
  -o-object-fit: cover;
     object-fit: cover;
}
section#team .team_box .member:hover img {
  width: 100%;
  height: 100%;
}
section#team .team_box .member:hover .member_over {
  background-color: rgba(0, 0, 0, 0.8);
  padding-bottom: 50px;
}
section#team .team_box .member:hover .member_over > * {
  opacity: 1;
}
section#team .team_box .member .member_over {
  flex-direction: column;
  justify-content: end;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 5;
  transition: 0.5s;
  padding: 40px;
}
section#team .team_box .member .member_over > * {
  opacity: 0;
  transition: 0.5s;
}
section#team .team_box .member .member_over::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 0;
  height: 5px;
  background: #42ae70;
  transition: width 500ms ease-in-out;
}
section#team .team_box .member .member_over:hover::after {
  width: 100%;
}
section#team .team_box .member .member_over a {
  font-size: 20px;
  font-weight: 400;
  color: white;
  text-transform: capitalize;
}
section#team .team_box .member .member_over span {
  margin: 10px 0;
  font-size: 12px;
  color: rgb(180, 180, 180);
  text-transform: uppercase;
  letter-spacing: 3px;
}
section#team .team_box .member .member_over .member_socials a {
  color: white;
  font-size: 12px;
  margin-right: 10px;
}
section#team .team_box .member .member_over .member_socials a:last-child {
  margin-right: 0;
}
section#team .team_box .member .member_over .member_socials a:hover {
  color: #42ae70;
}

section#solutions .solution_box, section#publications .solution_box, section#clients .solution_box {
  flex-wrap: wrap;
  justify-content: space-between;
}
section#solutions .solution_box .solution, section#publications .solution_box .solution, section#clients .solution_box .solution {
  width: 37vw;
  margin-bottom: 80px;
}
section#solutions .solution_box .solution .sol_img, section#publications .solution_box .solution .sol_img, section#clients .solution_box .solution .sol_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 25vw;
  overflow: hidden;
  margin-bottom: 20px;
}
section#solutions .solution_box .solution .sol_img img, section#publications .solution_box .solution .sol_img img, section#clients .solution_box .solution .sol_img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
section#solutions .solution_box .solution .sol_top, section#publications .solution_box .solution .sol_top, section#clients .solution_box .solution .sol_top {
  justify-content: space-between;
  align-items: center;
}
section#solutions .solution_box .solution .sol_top span, section#publications .solution_box .solution .sol_top span, section#clients .solution_box .solution .sol_top span {
  color: #42ae70;
  font-size: 12px;
  text-transform: uppercase;
}
section#solutions .solution_box .solution .sol_top a, section#publications .solution_box .solution .sol_top a, section#clients .solution_box .solution .sol_top a {
  color: black;
  font-size: 28px;
  font-weight: 700;
}
section#solutions .solution_box .solution .sol_top a:hover, section#publications .solution_box .solution .sol_top a:hover, section#clients .solution_box .solution .sol_top a:hover {
  color: rgb(70, 70, 70);
}
section#solutions .solution_box .solution p, section#publications .solution_box .solution p, section#clients .solution_box .solution p {
  margin: 20px 0;
  width: 100%;
}
section#solutions .solution_box .client, section#publications .solution_box .client, section#clients .solution_box .client {
  width: 22vw;
}
section#solutions .solution_box .client .sol_img, section#publications .solution_box .client .sol_img, section#clients .solution_box .client .sol_img {
  height: 12vw;
}

@media screen and (max-width: 1200px) {
  section#gallery .gallery {
    flex-direction: column;
  }
  section#gallery .gallery .gal_image {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1023px) {
  section#solutions .solution_box .solution, section#publications .solution_box .solution, section#clients .solution_box .solution {
    width: 42vw;
    margin-bottom: 50px;
  }
  section#solutions .solution_box .solution .sol_img, section#publications .solution_box .solution .sol_img, section#clients .solution_box .solution .sol_img {
    height: 28vw;
  }
  section#solutions .solution_box .client .sol_img, section#publications .solution_box .client .sol_img, section#clients .solution_box .client .sol_img {
    height: 15vw;
  }
}
@media screen and (max-width: 767px) {
  section#gallery .gallery .gal_image {
    height: unset;
  }
  section#gallery .gallery .gal_image .img {
    height: unset;
  }
  section#gallery .gallery .gal_image .img img {
    width: 100%;
    transition: 0.5s;
  }
  section#awards .award_box {
    flex-direction: column;
  }
  section#awards .award_box .award {
    margin-right: 0px;
    margin-bottom: 30px;
  }
  section#team .team_box {
    width: 100%;
  }
  section#team .team_box .member {
    width: 100%;
    margin-right: 0;
  }
  section#team .team_box .member .member_over {
    background-color: rgba(0, 0, 0, 0.5);
  }
  section#team .team_box .member .member_over > * {
    opacity: 1;
    transition: 0.5s;
  }
  section#solutions .solution_box .solution, section#publications .solution_box .solution, section#clients .solution_box .solution {
    width: 100%;
  }
  section#solutions .solution_box .solution .sol_img, section#publications .solution_box .solution .sol_img, section#clients .solution_box .solution .sol_img {
    height: 60vw;
  }
  section#solutions .solution_box .client .sol_img, section#publications .solution_box .client .sol_img, section#clients .solution_box .client .sol_img {
    height: 15vw;
  }
}
#contacts, #sendmessage {
  align-items: center;
}

section#contacts {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
}
section#contacts div {
  width: 48%;
  background-color: #e4e3e3;
  margin-right: 4%;
  padding: 80px 50px;
}
section#contacts div h3 {
  border-bottom: 1px solid rgb(180, 180, 180);
  display: inline-block;
  padding-bottom: 10px;
}
section#contacts div:nth-child(2n) {
  margin-right: 0;
}

#sendmessage form {
  width: 100%;
}
#sendmessage form .inputs, #sendmessage form .submitbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#sendmessage form .inputs {
  margin-bottom: 25px;
}
#sendmessage form .inputs input {
  width: 48.5%;
  padding: 25px;
  outline: none;
  border: none;
  border-bottom: 1px solid rgb(180, 180, 180);
}
#sendmessage form textarea {
  width: 100%;
  margin-bottom: 25px;
  padding: 25px;
  outline: none;
  border: none;
  border-bottom: 1px solid rgb(180, 180, 180);
}
#sendmessage form textarea::-moz-placeholder, #sendmessage form input::-moz-placeholder {
  color: rgb(180, 180, 180);
  text-transform: uppercase;
}
#sendmessage form textarea::placeholder, #sendmessage form input::placeholder {
  color: rgb(180, 180, 180);
  text-transform: uppercase;
}
#sendmessage form .submitbox span {
  color: rgb(180, 180, 180);
}
#sendmessage form .submitbox span::before {
  content: "* ";
  color: #42ae70;
}

@media screen and (max-width: 767px) {
  section#contacts {
    flex-direction: column;
  }
  section#contacts div {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
section#solutions .solutions_top, section#publications .solutions_top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: yellowgreen;
}

main.main_solution .s-base {
  display: flex;
  justify-content: space-between;
}
main.main_solution .s-base .s-right {
  width: 40%;
}
main.main_solution .s-base .s-right img {
  width: 100%;
  margin-bottom: 30px;
}
main.main_solution .s-base .s-left {
  width: 35%;
}
main.main_solution .s-base .s-left .sinfo {
  padding: 15px 0;
  border-top: 1px solid rgb(220, 220, 220);
}
main.main_solution .s-base .s-left .sinfo:last-child {
  border-bottom: 1px solid rgb(220, 220, 220);
}
main.main_solution .s-base .s-left .sinfo span {
  color: rgb(180, 180, 180);
}
main.main_solution .s-base .s-left h3 {
  margin-top: 50px;
}
main.main_solution .s-base .s-left p {
  margin-bottom: 50px;
  color: rgb(180, 180, 180);
}
main.main_solution .s-base .s-left .stags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
  padding-top: 5px;
  border-top: 1px solid rgb(220, 220, 220);
}
main.main_solution .s-base .s-left .stags a {
  margin: 0 5px 5px 0;
  padding: 3px 10px;
  border-radius: 5px;
  color: white;
  background-color: #42ae70;
}
main.main_solution .s-base .s-left .stags a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  main.main_solution .s-base {
    flex-direction: column;
  }
  main.main_solution .s-base .s-left, main.main_solution .s-base .s-right {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  .crumbbox .crumbline {
    width: 5vw;
  }
  .page-title {
    left: 1.8vw;
  }
  main {
    width: 90%;
    padding: 50px 0;
  }
  main > h1.main-title {
    font-size: 62px;
  }
  section > h2.main-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .crumbbox {
    display: none;
  }
  .page-title {
    display: none;
  }
  main {
    margin: 0;
    padding: 30px 0;
  }
  main > h1.main-title {
    font-size: 42px;
    margin: 0 0 30px;
  }
}