@charset "utf-8";


/*~-~-~-~-~-~-~-~-~-~ Embeded fonts ~-~-~-~-~-~-~-~-~-~*/

@import url('https://fonts.googleapis.com/css2?family=Antic+Didone&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');

/*~-~-~-~-~-~-~-~-~-~ Embeded fonts ~-~-~-~-~-~-~-~-~-~*/

/*~-~-~-~-~-~-~-~-~-~ Custom fonts ~-~-~-~-~-~-~-~-~-~*/

@font-face {
    font-family: 'Brittany Signature';
    src: url('../css/fonts/BrittanySignatureRegular.eot');
    src: url('../css/fonts/BrittanySignatureRegular.eot?#iefix') format('embedded-opentype'),
        url('../css/fonts/BrittanySignatureRegular.woff2') format('woff2'),
        url('../css/fonts/BrittanySignatureRegular.woff') format('woff'),
        url('../css/fonts/BrittanySignatureRegular.ttf') format('truetype'),
        url('../css/fonts/BrittanySignatureRegular.svg#BrittanySignatureRegular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*~-~-~-~-~-~-~-~-~-~ Custom fonts ~-~-~-~-~-~-~-~-~-~*/


/* ~-~-~-~-~-~-~-~-~-~ global adjustments ~-~-~-~-~-~-~-~-~-~ */

:root {

    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */
    --body-font: "Lexend Deca", sans-serif;
    --heading-font: "Antic Didone", serif;
    --acent-font: "Brittany Signature", cursive;
    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */
    --f-size-XXXL: 80px;
    --f-size-XXL: 60px;
    --f-size-XL: 40px;
    --f-size-L: 30px;
    --f-size-M: 24px;
    --f-size-S: 18px;
    --f-size-Body: 18px;
    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */

    /* ~-~-~-~-~ common transition ~-~-~-~-~ */
    --common-transition: all 0.8s ease;
    /* ~-~-~-~-~ common transition ~-~-~-~-~ */

    /* ~-~-~-~-~ colors ~-~-~-~-~ */
    --color-white: #fff;
    --color-black-primary: #1A1A1A;
    --color-black-secondary: #262626;
    --color-body: #DFDFDF;
    --color-gold: #D2AF76;
    --color-pink: #D05174;
    /* ~-~-~-~-~ colors ~-~-~-~-~ */
}


/* html { overflow-x: hidden; } */
body {
    font-size: var(--f-size-Body);
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    line-height: 1.2;
    font-weight: 300;
    color: var(--color-body);
    transition: var(--common-transition);
    scroll-behavior: smooth;
    background-color: var(--color-black-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 30px;
    padding: 0;
    line-height: 1.1;
    font-family: var(--heading-font);
    color: var(--color-white);
    font-weight: 400;
}

h1 {
    font-size: var(--f-size-XXXL);
}

h2 {
    font-size: var(--f-size-XXL);
}

h3 {
    font-size: var(--f-size-XL);
}

h4 {
    font-size: var(--f-size-L);
}

h5 {
    font-size: var(--f-size-M);
}

h6 {
    font-size: var(--f-size-S);
}

p {
    margin: 0 0 30px;
    padding: 0;
    line-height: 1.4;
}

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

img {
    max-width: 100%;
}

a,
img {
    border: 0;
    text-decoration: none;
    outline: none;
}

a,
a:link,
a:visited,
a:focus,
a:hover {
    color: var(--color-pink);
    outline: none;
    text-decoration: none;
    transition: var(--common-transition);
}

a:hover {
    text-decoration: none;
    transition: var(--common-transition);
}

button {
    border: none;
}

.form-group {
    margin: 0 0 15px;
}

textarea,
select,
.form-control,
input {
    font-size: 16px;
    padding: 12px 20px;
    background-color: transparent;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #FFFFFF66;
    outline: none !important;
    box-shadow: none !important;
    color: var(--color-white);
    margin-bottom: 5px;
    height: 50px;
    font-family: var(--body-font);
    font-weight: 400;
}

textarea {
    min-height: 105px !important;
    resize: none;
}

input[type="submit"],
button[type="submit"] {
    transition: all 0.3s ease 0s;
    outline: none;
    width: auto;
    font-size: 16px;
    height: auto;
    margin: 0;
}

textarea:focus,
select:focus,
.form-control:focus,
.form-select:focus {
    outline: none !important;
    box-shadow: inherit !important;
    border: 1px solid #FFFFFF66;
    background-color: transparent;
    color: var(--color-white);
}

select,
.form-select {
    font-size: 18px;
    padding: 16px 20px;
    background-color: transparent;
    border-radius: 0;
    border: 1px solid #FFFFFF66;
    background-image: url(../images/select-arrow.svg);
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 12px;
    color: var(--color-white);
    height: 60px;
    cursor: pointer;
}

input:focus,
input:focus-visible {
    border: none;
    outline: none;
    box-shadow: none;
    border: 1px solid var(--color-gold);
}

.btn-check:focus+.btn,
.btn:focus {
    box-shadow: inherit;
}

/* --- for placeholder color --- */
input::-moz-placeholder,
.form-control::-moz-placeholder {
    color: #A6A6A6;
    opacity: 1;
}

input:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
    color: #A6A6A6;
}

input::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
    color: #A6A6A6;
}

/* --- for placeholder color --- */

label {
    margin-bottom: 10px;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 20px;
    color: var(--color-white);
}



ul.radio-check {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

ul.radio-check li {
    margin-right: 20px;
}

ul.radio-check li label.form-check-label {
    font-family: var(--body-font);
    font-weight: 300;
    margin: 0;
    font-size: 18px;
}

ul.radio-check li input.form-check-input {
    width: 22px;
    height: 22px;
    margin: 0 12px 0 0;
    padding: 0;
}

.form-group.terms-acpt label {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.form-group.terms-acpt label input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.form-group.terms-acpt label span {
    width: calc(100% - 22px);
    padding-left: 15px;
    font-family: var(--body-font);
    font-weight: 300;
    font-size: 16px;
}


.common-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.padding-top {
    padding-top: 100px;
}

.padding-bottom {
    padding-bottom: 100px;
}


.btn,
a.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    padding: 16px 40px;
    line-height: 1;
    border-radius: 45px;
    font-family: var(--heading-font);
    font-weight: 400;
    letter-spacing: 2.08px;
    text-align: center;
    text-transform: uppercase;
    background: #FFFFFF12;
    border: 1px solid var(--color-gold);
    backdrop-filter: blur(14px);
    transition: var(--common-transition);
}

.btn:hover,
a.btn:hover {
    background: var(--color-gold);
    color: var(--color-black-primary);
}



/* ~-~-~-~-~-~-~-~-~-~ global adjustments ~-~-~-~-~-~-~-~-~-~ */



/* -- Header -- */

.hdr-wrap {
    display: flex;
    align-items: stretch;
    width: 80%;
    background: #3443941A;
    backdrop-filter: blur(54px);
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    padding: 30px 0;
}

.custom-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hdr-wrap ul {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
}

.logo-wrap {
    width: 20%;
    text-align: center;
}

.logo-wrap img {
    width: auto;
    height: 110px;
}

.main-menu {
    width: 40%;
}

.main-menu ul {
    display: flex;
    align-items: center;
    padding: 0;
    list-style: none;
    margin: 0;
}

/* .main-menu ul li {  } */
.main-menu ul li.current-menu-item a,
.main-menu ul li:hover a {
    color: var(--color-gold);
}

.main-menu ul li a {
    color: var(--color-white);
    position: relative;
    display: block;
    text-transform: uppercase;
    padding: 0 20px;
    font-family: var(--heading-font);
    margin: 0;
}

.main-menu ul li.menu-btn a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    padding: 16px 40px;
    line-height: 1;
    border-radius: 45px;
    letter-spacing: 2.08px;
    text-align: center;
    text-transform: uppercase;
    background: #FFFFFF12;
    border: 1px solid var(--color-gold);
    backdrop-filter: blur(14px);
    animation: blink-btn 3s linear infinite;
}

.main-menu ul li.menu-btn {
    display: none;
}

.main-menu ul li.show-on-mobile {
    display: none;
}


.hdr-rt {
    width: 40%;
    text-align: right;
}

.header-btn {
    margin-left: auto;
}

.header-sticky {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    transition: all 0.5s;
    -ms-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    animation: slide-down 0.7s;
    -ms-animation: slide-down 0.7s;
    -webkit-animation: slide-down 0.7s;
    z-index: 9;
}

.header-sticky .main-header {
    margin: 0;
}

.header-sticky .main-header .container-fluid {
    width: 100%;
}


@keyframes slide-down {

    0% {
        transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -webkit-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
        -moz-transform: translateY(0);
        -webkit-transform: translateY(0);
        -o-transform: translateY(0);
        -ms-transform: translateY(0);
    }
}

/* -- Header -- */


/* Banner */

.banner-sec {
    position: relative;
}

.banner-image {
    position: relative;
    padding: 0 0 30.5%;
}

.banner-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgb(0 0 0 / 30%) 0%, rgb(0 0 0 / 30%) 17.34%, rgba(0, 0, 0, 0.2) 30%, rgb(0 0 0 / 30%) 100%);
    z-index: 0;
}

