@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --text-dark: #cd1414;
  --text-light: #1616c4;
  --extra-light: #0c53df;
  --white: #0ec570;
  --max-width: 1200px;
  --header-font: "Montserrat", sans-serif;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section__containercarzt {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.btntx {
  max-width: fit-content;
  padding: 0.75rem 3.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--header-font);
  white-space: nowrap;
  color: var(--white);
  background-color: var(--text-dark);
  border-radius: 2rem;
  transition: 0.3s;
  cursor: pointer;
}

.btntx:hover {
  color: var(--text-dark);
  background-color: var(--extra-light);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

 
 

.headertz__container {
  display: grid;
  gap: 2rem;
}

.headery__imagey {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.headery__imagey img {
  max-width: 450px;
  margin-inline: auto;
}

img.header-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 350px;
  opacity: 0.05;
  z-index: -1;
}

.headery__imagey__content {
  text-align: center;
}

.headery__imagey__content h4 {
  margin-bottom: 5px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.headerr__contentr {
  text-align: center;
}

.headerr__contentr h1 {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  line-height: 3rem;
}

.headerr__contentr p {
  font-weight: 500;
  color: var(--text-light);
}

.productrs {
  overflow: hidden;
  background-image: radial-gradient(rgba(162, 10, 10, 0.85), rgb(36, 15, 175));
}

.productrs__grid {
  margin-bottom: 4rem;
  display: grid;
  gap: 4rem;
}

.productrs__image img {
  max-width: 350px;
  margin-inline: auto;
  /* transform: rotate(-95deg); */
}

.productrs__content {
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  gap: 2rem;
  flex-direction: column;
}

.productrs__card {
  text-align: center;
}

.productrs__card h4 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--header-font);
  color: var(--white);
}

.productrs__card p {
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--text-light);
}

.productrs__card a {
  font-weight: 500;
  color: var(--text-light);
}

.productrs__card a:hover {
  color: var(--white);
}

.productrs__colors {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.productrs__colors > div {
  width: 30px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: 100%;
  cursor: pointer;
}

.productrs__colors > div:nth-child(1) {
  background-color: #3a3a3a;
}

.productrs__colors > div:nth-child(2) {
  background-color: #efefef;
}

.productrs__colors > div:nth-child(3) {
  background-color: #da372b;
}

.productrs__colors > div:nth-child(4) {
  background-color: #2d6890;
}

.productrs__colors > div:nth-child(5) {
  background-color: #754e27;
}

.productrs__btntx {
  text-align: center;
}

.productrs__btntx .btntx {
  color: var(--text-dark);
  background-color: var(--white);
}

.productrs__btntx .btntx:hover {
  background-color: var(--extra-light);
}

.store__container h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: center;
}

.store__container p {
  margin-bottom: 4rem;
  font-weight: 500;
  color: var(--text-light);
  text-align: center;
}

.swiper {
  width: 100%;
  padding-bottom: 5rem;
}

.swiper-slide {
  max-width: 400px;
}

.store__card h4 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: center;
}

.store__card img {
  max-width: 325px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.store__card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  font-family: var(--header-font);
  color: var(--text-dark);
  text-align: center;
}

.swiper-pagination-bullet-active {
  background-color: var(--text-dark);
}
 
 
@media (width > 768px) {
  
  

   

  .headertz__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .headery__imagey {
    grid-area: 1/2/2/3;
  }

  .headery__imagey img {
    margin-inline-start: unset;
  }

  .headery__imagey__content {
    position: absolute;
    right: 0;
    bottom: 2rem;
  }

  .headerr__contentr {
    text-align: left;
  }

  .headerr__contentr h1 {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }

  .productrs__grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .productrs__card {
    text-align: left;
  }

  .productrs__colors {
    justify-content: flex-start;
  }
}
