@font-face {
    font-family: "Montserrat";
    src: url("./font/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Montserrat";
    src: url("./font/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

body {
    background-color: #0D010C;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
    font-weight: 700;
}

.wrapper {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-image: url(../imgs/bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.overlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url(../imgs/over-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.overlay-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.top {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    margin-top: 2em;
    margin-right: 3em;
}

.content {
    position: relative;
    z-index: 10;
    padding: 2em;
    margin-left: 3em;
}

h1 {
    font-weight: bold;
    font-size: 2.5em;
    color: #fff;
}

.labels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    margin: 2em 0;
}

.btn-main {
    background: #DFB14E;
    text-decoration: none;
    display: block;
    text-align: center;
    padding: 1rem 0;
    color: #111928;
    margin: 2rem auto 0;
    transition: .3s;
    border-radius: 36px;
    background: linear-gradient(180deg, #DFB14E -12.84%, rgba(254, 230, 168, 0.93) 48.87%, #DFB14E 113.8%);
    font-weight: bold;
    width: 100%;
}

.btn-main:hover {
    background: linear-gradient(180deg, rgba(254, 230, 168, 0.93) -12.84%, #DFB14E 48.87%, rgba(254, 230, 168, 0.93) 113.8%);
}

.btn-white {
    padding: .7em 3em;
    text-decoration: none;
    border-radius: 10px;
    color: #000;
    font-weight: bold;
    background: #fff;
    box-shadow: 0px 4.167px 8.333px 0px rgba(252, 213, 107, 0.25);
    display: block;
    transition: .3s;
	font-size: 1.1em;
}

.btn-white:hover {
    transform: scale(1.05);
}

.text-color {
    background: linear-gradient(180deg, #AD8940 0%, #F5EEC3 56.5%, #937538 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.promo-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5em;
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(247, 242, 214, .2);
}

.promo-top img {
    max-width: 220px;
    height: auto;
    margin-left: -1em;
}

.promo-top p {
    font-size: 1.8em;
    margin-top: 0.5em;
    margin-bottom: 0;
    line-height: 1.2em;
}

.promo-top .small {
    font-size: .6em;
}

.promo-bottom p {
    font-size: 1.4em;
    margin-left: 1em;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

.promo-bottom .small {
    font-size: .6em;
}

.promo-wrap {
    position: relative;
    border-radius: 22px;
    border: 1px solid #F7F1C1;
    background: #3D3D3E;
    box-shadow: 6px 10px 18px 0px rgba(0, 0, 0, 0.32) inset, 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 1em 2em;
    margin: 2em 0;
    cursor: pointer;
}

.copy-tooltip-wrap {
    position: absolute;
    top: -13px;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: .3s;
}

.copy-tooltip {
    border-radius: 3px;
    border: 1px solid #F7F1C1;
    background: #3D3D3E;
    width: 200px;
    text-align: center;
    margin: auto;
    padding: 5px;
    color: #a5a5a5;
    font-size: .7em;
    text-transform: uppercase;
    line-height: 1em;
}

.promo-wrap:hover .copy-tooltip-wrap {
    opacity: 1;
}

.show-tooltip .copy-tooltip-wrap {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    body {
        font-size: 14px;
    }

    .content {
        margin: auto;
        margin-top: 55px;
    }

    .top {
        margin-top: 2em;
        margin-right: 1em;
    }

    .overlay-bg {
        background-image: url(../imgs/over-bg-mob.png);
    }
    
    h1 {
        font-size: 2em;
    }

    .promo-top {
        flex-direction: column;
    }
	
    .logo img {
        height: 50px;
    }

    .labels {
        flex-wrap: wrap;
    }

    .labels img {
        width: 20%;
    }

    .promo-bottom p {
        text-align: center;
        margin-left: 0;
    }

    .promo-top img {
        max-width: 180px;
        height: auto;
        margin-bottom: -1em;
    }

    .mob-hide {
        display: none;
    }

}