@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;600&display=swap");

::-webkit-scrollbar {
  width: 0px;
  background: transparent;
}

.lock-scroll {
  overflow: hidden;
}

/* font */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

html {
  width: 100vw;
}

nav {
  display: flex;
  width: 100vw;
  z-index: 100;
  position: fixed;
  min-width: 320px;
  background-color: transparent;
  transition: background-color ease-in-out 0.18s;
  -webkit-transition: background-color ease-in-out 0.18s;
  -moz-transition: background-color ease-in-out 0.18s;
  -ms-transition: background-color ease-in-out 0.18s;
  -o-transition: background-color ease-in-out 0.18s;
}

header {
  display: flex;
  flex-direction: column;
  width: 100vw;
  background-color: black;
  position: relative;
}

body {
  display: -ms-grid;
  display: grid;
  width: 100vw;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4 {
  text-align: center;
  font-weight: bold;
}

ul,
li,
a {
  list-style: none;
  color: black;
  text-decoration: none;
}

p {
  font-size: 12.5px;
  text-align: center;
}

i {
  font-size: 100%;
}

footer {
  display: flex;
  background-color: #e32018;
  color: white;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* nav and footer */
.scrolling-active {
  background-color: #242424f5;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
}

.nav-ctn {
  display: flex;
  width: 100vw;
  position: relative;
  justify-content: center;
}

.nav-rw {
  display: flex;
  width: 100vw;
  height: 65px;
  min-width: 320px;
  max-width: 1350px;
  position: relative;
  justify-content: flex-end;
  padding: 0 30px;
  background-color: transparent;
}

.nav-logo-container {
  display: block;
  width: 65px;
  height: 65px;
  position: absolute;
  left: 0;
  top: 0;
  margin-left: 30px;
}

.nav-logo {
  display: block;
  height: 50px;
  width: 50px;
  margin: 32.5% auto 0;
}

.nav-toggle {
  display: flex;
  height: 65px;
  width: 65px;
  margin-right: 30px;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
}

.humburger-menu {
  height: 4px;
  width: 35px;
  background-color: white;
  display: block;
  border-radius: 25px;
  transition: all 0.3s ease-in-out;
}

.nav-toggle.close div {
  background-color: transparent;
}

.humburger-menu::before {
  content: "";
  padding: 2px 0;
  width: 35px;
  border-radius: 30px 50px 15px;
  position: absolute;
  background-color: white;
  display: block;
  transition: all 0.3s ease-in-out;
  transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -o-transform: translateY(-8px);
  -webkit-border-radius: 30px 50px 15px;
  -moz-border-radius: 30px 50px 15px;
  -ms-border-radius: 30px 50px 15px;
  -o-border-radius: 30px 50px 15px;
}

.humburger-menu::after {
  content: "";
  height: 4px;
  width: 35px;
  position: absolute;
  background-color: white;
  display: block;
  transition: all 0.3s ease-in-out;
  transform: translateY(8px);
  -moz-transform: translateY(8px);
  -o-transform: translateY(8px);
  border-radius: 15px 50px 30px;
  -webkit-border-radius: 15px 50px 30px;
  -moz-border-radius: 15px 50px 30px;
  -ms-border-radius: 15px 50px 30px;
  -o-border-radius: 15px 50px 30px;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
}

.nav-toggle.close .humburger-menu::before {
  transform: translateY(0) rotate(45deg);
  -moz-transform: translateY(0) rotate(45deg);
  -o-transform: translateY(0) rotate(45deg);
}

.nav-toggle.close .humburger-menu::after {
  transform: translateY(0) rotate(-45deg);
  -moz-transform: translateY(0) rotate(-45deg);
  -o-transform: translateY(0) rotate(-45deg);
}

.nav-list {
  display: flex;
}

.nav-list > li {
  display: flex;
  flex-direction: column;
  margin: auto 0px;
  padding: 0 20px;
  position: relative;
}

.nav-list a {
  color: white;
  font-weight: bold;
  font-size: 16px;
  padding: 5px 10px 0px 5px;
  transition: all ease-in-out 450ms;
  -moz-transition: all ease-in-out 450ms;
  -ms-transition: all ease-in-out 450ms;
}

.nav-list-sub-menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all ease-in-out 550ms;
  -webkit-transition: all ease-in-out 550ms;
  -moz-transition: all ease-in-out 550ms;
  -ms-transition: all ease-in-out 550ms;
  -o-transition: all ease-in-out 550ms;
}

.nav-list-sub-menu > div {
  background-color: grey;
}

.nav-list-sub-menu li {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 20px 0;
}

.nav-list li:hover > .nav-list-sub-menu {
  opacity: 1;
  visibility: visible;
  padding-top: 44px;
}

.nav-list a:hover {
  color: grey;
  font-size: 17px;
}

/* footer setting */
.footer-company-info-rw {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footer-company-info-logo-ctn {
  height: 65px;
  width: 65px;
  margin: 30px auto 0;
}

/* footer company site map */

.footer-company-sitemap-ctn {
  display: flex;
  width: 100vw;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}

.footer-company-sitemap-mobile-ctn {
  display: flex;
  flex-direction: column;
  width: 100vw;
  justify-content: center;
  align-items: center;
}

.footer-company-sitemap-mobile-rw > ul {
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0 10px;
}

.footer-company-sitemap-mobile-rw > ul > li {
  margin: 0 20px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-company-sitemap-contactus {
  border: 1px solid white;
  margin: 10px;
  padding: 6px 10px;
}

/* footer social media */
.footer-sosial-media-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
  margin: 5px auto 15px;
}

.footer-social-media-rw {
  display: flex;
  justify-content: center;
  align-self: center;
  width: 25px;
  height: 25px;
  margin: 0 8px;
}

.footer-social-media-rw a {
  width: 100%;
  height: 100%;
}

/* footer company policy */
.footer-company-registration-policy {
  display: flex;
  justify-content: center;
  padding: 5px 0 7px;
}

.footer-company-registration-policy ul li {
  padding: 5px 10px;
}

.content {
  margin: 10px 5px;
  position: relative;
}

/* index page */

.body-container {
  display: flex;
  width: 100vw;
  justify-content: center;
}

.body-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

/* 1. index carousel  */
.slider-ctn {
  display: flex;
  position: relative;
  width: 100vw;
  height: 300px;
}

.swiper-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.swiper-pagination-bullet-active {
  background-color: white;
}

/* 2. company introduction */
#index-introduction-container {
  display: flex;
  width: 100%;
  max-width: 1366px;
  align-items: center;
  justify-content: center;
  padding: 30px 35px 15px;
  margin: 5px 0;
}

#index-introduction-row {
  display: flex;
  flex-direction: column;
  max-width: 950px;
}

