@import url(/assets/fonts/mastro/stylesheet.css);
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

:root {
    --theme-color: #18284B;
}

body {
    margin: 0;
    font-family: "Rubik", sans-serif !important;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-size: 150px, 100% 100vh;
    overflow-x: hidden;
}

@keyframes bounce {
    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-30px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes zoom {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}

@keyframes anima1 {
    50% {
        transform: translateY(-5px) scale(1.05)
    }

    0% {
        transform: translateY(0) scale(1)
    }
}

@keyframes anima2 {
    25% {
        transform: translateY(-5px)
    }

    75% {
        transform: translateY(5px)
    }

    0% {
        transform: translateY(0)
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 var(--theme-color)
    }
}

/* Page Loader */
.js .loading::before,
.js .loading::after {
    content: "";
    position: fixed;
    z-index: 1000;
}

.js .loading::before {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
}

.js .loading::after {
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    border-radius: 50%;
    opacity: 0.4;
    background: var(--color-link-hover);
    animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}

a {
    text-decoration: none;
    color: var(--color-link);
    outline: none;
    cursor: pointer;
}

a:hover {
    text-decoration: underline;
    color: var(--color-link-hover);
    outline: none;
}

/* Better focus styles from https://developer.mozilla.org/en-US/docs/Web/CSS/:focus-visible */
a:focus {
    /* Provide a fallback style for browsers
	 that don't support :focus-visible */
    outline: none;
    background: lightgrey;
}

a:focus:not(:focus-visible) {
    /* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
    background: transparent;
}

a:focus-visible {
    /* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
    outline: 2px solid red;
    background: transparent;
}

.unbutton {
    background: none;
    border: 0;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
}

.unbutton:focus {
    outline: none;
}

.frame {
    padding: var(--page-padding);
    position: relative;
    text-transform: uppercase;
    font-size: 12px;
    display: grid;
    z-index: 1000;
    width: 100%;
    height: 100%;
    grid-row-gap: 1rem;
    grid-column-gap: 2rem;
    pointer-events: none;
    justify-items: start;
    grid-template-columns: auto auto;
    grid-template-areas: "title""archive""back""github""demos""sponsor""tags";
}

.frame #cdawrap {
    justify-self: start;
}

.frame a {
    pointer-events: auto;
}

.frame__title {
    grid-area: title;
    font-size: inherit;
    margin: 0;
}

.frame__back {
    grid-area: back;
    justify-self: start;
}

.frame__archive {
    grid-area: archive;
    justify-self: start;
}

.frame__tags {
    grid-area: tags;
}

.frame__github {
    grid-area: github;
}

.frame__demos {
    grid-area: demos;
    display: flex;
    gap: 1rem;
}

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    /* background: url(../img/noise.png), radial-gradient(circle, #f8cf8d 0%, #ef2636 100%); */
}

.gloock-regular {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.debug {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 1px;
    border-radius: 5px;
    background-color: red;
    transform: translate(-50%, -50%);
}

.scene {
    perspective: 1000px;
    overflow: hidden;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    left: 0;
    top: 0;
}

main .card {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: transparent !important;
    border: none !important;
}

.card__img {
    width: 5em;
    border-radius: 5px;
    aspect-ratio: 2/3;
    background-position: center;
    background-size: cover;
}

.headings {
    text-align: center;
    position: relative;
    z-index: 10;
    color: var(--color-title);
    text-transform: uppercase;
}

.headings > h1 {
    color: #fff;
}

.headings__main {
    line-height: 1.2;
    font-size: clamp(2.5rem, 1.59rem + 3.883vw, 6.25rem);
}

.headings_subtitle {
    line-height: 0.5;
    font-size: clamp(1rem, 0.757rem + 1.036vw, 2rem);
}

@media screen and (min-width: 53em) {
    .frame {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        grid-template-columns: auto auto auto 1fr;
        grid-template-rows: auto auto;
        align-content: space-between;
        grid-template-areas: "title back archive github sponsor""tags tags tags demos demos";
    }

    .frame #cdawrap,
    .frame__demos {
        justify-self: end;
    }

    .card__img {
        width: 8em;
    }
}

.main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
    width: 100%;
}

.main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.main-text > span {
    font-family: 'Mastro Sans' !important;
    font-size: 80px;
    color: #fff;
    letter-spacing: 2px;
}

.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: transparent;
    transition: all 0.5s ease-in-out 0s;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}

