@font-face {
    font-family: Raleway-Regular;
    src: url('/fonts/Raleway-Regular.ttf');
}

@font-face {
    font-family: Raleway-Bold;
    src: url('/fonts/Raleway-Bold.ttf');
}

* {
    font-family: 'Raleway-Bold';
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: Raleway-Regular;
    color: #444444;
    overflow-x: hidden;
    background-color: #1A2B45;
}

.main{
    background-image:url(/affiliates/2025/aff-381/whisper-season/images/bg.jpg);
    background-position: 71% center;
    background-size: cover;
    background-repeat: no-repeat;
}

.drLogo img{
    margin-top: 0px;
    max-width: 250px;
}

h1, h2, h3, h4, h5{
    color:#ffffff;
    text-shadow: 2px 2px 0px #000;
    margin-bottom: 0;
    font-weight:bold
}

h2{
    color:#D5B160;
    font-size: 256px;
    line-height: 0.8;
}

h3{
    font-size: 49px;
    line-height: 1;
}

h5{
    font-size: 31px;
    line-height: 1;
}

.codeBtn{
  color: #fff;
  padding: 10px 20px;
  max-width: fit-content;
  font-size: 28px;
  border-width: 2px;
  border-color: rgb(255, 255, 255);
  border-style: solid;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.4);
}

.codeBtn span{
    color:#D5B160;
}

.pulse{
  animation: pulse 2s linear infinite;
  transition: 0.3s;
  width: fit-content;
}

.ctaBtn{
  padding: 10px 70px;
  font-size: 45px;
  border-radius: 12px;
  background-color: rgb(213, 177, 96);
  box-shadow: 0px 8px 0px 0px rgba(145, 122, 72),0px 10px 0px 0px rgba(46, 41, 30);
}
.ctaBtn:hover{
  background-color: rgb(205 167 78);
  color:#fff;
}

.ctaBtn:active{
  position:relative;
  top:3px;
  color:#fff;
  border-radius: 12px;
  background-color: rgb(213, 177, 96);
  box-shadow: 0px 4px 0px 0px rgba(145, 122, 72),0px 6px 0px 0px rgba(46, 41, 30);
}

.infoBox{
    border-width: 2px;
    border-color: rgb(255, 255, 255);
    border-style: solid;
    border-radius: 12px;
    background-color: rgb(0, 0, 0, 0.4);
    max-width: 80%;
    margin-block: 5px;
}

.infoBox p{
   color:#fff;
    font-size:20px;
}

.infoIcon{
    max-width: 60px;
    margin-block: 12px 8px;
}

a {
    outline: 0 !important;
    color: #ffffff;
    text-decoration: none !important;
}


.tnC{
    background-color: #050f19;
}

.card {
    background-color: transparent;
}

.card p, .card ul li {
    font-family: Raleway-Regular;
    color:#cacaca;
    font-size: 12px;
}

.terms {
    text-align: center;
    margin: 15px 0 0;
    position: relative;
    z-index: 999;
}

.goldbtn {
    margin-top: 10px;
    color: #fff;
    background: #0000008f;
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 6px 25px 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
}

    .goldbtn:hover {
        border-color: #ffffff;
        background: #d7b367;
        color: #ffffff;
    }



.iconfooter {
    background: #1A2B45;
    padding: 0px 0;
}    

footer .footer-links ul li a {
    font-size: 12px;
    color: #ffbf27;
}

    footer .footer-links ul li a:hover {
        color: #D5B160;
        text-decoration: underline;
    }

    .footerBox{
        width: fit-content;
        margin: 0 auto;
    }

.footerBox .footer-icons a img {
    max-height: 28px;
    padding-inline: 0px;
    margin: 0 auto 25px;
    /* margin-block: 4px; */
    display: inline;
}

.footerBox .footer-icons .flipper-container {
    max-height: 55px;
    padding-inline: 0px;
    padding-top: 10px;
    margin: 0px auto;
    margin-block: 17px;
    display: contents;
    flex-direction: row;
}

.footerBox .crypto-icons a img {
    max-height: 34px;
    padding-inline: 0px;
margin: 0 auto;
margin-block: 4px;
display: inline;
}

.crypto-icons, .footer-icons {
justify-content: center;
text-align: center;
display: flow;
}

footer .affLogo img {
    max-width:220px;
    display: block;
    margin: 0 auto;
    width: 50%;
}

.affLogo{
    margin: 10px auto;
    width: fit-content;
}

