*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering:optimizeLegibility;
}

::placeholder {
    color: white;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: white;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: white;
}
html {
	-webkit-tap-highlight-color: transparent;
}

body {
    background-color:black;
    padding: 0;
    margin: 0;
    color:white;
    font-family: "Open Sans", sans-serif;
}

p {
    margin:0;
}

.header {
    backdrop-filter: blur(12px);
    position: sticky;
    top:0;
    left:0;
    width: 100%;
    z-index: 11;
}

.main-logo img {
    height: 80px;
}


.main {
    margin-top: 200px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 2;
}

.button-opportunity {
    display: table;
    margin-left: auto;
    margin-right: auto;
    padding: .5rem 1.25rem .5rem 2rem;
    border: 1px solid #0098a2;
    color: #0098a2;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 9999px;
    position: relative;
}

.button-opportunity:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #0098a2;
    top: 50%;
    transform: translateY(-50%);
    left: 1rem;
}

.domain-sale {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0px;
    font-size: 150px;
}

.subittle {
    text-align: center;
    color: #95979f;
    margin-top: 30px;
}

.subittle.uppercase {
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #3e4346;
	font-size:12px;
}

.subittle strong {
    color:#979999;
    font-weight:700;
    letter-spacing:0;
}

.buttons-radius a {
    background: #262b2e;
    padding: 1.25rem 3rem;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    text-decoration: none;
}


.buttons-radius .active {
    background: #0098a2;
}

.buttons-radius {
    margin: 50px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}




.accordion {
    background-color: #0a0a0a;
    color: #ffffff;
    cursor: pointer;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-top: 10px;
    font-size: 12px;
    border: 1px solid #1f1f1f;
    position:relative;
}

.accordion:after {
    content: "+";
    position: absolute;
    right: 1rem;
}

.accordion.activeacc:after {
    content: "-";
}

.accordion.activeacc {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom:0;
}

.panel {
    display:none;
    padding: 1rem 1.25rem;
    overflow: hidden;
    font-size: 12px;
    background: #0a0a0a;
    border: 1px solid #1f1f1f;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border-top: 0;
    color: #a1a1aa;
}

.main-bottom {
    margin-top: 100px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 600px;
}

.fqa {
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}


.footer {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    text-align: center;
    border-top: 1px solid #262b2e;
    font-size: 12px;
    color: #676767;
    margin-top: 100px;
}

@media screen and (max-width:64em) {
    .domain-sale {
        font-size:100px;
    }
}

@media screen and (max-width:40em) {
    .domain-sale {
        font-size:50px;
    }
}