 @font-face {
  font-family: "Megante";
  src: url("../fonts/Megante.ttf") format("truetype");
  font-style: normal;
}

:root {
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --hover: white;
}

html {
  font-family: 'Megante';
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  margin: 0;
  font-family: "Megante", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #f8f9fa;
  text-align: left;
  background-color: #343a40;
}

.header {
  height: 100vh;
  /* max-height: 900px; */
  background: url(../imgs/bg-mobile.jpg) no-repeat;
  background-size: cover;
  min-height: 750px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #1890ff;
  text-decoration: none;
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: color 0.3s;
  -webkit-text-decoration-skip: objects;
}

.header .overlay {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header .overlay-social {
  
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: auto;
}

h1, h2 {
  margin-top: 0px;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;

  /* background: -webkit-linear-gradient(left, #dd8615, #6f4800); */
  background: #DD8615;
  background: linear-gradient(to right, #DD8615 0%, #6F4800 60%, #6F4800 40%, #DD8615 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

h1{
  font-size: 4rem;
}

h2{
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  font-weight: bold;
}

h6{
  color: #f6c40d;
  font-size: 0.8rem;
  margin: 0.5em;
}

.subtitle{
  margin-top: -10px;
  margin-left: 100px;
}

.layout {
  width: 100%;
  height: 100%;
}

.main { grid-area: main; }
.footer { 
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 50px;
}

.brand-img {
  display: block;
  opacity: 1;
  visibility: visible;
  object-fit: scale-down;
  width: 100%;
  /* height: 80vh; */
  min-height: 400px;
  /* min-width: 400px; */
}

.social-media {
  width: 100%;
  display: grid;
  /* grid-template-rows: 1fr; */
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
  margin: auto;
}

.icon-circle {
  background: linear-gradient(to right, #6F4800 0%, #f6c40d 100%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #f6c40d;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  color: #13283d;

}

.icon {
  width: 25px;
  height: 25px;
  font-size: 25px;
  color: #f6c40d;
  margin: auto;
}

.text-center { 
  text-align: center;
}

/* 13283d */

.zoom {
  transition: transform .2s; /* Animation */
  margin: 0 auto;
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

@media (min-width: 1200px) {
  .header {
    height: 100vh;
    background: url(../imgs/bg-pc.jpg) no-repeat center;
    background-size: cover;
    min-height: 750px;
}

  h1{
    font-size: 8rem;
  }

  h2{
    font-size: 1rem;
  }

  h6{
    font-size: 1.2rem;
  }

  .icon {
    font-size: 35px;
    height: 35px;
  }

  .icon-circle {
    font-size: 25px;
    width: 35px;
    height: 35px;
  }

  .subtitle{
    margin-top: -20px;
    margin-left: 100px;
    font-size: 18px;
  }

  .social-media {
    width: 70%;
  }

}

/* 
@media (min-width: 576px) {
  max-width: 540px;
}
@media (min-width: 768px) {
  max-width: 720px;
}
@media (min-width: 992px) {
  max-width: 960px;
}
@media (min-width: 1400px) {
  max-width: 1320px;
} 
*/