.section_title {
    font-weight: bold;
    font-size: 26px;
    color: #0C2140;
}
.highlight-text {
    font-size: 40px;
    color: #ad8d41;
}
.margin_b {
    margin-bottom: 24px;
}
.line_h {
    line-height: 1.4;
}
@media (max-width: 768px) {
    .section_title {
        font-size: 20px;
    }
    .highlight-text {
        font-size: 24px;
    }
    .margin_b {
        margin-bottom: 16px;
    }
}
.app-container {
    width: 100%;
    background-color: white;
    color: black;
    max-width: 1020px;
    min-height: 550px;
    margin: 64px auto;
    overflow: hidden;
    padding: 0 16px;
}

/* Hero Section */
.disclaimer small{
    font-size: 10px;
    margin: 5px 0;
    padding: 0 20px;
    display: flex;
}
/* Statistics Section */
.stats-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    position: relative;
}
.stat-content {
    position: absolute;
    top: 24%;
    left: 0;
    right: 0;
    bottom: 24%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-title {
    font-weight: bold;
    font-size: 16px;
    color: #0C2140;
    margin-bottom: 4px;
    line-height: 1.1;
}

.stat-value {
    font-weight: bold;
    font-size: 32px;
    color: #ad8d41;
    line-height: 1.1;
}

.stat-text {
    font-size: 18px;
    color: #0C2140;
}

@media (max-width: 768px) {
    .disclaimer small {
        padding:0;
    }
    .stats-section {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .stat-title {
        font-size: 14px;
    }

    .stat-value {
        font-size: 24px;
    }

    .stat-text {
        font-size: 16px;
    }
}

/* Section Dividers */
.section-divider {
    text-align: center;
    margin: 50px 0;
}

.triangle-down {
    font-size: 42px;
    color: gray;
}

@media (max-width: 768px) {
    .section-divider {
        margin: 30px 0;
    }

    .triangle-down {
        font-size: 36px;
    }
}
/* Video Section */
.video-section {
    background-color: #0C2140;
    border-radius: 12px;
    padding: 40px 20px;
}

.video-title {
    color: white;
    font-weight: bold;
    font-size: 40px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.star-icon svg{
    fill: #cfae67;
    width: 24px;
    height: 24px;
}

.video-subtitle {
    font-size: 24px;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 50%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .video-section {
        padding: 20px 10px;
    }

    .video-title {
        font-size: 28px;
    }
    .video-subtitle {
        font-size: 20px;
    }
}
/* Tax Section */
.taxmeritcontent {
    display: flex;
}
.taxmeritbox h3 {
    background: #0a203f;
    color: #fff;
    border-radius: 10px;
    padding: 4px 16px;
    width: 30%;
    text-align: center;
    font-size: 20px;
    min-width: 133px;
    margin-bottom: -24px;
}
/* Comparison Section */
.label-new,.label-old {
    font-weight: bold;
    font-size: 26px;
    padding-bottom: 16px;
}
.label-new {
    color: #ad8d41;
}

.label-old {
    color: #0C2140;  
    text-align: center;
}

.product-new {
    height: 45px;
    width: auto;
    max-width: initial;
}

.product-old {
    position: absolute;
    top: 4px;
    right: 40%;
    z-index: -1;
    max-width: inherit;
}
.new_box {
    z-index: 1;
}

.old_box {
    position: relative;
    z-index: 0;
}

.new_boxdetail {
    display: flex;
    align-items: center;
    gap: 16px;

}

.comparison-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 0;
}

.comparison-items .dlbox {
    width: 100%;
}
.comparison-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 50px 10px 10px 50px;
    position: relative;
    font-weight: bold;
    font-size: 28px;
    width: 330px;
    margin-top: 8px;
    color: white;
}

.comparison-item.new {
    background-color: #d32f2f;
}

.comparison-item.old {
    background-color: #0C2140;
}

.comparison-icon {
    position: absolute;
    left: 3px;
    top: 2px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    height: calc(100% - 4px);
    aspect-ratio: 1 / 1;
}

.comparison-item.new .comparison-icon {
    color: #d32f2f;
}

.comparison-item.old .comparison-icon {
    color: #0C2140;
}

.comparison-icon .icon svg {
    width: 70%;
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: -10px;
}
.comparison-item.old .comparison-icon svg{
    fill: #0C2140;
}

.comparison-item.new .comparison-icon svg {
    fill: #d32f2f;
}
.comparison-icon .icon {
    font-size: 40px;
    line-height: 1;
}

.comparison-icon .icon-label {
    font-size: 12px;
}

.comparison-value {
    margin-left: 30px;
}

@media (max-width: 768px) {
    .tax-section .margin_b {
        margin-bottom: 32px;
    }
    .taxmeritcontent {
        flex-direction: column;
        gap: 32px;
    }
    .taxmeritbox h3 {
        font-size: 18px;
        margin-bottom: -8px;
    }
    .mining-title {
        margin-bottom: 8px;
    }
    .new_boxdetail {
        flex-direction: column-reverse;
    }

    .label-new,
    .label-old {
        font-size: 20px;
    }
    .product-old {
        height: 50%;
        top: 37%;
        right: -20%;
        width: auto;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
    }

    .comparison-item {
        font-size: 16px;
        width: 100%;
    }

    .old_box {
        display: flex;
        flex-direction: column;
    }

    .comparison-icon {
        font-size: 10px;
    }

    .comparison-items {
        gap: 32px;
    }

    .comparison-items>div {
        width: 48%;
        justify-content: space-between;
    }

    .comparison-icon .icon {
        font-size: 16px;
    }

    .comparison-value {
        margin-left: 48px;
    }

}
    @media (max-width: 380px) {
.comparison-value {
    margin-left: 43px;
} 
}
/* Proof of Reserve Section */
.por-header {
    font-weight: bold;
    font-size: 26px;
    color: white;
    padding-top: 12px;
    text-align: center;
    background: rgb(12, 33, 64);
}
.por-title {
    margin-bottom: 16px;
}
.por-description {
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
}

.por-amount {
    font-weight: bold;
    font-size: 40px;
    color: #ad8d41;
}

@media (max-width: 768px) {
    .por-header {
        font-size: 20px;
    }

    .por-description {
        font-size: 16px;
    }

    .por-amount {
        font-size: 28px;
    }
}
/* Datacenter Operation Section */
.datacenter-benefits {
    margin-bottom: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 24px;
    margin-bottom: 15px;
    gap: 5px;
}

.benefit-icon {
    background-color: #0C2140;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    fill: #fff;
    padding: 3px;
    flex-shrink: 0
}

.datacenter-images {
    display: flex;
    gap: 40px;
}

.datacenter-img {
    position: relative;
}
.datacenter-img p {
    position: absolute;
    top: 0;
    padding: 4px 8px;
    background: #ffffff73;
    font-size: 14px;
}

@media (max-width: 768px) {
    .benefit-item {
        font-size: 16px;
        align-items: flex-start;
    }
    .benefit-icon {
        width: 25px;
        height: 25px;
    }
    .datacenter-images {
        flex-direction: column;
        gap: 30px;
    }

    .datacenter-item p {
        font-size: 14px;
    }
}

/* Offer Stats */
.offer-stats {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: nowrap;
}

.offer-stat {
    flex: 1;
    background-color: #0C2140;
    color: white;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    box-shadow: 3px 3px 15px -5px black;
}

.stat-highlight {
    font-size: 25px;
    color: #CFAE67;
}

@media (max-width: 768px) {
    .offer-stats {
        flex-direction: column;
        gap: 15px;
    }

    .offer-stat {
        font-size: 14px;
    }

    .stat-highlight {
        font-size: 20px;
    }
}
/* Customer Voices Section */
.voice-item {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
    align-items: center;
}

.voice-image {
    flex: 0 0 200px;
}
.voice-content {
    background-color: rgba(207, 174, 103, 0.4);
    border-radius: 12px;
    padding: 20px;
}

.voice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: bold;
}

