* {
    margin: 0;
    padding: 0;
}

html,
body {
    /* font-family: 'NT Josefine'; */
    font-family: 'Helvetica Now Display';
    width: 100%;
    height: 100%;
}


/* @font-face {
    font-family: 'NT Josefine';
    src: url('../font/fonts/NT-Josefine-only-personal-use.eot');
    src: url('../font/fonts/NT-Josefine-only-personal-use.eot?#iefix') format('embedded-opentype'),
         url('../font/fonts/NT-Josefine-only-personal-use.woff2') format('woff2'),
         url('../font/fonts/NT-Josefine-only-personal-use.woff') format('woff'),
         url('../font/fonts/NT-Josefine-only-personal-use.ttf')  format('truetype'),
         url('../font/fonts/NT-Josefine-only-personal-use.svg#NT Josefine') format('svg');
} */

@font-face {
    font-family: 'Helvetica Now Display';
    src: url('../font/fontss/Helvetica-Now-Display.eot');
    src: url('../font/fontss/Helvetica-Now-Display.eot?#iefix') format('embedded-opentype'),
         url('../font/fontss/Helvetica-Now-Display.woff2') format('woff2'),
         url('../font/fontss/Helvetica-Now-Display.woff') format('woff'),
         url('../font/fontss/Helvetica-Now-Display.ttf')  format('truetype'),
         url('../font/fontss/Helvetica-Now-Display.svg#Helvetica Now Display') format('svg');
}

:root {
    --black: #000000;
    --blue: #022163;
    --dark-blue: #012267;
    --white : #FFFFFF;
    --light-blue : #ADC3F0;
    --light-line:#375086;
    --gray-line: #949494;
    --dark-gray: #E1E4ED;
}
/************************ first_section **********************/
.first_section{
    width: 100%;
    height: auto;
    background-image: url("../img/melodify/banner.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.header_section{
    width: 100%;
    max-width: 1050px;
    margin: auto;
}
.header_menu{
    padding: 33px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.header_menu_list ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    margin: 0;
}
.header_menu_list ul li{
    list-style-type: none;
    margin: 0 0 0  30px;
}
.header_menu_list ul li a{
    text-decoration: none;
    color: #dedede;
    font-size: 18px;
    font-weight: 500;
}
.spotify_clone ul li a.active{
    color: var(--white);
    font-weight: 700;
}

.header_menu_list ul li a:hover{
    color: var(--white);
}
.menu_toggle{
    display: none;
}

.menu_toggle img{
    width: 30px;
}
.melodify_header_content{
    padding: 140px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.melodify_left_content h1{
    color: var(--white);
    font-weight: 800;
    font-size: 80px;
    line-height: 86px;
    position: relative;
    max-width: 370px;
    margin: 0;
}
.melodify_left_content .clone_text{
    display: inline-block;
    padding: 8px 40px;
    font-weight: 600;
    color: var(--white);
    z-index: 1;
    border-radius: 30px;
    background-color: var(--black);
    font-size: 22px;
    line-height: initial;
    position: absolute;
    top: 50%;
    left: 17%;
    transform: translate(-50%,-50%) rotate(-7deg);
}
.melodify_left_content .clone_text::after{
    content: "";
    position: absolute;
    top: 3px;
    left: 7px;
    width: 91%;
    height: 85%;
    border: 2px solid var(--white);
    z-index: -1;
    border-radius: 30px;
}
.melodify_left_content h4{
    color: var(--white);
}
.melodift_header_btn{
    margin-top: 60px;
    display: flex;
    align-items: center;
}
.melodift_header_btn .buy_now{
    color: var(--white);
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    position: relative;
    padding: 8px 50px;
    display: inline-block;
    margin-right: 40px;
}
#header .fixed {
    position: fixed;
    top: 0;
    left: 0;
    animation: smoothScroll 1s forwards;
    width: 100%;
    z-index: 100;
    background-color: var(--black);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
.melodift_header_btn .buy_now::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    border: 2px solid var(--white);
    border-right: 0;
    transition: all .5s;
}
.melodift_header_btn .buy_now:hover::before{
    width: 50%;
}
.melodift_header_btn .buy_now::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    border: 2px solid var(--white);
    border-left: 0;
    transition: all .5s;

}
.melodift_header_btn .buy_now:hover::after{
    width: 50%;
}
.view_demo{
    position: relative;
}
.view_demo_btn{
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
}
.view_demo_btn:hover{
    color: var(--white);
}
.view_demo_menu{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,180%);
    display: block;
    opacity: 0;
    transition: all .5s;
}
.view_demo_menu ul{
    margin: 0;
    padding: 10px 25px;
    display: flex;
    flex-direction: row;
    background-color: var(--white);
    border-radius: 30px;
    position: relative;
}
.view_demo_menu ul::after{
    content: "";
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid var(--white);
    position: absolute;
    top: -17px;
    left: 50%;
    transform: translate(-50%,0%);
}
.view_demo_menu ul li{
    list-style-type: none;
    margin: 0 10px 0 0;
    border-right: 1px solid var(--black);
}
.view_demo_menu ul li a{
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    padding: 0 10px 0 0;
}
.view_demo_menu ul li:last-child{
    border: 0;
    margin: 0;
}

.view_demo:hover .view_demo_menu{
    opacity: 1;
}
.melodify_right_content img{
    width: 300px;
}
/************************ end_first_section **********************/


