/* Importing Fonts */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@1,500&family=Roboto:wght@300;400;500;700;900&family=Sacramento&display=swap');
@font-face {
    font-family: "Mussica Swash";
    src: url(../fonts/MussicaSwash.otf);
}

@font-face {
    font-family: "Georgia";
    src: url(../fonts/Georgia.ttf);
}

:root {
    --font-mussica: "Mussica Swash";
    --font-georgia: "Georgia";
    --font-sacra: 'Sacramento', cursive;
    --font-raleway: 'Raleway', sans-serif;
    --primary: #8C3773;
    --seconday: #EF8395;
    --light: #FEEDD2;
    --gradient: linear-gradient(to bottom right, #893671, #C13069);
    --gradient2: linear-gradient(to bottom right, #8C3773, #E97F91);
    --transition: .3s all ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Roboto';
    color: var(--primary);
}

img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 48px;
    font-family: var(--font-mussica);
}

h1 img {
    max-width: 30px;
}

h2 {
    font-size: 29px;
    font-weight: 700;
    font-family: var(--font-georgia);
}

.site-btn {
    position: relative;
    background: var(--gradient);
    border: 2px solid transparent;
    padding: 8px 25px;
    color: #fff;
    transition: var(--transition);
    overflow: hidden;
}

.site-btn span {
    position: relative;
}

.site-btn::before {
    content: "";
    position: absolute;
    background: var(--light);
    width: 100%;
    height: 100%;
    top: -100%;
    left: 0;
    transition: var(--transition);
}

.site-btn:hover {
    color: var(--primary);
    transition: var(--transition);
}

.site-btn:hover::before {
    top: 0;
    transition: var(--transition);
}

.site-btn.outline-btn {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
}

.site-btn.outline-btn:hover {
    color: #fff;
}

.site-btn.outline-btn::before {
    background: var(--gradient);
}

.form-check-input,
.form-check-input:checked {
    border-color: var(--primary);
    background-color: #FFFAF2;
}

.form-check-input:checked[type=radio] {
    background-image: url(../images/circle.png);
    background-size: 8px;
}

.btn:focus {
    box-shadow: 0 0 0 0.25rem rgba(140, 55, 115, .25);
}

.form-check-input:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(140, 55, 115, .25);
    border-color: var(--primary);
}

@media (min-width: 768px) {
    .main {
        background: var(--seconday);
        padding: 100px 0;
    }
}

.invite_card {
    background: var(--light) url(../images/card-pattern-compressed.png) no-repeat;
    background-size: 100% 100%;
    padding: 26px 0 100px;
    border-radius: 3px;
}

.hashtag {
    text-align: center;
    font-style: italic;
    font-size: 28px;
    font-weight: 500;
    font-family: var(--font-raleway);
}

.invite_card .hashtag {
    margin-bottom: 80px;
}

.invite_card h1 {
    margin-bottom: 40px;
}

.invite_card h2 {
    margin-bottom: 12px;
}

.invite_card h2 span {
    width: 36px;
    height: 4px;
    background: #C13069;
    display: inline-block;
    vertical-align: middle;
    border-radius: 10px;
}

.invite_card p {
    margin-bottom: 7px;
    font-size: 24px;
}

.invite_card .btnsFull {
    display: block !important;
}

.invite_card .btnsFull a{
    max-width: 405px !important;
    display: block;
}

.invite_card .btns {
    margin-top: 30px;
    display: flex;
}

.invite_card .btns button {
    font-size: 23px;
    width: 100%;
    max-width: 195px;
}

@media (min-width: 992px) {
    .invite_card .col-lg-6 {
        width: 45%;
    }
}

.invite_card .img {
    background: url(../images/pattern-2.png) no-repeat;
    background-size: 100% 100%;
    padding: 65px;
}

.invite_card .img .border {
    background: var(--gradient2);
    border-radius: 50%;
    padding: 5px;
    position: relative;
    z-index: 1;
}