.header-logo {
    display: flex;
    width: 350px;
}

.header-logo > a {
    display: flex;
    width: 100%;
}

.header-logo > a > img {
    width: 100%;
    color: #ce181e;
}

.header-menu-btn > i {
    font-size: 41px;
    color: #fff;
}

.header-menu-btn {
    cursor: pointer;
}

.header-menu-contain {
    position: fixed;
    background: url(/images/noise.png), radial-gradient(circle, #fff 0%, #fff 100%);
    inset: 0;
    z-index: 99;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.header-menu-contain.active {
    opacity: 1;
    visibility: visible;
}

.header-menu-container > ul > li > a {
    font-weight: 500;
    color: #222;
    font-size: 34px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
    position: relative;
    padding-left: 0;
}

.header-menu-container > ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 50%;
}

.header-menu-container > ul > li > a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) scale(0);
    width: 13px;
    height: 13px;
    background-color: #999;
    border-radius: 50%;
    transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}

.header-menu-container > ul > li > a:hover {
    color: #ce181e;
    padding-left: 1.5rem;
}

.header-menu-container > ul > li > a:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

.header-menu-remove {
    position: absolute;
    top: 1rem;
    right: 4rem;
    cursor: pointer;
}

.header-menu-remove > i {
    font-size: 41px;
    color: #000;
}

.main-form-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.main-form-btn > a {
    display: flex;
    padding: 1rem;
    width: 200px;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    border-radius: 70px;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    transition: .2s ease-in-out;
}

.main-form-btn > a:hover {
    background-color: #fff;
    color: var(--theme-color);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
}

.footer-list > ul {
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    margin-top: 2rem;
    gap: 3rem;
    border-bottom: 1px solid #999;
    padding: 0 2rem;
    padding-bottom: 1rem;
}

.footer-list > ul > li > a {
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    transition: .2s ease-in-out;
}

.footer-list > ul > li > a:hover {
    color: var(--theme-color);
}

.footer-wrapper {
    background-color: #ededed;
    padding: 4rem 0;
}

.footer-social > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    gap: 1.5rem;
}

.footer-social > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgb(167, 167, 167);
    border-radius: 50%;
    transition: .2s ease-in-out;
    text-decoration: none;
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social > ul > li > a > i {
    display: flex;
    color: #fff;
}

.footer-social > ul > li > a:hover {
    background-color: var(--theme-color);
}

.footer-bottom-text {
    margin-top: 1.5rem;
    font-size: 15px;
}

.footer-logo {
    display: flex;
    width: 350px;
}

.footer-logo > a {
    display: flex;
    width: 100%;
}

.footer-logo > a > img {
    width: 100%;
}

.home-parallax-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 130px 0;
    position: relative;
    z-index: 9;
}

.home-parallax-text > p {
    margin: 0;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 200;
}

.home-parallax-text > span {
    color: #fff;
    font-size: 30px;
    font-weight: 500;
    display: flex;
    width: 80%;
}

.home-parallax-text > a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color) !important;
    width: 250px;
    padding: 1rem;
    border-radius: 70px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 300;
    margin-top: 2rem;
    text-decoration: none;
    transition: .2s ease-in-out;
}


.home-parallax-text > a:hover {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em transparent;
}

.home-parallax-wrapper {
    background-size: cover !important;
    -moz-background-size: cover !important;
    -webkit-background-size: cover !important;
    -o-background-size: cover !important;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    margin: 4rem 0;
    margin-bottom: 0;
    background-color: #ce181e;
}

.header-wrapper.sticked {
    background-color: var(--theme-color);
}

.application-form-page-top {
    display: flex;
    width: 100%;
    position: relative;
}

.application-form-page-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.application-form-page-image {
    display: flex;
    width: 100%;
    height: 450px;
}

