html, body {
    color: #FFF;
    font-family: "Geologica", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    font-variation-settings:
    "slnt" 0,
    "CRSV" 0,
    "SHRP" 0;
    font-size: 16px;
    background-color: #000;
    height: 100%;
    scroll-behavior: smooth;
    min-height: 100%;
}

body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-track {
    background: black;
}

body::-webkit-scrollbar-thumb {
    background-color: red;
}

html {
    background-image: url(img/mainbg.svg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

a {
    color: #FFF;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #db0000;
}

h2 {
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

section p {
    text-transform: uppercase;
}

.wrapper, section {
    max-width: 1400px;
    padding: 0 30px;
    margin: auto;
}

section {
    margin: 60px auto !important;
}

header {
    padding: 20px 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 100%);
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
    z-index: 3;
}

header .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .wrapper nav {
    display: flex;
    align-items: center;
    text-transform: uppercase;
}

header .wrapper nav a {
    padding: 10px 15px;
}

header .wrapper nav img {
    width: 30px;
}

header .wrapper nav a.mlogo {
    display: flex;
    align-items: center;
    padding-left: 0;
}

header .wrapper nav a.mlogo span {
    display: none;
}

header .wrapper .cont {
    display: flex;
    align-items: center;
}

header .wrapper .cont i {
    font-size: 18px;
    margin-right: 10px;
}

header .wrapper .cont a.tel {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.main {
    height: 100vh;
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.main img {
    width: 40vw;
    min-width: 400px;
    max-width: 1400px;
    z-index: 2;
}

#vbg {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    z-index: 0;
    filter: blur(5px);
    opacity: 0.7;
}

.vbgf {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    height: 200px;
    z-index: 1;
    background: linear-gradient(360deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.blocks {
    margin-bottom: 60px;
}
    
.blocks .block .preview {
    aspect-ratio: 1.5/1;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.blocks .block .preview::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f144";
    font-size: 64px;
    position: relative;
    z-index: 1;
    transition: 0.3s;
}

.blocks .block .preview::after {
    content: "";
    background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s;
}

.blocks .block {
    transition: 0.3s;
    cursor: pointer;
}

.blocks .block:hover .desc {
    transition: 0.3s;
}

.blocks .block:hover .desc {
    color: #db0000;
}

.blocks .block:hover .preview::after {
    opacity: 1;
}

.blocks .block:hover .preview::before {
    transform: scale(1.2);
    color: #db0000;
}

.blocks .block .desc {
    padding: 20px 30px;
    text-transform: uppercase;
}

.owl-dot {
    background: #FFF !important;
    width: 15px;
    height: 15px;
    border-radius: 10px;
    margin: 0 5px;
}

.owl-dot.active {
    background: #db0000 !important;
}

.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.button {
    background-color: #FFF;
    padding: 20px 40px;
    border-radius: 100px;
    color: #000;
    text-transform: uppercase;
    text-align: center;
    margin: auto;
    width: fit-content;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    display: block;
}

.button:hover {
    color: #FFF;
    background-color: #db0000;
    transform: scale(1.1);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    min-height: 100%;
    width: 100%;
    margin-bottom: 60px;
}

.gallery .g {
    position: relative;
    overflow: hidden;
}

.gallery .img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: 0.3s;
    cursor: pointer;
}

.g1 { grid-area: 1 / 1 / 5 / 3; }
.g2 { grid-area: 1 / 3 / 3 / 5; }
.g3 { grid-area: 3 / 3 / 7 / 5; }
.g4 { grid-area: 5 / 1 / 7 / 2; }
.g4a { grid-area: 5 / 2 / 7 / 2; }
.g5 { grid-area: 1 / 5 / 4 / 6; }
.g6 { grid-area: 1 / 6 / 4 / 7; }
.g7 { grid-area: 4 / 5 / 7 / 7; }

.gallery .img:hover {
    transform: scale(1.1);
}

#mmenu {
    display: none;
}

#mmenu a {
    text-align: center;
    color: #000;
    font-size: 24px;
    text-transform: uppercase;
    padding: 10px 0;
    line-height: 1.2;
}

#mmenu a:hover {
    color: #db0000;
}

#mmenu .cont .tel {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    white-space: nowrap;
}

#mmenu .cont .tel i {
    margin-right: 15px;
}

#mmenu .cont {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #CCC;
}

#mmenu .cont a {
    font-size: 18px;
}

#mmenu .cont {
    text-align: center;
}

#mmenu .cont i {
    font-size: 22px;
    margin: 0 10px;
}



#form {
    display: none;
    max-width: 600px;
}

input {
    border-radius: 5px;
    border: 1px solid #C6CCD9;
    font-family: "Geologica", sans-serif;
    font-size: 16px;
    width: 100%;
    padding: 15px 25px;
    box-sizing: border-box;
    margin-bottom: 15px;
}

#form .button {
    background-color: #db0000;
    border: 0;
    padding: 17px 40px;
    margin-top: 20px;
    margin-bottom: 0;
    color: #FFF;
}

.output_message {
    text-align: center;
    display: block;
}

.success {
    color: var(--main-color);
    font-weight: 500;
}

#form h2 {
    margin-bottom: 30px !important;
    color: #000;
}

.tbg {
    padding: 60px 0;
    background-color: #000;
}

video.audio {
    width: 100%;
    aspect-ratio: auto;
    margin-top: 60px;
}

.qr {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.qr .elem {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr img {
    width: 180px;
    margin-bottom: 20px;
}

.qr a {
    display: flex;
    align-items: center;
}

.qr a i, .cont.btm a i {
    font-size: 18px;
    margin-right: 10px;
}

.cont.btm {
    display: flex;
    gap: 60px;
    margin-top: 40px;
    padding-bottom: 180px;
}

.cont.btm a {
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.output_message {
    margin-top: 25px;
}

  /* Custom Animations */
  .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
  }
  
  .delay-1 { transition-delay: 0.2s; }
  .delay-2 { transition-delay: 0.4s; }
  .delay-3 { transition-delay: 0.6s; }
  
  .fade-right {
    transform: translateX(-30px);
  }
  
  .fade-left {
    transform: translateX(30px);
  }
  
  .fade-up {
    transform: translateY(30px);
  }
  
  .fade-down {
    transform: translateY(-30px);
  }
  