:root {
  --primary-color: #2d6cc7;
  --secondary-color: #57e236;
  --tertiary-color: #d80272;
  --white-color: #ffffff;
  --black-color: #222222;
  --text-color: #333333;
  --bg-gray: #fafafa;
}

@font-face {
  font-family: Poppins-Regular;
  src: url(../fonts/Poppins-Regular.ttf);
}

@font-face {
  font-family: Poppins-Light;
  src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
  font-family: Poppins-Bold;
  src: url(../fonts/Poppins-Bold.ttf);
}

body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  position: relative;
  font-family: Poppins-Regular;
 
}
 
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins-Bold;
}

img {
  width: 100%;
  height: 100%;
}

ul,
ol,
ul li,
ol li {
  list-style: none;
}

p strong {
  font-family: Poppins-Bold;
}

header {
  background-color: #ffffffaa;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  /* position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%; */
}

header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

a {
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  color: var(--primary-color);
}

section {
  padding: 40px 15px;
}

section .content .details,
section .content .side-image {
  padding: 0 40px;
}
/* 
.btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 0;
  padding: 15px;
  font-family: Poppins-Regular;
  transition: all 0.5s ease-in-out;
  width: 120px;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--tertiary-color);
} */

.text-center {
  text-align: center;
}

.w-50 {
  width: 48%;
}

.w-33 {
  width: 31%;
}

.w-25 {
  width: 23%;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.wrap {
  flex-wrap: wrap;
}

.logo {
  width: 80px;
  display: inline-block;
  vertical-align: middle;
}

.section-title {
  margin: 40px 0;
  text-align: center;
  font-size: 40px;
  font-family: Poppins-Bold;
  color: var(--primary-color);
}

#home {
  padding: 0;
}

#media,
#points {
  background-color: var(--bg-gray);
}

#about .content .details p {
  margin: 12px 0;
}

#points .points {
  margin-bottom: 40px;
}

#points .points .w-33 {
  padding: 0 15px;
}

.points .list h4 {
  font-family: Poppins-Regular;
  font-size: 24px;
  color: var(--white-color);
  background-color: var(--tertiary-color);
  width: 70px;
  height: 70px;
  margin: 30px auto;
  text-align: center;
  border-radius: 50%;
}

#media .media-list {
  margin-bottom: 35px;
}

#media .media-list .media {
  width: 50%;
  padding: 15px;
}

#media .media-list .media a {
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  color: var(--text-color);
}

#media .media-list .media a:hover {
  border: 1px solid var(--tertiary-color);
  color: var(--tertiary-color);
}

#media .media-list .media a img {
  width: 180px;
  margin-right: 15px;
}

#media .media-list .media a p {
  padding: 0 15px;
}

/* NAVIGATION */

.navbar {
  display: grid;
  align-items: center;
  height: 50px;
  overflow: hidden;
}

.navbar img {
  height: 16px;
  width: auto;
  justify-self: start;
  margin-left: 20px;
}

.navbar ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  justify-self: end;
  gap: 10px;
}

.nav-item a {
  color: var(--black-color);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease-out;
  font-family: Poppins-Regular;
}

.nav-item a:hover,
.nav-item a.active,
.nav-item a:focus {
  color: #3498db;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #3f3f3f;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.menu-toggle {
  justify-self: end;
  display: none;
}

.menu-toggle:hover {
  cursor: pointer;
}

#mobile-menu.menu-active .bar:nth-child(2) {
  opacity: 0;
}

#mobile-menu.menu-active .bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
  -ms-transform: translateY(8px) rotate(45deg);
  -o-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
}

#mobile-menu.menu-active .bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
  -ms-transform: translateY(-8px) rotate(-45deg);
  -o-transform: translateY(-8px) rotate(-45deg);
  transform: translateY(-8px) rotate(-45deg);
}

/*----------------------*/
#product {
  background-color: var(--bg-gray);
  padding-top: 2rem;
  padding-bottom: 2rem;

}



.our-product-details {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 35px;
}

.image-stack {
  max-width: 480px;
  display: grid;
  position: relative;
  grid-template-columns: repeat(12, 1fr);
  margin-top: 35px;
  margin-right: 50px;
  margin-bottom: 35px;
}

