@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html {
  scroll-behavior: smooth;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* --------- NAV BAR -------- */

header{
  background-color: #222880;
}

li{
  list-style: none;
}

a{
  color: white;
  text-decoration: none;
}

.navbar{
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}

.nav-menu{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.branding{
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
}

.nav-link{
  transition: 0.7s ease;
}

.nav-link:hover{
  color: dodgerblue;
}

.hamburger{
  display: none;
  cursor: pointer;
}

.bar{
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}

/* --------- NAV BAR -------- */

.logo {
  width: 250px;
}

.showcase1 {
  padding-left: 27px;
  padding-top: 20px;
}

.showcase1 header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0px 38px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.showcase {
  width: 100%;
  height: 400px;
  background: url("../img/showroom.jpg") no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding-bottom: 50px;
  margin-bottom: 20px;
}

.showcase h2
{
  font-size: 3em;
  font-weight: 700;
  color: #fff !important;
  line-height: 1em;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px #000000;
}

.showcase h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.3em;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px #000000;
}

.showcase p {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff !important;
  line-height: 1em;
  text-shadow: 2px 2px 3px #000000;
}

.showcase h2,
.showcase p {
  margin-bottom: 10px;
}

.home-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.home-cards img {
  width: 100%;
  margin-bottom: 20px;
}

.home-cards h3 {
  margin-bottom: 5px;
  font-weight: 700;
}

.home-cards a {
  display: inline-block;
  padding-top: 10px;
  color: #0067b8;
  font-weight: 700;
  text-decoration: none;
}

.home-cards a i {
  margin-left: 7px;
  transition: margin 0.2s;
}

.factory {
  height: 350px;
  width: 100%;
  background: url("../img/factory.png") no-repeat center center/cover;
  margin-bottom: 20px;
}

.factory .content {
  width: 80%;
  padding: 50px 0 0 30px;
}

.factory .content h2 {
  font-size: 2em;
  font-weight: 650;
  color: #fff !important;
  line-height: 1.2em;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px #000000;
}

.factory p,
.delivery p {
  margin: 10px 0 20px;
}

.factory .content p {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff !important;
  line-height: 1em;
  text-shadow: 2px 2px 3px #000000;
}

.delivery {
  height: 350px;
  width: 100%;
  background: url("../img/delivery.jpg") no-repeat center center/cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.delivery .content {
  width: 80%;
  padding-left: 50px;
}

.delivery .content h2 {
  font-size: 2em;
  font-weight: 700;
  color: #fff !important;
  line-height: 1.2em;
  text-transform: uppercase;
  text-shadow: 2px 2px 3px #000000;
}

.delivery .content p {
  font-size: 1.5em;
  font-weight: 600;
  color: #fff !important;
  line-height: 1.3em;
  text-shadow: 2px 2px 3px #000000;
}


.container {
  padding: 20px 20px;
}

.bg-grey {
  background-color: #f6f6f6;
}

/*----------------Container ------------*/

.connecting h2 {
  font-size: 20px;
  text-align: center;
  padding: 20px;
} 

/*----------------chevron icon---------------*/
.chevron-up {
  font-size: 40px;color:red;
  display: flex;
  justify-content: center;

}

.social {
  display: flex;
  justify-content: center;
}

/*----------------chevron icon---------------*/
/* --------x-------FOOTER--------x-----------*/
.text-center p {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
/* ---------social media---------- */

.tab-content a{
  font-size: 2.5em;
  padding: 1rem;
  
}

.fa-facebook {
  color: #3b5998;
}

.fa-twitter {
  color: #00aced;
}

.fa-google-plus-g {
  color: #dd4b39;
}

.fa-instagram {
  color: #517fa4;
}

.fa-youtube {
  color: #bb0000;
}

.fa-linkedin {
  color: #0b046e;
}

.fa-facebook:hover,
.fa-twitter:hover,
.fa-google-plus-g:hover,
.fa-instagram:hover,
.fa-youtube:hover,
.fa-linkedin:hover {
  color: #d5d5d5;
}


/* --------x-----media-------x-----------*/

@media(max-width: 600px){

}
/* --------x-----media-------x-----------*/

@media (max-width: 768px) {

  .home-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory .content p {
    display: none;
  }

  .factory .content .btn {
    margin-top: 20px;
  }

  .delivery .content {
    width: 85%;
  }

  .delivery .content {
    margin-top: 0;
  }

  .footer div > div {
    margin-right: 15px;
  }
}


@media (max-width: 500px) {

  .showcase p {
    display: none;
  }

  .home-cards {
    grid-template-columns: 1fr;
  }

  .factory .content p,
  .alt {
    display: none;
  }

  .delivery .content p {
    display: none;
  }

  .social a {
  font-size: 2em;
  padding: 1.8rem;
}

}

/* --------MEDIA NavBar-----------*/
@media(max-width:768px){
  .hamburger{
    display: block;
  }

  .hamburger.active .bar:nth-child(2){
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu{
    position: fixed;
    left: -100%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #222880;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.5);
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }

  .nav-item{
    margin: 16px 0;
  }

  .nav-item a {
    color: #000000;
    font-weight: 800;
  }

  .nav-menu.active{
    left: 0;
  }
}






