@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400;1,600&family=Oxygen:wght@300;400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}

.max-width {
  max-width: 1300px;
  padding: 0 80px;
  margin: auto;
}

body {
  overflow-x: hidden;
  font-family: "Oxygen", sans-serif;
}

body.no-scroll {
  overflow: hidden !important;
  height: 100vh;
}
/*navbar styling */
.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  transition: all 0.3s ease;
  background: #101010;
}

.navbar .max-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar .logo a {
  color: white;
  font-size: 20px;
  font-weight: 600;
}
.navbar .logo a span {
  color: #a11629;
}
.navbar .logo a .naam {
  font-size: 11px;
  color: #a11629;
}
.navbar.sticky .logo a span {
  color: #a11629;
  transition: all 0.3s ease;
}
.navbar.sticky .logo a .naam {
  color: #a11629;
  transition: all 0.3s ease;
}
.navbar .menu li {
  list-style: none;
  display: inline-block;
}
.navbar .menu li a {
  display: block;
  color: white;
  font-size: 18px;
  font-weight: 400;
  margin-left: 25px;
  transition: color 0.3s ease;
}
.navbar .menu li a:hover {
  color: #a11629;
}
.navbar.sticky .menu li a:hover {
  color: white;
  text-shadow: 0.5px 1px 1px #a11629;
}

/* Menu btn styling*/
.menu-btn {
  color: white;
  font-size: 23px;
  cursor: pointer;
  display: none;
}

/*Grid container*/
.container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  position: relative;
  margin: auto;
}
.container > div {
  font-size: 16;
}
.container .container-img {
  text-align: center;
}
.grid-two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/*All Main Styling */
.main {
  background-color: #fff;
}
.main .title {
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  padding-top: 10%;
  padding-bottom: 10%;
}
.main .text {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
  padding: 15px;
  text-align: left;
}
.main .text p {
  font-family: "Open Sans", sans-serif;
}

.main .top-image {
  width: 100%;
  height: auto;
  color: white;
  font-family: "Oxygen", sans;
  max-height: 400px;
  min-height: 200px;
  background-size: cover;
  background-attachment: fixed;
}
.main .top-image-large {
  width: 100%;
  height: auto;
  color: white;
  font-family: "Oxygen", sans;
  max-height: 1000px;
  min-height: 800px;
  background-size: cover;
  background-attachment: fixed;
}
.main a {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #101010;
}

.main a:hover {
  color: #a11629;
}
/*All Home Styling */
.home {
  padding: 50px 0;
}
.home .mySlides img {
  object-fit: cover;
  width: 100% !important;
}
.home .mySlides .text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
/* Slideshow container */
.home .slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}
.home .slideshow-container img {
  height: 500px;
  object-fit: cover;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.home .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.home .prev:hover,
.home.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Home Content styling*/
.home-content {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.home-content .container {
  justify-content: center;
  align-items: center;
}
.home-content .card {
  width: 150px;
  background: #fff;
  color: #727272;
  border-color: #101010;
  border-style: solid;
  border-radius: 6px;
  padding: 20px 25px;
  cursor: pointer;
  margin-left: 3.333333333vw;
  margin-right: 3.333333333vw;
}
.home-content .card .box {
  transition: all 0.3s ease;
}
.home-content .card i {
  font-size: 50px;
  color: #a11629;
}
.home-content .card .text {
  font-size: 25px;
  margin: 10px 0 7px 0;
  text-align: center;
}
.home-content .card:hover {
  background: #101010;
  color: #fff;
}
.home-content .card:hover .box {
  transform: scale(1.05);
}
.home-content .card:hover .text {
  color: #fff;
  transition: color 0.3s ease;
}
.home-content .card:hover i {
  color: #a11629;
  transition: color 0.3s ease;
}
/* Home Slide Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

/*Art and Label section styling*/
.art-content,
.label-content {
  padding: 100px;
}
.art-content .container img,
.label-content .container img {
  width: 100%;
  height: auto;
}
.container .container-img {
  cursor: pointer;
  overflow: hidden;
  margin: 5%;
}
.art-content .container > div:hover,
.label-content .container > div:hover {
  transform: scale(1.05);
  transition: all 0.3s ease;
}

/*About and Work section styling*/
.work,
.about {
  padding: 20px;
  margin: 20px;
}

.left-content img {
  max-width: 600px;
  object-fit: cover;
  margin-right: 10%;
}
.right-content img {
  max-width: 600px;
  object-fit: cover;
  margin-left: 10%;
}

/*footer section styling*/
footer {
  padding: 20px 23px;
  background: #101010;
  position: inherit;
  left: 0px;
  width: 100%;
  bottom: 0px;
  flex-shrink: 0;
}

footer,
footer a {
  font-size: 16px;
  color: #fff;
}
footer li {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #fff;
}

footer ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  list-style: none;
  margin: 10px 0 0 0;
  margin-bottom: 0px;
}
footer span a {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  color: #a11629;
}
footer span a:hover {
  text-decoration: underline;
}
footer .container {
  padding: 0 0 0 80px;
}

/*responsive media query start*/

@media (max-width: 1360px) {
  .left-content img,
  .right-content img {
    max-width: 500px;
  }
  .header .max-width,
  .main .max-width {
    margin-left: 0px;
  }
}

@media (max-width: 1460px) {
  .navbar .max-width {
    margin-right: 0px;
  }
}
@media (max-width: 1050px) {
  .max-width {
    padding: 0 50px;
  }
  .left-content img,
  .right-content img {
    max-width: 500px;
    margin: 5% 5% 0;
  }
}
@media (max-width: 920px) {
  .max-width {
    padding: 0 50px;
  }
  .menu-btn {
    display: block;
    z-index: 999;
  }
  .menu-btn i.active::before {
    content: "\f00d";
  }
  .navbar .menu {
    position: fixed;
    height: 100vh;
    width: 100%;
    left: -100%;
    top: 0;
    background: rgba(145, 143, 143, 0.89);
    text-align: center;
    padding-top: 80px;
    transition: all 0.3s ease;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu.active {
    left: 0;
  }
  .navbar .menu li {
    display: block;
  }
  .navbar .menu li a {
    display: inline-block;
    margin: 20px 0;
    font-size: 25px;
    font-weight: 500;
  }
  .navbar .menu li a:hover {
    color: white;
  }
  .container {
    grid-template-columns: auto;
    position: relative;
    margin: 0 0 0 0;
  }
  .grid-two-column {
    grid-template-columns: auto;
  }
   .art-content, .label-content {
    padding: 0;
}
  .left-content img,
  .right-content img {
    margin: 0 0 0 15px ;
  }
}
@media (max-width: 600px) {
  .home .mySlides img {
    max-height: 300px;
    max-width: 100%;
    object-fit: cover;
  }
  .home {
    padding: 20px 0 0 0;
  }
 
  .left-content img,
  .right-content img {
    max-width: 100%;
    height: auto;
  }

  .container {
    grid-template-columns: auto;
    position: relative;
    margin: auto;
  }
  .grid-two-column {
    grid-template-columns: auto;
  }
  .home-content .card {
    margin-bottom: 15px;
    width: 500px;
  }
  .grid-two-column {
    grid-template-columns: auto;
  }
  .max-width {
    padding: 0 23px;
  }

  footer {
    width: 100%;
  }
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