#index-introduction-row div::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: -7px;
  transform: translateX(-50%);
  height: 2px;
  width: 150px;
  background-color: red;
}

/* 3. our expertise */
#index-service-expertise-container {
  box-shadow: 0 8px 10px #beb5b593;
  width: 100vw;
}

#index-service-expertise-content-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-color: #2b2b34;
}

#index-service-expertise-content-row {
  display: flex;
  width: 100%;
  max-width: 1366px;
  justify-content: space-between;
  align-self: center;
  position: relative;
  padding: 25px 0;
}

#index-service-expertise-content-container > div {
  display: flex;
  height: 100%;
  width: 100%;
}

#index-service-expertise-offshore,
#index-service-expertise-mechanical,
#index-service-expertise-valve {
  height: 310px;
  width: 270px;
  border: 1px solid;
  background-color: white;
  margin: 0 15px;
}

#index-service-expertise-offshore > div,
#index-service-expertise-mechanical > div,
#index-service-expertise-valve > div {
  display: flex;
  height: 100%;
  width: 100%;
  background-color: grey;
}

#index-service-expertise-offshore > div > div,
#index-service-expertise-mechanical > div > div,
#index-service-expertise-valve > div > div {
  display: flex;
  flex-direction: column-reverse;
  height: 100%;
  width: 100%;
  background-color: grey;
}

