/*------------------------------------------------------------------

Project:        numuw
Author:         
Last change:    
Primary use:    numuw

-------------------------------------------------------------------*/


/*------------------------------------------------------------------

				    	[Table of contents]

- Default CSS
- Button CSS
- Animation CSS

-------------------------------------------------------------------*/


/*------------------------ [font-famliy] ------------------------
						

 font-family: "Funnel Display", serif;
 font-family: "Dosis", serif;

-------------------------------------------------------------------*/


/************************ Default css ***************************/
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Dosis", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #323232;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}


p {
    margin-bottom: 16px;
}

p:last-child {
    margin-bottom: 0px;
}


h1,
.h1 {
    display: inline-block;
    font-family: "Funnel Display", serif;
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 66px;
    color: #171717;
}

h2,
.h2 {
    display: inline-block;
    font-family: "Funnel Display", serif;
    font-style: normal;
    font-weight: 600;
    font-size: 42px;
    line-height: 59px;
    color: #171717;
}

h3,
.h3 {
    display: inline-block;
    font-family: "Funnel Display", serif;
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    color: #171717;
}


h4,
.h4 {
    display: inline-block;
    font-family: "Funnel Display", serif;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    color: #171717;
}

h5,
.h5 {
    display: inline-block;
    font-family: "Funnel Display", serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    color: #171717;
}


a {
    text-decoration: none;
}

a:focus,
a:focus-visible {
    outline: none;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-type: none;
}

.container {
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1280px;
    }
}

@media (max-width: 1199px) {
    body {
        font-size: 15px;
        line-height: 25px;
    }

    h1,
    .h1 {
        font-size: 50px;
        line-height: 60px;
    }

    h2,
    .h2 {
        font-size: 37px;
        line-height: 50px;
    }

    h3,
    .h3 {
        font-size: 27px;
        line-height: 35px;
    }

    h4,
    .h4 {
        font-size: 22px;
        line-height: 28px;
    }

}

@media (max-width: 991px) {

    h1,
    .h1 {
        font-size: 45px;
        line-height: 55px;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 45px;
    }

    h3,
    .h3 {
        font-size: 24px;
        line-height: 30px;
    }

    h4,
    .h4 {
        font-size: 20px;
        line-height: 25px;
    }


}


@media (max-width: 767px) {

    body {
        font-size: 14px;
    }


    h1,
    .h1 {
        font-size: 40px;
        line-height: 50px;
    }

    h2,
    .h2 {
        font-size: 27px;
        line-height: 40px;
    }

    h3,
    .h3 {
        font-size: 22px;
        line-height: 28px;
    }

    h4,
    .h4 {
        font-size: 18px;
        line-height: 22px;
    }

    h5,
    .h5 {
        font-size: 16px;
        line-height: 20px;
    }


}



/********************************* Button ***********************/

.theme_btn a {
    display: inline-block;
    font-family: "Funnel Display", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    color: #FFFFFF;
    background-color: #6D308D;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 13px 26px;
    /* text-transform: uppercase; */
    transition: all .4s ease;
}

.theme_btn a:hover {
    color: #6D308D;
    background-color: #FFFFFF;
    border: 1px solid #6D308D;
}


@media (max-width:767px) {

    .theme_btn a {
        font-size: 14px;
        line-height: 19px;
        padding: 8px 14px;
    }

}

/* CTA Section CSS Starts */

.cta_section {
    margin-top: 80px;
}

.cta_content {
    position: relative;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 67px;
}