.banner-image img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-info-wrap {
    background: var(--color-black-primary) url(../images/bg-lines.png) no-repeat center bottom;
}

.banner-content {
    text-align: center;
    max-width: 1020px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.banner-info-img {
    max-width: 456px;
    margin: 0 auto 30px;
    left: 0;
    right: 0;
    top: -400px;
    position: absolute;
    z-index: -1;
    border: 1px solid var(--color-gold);
    border-radius: 250px;
    overflow: hidden;
}

.banner-info-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content h1 span,
.banner-content h1 strong {
    font-family: var(--acent-font);
    color: var(--color-gold);
}


.sticky-btn {
    background: linear-gradient(180deg, #C88210 0.2%, #333977 48.37%, rgba(51, 57, 119, 0.98) 57.84%, rgba(51, 57, 119, 0.9) 77.13%, rgba(51, 57, 119, 0.6) 99.7%);
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 7;
    padding: 40px 20px;
    border-radius: 0 15px 15px 0;
    writing-mode: vertical-rl;
    white-space: nowrap;
    line-height: 1;
    font-family: var(--heading-font);
    color: var(--color-white) !important;
    animation: blink-btn 3s linear infinite;
}

/* Banner */


/* --------- Category Block ---------- */

.global-heading-block h2 span,
.global-heading-block h2 strong,
.page-header.global-heading-block h1 span {
    font-family: var(--acent-font);
    color: var(--color-gold);
}

.collection-img-block {
    overflow: hidden;
}

.collectionImg-slider {
    margin: 0 0 40px !important;
    padding: 0 0 50px;
}

.collectionImg-slider .slick-list {
    margin: 0 -15px;
}

.collectionImg-slider .slide-item {
    padding: 0 15px;
}

.collectionImg-slider .CollectionImg {
    border: 1px solid #FFFFFF66;
    padding: 0 0 100%;
    position: relative;
    border-radius: 10px;
}

.collectionImg-slider .CollectionImg img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.collection-img-block p {
    max-width: 940px;
}

.collectionImg-slider .slick-arrow::before {
    opacity: 0;
}

.collectionImg-slider .slick-arrow {
    top: inherit;
    bottom: -45px;
    background: #FFFFFF12 url(../images/icon-left-arw-white.svg) no-repeat center center;
    border: 1px solid var(--color-gold);
    backdrop-filter: blur(14px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.collectionImg-slider .slick-prev {
    left: 0;
}

.collectionImg-slider .slick-next {
    right: inherit;
    background-image: url(../images/icon-right-arw-white.svg);
    left: 70px;
}



@media only screen and (min-width: 1022px) {
    .collectionImg-slider .slick-list {
        overflow: visible;
    }
}


.category-block {
    background: var(--color-black-primary);
}

.category-slider .slick-list {
    margin: 0 -15px;
}

.category-slider .slide-item {
    padding: 15px;
}

.category-block .category-box a {
    padding: 0 0 90%;
}

.category-box a {
    display: block;
    position: relative;
    padding: 0 0 100%;
    border: 1px solid #FFFFFF66;
    border-radius: 20px;
    box-shadow: 0px 0px 15px 0px #FFFFFF12;
}

.category-box a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 20px;
}

.category-box a:after {
    content: '';
    background: linear-gradient(48.72deg, #1a1a1aeb 1.83%, rgb(26 26 26 / 40%) 50.54%, rgba(26, 26, 26, 0.6) 98.96%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 20px;
}

.category-box .cat-info {
    position: absolute;
    z-index: 3;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
}

.category-box .cat-info .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.category-box .cat-info .icon-box img {
    width: auto;
    height: auto;
    position: static;
}

.category-box .cat-info h3 {
    margin: 0;
}

.category-box .cat-info p {
    color: var(--color-gold);
}

.category-slider .slick-arrow {
    top: -70px;
    background: #FFFFFF12 url(../images/icon-left-arw-white.svg) no-repeat center center;
    border: 1px solid var(--color-gold);
    backdrop-filter: blur(14px);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.category-slider .slick-arrow::before {
    opacity: 0;
}

.category-slider .slick-prev {
    left: inherit;
    right: 65px;
}

.category-slider .slick-next {
    right: 0;
    background-image: url(../images/icon-right-arw-white.svg);
}

/* Category Modal */
.modal .btn-close {
    background-color: var(--color-gold);
    opacity: 1;
    padding: 18px;
    border-radius: 50%;
    position: absolute;
    right: -20px;
    top: -20px;
}

.modal-content {
    background: var(--color-black-secondary);
    border-radius: 20px;
    box-shadow: 0px 0px 60px 0px #FFFFFF1A inset;
}

.cat-details-wrap {
    padding: 45px;
}

.cat-details-wrap .cat-dtls-img {
    aspect-ratio: 1/1.1;
}

.cat-details-wrap .cat-dtls-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.cat-details-wrap .cat-dtls-info .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}

.cat-details-wrap .cat-dtls-info .icon-box img {
    width: auto;
    height: auto;
    position: static;
}

/* Category Modal */

/* --------- Category Block ---------- */



/* Gift Block */

.gift-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 22px;
    border: 1px solid #FFFFFF33;
    border-radius: 15px;
    position: relative;
    min-height: 368px;
    justify-content: center;
}

.gift-btn:after {
    content: '';
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 15px;
}

.gift-btn h4,
.gift-btn img,
.gift-btn p {
    position: relative;
    z-index: 2;
}

.gift-btn img {
    margin: 0 0 30px;
    max-width: 60px;
}

.gift-btn p {
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 1px;
    background: linear-gradient(90deg, #C88210 0.2%, #256299 70%, rgb(37 98 153) 50%, rgb(37 98 153) 50%, rgb(37 98 153) 99.7%);
    animation: blink-btn 3s linear infinite;
}


@keyframes blink-btn {

    0%,
    100% {
        box-shadow: 0 0 10px #3F06FF;
    }

    50% {
        box-shadow: 0 0 10px #8EDDBE;
    }
}

@keyframes blink-text {

    0%,
    100% {
        text-shadow: 0 0 10px #3F06FF;
    }

    50% {
        text-shadow: 0 0 10px #8EDDBE;
    }
}


/* gift Modal */
.gift-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.gift-list ul li:not(:first-child) {
    border-top: 1px solid #FFFFFF1A;
}

.gift-list ul li a {
    display: block;
    padding: 15px 0;
    color: var(--color-white);
}

.gift-list ul li a:hover {
    color: var(--color-gold);
}

/* gift Modal */

/* Gift Block */


/* webcam-logos */
.webcam-logos {
    margin-top: 30px;
}

.webcam-logos ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.webcam-logos ul li {
    border: 1px solid #FFFFFF66;
    backdrop-filter: blur(10px);
    box-shadow: 0px 0px 60px 0px #FFFFFF1A inset;
    width: 30%;
    padding: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-family: var(--heading-font);
    font-size: 26px;
}

.webcam-logos ul li img {
    max-width: 150px;
}

.download-content-block {
    background: var(--color-black-primary);
}

.download-content-block .webcam-logos ul li {
    width: 18%;
}

.download-content-block .webcam-logos ul {
    justify-content: center;
}

/* webcam-logos */

/* news-and-links */

.news-and-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 75px;
    background: #2C2C2D;
    border-radius: 10px;
    margin-top: 40px;
    position: relative;
    border: 1px solid #FFFFFF66;
}

.news-and-links:after {
    content: '';
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 15px;
}

.news-and-links h3,
.news-and-links p {
    margin: 0;
    position: relative;
    z-index: 2;
}

.news-and-links .btn {
    position: relative;
    z-index: 2;
}

.webcam-logos.phone-chat {
    padding-top: 104px;
    margin-top: 0;
}

.webcam-logos.phone-chat ul {
    justify-content: flex-end;
    align-items: start;
}

.webcam-logos.phone-chat ul li {
    width: 45%;
    position: relative;
    min-height: 100px;
}

.webcam-logos.phone-chat ul li:after {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-white);
    position: absolute;
    top: -23px;
    margin: 0 auto;
    left: 0;
    right: 0;
}

.webcam-logos.phone-chat ul li:before {
    content: '';
    width: 1px;
    height: 190px;
    background: linear-gradient(0deg, #ffffff, transparent);
    position: absolute;
    top: -212px;
}

.webcam-logos.phone-chat ul li:first-child {
    margin-top: -40px;
}

.webcam-logos.phone-chat ul li:first-child:before {
    height: 140px;
    top: -162px;
}

/* news-and-links */


/* ======== Homepage ======== */


/* ======= About Page ======= */

.innerpage-banner .banner-innerpage-ttl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
}

.innerpage-banner .banner-innerpage-ttl h1 {
    margin: 0;
}

.innerpage-banner .banner-innerpage-ttl h1 span,
.innerpage-banner .banner-innerpage-ttl h1 strong {
    font-family: var(--acent-font);
    color: var(--color-gold);
}

.about-img {
    position: relative;
    border: 1px solid #FFFFFF66;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 50px 0px #FFFFFF12;
    margin: 0 0 26px;
}

.about-img img {
    width: 100%;
}

.about-img:after {
    content: '';
    /*background: linear-gradient(48.72deg, rgba(26, 26, 26, 0.5) 1.83%, rgba(26, 26, 26, 0.5) 98.96%);*/
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 20px;
}

/* ======= About Page ======= */


/* ======= Contact Page ======= */

.contact-form-outer .global-heading-block {
    margin: 0 0 25px;
}

.contact-us-main {
    background: var(--color-black-primary);
}

.contact-us-main .global-heading-block h2 {
    padding-bottom: 20px;
}

.contact-form-main .wpcf7-response-output {
    max-width: 45%;
}

.call-box a {
    display: block;
    background: #262626 url(../images/call-box-bg.png) no-repeat center / cover;
    max-width: 425px;
    width: 100%;
    box-shadow: 0px 0px 60px 0px #FFFFFF1A inset;
    border: 1px solid #FFFFFF66;
    border-radius: 10px;
    padding: 35px 70px;
    position: relative;
    font-family: var(--heading-font);
    font-size: 40px;
    color: var(--color-gold);
}

.call-box {
    position: relative;
    display: flex;
    align-items: center;
}

.call-box .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(145.04deg, #C88210 12.44%, #333977 79.34%);
    border-radius: 50%;
    border: 5px solid var(--color-black-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: -40px;
    position: relative;
    z-index: 3;
}

.modal-header-block h3 span {
    font-family: var(--acent-font);
    color: var(--color-gold);
}

.modal-header-block {
    padding-top: 25px;
}

.modal-header-block ul {
    padding: 0 0 0 20px;
    margin-top: 15px;
}

.modal-header-block ul li {
    margin: 0 0 10px;
    font-size: 15px;
}

.wpcf7-radio.radio-check {
    display: flex;
    flex-wrap: wrap;
}

.wpcf7-radio.radio-check span.wpcf7-list-item label {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.wpcf7-radio.radio-check span.wpcf7-list-item label input[type="radio"] {
    width: 18px;
    height: 18px;
    margin: 0 12px 0 0;
}

.wpcf7-radio.radio-check span.wpcf7-list-item.first {
    margin-left: 0;
}

.terms-acpt span.wpcf7-form-control-wrap .wpcf7-checkbox {
    padding-left: 0 !important;
}

.terms-acpt span.wpcf7-form-control-wrap .wpcf7-checkbox span.wpcf7-list-item {
    margin-left: 0;
    padding-left: 0 !important;
}

.terms-acpt span.wpcf7-form-control-wrap {
    padding-left: 0 !important;
}

.wpcf7-not-valid-tip {
    font-size: 14px !important;
    line-height: 1;
}

.form-group.terms-acpt label span span.wpcf7-not-valid-tip {
    padding-left: 0;
    font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    text-align: center;
}

.contact-form-main .call-box {
    justify-content: flex-end;
    margin-top: -50px;
}

.contact-form-main .call-box a {
    max-width: 345px;
    padding: 15px 60px;
    font-size: 30px;
}

.call-box .icon {
    width: 60px;
    height: 60px;
    border: 3px solid var(--color-black-secondary);
    margin-right: -30px;
    padding: 14px;
}

/* ======= Contact Page ======= */


/* ======= News and Links Page ======= */
.insta-linkbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 30px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1050px;
    border: 1px solid #FFFFFF66;
    position: relative;
}

.insta-linkbox:after {
    content: '';
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 15px;
}

.insta-linkbox h3 {
    margin: 0;
    position: relative;
    z-index: 3;
}

.insta-linkbox h3 a {
    color: var(--color-white);
}

.all-links .col-lg-4.col-md-6 {
    display: inline-flex;
}

.links-box {
    border: 1px solid #FFFFFF66;
    background: #FFFFFF0D;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    flex-grow: 1;
}

.newslatter_box {
    padding-top: 30px;
}

#newsletterModal .modal-header {
    flex-direction: column;
    border: 0;
}

#newsletterModal .modal-header p {
    margin: 0;
}

#newsletterModal form.wpcf7-form p br {
    display: none;
}