/************************ melodify_second_section **********************/
.melodify_second_section{
    border-bottom: 1px solid var(--dark-blue);
}
.melodify_second_section_content{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    align-items: center;
}
.melodify_second_section_content img{
    max-width: 120px;
    width: 100%;
}
.melodify_second_section_content img:last-child{
    max-width: 250px;
    width: 100%;
}
/************************ end_melodify_second_section **********************/

/************************ melodify_third_section **********************/
.melodify_third_left_content ul{
    padding: 0;
}
.melodify_third_left_content ul li {
    list-style-type: none;
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    font-size: 24px;
    margin-bottom: 12px;
}
.melodify_third_left_content ul li img{
    margin-right: 10px;
}
.melodify_third_left_content h4{
    margin: 0.5px;
    font-size: 24px;
    font-weight: 500;
}
.melodify_third_left_content h2{
    font-family: 'NT Josefine';
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 45px;
}
.melodify_third_left_content p{
    font-size: 22px;
    max-width: 590px;
    font-weight: 400;
    line-height: 34px;
    position: relative;
    margin: 0;
}
.melodify_third_left_content p::first-letter{
    font-family: 'NT Josefine';
    font-size: 42px;
    font-weight: 700;
}
.melodify_third_left_content p::after{
    content: "";
    position: absolute;
    top: -8px;
    left: -9px;
    width: 18px;
    height: 21px;
    background-color: var(--dark-gray);
    z-index: -1;
}
.melodify_third_right_content img{
    width: 100%;
}
.melodify_third_left_content_last_child h2{
    margin: 0 !important;
}
.melodify_third_left_content_last_child h4{
    margin-bottom: 45px;
}
.melodify_third_section_content .align_content{
    margin-bottom: 30px;
}
/************************ end_melodify_third_section **********************/


/************************ melodify_fourth_section **********************/
.melodify_fourth_section{
    width: 100%;
    height: auto;
    background-image: url("../img/melodify/dark_bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.melodify_fourth_left_first_content{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.melodify_fourth_left_first_content h3{
    margin: 0;
    color: var(--white);
    font-size: 94px;
    font-weight: bold;
    text-transform: uppercase;
}
.melodify_fourth_left_first_content a{
    color: var(--white);
    text-decoration: none;
    padding: 12px 58px;
    border: 1px solid var(--white);
    border-radius: 30px;
    margin-left: 30px;
    position: relative;
    font-weight: 700;
}
.melodify_fourth_left_first_content a:hover{
    background-color: var(--white);
    color: var(--black);
}
.melodify_fourth_left_content h3{
    margin: 0;
    color: var(--white);
    font-size: 90px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 86px;
}
.melodify_fourth_right_content h5{
    color: var(--white);
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 400;
}
.melodify_fourth_right_content h5:last-child{
    margin-bottom: 0;
}
.melodify_fourth_right_content h5::first-letter{
    font-family: 'NT Josefine';
    font-size: 42px;
    font-weight: 700;
}
.melodify_fourth_content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}
/************************ end_melodify_fourth_section **********************/

/************************ melodify_fifth_section **********************/
.melodify_fifth_content{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 89px;
    width: 100%;
    height: 100%;
    justify-content: center;
}
.melodify_box{
    width: auto;
    height: 574px;
    border-right: 2px solid var(--blue);
}
.melodify_box:last-child{
    border: 0;
}
.melodify_box:last-child .melodify_box_img img{
    transform: rotate(180deg);
}
.melodify_box:last-child .melodify_text{
    padding: 0 0 0 15px;
}
.melodify_box_content{
    position: relative;
}
.melodify_text{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0,-50%);
    padding: 0 0 0 30px;
}
.melodify_text h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.melodify_text p{
    font-size: 14px;
    margin: 0;
}
.melodify_fifth_content .melodify_box:nth-child(odd){
    padding-top: 180px;
}

/************************ end_melodify_fifth_section **********************/


/************************ melodify_sixth_section **********************/
.melodify_sixth_section_tab{
    margin-top: 100px;
}
.melodify_sixth_section_tab{
    display: flex;
    flex-direction: column;
}
.melodify_sixth_section_tab .tab_menu{
    position: relative;
}

.melodify_sixth_section_tab .tab_menu ul{
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: var(--white);
    padding: 25px 70px;
    font-family: 'NT Josefine';
    border-radius: 80px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 100;
    
}
.melodify_sixth_section_tab .tab_menu .nav-item{
    border-right: 2px solid var(--blue);
    padding: 0 52px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 0;
}
.melodify_sixth_section_tab .tab_menu .nav-item:last-child{
    border: 0;
}
.melodify_sixth_section_tab .tab_menu .nav-item .nav-link{
    color: var(--black);
    padding: 5px 30px;
    font-weight: 600;
    border-radius: 30px;
    font-weight: 500;
}
.melodify_sixth_section_tab .tab_menu .nav-link.active{
    background-color: var(--blue);
    color: var(--white);
    border-radius: 30px;
}
.melodify_sixth_content{
    background-color: var(--dark-blue);
}
.melodify_tab_box_content{
    padding: 100px 100px;
    text-align: center;
    border: 1px solid var(--light-line);
}
.melodify_tab_box_content h4{
    color: var(--white);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}
