* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, Arial, Helvetica, sans-serif;
    font-weight: 300;
    scroll-behavior: smooth;
}

/********************
* Start: Default Styles
********************/


.main-container {
    max-width: 1920px;
    margin: 0 auto;
    /* border-left: 3px solid #fff;
    border-right: 3px solid #fff; */
}

.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    max-width: 1200px;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.btn-default {
    /* font-family: 'Rubik'; */
    padding: 0.5rem 3rem;
    border-radius: 2rem;
    letter-spacing: 1px;
    display: inline-block;
    background: var(--default-color-title);
    color: #fff;
    border: 3px solid transparent;
    transition: 0.25s;

    background: #b5dfc2;
    color: #000;
    border: 2px solid var(--default-color-title);
}

.btn-seccondary {
    background: #5f2075;
    color: #fff;
    padding: 1rem;
    display: inline-block;
}

.btn-default:hover {
    background: transparent;
    color: var(--default-color-title);
    border: 3px solid var(--default-color-title);
}


.video-wrapper iframe,
.video-wrapper video,
.img-wrapper img {
    width: 100%;
}

.title {
    color: var(--default-color-title);
    font-family: 'Lobster';
    text-align: center;
    font-size: 3em;
    letter-spacing: 0.2rem;
}

.description {
    font-family: 'Rubik';
    font-size: 1.5rem;
    color: #5f2075;
    text-transform: uppercase;
    line-height: 2rem;
}

.text {
    font-family: 'Lora';
    color: #333;
    font-size: 1.2rem;
}

#particles-js.paralax {
    background: var(--main-gragient);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -100;
    overflow: hidden;
}

/********************
* End: Default Styles
********************/