.application-form-page-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.application-form-page-title {
    position: absolute;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.application-form-page-title > span {
    font-size: 45px;
    color: #fff;
    letter-spacing: 3px;
}

.application-form-page-bottom-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.application-form-page-bottom-title > span {
    color: #000;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    margin-bottom: 1rem;
    width: 60%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.application-form-page-bottom {
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    width: 45%;
    background-color: #fff;
    padding: 3rem 1rem;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.form-contain {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-group {
    width: calc(50% - (1rem) / 2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.form-group > input,
.form-group > select {
    display: flex;
    width: 100%;
    height: 40px;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 0 1rem;
    border-radius: 0;
    outline: 0;
    font-size: 14px;
    font-weight: 300;
    color: #666;
}

.form-group > input:focus,
.form-group > select:focus {
    border-color: var(--theme-color);
}

.form-title {
    display: flex;
    margin-bottom: 1rem;
}

.form-title > span {
    font-size: 18px;
    font-weight: 500;
}

input[type="checkbox"] {
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    background: none;
    cursor: pointer;
    line-height: 0;
    outline: 0;
    padding: 0 !important;
    vertical-align: text-top;
    height: 18px;
    width: 18px;
    -webkit-appearance: none;
    opacity: 0.5;
    color: transparent;
}

input[type="checkbox"]:hover {
    opacity: 1;
}

input[type="checkbox"]:checked {
    background-color: var(--theme-color);
    border: 2px solid var(--theme-color);
    opacity: 1;
}

input[type="checkbox"]:before {
    content: "";
    position: absolute;
    right: 50%;
    top: 50%;
    width: 4px;
    height: 10px;
    border: solid transparent;
    border-width: 0 2px 2px 0;
    margin: -1px -1px 0 -1px;
    transform: rotate(45deg) translate(-50%, -50%);
    z-index: 2;
}

input[type="checkbox"]:checked:before {
    border-color: #fff;
}

.form-checkbox-wrapper {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox > span {
    color: #555;
    font-size: 16px;
    font-weight: 300;
}

.form-checkbox > span > a {
    color: var(--theme-color);
    text-decoration: none;
    font-weight: 500;
}

.form-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2.5rem;
}

.form-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color) !important;
    width: 250px;
    padding: 0.8rem;
    border-radius: 70px;
    color: #fff;
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 300;
    text-decoration: none;
    transition: .2s ease-in-out;
    border: none;
    outline: 0;
}

.form-btn > button:hover {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em transparent;
}

.form-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    z-index: 9999;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 90%;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.form-modal.active {
    opacity: 1;
    visibility: visible;
}

.form-modal-remove {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    height: 40px;
}

.form-modal-remove > i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    font-size: 20px;
}

.form-modal-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f0f0f0;
    margin: 1rem 0;
    height: 60px;
}

.form-modal-info > i {
    font-size: 20px;
}

.form-modal-content {
    color: #555;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    height: calc(100% - 100px);
    overflow: auto;
    padding-bottom: 1rem;
}

.form-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.form-modal-btn > a,
.form-modal-btn > button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-color) !important;
    width: 200px;
    padding: 0.6rem;
    border-radius: 70px;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 300;
    text-decoration: none;
    border: none;
    transition: .2s ease-in-out;
}

.form-modal-btn > a:hover,
.form-modal-btn > button:hover {
    animation: pulse 1s;
    box-shadow: 0 0 0 1em transparent;
}

.form-modal-content::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background: #e6e6e6;
    border-radius: 5px;
}

.form-modal-content::-webkit-scrollbar-thumb {
    background: var(--theme-color);
    border-radius: 5px;
}

.form-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-in-out;
}

