/* COMMON */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html {
    font-size: 0.833333vw;
  }
  body {
    -webkit-font-smoothing: subpixel-antialiased !important;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    text-decoration-skip-ink: none;
    text-decoration-skip-ink: none;
    position: relative;
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-family: "CeraPro", Arial, sans-serif;
    line-height: 1.2;
    background: #0A1D35;
  }
  body::-webkit-scrollbar {
    width: 0;
  }
  a:hover {
    color: inherit;
    text-decoration: underline;
  }
  b {
    font-weight: 700;
  }
  ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  p a {
    font-size: inherit;
  }
  picture {
    display: block;
  }
  picture img {
    display: block;
    width: 100%;
  }
  .hidden {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
    border: 0;
    outline: 0;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    poMontserrat-events: none;
    z-index: -9999;
  }
  .mob {
    display: none !important;
  }
  .btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }
  .btns-end {
    justify-content: flex-end;
  }
  .btns-center {
    justify-content: center;
  }
  .btns-vertical {
    flex-direction: column;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 1.6875rem;
    width: 100%;
    height: 6.875rem;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    border: 0.1875rem solid #774D2C;
    border-radius: 10rem;
    outline: 0;
    transition: 0s;
    z-index: 1;
  }
  .btn:hover {
    text-decoration: none;
    border-color: #774D2C;
  }
  .btn:hover i {
    background-color: #6F338E;
  }
  .btn:hover i::before {
    opacity: 0;
  }
  .btn:hover i::after {
    opacity: 1;
  }
  .btn-red {
    color: #fff;
    background: #DA2C30;
    border-color: #DA2C30;
  }
  .btn-red:hover, .btn-red:focus, .btn-red:not(:disabled):not(.disabled):active {
    color: #000;
    background: #fff;
    border-color: #DA2C30;
  }
  .btn-red-tr {
    color: #DA2C30;
    background: rgba(0, 0, 0, 0);
    border-color: #DA2C30;
  }
  .btn-red-tr:hover, .btn-red-tr:focus, .btn-red-tr:not(:disabled):not(.disabled):active {
    color: #fff;
    background: #DA2C30;
    border-color: #DA2C30;
  }
  .form-title {
    margin-bottom: 2.1875rem;
    color: #000;
    font-weight: 500;
    font-size: 2.5625rem;
    line-height: 0.9;
    text-align: center;
  }
  .form-title:nth-of-type(2) { margin-bottom: 3.125rem; }
  .form-title b { color: #E80024; }
  .form-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }
  .form-group {
    position: relative;
    margin-bottom: 1.25rem;
    width: 45.75rem;
  }
  .form-control {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4.6875rem;
    width: 100%;
    height: 6.875rem;
    color: #000;
    font-weight: 500;
    font-size: 2rem;
    text-transform: none;
    background: #fff;
    border: 0;
    border-radius: 0.9375rem;
  }
  .form-control::placeholder {
    color: black;
  }
  .form-control:focus {
    background: #fff;
    box-shadow: none;
  }
  textarea.form-control {
    padding: 0.75rem 1.3125rem;
    height: 10rem;
    min-height: 10rem;
    max-height: 10rem;
    border-radius: 1.875rem;
    resize: none;
  }
  .form-file label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 3.875rem;
    background: #ECEEEF;
    border: 0;
    border-radius: 10rem;
  }
  .form-file label p {
    margin: 0;
    font-weight: 500;
    font-size: 1.125rem;
  }
  .form-file label i {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 2.625rem;
    height: 2.625rem;
    background: #fff url('../img/svg/plus.svg') no-repeat 50%/contain;
    border-radius: 50%;
    transform: translate(0, -50%);
  }
  .form-foot {
    padding-top: 1.875rem;
  }
  .form-foot p {
    margin: 0 0 1.25rem;
    font-weight: 500;
    font-size: 2rem;
    text-align: center;
  }
  .form-foot p:last-child {
    margin-bottom: 0;
  }
  .form-foot p a {
    text-decoration: underline;
  }
  .form-group.typed .form-placeholder {
    top: 0;
    transition: 0s;
  }
  .form-group.error .form-control {
    border-color: #EC3E4E;
  }
  .select2-container {
    width: 100% !important;
  }
  .select2-container--default .select2-selection--single {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 4.5rem;
    height: 6.875rem;
    background: #fff;
    border: 0;
    border-radius: 0.9375rem;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: 0;
    color: #000;
    font-weight: 500;
    font-size: 2rem;
    text-transform: none;
    line-height: 1;
  }
  .select2-container.has-value .select2-selection--single .select2-selection__rendered {
    color: #000;
    font-weight: 500;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 50%;
    right: 3.125rem;
    width: 2.5625rem;
    height: 1.5rem;
    background: url('../img/svg/arrow-select.svg') no-repeat 50%/contain;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
  }
  .select2-container--open .select2-selection--single .select2-selection__arrow {
    transform: translateY(-50%) rotateX(180deg);
  }
  .select2-container--open .select2-dropdown--below {
    top: 0;
    padding: 0.9375rem 4.6875rem 2.5rem;
    background: #fff;
    border: 0;
    border-radius: 0 0 0.9375rem 0.9375rem;
    overflow: hidden;
  }
  .select2-results__option {
    padding: 1.5rem 2.625rem;
    color: #8D8888;
    font-weight: 500;
    font-size: 2rem;
    line-height: 2.5rem;
    border-radius: 0.9375rem;
  }
  .select2-container--default .select2-results__option--disabled {
    display: none !important;
  }
  .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    color: #000;
    background: #F0CEB1;
  }
  .select2-results__option.select2-results__option--selectable.select2-results__option--selected {
    color: #000;
    background: #F0CEB1;
  }
  form hr {
    display: block;
    margin: 0 0 1.25rem;
    height: 3.875rem;
    background: rgba(0, 0, 0, 0);
    border: 0;
    opacity: 0;
  }
  .form-checkbox {
    margin-bottom: 1rem;
  }
  .form-checkbox label {
    display: flex;
    align-items: flex-start;
  }
  .form-checkbox label i {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    top: 0.125rem;
    margin: 0 2.625rem 0 0;
    width: 2rem;
    height: 2rem;
    background: #fff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
  }
  .form-checkbox label i::after {
    content: '';
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    background: url('../img/svg/check.svg') no-repeat 50%/contain;
    opacity: 0;
  }
  .form-checkbox label input:checked + i {
    background: #F0F0F0;
  }
  .form-checkbox label input:checked + i::after {
    opacity: 1;
  }
  .form-checkbox label p {
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
  .form-checkbox label p a {
    color: #000;
    text-decoration: underline;
  }
  .form-checkbox label p a:hover {
    text-decoration: none;
  }
  .form-four {
    display: flex;
    justify-content: center;
    margin-bottom: 1.125rem;
  }
  .form-four input {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 0.3125rem;
    width: 3.8125rem;
    height: 3.8125rem;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
    border: 0.0625rem solid #D9D9D9;
    border-radius: 1.25rem;
  }
  .form-four input:focus {
    border-color: #000;
  }
  .form-four input:focus-visible {
    outline: 0;
  }
  .form-file {
    position: relative;
  }
  .form-file .form-file__btn {
    display: flex;
    align-items: center;
    padding-left: 3.125rem;
    height: 3.125rem;
    color: #000;
    font-size: 1rem;
    background: #F4F4F4;
    border-radius: 0.625rem;
    cursor: pointer;
  }
  .form-file .form-file__btn:hover {
    color: #fff;
    background: var(--c-orange);
  }
  .form-file .form-file__added {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: flex-start;
    position: relative;
    margin: 0.75rem -0.5rem -0.5rem;
  }
  .form-file .form-file__added .img {
    position: relative;
    margin: 0.5rem;
    padding: 0.25rem;
    width: calc(33.33% - (.5rem * 2));
    height: 6.25rem;
    border: 0.0625rem solid #D9D9D9;
    border-radius: 0.625rem;
  }
  .form-file .form-file__added .img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .form-file .form-file__added .img .delete {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 0.75rem;
    height: 0.75rem;
    background: url('../img/svg/close.svg') no-repeat 50%/contain;
    z-index: 1;
    cursor: pointer;
  }
  .form-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .form-links a {
    margin-bottom: 1.125rem;
    color: var(--c-green);
    font-size: 0.9375rem;
    line-height: 1.25rem;
    text-decoration: underline;
  }
  .form-links a:last-child {
    margin-bottom: 0;
  }
  .form-links a:hover {
    text-decoration: none;
  }
  .form-attention {
    display: flex;
    align-items: center;
    margin-top: 1.25rem;
  }
  .form-attention i {
    display: block;
    flex-shrink: 0;
    margin-right: 0.5625rem;
    width: 2.3125rem;
    height: 2.3125rem;
    background: url('../img/svg/exclamation-2.svg') no-repeat 50%/contain;
    border-radius: 50%;
  }
  .form-attention p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 0.875rem;
  }
  .form-attention p a {
    color: #E92724;
    text-decoration: underline;
  }
  .form-attention p a:hover {
    text-decoration: none;
  }
  .scrollbar-inner > .scroll-element.scroll-y {
    right: 0;
    width: 0.3125rem;
  }
  .scrollbar-inner > .scroll-element .scroll-element_outer, .scrollbar-inner > .scroll-element .scroll-element_track, .scrollbar-inner > .scroll-element .scroll-bar {
    border-radius: 1rem;
  }
  .scrollbar-inner > .scroll-element .scroll-element_track, .scrollbar-inner > .scroll-element .scroll-bar {
    opacity: 1;
  }
  .scrollbar-inner > .scroll-element .scroll-element_track {
    background: rgba(0, 0, 0, 0);
  }
  .scrollbar-inner > .scroll-element .scroll-bar {
    background: linear-gradient(90deg, #dcf0dc 0%, #afeb91 100%);
  }
/* /COMMON */
@media (max-width: 991px) {
  html {
    font-size: 4.44444vw;
  }
  a:hover {
    text-decoration: none;
  }
  main {
    overflow: hidden;
  }
  .desk {
    display: none !important;
  }
  .mob {
    display: block !important;
  }
  .container {
    padding: 0 0.9375rem;
    max-width: 100vw;
  }
  .title {
    margin-bottom: 1.75rem;
    font-size: 3.4375rem;
  }
  .btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .btns-end {
    justify-content: flex-end;
  }
  .btns-center {
    justify-content: center;
  }
  .btns-vertical {
    flex-direction: column;
  }
  .btn {
    padding: 0 1.125rem;
    width: 100%;
    height: 3.4375rem;
    font-size: 0.9375rem;
    border-width: 0.125rem;
  }
  .btn i {
    width: 1.875rem;
    height: 1.875rem;
  }
  .title {
    margin-bottom: 1.5rem;
    font-size: 1.625rem;
  }
  .form-wrap {
    flex-direction: column;
    margin-bottom: 0.625rem;
  }
  .form-group {
    margin-bottom: 0.625rem;
    width: 100%;
  }
  .form-control {
    padding: 0 1.5rem;
    height: 3.3125rem;
    font-size: 1rem;
  }
  .select2-container--default .select2-selection--single {
    padding: 0 1.5rem;
    height: 3.3125rem;
  }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 1rem;
  }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 1.125rem;
    width: 1.1875rem;
    height: 0.6875rem;
  }
  .select2-container--open .select2-dropdown--below {
    padding: 0.625rem 1rem 1.25rem;
    border-radius: 0 0 0.9375rem 0.9375rem;
  }
  .select2-results__option {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.3;
    border-radius: 0.9375rem;
  }
  form hr {
    margin-bottom: 0.9375rem;
    height: 0.3125rem;
  }
  .form-title {
    margin-bottom: 0.9375rem;
    font-size: 1.0625rem;
  }
  .form-title:nth-of-type(2) { margin-bottom: 1.375rem; }
  .form-checkbox label i {
    top: 0.125rem;
    margin: 0 1.0625rem 0 0;
    width: 1.5625rem;
    height: 1.5625rem;
  }
  .form-checkbox label p {
    font-size: 1rem;
    line-height: 1.125rem;
  }
  .form-file label {
    height: 3rem;
  }
  .form-file label p {
    font-size: 0.875rem;
  }
  .form-file label i {
    right: 0.625rem;
    width: 1.875rem;
    height: 1.875rem;
  }
  .form-foot {
    padding: 2.1875rem 0 0;
  }
  .form-foot p {
    margin: 0 0 0.875rem;
    font-size: 1rem;
    line-height: 1.125rem;
  }
}