#index-service-expertise-content-container .figcaption {
  height: 60px;
  width: 100%;
  background-color: white;
}

#index-service-expertise-row > h3::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  width: 150px;
  height: 2px;
  background-color: red;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

/* index project */
#index-service-project-container {
  display: flex;
  width: 100vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  justify-content: center;
}

#index-service-project-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 1150px;
  align-self: center;
  justify-content: center;
  margin: 25px 0;
}

#index-service-project-elaboration-container {
  display: flex;
  flex-direction: column;
}

#index-service-project-content-row {
  display: flex;
  flex-direction: column;
}

#index-service-project-find-out-more-button-container {
  display: flex;
  position: relative;
  margin: 10px 0 0 15px;
}

#find-out-more-button {
  display: flex;
  font-size: 12px;
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 2px 1px 4px grey;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}

/* index client */
#index-client-container {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 25px 0;
  height: 200px;
  background-image: linear-gradient(
    to right,
    rgba(255, 255, 255, 0),
    rgba(214, 214, 220),
    rgba(255, 255, 255, 0)
  );
  box-shadow: 0 8px 10px #beb5b593;
}

#index-client-row {
  display: flex;
  flex-direction: column;
  max-width: 1366px;
  width: 100%;
}

.index-client-logo-ctn {
  display: flex;
  width: 100%;
  justify-content: center;
}

.index-client-logo-ctn figure {
  margin: 25px 30px;
}

/* index career */
#index-career-container {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  margin: 25px 0 10px;
}

#index-career-rw h3::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 180px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background-color: red;
  -webkit-transform: translateX(-50%) translateY(6px);
  -moz-transform: translateX(-50%) translateY(6px);
  -ms-transform: translateX(-50%) translateY(6px);
  -o-transform: translateX(-50%) translateY(6px);
}

.index-career-content-ctn {
  display: flex;
  width: 100%;
  max-width: 1366px;
  margin-top: 20px;
}
.index-career-content-ctn h2,
.index-career-content-ctn p,
index-career-content-ctn a {
  z-index: 30;
  color: white;
}
.index-career-content-ctn p {
  margin: 10px 0 20px;
}
.index-career-work-content-joinus {
  display: flex;
  background-image: url("../img/index/career/joinus_index.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.index-career-work-content-ourteam {
  background-image: url("../img/index/career/meet_index.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.index-career-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 20;
  background-color: rgba(78, 77, 77, 0.65);
}

.index-career-content-ctn div {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 250px;
  margin: 0 5px;
  padding: 20px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  box-shadow: 1px 2px 8px grey;
}

.index-career-content-ctn h2 {
  margin-bottom: 10px;
}

.index-career-button {
  display: flex;
  width: 230px;
  height: 15px;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background-color: #c7173c;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  box-shadow: 1px 1px 3px rgba(245, 245, 245, 0.25);
  z-index: 25;
  color: white;
}
.index-career-button i {
  margin-left: 10px;
}

/* About us page */
/* key management */
.key-header-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
}

.key-header-rw {
  display: flex;
  flex-direction: column;
  height: 350px;
  justify-content: center;
}

#key-body-ctn {
  display: flex;
  width: 100vw;
  max-width: 1366px;
  margin: 0 auto;
}

.key-content-ctn {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.key-content-rw {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 55px 0 0;
}

.key-content-rw figure {
  width: 220px;
  height: 320px;
  margin: 15px;
  margin-bottom: 55px;
}

.key-content-rw figure h4 {
  text-align: left;
}

/* Milestone */
.milestone-header-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
}