.form-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.form-modal-remove > span {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile+label {
    max-width: 100%;
    font-size: 0.95rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    overflow: hidden;
    padding: 0 .5rem;
    height: 40px;
    align-items: center;
}

.no-js .inputfile+label {
    display: none;
}

.inputfile:focus+label,
.inputfile.has-focus+label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile+label svg {
    width: 1em;
    height: 1em;
    vertical-align: middle;
    fill: currentColor;
    margin-top: -0.25em;
    margin-right: 0.25em;
}

.inputfile-1+label {
    color: #fff;
    background-color: var(--theme-color);
}

.inputfile-1:focus+label,
.inputfile-1.has-focus+label,
.inputfile-1+label:hover {
    opacity: 0.8;
}

.form-checkbox > span {
    width: calc(100% - 18px);
}

.form-modal-content .form-checkbox {
    margin-top: 1rem;
    background-color: #f0f0f0;
    padding: .5rem;
}

.form-modal-content .form-checkbox > span {
    font-size: 15px;
}

.form-modal-btn.sartname-check-btn > a {
    width: 300px;
    gap: 1rem;
}

.success-contain {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    background-color: var(--theme-color);
}

.success-contain > span {
    font-size: 30px;
    color: #fff;
}

.form-modal-btn.sartname-check-btn {
    gap: 2rem;
}

.competition-details-container {
    display: flex;
    align-items: flex-start;
    padding: 0;
}

.competition-details-left {
    width: 40%;
    padding: 1.5rem;
    position: relative;
}

.competition-details-right {
    width: 60%;
    padding-left: 2rem;
}

.competition-details-full-image {
    display: flex;
    width: 100%;
}

.competition-details-full-image > img {
    width: 100%;
}

.competition-details-wrapper {
    padding: 4rem 0;
    margin: 2rem 0;
}

.competition-details-right-text {
    display: flex;
    flex-direction: column;
}

.competition-details-right-text > span {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: #ce181e;
    font-weight: 600;
    letter-spacing: 1px;
}

.competition-details-right-text > strong {
    font-family: "Kanit", sans-serif;
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    display: flex;
    margin-top: 1rem;
    color: var(--theme-color);
}

.competition-details-right-text > p {
    color: #767676;
    display: flex;
    margin-top: 2rem;
    width: 85%;
    line-height: 1.8;
}

.competition-details-small-image {
    padding: 1rem;
    display: flex;
    width: 230px;
    height: 290px;
    animation: anima2 3s ease-in-out infinite;
}

.competition-details-small-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.competition-details-small-image.top-small {
    position: absolute;
    top: 110px;
    left: -70px;
    background-color: #f9fafc;
}

.competition-details-small-image.bottom-small {
    position: absolute;
    bottom: -30px;
    right: 0px;
    background-color: #f9fafc;
}

.competition-details-list {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.competition-details-list-content {
    width: calc(33.33% - (1rem * 2) / 3);
    box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.competition-details-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    position: relative;
    background: #f0f0f0;
    transition: all 500ms ease;
    border-radius: 50%;
}

.competition-details-list-icon > i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: var(--theme-color);
    transition: all 0.4s ease-in-out;
}

.competition-details-list-icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: url(/images/noise.png), radial-gradient(circle, #2761de 0%, #18284B 100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.competition-details-list-content:hover .competition-details-list-icon::before {
    opacity: 1;
    visibility: visible;
}

.competition-details-list-content:hover .competition-details-list-icon {
    transform: scaleX(-1);
}

.competition-details-list-content:hover .competition-details-list-icon > i {
    color: #fff;
    z-index: 9;
}

.competition-details-list-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 2rem;
}

.competition-details-list-text > span {
    font-size: 17px;
    font-weight: 600;
    display: flex;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.awards-details-container {
    display: flex;
    padding: 0;
    align-items: center;
}

.awards-details-left {
    width: 50%;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
}

.awards-details-right {
    width: 50%;
}

.awards-details-image {
    display: flex;
    width: 70%;
    position: relative;
    overflow: hidden;
}

.awards-details-image > img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    animation: zoom 30s ease-in-out infinite;
}

.awards-details-title > span {
    display: flex;
    font-size: 40px;
    font-weight: 600;
    color: var(--theme-color);
    width: 75%;
    line-height: 1;
    font-family: "Rubik", sans-serif;
}

.awards-details-title {
    display: flex;
    margin-bottom: 2rem;
}

.awards-details-number {
    padding-left: 1rem;
}

.awards-details-number > span {
    font-family: "Monoton", sans-serif;
    font-size: 42px;
    color: var(--theme-color);
}

.awards-details-text > span {
    font-family: "Rubik", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--theme-color);
}

.awards-details-text > p {
    margin: 0;
    color: #767676;
    font-size: 16px;
    width: 100%;
    display: flex;
    margin-top: 0.5rem;
}

.awards-details-list-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.08);
    padding: 1rem;
    background-color: #fff;
}

.awards-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
}

.awards-details-wrapper {
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.awards-details-wrapper::before {
    content: "";
    height: 40vw;
    width: 300%;
    background-color: #f9fafc;
    position: absolute;
    top: -250px;
    left: -100%;
    transform: rotate(-30deg);
    z-index: -1;
}

.awards-details-left::before {
    content: "";
    position: absolute;
    background-color: #f9fafc;
    bottom: -50px;
    right: 40px;
    z-index: -1;
    left: unset;
    width: 60%;
    height: 100%;
}

.circle-animation-1 {
    position: absolute;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--theme-color);
    bottom: 70px;
    left: 70px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima1 3s ease-in-out infinite;
}