.invite_card .img .border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid #E97F91;
    top: 0;
    left: -7%;
    z-index: -1;
}

.invite_card .img img {
    border-radius: 50%;
}


/* Popups */

.cus_modal {
    padding-right: 0;
}

.cus_modal::-webkit-scrollbar {
    display: none;
}

.cus_modal .modal-dialog {
    max-width: 770px;
}

.cus_modal .modal-content {
    background: #FFFAF2;
    border-radius: 10px;
}

.cus_modal .modal-body {
    padding: 0 70px;
}

.cus_modal .modal-body h2 {
    color: #0F0D0E;
    text-align: center;
    max-width: 540px;
    margin: 0 auto 30px;
}

.cus_modal .modal-body input:not(input[type="radio"]) {
    border-color: rgba(15, 13, 14, 0.4);
    color: rgba(15, 13, 14, 0.4);
}

.cus_modal .modal-body label {
    color: #0F0D0E;
}

.cus_modal .modal-body label:not(.form-check-label) {
    color: rgba(15, 13, 14, 0.4);
}

.cus_modal .modal-body h3 {
    font-family: var(--font-georgia);
    color: #0F0D0E;
    font-weight: 700;
}

.cus_modal .modal-body .site-btn {
    font-size: 23px;
}

.cus_modal .note {
    color: rgba(15, 13, 14, 0.5);
    text-align: center;
    margin-top: 18px;
}


/* DEtails Popup */

#detailsPopup .modal-body {
    padding: 0 50px 50px;
}

.details_wrapper .text {
    text-align: center;
    margin-top: 40px;
}

.details_wrapper h2 {
    font-family: var(--font-sacra);
    font-weight: 400 !important;
    color: var(--primary) !important;
    font-size: 36px !important;
    margin-bottom: 0px !important;
}

.details_wrapper p {
    color: #BD2F66;
    font-size: 17px;
}

@media (max-width: 1199px) {
    h1 {
        font-size: 43px;
    }
}

@media (max-width: 991px) {
    .invite_card .img {
        padding: 40px;
    }
    .invite_card {
        margin: 0 -15px;
        padding: 30px 50px 60px;
    }
    .invite_card .text {
        text-align: center;
        margin-top: 60px;
    }
    .invite_card .btns {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 40px;
    }
    h1 img {
        display: none;
    }
    h2 {
        font-size: 24px;
    }
    .invite_card .hashtag {
        margin-bottom: 40px;
    }
    .invite_card {
        margin: 0 -15px;
        padding: 30px 30px;
        background: var(--light) url(../images/mob-pattern.png) no-repeat;
        background-size: 100% 90%;
    }
    .invite_card p {
        font-size: 20px;
    }
    .invite_card .img {
        padding: 28px;
    }
    .invite_card h2 span {
        display: none;
    }
    .invite_card h2 {
        font-family: var(--font-sacra);
        font-size: 30px;
        font-weight: 400;
    }
    .invite_card .site-btn {
        max-width: 100% !important;
        font-size: 20px !important;
    }
    .details_wrapper h2.mussica {
        font-size: 34px !important;
        font-family: var(--font-mussica);
        padding-top: 20px;
        margin-bottom: 30px !important;
    }
    /* Popups */
    .cus_modal .modal-body h2,
    .cus_modal .modal-body h3 {
        font-size: 18px;
    }
    .cus_modal .modal-body {
        padding: 0 15px;
    }
    .cus_modal .modal-body label.form-check-label {
        font-size: 14px;
    }
    .cus_modal .note {
        font-size: 12px;
    }
    .hashtag {
        font-size: 20px;
    }
    #detailsPopup .modal-body {
        padding: 0 20px 30px;
    }
    .details_wrapper p {
        font-size: 16px;
    }
    .details_wrapper .text {
        margin-top: 24px;
    }
    .details_wrapper h2 {
        font-size: 30px !important;
    }
    .details_wrapper h2.big {
        font-size: 28px !important;
    }
}
