a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}table{border-collapse:collapse;border-spacing:0}*{margin:0;padding:0;box-sizing:border-box}a,button{border:none;outline:0;text-decoration:none;background-color:none}
html{
    overflow: hidden auto;
}
body {
    font-family: "Cabin", serif;
    background: #000000;
    overflow: hidden auto;
}


/* #region Header */

.header_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5vw 2vw;
}

.spaces-area {
    display: flex;
    align-items: center;
    gap: 1vw;
}

.logo img {
    height: 1.5vw;
}

.nav_link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
}

.nav_link a {
    color: #0000007e;
    font-weight: 500;
    font-size: 1vw;
    text-transform: capitalize;
}

.nav_link a:hover {
    color: #4960F0;
}

.theme_button,
.theme_button_border {
    background: #5554D3;
    border-radius: 0.6vw;
    padding: 1vw 2vw;
    font-size: 1vw;
    color: #fff;
    display: block;
    width: fit-content;
    border: 1px solid #5554D3;
}

.theme_button_border {
    background: transparent;
    border: 1px solid #ffffff98;
}

.ham {
    background: transparent;
    font-size: 3.5vw;
    display: none;
}



@media (max-width:991px) {
    .logo img {
        height: 3vw;
    }

    .theme_button,.theme_button_border {
        padding: 1.5vw 2.5vw;
        font-size: 1.5vw;
        border-radius: 1vw;
    }

    .nav_link a {
        font-size: 1.5vw;
    }

    .nav_link {
        gap: 1.5vw;
    }
}

