@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans:wght@1;100;200;300;400;600;700;800;900;1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;1,200;1,300&display=swap");

:root {
  --background: #191920;
  --yellow: #f0b823;
  --red: #bd1919;
  --gray: #302f3c;
  --grayw: #586a6a;
  --grayww: #cbecfb;
  --green: #008148;
  --darkblue: #344040;
}

* {
  padding: 0;
  margin: 0;
  font-family: "Titillium Web", sans-serif;
  box-sizing: border-box;
}
body {
  background-color: #191920;
}
.showcase {
  /*position: absolute;*/
  right: 0;
  width: 100%;
  min-height: 100vh;
  padding: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3f3d3d;
  color: aliceblue;
  z-index: 2;
}
.menu.active {
  display: flex;
}
.showcase header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 40px 100px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  text-transform: uppercase;
  cursor: pointer;
}
.toggle {
  position: relative;
  width: 60px;
  height: 60px;
  background: url(./asset/menu.svg) no-repeat;
  z-index: 1000;
  transform: scale(0.8);
  background-position: center;
  cursor: pointer;
  transition: 0.2s;
}
.toggle.active {
  background: url(./asset/close.svg) no-repeat;
  transform: scale(0.7);
}
.menu {
  width: 300px; /* showcase.active {right: 300px  */
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(40, 38, 38, 0.46);
  box-shadow: 0px 1px 6px 3px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(11px);
}
.menu ul {
  position: relative;
  list-style: none;
}
.menu li a {
  text-decoration: none;
  letter-spacing: 3px;
  color: #f7f0f5;
  transform: scale(0.8);
  font-size: 18px;
}
.menu li {
  transform: scale(1);
  transition: 0.5s;
  line-height: 50px;
}

.menu li:hover {
  text-decoration: none;
  letter-spacing: 3px;
  color: #f7f0f5;
  transform: scale(1) translateX(-15px);
}

.showcase video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.text {
  position: relative;
}
.text h2 {
  font-size: 5em;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1em;
}
.text h3 {
  font-size: 2em;
  line-height: 1em;
  font-weight: 600;
  text-transform: uppercase;
}
.text p {
  text-transform: capitalize;
  font-weight: 300;
  margin: 20px 0;
  max-width: 440px;
}
.text a {
  display: inline-block;
  margin-top: 10px;
  background-color: var(--yellow);
  padding: 10px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 5px;
  color: #3f3d3d;
  letter-spacing: 2px;
  transition: 0.8s;
}
.text a:hover {
  letter-spacing: 6px;
}
.social {
  position: absolute;
  z-index: 10;
  bottom: 20px;
  display: flex;
  justify-content: center;
}
.social li {
  list-style: none;
  display: inline-block;
}
.social li a {
  text-transform: uppercase;
  text-decoration: none;
  color: aliceblue;
  display: inline-block;
  margin-right: 20px;
  transition: 0.5s;
  transform: scale(0.8);
}
.social li a:hover {
  transform: scale(0.8) translateY(-15px);
}
.container {
  flex-direction: column;
  display: flex;
  margin: 0 auto;
  max-width: 1300px;
}
/**
*! About Section Start
*/
.aboutsection {
  display: flex;
  margin: 0 auto;
  width: 100%;
  height: 300px;
  background-color: aqua;
}
.about-section {
  height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
}
.aboutphoto {
  background-image: url(./asset/factory-min.jpg);
  width: 81vw;
  max-width: 972px;

  height: 290px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
}
.about-section .about-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 895px;
  height: 300px;
  border-radius: 22px;
  background-color: #302f3c;
}

.about-section .about-form h1 {
  color: #bd1919;
  font-family: "Titillium Web", sans-serif;
  font-size: 32px;
  margin: 3%;
}