.milestone-header-rw {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url("../img/milestone/milestone_header.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: height ease-in-out 0.3s;
  width: 100%;
  height: 350px;
  -webkit-transition: height ease-in-out 0.3s;
  -moz-transition: height ease-in-out 0.3s;
  -ms-transition: height ease-in-out 0.3s;
  -o-transition: height ease-in-out 0.3s;
}

.milestone-body-ctn {
  display: flex;
  flex-direction: column;
  width: 100vw;
  max-width: 1366px;
}

#milestone-body-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
  align-items: center;
}

#milestone-body-rw {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1366px;
  min-width: 320px;
  margin: 10px auto;
}

.milestone-content-ctn {
  display: flex;
  width: 100%;
  padding: 55px 25px;
}

.milestone-content-rw {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
}

.milestone-content-elaboration-ctn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 55px 0;
}

.milestone-content-img {
  display: flex;
  width: 250px;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.milestone-content-img p {
  font-weight: bolder;
  font-size: 20px;
  position: absolute;
  left: 50%;
  top: 27%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
}

.milestone-content-elaboration {
  display: flex;
  width: 90%;
  flex-direction: column;
  padding: 20px;
  border: 1px solid;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  margin-left: 50px;
}

.milestone-content-elaboration h2 {
  margin-bottom: 10px;
}

.milestone-content-elaboration:nth-child(odd) {
  margin: 0 50px 0 0;
}

/* Award */
.award-header-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
}

.award-header-rw {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 350px;
}

#award-body-ctn {
  display: flex;
  justify-content: center;
  width: 100vw;
}

#award-body-rw {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1366px;
  min-width: 320px;
  padding: 55px 0 0;
}

.award-content-rw {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 25px auto;
}

.award-content-evidence-ctn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 1366px;
  min-width: 319px;
  margin: 25px 0;
}

.award-content-evidence-ctn > div {
  display: flex;
  margin: 20px 8vw;
}

.award-content-evidence-ctn > div > figure {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.award-content-evidence-ctn > div > figure > img {
  width: 850px;
  height: 450px;
}

/* Our Business Pages */
.expertise-header-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
  background: white;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.expertise-header-rw {
  display: flex;
  flex-direction: column;
  height: 350px;
  width: 100%;
  justify-content: center;
}

.expertise-body-ctn {
  display: flex;
  flex-direction: column;
  width: 100vw;
  min-width: 320px;
}

.expertise-content-ctn {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.expertise-overview-ctn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 20px 0 45px;
}

.expertise-overview-rw {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1366px;
}

.expertise-content-rw {
  display: flex;
  width: 100vw;
  background-color: #f7f8fa;
  justify-content: center;
  box-shadow: 0 8px 10px #beb5b593;
}

.expertise-content-rw > div {
  display: flex;
  width: 100%;
  height: 280px;
  max-width: 1366px;
}

.expertise-content-inner {
  display: flex;
  width: 100%;
  padding: 10px;
  height: 100%;
}

.expertise-content-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px 20px 20px 40px;
}

.expertise-content-info > ul li {
  list-style: square;
  margin: 25px 0 0 25px;
}

.expertise-content-img-ctn {
  display: flex;
  padding: 10px 10px;
  width: 550px;
}

.expertise-content-img-rw {
  display: flex;
  width: 100%;
}

.other-expertise-ctn {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
  align-items: center;
  margin: 0px auto 30px;
  max-width: 1366px;
}

