/*
[Master Stylesheet] 
Project: Dance Academy Html
-------------------------------------------------------------------*/

/********************************************************
    body start
 *******************************************************/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@300;400;500;600;700;800&display=swap');
:root {
    --dc-primary-color: #BC50FF;
    --dc-white-color: #ffffff;
    --dc-black-color: #222222;
    --dc-font-color: #EAEAEA;
    --dc-transition: all 0.3s;
}

html {
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
    border-radius: 10px;
}

*::-webkit-scrollbar {
    width: 4px;
    background-color: #F5F5F5;
}

*::-webkit-scrollbar-thumb {
    border-radius: 1rem;
    background: var(--dc-black-color);
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--dc-font-color);
    background-color: #070518;
}

a,
a:hover,
a:focus,
button,
button:hover,
button:focus {
    text-decoration: none;
    -webkit-transition: var(--dc-transition);
    -moz-transition: var(--dc-transition);
    -ms-transition: var(--dc-transition);
    -o-transition: var(--dc-transition);
    transition: var(--dc-transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-transition: var(--dc-transition);
    -moz-transition: var(--dc-transition);
    -ms-transition: var(--dc-transition);
    -o-transition: var(--dc-transition);
    transition: var(--dc-transition);
    margin: 0;
    padding: 0;
    word-break: break-word;
    color: var(--dc-white-color);
    font-family: 'Inter', sans-serif;
}

h5 {
    font-size: 18px;
    font-weight: 500;
}

h4 {
    font-size: 24px;
    font-weight: 700;
}

h3 {
    font-size: 32px;
    font-weight: 700;
}

h2 {
    font-size: 50px;
    font-weight: 700;
}

h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.32;
}

input,
textarea,
select,
button,
label,
svg,
svg path,
svg rect,
svg polygon,
img,
a,
:after,
:before,
:hover,
:focus {
    outline: none !important;
    box-shadow: none;
    border: none;
    text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

p {
    margin: 0px;
    word-break: break-word;
}

/********************************************************
    Button Style
 *******************************************************/

.dc_btn {
    min-height: 45px;
    border-radius: 5px;
    min-width: 160px;
    width: fit-content;
    color: var(--dc-white-color);
    background: var(--dc-primary-color);
    padding: 10px;
    border: none;
    transition: var(--dc-transition);
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid transparent;
}

.dc_btn:hover {
    color: var(--dc-white-color);
    background: transparent;
    border: 1px solid var(--dc-white-color);
}

/********************************************************
    Common Style
 *******************************************************/

section {
    padding: 100px 0;
}

.row {
    row-gap: 30px;
}

.menu-open {
    overflow: hidden;
}

.dc_body_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99;
    background-color: rgb(0 0 0 / 40%);
    opacity: 0;
    visibility: hidden;
    transition: var(--dc-transition);
    cursor: zoom-out;
}

.menu-open .dc_body_overlay {
    opacity: 1;
    visibility: visible;
}

.dc_close {
    position: absolute;
}

.dc_main_wrapper {
    width: 100%;
    height: 100%;
}

.dc_section_heading {
    text-align: center;
    margin-bottom: 20px;
    z-index: 1;
    position: relative;
}

.dc_section_heading h3 {
    margin-bottom: 15px;
    text-transform: capitalize;
}

.dc_section_heading p {
    max-width: 480px;
    margin: auto;
}

/********************************************************
    Go to Top Style
 *******************************************************/

.dc_top_icon a {
    display: flex;
    background-color: var(--dc-primary-color);
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: var(--dc-transition) opacity 0;
    visibility: hidden;
    z-index: 1000;
    cursor: pointer;
    animation: border-transform 4s linear infinite alternate forwards;
}

@keyframes border-transform {
    0% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(0px);
    }
    14% {
        border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
    }
    28% {
        border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
    }
    42% {
        border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
    }
    56% {
        border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
    }
    70% {
        border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
    }
    84% {
        border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
    }
    100% {
        border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
        transform: translateY(-20px);
    }
}

.dc_top_icon a:active {
    background-color: var(--dc-black-color);
}

.dc_top_icon a.show {
    opacity: 1;
    visibility: visible;
}

/********************************************************
    Header Section Style
*******************************************************/

.dc_header_wrapper {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    padding: 15px 0;
}

.dc_navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.dc_nav_item {
    display: flex;
    align-items: center;
    gap: 65px;
}