.about-section .about-form p {
  font-family: "Titillium Web", sans-serif;
  color: #faf9f8;
  font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
  text-align: center;
  font-weight: 100;
  margin: 0px 41px;
  line-height: 126%;
}
.about-section .about-form img {
  margin-top: 4%;
}
/**
*! About Section End
*!  stone-section
*/
.stone-section {
  background: #4357ad url(/asset/logos/stoneoil.svg) no-repeat right fixed;
  width: auto;
  height: 555px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stone-body {
  margin: auto;
  display: flex;
  height: 381px;
  width: 1245px;
  max-width: 1245px;
}
.stone-body img {
  flex: 1;
  transform: scale(0.8);
}

.stone-text {
  flex: 1;
  position: relative;
  padding: 10px 40px 30px 20px;
  margin: 50px 0px;
  color: #f2f5f7;
}
.stone-text::before {
  background: #ffffff;
  position: absolute;
  left: 0px;
  top: 0;
  bottom: 0;
  width: 2px;
  content: "";
  display: block;
}
.stone-text h1 {
  margin-bottom: 10px;
  font-size: 35px;
  line-height: 1.2;
  color: #ffffff;
}
.stone-text p {
  margin-bottom: 15px;
}
.stone-text a {
  padding: 8px 16px;
  background: var(--yellow);
  color: #4357ad;
  text-decoration: none;
  text-transform: capitalize;
  border-radius: 2px;
  transition: 0.5s;
}
.stone-text a:hover {
  letter-spacing: 0.5px;
}

/**
*! content section Start
*
*/

.content-section {
  justify-content: center;
}
.content-title {
  margin: 0 auto;
  max-width: 1245px;
  height: 354px;
  background: linear-gradient(
    90deg,
    rgba(245, 177, 0, 0.62) 40.07%,
    rgba(0, 129, 72, 0.62) 97.92%
  );
  backdrop-filter: blur(4px);
  border-radius: 28px;
}
.content-title .big-title {
  display: flex;
  padding: 32px 59px;
}
.content-title .big-title h1 {
  width: 40%;
  font-family: "Montserrat", sans-serif;
  font-size: 45px;
  font-weight: 800;
  color: #ffff;
}
.content-title .big-title p {
  flex: 1;
  font-family: "Titillium Web", sans-serif;
  font-size: clamp(0.9375rem, 0.6824rem + 0.4918vw, 1.125rem);
  color: #faf9f8;
  text-align: justify;
}
.content-image {
  background-image: url(./asset/content/heavy-machinery.jpg);
  max-width: 998px;
  height: 594px;
  background-position: center;
  background-size: cover;
  border-radius: 50px;
  margin: -230px auto 0 auto;
}
/**
*! Content Section End
*! Global section Start
*
*/
.section_global {
  margin-top: 100px;

  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.global-header {
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    #008148 0%,
    rgba(0, 129, 72, 0.04) 56.89%
  );
  border-radius: 50px 50px 0px 0px;
  max-width: 1152px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-position: center;
  background-size: cover;
  text-align: center;
}
.global-header h1 {
  font-family: "Sofia Sans", sans-serif;
  margin-top: 65px;
  color: #fff;
  font-size: clamp(2.5625rem, 2.1875rem + 1.875vw, 3.875rem);
  font-weight: 900;
}
.global-pic img {
  width: 100%;
  height: 100%;
}
.global-footer {
  margin: 0 auto;
  background: linear-gradient(
    181.65deg,
    #052044fb -22.57%,
    rgba(11, 30, 50, 0.936548) 46.23%,
    #081323 98.62%
  );
  border-radius: 0px 0px 50px 50px;
  max-width: 1152px;
  padding: 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 5px 5px;
}
.cards {
  display: flex;
  background-color: #586a6a;
  width: 155px;
  height: 158px;
  border-radius: 12px;
}
.ca-la1 {
  margin: auto;
  width: 146px;
  height: 139px;
  background: rgba(203, 236, 251, 0.38);
  box-shadow: 0px 3px 5px 2px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16.5px);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.ca-la1 .ca-la1-ti p {
  text-align: center;
  font-size: 15px;
  text-transform: uppercase;
  font-family: "Sofia Sans", sans-serif;
  font-weight: 300;
}

/**
*! Global Section End
*! contact section
*/
.contactsection {
  display: flex;
  margin: 80px 0px;

  height: 588px;

  align-items: center;
  justify-content: center;
  position: relative;
}
.contactform {
  background-color: #586a6a;
  border-radius: 12px;
  height: auto;
  border-radius: 12px;
  z-index: 100;
  padding: 20px;
  margin: 77px;
}
.contact-form-title {
  font-family: "sofia sans", sans-serif;
  text-transform: uppercase;
  font-size: 32px;
  color: #f0b823;
}
.contact-form-body {
  display: flex;
}
.contact-form-para {
  width: 50%;
}
.contact-form-para p {
  color: #ffff;
  font-family: "sofia sans", sans-serif;
  font-weight: 200;
  font-size: clamp(0.875rem, -1.2244rem + 4.918vw, 1.25rem);
  padding: 20px;
  text-transform: capitalize;
  text-align: justify;
  line-height: 27px;
}
.contact-form-input {
  width: 50%;
  padding: 20px;
  font-family: "sofia sans", sans-serif;
}
.contact-form-input label {
  color: #ffff;
}

.contact-form-input input[type="text"] {
  margin: 5px 0;
  padding: 5px;
  height: 35px;
  width: 100%;
  border-radius: 12px;
  border: none;
  background: rgba(231, 245, 250, 0.99);
  box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
}
.contact-form-input textarea {
  border: none;
  width: 100%;
  height: 110px;
  margin: 5px 0;
  padding: 2px;
  border-radius: 12px;
  background: rgba(231, 245, 250, 0.99);
  box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
  resize: none;
}

.form-submit {
  cursor: pointer;
  letter-spacing: 2px;
  margin-top: 5px;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  color: #ffff;
  padding: 10px;
  background: #008148;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}
.shape1 {
  width: 172px;
  height: 172px;
  background-color: #344040;
  border-radius: 12px;
  position: absolute;
  top: -54px;
  right: 0px;
}
.shape1-2 {
  width: 172px;
  height: 172px;
  background-color: #f5b100;
  border-radius: 12px;
  position: absolute;
  bottom: -53px;
  left: 0px;
}
.shape2 {
  width: 98px;
  height: 98px;
  background-color: #f5b100;
  border-radius: 12px;
  position: absolute;
  top: -33px;
  right: 122px;
}
.shape2-1 {
  width: 98px;
  height: 98px;
  background-color: #344040;
  border-radius: 12px;
  position: absolute;
  bottom: -32px;
  left: 122px;
}
footer {
  background-color: var(--gray);
  display: flex;
  border-radius: 12px 12px 0px 0px;
}
footer h3 {
  font-size: 14px;
  color: #ffff;
  font-weight: 300;
  margin: 0 auto;
  text-align: center;
}

@media only screen and (max-width: 829px) {
  .content-title .big-title {
    display: block;
  }
  .content-title .big-title h1 {
    width: 100%;
  }
  .content-title {
    height: 60vw;
  }
  .stone-section {
    height: auto;
  }
  .stone-body {
    flex-direction: column;
    height: auto;
  }
  .stone-body img {
    transform: scale(0.7);
  }
  .stone-text {
    overflow: visible;
  }
  .stone-text::before {
    width: 90%;
    height: 2px;
    left: auto;
  }
}
@media only screen and (max-width: 683px) {
  .content-title .big-title {
    padding: 21px 28px;
  }
  .content-title .big-title p {
    margin-top: 10px;
  }
  .content-image {
    margin: -175px auto 0 auto;
  }
  .content-title .big-title h1 {
    font-size: 24px;
  }
  .content-title {
    height: 39em;
  }
  .global-header {
    height: 358px;
  }
  .contactsection {
    height: auto;
  }
  .contact-form-body {
    flex-direction: column;
  }
  .contact-form-para {
    width: 100%;
  }
  .contact-form-para p {
    padding: 2px;
  }
  .contact-form-input {
    width: 100%;
    padding: 2px;
  }
  .contactform {
    margin: 20px;
  }
}

@media screen and (max-width: 991px) {
  .showcase,
  .showcase header {
    padding: 40px;
  }
  .text h2 {
    font-size: 3em;
  }
  .text h3 {
    font-size: 2em;
  }
}