.voice-title-text {
    font-size: 20px;
}

.voice-author {
    font-size: 16px;
}

.voice-text {
    line-height: 1.6;
    font-size: 16px;
}

/* Company Info Section */
.company-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}
.company-title {
    font-size: 32px;
}
.company-logo {
    width: 25%;
}

.company-logo img {
    width: 120px;
}

.table-label,
.table-value {
    padding: 4px 12px;
}

.company-table {
    width: 75%;
    border: 1px solid;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 4px 0;
}

.table-label {
    font-weight: bold;
    width: 240px;
    color: #0C2140;
}

.table-value {
    color: #333;
}

.company-offices {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.office-item {
    width: calc(50% - 24px);
    position: relative;
}

.office-item img {
    aspect-ratio: 475 / 357;
    object-fit: cover;
    object-position: bottom;
}

.office-label {
    position: absolute;
    top: 0;
    background: #ffffffad;
    padding: 4px 16px;
}

@media (max-width: 768px) {
    .company-table {
        width: 100%;
    }
    .company-title {
        font-size: 24px;
    }
    .table-label {
        width: 150px;
    }
    .office-item {
        width: 100%;
    }
    .office-label {
        font-size: 13px;
        padding:4px 8px;
    }
}

/* Mining Boost Main Section */
.small-note {
    font-size: 16px;
}
/* Patents Main Section */
.patentcontent {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.patentbox {
    width: 45%;
    background: #f2f2f1;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.patentbox .patenthead h3 {
    font-size: 20px;
    line-height: 1.25;
}

.patentbox:first-child {
    margin: 0 6%;
}

.patentbox figure {
    text-align: center;
    margin: auto;
}

.patents-main-section img {
    width: 80%;
    aspect-ratio: 8 / 5;
    margin: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .patentbox:first-child {
        margin: 0;
    }
    .patentbox {
        width: 100%;
        margin: 0;
    }

    .patentbox .patenthead h3 {
        font-size: 18px;
    }
}

/* Web3Maker Specs Section */
.web3maker-specs-section .speccontent {
    background: url(/images/specbg.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px 32px;
    aspect-ratio: 16/7;
    gap: 32px;
}

.specboxhalf {
    display: flex;
    justify-content: space-between;
}

.specbox {
    width: 30%;
    box-shadow: 3px 3px 15px -5px black;
    background: #fff;
    padding: 16px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 24px;
}

.specbox svg {
    width: 30%;
}

.specboxhalf:nth-of-type(1) .specbox:nth-of-type(1) svg, .specboxhalf:nth-of-type(1) .specbox:nth-of-type(2) svg{
    fill: #f5c520;
}

.specboxhalf:nth-of-type(2) .specbox:nth-of-type(1) svg, .specboxhalf:nth-of-type(2) .specbox:nth-of-type(2) svg {
    fill: #136ab2;
}

.specbox div {
    margin: auto !important;
}

.specbox p {
    text-align: center;
    line-height: 1.25;
}

@media (max-width: 920px) {
    .specbox {
        font-size: 20px;
    }
}

@media (max-width: 810px) {
    .specbox {
        font-size: 16px;
        width: 40%;
    }
}

@media (max-width: 680px) {
    .specbox {
        padding: 8px;
    }
}

@media (max-width: 620px) {
    .web3maker-specs-section .speccontent {
        padding: 8px 16px;
    }
}

@media (max-width: 510px) {

    .specbox {
        font-size: 14px;
    }
}

@media (max-width: 460px) {
    .web3maker-specs-section .speccontent {
        aspect-ratio: 16 / 8;
    }
}

@media (max-width: 410px) {
    .web3maker-specs-section .speccontent {
        aspect-ratio: 16/10;
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    .company-details {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .company-offices {
        flex-direction: column;
        gap: 30px;
    }
    .voice-item {
        flex-direction: column;
        gap: 0px;
        margin-bottom: 56px;
    }

    .voice-image {
        flex: none;
        width: 150px;
        margin-right: auto;
    }

    .voice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .voice-title-text {
        font-size: 16px;
    }

    .voice-author {
        font-size: 14px;
    }

    .voice-text {
        font-size: 14px;
    }
}

/* Application Detail Section */
.application-method {
    display: flex;
    flex-direction: row;
    border: 4px solid #0C2140;
    border-radius: 12px;
    margin-bottom: 30px;
}

.apprication_box {
    display: flex;
    width: 100%;
}

.apprication_box>div {
    width: 33%;
    padding: 0;
}

.apprication_box .support-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-method {
    border-color: #CFAE67;
}

.how_buy {
    color: #CFAE67;
}
.method-header {
    flex-direction: column;
    background-color: #0C2140;
    color: white;
    font-weight: bold;
    font-size: 24px;
    padding: 12px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.shop-header {
    background-color: #CFAE67;
}

.method-content {
    padding: 20px
}

.shop-method .method-content {
    width: 100%;
}

.method-description {
    font-size: 20px;
    text-align: center;
}

.method-images {
    padding: 4px;
}

.step-section {
    margin-bottom: 30px;
}

.step-section h3 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.login-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.login-options img {
    height: 40px;
    width: auto;
}

.payment-section {
    background-color: #efefef;
    border-radius: 8px;
    padding: 20px;
}

.payment-type {
    margin-bottom: 20px;
}

.payment-type span {
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
}

.credit-cards,
.crypto-symbols {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.crypto-symbols img{
    width: 501px;
}
.credit-cards img {
    height: 30px;
    width: auto;
}


@media (max-width: 768px) {
    .application-method {
        flex-wrap: wrap;
    }

    .apprication_box {
        flex-wrap: wrap;
    }

    .apprication_box>div {
        width: 50%;
    }
    .apprication_box .support-content {
        width: 100%;
        margin: 8px;
    }
    .method-header {
        font-size: 20px;
        max-width: initial;
        flex: auto;
    }
    .method-description {
        font-size: 16px;
    }
    .step-section h3 {
        font-size: 18px;
    }
    .payment-type span {
        font-size: 16px;
    }
}

/* FAQ Detail Section */
.faq-detail-section dl {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background-color: #efefef;
}

.faq-question,
.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
}

.faq-question {
    border-bottom: 1px solid #ddd;
}

.faq-icon {
    background-color: #0C2140;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    flex-shrink: 0;
}

.faq-answer .faq-icon {
    background-color: #CFAE67;
}

.faq-answer .faq-text {
    margin-top: 0px;
}

.faq-text {
    font-size: 20px;
    margin-top: 10px;
}

.faq-question .faq-text {
    font-weight: bold;
}

.qa__body {
    padding:16px 20px;
}
.disclaimersec {
    margin-top: 64px;
}

.disclaimersec .row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.disclaimersec .row li {
    display: flex;
    gap: 4px;
}
@media (max-width: 768px) {
    .faq-question,
    .faq-answer {
        padding: 15px;
    }

    .faq-icon {
        height: 30px;
        width: 30px;
        font-size: 16px;
    }

    .faq-text {
        font-size: 16px;
        margin-top: 0;
    }
    .app-container {
        padding: 0 10px;
        margin-top: 0;
        min-height: 375px;
    }
    .disclaimersec .row .col-12 {
        font-size: 14px;
    }
}
#footer {
    margin-top: 120px;
}
#footer .footer_nav ul {
    display:flex;
    background-color: #CFAE67;
    justify-content:center;
}

#footer .footer_nav ul li{
	padding:8px 16px;
	font-size:14px;
	font-weight: 500;
}
#footer .footer_link {
	padding:6px 16px;
}
#footer .footer_link ul {
	display:flex;
	justify-content:center;
}
#footer .footer_link ul li a {
	display: flex;
    flex-direction: column;
    align-items: center;
	justify-content:center;
    font-size: .75rem;
    height: 56px;
    max-width: 210px;
    min-width: 73px;
    position: relative;
    text-transform: none;
	color:rgba(0,0,0,.6)!important;
	letter-spacing: .0892857143em;
}
#footer .footer_link ul li a img {
    width: 23px;
}
#footer .footer_link ul li a .jcrmaimg {
    width: 30px;
}
#footer .footer_link ul li a .sozeichosakaiumg {
    width: 80px;    
}
#footer .footer_link ul li a svg{
    width: 23px;
    height: 23px;
}
.blue--text {
    fill: #2196f3;
}
 @media screen and (max-width: 800px) {
    #footer .footer_nav ul {
        flex-direction: column;
        align-items: center;
        padding: 8px;
    }
} 
#copyright span {
    max-width: 1700px;
}

