*,
*::before,
*::after {
    padding: 0;
    margin: 0;
}

body {
    height: 100vh;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg {
    position: fixed;
    width: 100%;
    height: 100%;
}

.bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, .6);
}

.container {
    width: 1170px;
    margin: 0 auto;
    padding: 0 30px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay .modal {
    width: 40%;
    height: 400px;
    padding: 20px 30px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, .1);
}

.modal-overlay .modal .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-overlay .modal .header h1 {
    font-weight: 500;
    display: flex;
    justify-content: center;
    width: 100%;
    letter-spacing: 2px;
}

.modal-overlay .modal .header svg {
    font-size: 35px;
}

.modal-overlay .modal .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 90%;
    width: 50%;
    margin: 0 auto;
    position: relative;
}

.modal-overlay .modal .content input {
    font-family: 'Montserrat', sans-serif;
    outline: none;
    border: none;
    width: 90%;
    height: 49px;
    margin-bottom: 30px;
    color: #000;
    padding: 0 20px;
    font-size: 16px;
}

.modal-overlay .modal .content .btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.modal-overlay .modal .content .btns .sign {
    background: #fff;
    width: 50%;
    margin-right: 20px;
    height: 40px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay .modal .content .btns .toggle {
    text-decoration: underline;
    width: 30%;
}

.modal-overlay .modal .content .btns a svg {
    margin-right: 10px;
}

.modal-overlay .modal .content .btns a:last-child {
    margin-right: 0;
}

.modal-overlay .modal .content input::placeholder {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: rgba(0, 0, 0, .9);
}

header {
    position: relative;
    height: 90px;
    display: flex;
    align-items: center;
}

header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .navbar .navbar-brand {
    font-size: 22px;
    letter-spacing: 4px;
}

header .navbar .navbar-menu a {
    margin-right: 40px;
}

header .navbar .navbar-menu a:last-child {
    margin-right: 0;
}

header .navbar .navbar-menu a svg {
    margin-right: 10px;
}

header .navbar .navbar-auth {
    display: flex;
    align-items: center;
}

header .navbar .navbar-auth a {
    margin-right: 40px;
}

header .navbar .navbar-auth .auth {
    width: 100px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .6);
    transition: .35s ease;
    margin-right: 0;
}

header .navbar .navbar-auth .auth:hover {
    background: #fff;
    color: rgba(0, 0, 0, .8);
}

header .navbar .navbar-auth a img {
    max-width: 25px;
}

main {
    padding-top: 70px;
    position: relative;
}

main .block-info {
    text-align: center;
    height: auto;
    height: 250px;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, .1);
    padding-bottom: 50px;
    padding-right: 50px;
    padding-left: 50px;
}

main .block-info h1 {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 7px;
    margin-top: -20px;
    background: #fff;
    width: 40%;
    color: rgba(0, 0, 0, .8);
}

main .block-info p {
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1.7;
    margin-top: 30px;
}

main .block-info .block-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    width: 70%;
}

main .block-info .block-img img {
    width: 100px;
    opacity: .8;
}

main .block {
    margin-top: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    padding-bottom: 30px;
}

main .block h1 {
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

main .block p {
    line-height: 1.6;
    font-size: 18px;
    margin-bottom: 30px;
}

main .block p:last-child {
    margin-bottom: 0;
}

main .block.block-img {
    display: flex;
    justify-content: center;
}

main .footer {
    margin-top: 60px;
    height: 90px;
}

main .footer .copy {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

main .footer .copy p {
    margin-right: 40px;
}

main .footer .copy a {
    color: #009dff;
    text-decoration: underline;
}

main .footer p {
    letter-spacing: 2px;
    color: rgba(255, 255, 255, .7);
}

main input {
    font-family: 'Montserrat', sans-serif;
    outline: none;
    border: none;
    width: 100%;
    height: 49px;
    margin-bottom: 30px;
    color: #000;
    padding: 0 20px;
    font-size: 16px;
    margin-right: 20px;
    font-weight: 500;
}

main input::placeholder {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    color: rgba(0, 0, 0, 1);
    font-weight: 500;
}

.kist {
    width: 100%;
    display: flex;
}

#reg-btn {
    height: 49px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
}

.order-contacts {
    padding-bottom: 30px;
    width: 100%;
    border-bottom: 1px solid #fff;
}

.order-contacts a {
    text-decoration: underline;
}

.order-contacts .btn {
    text-decoration: none;
    background: #fff;
    width: 150px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.off {
    display: none !important;
}
