@import url("https://fonts.googleapis.com/css2?family=Crete+Round&family=Poppins:wght@100;300;400;500&family=Roboto:wght@100;300;400;500;700&display=swap");

:root {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  /* font-family: 'Roboto', sans-serif; */
  --dark-color: rgb(33, 36, 39);
  --light-color: rgb(246, 247, 248);
  --light-grey: rgb(221, 222, 223);
  --light-grey-font: rgb(230, 230, 231);
}

* {
  color: var(--dark-color);
}

h2 {
  font-weight: 300;
}

h5 {
  font-weight: 700;
}

strong {
  color: rgba(33, 36, 39, 0.083);
  font-size: 4vw;
  font-weight: bold;
}

.navbar-text {
  color: var(--dark-color);
}

.nav-link {
  color: var(--dark-color);
}

.navbar-toggler {
  border: none;
}

.container-fluid {
  padding: 0px;
}

.polka-dot {
  background-color: #f7f7fc;
  opacity: 1;
  background-image: radial-gradient(#e2e2e4 2px, #f7f7fc 2px);
  background-size: 40px 40px;
}

.polka {
  background-image: radial-gradient(rgba(235, 235, 235, 0.7) 10%, transparent 18%),
    radial-gradient(rgba(235, 235, 235, 0.7) 10%, transparent 18%);
  background-position: 0px 0px, 12px 12px;
  background-size: 24px 24px;
  background-color: rgb(255, 255, 255);
  background-attachment: fixed;
}

.bttn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-color);
  border: 3px solid var(--dark-color);
  cursor: pointer;
  position: relative;
  background-color: transparent;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  font-family: inherit;
}

.bttn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: white;
  background-color: var(--dark-color);
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}

.bttn:hover {
  color: white;
}

.bttn:hover::before {
  transform: translateX(0);
}

.image-with-border {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.image-with-border::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: -70px;
  bottom: -70px;
  border: 30px solid var(--dark-color);
  opacity: 5%;
  z-index: -100;
}

.brdr-bottom-left {
  position: relative;
}

.brdr-bottom-left::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  bottom: -3rem;
  left: 0px;
  background-color: var(--dark-color);
  z-index: 1000;
}

.brdr-bottom-left-white {
    position: relative;
  }
  
  .brdr-bottom-left-white::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    bottom: -3rem;
    left: 0px;
    background-color: white;
    z-index: 1000;
  }

.swiper {
  width: 100%;
  height: 65vh;
  cursor: grab;
}

.swiper:active {
  cursor: grabbing;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--light-grey-font);
}

.swiper-pagination-bullet-active {
  background-color: var(--dark-color);
}

.right-triangle {
  position: relative;
  overflow-y: hidden;
}

.right-triangle::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: 0;
  width: 300px;
  height: 300px;
  border-top: 300px solid transparent;
  border-bottom: 300px solid transparent;
  border-right: 300px solid #f0f0f082;
}

.left-triangle {
    position: relative;
    overflow-y: hidden;
  }
  
  .left-triangle::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 300px;
    height: 300px;
    border-top: 300px solid transparent;
    border-bottom: 300px solid transparent;
    border-left: 300px solid hsla(0, 0%, 94%, 0.01);
  }

.parallax {
  background: url("img/artgroup.jpeg");
  background-attachment: fixed;
  background-size: cover;
}

.parallax img {
  opacity: 0;
}

@media (max-width: 1023px) {
  .parallax img {
    opacity: 1;
  }

  button {
    margin-bottom: 40px;
  }

  .image-with-border {
    width: 100%;
    height: auto;
    overflow: hidden;
  }

  .swiperabout {
    object-fit: contain;
  }
}

.brdr-bottom-and-left {
    position: relative;

  }
  
  .brdr-bottom-and-left::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    bottom: -5px;
    left: -5px;
    border-left: var(--dark-color) solid 5px;
    border-bottom: var(--dark-color) solid 5px;

  }


  .swiperabout {
    width: 500px;
    height: 100%;
    overflow: hidden;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
  }

  .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }