.pg {
    text-align: center;
    height: auto;
    font-family: Open Sans Hebrew;
}

.b-pg .inpage{
    display: block;
    padding-top: 100px;
    padding-bottom: 30px;
}

.pg section {
    position: relative;
}

.pg section.dsktp {
    margin: auto;
}

.pg section.brd-dot-t {
    border-top: 1px dotted #999999;
}

.pg section > .title {
    font-weight: bold;
    font-size: 26px;
    color: #1f2532d6;
}

.pg section > .text {
    padding: 0 40px;
    display: block;
    margin-top: 17px;
}

.pg section > .text ul {
    margin-block-end: 0px;
    margin-block-start: 0px;
    padding-inline-start: 40px;
    margin-block-start: 1em;
    margin-block-end: 1em;
}

.pg section > .text ul li {
    list-style-type: unset;
}

.pg section > .text a {
    color: unset;
}

.pg section > .text ul br {
    display: none;
}

.pg section.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 999;
    background: #EEEEEE;
}

.pg section.top-nav .menu-wrapper {

    margin: auto;
}

.pg section.top-nav .menu-items {
    display: flex;
    gap: 40px;
    font-size: 18px;
    align-items: center;
    position: relative;
}

.pg section.top-nav .menu-item.lang i{
    margin: 0 4px;
}

.pg section.top-nav .menu-item a {
    text-decoration: none;
    color: unset;
    display: flex;
    align-items: center;
}

.pg section.top-nav .menu-item img {
    height: 40px;
}

.pg section.top-nav .hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.pg section.top-nav .overlay-c {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(250, 250, 250, 0.95);
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
    padding: 61px;
}

pg section.top-nav .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.pg section.top-nav .overlay-c.open {
    transform: translateY(0);
    display: flex;
}

.pg section.top-nav .overlay-item {
    margin: 20px 0;
    width: 100%;
}

.pg section.top-nav .overlay-item a {
    font-size: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pg section.top-nav .overlay-item img {
    height: 32px;
}

.social-container{
    position: absolute;
    left: 30px;
    top: 12px;
}
.social-ico {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: start; /* Aligns items horizontally */
}

.social-ico a {
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    color:unset;
}

.social-ico a:hover {
    transform: scale(1.1);
}

.pg section.top-nav .social-ico{
    font-size: 20px;
}

.areas-frag-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    direction: rtl; /* Right-to-Left */
}

.areas-header {
    text-align: center;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 30px;
    font-weight: 300;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Default: 2 per row (Mobile) */
    gap: 50px;
    justify-items: center;
}

/* Desktop View: 4 items per row */
@media (min-width: 768px) {
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.areas-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Keeps it square/circular */
    overflow: hidden;
    cursor: pointer;
    /* Organic Blob Shape Base */
    border-radius: 45% 55% 40% 60% / 55% 40% 60% 45%;
    transition: border-radius 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Varying shapes for a natural look (using nth-child) */
.areas-item:nth-child(2n) {
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
}
.areas-item:nth-child(3n) {
    border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%;
}
.areas-item:nth-child(4n) {
    border-radius: 40% 60% 60% 40% / 40% 60% 40% 60%;
}

/* The Image Wrapper */
.areas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

/* Dark overlay to make text readable */
.areas-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); /* Darkening overlay */
    transition: background 0.3s ease;
}

/* Hover Interaction: Scale Image */
.areas-item:hover .areas-bg {
    transform: scale(1.15); /* Zoom effect */
}

.areas-item:hover .areas-bg::after {
    background: rgba(0, 0, 0, 0.15); /* Lighten slightly on hover */
}

/* Text Content */
.areas-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 15px;
    pointer-events: none; /* Let clicks pass through to the item */
}

.areas-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 0 0 5px 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    line-height: 1.2;
}

.areas-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    opacity: 0.9;
}


