* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Athena-Regular";
  src: url("../fonts/Athena-Regular.ttf");
}
@font-face {
  font-family: "calibri-regular";
  src: url("../fonts/calibri-regular.ttf");
}
@font-face {
  font-family: "Brandon_Grotesque_light";
  src: url("../fonts/Brandon_Grotesque_light.otf");
}
@font-face {
  font-family: "calibri-bold-italic";
  src: url("../fonts/calibri-bold-italic.ttf");
}
body {
  background-color: #eeeae1 !important;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
body p {
  font-family: "Brandon_Grotesque_light" !important;
  font-size: 17px;
}

h1 {
  font-size: 75px !important;
}

h2 {
  font-size: 35px !important;
  font-family: "Athena-Regular" !important;
  color: #292420 !important;
}

h3 {
  font-size: 25px !important;
  font-family: "calibri-bold-italic" !important;
}

a {
  text-decoration: none !important;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999 !important;
  box-shadow: 0px 0px 5px gainsboro;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.568627451) !important;
  animation-name: example;
  animation-duration: 1s;
  transition: top 500ms ease-in;
  box-shadow: 0px 0px 5px gainsboro;
}

@keyframes example {
  0% {
    top: -100px;
  }
  100% {
    top: 0px;
  }
}
.body_right {
  width: 90%;
  margin-right: 0;
  margin-left: auto;
}

.navbar {
  width: 90%;
  margin-right: 0;
  margin-left: auto;
}
.navbar .navbar-brand {
  position: relative;
  z-index: 2;
}
.navbar .navbar-brand img {
  height: 80px;
}
.navbar .nav-item {
  padding-right: 15px;
}
.navbar .nav-item .active {
  border-bottom: 1px solid #000 !important;
}
.navbar .nav-item a {
  font-family: "calibri-regular";
  position: relative;
  text-transform: uppercase;
}
.navbar .nav-item a::before {
  content: "";
  position: absolute;
  background-color: #000;
  height: 1px;
  bottom: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.3s ease-in-out;
}
.navbar .nav-item a:hover::before {
  transform: scaleX(100%);
}

.main_section .main_banner {
  background: url("../images/home-banner.png") center no-repeat;
  width: 90%;
  margin-right: 0;
  margin-left: auto;
  background-size: cover;
  height: 90vh;
  position: relative;
}
.main_section .main_banner .main_title {
  position: fixed;
  left: 0;
  height: 100% !important;
  display: flex;
  bottom: 10px;
  z-index: 1 !important;
  align-items: flex-end;
}
.main_section .main_banner .main_title img {
  transition: all 0.3s ease-in-out;
  height: 95%;
  opacity: 0.5;
}
.main_section .main_banner .main_title img:hover {
  opacity: 1;
}

.type {
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid;
  animation: type 1.5s steps(90) 1s 1 normal both, cursor 1s step-end infinite;
  position: relative;
  text-align: center !important;
}

@keyframes type {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes cursor {
  50% {
    border-color: transparent;
  }
}
.rw-col {
  width: 70% !important;
  margin: 0 auto;
  text-align: center;
}

.red_more {
  color: #4D4D4D !important;
  font-family: "calibri-bold-italic";
  position: relative;
}
.red_more::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #4D4D4D;
  bottom: -6px;
  transition: all 0.3s ease-in-out;
}
.red_more:hover::before {
  width: 0;
}

.sub_title {
  text-align: end;
  font-family: "calibri-bold-italic";
  color: #4D4D4D;
  margin-bottom: -25px;
}

.side_img {
  text-align: center;
  margin-top: -240px;
  margin-left: 22%;
  position: relative;
}

.img_1 img {
  position: relative;
  z-index: 2 !important;
}

.ourmission_text h2 {
  text-align: start;
  letter-spacing: normal;
}

.side_img2 {
  text-align: center;
  top: 55px;
  margin-left: 22%;
  position: relative;
}