#newsletterModal form.wpcf7-form label {
    display: block;
}

/* ======= News and Links Page ======= */


/* -- Body Adjustment -- */



/* ===== Footer ===== */

.footer-main {
    background-color: var(--color-black-primary);
    padding-top: 100px;
}

.ftr-ad {
    padding: 80px;
    margin: 0 auto 60px;
    max-width: 1175px;
    border-radius: 20px;
    background-position: right center;
    position: relative;
    background-size: cover;
    border: 1px solid #FFFFFF66;
}

.ftr-ad:before {
    content: '';
    background: linear-gradient(84.37deg, #9761098c 0.2%, #33397794 48.37%, rgb(51 57 119 / 52%) 57.84%, rgb(51 57 119 / 55%) 77.13%, rgb(51 57 119 / 47%) 99.7%);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 20px;
}

.ftr-ad .global-heading-block {
    position: relative;
    z-index: 3;
    max-width: 620px;
}

.ftr-ad .global-heading-block h2 span {
    color: var(--color-white);
}

.footer-logo {
    max-width: 320px;
    margin: 0 0 20px;
}

.footer-social ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social ul li {
    margin-right: 8px;
}

.footer-social ul li a {
    background: #3A3A3A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--color-white);
    border: 1px solid #FFFFFF66;
}

.footer-social ul li a:hover {
    background: var(--color-gold);
}

.footer-social ul li a img {
    height: 22px;
}

.ftr-menu {
    display: flex;
    flex-direction: column;
}

.ftr-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.ftr-menu ul li {
    padding: 0 6px 10px;
    text-transform: uppercase;
    width: 50%;
}

.ftr-menu ul li a {
    color: var(--color-white);
    font-size: 16px;
}

.ftr-menu ul li a:hover {
    color: var(--color-gold);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.footer-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact ul li {
    position: relative;
    padding-left: 40px;
    margin: 0 0 15px;
    min-height: 24px;
}

.footer-contact ul li a {
    color: var(--color-white);
}

.footer-contact ul li img {
    position: absolute;
    left: 0;
    top: -2px;
}

.footer-copyright-wrap {
    padding-top: 60px;
    padding-bottom: 24px;
}

.footer-copyright-wrap .container {
    border-top: 1px solid #FFFFFF1A;
    padding-top: 24px;
}

.footer-copyright-wrap p {
    color: #868686;
    font-size: 14px;
}

/* ===== Footer ===== */

/* ======== Age Gate ========== */

/* Age Gate Modal Styling */
.age-gate-content {
    background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
    color: #fff;
    border: 2px solid #444;
    border-radius: 12px;
    padding: 2rem;
    font-family: 'Segoe UI', sans-serif;
}

.age-gate-logo {
    max-height: 80px;
}

.age-gate-content h2 {
    font-family: 'Georgia', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

.age-gate-content p,
.age-gate-content ul {
    font-size: 1rem;
    color: #e0e0e0;
}

.age-gate-content ul {
    text-align: left;
    padding-left: 1.2rem;
}

.age-gate-content ul li {
    margin-bottom: 0.5rem;
}

.btn-enter {
    background-color: #f3c142;
    color: #111;
    font-weight: bold;
    border: 2px solid #f3c142;
    border-radius: 50px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-enter:hover {
    background-color: #fff;
    color: #111;
}

.btn-exit {
    background-color: transparent;
    color: #f3c142;
    font-weight: bold;
    border: 2px solid #f3c142;
    border-radius: 50px;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-exit:hover {
    background-color: #f3c142;
    color: #111;
}

.alert-danger {
    background-color: #ffdddd;
    color: #990000;
    border: 1px solid #cc0000;
    font-weight: bold;
}


/* ======== Age Gate ========== */

.all-cat-section {
    padding-top: 130px;
}

.category-list .category-box {
    margin: 0 0 25px;
}

.category-list .category-box .cat-info h3 {
    font-size: 24px;
}

.category-list .category-box .cat-info .icon-box {
    width: 60px;
    height: 60px;
}

.pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination a,
.pagination span {
    margin: 0 5px;
    border: 0;
    background: #3A3A3A;
    border-radius: 3px;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.pagination a.prev,
.pagination a.next {
    width: auto;
    min-width: 75px;
    padding: 0 10px;
}

.pagination .current {
    background: var(--color-gold);
}


.blank-page-head {
    padding-top: 30px;
}

#ajax-loader img {
    width: 80px;
}


.default-page-wrapper .page-content ul li {
    margin: 0 0 20px;
}



/*UNSUBSCRIBE*/

.unsubscribe-block .card-body form {
    padding: 0 30px;
}

.unsubscribe-block #confirmation-section button {
    min-width: 180px;
    margin: 0 5px 5px;
    font-size: 14px;
    padding: 16px 30px;
}

.unsubscribe-block #unsubscribe-message {
    padding: 0 0 10px;
    font-size: 14px;
}

.unsubscribe-block .lead {
    color: var(--color-gold);
    font-size: 16px;
    margin: 0 0 15px;
}

/*UNSUBSCRIBE*/




@media only screen and (min-width: 1599px) {

    .container {
        max-width: 1416px;
    }

}

@media only screen and (max-width:1799px) {

    :root {
        --f-size-XXXL: 70px;
        --f-size-XXL: 50px;
        --f-size-XL: 36px;
        --f-size-L: 26px;
        --f-size-M: 20px;
        --f-size-S: 16px;
        --f-size-Body: 16px;
    }

    .banner-info-img {
        max-width: 375px;
        top: -340px;
    }

    .gift-btn {
        padding: 64px 22px;
    }



}

@media only screen and (max-width:1599px) {

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        margin: 0 0 25px;
    }

    p {
        margin: 0 0 25px;
    }

    .banner-info-img {
        max-width: 305px;
        top: -280px;
    }

    .gift-btn {
        padding: 64px 22px;
    }

    .gift-list ul li a {
        padding: 12px 0;
    }

    .modal .btn-close {
        padding: 14px;
    }

    .ftr-ad {
        padding: 60px;
    }

    .cat-details-wrap {
        padding: 25px;
    }


    .ftr-menu ul li a {
        font-size: 13px;
    }



}

@media only screen and (max-width:1359px) {
    :root {
        --f-size-XXXL: 55px;
        --f-size-XXL: 45px;
        --f-size-XL: 32px;
    }



    .news-and-links {
        padding: 40px 55px;
    }

    .category-box .cat-info .icon-box {
        width: 60px;
        height: 60px;
    }



}

@media only screen and (max-width:1199px) {

    :root {
        --f-size-XXXL: 36px;
        --f-size-XXL: 30px;
        --f-size-XL: 26px;
        --f-size-L: 22px;
    }

    .common-padding {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .padding-top {
        padding-top: 80px;
    }

    .padding-bottom {
        padding-bottom: 80px;
    }


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

    .hdr-wrap {
        background: #ffffff70;
        backdrop-filter: none;
    }

    .hdr-rt {
        width: 40%;
        text-align: right;
        display: flex;
        align-items: center;
    }

    .logo-wrap {
        width: 30%;
        text-align: left;
    }

    .main-menu {
        position: absolute;
        left: inherit;
        left: 0;
        right: 0;
        top: 0;
        z-index: 999;
        width: 100%;
        margin: 0 auto;
        background-color: var(--color-black-primary);
        border: 0;
        padding: 12rem 30px 60px;
        display: block;
        overflow: auto;
        display: none;
        height: 100vh;
    }

    .main-menu>ul {
        flex-direction: column;
    }

    .main-menu>ul li {
        width: 100%;
        text-align: center;
        margin: 15px 0;
        border: 0;
    }

    .main-menu ul li:not(:last-child) {
        margin-right: 0;
    }

    .main-menu>ul>li a {
        display: block;
        color: var(--color-white);
        padding: 0;
    }

    .main-menu ul li.current-menu-item a,
    .main-menu ul li:hover a {
        color: var(--color-white);
    }

    .hdr-rt ul li a {
        color: var(--color-white);
        padding: 10px;
    }

    .main-menu ul {
        flex-direction: column;
        gap: 16px;
    }

    .main-menu ul li.menu-btn {
        display: block;
    }

    .main-menu ul li.show-on-mobile {
        display: block;
    }

    .nav_btn {
        display: block;
        cursor: pointer;
        position: relative;
        margin: auto 10px auto 10px;
        width: 30px;
        height: 20px;
        z-index: 999;
    }

    .nav_btn::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--color-gold);
        top: 0;
        right: 0;
        transition: ease-in-out 0.4s;
    }

    .nav_btn span {
        width: 100%;
        height: 2px;
        background: var(--color-gold);
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }

    .nav_btn::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--color-gold);
        right: 0;
        bottom: 0;
        transition: ease-in-out 0.4s;
    }

    .nav_btn.sidebar_active span {
        display: none;
    }

    .nav_btn.sidebar_active::after {
        transform: rotate(45deg);
        bottom: 9px;
        background: var(--color-white);
    }

    .nav_btn.sidebar_active::before {
        transform: rotate(135deg);
        top: 9px;
        background: var(--color-white);
    }

    .sticky-btn {
        /* display: none; */
        transform: translateY(0) rotate(0deg);
        writing-mode: inherit;
        border-radius: 15px 15px 0 0;
        padding: 15px 20px;
        top: inherit;
        bottom: 0;
        right: 80px;
    }


    .webcam-logos.phone-chat ul li:before {
        height: 160px;
        top: -182px;
    }

    .webcam-logos.phone-chat ul li:first-child:before {
        height: 120px;
        top: -142px;
    }

    .gift-btn {
        padding: 42px 22px;
    }

    .banner-info-img {
        max-width: 255px;
    }

    .category-box .cat-info .icon-box {
        width: 45px;
        height: 45px;
    }

    .all-cat-section {
        padding-top: 130px;
    }


}