.circle-animation-2 {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 15px solid #ce181e;
    border-radius: 50%;
    bottom: -55px;
    left: 200px;
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, .09), 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima2 3s ease-in-out 1s infinite;
}

.circle-animation-3 {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 10px solid #ce181e;
    border-radius: 50%;
    top: -25px;
    left: 200px;
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, .09), 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima2 3s ease-in-out 1s infinite;
    ;
}

.circle-animation-4 {
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: var(--theme-color);
    top: 50%;
    right: 85px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima1 2s ease-in-out 3s infinite;
}

.application-wrapper {
    padding: 6rem 0;
    background-color: #f9fafc;
    margin: 4rem 0;
    margin-bottom: 0;
    background-size: cover;
}

.application-container {
    display: flex;
    padding: 0;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}

.application-container-left {
    width: 80%;
}

.application-container-right {
    width: 50%;
}

.application-container-title > span {
    font-family: "Montserrat", sans-serif;
    font-size: 48px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--theme-color);
}

.application-container-desc > span {
    color: #767676;
    display: flex;
    margin-top: 2rem;
    line-height: 1.8;
}

.application-container-right .accordion {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.application-container-right .accordion button {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 500;
    color: #000;
    background-color: #fff;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.application-container-right .accordion button[aria-expanded="true"] {
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 10px 10px 0 0 !important;
    box-shadow: none;
}

.application-container-right .accordion .accordion-item {
    border: none;
}

.application-container-right .accordion .accordion-item .accordion-body > strong {
    color: rgba(255, 255, 255, 0.7019607843);
    display: flex;
    line-height: 1.8;
    font-weight: 400;
    padding: 1rem;
}

.application-container-right .accordion .accordion-item .accordion-body {
    background-color: var(--theme-color);
    border-radius: 0 0 10px 10px;
}

.application-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/images/noise.png), radial-gradient(circle, #2761de 0%, #18284B 100%);
}

.application-form {
    margin-top: 2rem;
}

.success-page-container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
}

.success-page-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(/images/noise.png), radial-gradient(circle, #2761de 0%, #18284B 100%);
}

.success-page-right {
    width: 250px;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-top: 2rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.success-page-text > span {
    color: #fff;
    font-size: 70px;
    letter-spacing: 2px;
}

.success-page-text > p {
    color: #fff;
    font-size: 20px;
    margin: 0;
}

.success-page-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.art-branches-wrapper {
    padding: 4rem 0;
    padding-top: 3rem;
    background-color: #f6f5fa;
}

.art-branches-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.art-branches-title > span {
    font-size: 50px;
    color: var(--theme-color);
    font-family: "Rubik", sans-serif;
    font-weight: 600;
}

.art-branches-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.art-branches-nav > ul {
    border: none;
    border-bottom: 1px solid #dee2e6;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.art-branches-nav > ul > li > button {
    border: none !important;
    font-size: 20px;
    color: #000 !important;
    background-color: transparent !important;
    position: relative;
    padding: 1rem;
    display: flex;
}

.art-branches-bottom {
    margin-top: 4rem;
}

.art-branches-nav > ul > li > button.active {
    opacity: 1;
}

.art-branches-nav > ul > li > button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    transform: scaleX(0);
    transform-origin: 100% 50%;
    transition: transform .46s cubic-bezier(.78, .76, .1, 1);
}

.art-branches-nav > ul > li > button:hover::after,
.art-branches-nav > ul > li > button.active::after {
    transform: scaleX(1);
    transform-origin: 0 50%;
}

.branches-swiper-content {
    background-color: #fff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: .3s;
}

.branches-content-left {
    width: 35%;
}

.branches-content-right {
    width: 65%;
    padding: 2.5rem;
}

.branches-content-image {
    display: flex;
    width: 100%;
}

.branches-content-image > img {
    width: 100%;
}

.branches-content-name > span {
    font-family: "Rubik", sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--theme-color);
}

.branches-content-desc {
    margin: 0;
    color: #767676;
    font-size: 16px;
    width: 100%;
    display: flex;
    margin-top: 0.5rem;
    line-height: 1.7;
}

.branchesSwiper {
    padding: 3rem 0;
}