.footyLinks {
    background-color: #060319;
    text-align: center;
    padding: 20px 0 80px;
}

    .footyLinks h4 {
        font-size: 20px;
        color: #f39;
        margin: 15px 0 10px;
    }

    .footyLinks a {
        margin: 2px 5px;
        display: inline-block;
    }

    .footyLinks img {
        height: 60px;
    }


.smoothIn{
    animation: appearIn 1.5s ease-in-out ;
}

@keyframes appearIn{
    0%{
        transform: translateY(-20px) ;
        opacity:0%
    }

    100% {
        transform: translateY(0px);
        opacity: 100%
    }
}

@keyframes colorChange{
    0%{
        background-color: #bda050;
    }

    100% {
        background-color: #cfb776;
    }
}


@keyframes pulse {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    50% {
        -webkit-transform: scale3d(1.05,1.05,1.05);
        transform: scale3d(1.05,1.05,1.05)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) 
@media only screen and (min-width: 1200px) {...}*/


/* Large devices (up to laptops/desktops, Mobile Landscape 992px) */
@media only screen and (max-width: 992px) {

    h1 {
        font-size: 35px;
    }

    h3 {
        font-size: 42px;
        line-height: 1;
    }

    .offerImg{
        max-width: 100%;
    }
    
    h5 {
        font-size: 23px;
        line-height: 1;
    }

    .ctaBtn{
        font-size: 32px;
    }

    .codeBtn {
        font-size: 22px;
    }

    .infoBox p {
        color: #fff;
        font-size: 15px;
    }

}

@media only screen and (max-width: 992px) and (orientation: landscape) {

    
    .main{
        background-image:url(/affiliates/2025/aff-381/whisper-season/images/bg-mob.jpg);
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
    }

    h1{
        margin-top: 15px;
    }

    h2 {
        font-size: 190px;
        line-height: 0.85;
    }

    h3 {
        font-size: 36px;
        line-height: 1;
    }

    .codeBtn{
        font-size: 19px;
        margin: 0 auto;
    }

    .ctaBtn {
        padding: 10px 70px;
        font-size: 25px;
        border-radius: 12px;
        background-color: rgb(213, 177, 96);
        box-shadow: 0px 7px 0px 0px rgba(145, 122, 72), 0px 10px 0px 0px rgba(46, 41, 30);
        transition: 0.6s ease;
    }

    h5 {
        font-size: 18px;
        line-height: 1;
    }

    .header{
        text-align:center;
        max-width: 300px;
        margin: 0 auto;
    }

    .infoBox {
        border:none;
        border-radius: 12px;
        background-color: rgb(0, 0, 0, 0.4);
        max-width: 80%;
        margin-block: 5px;
    }
}

/* Medium devices (up to landscape tablets, 768px) */
@media only screen and (max-width: 768px) and (orientation: portrait) {
    
    .main{
        background-image:url(/affiliates/2025/aff-381/whisper-season/images/bg-tab.jpg);
        background-position: 71% center;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .codeBtn{
        font-size: 24px;
    }

    .ctaBtn{
        font-size: 36px;
    }

    h3 {
    font-size: 43px;
    line-height: 1;
}

    h5 {
        font-size: 23px;
        line-height: 1;
    }

    .infoBox p {
    color: #fff;
    font-size: 14px;
}

}


/* Extra small devices (up to phones, 600px) */
@media only screen and (max-width: 600px) {

    .main{
        background-image:url(/affiliates/2025/aff-381/whisper-season/images/bg-mob.jpg);
        background-position: center top;
        background-size: contain;
        background-repeat: no-repeat;
    }

    h1{
        margin-top: 10px;
    }

    h2 {
        font-size: 190px;
        line-height: 0.85;
    }

    h3 {
        font-size: 36px;
        line-height: 1;
    }

        .offerImg {
        max-width: 100%;
    }

    .codeBtn{
        font-size: 19px;
        margin: 0 auto;
    }

    .ctaBtn {
        padding: 10px 70px;
        font-size: 25px;
        border-radius: 12px;
        background-color: rgb(213, 177, 96);
        box-shadow: 0px 7px 0px 0px rgba(145, 122, 72), 0px 10px 0px 0px rgba(46, 41, 30);
        transition: 0.6s ease;
    }

    h5 {
        font-size: 18px;
        line-height: 1;
    }

    .header{
        text-align:center;
        max-width: 300px;
        margin: 0 auto;
    }

    .infoBox {
        border:none;
        border-radius: 12px;
        background-color: rgb(0, 0, 0, 0.4);
        max-width: 80%;
        margin-block: 5px;
    }
}