@media only screen and (max-width:991px) {


    .btn,
    a.btn {
        height: auto;
        padding: 15px 20px;
        font-size: 14px;
    }

    .btn img {
        width: 20px;
        margin-left: 15px;
    }

    .common-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .padding-top {
        padding-top: 60px;
    }

    .padding-bottom {
        padding-bottom: 60px;
    }

    label {
        font-size: 18px;
    }

    textarea,
    select,
    .form-control,
    input,
    .form-select {
        font-size: 15px;
        padding: 12px 20px;
        height: 50px;
    }

    .main-header {
        padding: 15px 0;
        position: relative;
        background-color: #000000;
    }

    .header-sticky {
        position: fixed;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .logo-wrap {
        width: 40%;
    }

    .logo-wrap img {
        height: 80px;
    }

    .banner-image {
        padding: 0 0 25.5%;
    }


    .banner-info-img {
        max-width: 255px;
        top: -230px;
    }

    .category-slider .slick-arrow {
        width: 35px;
        height: 35px;
        background-size: 12px;
        top: -45px;
    }

    .category-slider .slick-prev {
        right: 45px;
    }

    .category-box .cat-info {
        padding: 20px;
    }

    .gift-btn {
        margin: 0 0 24px;
    }

    .webcam-logos.phone-chat {
        padding-top: 165px;
    }

    .webcam-logos.phone-chat ul {
        justify-content: center;
    }

    .news-and-links {
        padding: 30px;
        flex-direction: column;
        gap: 12px;
    }

    .ftr-ad {
        padding: 40px;
    }

    .footer-main {
        padding-top: 50px;
    }

    .footer-logo {
        margin: 0 0 30px;
    }

    .footer-copyright-wrap {
        padding-top: 40px;
    }

    .ftr-menu {
        align-items: flex-start;
        padding-top: 30px;
    }

    .footer-contact {
        padding-top: 30px;
        align-items: start;
    }

    .copyright-info {
        padding-top: 12px;
    }


    .cat-details-wrap {
        padding: 10px;
    }

    .cat-dtls-info {
        padding-top: 20px;
    }


    .call-box {
        margin: 0 0 30px;
    }

    .call-box a {
        font-size: 30px;
    }

    .all-cat-section {
        padding-top: 130px;
    }

    .footer-social {
        padding-top: 30px;
    }

    .footer-social ul {
        justify-content: flex-start;
    }

    .contact-us-main .global-heading-block {
        padding: 0 0 30px;
    }

    .contact-form-main .call-box {
        justify-content: flex-start;
        margin-top: 20px;
    }

    #contactModal .modal-dialog {
        max-width: 92%;
    }

    .contact-form-main .wpcf7-response-output {
        max-width: 100%;
    }

    .download-content-block .webcam-logos ul li {
        width: 25%;
    }


}