.other-expertise-ctn > div {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.other-expertise-logo-ctn {
  display: flex;
  width: 110px;
  justify-content: space-between;
  padding: 0 15px;
  margin: 0 20px;
}

.other-expertise-logo-ctn figure {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.other-expertise-logo-ctn figure > img {
  width: 100%;
}

.other-expertise-logo-ctn figure > figcaption {
  width: 100%;
  text-align: center;
}

.expertise-extra-ctn {
  display: flex;
  flex-direction: column;
  width: 100vw;
  justify-content: center;
  align-items: center;
  background-image: url(../img/expertise/expertise.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.expertise-extra-rw {
  display: flex;
  width: 100%;
  max-width: 1366px;
  padding: 0 35px;
  flex-direction: column;
}

.expertise-performance-ctn {
  display: flex;
  width: 100%;
  justify-content: center;
}

.column {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  width: 100%;
  height: 250px;
  margin: 20px 0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.column:nth-child(2) {
  margin: 20px 20px;
}

.numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40%;
  color: white;
  font-size: 45px;
  font-weight: bolder;
}

.column h3 {
  color: white;
}

/* Project  page */
.project-header-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
}

.project-header-rw {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 350px;
}

#project-body-ctn {
  display: flex;
  justify-content: center;
  width: 100vw;
}

#project-body-rw {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1366px;
  min-width: 320px;
  padding: 55px 0;
}

.project-content-rw {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
}

.project-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.project-accordion-box {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.project-accordion-heading {
  display: flex;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 10px 0;
  background-color: #cabebeb0;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.project-accordion-content-ctn > p {
  padding: 20px 30px;
  cursor: pointer;
}

.project-accordion-content-ctn {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  -webkit-transition: max-height 0.5s ease;
  -moz-transition: max-height 0.5s ease;
  -ms-transition: max-height 0.5s ease;
  -o-transition: max-height 0.5s ease;
}

table,
th,
td {
  border: 1px solid black;
  border-collapse: collapse;
}

/* sustainability page  */
.sustainability-header-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
}

.sustainability-header-rw {
  display: flex;
  justify-content: center;
  min-width: 320px;
  width: 100%;
  height: 500px;
}

.sustainability-header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  width: 40%;
  height: 100%;
  background-color: #7a5d0b;
  padding: 45px 60px 0 60px;
}

.sustainability-header-background {
  display: flex;
  width: 60%;
  height: 100%;
  background-image: url("../img/sustainability/sustainability-header.jpg");
  background-attachment: fixed;
}

#sustainability-body-ctn {
  display: flex;
  width: 100vw;
  padding: 4px 5px 0px;
}

#sustainability-body-rw {
  display: flex;
  flex-direction: column;
  margin: 0px auto;
  width: 100%;
  align-items: center;
  max-width: 1366px;
  min-width: 300px;
}

.sustainability-intro-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
  align-items: center;
  background-color: #f9f9f9;
  padding: 45px 0;
}

.sustainability-intro-rw {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 950px;
}

#sustainability-qshe-ctn {
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
  position: relative;
  margin: 0;
  background-color: #1a270a;
  box-shadow: 1px 2px 6px grey;
}

#sustainability-qshe-rw {
  display: flex;
  padding: 40px;
  max-width: 1366px;
  min-width: 320px;
  flex-direction: column;
  align-items: center;
}

.sutainability-qshe-quality-policy-ctn {
  display: flex;
  width: 100%;
  margin: 55px 0;
  box-shadow: 4px 10px 10px #003333;
}

.sutainability-qshe-quality-policy-bg-rw {
  display: flex;
  width: 80%;
  background-image: url("../img/sustainability/policy.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sutainability-qshe-quality-policy-rw {
  display: flex;
  flex-direction: column;
  padding: 40px 50px;
  background-color: white;
}

.sutainability-qshe-objective-ctn {
  display: flex;
  width: 100%;
  margin: 10px 0;
  box-shadow: 2px 10px 10px #003333;
}

.sutainability-qshe-objective-bg-rw {
  display: flex;
  width: 80%;
  background-image: url("../img/sustainability/hse.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sutainability-qshe-objective-rw {
  display: flex;
  flex-direction: column;
  padding: 55px;
  background-color: white;
}

.sutainability-qshe-objective-ctn > ul li {
  list-style: square;
}

#sustainability-csr-ctn {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
  justify-content: flex-end;
  margin-top: 45px;
}

#sustainability-csr-overview-ctn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
}

#sustainability-csr-overview-ctn p {
  padding: 20px 15px;
}