#copyright {
    height: 60px;
    line-height: 60px;
    position: relative;
    font-size: 14px;
    text-align: center;
    background-color: #cfae67;
}
 @media (max-width: 769px) {
 #copyright span {
    padding: 0 32px;
}
}
.error-number {
    text-align: center;
    font-size: 180px;
    margin-top: 40px;
    color: #ad8d41;
    line-height: 1;
}

.notfoundtxt {
    text-align: center;
    font-size: 80px;
    font-weight: 800;
    letter-spacing: -8px;
}
.error-description {
    text-align: center;
}
.error-actions {
    text-align: center;
    margin-top: 80px;
}
.error-actions a {
    border: 1px solid rgb(207, 174, 103);
    box-shadow: rgb(238, 238, 238) 10px 5px 5px;
    border-radius: 8px;
    font-size: 20px;
    padding: 20px 80px;
    transition: 0.3s;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    justify-content: center;
}
.error-actions a svg{
    width: 25px;
}
.error-actions a:hover {
    background: #ad8d41;
}
.error-actions a:hover svg {
    color: #fff;
}
@media (max-width: 769px) {
.error-number {
    font-size: 80px;
}
.notfoundtxt {
    font-size: 40px;
    letter-spacing: -4px;
}
.error-description {
    padding: 0 16px;
}
.error-actions a {
    padding: 12px 32px;
    
}
}
.btn:hover {
    transform: translateY(-2px);
}
.youtube img {
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    position: absolute;
}
/* CTA Section */
.cta-section {
    margin: 60px 0 90px 0;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
}