@media only screen and (max-width:767px) {

    :root {
        --f-size-XXXL: 30px;
        --f-size-XXL: 28px;
        --f-size-XL: 26px;
        --f-size-L: 18px;
        --f-size-M: 16px;
        --f-size-S: 15px;
        --f-size-Body: 14px;
    }

    .common-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .padding-top {
        padding-top: 40px;
    }

    .padding-bottom {
        padding-bottom: 40px;
    }

    .container {
        width: 95%;
    }

    .logo-wrap {
        width: 40%;
    }

    .hdr-rt .header-btn a {
        padding: 10px 14px;
        font-size: 12px;
        letter-spacing: 1px;
        animation: blink-btn 3s linear infinite;
    }

    .hdr-rt {
        justify-content: flex-end;
        width: 50%;
    }

    .banner-image {
        padding: 0 0 27.5%;
    }

    .banner-info-img {
        max-width: 145px;
        top: -110px;
    }

    .modal-dialog {
        margin: 20px;
    }

    .webcam-logos ul li {
        width: 45%;
        font-size: 18px;
    }

    .slick-dots li button:before {
        color: var(--color-gold);
        opacity: 1;
        font-size: 10px;
    }

    .slick-dots li.slick-active button:before {
        color: var(--color-white);
    }

    .category-slider {
        padding-bottom: 50px;
    }

    .category-slider .slick-arrow {
        top: inherit;
        bottom: -16px;
    }

    .category-slider .slick-prev {
        right: inherit;
        left: 37%;
    }

    .category-slider .slick-next {
        right: 37%;
    }

    .webcam-logos ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .webcam-logos ul li img {
        max-width: inherit;
        height: 30px;
    }

    .webcam-logos.phone-chat ul li img {
        height: auto;
        max-width: 110px;
    }

    .footer-main {
        padding-top: 50px;
    }

    .ftr-ad {
        padding: 25px;
    }

    .footer-social ul li a {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-social ul li a img {
        height: 16px;
    }

    .footer-copyright-wrap {
        padding-top: 30px;
    }

    ul.radio-check li {
        margin-bottom: 20px;
    }

    ul.radio-check li label.form-check-label {
        font-size: 16px;
    }

    ul.radio-check li input.form-check-input,
    .form-group.terms-acpt label input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .form-group.terms-acpt label span {
        font-size: 15px;
        width: 100%;
    }

    .call-box {
        margin: 0 0 25px;
    }

    .call-box a {
        width: 80%;
        padding: 35px 25px 35px 40px;
        font-size: 26px;
    }

    .wpcf7-radio.radio-check {
        margin-left: -15px;
    }

    .wpcf7-radio.radio-check span.wpcf7-list-item.first {
        margin-left: 1em;
    }

    .insta-linkbox {
        padding: 30px 20px;
    }

    .insta-linkbox h3 {
        font-size: 18px;
    }

    body.sidebar-open {
        overflow: hidden;
    }

    .all-cat-section {
        padding-top: 130px;
    }

    .logo-wrap img {
        height: auto;
    }

    .ftr-menu ul li {
        padding: 0 0 10px;
        width: 100%;
    }

    .contact-form-outer .container {
        width: 100%;
    }

    .contact-form-main .call-box {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .contact-form-main .call-box a {
        max-width: 100%;
        width: 100%;
        padding: 15px 30px;
        font-size: 20px;
        text-align: center;
    }

    .contact-us-main .global-heading-block {
        margin: 0 0 25px;
    }

    .footer-copyright-wrap p {
        font-size: 12px;
    }

    .download-content-block .webcam-logos ul li {
        width: 45%;
    }

}

@media only screen and (max-width:514px) {
    .common-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}