@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Jost:wght@400;600&family=Rufina:wght@400;700&display=swap');

body {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  /*background-image: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('../images/ma-logo.png');
  background-repeat: repeat;*/

}

nav {
  background-color: white;
  box-shadow: none;
}

nav.header ul li a {
  color: #212121;
  pointer-events: none;
}

nav.header ul.left li a i {
  font-size: 14px;
}

nav.sticky {
  background-color: #212121;
  position: sticky;
  top: 0;
}

a.brand-logo {
  /*color: #f44336;*/
}

nav.sticky ul li a {
  text-transform: uppercase;
  letter-spacing: 1px;
}

section {
  padding: 100px 0;
}

.container-fluid {
  padding: 0 5%;
}

.rufina {
  font-family: 'Rufina', serif;
  font-weight: 700;
}

.hero-image {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/main-banner.jpg");
/*  min-height: calc(100vh - 100px);*/
  min-height: 700px;
  max-width: 100vw;
  aspect-ratio: 2/1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  aspect-ratio: 2.5/1;
}

.hero-text {
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-container-banner {
  width: 200px;
  height: 200px;
  background-color: #9e9e9e;
}

/*.logo-container-banner > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}*/

.flexbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flexbox > div {
  width: 50%;
}

.categories {
  position: relative;
}

.categories > h1 {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.8);
  left: 50%;
  transform: translateX(-50%);
  padding: 20px 50px;
}

#categories {
  min-height: 100vh;
  background-color: white;
  display: flex;
  justify-content: center;
/*  align-items: stretch;*/
  align-items: center;
  padding: 0;
  text-align: center;
}

#categories > div {
  width: 33.33%;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  background-size: cover;
  background-position: center;
}

#categories > div:nth-child(1) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/suiting.jpg");
}

#categories > div:nth-child(2) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/shirting.jpg");
  background-position: center;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

#categories > div:nth-child(3) {
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/combo-set.jpg");
  background-size: contain;
  background-repeat: no-repeat;
/*  background-position: bottom;*/
}

.btn, .btn-large {
  text-transform: none;
  box-shadow: none !important;
}

input[type='text'].custom-input {
  border: 1px solid #e0e0e0 !important;
  outline: none !important;
  box-shadow: none !important;
  padding-left: 20px;
  padding-right: 20px;
  width: calc(100% - 40px);
  font-size: 16px;
}

input[type='text'].custom-input::placeholder {
  opacity: 1;
}

textarea#textarea1 {
  border: 1px solid #e0e0e0 !important;
  outline: none !important;
  box-shadow: none !important;
  padding-left: 20px;
  padding-right: 20px;
  width: calc(100% - 40px);
  font-size: 16px;
}

textarea#textarea1::placeholder {
  opacity: 1;
}

.custom-video-container {
   width: 33.33%;
   aspect-ratio: 1 / 2;
   position: relative;
   background-color: pink;
   overflow: hidden;
   outline: 1px solid white;
}

.custom-video-container > video {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}

.custom-image-container {
  width: 66.66%;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-wrap: wrap;
}

.custom-image-container > div {
  width: 50%;
  outline: 1px solid white;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.custom-image-container > div:nth-child(1) {
  background-image: url('../images/gallery1.jpg');
  
}

.custom-image-container > div:nth-child(2) {
  background-image: url('../images/gallery2.jpg');
}

.custom-image-container > div:nth-child(3) {
  background-image: url('../images/gallery3.jpg');
}

.custom-image-container > div:nth-child(4) {
  background-image: url('../images/gallery4.jpg');
}

@media only screen and (max-width: 900px) {
  #categories {
    background-color: white;
    display: flex;
    padding: 0;
    text-align: center;
    flex-direction: column;
  }

  #categories > div {
    width: 100%;
    height: 40vh !important;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  #categories > div:nth-child(2) {
    border-left: none;
    border-right: none;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
  }

  #categories > div > h1 {
    font-size: 2.5rem;
  }

  #categories > div > p {
    font-size: 1rem;
  }

  #categories {
    flex-direction: column !important;
  }

  .custom-video-container {
    width: 50%;
  }

  .custom-image-container {
    width: 50%;
    aspect-ratio: 1 / 2;
  }

  .custom-image-container > div {
    width: 100%;
  }

  .hero-image {
    aspect-ratio: 1/2;
  }

  /*#categories {
    margin-top: 150px;
  }*/

  section {
    padding: 50px 0;
  }

  .logo-container-banner {
    height: 100px;
    width: 100px;
  }

  .hero-text {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }

  .hero-text > h2 {
    font-size: 2.8rem !important;
  }
}