.cta-button-row {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}

.cta-button-row.cta-split {
    gap: 10px;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white !important;
    border-radius: 24px;
    transition: all 0.3s ease;
    gap: 16px;
}
.cta-button svg {
    height: 35%;
    fill: #fff;
}
.cta-button:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-zoom {
    width: 620px;
    height: 130px;
    font-size: 36px;
    background-image: linear-gradient(rgba(15, 58, 226, 1), rgba(0, 17, 96, 1));
    margin: 0 auto;
}
.cta-inquiry,.cta-order {
    width: 305px;
    height: 84px;
    font-size: 24px;
}
.cta-inquiry {
    background-image: linear-gradient(rgba(255, 211, 104, 1), rgba(128, 92, 39, 1));
}

.cta-order {
    background-image: linear-gradient(rgba(215, 3, 3, 1), rgba(120, 0, 0, 1));
}


/* Mobile responsive styles for CTA */
@media (max-width: 768px) {
    .cta-section {
        margin: 60px 0;
    }

    .cta-zoom {
        width: 300px;
        height: 50px;
        font-size: 24px;
    }

    .cta-button {
        gap: 8px;
        border-radius: 8px;
    }

    .cta-inquiry,
    .cta-order {
        width: 145px;
        height: 40px;
        font-size: 16px;
    }

    .cta-button-row.cta-split {
        gap: 5px;
    }
}

.popuptop {
    display: flex;
    gap: 16px;
    padding:16px;
    align-items: center;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, .2), 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12);
}
.popuptop svg {
    height: 25px;
    width: 25px;
    fill: #cfae67;
}
.popuptop p {
    font-size: 20px;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 4px;
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
    max-width: 500px;
    width: 90%;
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        
        .popuptop svg {
            width: 25px;
            width: 25px;
        }transform: translate(-50%, -50%);

    }
}

.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #fff;
    margin-left: auto;
    background: #cfae67;
    border-radius: 4px;
    font-weight: bold;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.languageselect {
    padding: 16px;
}
.languageselect li {
    display: flex;
    align-items: center;
    padding: 16px;
}
.languageselect li + li{
    border-top: 1px solid rgba(0, 0, 0, .12);
}
.languageselect li a {
    background: #cfae67;
    border-radius: 4px;
    padding: 8px 32px;
    width: 90px;
    text-align: center;
    font-weight: 600;
    transition: 0.3s;
}
.languageselect li a:hover {
    background: #bfa05f;
}
.languageselect li p{
    margin: 0 auto;
}