.dc_res_logo {
    display: none;
}

.dc_nav_item ul {
    display: flex;
    gap: 45px;
}

.dc_nav_item ul li a {
    color: var(--dc-white-color);
}

.dc_nav_item ul li a:hover {
    color: var(--dc-primary-color);
}

.dc_nav_btn {
    display: flex;
    align-items: center;
    gap: 25px;
}

.dc_nav_btn span {
    display: none;
    cursor: pointer;
}

/********************************************************
    Banner Section Style
*******************************************************/

.dc_banner_wrapper {
    background-image: url(../images/banner-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 110px 0 35px;
}

.dc_banner_wrapper::before {
    content: "";
    position: absolute;
    background-image: url(../images/banner-shaps.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 88px;
    left: 4px;
    animation: floating 10s infinite alternate;
}

@keyframes floating {
    from {
        transform: rotate(0deg) translate(-12px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translate(-12px) rotate(-360deg);
    }
}

.dc_banner_text {
    text-align: center;
    max-width: 1042px;
    margin: auto;
    position: relative;
    z-index: 1;
}

.dc_banner_text h1 span {
    color: var(--dc-primary-color);
}

.dc_banner_btn {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.dc_banner_btn a:first-child {
    background: transparent;
    border: 1px solid var(--dc-white-color);
}

.dc_banner_btn a:first-child:hover {
    border: 1px solid transparent;
    background: var(--dc-primary-color);
}

.dc_banner_content {
    text-align: center;
    position: relative;
    background-image: url(../images/banner-img-bg.webp);
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 88%;
    margin-top: -85px;
    background-size: auto;
}

.dc_banner_content img {
    animation: dc_ud 3s infinite alternate;
}

@keyframes dc_ud {
    0% {
        transform: translate(0)
    }
    to {
        transform: translateY(-10px)
    }
}

/********************************************************
    Magnificent Demos Section Style
*******************************************************/

.dc_magnificent_wrapper {
    background-image: url(../images/magnificent_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.dc_magnificent_wrapper .dc_section_heading p {
    max-width: 550px;
}

.dc_magnificent_content {
    display: flex;
    gap: 40px 110px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1170px;
    margin: auto;
}

.dc_magnificent_box {
    background-image: url(../images/magnificent_box_bg.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% 81%;
    position: relative;
    border-radius: 20px;
    transition: var(--dc-transition);
}

.dc_magnificent_box img {
    border-radius: 20px;
    object-fit: cover;
    transform: translate(40px, 40px);
    transition: var(--dc-transition);
}

.dc_magnificent_box:hover img {
    transform: translate(20px, 20px);
}

.dc_magnificent_box.box-2:hover img {
    transform: translate(-20px, 20px);
}

.dc_magnificent_box.box-2 img {
    transform: translate(-40px, 40px);
}

.dc_magnificent_btn a {
    margin: 70px auto 0;
    transform: translateX(40px);
}

.dc_magnificent_box.box-2 .dc_magnificent_btn a {
    transform: translateX(-40px);
}

.dc_magnificent_box.box-right {
    text-align: right;
    background-position: right;
}

.new-tag {
    width: 80px;
    display: flex;
    align-items: center;
    height: 35px;
    border-radius: 0 10px 10px 0px;
    background: #FF3FCE;
    position: absolute;
    top: 20px;
    left: 0px;
    justify-content: center;
    font-size: 15px;
    color: #fff;
}

/********************************************************
    Responsive Section Style
*******************************************************/

.dc_responsive_content {
    background-image: url(../images/res_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 0;
    border-radius: 20px;
    position: relative;
    max-width: 98%;
    margin: auto;
    overflow: hidden;
}

.dc_responsive_content::before {
    content: "";
    position: absolute;
    background-image: url(../images/res_shaps.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 37px;
    left: 42px;
    animation: floating 10s infinite alternate;
    max-width: 1790px;
}

.dc_responsive_img {
    position: relative;
    z-index: 1;
    text-align: center;
}

.dc_res_girl {
    right: 7px;
    position: absolute;
    bottom: 0px;
}

.dc_res_girl img {
    animation: dc_ud 3s infinite alternate;
}

/********************************************************
    Inner Page Section Style
*******************************************************/

.dc_inr_page_wrapper {
    background-image: url(../images/inner-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.dc_inr_page_wrapper .dc_section_heading p{
    max-width: 525px;
}

.dc_inr_page_content {
    display: flex;
    gap: 60px 40px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1602px;
    margin: auto;
}

.dc_inner_box {
    text-align: center;
}

.dc_inner_img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 507px;
    margin: auto;
    z-index: 1;
}

.dc_inner_img a {
    position: absolute;
    background: rgb(255 255 255 / 30%);
    backdrop-filter: blur(2px);
    left: 0;
    right: 0;
    top: 50%;
    bottom: 50%;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0, 0.25, 0.25, 1);
    -webkit-transition: all 0.3s cubic-bezier(0, 0.25, 0.25, 1);
    -moz-transition: all 0.3s cubic-bezier(0, 0.25, 0.25, 1);
    -ms-transition: all 0.3s cubic-bezier(0, 0.25, 0.25, 1);
    -o-transition: all 0.3s cubic-bezier(0, 0.25, 0.25, 1);
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dc_inner_box:hover .dc_inner_img a {
    top: 0;
    bottom: 0;
    transform: none;
    opacity: 1;
    visibility: visible;
}

.dc_inner_img a svg {
    width: 50px;
    fill: var(--dc-white-color);
    background-color: var(--dc-primary-color);
    padding: 10px;
    border-radius: 50%;
}

.dc_inner_img img {
    object-fit: cover;
}

.dc_inner_name {
    max-width: 410px;
    margin: auto;
    text-align: center;
    background-color: var(--dc-primary-color);
    border-radius: 0 0 20px 20px;
    padding: 17px 15px;
    transition: var(--dc-transition);
}

.dc_inner_box:hover .dc_inner_name {
    transform: translateY(-40px);
}

/********************************************************
    Shop Page Section Style
*******************************************************/

.dc_shop_wrapper {
    position: relative;
    overflow: hidden;
}

.dc_shop_content {
    background-image: url(../images/shop_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0;
    border-radius: 20px;
    position: relative;
    max-width: 98%;
    margin: auto;
    overflow: hidden;
}

.dc_shop_content::before {
    content: "";
    position: absolute;
    background-image: url(../images/shop_shaps.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 45px;
    left: 30px;
    animation: floating 10s infinite alternate;
    max-width: 1790px;
}

.dc_shop_img {
    position: relative;
    z-index: 1;
    text-align: center;
}

.dc_shop_boy {
    left: 0;
    position: absolute;
    bottom: -35px;
    z-index: 1;
}

.dc_shop_boy img {
    animation: dc_ud 3s infinite alternate;
}

/********************************************************
    Features Section Style
*******************************************************/

.dc_features_wrapper {
    background-image: url(../images/features-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.dc_features_content {
    display: flex;
    gap: 67px 30px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1170px;
    margin: 15px auto 13px;
}

.dc_features_box {
    position: relative;
    filter: drop-shadow(2px 4px 21px rgba(0, 0, 0, 0.05));
    border-radius: 20px;
    min-width: 270px;
    max-height: 118px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--dc-transition);
    /*cursor: pointer;*/
}

.dc_features_box:hover {
    transform: translateY(-5px);
}

.dc_features_box.box-1 {
    background: linear-gradient(136deg, #4A50EF 0%, #7F83F5 98.03%);
}

.dc_features_box.box-2 {
    background: linear-gradient(136deg, #FF7070 0%, #FF9494 98.03%);
}

.dc_features_box.box-3 {
    background: linear-gradient(136deg, #FFB168 0%, #FFCB9B 98.03%);
}

.dc_features_box.box-4 {
    background: linear-gradient(136deg, #5CD648 0%, #83EF72 98.03%);
}

.dc_features_box.box-5 {
    background: linear-gradient(136deg, #FF5BDB 0%, #FFA6EC 98.03%);
}

.dc_features_box.box-6 {
    background: linear-gradient(136deg, #53CDE8 0%, #89EAFF 98.03%);
}

.dc_features_box.box-7 {
    background: linear-gradient(136deg, #B770FF 0%, #D0A3FF 98.03%);
}

.dc_features_box.box-8 {
    background: linear-gradient(136deg, #3EBA95 0%, #80E4C7 98.03%);
}

.dc_features_box.box-9 {
    background: linear-gradient(136deg, #FF964A 0%, #FFBF90 98.03%);
}

.dc_features_box.box-10 {
    background: linear-gradient(136deg, #84C532 0%, #A6D966 98.03%);
}

.dc_features_box.box-11 {
    background: linear-gradient(136deg, #D41FF1 0%, #F3A9FF 98.03%);
}

.dc_features_box.box-12 {
    background: linear-gradient(136deg, #F55 0%, #FF9595 98.03%);
}

.dc_features_box.box-13 {
    background: linear-gradient(136deg, #DBB800 0%, #F3E079 98.03%);
}

.dc_features_box.box-14 {
    background: linear-gradient(136deg, #558FFF 0%, #9BBDFF 98.03%);
}

.dc_features_box.box-15 {
    background: linear-gradient(136deg, #43D8BD 0%, #98F4E4 98.03%);
}

.dc_features_box.box-16 {
    background: linear-gradient(136deg, #67C32E 0%, #8EEE53 98.03%);
}

.dc_features_box.box-17 {
    background: linear-gradient(136deg, #8543D8 0%, #C9A6F4 98.03%);
}

.dc_features_box.box-18 {
    background: linear-gradient(136deg, #4A50EF 0%, #7F83F5 98.03%);
}
.dc_features_box.box-19 {
    background: linear-gradient(136.18deg, #7F52A5 0%, #AA88C8 98.03%);
}
.dc_features_box.box-20 {
    background: linear-gradient(136.18deg, #0372AA 0%, #5DB2DC 98.03%);
}

.dc_features_box_inner {
    position: relative;
    background-color: var(--dc-white-color);
    min-width: 262px;
    text-align: center;
    padding: 25px 15px;
    border-radius: 20px;
    filter: drop-shadow(2px 4px 21px rgba(0, 0, 0, 0.05));
}

.dc_features_icon img {
    border-radius: 10px;
    object-fit: cover;
    transition: var(--dc-transition);
}

.dc_features_box:hover .dc_features_icon img {
    transform: rotateY(360deg);
}

.dc_features_box_inner h5 {
    color: var(--dc-black-color);
    margin-top: 12px;
}

/********************************************************
    Browsers Compatibility Section Style
*******************************************************/

.dc_browsers_wrapper {
    position: relative;
}

.dc_browsers_content {
    background-image: url(../images/brows_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0 0;
    border-radius: 20px;
    position: relative;
    max-width: 98%;
    margin: auto;
    overflow: hidden;
}

.dc_browsers_content::before {
    content: "";
    position: absolute;
    background-image: url(../images/brows_shaps.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 54px;
    left: 0;
    animation: floating 10s infinite alternate;
    max-width: 1810px;
}

.dc_browsers_img {
    position: relative;
    z-index: 1;
    text-align: center;
}

.dc_browsers_img img {
    backdrop-filter: blur(3px);
}

.dc_brows_boy {
    right: 20px;
    position: absolute;
    bottom: 0;
}

.dc_brows_boy img {
    animation: dc_ud 3s infinite alternate;
    max-width: 450px;
}

.dc_brows_res_img {
    display: none;
    text-align: center;
    z-index: 1;
    position: relative;
}

.dc_brows_res_img img:first-child {
    margin-bottom: 30px;
}

/********************************************************
    Installation Section Style
*******************************************************/

.dc_installation_wrapper {
    background-image: url(../images/installation_bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 80px 0;
}

.dc_installation_content {
    padding-left: 15px;
}

.dc_installation_content h3 {
    margin-bottom: 15px;
}

.dc_installation_content p {
    margin-bottom: 20px;
}

.dc_installation_content p:last-child {
    margin: 0;
}

/********************************************************
    Footer Section Style
*******************************************************/

.dc_footer_wrapper {
    background-image: url(../images/footer-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    padding-top: 90px;
}

.dc_footer_wrapper::before {
    content: "";
    position: absolute;
    background-image: url(../images/footer_shaps.webp);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    top: 40px;
    left: 95px;
    animation: floating 10s infinite alternate;
    max-width: 1796px;
}

.dc_footer_content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.dc_footer_boy {
    position: absolute;
    bottom: -50px;
    right: 8%;
}

.dc_footer_boy img {
    animation: dc_ud 3s infinite alternate;
}

/********************************************************
    Copyright Section Style
*******************************************************/

.dc_copyright_wrapper {
    background: #0A0720;
    padding: 14px 0;
    overflow: hidden;
    z-index: 1;
    position: relative;
}

.dc_copyright_text {
    text-align: center;
}

.dc_footer_content h4 {
    margin: 20px 0 10px;
}