/* Hero Section CSS */
.hero {
    min-height: 100vh;
    height: 100vh;
}
.hero .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero .hero-content-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: color-mix(in srgb, var(--dark-color) 60%, transparent);
}
.hero .hero-content {
    max-width: 1000px;
    margin: 0 auto;
    color: var(--bs-white);
}
.hero .hero-content h1,
.hero .hero-content .h1 {
    color: var(--bs-white);
}

/* About Section CSS */
.about .h2 {
    max-width: 800px;
}
.about .h3 {
    max-width: 700px;
}

/* product Section CSS */
.product-items {
    overflow: hidden;
    border-radius: 20px;
    background-color: var(--bs-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.product-items:hover {
    transform: translateY(-10px);
}
.product-items .product-items-content {
    padding: 10px 15px 15px;
}
.product-items .product-items-content .h5 {
    margin-bottom: 10px;
}
.product-items .product-items-content .age {
    color: var(--dark-color);
}



/* Side Image CSS */
.side-content-wrap h2 {
    margin-bottom: 16px;
}
.side-img-wrap {
    padding-left: 20px;
    padding-bottom: 20px;
    position: relative;
}
.side-img-wrap::after {
    content: '';
    width: 75%;
    height: 75%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--theme-primary-color);
    z-index: 1;
}
.side-img-wrap img {
    position: relative;
    z-index: 2;
}
.right-img.side-img-wrap {
    padding-left: 0;
    padding-right: 20px;
}
.right-img.side-img-wrap::after {
    left: auto;
    right: 0;
}

/* About-3 Section CSS */
.about-3 .about-inner-content {
    padding: 15px;
    border-radius: 15px;
    margin-block: 30px;
}
.about-3 .about-inner-content .about-inner-content-inner {
    padding: 20px 15px;
    border-radius: 15px;
    border: 2px dashed var(--dark-color);
}
.about-3 .about-inner-content .about-inner-content-inner h2 {
    margin-bottom: 20px;
    font-size: var(--h3-fs);
    color: var(--theme-primary-color);
    animation: zoom-in-zoom-out 1s ease infinite;
}
@keyframes zoom-in-zoom-out {
    0% {
        scale: 100%;
    }
    50% {
        scale: 110%;
    }
    100% {
        scale: 100%;
    }
}
.about-3 .about-inner-content .about-inner-content-inner h3 {
    color: var(--dark-color);
}
.location-item .location-image {
    border: 2px solid var(--theme-primary-color);
    border-radius: 20px;
    overflow: hidden;
}
.location-item .location-image img {
    max-height: 370px;
    object-position: center center;
    transition-duration: 0.5s;
}
.location-item:hover .location-image img {
    transform: scale(1.2);
}
.location-item .location-content {
    background-color: color-mix(in srgb, var(--theme-primary-color) 70%, transparent);
}
.location-item .btn-line {
    border: 2px solid var(--theme-primary-color) !important;
}

.service {
    position: relative;
    background-size: cover;
    background-position: center;
}
.service::after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: color-mix(in srgb, var(--dark-color) 60%, transparent);
}
.service-grid {
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.service-grid .service-item {
    padding: 20px;
    font-size: 1rem;
    cursor: pointer;
    color: var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
    background-color: var(--theme-secondary-color);
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.service-grid .service-item:hover {
    transform: scale(1.1);
}
.service-grid .service-item.blue { background-color: #2e64fe; }
.service-grid .service-item.pink { background-color: #f356b3; }
.service-grid .service-item.red { background-color: #e74c3c; }
.service-grid .service-item.yellow { background-color: #f1c40f; color: #000; }
.service-grid .service-item.darkblue { background-color: #34495e; }
.service-grid .service-item.teal { background-color: #1abc9c; }
.service-grid .service-item.lightblue { background-color: #3498db; }
.service-grid .service-item.green { background-color: #2ecc71; }

.about-2 h2,
.about-2 h3 {
    margin-bottom: 16px;
}
.accordion .accordion-item {
    border-color: var(--theme-primary-color);
    border-left: none;
    border-right: none;
    border-radius: 0;
}
.accordion .accordion-item .accordion-header .accordion-button {
    box-shadow: none;
    border-radius: 0;
    font-size: var(--p-fs);
}
.accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    color: var(--theme-primary-color);
    background-color: var(--theme-secondary-color);
}
.accordion .accordion-item .accordion-header .accordion-button {
    line-height: 1.5;
}

.price-box {
    max-width: 1200px;
    margin-top: 30px;
}
.price-item {
    border-radius: 20px;
    padding: 50px 32px;
}
.price-item h3 {
    font-size: 45px;
    margin-bottom: 10px;
    color: var(--theme-primary-color);
}
.price-item p {
    margin-bottom: 25px;
    font-size: var(--p-fs);
    color: var(--dark-color);
}
.price-item .price-item-list {
    margin-bottom: 30px;
}
.price-item .price-item-list li + li {
    margin-top: 5px;
}

.contact-form,
.contact-details {
    border-radius: 20px;
    border: 2px dashed var(--theme-primary-color);
}
.contact-form {
    padding: 60px 20px 46px;
}
.form-control:focus {
    border-color: var(--theme-primary-color);
    box-shadow: none;
}
.contact-details {
    padding: 50px 20px 30px;
}
.contact-details .contact-details-item + .contact-details-item {
    margin-top: 25px;
}
.contact-details .contact-details-item i {
    color: var(--theme-primary-color);
}
.contact-details .contact-details-item p a:hover {
    color: var(--theme-primary-color);
}

.profile-section h2 {
    color: var(--theme-primary-color);
}
.profile-img {
    padding: 20px;
    border-radius: 20px;
    background-color: var(--theme-secondary-color);
    border: 1px solid var(--theme-primary-color);
}
.profile-img .main-image {
    border-radius: 16px;
    overflow: hidden;
}
.profile-img .small-images {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
    border-radius: 20px;
}
.profile-img .small-images .small-image {
    width: 25%;
    cursor: pointer;
}
.profile-content .nav.nav-tabs {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--theme-primary-color);
    background-color: var(--theme-secondary-color);
}
.profile-content .tab-content .tab-pane .table-wrap {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--theme-primary-color);
    background-color: var(--theme-secondary-color);
    margin-top: 20px;
}
.profile-content .tab-content .tab-pane .table-wrap .h5 {
    margin-bottom: 10px;
}
.profile-content .tab-content .tab-pane .table-wrap p {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}
.profile-content .tab-content .tab-pane .table-wrap .table {
    border-color: var(--theme-primary-color);
    margin-bottom: 0;
}
.profile-content .tab-content .tab-pane .table-wrap .table tr:last-child td {
    border-bottom: none;
    padding-bottom: 0;
}
.profile-content .tab-content .tab-pane .table-wrap .table tr th {
    background-color: transparent;
    color: var(--theme-primary-color);
}
.profile-content .tab-content .tab-pane .table-wrap .table tr td {
    background-color: transparent;
}
.profile-content .tab-content .tab-pane .table-wrap .table tr td.headding:first-child {
    color: var(--theme-primary-color);
    font-weight: 500;
}
.about-5 h2 {
    margin-bottom: 15px;
}
.about-5 .h4 {
    margin-bottom: 15px;
}
.about-5-item {
    gap: 12px;
    display: flex;
    text-align: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 20px 10px;
    border-radius: 20px;
    background-color: var(--bs-white);
    border: 1px solid var(--theme-primary-color);
}
.about-5-item:hover {
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    background-color: var(--theme-secondary-color);
}
.about-5-item img {
    width: 60px;
    height: 60px;
}
.about-5-item span {
    font-size: 16px;
    color: var(--dark-color);
    display: inline-block;
}

.hotels .category {
    border: 1px solid var(--theme-primary-color);
    flex: 1 auto;
}
.hotels .category:hover {
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    transform: translateY(-4px);
}

.profile-details .nav.nav-tabs {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--theme-primary-color);
    background-color: var(--theme-secondary-color);
    margin-bottom: 15px;
}
.profile-details .tab-pane {
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--theme-primary-color);
    background-color: var(--theme-secondary-color);
}


#ageModal.modal .modal-cercul {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    font-size: 24px;
    background-color: var(--theme-primary-color);
}
#ageModal.modal h2 {
    margin-bottom: 20px;
}
#ageModal.modal p {
    margin-bottom: 10px;
}
#ageModal.modal p b {
    color: var(--theme-primary-color);
}
#ageModal.modal p a {
    font-weight: bold;
    color: var(--theme-primary-color);
}
#ageModal.modal .modal-content {
    background-color: var(--theme-secondary-color);
}
.escorts-type .escorts-type-items {
    border: 1px solid var(--theme-primary-color);
    background-color: var(--theme-secondary-color);
    padding: 20px;
    border-radius: 20px;
}
.escorts-type .escorts-type-items img {
    margin-bottom: 20px;
    border-radius: 16px;
}