@media (max-width: 767px) {
    .logo img {
        height: 3.5vw;
    }

    .theme_button,.theme_button_border {
        padding: 2vw 4vw;
        font-size: 2vw;
    }

    .for_web {
        display: none;
    }

    .nav_link {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .spaces-area {
        display: flex;
        align-items: center;
        gap: 1vw;
        max-width: fit-content;
        width: fit-content;
    }

    .ham {
        display: block;
        color: #fff;
    }

    .nav_link a {
        font-size: 3vw;
    }
}

@media (max-width: 600px) {
    .logo img {
        height: 22px;
    }

    .theme_button,.theme_button_border {
        padding: 14px 25px;
        font-size: 14px;
        border-radius: 9px;
    }

    .ham {
        font-size: 24px;
    }

    .spaces-area {
        gap: 12px;
    }

    .nav_link a {
        font-size: 20px;
    }

    .nav_link {
        gap: 14px;
    }
}
@media (max-width: 500px) {
    .no_sm{
        display: none;
    }
    .header_area{
        padding: 10px 1rem;
    }
}
@media (max-width: 375px) {
    .logo img {
        height: 18px;
    }

    .theme_button {
        padding: 12px 20px;
        font-size: 12px;
    }

    .ham {
        font-size: 20px;
    }
}

/*#endregion */


/*#region Main Heading*/
.main_heading_area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main_heading_area>img {
    width: 7vw;
}

.main_heading_area>h2 {
    font-size: 4vw;
    font-weight: 500;
    line-height: 1.2;
    color: #fff;
    margin-top: -4vw;
    text-transform: capitalize;
    text-align: center;
    font-family: "Alumni Sans", serif;
}

.main_heading_area>p {
    font-size: 1vw;
    font-weight: 400;
    line-height: 1.7;
    color: #ffffff85;
    max-width: 620px;
    text-align: center;
    margin-top: 14px;
}
.main_heading_area>h2>span {
    color: #29C6A9;
    font-style: italic;
}

@media (max-width: 991px) {
    .main_heading_area>h2 {
        font-size: 4vw;
    }
    .main_heading_area>p {
        font-size: 1.5vw;
        max-width: 400px;
    }
    .main_heading_area>img {
        width: 9vw;
    }
}

@media (max-width: 600px) {
    .main_heading_area>h2 {
        font-size: 32px;
        margin-top: -1.5rem;
    }

    .main_heading_area>p {
        font-size: 14px;
    }

    .main_heading_area>img {
        width: 75px;
    }
}

@media (max-width: 450px) {
    .main_heading_area>h2 {
        font-size: 24px;
        margin-top: -1rem;
    }

    .main_heading_area>p {
        font-size: 14px;
    }

    .main_heading_area>img {
        width: 62px;
    }
}

/*#endregion*/


/*#region Join us section */
.section-7 {
    background: #5554D3;
    padding: 100px 1rem;
}

.box_head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sec_box-1>p {
    font-size: 20px;
    color: #ffffffa8;
    text-align: center;
    margin: 0 auto;
    margin-top: 1rem;
    max-width: 950px;
    line-height: 1.5;
    max-width: 1500px;
    font-size: 30px;
    color: #fff;
}

.head_box {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(130deg, #3737cda6, #5454d32e);
    transform: rotate(45deg);
}

.box_head h2 {
    font-family: "Alumni Sans", sans-serif;
    font-size: 100px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    margin-top: -4rem;
    z-index: 1;
}


@media (max-width: 1680px) {
    .sec_box-1>p {
        font-size: 18px;
    }

    .box_head h2 {
        font-size: 85px;
    }
}

@media (max-width: 1399px) {
    .box_head h2 {
        font-size: 65px;
        margin-top: -3rem;
    }

    .sec_box-1>p {
        max-width: 900px;
    }
}

@media (max-width: 1280px) {
    .sec_box-1>p {
        max-width: 750px;
        font-size: 16px;
    }
}

@media (max-width: 1080px) {
    .box_head h2 {
        font-size: 56px;
        margin-top: -2rem;
    }
}

@media (max-width: 767px) {
    .sec_box-1>p {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .box_head h2 {
        font-size: 46px;
        margin-top: -2rem;
    }

    .head_box {
        width: 90px;
        height: 90px;
        border-radius: 15px;
    }
}

/*#endregion*/


/* #region Footer */

.footer-section {
    background: #141414;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #fff;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

.cta-text h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 2px;
}

.cta-text span {
    color: #757575;
    font-size: 15px;
}

.footer-content {
    position: relative;
    z-index: 2;
    padding: 80px;
    display: flex;
    justify-content: space-between;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo select {
    border-radius: 50px;
    background: transparent;
    color: #fff;
    box-shadow: none !important;
    border-color: #fff !important;
}

.footer-logo option {
    background: #141414;
}

.footer-logo img {
    height: 45px;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 200px;
}

.quickLinks {
    display: flex;
    gap: 80px;
}

.footer-widget-heading {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-widget ul li a:hover {
    color: #fff;
}

.footer-widget ul li a {
    color: #878787;
    font-size: 16px;
    display: block;
    font-weight: 300;
    text-transform: capitalize;
    padding: 7px 0;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    background: #fff;
    padding: 13px 20px;
    border: 1px solid #fff;
    top: 0;
}

.subscribe-form button i {
    color: #fff;
    font-size: 22px;
    transform: rotate(-6deg);
}

.copyright-area {
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #878787;
}

.copyright-text p a {
    color: #fff;
}

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

.footer-menu li:hover a {
    color: #fff;
}

.footer-menu li a {
    font-size: 14px;
    color: #878787;
}

.foot_link,
.foot_tel,
.foot_address {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
    display: block;
}

.foot_link {
    text-decoration: underline;
}

.copyright {
    padding: 0 80px;
}

.copyright-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #ffffff7e;
    padding: 32px 0;
}

.artist_card {
    padding: 0;
    border-radius: 0;
    border: 0;
    max-width: 300px;
}

.artist_card>img {
    border-radius: 20px;
}

.artist_card h2 {
    font-size: 22px;
}

.artist_card p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5554D3;
    font-size: 18px;
    line-height: 1.3;
}

.artist_card p img {
    height: 18px;
}

.ammenties_area {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 3rem 0;
}

.ammenties_card {
    border: 1px solid #ffffff56;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 145px;
    flex-basis: 30%;
}

.ammen_row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ammen_row>img {
    height: 18px;
}

.ammen_row>h2 {
    font-size: 22px;
    color: #fff;
    line-height: 1.2;
}

.amin_para {
    font-size: 18px;
    color: #ffffff81;
    line-height: 1.4;
}

@media (max-width: 1280px) {
    .footer-content {
        padding: 60px;
    }

    .copyright {
        padding: 0 60px;
    }
    .copyright-area {
        padding: 28px 0;
    }
}

@media (max-width: 1160px) {
    .footer-content {
        padding: 50px;
    }
    .copyright {
        padding: 0 50px;
    }
    .quickLinks {
        gap: 45px;
    }
}

@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    .footer-logo select {
        max-width: 200px;
    }
    .quickLinks {
        justify-content: space-between;
    }
}

@media (max-width: 600px) {
    .footer-content {
        padding: 50px 1rem;
    }
    .copyright {
        padding: 0 1rem;
    }
    .quickLinks {
        gap: 1rem;
    }
    .footer-widget ul li a {
        font-size: 14px;
    }
    .copyright-area {
        padding: 20px 0;
        flex-direction: column-reverse;
        gap: 1rem;
    }
    .footer-menu li {
        margin-left: 0;
    }
}
@media (max-width: 460px) {
    .quickLinks {
        gap: 3rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}
/*#endregion */