
@import "../fonts/Inter Web/inter.css";
body, html {
    overflow: hidden;
    width: 100%;
    padding: 0;
    margin: 0;
}

html {
    min-height: -webkit-fill-available; /*safari fix*/
    height: -webkit-fill-available;
}

body {
    font-family: Inter, serif;
    position: relative;
    height: 100%;
    min-height: -webkit-fill-available;
    overflow: hidden;
    font-weight: 500;
    text-size-adjust: 100%;
    /*min-height: 100vh;*/
    /* mobile viewport bug fix */
    color: #FFFFE8;
    padding: 0;
    margin: 0;
    /*background: url('../images/bg/background-img.jpg') no-repeat center center;*/

    background-size: cover;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                     supported by Chrome, Edge, Opera and Firefox */
}

a:hover {
    color: #B75CFF;
}
a:hover, a:visited, a:link, a:active
{
    text-decoration: none;
}
a:focus {
    color: white;
}

.m_hide_inline {
    display: inline;
}


.bg {
    width: 100%;
    height: 100vh;
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    background-size: cover;
    z-index: 1;

}

.circle-btn {
    border-radius: 50%;
    display: inline-block;
}

.white-link {
    color: white;
    transition: all .2s ease-in-out;
    padding: 4px;
}

.white-link:hover {
    color: #fff !important;
    transform: scale(1.25);
}



::-moz-selection {
    background: #ff5c82;
    color: #fff;
}

::selection {
    background: #ff5c82;
    color: #fff;
}

#main_logo {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 29px;
    display: flex;
    margin-left: 79px;
    letter-spacing: 0.25em;
    flex-direction: column;
    color: #FFFFE8;
    margin-top: 27px;
}
#logo_image > img{
    width: 100px;
    margin-bottom: 15px;
}

header{
    display: flex;
    height: 153px;
    justify-content: space-between;
    width: 100%;
    max-width: 1500px;
    padding: 20px;
    margin: 0 auto;
    /*background-color: rgba(75, 255, 53, 0.76);*/
}

#header_right {
    /*background-color: #B75CFF;*/
    display: flex;
    min-width: 80px;

    padding-right: 30px;
}

.dark{
    filter: brightness(25%);
}
#darkmode{

    fill:#FFFFE8;
}

#darkmode:hover{
    fill: #ffffe8ad;
    cursor: pointer;
}

.sq_btn{
    width: 110px;
    height: 50px;
    background: #FFFFE8;
    border-radius: 5px;
    cursor: pointer;
    color: black;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
    font-size: 16px;
}
.sq_btn:hover,.sq_btn:focus{
    color: black;
    background: #ffffe8ad;
}


#info_center{
    text-align: center;

    padding: 0 20px 42px 20px;
}
#info_center > h1{
    font-weight: 600;
    font-size: 48px;
    line-height: 58px;
    margin-top: 0;
    margin-bottom: 5px;
}

#info_center > h4{
    font-weight: 400;
    font-size: 24px;
    line-height: 29px;
   margin-top: 20px;
}
#div_center {
    position: relative;
    display: flex;
    justify-content: center;

    flex: 1 1 auto;
    width: 100%;
    flex-direction: column;
    /*background-color: rgba(21, 61, 115, 0.86);*/
    /*width: 50rem;*/
}




#bg_smoke_fallback {

    background: url('../images/bg/background-img.jpg') no-repeat center center;

    background-size: cover;
    position: absolute;
    z-index: -2;
    max-width: 73rem;
    top: 0;
    /*height: 100%;*/
    margin: 0 auto;
    opacity: 1;
    bottom: 0;
    right: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
}



.bg_smoke {
    object-fit: cover;
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
    left: 0;
    max-width: 73rem;
    top: 0;
    margin: 0 auto;

    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    -webkit-transition: 1s -webkit-filter linear;
    -moz-transition: 1s -moz-filter linear;
    -moz-transition: 1s filter linear;
    -ms-transition: 1s -ms-filter linear;
    -o-transition: 1s -o-filter linear;
    transition: 1s filter linear, 1s -webkit-filter linear;
}


#footer{
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;

    /*background-color: rgba(255, 92, 130, 0.82);*/
    text-align: center;
    width: 100%;
    flex: 0 0 122px;
}

/*Modal*/

.modal {
    font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__container {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    box-sizing: border-box;
    text-align: center;
}

.modal__close {
    background: transparent;
    border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0,0,0,.8);
    text-align: center;
}
.modal__content p{
   font-size: 24px;
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}



/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes mmslideIn {
    from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}
@media (max-width: 991.98px) {


    #mint_btn {
        font-size: 3.2rem;
    }

}

@media (max-width: 767.98px) {


    .coming_soon {
        font-size: 2.5rem;
        padding: 0 1.5rem;
    }

    .bg_smoke {
        /*width: 99vw;*/
        height: 100%;
    }
}


@media only screen and (max-width: 576px) {
    .m_hide_inline {
        display: none;
    }
    #main_logo {
        font-weight: 600;
        font-size: 16px;
        line-height: 19px;
        display: flex;
        letter-spacing: 0.25em;
        margin-top:2px;
        margin-left: 20px
    }
    #logo_image > img{
        width: 70px;
        margin-bottom: 13px;
    }
    #info_center > h1{
        font-weight: 600;
        font-size: 34px;
        line-height: 41px;
    }
    #info_center > h4{
        font-weight: 400;
        font-size: 20px;
        line-height: 24px;
    }
    #footer{
        font-weight: 400;
        font-size: 16px;
        line-height: 19px;
        flex: 0 0 98px;
    }
    header{
        padding-left: 1px;
    }
    .sq_btn{
        width: 90px;
        height: 35px;
        margin-right: 8px;
        padding: 0 10px;
    }
    #darkmode{
        max-width: 35px;
        max-height: 35px;
    }
}

/*end of 576*/

@media only screen and (max-width: 300px) {

}