/********************
* Start: Header / Footer
********************/
.section-header {
    color: #fff;
    backdrop-filter: blur(2px);
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-wrapper {
    text-align: center;
    max-width: 100px;
}

.logo-wrapper svg {
    fill: #c72ec0;
}

.section-header .container {
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-menu {
    display: flex;
}

.nav-menu a {
    margin: 0 1em;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: normal;
}

.nav-menu a::before {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background: #fff;
    left: 0;
    bottom: 0;
    transition: 0.25s;
}

.nav-menu a:hover:before {
    width: 100%;
}

.nav-social-media {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/********************
* End: Header / Footer
********************/

/********************
* Start: Main
********************/


.section-main {
    position: relative;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-main .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    min-height: 50vh;
}

.section-main .text-wrapper {
    text-align: center;
    width: 100%;
}

.section-main .text-wrapper h3.title {
    font-size: 3.5em;
    line-height: 1;
    color: #fff;
}

.section-main .text-wrapper h1 {
    /* font-family: 'Rubik'; */
    font-size: 5.5em;
    color: #fff;
    margin: 2rem 0;
}

.section-main .btn-default {
    margin-top: 30px;
    border-color: #5f2075;
    color: #5f2075;
    border-radius: 8px;
    font-weight: bold;
}

/********************
* End: Main
********************/

/********************
* Start: Product Info
********************/

.section-product-info {
    background: transparent;
}

.section-product-info .decor-item {
    position: relative;
    top: 10px;
    fill: #fff;
}

.section-product-info {}

.section-product-info .container {
    max-width: 100%;
    background: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.section-product-info .text-wrapper {
    max-width: 700px;
}

.section-product-info p {
    font-size: 1.3rem;
    margin-top: 2rem;
}

.section-product-info .video-wrapper {
    max-width: 500px;
    width: 100%;
    border-radius: 2rem;
    overflow: hidden;
}

.section-product-info2 {
    /* background: #5f2075; */
    text-align: center;
}


.section-product-info2 .container {
    display: block;
    padding-top: 0;
    max-width: 960px;
    color: #fff;
    background: transparent;
}

.section-product-info2 .description {
    color: #fff;
    padding-top: 3rem;
}

.section-product-info2 ul {
    text-align: left;
    font-size: 1.3rem;
    margin: 1rem auto;
    list-style: none;
}

.section-product-info2 li {
    margin-top: 1rem;
    position: relative;
    padding-left: 10px;
    display: flex;
    align-items: center;
}

.section-product-info2 li::before {
    content: '';
    width: 10px;
    height: 100%;
    background: var(--default-color-title);
    position: absolute;
    left: -10px;
}



/********************
* End: Product Info
********************/

/********************
* Start: Invitation 
********************/

.section-invitation {
    background: #fcfcfc;
    position: relative;
}


.rotate-180 {
    transform: rotate(180deg);
}

.section-invitation .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;

}

.section-invitation .text-wrapper {
    max-width: 700px;
}


.section-invitation .text-wrapper p {
    margin-top: 1.5rem;
    font-size: 1.3rem;
}

.section-invitation .img-wrapper {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.section-invitation .img-wrapper img,
.section-invitation .img-wrapper iframe {
    max-width: 500px;
    border-radius: 2rem;
    overflow: hidden;
}

.section-invitation2 .container {
    max-width: 1200px;
    padding: 0;
    display: block;
}

.section-invitation2 {
    padding-bottom: 4rem;
}


.section-invitation ul li {
    list-style: none;
    display: inline-block;
    margin: 0.2rem;
    /* border-radius: 1rem; */
    padding: 0.5rem;
    background: #e1f4e7;
    color: #000;
    /* border-bottom: 1px solid #5f2075; */
    font-size: 14px;
    font-weight: bold;
    background-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #5f2075;

}

.section-invitation ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 100%;
    background: #5f2075;
}

/********************
* End: Invitation 
********************/

/********************
* About Us
********************/

.section-about-us {
    background: #fff;
}

.section-about-us .img-wrapper {
    max-width: 500px;
}



/********************
* End: About Us
********************/
.section-research {
    text-align: center;
}

.section-research .btn-default {
    margin-top: 2rem;
}

.section-research .text-wrapper {
    max-width: 1024px;
}

.section-research .video-wrapper {
    max-width: 300px;
}

/********************
* Start: Author Info
********************/

.section-author-info {
    /* background: #fff; */
    padding: 5rem 1rem;
}

.section-author-info .container {
    border-radius: 1rem;
    padding: 2rem;
    max-width: 1024px;
    backdrop-filter: blur(10px);
    text-align: left;
    border: 1px solid #fff;
    color: #fff;
}

.section-author-info .title {
    color: #fff;
}

.section-author-info .description {
    margin-top: 2rem;
    font-size: 1rem;
    text-transform: capitalize;
    color: #fff;
}

.section-author-info p {
    margin-top: 1rem;
}

.img-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 1rem;
}

.section-author-info .img-wrapper {
    max-width: 300px;
    border-radius: 1rem;
    overflow: hidden;
}

/********************
* End: Author Info
********************/

/********************
* Start: Section Booking
********************/

.section-booking {
    padding-top: 5rem;
    background: #fff;
    background: url(../img/bg-circle.png);
    padding-bottom: 5rem;
}

.section-booking .description {
    font-size: 1.3rem;
}

.section-booking .text-wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-booking .text-wrapper .text-content {
    width: 100%;
}

.section-booking .text-wrapper .text-content:last-child {
    padding: 1rem;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    box-shadow: rgb(181 223 194 / 50%) 0px 2px 8px 0px;
    background: #fff;
    border-radius: 1rem;
}

.section-booking .text-wrapper ul {
    list-style: none;
    display: inline-block;
}

.section-booking .text-wrapper ul li {
    margin-top: 1.5rem;
    position: relative;
    margin-left: 10px;
}

.section-booking ul li::after {
    content: '';
    width: 5px;
    height: 100%;
    transition: 0.5s;
    background: var(--default-color-title);
    position: absolute;
    left: -10px;
}


.section-booking .text-wrapper p {
    margin-top: 1rem;
    font-size: 1.1rem;
}

/********************
* End: Section Booking
********************/

/********************
* Start: Section Recomendation
********************/


.section-recomendation {
    /* background: #fff; */
    padding: 5rem 0;
}

.section-recomendation .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.section-recomendation .title {
    color: #fff;
}

.section-recomendation .card {
    width: 30%;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    backdrop-filter: blur(20px);
    background: rgb(255, 255, 255, 0.5);
    /* box-shadow: rgb(181 223 194 / 50%) 0px 2px 8px 2px; */

    border: 1px solid #fff;
    cursor: pointer;
}

.section-recomendation .card:hover {
    box-shadow: none;
    border: 1px solid whitesmoke;
}


.section-recomendation .card .description {
    font-size: 1rem;
    color: var(--default-color-title);
    color: #5f2075;
}


.section-recomendation p {
    text-align: center;
    color: #fff;
    margin-top: 3rem;
    font-weight: normal;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-recomendation p b {
    font-weight: bold;
    color: #5f2075;
}



.section-recomendation ul {
    margin-top: 0.5rem;
    margin-left: 15px;
    list-style: none;
}

.section-recomendation ul li::before {
    content: "\2022";
    color: #5f2075;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}



/********************
* End: Section Recomendation
********************/

.section-faq {
    padding: 5rem 0;
    background: #fcfcfc;
}

.section-faq b {
    color: #5f2075;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    display: inline-block;
}

.section-faq ul li {
    margin-top: 1.5rem;
}

.section-faq ul li a {
    border-bottom: 1px solid #333;
    margin: 0 5px;
}

/*****
*
*****/

.section-disclaimer {
    /* background: #5f2075; */
    padding-top: 2rem;
    padding-bottom: 1rem;
    color: #fff;
}

.section-disclaimer .description {
    color: #fff;
    font-weight: 300;
    margin-bottom: 1rem;
}

/*****
* Section Footer
*****/

.section-footer {
    /* background: #5f2075; */
}

/* .section-footer .logo-wrapper {
    margin-left: auto;
    margin-right: auto;
} */


.section-footer .container {
    border-top: 1px solid rgb(255, 255, 255, 0.5);
    max-width: 1200px;
    gap: 1rem;
    text-align: center;
}

@media screen and (max-width: 1170px) {
    .title {
        font-size: 2.5rem;
    }

    .section-main .text-wrapper h1 {
        font-size: 3.5em;
        margin: 1rem 0;
    }

    .section-product-info .container {
        flex-direction: column;
    }

    .section-product-info .video-wrapper {
        max-width: 700px;
    }

    .section-research .container {
        flex-direction: row;
    }

    .section-research .video-wrapper {
        max-width: 300px;
    }

    .section-research .text-wrapper {
        max-width: 500px;
    }

    .section-faq .container {
        max-width: 700px;
    }

    .section-recomendation .container {
        gap: 1rem;
    }
}

@media screen and (max-width: 1024px) {
    .section-header .nav-menu {
        display: none;
    }

    .title {
        font-size: 2rem;
    }

    .section-invitation .container {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .section-invitation .img-wrapper iframe {
        max-width: 700px;
    }

    .section-booking .text-wrapper {
        max-width: 700px;
    }

    .section-research .container {
        flex-direction: column-reverse;
    }

    .section-research .video-wrapper {
        max-width: 350px;
    }

    .section-recomendation .card {
        width: 45%;
    }

    .section-product-info2 .description {
        padding-top: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .section-research .btn-default {
        width: 100%;
        margin-top: 0.5rem;
    }

    .section-main .btn-default {
        font-size: 14px;
        padding: 0.5rem;
    }

    .title {
        font-size: 1.5rem;
    }

    .section-main .text-wrapper h1 {
        font-size: 2.6rem;
    }

    .section-main .text-wrapper h3.title {
        font-size: 2rem;
    }

    .text-animation {
        height: 4vmin;
        font-size: 3vmin;
    }

    .description {
        font-size: 1.2rem;
        line-height: normal;
    }

    .section-product-info2 li,
    .section-product-info p {
        font-size: 1rem;
    }

    .section-product-info .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .section-product-info2 .container {
        padding-top: 0;
    }

    .section-invitation ul li {
        margin-left: 0;
        margin-right: 0;
        width: 90%;
        /* border-radius: 0; */

        border-width: 1px;
    }

    .section-invitation .container {
        padding-bottom: 1rem;
    }

    .section-booking .text-wrapper {
        flex-direction: column;
        display: flex;
        gap: 1rem;
    }

    .section-invitation .text-wrapper p,
    .section-booking .description {
        font-size: 1rem;
    }

    .section-recomendation .card {
        width: 100%;
    }

    .section-recomendation p {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-faq ul {
        list-style: none;
    }

    .section-recomendation,
    .section-faq {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .section-booking .title {
        font-size: 1.8rem;
    }

    .title {
        font-size: 2rem;
    }

    .section-author-info .container {
        padding: 1rem;
    }

    .img-container {
        flex-wrap: wrap;
    }

    .section-footer .container {
        flex-direction: column;
    }
}

@media screen and (max-width: 425px) {
    .section-main .text-wrapper h1 {
        font-size: 2.2rem;
    }
}