/* SHORTS SECTION*/
.shorts-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 20px;
    direction: rtl;
    text-align: right;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.shorts-title {
    text-align: center;
    font-size: 2rem;
    color: #b91c1c;
    font-weight: 700;
    margin-bottom: 30px;
}

.shorts-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #f2f2f2 #f1f1f1;
}

@media (min-width: 900px) {
    .shorts-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
    }
}

.short-card {
    flex: 0 0 auto;
    width: 220px;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

@media (min-width: 1200px) {
    .short-card {
        width: 240px;
    }
}

.short-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    z-index: 2;
}

.short-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (min-width: 1200px) {
    .short-card {
        width: 230px;
        border: none;
    }
}

.short-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    z-index: 2;
}

.card-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s;
    z-index: 2;
}

.short-card:hover .card-poster {
    opacity: 0.7;
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(185, 28, 28, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s, background 0.3s;
    pointer-events: none;
}

.play-overlay i {
    color: white;
    font-size: 24px;
    margin-left: 5px;
    text-decoration: none;
}

.short-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #dc2626;
}

.card-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
    display: none;
    background: #000;
}


.contact-section {
    padding: 6rem 0;
    color: #ead48d;
    position: relative;
    direction: rtl; /* Ã—â€¢Ã—â„¢Ã—â€œÃ—â€¢Ã—Â Ã—â€ºÃ—â„¢Ã—â€¢Ã—â€¢Ã—Å¸ Ã—Â¢Ã—â€˜Ã—Â¨Ã—â„¢Ã—Âª */
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* CONTACT CARD*/
.contact-card {
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 70px 70px -65px rgba(0, 0, 0, 0.25);
    text-align: center;
}

@media (min-width: 768px) {
    .contact-card {
        padding: 5rem;
    }
}


.contact-glow-bar {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    opacity: 0.5;
    background: linear-gradient(90deg, transparent, #ead48d, transparent);
    display: n;
}

.contact-content {
    position: relative;
    z-index: 10;
}

.contact-title {
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 2.25rem;
    line-height: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ead48d;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-text {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    color: #ead48d;
}


.contact-actions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 640px) {
    .contact-actions {
        flex-direction: row;
    }
}


.contact-btn-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

.contact-icon-circle {
    width: 7rem;
    height: 7rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ead48d;
    transition: transform 0.3s ease, background-color 0.3s;
    background-color: transparent;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}


.contact-btn-link:hover .contact-icon-circle {
    transform: scale(1.1);
    background-color: rgba(234, 212, 141, 0.1);
}

.contact-btn-text {
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: #ead48d;
    transition: color 0.3s;
}

.contact-btn-link:hover .contact-btn-text {
    color: #c5a666;
}

.contact-divider {
    display: none;
    width: 8rem;
    height: 1px;
    background-color: rgba(234, 212, 141, 0.3);
}

@media (min-width: 640px) {
    .contact-divider {
        display: block;
    }
}

.contact-footer {
    text-align: center;
    margin-top: 3rem;
    font-size: 0.875rem;
    color: #5a7a74;
}

@media (max-width: 768px) {
    .pg section.top-nav .menu-items {
        display: none;
    }

    .pg section.top-nav .hamburger {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 24px;
        cursor: pointer;
    }
}

.pg section.cover {
    height: 235px;
    position: relative;
}

.pg section.cover > .bcg {
    overflow: hidden;
}

.pg section.cover .ovly {
    width: 100%;
    background: #000000;
    opacity: 0.2;
    z-index: 1;
    position: absolute;
    height: 100%;
}

.pg section.cover > .bcg img {
    width: 100%;
    position: absolute;
    right: 0;
    object-fit: cover;
    object-position: 50% 30%;
}

.pg section.cover > .bcg img.ornfoot {
    bottom: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}

.pg section.cover .edit {
    position: absolute;
    right: 15px;
    bottom: 90px;
    z-index: 10;
}

.pg section.cover.fullW{
    width: 100vw;
    margin-right: calc((100vw - 100%) / -2);
    overflow-x: hidden;
}

.pg section.cover.centered{
    background-position: center center;
    background-size: cover;
}

.pg section .set {
    position: absolute;
    top: 5px;
    left: unset;
    right: -55px;
    box-shadow: 0 1px 5px -1px rgba(0, 0, 0, 0.4);
    width: 45px;
    height: 45px;
    padding: 9px;
    background: #FFFFFF;
    border-radius: 5px;
    color: #666666;
    font-size: 21px;
    cursor: pointer;
}

.pg section.cover .logo {
    width: 130px;
    position: absolute;
    right: 50%;
    bottom: -50px;
    z-index: 1;
    margin-right: -65px;
    background: #FFF;
    z-index: 100;
}

.pg section.cover .logo > img {
    width: 100%;
}

.pg section.cover .logo > .set {
    bottom: 18px;
    left: 50%;
    right: unset;
    height: 32px;
    width: 32px;
    padding: 5px 0px;
    border-radius: 50px;
    margin-left: -16px;
    text-shadow: 1px 1px 1px white;
    top: unset;
}

.pg section.content {
    height: auto;
    padding: 40px 0 20px;
}

.pg section.content h1 {
    font-size: 37px;
    font-weight: bold;
}

.pg section.content h2 {
    font-size: 29px;
    margin-top: 4px;
    padding: 0px 15px;
}

.pg section.actions {
    padding-top: 40px;
    max-width: 600px;
    margin: auto;
}

.pg section.actions.dsktp.cclub{
    padding: 60px 0;
}

.pg section.actions.dsktp {
    padding: 30px 0 35px;

}

.pg section.actions .action {
    width: 60px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    margin: 0 10px 20px 10px;
    max-width: 600px;
}

.pg section.actions .action a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: block;
    padding: 16px 0;
    position: relative;
    text-align: center;
}

.pg section.actions .action a .fal,
.pg section.actions .action a .fas,
.pg section.actions .action a .far,
.pg section.actions .action a .fab {
    font-size: 24px;
    position: relative;
    margin: auto;
    padding: 0px;
    color: #FFFFFF;
    text-align: center;
}

.pg section.actions .action svg {
    width: 55px;
    height: 55px;
}

.pg section.actions .action span {
    font-size: 14px;
}

.pg section.actions .action .fa {
    font-size: 30px;
    top: 14px;
    right: 1px;
}

.pg section.actions button.action {
    width: 90%;
    height: 60px;
    border-radius: 10px;
}

.pg section.actions button.action .fa {
    top: 1px;
}

.pg section.actions button.fxd {
    position: absolute;
    bottom: 15px;
    right: 5%;
    z-index: 1;
    margin: 0;
}

.pg section.actions .darkColor {
    color: #333;
}

.pg section.info {
    margin-bottom: 40px;
    position: relative;
}

.pg section.info input {
    text-align: center;
    border: none;
    margin-bottom: 10px;
    width: auto;
    border-bottom: 1px solid #DDDDDD;
    background: transparent;
    height: 45px;
}

.pg section.info .mceClose {
    position: absolute;
    left: 20px;
    top: 63px;
    z-index: 11;
}

.pg section.info.description.dsktp {
    margin-top: 35px;
}

.pg section.info.description table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.pg section.info.description tr{
    margin-bottom: 10px;
}

.pg section.info.description th, td {
    padding: 8px;
    word-wrap: break-word;
    vertical-align: top;
}

.pg section.info .field {
}

.pg section.info .field.accessbillity {
    font-size: 18px;
    position: relative;
    margin-top: 20px;
}

.pg section.info .field span.fa {
    width: 22px;
    display: inline-block;
    text-align: center;
}

.pg section.details {
    padding: 10px 0 30px;
    margin-top: 50px;
    line-height: 40px;
    font-size: 18px;
}

.pg section.publish {
}

.pg section.footer {
    direction: ltr;
    color: #666;
    font-size: 16px;
    padding: 32px 13px 10px 0px;
    height: auto;
    position: relative;
    text-align: center;
}

.pg section.footer a img {
}

.pg section.footer a {
    margin-bottom: 3px;
    display: inline-block;
}

.pg section.footer a img {
    width: 89px;
    margin-right: 5px;
}

.pg section.footer .more {
}

.pg section.footer .rights {
    font-size: 15px;
    margin-right: 8px;
}

.publish.pics {
}

.publish ul.campaigns.pics {
    margin-top: 20px;
    overflow-y: hidden;
    margin: 30px 0;
    height: auto;
    width: 65%;
    margin: 20px auto 0;
}

.publish ul.campaigns.pics li {
    float: left;
    width: 33%;
    vertical-align: top;
    position: relative;
    margin-top: 0;
    padding: 5px;
}

.publish ul.campaigns.pics li span.play{
    top: 50%;
    left: 50%;
    background: #ffffff45;
    width: 85px;
    height: 85px;
    padding: 14px;
    border-radius: 50%;
    text-align: center;
    margin-top: -43px;
    margin-left: -43px;
}

.publish ul.campaigns.pics li video{
    width: 100%;
    height: auto;
    object-fit: cover;
}

.publish ul.campaigns.pics li:first-child {
    float: right;
    width: 66%;
    vertical-align: top;
    position: relative;
}

.publish ul.campaigns.pics li .image {
    width: 100%;
    height: 100%;
}

.publish ul.campaigns.pics li .image {
}

.publish ul.campaigns.pics li .image img {
    width: 100%;
    height: 100%;
    opacity: 1;
    vertical-align: text-top;
}


.publish ul.campaigns.pics.gallery {
    margin-top: 10px;
    width: 90%;
}

.publish ul.campaigns.pics.gallery li {
    float: left;
    width: 23%;
    vertical-align: top;
    position: relative;
    padding: 0px;
    margin: 4px 21px 10px 4px;
}

.publish ul.campaigns.pics.gallery.top li:first-child {
    float: right;
    width: 49%;
    vertical-align: top;
    position: relative;
    margin: 8px;
}

.publish ul.campaigns.pics.gallery.top li:nth-child(n+2):nth-child(-n+5) {
    width: 22.7%;
    margin: 10px 10px 25px;
}


.publish ul.campaigns.pics.gallery.bottom{
    margin-top: -10px;
}

.publish ul.campaigns.pics.gallery.bottom li {
    margin: 10px;
}

.publish ul.campaigns.pics.gallery.bottom li:first-child {}

.publish ul.campaigns.pics.gallery.bottom li:nth-child(n+6) {}


.publish.pages {
}

.publish ul.campaigns.pages {
    margin-top: 25px;
    height: auto;
    padding: 20px;
}

.publish ul.campaigns.pages.gallery {
}

.publish ul.campaigns.pages li {
    width: 28%;
    vertical-align: top;
    margin: 0px auto 15px;
    position: relative;
    min-height: 240px;
    background: white;
    border: 1px solid #eaeaea;
    display: inline-block;
    margin-left: 30px;
    min-height: 350px;
}

.publish ul.campaigns.pages li .image {
    height: auto;
    width: 100%;
}

.publish ul.campaigns.pages li .image img {
    width: 100%;
    opacity: 1;
    border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
}

.publish ul.campaigns.pages li .details {
    padding: 15px 23px 15px 10px;
    text-align: right;
    background: white;
    height: auto;
}

.publish ul.campaigns.pages li .details .sbj {
    font-size: 19px;
    color: black;
    font-weight: 600;
}

.publish ul.campaigns.pages li .details .date {
    color: #999;
    margin-top: 24px;
    position: absolute;
    bottom: 15px;
}

.publish ul.campaigns.pages li .details .date span {
    display: inline-block;
}

.publish ul.campaigns.pages li .details .date p {
    display: inline;
}

.publish .more {
    text-align: center;
    width: 100%;
    margin: auto;
    font-size: 21px;
    margin: 0 0 30px;
}

.gallery {
}

.gallery .publish {
    padding: 2px 5px 65px;
    height: auto;
}

.gallery .publish ul.campaigns {
    margin-top: 20px;
    overflow-x: auto;
    overflow-y: auto;
    white-space: unset;
    height: 1000px;
}

.gallery .publish ul.campaigns.pics li {
    width: 100%;
    vertical-align: top;
    margin: 0px auto 15px;
    position: relative;
    min-height: 360px;
    background: white;
    display: block;
}

.gallery .publish ul.campaigns.pics li .image {
    width: 100%;
}

.gallery .publish ul.campaigns.pics li .image img {
    width: 100%;
    height: auto;
    opacity: 1;
}

.gallery .publish ul.campaigns.pics li .image.vidtnl {
}

.gallery .publish ul.campaigns.pics li .image.vidtnl span.play {
    font-size: 80px;
    position: absolute;
    top: 30%;
    left: 35%;
    border-radius: 50%;
    background: #ffffff5e;
    width: 140px;
    height: 140px;
    padding-top: 15px;
    padding-left: 11px;
    margin: auto;
}

.publish ul.campaigns.pics {

}

.publish ul.campaigns.pics.gallery {
}

.publish ul.campaigns.pics li {
}

.publish ul.campaigns.pics li:first-child {
}

.publish ul.campaigns.pics li .image {
}

.publish ul.campaigns.pics li .image {
}

.publish ul.campaigns.pics li .image img {
    border-radius: 5px;
    border: 1px solid #EEEEEE;
}

.inscr nav.bottom {
    position: fixed;
    bottom: 0px;
    right: 50%;
    width: 650px;
    height: 45px;
    padding: 10px 13px;
    background: #ffffff;
    margin-right: -381px;
}

.respcon{}

.respcon .top-container,
.respcon .three-containers {
    box-sizing: border-box;
}

.respcon .top-container {
    max-width: 60%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}

.respcon .top-container h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.respcon .top-container p {
    font-size: 1em;
    line-height: 1.5;
    color: #555;
}

.respcon .three-containers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin-top: 20px;
    padding: 0 60px;
}

