* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body.nav-open {
    overflow: hidden;
}

.loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease .5s;
}

.loader_img {
    width: 200px;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

/* ///////////
Raleway
////////// */

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-VariableFont_wght.ttf') format('truetype');
    /* font-weight: 900; */
    font-style: normal;
    font-display: swap;
}

/* ///////////
Raleway
////////// */

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/raleway/Raleway-VariableFont_wght.ttf') format('truetype');
    /* font-weight: 900; */
    font-style: normal;
    font-display: swap;
}


/* ///////////
Poppins
////////// */

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

img {
    display: flex;
    width: 100%;
    height: auto;
}

video {
    width: 100%;
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: var(--black-color);
}

body {
    font-family: 'Raleway';
    background: var(--body-color);
}

:root {
    --light-pink: #FFB3CF;
    --black-color: #000;
    --theme-color: #D97096;
    --body-color: #FAF0E6;
    --white: #fff;
    --beige-color: #FFEFDF;
}

/* ///////////
Heading
////////// */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black-color);
    text-transform: uppercase;
    font-style: normal;
}

h1 {
    font-size: 80px;
    font-weight: 300;
    line-height: 80px;
    text-transform: uppercase;
}

.hero_content h1 {
    font-size: 110px;
    font-style: normal;
    font-weight: 300;
    line-height: 120px;
    margin-bottom: 25px;
    color: var(--white);
}

.hero_content h1 b {
    font-weight: 500;
}

h2 {
    font-size: 50px;
    font-weight: 700;
    line-height: 64px
}

p {
    color: var(--black-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
}

.container {
    max-width: 1420px;
    padding: 0 50px;
    margin: 0 auto;
    width: 100%;
}

header {
    padding: 50px 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.header_wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.logo {
    display: flex;
    width: 204px;
}

.nav_menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav_link {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    text-transform: uppercase;
    position: relative;
}

.nav_link:hover::before {
    width: 70%;
}

.nav_link:hover::after {
    width: 70%;
}

.nav_link::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    height: 1px;
    background: var(--theme-color);
    transition: all ease .4s;
}

.nav_link::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    height: 1px;
    background: var(--theme-color);
    transition: all ease .7s;
}

.cta_btn {
    display: flex;
    padding: 13px 38px;
    border: 1px solid var(--black-color);
    color: var(--black-color);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    text-transform: uppercase;
    transition: all ease .4s;
}

.cta_btn:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
}

.cta_btn.mob_only {
    display: none;
}