.melodify_tab_box_content p{
    color: var(--white);
    font-size: 16px;
    font-weight: normal;
    max-width: 263px;
    margin: 0 auto;
}
.melodify_tab_content{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
/************************ end_melodify_sixth_section **********************/


/************************ melodify_seventh_section **********************/
.melodify_seventh_section .product_video{
    padding-top: 50px;
}
/************************ end_melodify_seventh_section **********************/


/************************ melodify_eight_section **********************/
.melodify_eight_section{
    background-color: var(--dark-blue);
    position: relative;
    overflow: hidden;
}
.melodify_eight_top_img{
    position: absolute;
}
.melodify_eight_top_img img{
    width: 100%;
}
.melodify_eight_big_img {
    position: relative;
    z-index: 1;
}
.melodify_eight_big_img img{
    width: 80%;
    padding-top: 15px;
}
.melodify_eight_right_text h2{
    color: var(--white);
    font-family: 'NT Josefine';
    font-size: 100px;
    font-weight: 700;
    margin: 0;
    line-height: 80px;
}
.melodify_eight_right_text h2:last-child{
    margin-left: 40px;
}
.melodify_eight_right_center{
    width: 157px;
    height: 2px;
    background-color: var(--white);
    margin: 60px 0 60px -100px;
}
.melodidy_eight_right_bottom_text h4{
    color: var(--white);
    font-size: 36px;
    max-width: 292px;
    font-weight: normal;
}
.melodify_eight_bottom_img{
    position: absolute;
    bottom: -80px;
    left: 0;
}
.melodify_eight_bottom_img img{
    width: 100%;
}
/************************ end_melodify_eight_section **********************/


/************************ melodify_nine_section **********************/
.melodify_nine_content{
    padding-top: 60px;
}
.melodify_nine_box{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #949494;
    padding: 45px 0;
    cursor: pointer;
    position: relative;
    transition: all .5s;
    text-decoration: none;
}
.melodify_nine_box:last-child{
    border-bottom: 1px solid #949494;
}
.melodify_nine_box:hover{
    background-color: var(--dark-gray);
    padding: 45px 20px;
}
.melodify_nine_box h4{
    font-family: 'NT Josefine';
    font-weight: 700;
    color: var(--blue);
    font-size: 42px;
    margin: 0;
}
.on_hover_img{
    position: absolute;
    left: 100%;
    top: 0;
    transform: translate(-150%,-25%);
    z-index: 1;
    opacity: 0;
    transition: all .5s;
}
.on_hover_img img{
    width: 300px !important; 
    height: 300px !important;
    object-fit: cover;
}
.melodify_nine_box:hover .on_hover_img{
    opacity: 1;
}
/************************ end_melodify_nine_section **********************/


/************************ melodify_tenth_section **********************/
.melodify_tenth_section{
    background-image: url("../img/melodify/dark_bg_one.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.melodify_tenth_content h3{
    color: var(--white);
    font-size: 36px;
    max-width: 619px;
    text-align: center;
    margin: auto;
}
.melodify_tenth_content_second h3{
    max-width: 850px !important;
}
.buy_now_btn{
    text-decoration: none;
    padding: 6px 93px;
    background-color: var(--white);
    color: var(--blue);
    border-radius: 30px;
    display: inline-block;
    font-weight: 700;
    font-size: 24px;
    margin-top: 38px;
    transition: all .5s;
}
.buy_now_btn:hover{
    background-color: var(--black);
    color: var(--white);
}
.buy_btn{
    display: flex;
    justify-content: center;
}
.section_eleven_content{
    width: 100%;
    background-color: var(--blue);
}
.melodify_tweal_section{
    background-color: #012267;
}
.eventz_testimonial_box_img{
    position: relative;
}
.test_more_details{
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--white);
    position: absolute;
    bottom: 0;
    padding: 1px 20px 0 2px;
    border-radius: 30px;
}

.test_more_details img{
    width: 28px !important;
    margin-right: 11px;
}
.test_more_details h5{
    margin-bottom: 0;
    font-size: 14px;
    color: #012267;
}

.melodify_tweal_section .owl-item > div {
    cursor: pointer;
    margin: 6% 8%;
    transition: margin 0.4s ease;
}
.melodify_tweal_section .owl-item.center > div {
    cursor: auto;
}
.melodify_tweal_section .owl-item.active.center{
    background-color: #021B51;
}
.melodify_tweal_section .owl-item.active.center .eventz_testimonial_box{
    padding: 30px 20px 0;
}
.melodify_tweal_section .owl-item:not(.center) > div:hover {
    opacity: .75;
}
.melodify_tweal_section .eventz_testimonial_box{
    background-color: #021B51;
    padding: 30px 20px;
}
.eventz_testimonial_box p{
    max-width: 450px;
    text-align: center;
}

#melodify_tweal_section .owl-item:not(.center) > div:hover {
    opacity: .75;
}
.melodify_tweal_section .eventz_testimonial_box_content h3{
    padding-bottom: 16px;
    font-size: 16px;
}
.melodify_tweal_section .eventz_testimonial_box_content p{
    color: #ADC3F0;
    font-size: 14px;
}

.owl-item.active.center .eventz_testimonial_box_content h3{
    font-size: 28px;
}

.owl-item.active.center .eventz_testimonial_box_content p{
    font-size: 16px;
    text-align: center;
    max-width: 450px;
}
.owl-carousel button.owl-dot{
    background-color: #b7b7b7;
}
.owl-carousel button.owl-dot.active{
    background-color: #fff;
}

