﻿.hero{

    position:relative;

    width:100%;

    min-height:calc(100vh - 100px);

    margin-top:100px;
    overflow: hidden;

    background:
    linear-gradient(rgba(16,18,20,.65),rgba(16,18,20,.80)),
    url('/images/hero-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(16,18,20,.90) 0%,
        rgba(16,18,20,.70) 35%,
        rgba(16,18,20,.45) 70%,
        rgba(16,18,20,.35) 100%
    );
    z-index: 1;
}

.home-page {
    background: #111;
}

.home-page__body {
    position: relative;
    background-color: #111;
    background-image:
        linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.55) 68%, #111 100%),
        linear-gradient(rgba(16, 18, 20, 0.72), rgba(16, 18, 20, 0.9)),
        url('/images/hero-bg.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.home-page .hero {
    background: transparent;
}

.home-page .features {
    margin-top: -65px;
    padding-bottom: 28px;
}

.hero-overlay{

    position: relative;
    z-index: 2;
    padding-top: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins',sans-serif;
    background: #111;
    overflow-x: hidden;
}

.hero-subtitle {
    color: #d4af37;
    letter-spacing: 5px;
    font-size: 15px;
    font-weight: 600;
}

.hero-card h1 {
    font-family:'Poppins',sans-serif;

    font-size:72px;

    font-weight:800;

    line-height:1.1;

    color:white;

}

.hero-line {
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 35px 0;
}

.hero-card p {
    color: #d9d9d9;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-button {
    width: 100%;
    height: 72px;
    background: #D4AF37;
    color: #111;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    transition: .3s;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(212,175,55,.25);
}

    .hero-button:hover {
        background: #e4be49;
        transform: translateY(-4x);
        box-shadow: 0 18px 45px rgba(212,175,55,.35);

    }

    .hero-button .mud-icon-root {
        font-size: 34px;
    }
.shape {
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(0,0,0,.18);
}
.hero-card::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    border-radius: 30px;
    background: #d4af37;
    box-shadow: 0 0 25px #d4af37;
}
.hero-card{

    position:relative;

    width:650px;

    padding:55px;
    z-index: 1;

    background:linear-gradient(
        135deg,
        rgba(35,35,35,.96),
        rgba(20,20,20,.96)
    );

    border-radius:32px;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:0 35px 90px rgba(0,0,0,.35),0 0 0 1px rgba(255,255,255,.02);

}
/* =========================================
   TABLET
========================================= */

@media (max-width: 992px){

.home-page .features {
    margin-top: 24px;
    padding-bottom: 24px;
}

.hero{

    margin-top:80px;

}

.hero-overlay{

    grid-template-columns:1fr;
    padding:40px;

}

.hero-right{

    display:none;

}

.hero-card{

    width:100%;

}

}

/* =========================================
   MOBILE
========================================= */

@media (max-width:768px){

.home-page .features {
    margin-top: 16px;
    padding-bottom: 20px;
}

.hero{

    margin-top:75px;

}

.hero-overlay{

    display:block;
    padding:20px;

}

.hero-card{

    width:100%;
    padding:35px 25px;
    border-radius:22px;

}

.hero-card h1{

    font-size:42px;

}

.hero-card p{

    font-size:16px;

}

.hero-button{

    height:58px;
    font-size:18px;

}

.hero-subtitle{

    font-size:13px;
    letter-spacing:4px;

}

}

@media (max-width:480px){

.hero-card h1{

    font-size:34px;

}

.hero-button{

    padding:0 18px;
    font-size:16px;

}

.hero-button .mud-icon-root{

    font-size:28px;

}

}