.branchesSwiper .swiper-slide-active .branches-swiper-content,
.branches-swiper-content:hover {
    box-shadow: 0 16px 20px rgba(1, 16, 61, .1);
}

.swiper-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 50%;
    bottom: 3px;
    z-index: 50;
    height: 1px;
    width: 50%;
    transform: translateX(-50%);
}

.header-menu-container {
    display: flex;
}

.header-menu-image {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-menu-image-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.header-menu-image-right .menu-image:first-child {
    width: 400px;
}

.menu-image > img {
    width: 100%;
    animation: zoom 30s ease-in-out infinite;
}

.menu-image {
    border-radius: 10px;
    overflow: hidden;
}

.header-menu-image-right .menu-image:last-child {
    width: 300px;
}

.header-menu-image-left .menu-image {
    width: 300px;
}

.menu-animation-1 {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 15px solid var(--theme-color);
    border-radius: 50%;
    bottom: -55px;
    left: 200px;
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, .09), 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima1 3s ease-in-out 1s infinite;
}

.menu-animation-2 {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 10px solid var(--theme-color);
    border-radius: 50%;
    top: -25px;
    left: 200px;
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, .09), 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima2 3s ease-in-out 1s infinite;
    ;
}

.menu-animation-3 {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 15px solid #ce181e;
    border-radius: 50%;
    top: 50%;
    left: -70px;
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, .09), 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima2 3s ease-in-out 1s infinite;
}

.menu-animation-4 {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 15px solid #ce181e;
    border-radius: 50%;
    bottom: -55px;
    right: 200px;
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, .09), 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima2 3s ease-in-out 1s infinite;
}

.menu-animation-5 {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 10px solid #ce181e;
    border-radius: 50%;
    top: -25px;
    right: 200px;
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, .09), 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima1 3s ease-in-out 1s infinite;
}

.menu-animation-6 {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 15px solid var(--theme-color);
    border-radius: 50%;
    top: 50%;
    right: -70px;
    box-shadow: inset 0 3px 6px 0 rgba(0, 0, 0, .09), 0 3px 6px 0 rgba(0, 0, 0, .09);
    animation: anima1 3s ease-in-out 1s infinite;
}

.application-container-right .accordion button::after {
    background-image: none;
    content: "\F27E";
    font-family: bootstrap-icons;
}

.competition-details-list-content > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 3rem 1rem;
}

.header-menu-container > ul > li > a.disabled {
    cursor: context-menu;
}

.header-menu-container > ul > li > a.disabled:hover {
    opacity: .5;
}