.about-6 .content-wrap::after {
    background-color: var(--theme-primary-color);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.about-6 .content-wrap {
    padding: 40px;
}
.about-6 .content-wrap * {
    position: relative;
    z-index: 1;
}
.about-6 .content-wrap h2 {
    margin-bottom: 20px;
}
.about-6 .img-wrap img {
    height: 100%;
    object-fit: cover;
}
.about-6 .gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}
.about-6 .gallery-img:hover {
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    transform: scale(1.1);
}
.about-6 .big-box {
  height: 520px;
}
.about-6 .h-box {
  height: 240px;
}
.about-6 .v-box {
  height: 264px;
}
.about-6 .vlarge-box {
  height: 520px;
}
.about-6 .gallery-img-wrap {
    overflow: hidden;
    border-radius: 20px;
}


.hero.hero-2 {
    min-height: 400px;
    height: auto;
    background-size: cover;
    background-position: center;
}

.hero.hero-2 .hero-content {
    max-width: 500px;
    margin: unset;
}
.hero.hero-2 .hero-content h1 {
    margin-bottom: 10px;
}
.hero.hero-2 .hero-content p {
    margin-bottom: 20px;
}

.gallary .popup-gallery img:hover {
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    transform: scale(1.1);
}

.footer-contact .footer-contact-item {
    width: 50%;
    padding: 10px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    color: var(--bs-white);
}

.footer-contact .footer-contact-item.call {
    background-color: #f4382d;
}
.footer-contact .footer-contact-item.whatsapp {
    background-color: #25d366;
}
.footer-contact .footer-contact-item.telegram {
    background-color: #24A1DE;
}

.scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 50px;
    font-size: 25px;
    z-index: 4;
    color: var(--theme-primary-color);
    background-color: var(--theme-secondary-color);
    border: 1px solid var(--theme-primary-color);
}
.scroll-to-top:hover {
    -webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
    color: var(--theme-secondary-color);
    background-color: var(--theme-primary-color);
}


.extra-pad .container {
    padding-inline: 50px;
}