.product-image-details {
  cursor: pointer;
  grid-column: 4 / -1;
  grid-row: 1;
  z-index: 1;
  padding-left: 40%;
}

.product-image-details-1 {
  cursor: pointer;
  grid-row: 1;
  grid-column: 1 / span 8;
  padding-top: 90%;

}

.product-image-details-1:active {
  visibility: visible;
  z-index: 1;
}

.product-image,
.product-image-1 {
  border-radius: 20px;
  width: 200px;
  height: 200px;
}


.produt-details p strong {
  color: var(--tertiary-color);
  font-size: 20px;
}

.produt-details ul {
  margin-top: 15px;
  max-width: 480px;
  padding: 20px;

}

.produt-details ul li {
  list-style-type: circle;
}

.scrollup {
  background-color: var(--primary-color);;
  border-radius: 50%;
  bottom: 30px; 
  height: 40px;
  position: fixed;
  right: 20px;
  width: 40px;
}
.arrow{
  display: block;
  margin: 15px auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(315deg);

}
.arrow::after {
  content: "";
 
}


/* KEYFRAME ANIMATIONS */

@-webkit-keyframes gradbar {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@-moz-keyframes gradbar {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@keyframes gradbar {
  0% {
    background-position: 0% 50%
  }

  50% {
    background-position: 100% 50%
  }

  100% {
    background-position: 0% 50%
  }
}

@media only screen and (max-width: 767px) {

  /* MOBILE NAVIGATION */

  .our-product-details {
    display: flex;
    flex-direction: column-reverse;
  }

  .product-image-details {
    cursor: pointer;
    grid-column: 4 / -1;
    grid-row: 1;
    z-index: 1;
    padding-left: 15%;
  }

  .product-image-details-1 {
    cursor: pointer;
    grid-row: 1;
    grid-column: 1 / span 8;
    padding-top: 50%;

  }

  .navbar ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    justify-content: start;
    top: 55px;
    left: 0;
    background-color: var(--white-color);
    width: 100%;
    height: calc(100vh - 55px);
    transform: translate(-101%);
    transition: transform 0.5s ease-in-out;
    text-align: center;
    overflow: hidden;
  }

  .navbar li {
    padding: 15px;
  }

  .navbar li:first-child {
    margin-top: 50px;
  }

  .navbar li a {
    font-size: 1rem;
  }

  .menu-toggle,
  .bar {
    display: block;
    cursor: pointer;
  }

  .navbar .menu-active+.nav {
    transform: translate(0%) !important;
  }
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

#content {
  margin-top: 50px;
  text-align: center;
}


/* Timeline */

#timeline {
  width: 100%;
  margin: 30px auto;
  position: relative;
  padding: 0 10px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

#timeline:before {
  content: "";
  width: 3px;
  height: 100%;
  background: #ee4d4d;
  left: 50%;
  top: 0;
  position: absolute;
}

#timeline:after {
  content: "";
  clear: both;
  display: table;
  width: 100%;
}

#timeline .timeline-item {
  /* margin-bottom: 50px; */
  position: relative;
  clear: both;
}

#timeline .timeline-item .timeline-icon {
  background: #ee4d4d;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
  margin-left: -23px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

#timeline .timeline-item .timeline-icon svg {
  position: relative;
  top: 14px;
  left: 14px;
}

#timeline .timeline-item .timeline-content {
  width: 45%;
  background: #fff;
  padding: 20px;
  -webkit-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 7px #dfdfdf;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#timeline .timeline-item .timeline-content h2 {
  padding: 5px;
  background: #ee4d4d;
  color: #fff;
  margin: -20px -20px 0 -20px;
  font-weight: 300;
  -webkit-border-radius: 3px 3px 0 0;
  -moz-border-radius: 3px 3px 0 0;
  -ms-border-radius: 3px 3px 0 0;
  border-radius: 3px 3px 0 0;
  
}

#timeline .timeline-item .timeline-content:before {
  content: "";
  position: absolute;
  left: 45%;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 7px solid #ee4d4d;
}

#timeline .timeline-item .timeline-content.right {
  float: right;
}

