:root {
    --golden-color:  white;
    --golden-color-hover: #198754;
    
    --orange-color: #D8A25E;
    --red-color: #a8063d;
    
    --gray-color: #393939;
    --black-color: #191919;
    --darker-black-color: #0d0d0d;
    --white-color: #FFFBDA;

    --small-padding: 10px;
    --medium-padding: 20px;
    --large-padding: 40px;

    --small-margin: 10px;
    --medium-margin: 20px;
    --large-margin: 40px;

    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.5rem;
    --h5-font-size: 1.25rem;
    --h6-font-size: 1rem;
    
    
    --large-font-size: 1.2rem;
    --medium-font-size: 1rem;
    --small-font-size: 0.9rem;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/wp-content/themes/another-site/assets/fonts/Open_Sans/static/OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('/wp-content/themes/another-site/assets/fonts/Open_Sans/static/OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
    src: url('/wp-content/themes/another-site/assets/fonts/Alice/Alice-Regular.ttf') format('truetype');
    
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital@0;1&display=swap');


html {
    scroll-behavior: smooth;
}


header {
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000;
    background: var(--darker-black-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 
}

body {
    margin: 0 auto;
    padding-top: 85px;
    font-family: "Alice", serif;
    font-weight: 400;
    font-style: normal;
    background-color: rgb(33 37 41);
}
.btnn {
    border: 1px solid white;
    padding: 9px 12px;
    border-radius: 5px;
    width: 35%;
    text-align: center;
}
a.call-btn {
    background: #a8063d;
}
a.whats-btn.btnn {
    background: #198754;
}
main {
    min-height: 700px;
}
.btn-group-d .seo-model_main_container{
    display: none;
}
.btn-group-d {
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.seo-section-title h2 {
    position: relative;
}
.seo-section-title h2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -10px;
    left: 0px;
    background: linear-gradient(135deg, #ff6a00, #ee0979);
}
nav.seo-mobile-menu {
    padding: 18px;
}
header {
    padding: 5px 100px;
    background: #a8063d;
}
footer {
  padding: 20px 20px; 
  background: var(--darker-black-color);
  border-top: 3px solid var(--golden-color);
}

.model-breadcrumbs{
    font-size: 19px;
    align-self: flex-start;
    margin:15px 0;
}
.model-breadcrumbs ul{
    display: flex;
    gap: 10px;
}
.seo-body{
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    max-height: max-content;
}

.seo-footer{
    max-width: 1400px;
    margin: 0 auto;
}


p, span, ul, h1, h2, h3, h4, h5, h6, button {
    font-family: "Open Sans", sans-serif;
}


h1, h2, h3, h4, h5, h6{
    color: var(--golden-color);
    text-align: center;
}
.title-d h1 {
    color: white;
}
h2.text-start {
    text-align: left;
}
p, span, li {
    color:white;
}

.model-info p,.model-info span {
    color: white;
}

h1 {
    font-size: var(--h1-font-size);
    margin-bottom: var(--small-margin);
    margin-top: var(--small-margin);
}

h2 {
    font-size: var(--h2-font-size);
    margin-bottom: var(--small-margin);
    margin-top: var(--small-margin);
}

h3 {
    font-size: var(--h3-font-size);
    margin-bottom: var(--small-margin);
    margin-top: var(--small-margin);
}

h4 {
    font-size: var(--h4-font-size);
    margin-bottom: var(--small-margin);
    margin-top: var(--small-margin);
}

h5 {
    font-size: var(--h5-font-size);
    margin-bottom: var(--small-margin);
    margin-top: var(--small-margin);
}

h6 {
    font-size: var(--h6-font-size);
    margin-bottom: var(--small-margin);
    margin-top: var(--small-margin);
}

p {
    font-size: var(--medium-font-size);
    margin-bottom: var(--medium-margin);
}

a, button {
    color: white;
    text-decoration: none;
}

ul, li {
  list-style: none;
  padding: 0;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
}


.custom-pagination{
    display:flex;
     gap:10px;
}

.pagination a {
    padding: 5px;
    text-decoration: none;
    background-color: var(--golden-color);
    color: #000000;
    height: max-content;
}
.next.page-numbers,
.prev.page-numbers{
    width: 40px;
    font-weight: 900;
    text-align: center;
}
.pagination .current {
    padding: 5px;
    background-color: #000000;
    color: var(--golden-color);
    outline: 1px solid var(--golden-color);
    height: max-content;
}
.pagination{
    margin: 40px auto;
    display: flex;
    gap: 10px;
    justify-content: center;
}
.pagination.blog_pagination{
    margin: 0 auto;
}
p.error-message {
    padding: 0;
    color: #a8063d;
    margin: 0;
    font-weight: 600;
}

.seo-escort-header {
    margin-bottom: 30px;
    padding: 45px;
    background-color: var(--gray-color);
    color: var(--orange-color);
    text-align: center;
    font-size: 32px;
}

.seo-hover-line-a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--golden-color);
  transition: width 0.2s ease-in-out;
}

.seo-hover-line-a.simulate-hover::before {
  width: 100%;
}

.seo-hover-line-a:hover:before {
  width: 100%;
}

.seo-hover-line-a.simulate-hover {
  color: var(--golden-color);
}

.seo-hover-line-a {
  position: relative;
 color: var(--white-color) !important; 
 font-weight: bold;
 cursor: pointer;
}

.line {
    border-bottom: 3px solid var(--golden-color);
    width: 90%;
    margin: 10px auto; 
    display: flex;
    justify-content: center;
}

.line-main {
    border-bottom: 3px solid var(--golden-color);
    width: 95%;
    margin: 10px auto; 
    display: flex;
    justify-content: center;
}

   
.seo-filter-buttons{
    display: flex;
    justify-content: center;
    gap: var(--medium-margin);
    margin: var(--medium-margin) 0;
    flex-wrap: wrap;
}

.seo-filter-button {
    padding: 5px 20px;
    border: 2px solid var(--golden-color);
    background-color: var(--golden-color);
    color: var(--black-color);
    cursor: pointer;
    font-size: var(--medium-font-size);
    transition: background-color 0.3s, color 0.3s;
}

.seo-filter-button:hover {
    background-color: var(--darker-black-color);
    color: var(--golden-color);
}

.seo-filter-button.active {
    background-color: var(--darker-black-color);
    color: var(--golden-color);
}



::-webkit-scrollbar {
    width: 12px; 
    height: 12px; 
}

::-webkit-scrollbar-track {
    background: var(--darker-black-color); 
}

::-webkit-scrollbar-thumb {
    background-color: var(--golden-color); 
    border: 1px solid var(--black-color); 
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--golden-color-hover); 
}

body, .custom-scrollable-element {
    scrollbar-color: var(--golden-color) var(--black-color); 
    scrollbar-width: thin; 
}
.seo_reset_filter{
    display: flex;
    background-color: #6b0707;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: white;
    padding: 5px 20px;
    border: 2px solid var(--golden-color);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--orange-color);
    border: 2px solid var(--orange-color); 
    border-radius: 50%;
    color: var(--black-color); 
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); 
    display: flex; 
    opacity: 0;
    transition: opacity 0.3s, background-color 0.3s, color 0.3s;
    z-index: 1000; 
}