#sustainability-csr-statement-ctn {
  display: flex;
  flex-direction: column;
  width: 100vw;
  background-color: grey;
}

.sustainability-csr-statement-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 40px 0;
  align-items: center;
  background-image: url("../img/sustainability/csrstatement.png");
  background-position-y: 30%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}

.sustainability-csr-statement-content > div {
  max-width: 1066px;
  min-width: 320px;
}

.sustainability-csr-statement-content div > p {
  margin: 20px 50px 0;
  color: white;
}

.sustainability-csr-activity-ctn {
  display: flex;
  width: 100vw;
  height: 250px;
  background-color: white;
}

.sustainability-csr-activity-picture-ctn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}

.sustainability-csr-activity-picture-ctn > div {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sustainability-csr-activity-picture-ctn h4 {
  height: 50px;
  width: 100%;
}

.sustainability-csr-activity-picture-ctn figcaption {
  width: 100%;
  height: 50px;
}

/* career us page */
.career-header-ctn {
  display: flex;
  width: 100vw;
  justify-content: center;
  background-image: url("../img/career/career_header.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.career-header-rw {
  display: flex;
  flex-direction: column;
  height: 350px;
  justify-content: center;
}

.career-body-ctn {
  display: flex;
  width: 100vw;
  align-items: center;
  justify-content: center;
}

.career-content-ctn {
  display: flex;
  margin: 55px 0;
  padding: 0 25px;
  width: 100%;
  justify-content: center;
}

.career-content-rw {
  display: flex;
  max-width: 1366px;
  min-width: 300px;
  width: 100%;
}

.career-content-background {
  display: flex;
  width: 40%;
  height: 500px;
  background-image: url("../img/career/content_background.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.career-content {
  display: flex;
  width: 60%;
  margin: 45px;
  background-color: white;
}

.career-content h3 {
  padding: 0 0 10px;
}

/* contact us */
.contactus-header-ctn {
  width: 100vw;
  background-image: url("../img/contatcus/contactus_header.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contactus-header-rw {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 350px;
  color: white;
  align-items: center;
  justify-content: center;
}

/* contact us body container */
#contactus-body-ctn {
  display: flex;
  width: 100vw;
}

#contactus-body-rw {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* contact us form */
.contactus-form-ctn {
  display: flex;
  padding: 10px;
  margin: 20px 0 5px;
  width: 100%;
  height: auto;
  max-width: 1000px;
  min-width: 300px;
}

/* contacts us form - company info */
.contactus-form-companyinfo-ctn {
  display: flex;
  width: 40%;
  height: 100%;
  padding: 0 0 0 20px;
}

.contactus-form-companyinfo-rw {
  display: flex;
  flex-direction: column;
}

.contactus-form-companyinfo-pure {
  display: flex;
  flex-direction: column;
}

/* form part */
.contactus-form-companyform-ctn {
  display: flex;
  width: 60%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
}

.contactus-form-companyform-rw {
  display: flex;
  width: 100%;
  align-self: center;
  padding-bottom: 20px;
  position: relative;
}

.contactus-form-companyform-rw div:first-child {
  display: flex;
}

.contactus-form-companyform-rw div:first-child > input {
  width: 47%;
}

.contactus-form-companyform-rw input,
.contactus-form-companyform-rw textarea {
  margin: 10px 0;
  width: 100%;
  padding: 5px 0 5px 10px;
  border-radius: 25px;
  outline: 0;
  border: 1px solid #424242;
}

.contactus-form-companyform-rw button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 2px 10px;
  outline: 0;
  border: 1px solid grey;
  border-radius: 25px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  -o-border-radius: 25px;
  transform: translateX(-5px);
  -webkit-transform: translateX(-5px);
  -moz-transform: translateX(-5px);
  -ms-transform: translateX(-5px);
  -o-transform: translateX(-5px);
}

/* contact us map */
.contactus-map-ctn {
  display: flex;
  width: 100vw;
  padding: 10px;
  align-items: center;
  max-width: 1020px;
}
