*, *:before, *:after {
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
}
body {
  margin: 0 auto;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: normal;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-weight: 400;
}
div, section, footer, main {
  position: relative;
}
main {
  z-index: 2;
}
input, textarea, select {
  outline: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 1em;
}
button, .button {
  padding: 15px 20px;
  border: none;
  font-weight: 700;
  min-width: 200px;
  outline: none;
  font-family: 'Montserrat', sans-serif;
  transition: .3s;
  text-decoration: none;
  position: relative;
  text-align: center;
  box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
}
button:hover, .button:hover {
  cursor: pointer;
  background-color: #05969b;
}
a {
  transition: .2s;
}
button:active, .button:active, a:active {
  transform: scale(0.9);
}
button:active, .button:active {
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-name: pulse;
  animation-duration: .5s;
}
body, section, header, footer, main {
  min-width: 1200px;
}
main {
  z-index: 1;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
a:hover, .active {
  color: #00aeb3;
}
#menu-btn {
  display: none;
}
.mobile-menu {
  display: none;
}
form .row {
  display: flex;
  column-gap: 20px;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}
form .half {
  width: 50%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form .third {
  width: 33.33%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form .half, form .fullwidth, form .third {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 10px;
  align-items: center;
  transition: .3s;
  background-color: #fff;
  border-radius: 3px;
  overflow: hidden;
}
form .half:focus-within,
form .fullwidth:focus-within, 
form .third:focus-within {
  border: 1px #ffe699 solid;
}
form .half:focus-within input,
form .fullwidth:focus-within input,
form .third:focus-within input,
form .half:focus-within textarea,
form .fullwidth:focus-within textarea,
form .third:focus-within textarea {
  color: #000;
}
form .half:focus-within input::placeholder,
form .fullwidth:focus-within input::placeholder,
form .third:focus-within input::placeholder,
form .half:focus-within textarea::placeholder,
form .fullwidth:focus-within textarea::placeholder,
form .third:focus-within textarea::placeholder {
  color: #333;
}
form .fullwidth {
  width: 100%;
  border: 1px #eee solid;
  padding: 8px 10px;
}
form input, form textarea, form select {
  border: none;
  width: 82%;
  padding: 10px;
  background: transparent;
}
form .half img, form .fullwidth img, form .third img {
  height: 26px;
}
form textarea {
  width: 90%;
  min-height: 100px;
  align-self: flex-start;
}
form .special img {
  align-self: flex-start;
}
.thin-txt {
  font-weight: 300;
}
.smaller-txt {
  font-size: .6em;
}
.bigger-txt {
  font-size: 1.5em;
}
.m-right {
  margin-right: 5%;
}
.m-left {
  margin-left: 5%;
}
.m-bottom {
  margin-bottom: 5%;
}
.m-top {
  margin-top: 5%;
}
.hidden {
  display: none;
}
.center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
.img-bg {
  background-position: center;
  background-size: cover;
}
.img-bg-top {
  background-position: center top;
  background-size: cover;
}
.img-bg-bottom {
  background-position: center bottom;
  background-size: cover;
}
.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  filter: opacity(.4);
}
p, h1, h2, h3, h4, h5, h6 {
  position: relative;
}
p {
  line-height: 150%;
}
.modal {
  display: none;
  padding: 30px;
  min-width: 1000px;
}
.modal h3 {
  font-size: 1.8em;
}
.flex-align {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.center-align {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.bold-txt {
  font-weight: 900;
}
.thin-txt {
  font-weight: 300;
}
.f-button {
  min-width: 0;
}
.rounded {
  border-radius: 50%;
}
.drop-shadow-white {
  filter: drop-shadow(0px 0px 2px rgb(255, 255, 255, 0.5));
}
.bg-blur {
  backdrop-filter: blur(5px);
}

/* Colors */
.gray-bg {
  background-color: #f2f2f2;
}
.gray-txt {
  color: #f2f2f2;
}
.gray-bg-gradient {
  background-image: linear-gradient(to bottom right, #f2f2f2, #dedede);
}
.dark-gray-txt {
  color: #636363;
}
.white-bg {
  background-color: #fff;
}
.white-txt {
  color: #fff;
}
.black-bg {
  background-color: #000;
}
.black-txt {
  color: #000;
}
.blue-bg {
  background-color: #00aeb3;
}
.blue-txt {
  color: #00aeb3;
}
.gold-bg {
  background-color: #ffe699;
}
.gold-txt {
  color: #ffe699;
}
/* Animations */
.scale-down {
  transform: scale(.7);
  filter: opacity(0);
  transition: transform 1.5s, filter .7s;
}
.scale-up {
  transform: scale(1) !important;
  filter: opacity(1) !important;
}
.invisible {
  opacity: 0;
  transition: opacity 1s;
}
.visible {
  opacity: 1;
}
.hide-left {
  transition: left 1.5s;
  left: -100vw;
}
.reveal-left {
  left: 0 !important;
}
.hide-right {
  transition: right 1.5s;
  right: -110vw;
}
.reveal-right {
  right: 0 !important;
}
.slide-left {
  left: 0 !important;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  }
  70% {
    -webkit-box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0.5);
  }
  70% {
    box-shadow: 0 0 0 50px rgba(90, 153, 212, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(90, 153, 212, 0);
  }
}

/* Header */
header {
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  padding: 10px 10%;
  width: 100%;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0;
  margin: 0;
}
header nav .logo {
  height: 84px;
  position: relative;
  border-radius: 50%;
}
header nav menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}
header nav menu a {
  font-size: 1.1em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
}

/* Footer */
footer {
  padding: 20px 10%;
}
footer .legal {
  font-size: .95em;
}

/* Home Page */
.home .hero, .page .hero {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home .hero h1, .page .hero h1 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 170px;
  margin-bottom: 0;
  font-size: 3.2em;
  line-height: 100%;
  z-index: 3;
}
.home .hero h1 span, .page .hero h1 span {
  position: relative;
  border-radius: 2px;
}
.home .hero h1 span.main-txt {
  padding: 10px 30px;
  border: 1px solid transparent;
  border-image: linear-gradient(to bottom right, #ffe699, #d4b452); /* Define the gradient */
  border-image-slice: 1;
  margin-top: 10px;
}
.home .hero .overlay, .page .hero .overlay {
  filter: opacity(.25);
  z-index: 1;
}
.home .hero .image, .page .hero .image {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  transform: scale(1.2);
  filter: opacity(0);
}
.zoomOut {
  animation-name: zoomOut;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
    filter: opacity(0);
  }
  30% {
    filter: opacity(1);
  }
  100% {
    transform: scale(1);
    filter: opacity(1);
  }
}
.home .sec1 {
  padding: 5%;
}
.home .sec1 h2, .about .sec1 h2 {
  font-size: 2.2em;
}
.home .sec1 p, .brands .sec1 p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
}
.home .sec1 .details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
}
.home .sec1 .details > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1px solid transparent;
  border-image: linear-gradient(to right, #ffe699, #d4b452); /* Define the gradient */
  border-image-slice: 1;
  min-width: 200px;
  border-radius: 2px;
  transition: all .3s;
}
.home .sec1 .details > div:hover {
  border: 1px solid transparent;
  border-image: linear-gradient(to right, #00aeb3, #028d92) !important; /* Define the gradient */
  border-image-slice: 1  !important;
}
.home .sec1 .details > div .bold-txt {
  font-size: 3em;
}
.home .sec1 .details > div span:last-of-type {
  font-size: 1.1em;
}
.home .sec1 .brands {
  display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	justify-content: center;
	align-items: center;
	width: 100%;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.home .sec1 .brands .brand {
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 5px #ffe699 solid;
  padding: 20px;
  color: #fff;
  font-weight: bold;
  transition: transform .3s, border .5s;
  border-radius: 3px;
  overflow: hidden;
}
.home .sec1 .brands .brand:active {
  transform: scale(.95);
}
.home .sec1 .brands .brand .text {
  font-size: 1.4em;
  line-height: 110%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: transform .7s, color .7s;
  transform: scale(1);
  font-weight: 900;
}
.home .sec1 .brands .brand:hover {
  cursor: pointer;

}
.home .sec1 .brands .brand:hover .text {
  transform: scale(1.4);
  color: #00aeb3;
}
.home .sec1 .brands .brand:hover .image {
  transform: rotate(-10deg) scale(1.1);
}
.home .sec1 .brands .brand .image {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  z-index: 0;
  transition: transform .5s;
}
.home .sec1 .brands .brand .overlay {
  z-index: 1;
  filter: opacity(.5);
}

/* Animated Cards On Home Page */
.card {
	height: 300px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 36px;
	perspective: 2500px;
	cursor: pointer;
}
.card .wrapper .cover-image {
	width: 100%;
	height: 300px;
	object-fit: cover;
  border: 1px #ffe699 solid;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 4px 10px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  transition: filter .3s;
}
.card .wrapper {
	transition: all 0.5s;
	position: absolute;
	width: 100%;
	z-index: -1;
	background: #000;
  border: 1px #ffe699 solid;
}

.card:hover .wrapper {
	transform: perspective(900px) translateY(-5%) rotateX(25deg) translateZ(0);
	box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
	-webkit-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
	-moz-box-shadow: 2px 35px 32px -8px rgba(0, 0, 0, 0.75);
}
.card .wrapper::before,
.card .wrapper::after {
	content: "";
	opacity: 0;
	width: 100%;
	height: 270px;
	transition: all 0.5s;
	position: absolute;
	left: 0;
}
.card .wrapper::before {
	top: 0;
	height: 100%;
	background-image: linear-gradient(to top,transparent 46%,rgba(12, 13, 19, 0.5) 68%,rgba(12, 13, 19) 97%);
}
.card .wrapper::after {
	bottom: 0;
	opacity: 1;
	background-image: linear-gradient(to bottom,transparent 46%,rgba(12, 13, 19, 0.5) 68%,rgba(12, 13, 19) 97%);
}
.card:hover .wrapper::before,
.wrapper::after {
	opacity: 1;
}
.card:hover .wrapper::after {
	height: 120px;
}
.card .title {
	width: 100%;
	transition: transform 0.5s;
	position: absolute;
  bottom: 40px;
  font-size: 1.2em;
  line-height: 110%;
  display: flex;
  flex-direction: column;
  font-weight: 900;
  transform: scale(1);
}
.card:hover .title {
	transform: translate3d(0%, -30px, 50px) scale(1.2);
}
.card:hover .cover-image {
  opacity: .3;
  filter: blur(2px);
}
.card .character {
	width: 50%;
	opacity: 0;
	transition: all 0.5s;
	position: absolute;
	z-index: -1;
}
.card:hover .character {
	opacity: 1;
	transform: translate3d(0%, -50%, 100%);
  margin-top: -70px;
}

.page .hero {
  height: 50vh;
}
.page .hero h1 {
  margin-top: 70px;
  text-transform: uppercase;
  font-size: 3em;
}
.page .hero h1 > span {
  padding: 10px 30px;
  border: 1px solid transparent;
  position: relative;
  border-image: linear-gradient(to bottom right, #ffe699, #d4b452); /* Define the gradient */
  border-image-slice: 1;
}
.page .sec1 {
  padding: 5% 10%;
  min-height: 300px;
}

/* Group Page */
.group .sec1 {
  padding: 3% 10%;
}

/* About Us Page */
.about .sec1 .divide {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 5%;
  margin-top: 60px;
}
.about .sec1 .left {
  width: 45%;
  height: 650px;
}
.about .sec1 .right {
  width: 50%;
}
.about .sec1 .right p {
  font-size: 1.1em;
}
.about .sec1 h2 {
  margin-top: 0;
}
.about .sec1 .points {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  margin-top: 40px;
  display: flex;
  row-gap: 10px;
  flex-direction: column;
}
.about .sec1 .points .point {
  padding: 10px 15px;
}
.about .sec1 .points .point .top {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-size: 1.3em;
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}
.about .sec1 .points .point .bottom {
  display: none;
  margin-top: 20px;
}
.minus {
  display: none;
}

/* Our Brands Page */
.brands .sec1 .brands-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
  gap:50px;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.brands .sec1 .brand-grids > div {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Our Family */
.family .sec1 {
  columns: 4;
  column-gap: 10px;
  width: 100%;
  margin: auto;
}
.family .sec1 .box {
  width: 100%;
  break-inside: avoid;
  margin-bottom: 9px;
  border-radius: 4px;
  transition: all .3s;
}
.family .sec1 .box:hover {
  box-shadow: 2px 2px 6px #333;
}
.family .sec1 .box:hover img {
  filter: opacity(.8);
  cursor: pointer;
}
.family .sec1 .box img {
  max-width: 100%;
  border-radius: 4px;
  transition: all .5s;
  margin-bottom: -4px;
}

/* Contact Page */
.contact .sec1 .contact-wrap {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  width: 1100px;
}
.contact .sec1 .contact-wrap .left {
  padding: 30px;
  width: 35%;
  margin-right: -15%;
  z-index: 1;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between

}
.contact .sec1 .contact-wrap .right {
  padding: 50px 40px 50px 20%;
  width: 80%;
  z-index: 0;
  text-align: left;
}
.contact .sec1 .contact-wrap .right h3 {
  font-size: 1.8em;
  position: relative;
  margin-top: 0;
}
.contact .sec1 .left .top {
  text-align: left;
  order: 1;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  font-size: 1.1em;
  font-weight: 500;
}
.contact .sec1 .left .top img {
  width: 32px;
}
.contact .sec1 .left .top p {
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.contact .sec1 .left .bottom {
  display: flex;
  column-gap: 15px;
  order: 2;
}
.contact .sec1 .left .bottom img {
  height: 24px;
}