.scroll-to-top.show {
    opacity: 1; 
}

.scroll-to-top:hover {
    background-color: var(--black-color); 
    color: var(--orange-color);
}

.scrollToTopIcon {
    position: relative;
    left: 27%;
    top: 13%;
}

.seo-button {
    display: inline-block;
    margin: 30px 0px;
    padding: 10px 50px;
    border: 2px solid var(--golden-color);
    color: var(--black-color);
    background-color: var(--golden-color);
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.seo-button:hover {
    background-color: var(--darker-black-color);
    color: var(--golden-color);
}



.seo-icon {
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    margin: 10px 0px -12px 0px;
}

.seo-icon-header {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    margin: 0px 0px 0px 0px;
}
.seo-icon-header.twitter {
    width: 30px;
    height: 30px;
}
.seo-icon:hover,.seo-icon-header:hover  {
    transform: scale(1.2);
}
.favorite-icon {
    top: 5px;
    right: 5px;
    width: 35px;
    height: 35px;
    cursor: pointer;
    position: absolute;
    z-index: 2;
    padding: 5px;
    display:none;
}
.seo-line-cube {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative; 
}
.seo-line-cube::before,
.seo-line-cube::after {
    content: "";
    position: absolute;
    width: 15px; 
    height: 15px; 
    background-image: url(../img/cube.webp);
    
    background-size: cover;
}
.seo-line-cube::before {
    left: 0px; 
    margin-right: 10px; 
}
.seo-line-cube::after {
    right: 0px;
    margin-left: 10px; 
}
.seo-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
     margin-top: 50px; 
    margin-bottom: 20px;
    position: relative; 
}
span.open-link i {
    font-size: 24px;
}
.seo-section-title::after {
    right: 0px;
    transform: rotate(180deg);
    margin-left: 10px; 
}
.seo-section-title hr {
    flex: 1;
    border: none;
    height: 2px;
    /* background-color: var(--golden-color); */
    margin: 0 10px;
}
#seo-age-verification-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}
#seo-age-verification-popup > div {
    background: var(--darker-black-color);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    width: 500px;
}

