@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #CCB362;
    --secondary-color: #1E3A3C;
    --text: #B3B3B3;
    --text-primary: #CCB362;
    --btn-primary: #CCB362;
    --bg-primary: #1E3A3C;
}

.serif-font {
    font-family: "MonteCarlo", serif;
}
body {
    font-family: "Montserrat", 'arial', sans-serif;
    font-optical-sizing: auto;
    background: #2C2C2C url('../images/bg.webp') no-repeat top center;
    background-size: cover;
    background-position: center center;
    min-height: 100dvh;
    color: var(--text);
    font-size: 14px;
    min-width: 330px;
}
@media (min-width: 992px) {
    body {
        font-size: 16px;
    }
}
a:not(.btn) {
    color: var(--text-primary) !important;
}

header {
    height: 100px;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    padding: 15px 35px;
}
.btn-primary {
    background-color: var(--btn-primary) !important;
    border-color: var(--btn-primary) !important;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
}
.text-primary {
    color: var(--primary-color) !important
}
.text-gold {
    color: var(--text-primary) !important
}
.text-danger {
    color: red !important;
}
.text-dark {
    color: var(--text) !important;
}

h1,h2,h3,h4,h5 {
    color: var(--primary-color)
}

main {
    background-color: rgba(30, 58, 60, 0.84);
    display: block;
    min-height: calc(100vh - 102px);
    padding-bottom: 90px;
}

.subtitle {
    color: var(--text);
    font-size: 20px;
    font-weight: 400;
}


.title {
    color: var(--primary-color);
    font-size: 60px;
}

.deco {
    color: var(--text);
    font-size: 40px;

}
.title-area {
    line-height: 1;
}

.title-area h1 {
    line-height: 1;
}
@media (min-width: 768px){

    .subtitle {
        font-size: 23px;
    }
    .title {
        font-size: 72px;
    }
}
.fw-300 {
    font-weight: 400;
}
.brand-name {
    font-weight: 300;
    font-size: 20px;
    color: #fff;
}

@media (min-width: 768px) {
    .brand-name {
        font-size: 23px;
    }
}
.card {
    background-color: rgba(21, 51, 53, 0.65);
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 10px 20px 0 rgba(15, 43, 45, 0.65);
    padding: 24px;
    max-width: 360px;
    min-width: 320px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .card {
        width: 360px;
    }
}








canvas {
    background: #fff;
}

.sign-hold {
    border: 2px solid var(--secondary-color);
    width: 304px;
    height: 154px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    overflow: hidden;
}
form {
    color: var(--text);
}
textarea.form-control,
input[type='text'],
input[type='date'],
input[type='file'],
input[type='email'] {
    border: 1px solid transparent;
    color: var(--text);
    padding: 8px 10px;
    background: rgba(255,255,255,0.15);
}

textarea.form-control:focus,
input[type='text']:focus,
input[type='date']:focus,
input[type='file']:focus,
input[type='email']:focus {
    color: var(--text);
    background: rgba(255,255,255,0.15);
}
input[type='file'] {
    max-width: 420px;
    margin: 10px 0 30px;
}
label {
    color: var(--primary-color)
}
input#phone,
input#phone_2 {
    direction: ltr;
}
.error {
    border-bottom-color: var(--primary-color) !important;
}
.error-message {
    color: var(--text);
    font-size: 12px;
    position: absolute;
}

label {
    display: inline-block;
}
.underline {
    text-decoration: underline;
}

.form-grid {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 480px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.footer {
    position: sticky;
    top: 100%;
    bottom: 0;
    font-size: 13px;
    /*text-align: center;*/
    background: var(--bg-primary);
    padding: 30px 35px;
    border-top: 2px solid var(--primary-color);
}
.footer img {
    margin-right: 5px;
}

.footer-text {
    font-size: 16px;
    color: var(--text);
}
.footer-brand {
    width: 260px;

}
.yovdesign {
    text-decoration: none;
    color: #8b8b8b !important;
}
.dropzone {
    border-color: var(--btn-primary);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 20px 0 0;
    position: relative;
}
.dropzone.dz-started {
    justify-content: start;
    flex-direction: row;
}
.dropzone .u-icon {
    position: absolute;
    left: 50%;
    margin-left: -20px;
    top: 50%;
    margin-top: -40px;
}
.dropzone .dz-message {
    margin-bottom: 0.8em;
    margin-top: 2.6em;
    line-height: 1.2;
}
.dropzone.dz-started .u-icon{
    display: none;
}
.dropzone .dz-preview {
    max-width: 50%;
}
.dropzone .dz-preview .dz-image {
    width: 100%;
}
.dropzone .dz-preview .dz-image img{
    max-width: 100%;
}
.dz-max-files-reached {
    pointer-events: none;
    cursor: default;
}

.dz-image-preview {
    pointer-events: auto;
}
.dropzone.dz-clickable:not(.dz-max-files-reached) {
    border-style: dashed !important;
}
.dz-drag-hover, .dropzone.dz-clickable:not(.dz-max-files-reached):hover {
    border: 2px dashed #ababab !important;
}

.dropzone .dz-preview .dz-remove {
    background: #ababab;
    color: #fff !important;
    border-radius: 4px;
    padding: 5px;
    text-decoration: none;
    margin-top: 5px;
}

.dropzone .dz-preview .dz-success-mark, .dropzone .dz-preview .dz-error-mark {
    margin-top: -40px;
}

.error > .dropzone {
    border-bottom-color: red !important;
}

input[type="date"] {
    pointer-events: none;
}
.dropzone .dz-preview .dz-error-message {
    top: 25px !important;
}

/* HTML: <div class="loader"></div> */
.loader {
    display: none;
    position: absolute;
    right: 50%;
    margin-right: -10px;
    width: 20px;
    height: 20px;
    top: 8px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid #2b5144;
    animation:
            l20-1 0.8s infinite linear alternate,
            l20-2 1.6s infinite linear;
}
.loading .loader {
    display: block;
}

.loading .btn-text {
    opacity: 0;
}
@keyframes l20-1{
    0%    {clip-path: polygon(50% 50%,0       0,  50%   0%,  50%    0%, 50%    0%, 50%    0%, 50%    0% )}
    12.5% {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100%   0%, 100%   0%, 100%   0% )}
    25%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 100% 100%, 100% 100% )}
    50%   {clip-path: polygon(50% 50%,0       0,  50%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
    62.5% {clip-path: polygon(50% 50%,100%    0, 100%   0%,  100%   0%, 100% 100%, 50%  100%, 0%   100% )}
    75%   {clip-path: polygon(50% 50%,100% 100%, 100% 100%,  100% 100%, 100% 100%, 50%  100%, 0%   100% )}
    100%  {clip-path: polygon(50% 50%,50%  100%,  50% 100%,   50% 100%,  50% 100%, 50%  100%, 0%   100% )}
}
@keyframes l20-2{
    0%    {transform:scaleY(1)  rotate(0deg)}
    49.99%{transform:scaleY(1)  rotate(135deg)}
    50%   {transform:scaleY(-1) rotate(0deg)}
    100%  {transform:scaleY(-1) rotate(-135deg)}
}