@import url(https://db.onlinewebfonts.com/c/b78d933f8aa6b9284c1d3efd3db0a9b9?family=Avenir-Black);

* {
    box-sizing: border-box;
}
html, body {
    padding: 0;
    margin : 0;
    height : 100dvh;
    overflow:hidden;
}

.nt-wrapper {

    width: 100dvw;
    height: 100dvh;
    background-color: #000000;

    display: flex;
    justify-content: center;
    align-items: center;
}

.nt-progress-bar-cont {
    width: 45%;
    max-width: 250px;
    height : 7px;
    /* border : 1px solid red; */
    position: relative;
}

.nt-progress-bar {

    width: 100%;
    height : 100%;
    border : 1px solid #333;
    border-radius: 3px;
    overflow: hidden;
    position: absolute;
}

.nt-progress {
    width : 1%;
    height : 100%;
    background-color: white;
    position: absolute;
}

.nt-ad-container {

    width: auto;
    height : auto;
    overflow: hidden;
    background-color: #ffffff;
    position: absolute;
    display: none;
}


.nt-ad-container * {
    width: 100%;
    height : 100%;
    position:absolute;
    pointer-events: none;
}

.border {
    border : 1px solid #000;
    z-index: 999;
    pointer-events: none;
}

.hs{
   /*background-color: #ff000090;*/
   pointer-events: all;
   width:100%;
   left:50%;
   transform: translateX(-50%);
}
.hs-tap{
    /* background-color: #ff000090; */
    clip-path:inset(30% 0% 12% 0%);
}
 .video-container{
    aspect-ratio: 100/56.3;
    top: 3.6%;
    height: 26%;
    width:auto;
    left:50%;
    transform: translateX(-50%);
}
video{
    pointer-events: all !important;
}


.cardfront { 
    background: url('images/cardfront.png') no-repeat center center;
    background-size: contain;
}
.cardpair1 { 
    background: url('images/cardpair1.png') no-repeat center center;
    background-size: contain;
}
.cardpair2 { 
    background: url('images/cardpair2.png') no-repeat center center;
    background-size: contain;
}
.cardpair3 { 
    background: url('images/cardpair3.png') no-repeat center center;
    background-size: contain;
}
.copy { 
    background: url('images/copy.png') no-repeat center center;
    background-size: contain;
}
.cta { 
    background: url('images/cta.png') no-repeat center center;
    background-size: contain;
}
.endbg { 
    background: url('images/endbg.png') no-repeat center center;
    background-size: contain;
}
.introbg { 
    background: url('images/introbg.png') no-repeat center center;
    background-size: contain;
}
.scorebg { 
    background: url('images/scorebg.png') no-repeat center center;
    background-size: contain;
}
.tapimg { 
    background: url('images/tapimg.png') no-repeat center center;
    background-size: contain;
}
.taptxt { 
    background: url('images/taptxt.png') no-repeat center center;
    background-size: contain;
}


.timer{
    font-family: "Avenir-Black";
    font-size: 23px;
    color:#fff;
    margin-top:26px;
    margin-left:15px;
}
.cardscontainer{
    left:50%;
    transform:translateX(-50%);
    bottom: 31%;
    height: auto;
    width:83%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 15px 10px;
    align-items: center;
    perspective: 2000px;
}
.card{
    position:relative;
    aspect-ratio: 149/199;
    width:100%;
    height: auto;
    transform-style: preserve-3d;
    pointer-events: all;
}
.cardfront,.cardback{
    backface-visibility: hidden;
}
.cardback{
    transform: rotateY(180deg);
}