/*MAJOR START*/
.majors-box .major-item {
    aspect-ratio: 16 / 9;
    background-color: #0a78c3;
}

/*MAJOR END*/
.sp-registration-item {
    height: fit-content;
    background-color: #fff;
    padding-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 0 10px #0003;
}


.registration-item {
    background-color: #0a78c3;
    height: 20rem;
}

.mySwiper .swiper-slide a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
}

.mySwiper .swiper-slide a span {
    font-weight: 700;
    font-size: 1.5rem;
}

.mySwiper .swiper-slide a img {
    border-radius: 3rem;
    width: 70%;
    aspect-ratio: 1 / 1;
}

.pink-box {
    background: #af206f;
}

.purple-box {
    background: #523176;
}

.blue-box {
    background: #1e8caf;
}

.green-box {
    background: #60a723;
}

.yellow-box {
    background: #f8b608;
}

.orange-box {
    background: #f5691c;
}


.rainbow-box div {
    width: 4rem;
    height: 6.5rem;
}

.courses-box {
    min-width: 20rem;
}

.courses-box div {
    border-radius: 1rem;
    white-space: nowrap;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-banner-content p {
    font-weight: 700;
    color: #ad2368;
}

.main-banner-content .rainbow-box div {
    width: 3rem;
    height: 2.5rem;
}

.mySwiper .swiper-pagination {
}


.icon-bar .icon-bar-item .icon-bar-img {
    /*border-radius: 30% 70% 33% 67% / 65% 33% 67% 35%;*/
    aspect-ratio: 1 / 1;
    background: #fff;
    filter: drop-shadow(2px 4px 6px rgb(51 65 85 / 16%));
    overflow: hidden;
    transition: .25s;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-bar .icon-bar-item:nth-child(1) .icon-bar-img {
    animation: radius1 5s infinite alternate;
}

.icon-bar .icon-bar-item:nth-child(2) .icon-bar-img {
    animation: radius3 5s infinite alternate;
}

.icon-bar .icon-bar-item:nth-child(3) .icon-bar-img {
    animation: radius2 5s infinite alternate;
}

.icon-bar .icon-bar-item:nth-child(4) .icon-bar-img {
    animation: radius3 5s infinite alternate;
}

.icon-bar .icon-bar-item:nth-child(5) .icon-bar-img {
    animation: radius1 5s infinite alternate;
}

.icon-bar .icon-bar-item:hover .icon-bar-img {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}


@keyframes radius1 {
    0% {
        border-radius: 40% 70% 70% 45% / 32% 35% 75% 65%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

@keyframes radius2 {
    0% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;

    }
    25% {
        border-radius: 40% 70% 70% 45% / 32% 35% 75% 65%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;

    }
    100% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;

    }
}


@keyframes radius3 {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;

    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
    75% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    100% {
        border-radius: 40% 70% 70% 45% / 32% 35% 75% 65%;

    }
}


.icon-bar-item:hover img {
    filter: unset !important;
}

.icon-bar-item:hover span {
    color: #9865e3;
}

.icon-bar-item span {
    position: unset !important;
    opacity: 1;
    color: #8dddf9;
    text-shadow: unset;
    transition: .25s;
    margin-top: 2.5rem;
}


.icon-bar-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    flex: unset;
    width: unset;
}

.icon-bar-item:hover span {
    bottom: unset;
    transform: unset !important;
    opacity: unset;
}


.container:after, .container:before {
    content: unset;
}

.modal-works {
    display: grid;
}

.modal-works a {
    flex: 1;
}


.modal-works a img {
    transition: .25s;
}


.modal-works a img {

    border-radius: 1rem;
    overflow: hidden !important;
}

.modal-works a span {
	font-size: 1.7rem;
	line-height: 1.7rem;
	margin-bottom: 2rem;
	margin-top: -1rem;
	transition:all .34s;
}

@keyframes hue {
    0% {
        filter: hue-rotate(0deg);
    }
    25% {
        filter: hue-rotate(25deg);
    }
    50% {
        filter: hue-rotate(50deg);
    }
    75% {
        filter: hue-rotate(75deg);
    }
    100% {
        filter: hue-rotate(100deg);
    }
}


.modal-works a:hover img {
    border-radius: 50% !important;
    animation: hue 1s infinite alternate;
    transform: rotate(15deg);

}



@media (min-width: 0px) {
    .main-banner-content p {
        font-size: 1.6rem;
    }

    .courses-box div {
        font-size: 1rem;
    }

    .majors-box .major-item {
        width: 100%;
        flex: 1 auto;
        height: 10rem !important;
    }


    .icon-bar .icon-bar-item {
        width: 12rem;
    }

    .modal-works {
        display: grid;
        grid-template-columns: repeat(2, minmax(100px, 1fr));
        gap: 1rem;
    }

    .modal-works a img {
        width: 10rem;
    }

}

@media (min-width: 350px) {
    .courses-box div {
        font-size: 1.5rem;
    }

    .main-banner-content p {
        font-size: 2rem;
    }

    .majors-box .major-item {
        width: unset;
        flex: 1 auto;
        height: 8rem !important;
    }
}

@media (min-width: 576px) {
    .courses-box div {
        font-size: 2rem;
        margin-right: 1rem;
    }

    .icon-bar .icon-bar-item {
        width: 15rem;
    }

    .modal-works {
        display: grid;
        grid-template-columns: repeat(3, minmax(100px, 1fr));
    }

    .modal-works a img {
        width: 12rem;
    }

    .majors-box .major-item {
        text-shadow: 0 0 12px #000a, 0 0 4px #000a;
        transition: all .5s;
    }

    .majors-box .major-item:hover {
        text-shadow: 0 0 12px #000, 0 0 4px #000, 0 0 2px #000;
        color: #fff;
        transition: all .2s;
        transform: scale(1.1);
        box-shadow: 0 0 14px #000a;
    }

    .icon-bar-item img {
        transform: scale(.86);
    }

    .icon-bar-item:hover img {
        transform: scale(1.1);
    }
}

@media (min-width: 992px) {
    .main-banner-content p {
        font-size: 3rem;
    }
}

@media (min-width: 1200px) {
    .main-banner-content p {
        font-size: 3.4rem;
    }

    .majors-box .major-item {
        width: 20%;
        flex: unset;
        height: 13rem !important;

    }

    .icon-bar .icon-bar-item {
        width: 17rem;
    }
}
.modal#studentsworks .modal-body{
	overflow-y: auto;
	max-height: calc(100vh - 14rem);
}

.modal-works a.gray img {
	filter:grayscale(100%) opacity(.77);
	cursor: auto;
}
.modal-works a:hover span {
	transform:scale(1.1);
	color:#000;
	transition:all .14s;
}
.modal-works a.gray span {
		color: #000a;
}
.modal-works a.gray:hover span {
	transform:scale(1);
}
.modal-works a.gray:hover img {
  border-radius: 0 !important;
  animation: none;
  transform: none;
}

@media (min-width: 992px) {
    .main-slider .carousel-inner {
        aspect-ratio: 1920 / 1000 !important;
    }
}

.container-slider{
    max-width : 1450px;
}

.footer {
    background-image: url(../img/footer.svg);
}
.login-notif::before {
    background-image: url(../img/bg-user-menu.svg);
}
.login-notif::after {
    background-image: url(../img/loginbef.svg);=
}
.log-btn {
    color: white !important;
    background-color: #ffa500 !important;
}