.box_subtitle {
  font-family: "calibri-bold-italic";
  color: #4D4D4D;
  letter-spacing: 3px;
  padding: 0 80px;
}

.machine-img {
  position: relative;
}

.bottom_col {
  margin-top: 25%;
  margin-left: -25%;
}
.bottom_col .box-content {
  border: 2px solid rgba(45, 45, 45, 0.337254902);
  padding: 20px 80px;
}
.bottom_col .box-content h2 {
  font-family: "calibri-bold-italic";
  color: #4D4D4D;
}
.bottom_col .box-content ul {
  padding-left: 0 !important;
}
.bottom_col .box-content ul li {
  font-family: "calibri-bold-italic";
  color: #4D4D4D;
  list-style: none;
}

.sec__bg3 {
  margin-top: 8%;
  padding-bottom: 80px;
}
.sec__bg3 .info_wrap,
.sec__bg3 p {
  text-align: start;
  color: #000;
}
.sec__bg3 .info_wrap,
.sec__bg3 h2 {
  color: #000 !important;
  text-align: start;
}

.design-img {
  margin-top: -40px;
}

.footer {
  width: 90%;
  margin-right: 0;
  margin-left: auto;
}

.footer_content {
  position: relative;
  z-index: 2;
}
.footer_content h3 {
  color: #4D4D4D;
  padding-bottom: 15px;
  font-size: 18px !important;
  font-weight: normal;
}
.footer_content img {
  height: 40px;
  padding-right: 10px;
}
.footer_content ul {
  padding-left: 0 !important;
}
.footer_content ul li {
  list-style: none;
  font-family: "Brandon_Grotesque_light" !important;
  margin-bottom: 8px;
  font-size: 14px !important;
}

.footer-form .form-group input {
  background-color: #E4E4E4;
  width: 80% !important;
}
.footer-form .submit-btn {
  background-color: #453F39 !important;
  color: #fff;
  padding: 8px;
  width: 30%;
  border: 0;
}

.copy-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.copy-right a {
  color: #000;
  text-decoration: none;
}

.row_col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left__img .img_text {
  position: fixed;
  height: 100%;
  bottom: -20px !important;
}
.left__img .img_text img {
  height: 95%;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.left__img .img_text img:hover {
  opacity: 1;
}

.left_navbar {
  position: fixed;
  top: 8%;
  left: 8%;
}
.left_navbar ul li {
  margin-bottom: 20px;
  list-style: none;
}
.left_navbar ul li .active {
  border-bottom: 1px solid #000 !important;
}
.left_navbar ul li a {
  font-family: "calibri-regular";
  position: relative;
  text-transform: uppercase;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.5882352941);
  letter-spacing: 2px;
}
.left_navbar ul li a::before {
  content: "";
  position: absolute;
  background-color: #000;
  height: 1px;
  bottom: 0;
  left: 0;
  width: 100%;
  display: inline-block;
  transform: scaleX(0);
  transform-origin: center left;
  transition: transform 0.3s ease-in-out;
}
.left_navbar ul li a:hover::before {
  transform: scaleX(100%);
}

.left__right {
  width: 70%;
  margin-right: 4%;
}
.left__right h2 {
  text-transform: uppercase;
}

.get-touch {
  text-align: center;
  padding-top: 35px;
}
.get-touch a {
  background-color: #A17A6B;
  color: #fff;
  padding: 15px 30px;
  letter-spacing: 3px;
}

.inquery-form .form-group input,
.inquery-form .form-group textarea {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.337254902);
  border-radius: 0;
}
.inquery-form .Btn_1 {
  background-color: #A17A6B;
  color: #fff;
  border: none;
  padding: 10px 25px;
  text-transform: uppercase;
}

.contact_info li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.contact_info li img {
  height: 20px;
}
.contact_info li a {
  color: #000;
}/*# sourceMappingURL=style.css.map */