.seo-button-popup {
    display: inline-block;
    margin: 15px 0px;
    padding: 15px 50px;
    border: 2px solid var(--golden-color);
    color: var(--black-color);
    background-color: var(--golden-color);
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}
.seo-button-popup:hover {
    background-color: var(--darker-black-color);
    color: var(--golden-color);
}

.seo-escort-content{
    margin: 30px 0px;
    padding: 20px;
    background-color: var(--gray-color);
    color: var(--orange-color);
    text-align: center;
    
}

@media only screen and (max-width: 1340px) {
    
    body {
        margin: 0 auto;
        padding-top: 30px;
        background-color: #010000;
    }

}

@media only screen and (max-width: 768px) {

    .seo-header-contacts {
   
    right: 0 !important;
}
header {
    padding: 0px 0px !important;
}
body {
    padding-top: 70px;
}
    :root {
        --h1-font-size: 1.5rem;
        --h2-font-size: 1.25rem;
        --h3-font-size: 1.1rem;
        --h4-font-size: 1rem;
        --h5-font-size: 0.9rem;
        --h6-font-size: 0.8rem;
        
        --large-font-size: 0.875rem;
        --medium-font-size: 0.75rem;
        --small-font-size: 0.65rem;
    }

    :root {
        --small-padding: 5px;
        --medium-padding: 10px;
        --large-padding: 20px;

        --small-margin: 5px;
        --medium-margin: 10px;
        --large-margin: 20px;
    }

	.seo-escort-header {
		margin-left: 5%;
		margin-right: 5%;
		font-weight: bold;
	}    
    
    .seo-body, .seo-footer {
        max-width: 100%;
    }
    
    .seo_reset_filter{
       font-size:12px;
    }
    
    .scroll-to-top {
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
	
	.scrollToTopIcon {
		position: relative;
		left: 23%;
		top: -2%
	}

   .seo-button {
        margin: 5px 0px;
        padding: 10px 35px;
	   	width: 100%;
    }
    
    .seo-section-title::before,
    .seo-section-title::after {
        width: 20px; 
        height: 20px; 
    }

    .seo-section-title hr {
        margin: 0 25px; 
    }
    .seo-section-title::before {
        left: 15px; 
    }
    
    .seo-section-title::after {
        right: 15px;
    }
    .favorite-icon {
        top: 0px;
        width: 25px;
        height: 25px;
    }
    .seo-section-title {
        margin-top: 20px;
    }
}


