@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

/* Setup */

/* Main Header */
.main-header h3{
  color: #d3aa7b;
  font-size: 3.5rem;
  font-weight: 500;
  text-transform: capitalize;
  text-align: justify;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
} 

.main-header h3::before {
  content: "-";
  color: #d3aa7b;
  font-size: 60px;
  vertical-align: baseline;
  display: inline-block;
  margin-right: 1rem;
  letter-spacing: .2rem;
}

.main-header p {
  font-size: 1.2rem;
  text-align: justify;
  letter-spacing: .1px;
}

/* Opacity Layer */
.opacity-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: all .4s ease-in-out;

}

.opacity-layer:hover {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Cutting Page */
.page-cutting {
  margin: 8rem 0;
}

/* Fixed Bg */
.fixed-bg {
  min-height: 90vh;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.fixed-bg--1 {
  background-image: url("../images/high-reolution/v1.jpg");
}

/* Nav Pills */
.nav-pills {
  justify-content: center;
}

.nav-pills .nav-item .nav-link {
  border-radius: 0;
  font-size: 1.3rem;
  background-color: rgba(211, 170, 123, 0.3);
  margin: 0 10px;
  transition: all .3s ease-in-out;
}

.nav-pills .nav-item .nav-link:first-child {
  margin-left: 0;
}

.nav-pills .nav-item .nav-link:hover {
  background-color: rgba(211, 170, 123, 0.8);
  color: #fff;
} 

.nav-pills .nav-item .nav-link.active {
  background-color: rgba(211, 170, 123, 0.8);
}

/* Carousel */

.carousel {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr 3fr 1.5fr;
  grid-template-columns: 50px 1fr 1fr 1fr 1fr 50px;
  row-gap: 2vh;
  position: relative;
}

.progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 5px;
  width: 100%;
}

.progress-bar__fill {
  width: 0;
  height: inherit;
  background: #c20000;
  transition: all 0.16s;
}

.progress-bar--primary {
  z-index: 2;
}

.main-post-wrapper {
  grid-row: 1/4;
  grid-column: 1/7;
  position: relative;
}

.slides {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.main-post {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.main-post__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.main-post__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-post__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 13, 14, 0.5);
}

.main-post__content {
  position: absolute;
  top: 40%;
  left: 4%;
  transform: translateY(-40%);
  color: #fff;
  width: 90%;
}

.main-post__tag-wrapper {
  margin: 0;
  display: inline-flex;
  overflow: hidden;
}

.main-post__tag {
  font-size: 0.95em;
  background: #c20000;
  padding: 6px 18px;
}

.main-post__title {
  font-weight: 700;
  font-size: 1.95em;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.main-post__link {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
}

.main-post__link-text {
  font-size: 0.9em;
}

.main-post__link-icon--arrow {
  margin-left: 12px;
}

.main-post__link-icon--play-btn {
  margin-right: 12px;
}

.main-post__link:hover .main-post__link-text,
.main-post__link:hover .main-post__link-icon--arrow path {
  color: #c20000;
  stroke: #c20000;
}

.main-post--active {
  top: 0;
  z-index: 1;
  transition: top 0.9s 0.4s ease-out;
}

.main-post--not-active {
  top: 100%;
  z-index: 0;
  transition: top 0.75s 2s;
}

.main-post.main-post--active .main-post__tag-wrapper {
  width: 25%;
  transition: all 0.98s 1.9s;
}

.main-post.main-post--not-active .main-post__tag-wrapper {
  width: 0;
  transition: width 0.3s 0.2s;
}

.main-post.main-post--active .main-post__title {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s 1.42s, transform 0.5s 1.4s;
}

.main-post.main-post--not-active .main-post__title {
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.2s 0.35s, opacity 0.5s 0.2s;
}

.main-post.main-post--active .main-post__link {
  opacity: 1;
  transition: opacity 0.9s 2.2s;
}

.main-post.main-post--not-active .main-post__link {
  opacity: 0;
  transition: opacity 0.5s 0.2s;
}

.posts-wrapper {
  grid-row: 3/4;
  grid-column: 3/6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 14px;
       column-gap: 14px;
  z-index: 1;
}

.posts-wrapper-2 {
  grid-row: 3/4;
  grid-column: 3/6;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 14px;
       column-gap: 14px;
  z-index: 1;
}


.post {
  background: rgba(14, 13, 14, 0.6);
  opacity: 0.3;
  color: #fff;
  position: relative;
  padding: 16px 20px;
}

.post__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8em;
}

.post__tag {
  color: #80837e;
}

.post__title {
  font-weight: 400;
  font-size: 0.95em;
  line-height: 1.5;
}

.post--active {
  opacity: 1;
  background: rgba(14, 13, 14, 0.75);
}

.post:not(.post--active) {
  pointer-events: none;
}

.hide-on-mobile {
  display: none;
}

@media screen and (min-width: 768px) {
  .main-post__title {
    font-size: 2.9em;
  }
}

@media screen and (min-width: 1024px) {
  .hide-on-mobile {
    display: grid;
  }

  .posts-wrapper {
    grid-column: 2/6;
  }

  .hide-on-desktop {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .main-post__content {
    width: 45%;
  }

  .posts-wrapper {
    grid-column: 3/6;
  }
}

/* Navbar */
.navbar {
    background-color: transparent !important;
    transition: background-color 0.5s ease;
}

.navbar .navbar-brand {
    color: #fff;
    font-size: 35px;
    font-weight: 600;
    padding-top: 0;
}

.navbar .nav-item .nav-link {
    color: #e9d7d7;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all .3s ease-in-out;
}

.navbar .nav-item .nav-link:hover {
  color: #d3aa7b;
}

.navbar .ml-auto .nav-item {
  margin-right: 1rem;
}

.navbar .ml-auto .nav-item .dropdown-menu .dropdown-item img {
  width: 25px;
  height: 25px;
  margin-right: 20px;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.9) !important;
  -webkit-box-shadow: 0px 0px 8px -2px rgba(0,0,0,0.75);
  -moz-box-shadow: 0px 0px 8px -2px rgba(0,0,0,0.75);
  box-shadow: 0px 0px 8px -2px rgba(0,0,0,0.75);
}

.navbar.scrolled .navbar-brand {
  color: #000;
}

.navbar.scrolled .nav-item .nav-link {
  color: #1c1c1c;
  transition: all .3s ease-in-out;
}

.navbar.scrolled .nav-item .nav-link:hover {
  color: #d3aa7b !important;
}

/* Industry */
.industry .industry-card {
  height: 500px;
  width: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.industry .industry-card--1 {
  background-image: url(../images/high-reolution/m-3.jpg);
}

.industry .industry-card--2 {
  background-image: url(../images/high-reolution/i-2.jpg);
}

.industry .industry-card--3 {
  background-image: url(../images/high-reolution/v3.jpg);
}

.industry .industry-card--4 {
  background-image: url(../images/high-reolution/afr.jpg);
}

.industry .industry-card .card-content {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

.industry .industry-card .card-content h4 {
  color: #fff;
  font-size: 2rem;
  text-transform: capitalize;
  letter-spacing: 6px;
  font-weight: 500;
}

.industry .industry-card .card-content a {
  text-decoration: none;
  color: #fff;
}


.industry .industry-card .card-content p {
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
}


/* Feature Products */
.feature-products .product-catgories .product-card {
  margin: 2rem 0;
}

.feature-products .product-catgories .product-card .img-container {
  width: 100%;
  height: 230px;
}

.feature-products .product-catgories .product-card .product-content h4 {
  color: #d3aa7b;
  font-size: 1.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.feature-products .product-catgories .product-card .product-content p {
  color: #d0b79a;
  font-size: .8rem;
  letter-spacing: 1.9px;
}

/* Special Edition */
.special-edition {
  position: absolute;
  width: 38%;
  top: 60%;
  left: 25%;
  transform: translate(-50%, -50%);
  color: #fff;
}

.special-edition h4 {
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.special-edition h3 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}


/* Cap Area */
.cap-category {
  position: relative;
  text-align: center;
  padding: 0 2rem;
  border-right: 1px solid #e9e1e1;
  border-left: 1px solid #e9e1e1;
}

.cap-category .cap-category--icon {
  font-size: 3rem;
  color: #d3aa7b;
  margin-bottom: 1rem;
}

.cap-category .cap-category--content h4 {
  font-size: 2rem;
  text-transform: capitalize;
  letter-spacing: .3rem;
  font-weight: 500;
}

.cap-category .cap-category--content p {
  font-size: .9rem;
  font-weight: 300;
}


/* Footer */
.pg-footer {
  font-family: 'Roboto', sans-serif;
}


.footer {
    background-color: #004658;
    color: #fff;
}
.footer-wave-svg {
    background-color: transparent;
    display: block;
    height: 30px;
    position: relative;
    top: -1px;
    width: 100%;
}
.footer-wave-path {
    fill: #fffff2;
}

.footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
}

.footer-content-column {
    box-sizing: border-box;
    float: left;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    color: #fff;
}

.footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-logo-link {
    display: inline-block;
}
.footer-menu {
    margin-top: 30px;
}

.footer-menu-name {
    color: #fffff2;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-menu-list {
    list-style: none;
    margin-bottom: 0;
    margin-top: 10px;
    padding-left: 0;
}
.footer-menu-list li {
    margin-top: 5px;
}

.footer-call-to-action-description {
    color: #fffff2;
    margin-top: 10px;
    margin-bottom: 20px;
}
.footer-call-to-action-button:hover {
    background-color: #fffff2;
    color: #00bef0;
}
.button:last-of-type {
    margin-right: 0;
}
.footer-call-to-action-button {
    background-color: #027b9a;
    border-radius: 21px;
    color: #fffff2;
    display: inline-block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    padding: 12px 30px;
    margin: 0 10px 10px 0;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color .2s;
    cursor: pointer;
    position: relative;
}
.footer-call-to-action {
    margin-top: 30px;
}
.footer-call-to-action-title {
    color: #fffff2;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .1em;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
}
.footer-call-to-action-link-wrapper {
    margin-bottom: 0;
    margin-top: 10px;
    color: #fff;
    text-decoration: none;
}
.footer-call-to-action-link-wrapper a {
    color: #fff;
    text-decoration: none;
}





.footer-social-links {
    bottom: 0;
    height: 54px;
    position: absolute;
    right: 0;
    width: 236px;
}

.footer-social-amoeba-svg {
    height: 54px;
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    width: 236px;
}

.footer-social-amoeba-path {
    fill: #027b9a;
}

.footer-social-link.linkedin {
    height: 26px;
    left: 3px;
    top: 11px;
    width: 2.7rem;;
}

.footer-social-link {
    display: block;
    padding: 10px;
    position: absolute;
}

.hidden-link-text {
    position: absolute;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
    clip-path: inset(0px 0px 99.9% 99.9%);
    overflow: hidden;
    height: 1px;
    width: 1px;
    padding: 0;
    border: 0;
    top: 50%;
}

.footer-social-icon-svg {
    display: block;
}

.footer-social-icon-path {
    fill: #fffff2;
    transition: fill .2s;
}

.footer-social-link.twitter {
    height: 28px;
    left: 62px;
    top: 3px;
    width: 2.8rem;
}

.footer-social-link.youtube {
    height: 24px;
    left: 123px;
    top: 12px;
    width: 2.7rem;
}

.footer-social-link.github {
    height: 34px;
    left: 172px;
    top: 7px;
    width: 3.4rem;
}

.footer-copyright {
    background-color: #027b9a;
    color: #fff;
    padding: 15px 30px;
  text-align: center;
}

.footer-copyright-wrapper {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
    margin-top: 0;
}

.footer-copyright-link {
    color: #fff;
    text-decoration: none;
}







/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:480px) and (max-width:599px)  { /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:600px) and (max-width: 800px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */

}
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */

}
@media (min-width:1281px) { /* hi-res laptops and desktops */

}




@media (min-width: 760px) {
  .footer-content {
      margin-left: auto;
      margin-right: auto;
      max-width: 1230px;
      padding: 40px 15px 450px;
      position: relative;
  }

  .footer-wave-svg {
      height: 50px;
  }

  .footer-content-column {
      width: 24.99%;
  }
}
@media (min-width: 568px) {
  /* .footer-content-column {
      width: 49.99%;
  } */
}























/* Ecommerce Product Slider */

.slider-container {
  padding: 10px 0;
  max-height: 100vh;
}

.slides-wrapper {
  margin: auto;
  overflow: hidden;
}

.slides-container {
  padding: 0 10px;
}

.slider-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
  transition: 1s;
  max-height: calc(100vh - 80px);
}

.slider-item {
  margin: 0 16px -4px 0;
  min-height: 150px;
}

.slider-item img {
  width: 100%;
}

.slider-arrows {
  display: flex;
  justify-content: space-between;
  height: 30px;
  padding: 0 10px;
  margin-top: 10px;
}

.slider-arrow-prev,
.slider-arrow-next {
  border: none;
  background-color: #ffffff;
  color: #212121;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.slider-arrow-prev:hover,
.slider-arrow-next:hover {
  background-color: #eeeeee;
}


/* End Ecommerec Product Slider */


.accordion .card {
  border-radius: 0;
}


.accordion .card .card-header {
  background-color: #fff;
  border-radius: 0;
  display: flex;
  justify-content: center;
}

.accordion .card .card-header button {
  color: #000;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: .1rem;
  text-decoration: none;
  text-transform: capitalize;
}

.slider-arrows a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background-color: aqua;
}