#timeline .timeline-item .timeline-content.right:before {
  content: "";
  right: 45%;
  left: inherit;
  border-left: 0;
  border-right: 7px solid #ee4d4d;
  top:10px;
}
.timeline-item h2{
  font-size: 18px;
}
.timeline-details{
  margin-top: 15px;
  font-size: 14px;
}
#contact .contact-details {
  margin-bottom: 40px;
  align-items: flex-start;
}

#contact .contact-details form {
  max-width: 600px;
  width: 100%;
  margin-right: 40px;
}

#contact .contact-details form .form-group {
  margin: 20px 0;
}

#contact .contact-details form label,
#contact .contact-details form input,
#contact .contact-details form textarea {
  display: block;
  width: 100%;
}

#contact .contact-details form textarea {
  height: 120px;
  border: 1px solid var(--text-color);
  border-radius: 0;
}

#contact .contact-details form input {
  height: 40px;
  border: 1px solid var(--text-color);
  font-size: 1.2rem;
}

#contact .contact-details .address {
  max-width: 360px;
  width: 100%;
  padding: 30px;
  background-color: var(--bg-gray);
}

#contact .contact-details .address p+h4,
#contact .contact-details .address .d-flex {
  margin-top: 20px;
}

#contact .contact-details .address img {
  width: 100px;
  display: inline-block;
}

.killplastic {
  background-color: var(--bg-gray);
  padding: 40px 0;
}

.killplastic a img {
  max-width: 380px;
  margin: 15px auto;
}

.killplastic a {
  color: var(--primary-color);
}

.killplastic h3,
.killplastic h3 a {
  font-size: 28px;
}

footer {
  padding: 15px;
  background-color: var(--black-color);
}

footer p {
  color: var(--white-color);
}

footer p a {
  color: var(--tertiary-color)
}

@media screen and (max-width: 1024px) {
  section .content.d-flex {
    flex-direction: column;
  }

  section#about .content .side-image {
    width: 300px;
    margin: 0 auto;
  }


}

@media screen and (max-width: 998px) {
  #media .media-list {
    max-width: 767px;
    width: 100%;
    margin: 0 auto;
  }

  #media .media-list .media {
    width: 100%;
  }

}

@media screen and (max-width: 768px) {

  #timeline {
    margin: 30px;
    padding: 0px;
    width: 90%;
  }

  #timeline:before {
    left: 0;
  }

  #timeline .timeline-item .timeline-content {
    width: 90%;
    float: right;
  }

  #timeline .timeline-item .timeline-content:before,
  #timeline .timeline-item .timeline-content.right:before {
    left: 10%;
    margin-left: -6px;
    border-left: 0;
    border-right: 7px solid #ee4d4d;
  }

  #timeline .timeline-item .timeline-icon {
    left: 0;
  }

  #points .points .list {
    flex-direction: column;
  }

  #points .points .list .w-33 {
    width: 100%;
    padding: 0;
  }

  .section-title {
    font-size: 28px;
    margin: 20px 0;
  }

  #contact .contact-details {
    flex-direction: column;
  }

  #contact .contact-details form {
    margin-right: 0;
  }

  #contact .contact-details .address {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .our-product-details {
    display: flex;
    flex-direction: column-reverse;

  }


  .product-image-details {
    cursor: pointer;
    grid-column: 4 / -1;
    grid-row: 1;
    z-index: 1;
    padding-left: 15%;

  }

  .product-image-details-1 {
    cursor: pointer;
    grid-row: 1;
    grid-column: 1 / span 8;
    padding-top: 54%;
  }

  #media .media-list .media a {
    flex-direction: column;
  }

  #media .media-list .media {
    padding: 15px 0;
  }

  #media .media-list .media a p,
  #media .media-list .media a img {
    padding: 0;
    margin: 0;
  }

  #media .media-list .media a {
    padding: 15px;
  }

  .header-content {
    padding: 0;
  }
}
/*--customscroll----*/

html {
  --scrollbarBG: #fff;
  --thumbBG: #2d6cc7;
}
body::-webkit-scrollbar {
  width: 8px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: var(--thumbBG) var(--scrollbarBG);
}
body::-webkit-scrollbar-track {
  background: var(--scrollbarBG);
}
body::-webkit-scrollbar-thumb {
  background-color: var(--thumbBG) ;
}