.respcon .block {
    flex: 1;
    max-width: 35%;
    min-width: 250px;
    text-align: center;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.respcon .block img {
    max-width: 80px;
    margin-bottom: 10px;
}

.respcon .block h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.respcon .block p {
    font-size: 0.9em;
    line-height: 1.4;
    color: #666;
}

.spl-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
    gap: 50px;
}

.spl-container h2{
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
}

.spl-container .text-container,
.spl-container .image-container {
    flex: 1;
    max-width: 50%;
}

.text-container {
    text-align: right;
    padding-top: 15px;
}

.text-container p{
    -webkit-margin-after:15px !important;
}

.image-container {
    display: flex;
    justify-content: inherit;
    padding-top:20px;
}

.reverse .image-container {
    justify-content: flex-start;
}

.image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    max-width: 450px;
    height: auto;
    width: 100%;
    max-height: 550px;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bpg .sitepage.gen {
    background: transparent;
    line-height: 21px;
    color: #646f82;
    padding: 50px 0 120px;
    font-size: 17px;
    text-align: right;
    border-radius: 10px;
    margin-top: 100px;
}

.bpg .sitepage.gen .title {
    padding: 0 0 20px;
    margin-bottom: 20px;
}

.bpg .sitepage.gen ul li {
    margin-bottom: 20px;
}