.application-form-page-bottom {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

@media screen and (max-width:1295px) {
    .branches-content-desc {
        font-size: 13px;
    }

    .branches-content-right {
        padding: 1.5rem;
    }

    .application-form-page-bottom {
        width: 70%;
        margin-top: 8rem;
    }

    .form-modal {
        width: 70%;
    }

    .header-menu-image-left .menu-image {
        width: 220px;
    }
    
    .header-menu-image-right .menu-image:last-child {
        width: 240px;
    }
    
    .header-menu-image-right .menu-image:first-child {
        width: 280px;
    }
}

@media screen and (max-width:993px) {
    .competition-details-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .competition-details-left {
        width: 80%;
    }
    
    .competition-details-wrapper {
        padding: 0;
    }
    
    .competition-details-right {
        width: 100%;
        padding-left: 0;
    }
    
    .competition-details-right-text > p {
        width: 100%;
    }
    
    .awards-details-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .awards-details-left {
        width: 80%;
    }
    
    .awards-details-right {
        width: 100%;
    }
    
    .awards-details-list {
        margin-top: 1rem;
    }
    
    .awards-details-wrapper {
        padding: 2rem 0;
    }
    
    .awards-details-left::before {
        width: 60%;
        height: 70%;
    }

    .application-wrapper {
        padding: 3rem 0;
    }

    .home-parallax-text > span {
        width: 90%;
    }

    .header-menu-container > ul > li > a {
        font-size: 26px;
    }

    .header-menu-image-left .menu-image {
        width: 150px;
    }
    
    .header-menu-image-right .menu-image:last-child {
        width: 180px;
    }
    
    .header-menu-image-right .menu-image:first-child {
        width: 190px;
    }

    .header-menu-container > ul > li > a {
        z-index: 9;
    }

    .header-logo {
        display: flex;
        width: 250px;
    }

    .footer-list > ul > li > a {
        font-size: 13px;
    }
    
    .footer-list > ul {
        gap: 1rem;
    }
    
    .art-branches-nav > ul {
        flex-wrap: nowrap;
        width: 90%;
        gap: 1rem;
    }
    
    .art-branches-nav > ul > li > button {
        font-size: 15px;
    }

    [data-aos^=fade][data-aos^=fade],
    [data-aos^=zoom][data-aos^=zoom]{
        transform: unset;
        opacity: 1;
    }

    .application-form-page-bottom {
        width: 90%;
    }

    .form-modal {
        width: 90%;
    }

    .container {
        max-width: 100%;
        padding: 1rem;
    }
    
    .footer-container {
        padding: 0;
    }
}

@media screen and (max-width:553px){
    .footer-list > ul {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 0 0.5rem;
        gap: .5rem;
        padding-bottom: 1rem;
    }

    .footer-list > ul > li {
        width: calc(33.33% - (0.5rem * 2) / 3);
    }
    
    .footer-list > ul > li > a {
        font-size: 12px;
    }
    
    .footer-logo {
        width: 250px;
    }

    .container {
        padding: 1rem;
    }
    
    .footer-wrapper .footer-container {
        padding: 0;
    }

    .competition-details-left {
        width: 100%;
    }
    
    .competition-details-small-image {
        width: 150px;
        height: 150px;
    }
    
    .competition-details-right-text > strong {
        font-size: 35px;
        justify-content: center;
    }
    
    .competition-details-right-text > p {
        text-align: center;
    }
    
    .competition-details-list-content {
        width: 100%;
    }
    
    .competition-details-list {
        flex-wrap: wrap;
    }
    
    .awards-details-left {
        width: 100%;
    }
    
    .awards-details-image {
        width: 100%;
    }
    
    .awards-details-title > span {
        width: 100%;
        justify-content: center;
    }
    
    .awards-details-right {
        margin-top: 2rem;
    }
    
    .awards-details-list-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .awards-details-text {
        text-align: center;
    }
    
    .awards-details-number {
        padding: 0;
    }
    
    .awards-details-text > p {
        font-size: 13px;
    }
    
    .application-wrapper {
        margin: 0;
        padding: 1rem 0;
    }
    
    .application-container-left {
        width: 100%;
    }
    
    .application-container-title > span {
        font-size: 30px;
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .application-container-desc > span {
        text-align: center;
    }
    
    .home-parallax-text > span {
        width: 100%;
        font-size: 20px;
    }
    
    .home-parallax-text {
        padding: 50px 0;
    }
    
    .art-branches-tab {
        padding: 1rem;
    }
    
    .branches-swiper-content {
        flex-direction: column;
    }
    
    .branches-content-left {
        width: 100%;
    }
    
    .branches-content-right {
        width: 100%;
    }
    
    .branches-content-desc {
        text-align: center;
    }
    
    .art-branches-bottom {
        margin-top: 2rem;
    }
    
    .art-branches-wrapper {
        padding-bottom: 0;
    }
    
    .art-branches-nav > ul {
        flex-wrap: wrap;
    }
    
    .branchesSwiper {
        padding: 1rem 0;
    }

    .branches-content-name {
        text-align: center;
    }

    .header-logo {
        width: 150px;
    }
    
    .header-container {
        padding: 1rem;
    }

    .header-menu-container > ul {
        width: 100%;
    }
    
    .header-menu-remove {
        right: 1rem;
    }
    
    .header-menu-remove > i {
        font-size: 35px;
    }
    
    .header-menu-image-left,
    .header-menu-image-right,
    .menu-animation-4,
    .menu-animation-2,
    .circle-animation-1,
    .circle-animation-4 {
        display: none;
    }
    
    .menu-animation-6 {
        top: 35%;
    }

    .application-form-page-bottom-title > span {
        width: 100%;
    }
    
    .form-group {
        width: 100%;
    }

    .form-modal {
        width: 98%;
    }
    
    .form-modal-info > span {
        font-size: 13px;
    }

    .form-modal-btn.sartname-check-btn > a {
        width: 100%;
        font-size: 12px;
    }
    
    .form-modal-btn.sartname-check-btn {
        gap: 1rem;
        flex-direction: column;
    }

    .success-page-text > span {
        font-size: 45px;
    }

    .art-branches-title > span {
        font-size: 40px;
    }
}