.melodify_tweal_section .eventz_testimonial_box_img img {
    border-radius: inherit;
    border-radius: 100%;
    outline: 3px solid #fff;
}
.melodify_tweal_section .owl-dots{
    margin-top: 25px;
}
.melodify_tweal_section .owl-carousel button.owl-dot.active{
    width: 40px;
    height: 8px;
    border-radius: 7px;
    background-color: var(--white);
}
.melodify_tweal_section .owl-carousel button.owl-dot{
    width: 16px;
    height: 8px;
    border-radius: 7px;
    background-color: transparent;
    border: 1px solid var(--white);
    margin: 0 5px;
}
.melodify_thrteen_section .eventz_form:focus{
    border-bottom: 1px solid var(--blue);
}
.melodify_thrteen_section .section_button {
    display: flex;
    justify-content: center;
}
.melodify_thrteen_section .section_button a{
    text-decoration: none;
    font-size: 22px;
    font-weight: 500;
    position: relative;
    padding: 8px 80px;
    display: inline-block;
    color: var(--blue);
    font-weight: 700;
}
.melodify_thrteen_section .section_button a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    border: 2px solid var(--blue);
    border-right: 0;
    transition: all .5s;
}
.melodify_thrteen_section .section_button a:hover::before{
    width: 50%;
}
.melodify_thrteen_section .section_button a::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    border: 2px solid var(--blue);
    border-left: 0;
    transition: all .5s;
}
.melodify_thrteen_section .section_button a:hover::after{
    width: 51%;
}
/************************ end_melodify_tenth_section **********************/


/************************ mobile_menu **********************/
.melodify_mobile_menu{
    position: fixed;
    width: 0;
    height: 100vh;
    background-color: var(--blue);
    top: 0;
    left: 0;
    z-index: 100;
    overflow: hidden;
    transition: all .5s;
}
.melodify_mobile_menu ul{
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    padding: 0 10px;
    text-align: center;
    white-space: nowrap;
}
.melodify_mobile_menu ul li{
    list-style-type: none;
}
.melodify_mobile_menu ul li a{
    text-decoration: none;
    color: var(--white);
    line-height: 40px;
}
/************************ end_mobile_menu **********************/


/************************ common_section **********************/
.content_space{
    padding: 55px 0;
}


.melodify_clone .fixed {
    position: fixed;
    top: 0;
    left: 0;
    animation: smoothScroll 1s forwards;
    width: 100%;
    z-index: 110;
    background-color: var(--blue);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.melodify_clone .fixed .header_menu{
    max-width: 1050px;
    margin: auto;   
}
.melodify_title {
    text-align: center;
}
.melodify_title h3{
    font-family: 'NT Josefine';
    font-size: 42px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}
.melodify_title h3::after{
    content: "";
    position: absolute;
    bottom: 5px;
    left: -5%;
    width: 110%;
    height: 10px;
    background-color: var(--dark-gray);
    z-index: -1;
}
#melodify_thrteen_section .contact_box{
    background-size: 100% 100%;
    padding-bottom: 40px;
    background-image: url("../img/melodify/contact.jpg");
}
.contact_box a{
    text-decoration: none;
}
#melodify_thrteen_section .contact_box_text h3{
    color: var(--blue);
}
#melodify_thrteen_section .contact_btn{
    background-color: #012267;
}
#melodify_thrteen_section .contact_btn:hover{
    background-color: #012267;
}
#melodify_thrteen_section .contact_box_text h5{
    color: #012267;
    font-size: 20px;
    font-weight: 700;
}
.schedule{
    white-space: nowrap;
    font-size: 16px !important;
}
.melodify_main_clone .fixed .header_menu{
    max-width: 1320px !important;
}
.melodify_clone .netflix_app_icon{
    justify-content: flex-start !important;
}
/************************ end_common_section **********************/