.hero--sec {
    height: 100vh;
    background: url('../images/hero-bg.jpg');
    background-position: center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero_main {
    margin-top: 50px;
}

.hero_content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta_btn.header {
    padding: 13px 32px;
    border-color: var(--white);
    color: var(--white);
}

.cta_btn.hero {
    border-color: var(--white);
    color: var(--white);
}

.intro--sec {
    padding: 100px 0;
}

.intro_head {
    margin-bottom: 50px;
}

.intro_wrapper {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

.intro_right {
    width: 73%;
    padding-left: 48px;
    border-left: solid 1px var(--theme-color);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.intro_left p {
    font-size: 18px;
    line-height: 30px;
    /*text-transform: capitalize;*/
    margin-bottom: 15px;
    font-family: 'Poppins';
}

.intro_left p b {
    font-weight: 500;
    font-size: 25px;
    line-height: 50px;
}

.intro_left p:last-child {
    margin-bottom: 0;
}

.intro_left {
    position: sticky;
    top: 20px;
    width: max-content;
}

.intro_content {
    margin-bottom: 48px;
}

.intro_content p {
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 30px;
}

.intro_content p:last-child {
    margin-bottom: 0;
}

.intro-logo {
    width: 217px;
    margin-left: auto;
}

.portfolio--sec {
    padding-bottom: 69px;
}

.portfolio_head .p-head-para {
    font-weight: 600;
    font-size: 22px;
}

.portfolio_head {
    margin-bottom: 50px;
}

.portfolio_head h2 {
    margin-bottom: 15px;
}

.portfolio_head p {
    font-weight: 500;
    font-size: 20px;
    line-height: 27px;
    margin-bottom: 20px;
}

.portfolio_head p:last-child {
    margin-bottom: 0;
}

.portfolio_head .p-head-para span {
    font-style: italic;
    color: var(--theme-color);
}

.portfolio_wrapper {
    display: grid;
    column-gap: 30px;
    row-gap: 50px;
    grid-template-columns: repeat(2, 1fr);
}

.portfolio_wrapper> :first-child {
    grid-column: 1 / -1;
}

.portfolio_img {
    width: 100%;
    margin-bottom: 35px;
    overflow: hidden;
}

.portfolio_img:hover {
    img {
        scale: 1.1;
    }
}

.portfolio_img img {
    transition: all ease .4s;
}

.portfolio_info h3 {
    font-size: 40px;
    font-weight: 600;
    line-height: 27px;
    text-transform: capitalize;
    margin-bottom: 22px;
}

.portfolio_info p {
    color: var(--theme-color);
    font-size: 22px;
    font-style: italic;
}

/* Book */
.booking--sec {
    padding: 100px 0;
    background: var(--beige-color);
}

.book_head {
    margin-bottom: 50px;
}

.book_wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.book_icon {
    width: 60px;
}

.book_card:nth-child(even) {
    flex-direction: row-reverse;
}

.book_card:nth-child(even) .book_info {
    text-align: right;
    max-width: 658px;
}

.book_card {
    display: flex;
    gap: 15px;
}

.book_info {
    width: 68%;
}

.book_info p {
    margin-bottom: 20px;
}

.book_info p:last-child {
    margin-bottom: 0;
}

.book_info h3 {
    font-size: 35px;
    font-weight: 600;
    line-height: 32px;
    text-transform: capitalize;
    margin-bottom: 15px;
}




.contact--sec {
    padding: 100px 0;
}

.contact_wrapper {
    display: flex;
    justify-content: space-between;
    gap: 78px;
}

.contact_left {
    width: 42%;
}

.contact_img {
    width: 55%;
}

.form_wrap {
    display: flex;
    gap: 14px;
    margin-bottom: 25px;
}

.form_block {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.form_block {
    width: 50%;
}

.form_wrap.textarea .form_block textarea {
    height: 143px;
    resize: none;
}

.form_block textarea,
.form_block select,
.form_block input {
    height: 49px;
    border-radius: 5px;
    border: 0.5px solid var(--theme-color);
    background: #FFF4E9;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding: 5px 17px;
    font-family: 'Raleway';
    outline: none;
    width: 100%;
}

.date-icon {
    position: absolute;
    right: 19px;
    top: 0;
    bottom: 0;
    height: max-content;
    margin: auto;
    pointer-events: none;
}

.form_block input::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.contact_head {
    margin-bottom: 50px;
}


.form_block select option {
    color: var(--black-color);
}

.form_wrap.file input[type="file"] {
    margin-bottom: 7px;
    padding: 9px 10px;
    font-size: 14px;
}

.form_wrap.file .form_block p {
    color: #9C9C9C;
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    line-height: 17px;
}

.form_wrap.file {
    align-items: flex-start;
    margin-bottom: 14px;
}

.date_input {
    position: relative;
}

.form_block select {
    -webkit-appearance: none;
    background-image: url(../icons/drop-arrow.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: 98%;
}

.form_wrap.textarea .form_block {
    width: 100%;
}

.form_block label {
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
}

.form_btn .cta_btn {
    background: transparent;
    cursor: pointer;
    font-family: 'Raleway';
}

.form_btn .cta_btn:hover {
    background: var(--theme-color);
}



.honor_wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.honor_left {
    width: 39%;
}

.honor_left_head h2 {
    margin-bottom: 10px;
}

.honor_left_head {
    margin-bottom: 30px;
}

.honor_right {
    width: 55%;
}

.honor_right_head {
    margin-bottom: 34px;
}

.honor_right_head h3 {
    color: var(--theme-color);
    font-size: 32px;
    font-weight: 700;
    line-height: 45px;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.honor_item {
    display: flex;
    justify-content: space-between;
}

.honor_right_head p {
    color: #FFFAFA;
    font-size: 20px;
}

.honor_item p {
    font-family: Poppins;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    text-transform: capitalize;
}


/* footer */

footer {
    background: #0B0B0B;
    padding: 100px 0 0;
}

.footer-logo {
    width: 274px;
    display: flex;
}

.footer_wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 70px;
}

.footer_block h4 {
    font-size: 16px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: 1px;
    text-transform: capitalize;
    color: var(--white);
}

.footer_block_head {
    margin-bottom: 22px;
}

.footer_block_head h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 18px;
    color: var(--white);
}

.footer_social {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer_contact h4 {
    margin-bottom: 8px;
}

.footer_contact p {
    margin-bottom: 20px;
}

.footer_contact p a {
    color: var(--white);
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 1px;
    font-family: 'Poppins';
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background: #F374A2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 18px;
}

.footer-copyright {
    padding: 21px 0 20px;
    border-top: 1px solid #636363;
}

.footer-copyright p {
    color: #9D9D9D;
    line-height: 18px;
    letter-spacing: 1px;
    text-align: center;
}

/* @inner-banner */
header.inner .cta_btn {
    color: var(--black-color);
    border-color: var(--black-color);
}

header.inner .cta_btn:hover {
    color: var(--white);
    border-color: var(--theme-color);
}

.inner-banner {
    padding: 277px 0 100px;
}

header.inner .nav_link {
    color: var(--black-color);
}

.inner_head {
    text-align: center;
}

.inner_head h1 {
    margin-bottom: 15px;
}

.inner_head p {
    font-size: 24px;
    line-height: 30px;
}

.inner_head {
    text-align: center;
}

.lingerie--sec {
    padding-bottom: 100px;
}

.lingerie_wrapper {
    display: flex;
    gap: 30px;
}

.lingerie_column {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lingerie_img {
    width: 100%;
}

.deposit--sec {
    padding-bottom: 100px;
}

.donation .inner_head {
    padding-bottom: 50px;
    position: relative;
}

.donation .inner_head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 1074px;
    height: 1px;
    background: linear-gradient(90deg, rgba(243, 116, 162, 0.00) 0%, #F374A2 50.48%, rgba(243, 116, 162, 0.00) 100%);
}

.donation .inner_head p {
    line-height: 33px;
}

.deposit_head {
    margin-bottom: 40px;
}

.deposit_head h3 {
    color: var(--theme-color);
    font-size: 50px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 12px;
    text-transform: capitalize;
}

.deposit_head p {
    font-size: 22px;
    line-height: 30px;
}

.depo_img {
    margin-bottom: 60px;
}

.depo_item {
    display: flex;
    justify-content: space-between;
    padding-bottom: 23px;
    border-bottom: solid 1px #BEBEBE;
    margin-bottom: 23px;
}

.depo_item h4 {
    padding-left: 22px;
}

.depo_item h4::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    background: #F374A2;
    border-radius: 100px;
}

.depo_item h4,
.depo_item p {
    font-family: 'Poppins';
    font-size: 22px;
    font-weight: 500;
    line-height: 32px;
    text-transform: capitalize;
    position: relative;
}

.deposit_main .cta_btn {
    width: max-content;
    background: var(--black-color);
    color: var(--white);
    border-color: var(--white);
}

.deposit_main .cta_btn:hover {
    background: var(--theme-color);
}

.custom-hamburger {
    display: none;
}

.contact--sec.csk {
    padding-top: 0;
}


/* Disable scroll when modal active */
body.no-scroll {
    overflow: hidden;
}

/* Overlay */
.disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Content box */
.disclaimer-modal-content {
    background: #fbb4ce1c;
    color: #fff;
    padding: 50px 30px;
    max-width: 800px;
    width: 90%;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.disclaimer-modal-content h2 {
    font-size: 34px;
    line-height: 40px;
    color: var(--white);
}

.disclaim_icon {
    width: 70px;
    margin: 0 auto;
}

/* Text */
.disclaimer-text {
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
    max-width: 100%;
    margin: 20px auto;
}

.disclaimer-text p {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 12px;
    font-family: 'Poppins';
    line-height: 20px;
}

/* Checkbox */
.checkbox-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
}

/* Buttons */
.disclaimer-actions button {
    padding: 12px 24px;
    margin: 5px;
    border: none;
    cursor: pointer;
    font-family: 'Raleway';
    font-weight: 500;
    transition: all ease .4s;
}

#acceptBtn {
    background: var(--theme-color);
    color: var(--white);
}

#acceptBtn:disabled {
    background: #555;
    cursor: not-allowed;
}

#declineBtn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

#declineBtn:hover {
    background: #fff;
    color: #000;
}

@media screen and (max-width: 1100px) {
    body {
        overflow-x: hidden;
    }

    .nav_menu {
        gap: 24px;
    }

    .nav_link {
        font-size: 18px;
    }

    .logo {
        width: 174px;
    }

    .hero_content h1 {
        font-size: 90px;
        line-height: 100px;
    }

    .intro_wrapper {
        gap: 20px;
    }

    .intro_right {
        padding-left: 25px;
    }

    .contact_wrapper {
        gap: 28px;
    }

    .contact_img img {
        height: 100%;
        object-fit: cover;
    }

    .contact_head {
        margin-bottom: 30px;
    }

    .form_wrap {
        margin-bottom: 10px;
    }

    .form_wrap.textarea .form_block textarea {
        height: 115px;
    }

    .form_wrap.column {
        flex-wrap: wrap;
    }

    .form_wrap.column .form_block {
        width: 100%;
    }

    .depo_item h4,
    .depo_item p {
        font-size: 18px;
        line-height: 26px;
    }
}

@media screen and (max-width: 992px) {
    h2 {
        font-size: 42px;
        line-height: 50px;
    }

    .logo {
        position: relative;
        z-index: 999;
    }

    .nav_link {
        font-size: 34px;
        line-height: 42px;
    }

    .hero_content h1 {
        font-size: 70px;
        line-height: 80px;
    }

    header {
        padding: 26px 0;
        position: fixed;
        z-index: 999;
        background: #0000006b;
    }

    .container {
        padding: 0 30px;
    }

    .navigation {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        background: black;
        z-index: 99;
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        transition: all ease .4s;
        flex-direction: column;
        gap: 30px;
    }

    .navigation.open {
        transform: translateY(0%);
    }

    .cta_btn.mob_only {
        display: flex;
    }

    .cta_btn.desk_only {
        display: none;
    }

    .ham {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 400ms;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .hamRotate.active {
        transform: rotate(45deg);
    }

    .hamRotate180.active {
        transform: rotate(180deg);
    }

    .line {
        fill: none;
        transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        stroke: #ffffff;
        stroke-width: 5.5;
        stroke-linecap: round;
    }

    .ham2 .top {
        stroke-dasharray: 40 121;
    }

    .ham2 .bottom {
        stroke-dasharray: 40 121;
    }

    .ham2.active .top {
        stroke-dashoffset: -102px;
    }

    .ham2.active .bottom {
        stroke-dashoffset: -102px;
    }

    .custom-hamburger {
        display: flex;
        width: 60px;
        position: relative;
        z-index: 999;
    }

    .nav_menu {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        justify-content: center;
    }

    .intro_wrapper {
        flex-wrap: wrap;
    }

    .intro_left {
        width: 100%;
    }

    .intro_right {
        padding-left: 0;
        width: 100%;
        border: none;
    }

    .portfolio_info h3 {
        font-size: 32px;
        line-height: 34px;
    }

    .book_info {
        width: 88%;
    }

    .book_info h3 {
        font-size: 32px;
        line-height: 32px;
    }

    .contact_head,
    .book_head {
        text-align: center;
    }

    .contact--sec {
        padding: 50px 0;
    }

    .contact_wrapper {
        flex-wrap: wrap;
    }

    .contact_left {
        width: 100%;
    }

    .contact_img {
        width: 100%;
    }

    .footer-logo {
        width: 200px;
    }

    .lingerie--sec {
        padding-bottom: 50px;
    }

    .inner-banner {
        padding: 200px 0 100px;
    }

    .container {
        padding: 0 20px;
    }

    h1 {
        font-size: 60px;
        line-height: 70px;
    }

    /* header.inner .nav_link {
        color: var(--white);
    }

    header.inner .cta_btn {
        color: var(--white);
        border-color: var(--white);
    } */

    .inner_head p {
        font-size: 18px;
        line-height: 27px;
    }

    .inner_head p br {
        display: none;
    }

    header.inner .navigation {
        background: #ebebeb;
    }

    header.inner .line {
        stroke: var(--black-color);
    }

    header.inner {
        background: #efe2d4;
    }

    .depo_item h4,
    .depo_item p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .disclaimer-modal-content {
        padding: 30px 30px;
    }
}

@media screen and (max-width: 767px) {
    header {
        padding: 14px 0;
    }

    .donation .inner_head::after {
        width: 100%;
        height: 2px;
    }

    .deposit_head p {
        font-size: 18px;
        line-height: 27px;
    }

    .donation .inner_head p {
        line-height: 30px;
        font-size: 16px;
    }

    .deposit_head h3 {
        font-size: 36px;
        line-height: 40px;
    }

    .logo {
        width: 144px;
    }

    h1 {
        font-size: 44px;
        line-height: 50px;
    }

    .inner_head h1 {
        margin-bottom: 6px;
    }

    .hero_content h1 {
        font-size: 44px;
        line-height: 56px;
    }

    .container {
        padding: 0 20px;
    }

    .logo {
        width: 164px;
    }

    .nav_link {
        font-size: 28px;
        line-height: 32px;
    }

    .intro--sec {
        padding: 50px 0;
    }

    h2 {
        font-size: 34px;
        line-height: 40px;
    }

    .intro_left p {
        font-size: 16px;
        line-height: 24px;
    }

    .intro_content p {
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .portfolio_wrapper {
        row-gap: 30px;
        grid-template-columns: repeat(1, 1fr);
    }

    .portfolio_info h3 {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 10px;
    }

    .portfolio_info p {
        font-size: 18px;
    }

    .portfolio_head p {
        font-size: 18px;
        line-height: 26px;
    }

    .book_card {
        flex-direction: column;
    }

    .book_card:nth-child(even) {
        flex-direction: column-reverse;
        align-items: end;
    }

    .book_wrapper {
        gap: 50px;
    }

    .book_info h3 {
        margin-bottom: 10px;
    }

    .book_info {
        width: 100%;
    }

    footer {
        padding: 50px 0 0;
    }

    .footer_wrapper {
        align-items: center;
        justify-content: center;
        gap: 30px;
        margin-bottom: 50px;
        flex-direction: column;
    }

    .footer_block {
        text-align: center;
    }

    .footer_social {
        justify-content: center;
    }

    .lingerie_wrapper {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .lingerie_column {
        width: 100%;
        gap: 20px;
    }

    .depo_item {
        flex-direction: column;
        gap: 10px;
    }
    
    
    .disclaimer-modal-content {
        padding: 30px 12px;
        width: 95%;
    }

    .disclaimer-modal-content h2 {
        font-size: 28px;
        line-height: 34px;
    }

    .disclaimer-text p br {
        display: none;
    }

    .disclaimer-text p {
        margin-bottom: 10px;
        font-size: 12px;
    }
    
    .hero--sec {
        background-position: 66% 30%;
    }
    
        .intro_left {
        padding-bottom: 20px;
        border-bottom: solid 1px #c4c4c4;
    }
}



@media screen and (max-width: 390px) {
    .disclaimer-text p {
        margin-bottom: 8px;
        font-size: 10px;
    }

    .disclaim_icon {
        width: 40px;
    }

    .disclaimer-actions button {
        padding: 8px 22px;
        margin: 5px;
    }

    .disclaimer-modal-content h2 {
        font-size: 17px;
        line-height: 25px;
    }

    .disclaimer-text {
        margin: 5px auto;
    }

    .checkbox-wrap {
        margin-bottom: 6px;
        font-size: 12px;
    }
}