@import url('https://fonts.googleapis.com/css2?family=Inter');

:root {
    --bar-bgcolor: #111;
    --bgcolor: rgb(252, 91, 27);
    --orange: rgb(252, 91, 27);
    --color: #f1f1f1;
    --white: #f1f1f1;
    --black: #111;
    --alert-text: #721c24;
    --alert-bg: #f8d7da;
    --alert-border: #f5c6cb;
    /*--btncolor: #fd3e1a;*/
    --btncolor: hsla(10, 98%, 55%, 1);
    --btnhover: hsla(10, 98%, 55%, 0.9);

}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
font-family: Inter, sans-serif;
font-size: 1em;
}
body {
    background-color: var(--white);
    color: var(--black);
}
.bar {
    display: flex;
    justify-content: flex-end;
    left:0;
    align-items: center;
    padding-right: 10%;
    position: fixed;
    width: 100%;
    height: 50px;
    background: var(--bar-bgcolor);
    z-index: 999;
}
.cta {
    width: 180px;
    height: 30px;
    position: relative;
    border: none;
    background-color: var(--btncolor);
    color: var(--color);
    font-weight: 900;
    text-transform: uppercase;
    transition: all .3s ease;
    cursor: pointer;
    padding: 5px 10px;
    outline: none;
}
.section .cta {
    transform: translate(50%);
    margin-top: 20px;
}
.bar .cta:hover {
    background-color: var(--btnhover);
    transform: scale(1.1);
}
.logo {
    position: relative;
    padding-top: 60px;
    text-align: center;
}
.headline,
.section {
    padding: 0 10% 30px 10%;
}
.headline {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}
.headline h1,
.section h2 {
    font-size: 2em;
    font-style: italic;
}
.section {
    width: 100vw;
}
.even {
    background-color: var(--orange);
}
.odd {
    background-color: var(--black);
    color: var(--orange);
}
.section,
.section p {
    padding-top: 50px;
}
.headline h1 span {
    color: var(--orange);
}
.section h1 span,
.section h2 span {
    color: var(--white);
}
.section p {
    font-size: 1.4em;
    font-weight: bold;
}
.section p span {
    color: var(--white);
}
.section h2 {
    text-align: center;
}
.big {
    font-size: 1.5em;
}
.footer {
    background-color: var(--black);
    padding: 5px;
    text-align: center;
    color: var(--orange);
}
#form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
#form label {
    display: block;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: bold;
    transition: all .3s;
}
#form p {
    display: block;
    width: 100%;
}
#form h2 {
    text-align: center;
    margin-bottom: 20px;
}
#form input[type=radio] {
    display: none;
}
/* #form input[type=radio]:checked+label {
    background-color: var(--orange);
    color: #f1f1f1;
    box-shadow: 1px 1px 3px #111;
} */
.checked {
    background-color: var(--orange);
    color: #f1f1f1;
    box-shadow: 1px 1px 3px #111;
}
#form input[type=text] {
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 15px;
    font-size: 15px;
}
label small {
    font-size: .7em;
    color: rgb(130, 130, 130);
}
.wrapper {
    display: flex;
    flex-direction: column;
}
.wrapper .method {
    display: flex;
    justify-content: space-between;
}
.wrapper .method label {
    text-align: center;
    min-width: 200px;
}
.wrapper .method label img {
    height: 30px;
}
.w80 {
    width: 80vw;
    text-align: center;
}
.w80 img {
    width: 100%;
}
.paynow {
    display: none;
    margin-top: 20px;
    padding: 10px 0;
    background-color: var(--btncolor);
    border: 1px solid var(--black);
    border-radius: 5px;
    font-size: 2em;
    cursor: pointer;
    color: var(--white);
}
.paynow:hover {
    background-color: var(--btnhover);
}
.errormsg {
    display: none;
    color: var(--alert-text);
    font-weight: bold;
    background-color: var(--alert-bg);
    border: 1px solid var(--alert-border);
    padding: 0.5em 1em;
    text-transform: uppercase;
    font-size: 0.8em;
}

@media only screen and (max-device-width: 480px), only screen and (orientation: portrait) {
    .section.buy h2 {
        font-size: 1em;
    }
    .wrapper .method {
        flex-direction: column;
    }
    .wrapper .method label {
        min-width: 5px;
        font-size: 0.7em;
    }
    .wrapper .method label img {
        height: 50px;
    }
}