/************************ new_header **********************/
.new_header{
    padding: 33px 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.new_header_menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.new_header_menu ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.new_header_menu ul li{
    list-style-type: none;
}
.new_header_menu ul li a{
    color: #012267;
    font-size: 19px;
    text-decoration: none;
    margin: 0 30px 0 0;
}
.new_header_menu ul li a.active{
    color: var(--dark-blue);
    font-weight: bolder;
}
.new_header_menu ul li:last-child a{
    margin: 0;
}
.new_header_common_btn{
    padding: 12px 24px;
    display: inline-block;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    margin: 0 16px 0 0;
}
.new_header_common_btn:last-child{
    margin: 0;
}
.new_header_pricing{
    border: 1px solid #012267;
    color: #012267;
}
.new_header_pricing:hover{
    color: #012267;
}
.new_header_schedule{
    background-color: #012267;
    color: #fff;
}
.new_header_schedule:hover{
    color: #fff;
}
.new_toggle{
    background-color: transparent;
    border: 0;
    display: none;
}
.new_toggle img{
    width: 35px;
}
.mobile_btn{
    display: none;
}
.new_hero_section{
    background-color: #EBEDF3;
    position: relative;
    overflow: hidden;
}
.new_hero_section::before{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/grid.png");
    background-position: top right;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}
.new_hero_section::after{
    content: "";
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background-color: #012267;
    transform: skewX(-38deg);
}
.new_hero_left_section h1{
    font-size: 90px;
    font-weight: bolder;
    color: #012267;
    text-transform: uppercase;
}

.layer_img{
    margin-right: 20px;
}
.new_hero_left_section p{
    margin: 16px 0 24px;
    color: #012267;
    font-size: 24px;
    font-weight: 500;
    width: 100%;
    max-width: 660px;
}
.new_buy_now{
    padding: 12px 68px;
    background-color: #012267;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
}
.new_buy_now:hover{
    color: #fff;
}
.get_app_section{
    margin-top: 40px;
}
.get_app_section a{
    margin: 0 8px 0 0;
}
.get_app_section a:last-child{
    margin: 0;
}
.new_hero_left_section{
    padding: 137px 0;
    position: relative;
    z-index: 1;
}
.new_hero_main_content{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.new_hero_right_section{
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate(10%);
}
.new_hero_right_section img{
    width: 100%;
    max-width: 650px;
}
.menu_close{
    display: none;
}

/* .sticky {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
} */
/* .fixed{
    background-color: #fff;
} */
.clone_img{
    font-size: 35px;
    background: #fff;
    display: inline-flex;
    padding: 7px 15px;
    border: 4px solid #012267;
    border-radius: 100px;
    align-items: center;
    text-transform: capitalize;
}
.clone_img img{
    margin-right: 10px;
    width: 55px;
}
/************************ end_new_header **********************/



@media (max-width: 1600.98px) {
    .melodify_header_content {
        padding: 100px 0;
    }
    .melodify_fifth_content{
        overflow: auto;
    }
    .melodify_sixth_section_tab .tab_menu .nav-item {
        padding: 0 40px;
    }
    
    .melodify_sixth_section_tab{
        height: auto;
    }
    .melodify_sixth_section_tab .tab_menu ul{
            width: 55%;
            justify-content: center;
    }
}


@media (max-width: 1399.98px) {
    .header_menu {
        padding: 26px 0;
    }
    .content_space {
        padding: 50px 0;
    }
    .melodify_third_left_content h4 {
        font-size: 26px;
    }
    .melodify_third_left_content h2 {
        font-size: 38px;
    }
    .melodify_third_left_content h2, .melodify_third_left_content_last_child h4{
        margin-bottom: 35px;
    }
    .melodify_third_left_content p {
        font-size: 22px;
        line-height: 35px;
    }
    .melodify_fourth_left_content h3 {
        font-size: 80px;
        line-height: 72px;
    }
    .melodify_fourth_right_content h5 {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .melodify_title h3 {
        font-size: 40px;
    }
    .melodify_sixth_section_tab .tab_menu ul {
        padding: 25px 30px;
    }
    .melodify_tab_box_content {
        padding: 110px 29px;
    }
    .melodify_seventh_section .product_video {
        padding-top: 30px;
    }
    .melodify_nine_box{
        padding: 35px 0;
    }
    .melodify_nine_box h4 {
        font-size: 38px;
    }
    .melodify_nine_box img{
        width: 30px;
    }
    .melodify_tenth_content h3 {
        font-size: 35px;
    }
    .buy_now_btn {
        margin-top: 20px;
    }
    .buy_now_btn{
        padding: 8px 75px;
        font-size: 20px;
    }
    
    .on_hover_img img {
        width: 200px !important;
        height: 200px !important;
    }


    .new_header {
        padding: 20px 0;
    }
    .new_header_menu ul li a {
        font-size: 18px;
        margin: 0 20px 0 0;
    }
    .new_header_common_btn {
        padding: 10px 12px;
        margin: 0 8px 0 0;
    }
    .new_hero_left_section {
        padding: 120px 0;
    }
    .new_hero_left_section h1 {
        font-size: 80px;
    }
 
    .new_hero_left_section p {
        margin: 10px 0 24px;
        font-size: 22px;
        max-width: 500px;
    }
    .get_app_section {
        margin-top: 30px;
    }
    .new_hero_section::after {
        width: 50%;
    }
    .new_hero_right_section img {
        width: 100%;
        max-width: 600px;
    }

    
}
@media (max-width: 1199.98px) {
    .header_menu {
        padding: 20px 0;
    }
    .header_menu_list ul li {
        margin: 0 0 0 20px;
    }
    .header_menu_list ul li a{
        font-size: 16px;
    }
    .melodify_header_content {
        padding: 100px 0;
    }
    .header_section {
        width: 100%;
        max-width: 900px;
    }
    .melodift_header_btn .buy_now {
        font-size: 18px;
        padding: 6px 34px;
    }
    .view_demo_btn {
        font-size: 16px;
    }
    .melodify_right_content img {
        width: 250px;
    }
    .content_space {
        padding: 40px 0;
    }
    .melodify_second_section_content img {
        max-width: 100px;
    }
    .melodify_second_section_content img:last-child {
        max-width: 200px;
    }
    .melodify_third_left_content h4 {
        font-size: 24px;
    }
    .melodify_third_left_content h2 {
        font-size: 34px;
        margin-bottom: 30px;
    }
    .melodify_third_left_content p {
        font-size: 22px;
        max-width: 100%;
    }
    .melodify_clone .fixed .header_menu {
        padding: 20px;
    }
    .melodify_third_left_content p::after {
        left: -2px;
    }
    .melodify_third_left_content_last_child h4{
        margin-bottom: 30px;
    }
    .melodify_fourth_left_content h3 {
        font-size: 65px;
        line-height: 60px;
    }
    
    .melodify_fourth_left_first_content a {
        margin-left: 16px;
        padding: 8px 45px;
    }
    .melodify_fourth_right_content h5 {
        font-size: 26px;
        margin-bottom: 4px;
    }
    .melodify_title h3 {
        font-size: 38px;
    }
    .melodify_box {
        height: 450px;
    }
    .melodify_fifth_content .melodify_box:nth-child(odd) {
        padding-top: 130px;
    }
    .melodify_text h4 {
        font-size: 20px;
    }
    .melodify_sixth_section_tab .tab_menu ul {
        padding: 20px 20px;
    }
    .melodify_sixth_section_tab .tab_menu .nav-item {
        padding: 0 35px;
    }
    .melodify_sixth_section_tab .tab_menu .nav-item {
        padding: 0 26px;
    }
    .melodify_tab_box_content {
        padding: 80px 29px;
    }
    .melodify_sixth_section_tab {
        margin-top: 80px;
    }
    .melodify_seventh_section .product_video {
        padding-top: 20px;
    }
    .melodify_eight_right_center {
        margin: 40px 0 40px -80px;
    }
    .melodify_eight_right_text h2 {
        font-size: 80px;
        line-height: 65px;
    }
    .melodidy_eight_right_bottom_text h4 {
        font-size: 30px;
    }
    .melodify_nine_box {
        padding: 25px 0;
    }
    .melodify_nine_box h4 {
        font-size: 30px;
    }
    .melodify_nine_box img {
        width: 25px;
    }
    .melodify_tenth_content h3 {
        font-size: 30px;
    }
    .buy_now_btn {
        padding: 8px 60px;
        font-size: 18px;
    }
    .on_hover_img img {
        width: 150px !important;
        height: 150px !important;
    }
    .melodify_thrteen_section .section_button a {
        padding: 6px 60px;
        font-size: 20px;
    }
    .header_menu_list ul {
        display: none;
    }


    .new_header_main_menu{
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 100vh;
        background-color: #012267;
        z-index: 10;
        transition: all .5s;
        white-space: nowrap;
        overflow-x: hidden;
    }
    .new_header_menu ul{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 64px;
    }
    .new_header_menu ul li a{
        color: #fff;
        padding: 24px 24px 0;
        display: block;
    }
    .mobile_btn{
        display: inline-block;
        background-color: #FFFFFF;
        color: #012267;
        font-size: 14px;
        font-weight: 700;
        margin: 24px !important;
    }
    .menu_close{
        display: inline-block;
        position: absolute;
        top: 16px;
        right: 16px;
        cursor: pointer;
    }
    .btn_hide{
        display: none;
    }
    .new_toggle{
        display: inline-block;
    }
    .new_hero_left_section {
        padding: 90px 0;
    }
    .new_hero_left_section h1 {
        font-size: 60px;
    }
   
    .new_hero_left_section p{
        max-width: 500px;
        font-size: 20px;
    }
    .new_header_menu ul li a.active{
        color: #b7b7b7;
        font-weight: bolder;
    }
    .clone_img {
        font-size: 28px;
        padding: 5px 10px;
    }
    .clone_img img {
        width: 50px;
    }
}
@media (max-width: 991.98px)  {
    .header_section {
        max-width: 700px;
    }
    .melodify_header_content {
        padding: 50px 0;
    }
  
    .melodify_left_content .clone_text{
        left: 21%;
    }
    .melodift_header_btn {
        margin-top: 40px;
    }
    .melodify_right_content img {
        width: 200px;
    }
    .content_space {
        padding: 30px 0;
    }
    .melodify_second_section_content img:last-child {
        max-width: 150px;
    }
    .melodify_third_left_content h4 {
        font-size: 22px;
    }
    .melodify_third_left_content h2 {
        font-size: 30px;
        margin-bottom: 24px;
    }
    .melodify_third_left_content p {
        font-size: 20px;
        line-height: 30px;
    }
    .melodify_third_left_content p::after {
        left: -2px;
    }
    .melodify_third_left_content_last_child h4{
        margin-bottom: 24px;
    }
    .melodify_fourth_left_content h3 {
        font-size: 50px;
        line-height: 48px;
    }
    
    .melodify_fourth_left_first_content a {
        margin-left: 16px;
        padding: 6px 29px;
    }
    .melodify_fourth_right_content h5 {
        font-size: 24px;
        margin-bottom: 0px;
    }
    .melodify_title h3 {
        font-size: 34px;
    }
    .melodify_title h3::after {
        bottom: 4px;
        left: -4%;
        width: 108%;
    }
    .melodify_box {
        height: 370px;
    }
    .melodify_fifth_content .melodify_box:nth-child(odd) {
        padding-top: 58px;
    }
    .melodify_text h4 {
        font-size: 18px;
    }
    .melodify_fifth_content{
        margin-top: 50px;
    }
    .melodify_sixth_section_tab .tab_menu ul {
        padding: 12px 8px;
    }
    .melodify_sixth_section_tab .tab_menu .nav-item {
        padding: 0 19px;
    }
    .melodify_sixth_section_tab .tab_menu .nav-item .nav-link {
        padding: 5px 16px;
        font-size: 16px;
    }
    .melodify_tab_box_content h4 {
        font-size: 22px;
    }
    .melodify_tab_box_content p {
        font-size: 14px;
    }
    .melodify_tab_box_content {
        padding: 50px 29px;
    }
    .melodify_sixth_section_tab {
        margin-top: 60px;
    }
    .melodify_seventh_section .product_video {
        padding-top: 10px;
    }
    .melodify_nine_content {
        padding-top: 30px;
    }
    .melodify_nine_box {
        padding: 20px 0;
    }
    .melodify_nine_box h4 {
        font-size: 26px;
    }
    .melodify_tenth_content h3 {
        font-size: 24px;
        max-width: 500px;
    }
    .on_hover_img img {
        width: 100px !important;
        height: 100px !important;
    }
    .on_hover_img {
        transform: translate(-140%,-14%);
    }
    .melodify_thrteen_section .section_button a {
        padding: 4px 50px;
        font-size: 18px;
    }
    .melodify_thrteen_section .section_button_contact {
        margin-top: 30px;
    }
    .melodify_thrteen_section .eventz_contact_form {
        width: 80%;
        margin: 30px auto;
    }



    .new_hero_left_section {
        padding: 60px 0;
    }
    .new_hero_left_section h1 {
        font-size: 70px;
    }
    .layer_img{
        width: 200px;
    }
    .new_hero_left_section{
        text-align: center;
    }
    .new_hero_left_section p{
        margin: 10px auto 24px;
    }
    .new_hero_section::before{
        content: none;
    }
    .new_hero_section::after{
        content: none;
    }

    .new_hero_main_content{
        flex-direction: column;
    }
    .new_hero_right_section{
        position: relative;
        left: 0;
        transform: translate(0%);
    }
    .new_hero_right_section img img{
        width: 100%;
    }
}
@media (max-width: 767.98px)  {
    .header_menu_list ul{
        display: none;
    }
    .menu_toggle{
        display: block;
    }
    .melodify_header_content {
        padding: 20px 20px;
    }
    .melodify_second_section{
        padding: 0 20px;
    }
    .melodify_left_content h4 {
        font-size: 18px;
    }
    .view_demo_menu {
        transform: translate(-50%,150%);
    }
    .view_demo_menu ul {
        padding: 6px 14px;
    }
    .header_menu {
        padding: 20px 20px;
    }
    .content_space {
        padding: 20px 0;
    }
    .melodify_second_section_content img {
        max-width: 80px;
    }
    .melodify_second_section_content img:last-child {
        max-width: 130px;
    }
    .melodify_third_left_content h4 {
        font-size: 20px;
    }
    .melodify_third_left_content h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }
    .melodify_third_left_content p {
        font-size: 18px;
        line-height: 26px;
    }
    .melodify_third_right_content img {
        width: 100%;
    }
    .order-item{
        order: -1;
    }
    .melodify_third_left_content{
        padding-top: 10px;
    }
    .melodify_third_left_content_last_child h4{
        margin-bottom: 16px;
    }
    .melodify_fourth_left_content h3 {
        font-size: 40px;
        line-height: 42px;
    }
    .melodify_fourth_left_first_content a {
        margin-left: 10px;
        padding: 5px 20px;
    }
    .melodify_fourth_content {
        flex-direction: column;
    }
    .melodify_fourth_left_content{
        margin-bottom: 10px;
    }
    .melodify_fourth_right_content h5 {
        font-size: 21px;
    }
    .melodify_fourth_content{
        align-items: flex-start;
    }
    .melodify_title h3 {
        font-size: 30px;
    }
    .melodify_title h3::after {
        bottom: 2px;
        left: -3%;
        width: 105%;
    }
    .melodify_fifth_content {
        margin-top: 30px;
    }
    .melodify_tab_box_content h4 {
        font-size: 18px;
    }
    .melodify_tab_box_content {
        padding: 50px 29px 20px;
    }
    .melodify_sixth_section_tab {
        margin-top: 40px;
    }
    .melodify_eight_right_text h2 {
        font-size: 60px;
        line-height: 46px;
    }
    .melodify_eight_right_center {
        margin: 20px 0 20px -20px;
        width: 100px;
    }
    .melodidy_eight_right_bottom_text h4 {
        font-size: 25px;
    }
    .melodify_eight_bottom_img {
        position: absolute;
        bottom: -38px;
    }
    .melodify_nine_content {
        padding-top: 20px;
    }
    .melodify_nine_box {
        padding: 10px 0;
    }
    .melodify_nine_box h4 {
        font-size: 20px;
    }
    .melodify_nine_box img {
        width: 18px;
    }
    .melodify_tenth_content h3 {
        font-size: 20px;
        max-width: 400px;
    }
    .buy_now_btn {
        padding: 6px 47px;
        font-size: 18px;
        margin-top: 10px;
    }
    .melodify_tweal_section .eventz_testimonial_box {
        padding: 0;
    }
    .melodify_sixth_section_tab{
        height: auto;
    }
    .melodify_fifth_content{
        justify-content: flex-start;
    }
    .test_more_details {
        padding: 1px 6px 0 1px;
    }
    .test_more_details img {
        width: 24px !important;
        margin-right: 4px;
    }
    .melodidy_eight_right_bottom_text h4{
        margin: 10px auto;
    }
    .melodify_nine_box:hover {
        padding: 8px 20px;
    }
    .melodify_tweal_section .owl-item.active.center .eventz_testimonial_box {
        padding: 10px 0px 0;
    }
    .owl-item.active.center .eventz_testimonial_box_content h3 {
        font-size: 20px;
       padding-bottom: 5px;
    }
    .contact_box{
        background-size: 100% 100%;
    }
    .container-sm, .container {
        /* max-width: 540px; */
        max-width: 100%;
    }



    .new_hero_left_section {
        padding: 40px 0;
    }
    .new_hero_left_section h1 {
        font-size: 60px;
    }
   
    .layer_img {
        width: 150px;
    }
    .new_hero_left_section p {
        font-size: 18px;
    }
    .clone_img img {
        width: 40px;
    }
    .clone_img {
        font-size: 24px;
        padding: 4px 10px;
    }
}
@media (max-width: 575.98px)  {
    .header_logo img{
        max-width: 120px;
    }
    .melodify_header_content {
        display: flex;
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    .melodift_header_btn{
        justify-content: center;
    }
    .melodify_left_content h1 {
        max-width: 200px;
    }
    .melodify_left_content h1 {
        font-size: 40px;
        text-align: center;
        line-height: 50px;
    }
    .melodify_left_content .clone_text {
        left: 50%;
        font-size: 11px;
    }
    .melodift_header_btn {
        margin-top: 30px;
    }
    .melodift_header_btn .buy_now{
        margin-right: 0;
        margin-bottom: 20px;
    }
    .melodify_right_content img {
        width: 130px;
    }
    .view_demo_menu {
        transform: translate(-40%,150%);
    }
    .melodify_second_section_content {
        grid-template-columns: repeat(3,1fr);
    }
    .melodify_second_section_content img {
        margin: 0 0 10px 10px;
    }
    .melodify_third_left_content h4 {
        font-size: 18px;
    }
    .melodify_third_left_content p {
        font-size: 16px;
        line-height: 24px;
    }
    .melodify_third_left_content p::first-letter{
        font-size: 30px;
    }
    .melodify_third_left_content p::after {
        top: -4px;
        left: -2px;
        width: 14px;
        height: 16px;
    }
    .melodify_fourth_left_content h3 {
        font-size: 24px;
        line-height: 28px;
    }
    .melodify_fourth_left_first_content a {
        margin-left: 6px;
        padding: 4px 14px;
        font-size: 12px;
    }
    .melodify_fourth_right_content h5 {
        font-size: 18px;
    }
    .melodify_fourth_right_content h5::first-letter{
        font-size: 30px;
    }
    .melodify_title h3 {
        font-size: 26px;
    }
    .melodify_title h3::after {
        bottom: 1px;
    }
    .melodify_box {
        height: auto;
    }
    .melodify_fifth_content .melodify_box:nth-child(odd) {
        padding-top: 0;
    }
    .melodify_box_img img{
        width: 200px;
    }
    .melodify_fifth_content {
        margin-top: 10px;
    }
    .melodify_sixth_section_tab .tab_menu .nav-item {
        padding: 0 8px;
    }
    .melodify_sixth_section_tab .tab_menu .nav-item .nav-link {
        padding: 4px 13px;
        font-size: 14px;
    }
    .melodify_sixth_section_tab .tab_menu ul {
        padding: 8px 8px;
    }
    .melodify_tab_content {
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    .melodify_tab_box_content {
        padding: 20px 29px 20px;
    }
    .melodify_sixth_section_tab .tab_menu ul{
        width: 90%;
        justify-content: center;
        transform: translate(-50%,-80%);
    }
    .melodify_tab_box_content{
        border-left: 0;
        border-right: 0;
    }
    .melodify_eight_big_img img {
        width: 100%;
    }
    .melodify_eight_right_text{
        text-align: center;
    }
    .melodify_eight_right_text h2 {
        font-size: 40px;
        line-height: 35px;
    }
    .melodify_eight_right_center {
        margin: 20px 0 20px 50px;
    }
    .melodidy_eight_right_bottom_text h4 {
        font-size: 22px;
        text-align: center;
    }
    .melodify_eight_bottom_img {
        position: absolute;
        bottom: 0;
    }
    .melodify_nine_content {
        padding-top: 10px;
    }
    .melodify_tenth_content h3 {
        font-size: 18px;
    }
    .buy_now_btn {
        padding: 6px 30px;
        font-size: 16px;
        margin-top: 16px;
    }
    .on_hover_img img {
        width: 80px !important;
        height: 80px !important;
    }
    #melodify_tweal_section .owl-item.center > .eventz_testimonial_box {
        margin: auto !important;
    }
    #melodify_tweal_section .owl-item > .eventz_testimonial_box {
        margin: 0;
    }
    
    .melodify_title h3::after {
        left: 50%;
        width: 50%;
        transform: translate(-50%);
    }
    .melodify_left_content h4 {
        font-size: 16px;
    }
    .melodify_left_content h1 {
        margin: auto;
    }
    .contact_box_text ,.contact_box_btn{
        text-align: center;
        margin: auto;
    }
    #melodify_thrteen_section .contact_box {
         padding-bottom: 20px;
    }
    .melodify_left_content .clone_text {
        padding: 6px 20px;
    }
    .melodify_left_content .clone_text::after {        
        width: 81%;
        height: 80%;
    }
    .melodify_third_left_content ul li{
        font-size: 16px;
    }
    .melodify_third_left_content ul li img{
        width: 25px;
    }
    .melodify_nine_box h4 {
        font-size: 16px;
    }
    #melodify_thrteen_section .contact_box_text h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    .melodify_nine_box img {
        width: 15px;
    }
    .meeting_btn{
        padding: 6px 16px !important;
        font-size: 12px !important;
    }
    .schedule {
        padding: 6px 10px !important;
        font-size: 12px !important;
    }



    .new_header {
        padding: 16px 0;
    }
    .new_hero_left_section {
        padding: 20px 0;
    }
    .new_hero_left_section h1 {
        font-size: 50px;
    }
    
    .layer_img {
        width: 130px;
    }
    .new_buy_now {
        padding: 12px 40px;
    }
    .get_app_section a {
        margin: 0 3px 5px 0;
        display: inline-block;
    }
}
@media (max-width: 425.98px){
    .schedule {
        padding: 8px 10px !important;
        font-size: 13px !important;
    }
    .header_menu {
        padding: 10px 10px;
    }

    .get_app_section {
        margin-top: 20px;
    }
    .get_app_section a {
        margin: 0 3px 5px 0;
        display: inline-block;
    }
    .get_app_section a img{
        width: 120px;
    }
}
@media (max-width: 375.98px){
    .border_btn{
        margin-right: 10px !important;
    }
    .header_logo img {
        max-width: 100px;
    }
    
}