.cta_content::after {
    content: "";
    background: linear-gradient(90deg, #6D308D 38.41%, rgba(109, 48, 141, 0.82) 45.72%, rgba(109, 48, 141, 0.00) 58.66%);
    width: 100%;
    height: 100%;
    border-radius: 24px;
    position: absolute;
    top: 0;
    left: 0;
}

.cta_wrapper {
    position: relative;
    z-index: 1;
}

.cta_row {
    display: flex;
    width: 100%;
}

.cta_column {
    width: 55%;
}

.cta_image_column {
    display: none;
}

.cta_heading h2 {
    color: #FFFFFF;
}

.cta_para p {
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    color: #FFFFFF;
    margin-top: 16px;
    letter-spacing: 0.02em;
}

.cta_btn {
    margin-top: 24px;
}

.cta_btn a {
    color: #171717;
    background-color: #FFFFFF;
    text-transform: none;
}

.cta_btn a:hover {
    color: #FFFFFF;
    background-color: transparent;
    border: 1px solid #FFFFFF;
}

@media (max-width: 1399px) {
    .cta_column {
        width: 59%;
    }
}

@media (max-width: 1199px) {
    .cta_section {
        margin-top: 60px;
    }
    .cta_content {
        padding: 60px 40px;
    }
    .cta_para p {
        margin-top: 12px;
        letter-spacing: 0.01em;
    }
    .cta_btn {
        margin-top: 20px;
    }
}

@media (max-width: 991px) {
    .cta_section {
        margin-top: 40px;
    }
    .cta_content {
        padding: 40px 20px;
    }
}

@media (max-width: 767px) {
    .cta_section {
        margin-top: 40px;
    }
    .cta_content {
        padding: 50px 25px;
        border-radius: 16px;
    }
    .cta_row {
        flex-direction: column;
    }
    .cta_column {
        width: 100%;
    }
    .cta_para p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 12px;
        letter-spacing: 0.02em;
    }
    .cta_btn {
        margin-top: 16px;
        text-align: center;
    }
    .cta_heading h2 {
        font-size: 22px;
        line-height: 140%;
    }
    .cta_content::after {
        background: linear-gradient(88deg, #6D308D 9.78%, rgba(109, 48, 141, 0.82) 45.88%, rgba(109, 48, 141, 0.00) 109.74%);
        border-radius: 16px;
    }
}

/* News Section CSS */

.news_section {
    background: #FAF1F0;
    margin-top: 80px;
    overflow: hidden;
}

.news_wrapper {
    margin: 0 -10px;
}

.news_row {
    display: flex;
    width: 100%;
}

.news_column {
    width: 50%;
    padding: 0 10px;
}

.news_image {
    position: relative;
}

.news_image img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.news_image::after {
    content: "";
    width: 397px;
    height: 397px;
    background: rgb(109 48 141 / 10%);
    border-radius: 100%;
    position: absolute;
    top: 25px;
    left: 0;
}

.news_text_column {
    padding-top: 40px;
    padding-bottom: 48px;
}

.news_image_column {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.news_form {
    margin-top: 16px;
}

.news_form .tnp-subscription {
    margin: 0;
    max-width: 100%;
}

.news_form form {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.news_form .tnp-field-button {
    margin: 0 !important;
}

.news_form .tnp-field-button input {
    font-family: "Funnel Display", serif;
    font-weight: 500;
    font-size: 16px !important;
    line-height: 140% !important; 
    color: #FFFFFF !important; 
    background: #6D308D !important;
    border: 1px solid transparent !important;
    border-radius: 10px;
    padding: 10px 31px !important;
    height: 50px !important;
    cursor: pointer;
    transition: all .3s ease;
}

.news_form .tnp-field-button input:hover {
    color: #6D308D !important;
    background-color: transparent !important;
    border: 1px solid #6D308D !important;
}

.news_form .tnp-field-email label {
    display: none;
}

.news_form .tnp-field-email {
    margin: 0 !important;
    width: calc(100% - 157px);
}

.news_form .tnp-field-email input {
    font-family: "Dosis", serif;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 180% !important;
    color: #171717 !important;
    letter-spacing: 0.02em;
    background: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important; 
    border-radius: 10px;
    height: 50px;
    padding: 10px !important;
}

.news_form .tnp-field-email input::placeholder {
    font-family: "Dosis", serif;
    font-weight: 400;
    font-size: 14px !important;
    line-height: 180% !important;
    color: #6B7280 !important;
    letter-spacing: 0.02em;
}

@media (max-width: 1399px) {
    .news_text_column {
        width: 57%;
    }
}

@media (max-width: 1199px) {
    .news_section {
        margin-top: 60px;
    }
    .news_text_column {
        padding-bottom: 40px;
    }
}

@media (max-width: 991px) {
    .news_section {
        margin-top: 40px;
    }
    .news_text_column {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .news_form .tnp-field-button input {
        padding: 10px 15px !important;
    }
    .news_form .tnp-field-email {
        width: calc(100% - 120px);
    }
}

@media (max-width: 767px) {
    .news_section {
        margin-top: 40px;
    }
    .news_wrapper {
        margin: 0;
    }
    .news_row {
        flex-direction: column;
    }
    .news_text_column,
    .news_column {
        width: 100%;
    }
    .news_column {
        padding: 0;
    }
    .news_text_column {
        padding-top: 30px;
    }
    .news_heading {
        text-align: center;
    }
    .news_image_column {
        padding-top: 22px;
    }
    .news_image::after {
        width: 100%;
    }
    .news_heading h2 {
        font-size: 24px;
        line-height: 30px;
    }
    .news_form .tnp-field-email input {
        color: #6B7280 !important; 
    }
}

@media (max-width: 575px) {
    .news_form form {
        flex-direction: column;
    }
    .news_form .tnp-field-email {
        width: 100%;
        margin-bottom: 24px !important;
    }
    .news_form .tnp-field-button input {
        width: fit-content !important;
        padding: 10px 24px !important;
        height: auto !important;
        font-size: 14px !important;
    }
    .news_form .tnp-field-button {
        text-align: center !important;
    }
}

/* Footer CSS */

.site_footer {
    background: #6D308D;
}

.footer_top_part {
    padding: 40px 0;
    text-align: center;
}

.footer_logo a img {
    display: block;
    width: 152px;
    margin: 0 auto;
}

.footer_para p {
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 24px;
}

.footer_bottom_part {
    border-top: 1px solid rgb(255 255 255 / 20%);
    padding: 15px 0;
}

.footer_policy_social_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.footer_policy ul.menu {
    display: flex;
    align-items: center;
}

.footer_policy ul.menu li {
    margin-right: 10px;
}

.footer_policy ul.menu li:last-child {
    margin-right: 0;
}

.footer_policy ul.menu li:first-child {
    position: relative;
    padding-right: 3px;
}

.footer_policy ul.menu li:first-child::after {
    content: "|";
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    color: #FFFFFF;
}

.footer_policy ul.menu li a {
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    transition: all .3s ease;
}

.footer_policy ul.menu li a:hover {
    text-decoration: underline;
}

.social_menu ul {
    display: flex;
    align-items: center;
    width: 100%;
}

.social_menu ul li {
    margin: 0 4px;
}

.social_menu ul li:first-child {
    margin-left: 0;
}

.social_menu ul li:last-child {
    margin-right: 0;
}

.social_menu ul li a img {
    display: block;
    width: 28px;
    height: 28px;
    transition: all .2s ease;
}

.social_menu ul li a img:hover {
    transform: scale(1.1);
}

@media (max-width: 1199px) {
    .footer_top_part {
        padding: 30px 0;
    }
    .footer_logo a img {
        width: 140px;
    }
    .footer_para p {
        margin-top: 20px;
    }
    .footer_bottom_part {
        padding: 12px 0;
    }
    .social_menu ul li a img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 991px) {
    .footer_top_part {
        padding: 25px 0;
    }
    .footer_logo a img {
        width: 130px;
    }
    .footer_para p {
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .footer_top_part {
        padding-top: 30px;
        padding-bottom: 16px;
    }
    .footer_logo a img {
        width: 152px;
    }
    .footer_para p {
        font-size: 14px;
        line-height: 20px;
        margin-top: 24px;
        letter-spacing: 0.02em;
    }
    .social_menu ul li a img {
        width: 24px;
        height: 24px;
    }
    .footer_bottom_part {
        padding-top: 16px;
        padding-bottom: 20px;
    }
    .footer_policy ul.menu li a {
        font-size: 13px;
        line-height: 20px;
    }
    .social_menu ul li {
        margin: 0 6px;
    }
}

/* Header CSS */

.header_top_part {
    padding: 35px 0;
}

.header_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-branding a img {
    display: block;
    width: 162px;
}

.header_translate_book_row {
    display: flex;
    align-items: center;
}

.header_translate {
    margin-right: 20px;
}

.header_translate li a {
    display: flex;
    align-items: center;
    padding: 5px;
    padding-right: 15px;
    background-color: #FFFFFF;
}

.header_translate select,
.header_translate li a span {
    background-color: transparent;
    border: none;
    font-family: "Dosis", serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0.02em;
    color: #323232;
    cursor: pointer;
    margin: 0 !important;
    width: 50px;
}

.header_translate li a img {
    display: block;
    width: 12px;
    /* min-width: 22px; */
    height: 11px;
    /* border-radius: 100%; */
    margin-right: 10px;
}

.header_translate select:focus-visible {
    outline: none;
}

.header_book_btn a {
    line-height: 140%;
    color: #6D308D;
    background-color: transparent;
    border: 1px solid #6D308D;
    border-radius: 8px;
    padding: 13px 20px;
    text-transform: none;
}

.header_book_btn a:hover {
    color: #FFFFFF;
    background-color: #6D308D;
}

.header_menu_icons {
    display: none;
}

.header_bottom_part {
    background: #FAF1F0;
    padding: 10px 0;
}

.header_menu ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header_menu ul li a {
    line-height: 140%;
    color: #323232;
    letter-spacing: 0.02em;
    transition: all .2s ease;
}

.header_menu ul li a:hover {
    text-decoration: underline;
}

.header_mobile_booking_btn {
    display: none;
}

.header_translate {
    position: relative;
}

.header_translate::after {
    content: "";
    background-image: url(../images/down-arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 11px;
    height: 11px;   
    position: absolute;
    top: 52%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
}

.header_translate li {
    display: none;
    position: absolute;
    top: 130%;
    left: 0;
    width: 100%;
    height: 100%;
}

.header_translate li.current-lang {
    display: block;
    position: initial;
}

.header_translate.active li {
    display: block;
}

@media (max-width: 1199px) {
    .header_menu ul li a {
        letter-spacing: 0;
    }
    .header_top_part {
        padding: 25px 0;
    }
    .site-branding a img {
        width: 150px;
    }
    .header_book_btn a {
        font-size: 15px;
        padding: 10px 15px;
    }
}

@media (max-width: 991px) {
    .header_bottom_part {
        position: fixed;
        top: 83px;
        left: 100%;
        width: 100%;
        height: 100%;
        padding: 30px 0;
        z-index: 1;
        transition: all .4s ease;
    }
    .header_top_part {
        padding: 20px 0;
    }
    .site-branding a img {
        width: 140px;
    }
    .header_translate {
        margin-right: 15px;
    }
    .header_book_btn a {
        font-size: 14px;
        padding: 10px 10px;
    }
    .header_menu_icons {
        display: flex;
        align-items: center;
        margin-left: 15px;
    }
    .header_menu_icons img {
        display: block;
        width: 30px;
        height: 30px;
    }
    .menu_close_icon {
        display: none;
    }
    .header_menu ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .header_menu ul li {
        width: 100%;
        margin-bottom: 20px;
    }
    .header_menu ul li:last-child {
        margin-bottom: 0;
    }
    .header_menu ul li a {
        display: inline-block;
        width: 100%;
        font-size: 18px;
        line-height: 26px;
    }
    body.overflow_hidden {
        overflow: hidden;
    }
    .site_header.menu_open .header_bottom_part {
        left: 0;
    }
    .site_header.menu_open .menu_open_icon {
        display: none;
    }
    .site_header.menu_open .menu_close_icon {
        display: block;
    }
}

@media (max-width: 767px) {
    .header_top_part {
        padding: 15px 0;
    }
    .site-branding a img {
        width: 130px;
    }
    .header_book_btn {
        display: none;
    }
    .header_translate {
        margin-right: 0;
    }
    .header_menu_icons img {
        width: 26px;
        height: 26px;
    }
    .header_bottom_part {
        top: 70px;
    }
    .header_mobile_booking_btn {
        margin-top: 20px;
        display: block;
    }
    .header_mobile_booking_btn a {
        width: 100%;
        font-size: 18px;
        line-height: 26px;
        color: #323232;
    }
}

/* 404 Page CSS */

.not_found_section {
    margin-top: 80px;
}

.error-content {
    text-align: center;
}

.error-content h1 {
    display: block;
    font-size: 150px;
    line-height: 160px;
    color: #6D308D;
    text-shadow:1px 1px 1px #6D308D, 
                2px 2px 1px #6D308D, 
                3px 3px 1px #6D308D, 
                4px 4px 1px #6D308D, 
                5px 5px 1px #6D308D, 
                6px 6px 1px #6D308D, 
                7px 7px 1px #6D308D, 
                8px 8px 1px #6D308D, 
                25px 25px 8px rgba(0, 0, 0, 0.2);
}

.error-content h2 {
    line-height: 52px;
    margin-top: 30px;
}

.error-btn {
    margin-top: 50px;
}
shark-icon-container {
    display: none;
}

@media (max-width: 1199px) {
    .not_found_section {
        margin-top: 60px;
    }
    .error-content h1 {
        font-size: 130px;
        line-height: 140px;
    }
    .error-content h2 {
        line-height: 47px;
        margin-top: 20px;
    }
    .error-btn {
        margin-top: 40px;
    }
}

@media (max-width: 991px) {
    .not_found_section {
        margin-top: 40px;
    }
    .error-content h1 {
        font-size: 110px;
        line-height: 120px;
    }
    .error-content h2 {
        line-height: 42px;
        margin-top: 15px;
    }
    .error-btn {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .not_found_section {
        margin-top: 30px;
    }
    .error-content h1 {
        font-size: 90px;
        line-height: 100px;
    }
    .error-content h2 {
        font-size: 24px;
        line-height: 34px;
        margin-top: 10px;
    }
    .error-btn {
        margin-top: 20px;
    }
}

.subscribe-confirmation .custom-message {
    font-size: 42px;
    line-height: 52px;
    text-align: center;
    text-transform: capitalize;
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .subscribe-confirmation .custom-message {
        font-size: 38px;
        line-height: 48px;
    }
}

@media (max-width: 991px) {
    .subscribe-confirmation .custom-message {
        font-size: 30px;
        line-height: 40px;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .subscribe-confirmation .custom-message {
        font-size: 26px;
        line-height: 36px;
        margin-top: 30px;
    }
}
.tnp-subscription input[type=email]{
    width: 100%;
    display: block;
    margin: 0;
}