.bpg .sitepage.gen ul.items li {
    margin-bottom: 5px;
    margin-right: 20px;
}

.bpg .sitepage.gen p {
    margin-bottom: 15px;
}

.bpg .sitepage.gen h2 {
    font-size: 35px;
}

.bpg .sitepage.gen h3 {
    font-size: 21px;
    color: #1f2532;
    font-weight: bold;
    margin-bottom: 15px;
}

@media screen and (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .pg {
        width: 100%;
        overflow-x: hidden;
    }

    .b-pg .inpage{

    }
    .pg section {
        width: 100%;
        scroll-margin-top: 50px;
    }

    .pg section > .title {
        font-size: 24px;
        color: #1f2532;
        margin-bottom: 20px;
    }

    .pg section.content{
        padding-left: 10px;
        padding-right: 10px;
    }

    .pg section.cover {
        height: 250px;
    }

    .pg section.cover.menu {
        margin-top: 69px;
    }

    .pg section.actions.cclub {
        padding: 0px;
    }

    .pg section.actions button.fxd {
        position: fixed;
        bottom: 2%;
    }

    .gallery .publish ul.campaigns {
        height: auto;
    }

    .inscr nav.bottom {
        width: 100%;
        right: 0;
        margin-right: unset;
    }

    .publish ul.campaigns.pics {
        width: 95%;
    }

    .publish ul.campaigns.pages {
        margin: 0 0;
        height: auto;
        padding: 0 20px;
    }

    .publish ul.campaigns.pages li {
        width: 100%;
        display: block;
    }

    .publish ul.campaigns.pages li .image {
    }

    .publish ul.campaigns.pages li .image img {
    }

    .publish ul.campaigns.pages li .details {
        padding: 10px;
    }

    .publish .more {
        font-size: 22px;
        font-weight: 400;
        margin: 20px 0 50px;
    }

    .pg section.cover > .bcg img {
        height: 250px;
        max-width: 100vw;
    }

    .pg section.info.description table{
        border-spacing: 25px !important;
    }

    .pg section.info.description tr{
        margin-bottom: 10px;
    }

    .pg section.info.description table tbody,
    .pg section.info.description table tr,
    .pg section.info.description table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
        width: 100% !important;
    }

    .pg section.info.description td {
        margin-bottom: 30px;
    }

    .pg section.info.description img.resp{
        width: 90% !important;
        height: auto !important;
    }

    .pg section.info.description .image-wrapper img.resp{
        width: 100% !important;
        border-radius: 20px;
    }

    .pg section.info.description td:last-child {
        margin-bottom: 0px;
    }

    .pg section.info > .text{
        padding-right: 0px !important;;
        padding-left: 0px !important;
    }

    .pg section.top-nav {
        background: transparent;
        justify-content: center;
    }

    .pg section.top-nav .menu-items {
        display: none;
    }

    .pg section.top-nav .hamburger {
        display: block;
        background: #FFFFFF;
        padding: 13px 13px;
        border-radius: 5px;
        top: 11px;
        right: 11px;
        font-size: 20px;
    }

    .pg section.top-nav .menu-item img{
        height: 47px;
    }

    .respcon .top-container {
        max-width: 90%;
    }

    .respcon .three-containers {
        flex-direction: column;
        gap: 20px;
        padding: 0 10px;
    }

    .respcon .block {
        max-width: 100%;
    }

    .social-container{
        position: static;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 30px;
    }
    .social-ico {

    }

    .social-ico a {

    }

    .social-ico a:hover {

    }

    .pg section.top-nav .social-ico{

        gap: 22px;

    }

    .spl-container {
        flex-direction: column;
        text-align: right;
        gap: 0;
        padding: 0px 40px 30px;
    }

    .spl-container .image-wrapper{

    }

    .reverse {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .spl-container .text-container,
    .spl-container .image-container {
        max-width: 100%;
    }

    .image-container {
        justify-content: center;
    }

    .spl-container .text-container {
        order: 1;
    }

    .spl-container .image-container {
        order: 2;
        width: 100%;
        margin-top: 10px;
    }

    .publish ul.campaigns.pics.gallery li{
        width: 100% !important;
        float: unset !important;
        margin: 20px auto !important;
    }

    .areas-title {
        font-size: 1.4rem;
    }
    .areas-subtitle{
        display: none;
    }

}

