.bg-color-gradient-custom {
    background: linear-gradient(91.72deg, #F7F1E6 -2.92%, #A08671 104.9%);
}

.custom-bg {
    background-image: url("../img/image-3.png");
    background-size: cover;
    position: relative;
}

.custom-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(97, 53, 18, 0.8);
}

.checkbox-size-custom {
    transform: scale(1.4);
}

.custom-card-style-1 {
    border: 2px solid transparent;
    transition: ease border 300ms;
    border-radius: 10px !important;
}

.custom-card-style-1:hover {
    border: 2px solid var(--tertiary);
}

.custom-card-style-1 .custom-card-style-1-image-wrapper img {
    transform: translate3d(5px, -5px, 0);
    transition: ease transform 300ms;
}

.custom-card-style-1 .custom-card-style-1-title,
.custom-card-style-1 .custom-card-style-1-link {
    transition: ease color 300ms;
}

.custom-card-style-1:hover .custom-card-style-1-image-wrapper img {
    transform: translate3d(0, 0, 0);
}

.horizontal-scroller-wrapper {
    z-index: 100;
    position: relative;
}

@media (max-width: 992px) {
    .horizontal-scroller-scroll {
        height: 100vh;
    }

    .horizontal-scroller-scroll .horizontal-scroller-item {
        height: auto;
    }
}

.horizontal-scroller-image {
    max-height: 90vh !important;
    padding-top: 0;
}

.custom-margin-bottom {
    margin-bottom: 4vh !important;
}


.custom-bg-secondary::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -57%);
    background-color: var(--secondary);
}

/*dots*/
.custom-dots-style-1 .owl-dots {
    display: flex;
    justify-content: center;
}

.custom-dots-style-1 .owl-dots .owl-dot > span {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border: 2px solid white;
    background: transparent !important;
}

.custom-dots-style-1 .owl-dots .owl-dot.active > span, .custom-dots-style-1 .owl-dots .owl-dot:hover > span, .custom-dots-style-1 .owl-dots .owl-dot:focus > span {
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: white;
}

.custom-dots-style-1 .owl-dots .owl-dot.active > span:before, .custom-dots-style-1 .owl-dots .owl-dot:hover > span:before, .custom-dots-style-1 .owl-dots .owl-dot:focus > span:before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 100%;
}

.custom-dots-style-1.custom-dots-style-1-light .owl-dots .owl-dot > span {
    border: 2px solid white;
}


.custom-dots-style-1.custom-dots-style-1-light .owl-dots .owl-dot.active > span:before, .custom-dots-style-1.custom-dots-style-1-light .owl-dots .owl-dot:hover > span:before, .custom-dots-style-1.custom-dots-style-1-light .owl-dots .owl-dot:focus > span:before {
    background: white;
}

/*pagination*/

.page-link {
    font-size: 20px !important;
    padding: 13px 23px !important;
    margin-bottom: 8vh !important;
    margin-top: 4vh !important;
}

.prev a i,
.next a i {
    color: var(--tertiary);
}

.custom-hero {
    background-size: auto;
    background-position: 100% 0;
    width: 100%;
    height: 70vh;
}

.custom-hero-play {
    position: relative;
    top: -18px;
}

.custom-hero-heading {
    font-size: 4.2vw;
    text-transform: uppercase;
    color: #FFF;
    font-weight: bold;
    line-height: 4.2vw;
    margin: 0;
}

.custom-hero-heading em {
    font-style: normal;
    color: transparent;
    -webkit-text-stroke: 1.2px #FFF;
    text-stroke: 2px #FFF;
}

@media (max-width: 1400px) {
    .custom-hero-heading {
        font-size: 6.5vw;
        line-height: 6.5vw;
    }
}

@media (max-width: 991px) {
    .custom-hero-heading {
        font-size: 8.5vw;
        line-height: 8.5vw;
    }
}

.custom-overlay:hover:before, .custom-overlay.overlay-show:before, .custom-overlay.show:before {
    opacity: 0.4;
}

.custom-div-p p {
    color: black !important;
}

.custom-div-p-mb-0 p {
    margin-bottom: 0;
}

.custom-div-p-white p {
    color: white !important;
}

.custom-overlay-2:hover:before, .custom-overlay-2.overlay-show:before, .custom-overlay-2.show:before {
    opacity: 0.6;
    background-color: black;
}


.custom-flex {
    display: flex !important;
}

@media (max-width: 768px) {
    .custom-flex {
        display: block !important;
    }
}

.custom-overlay-3:hover:before, .custom-overlay-3.overlay-show:before, .custom-overlay-3.show:before {
    opacity: 0.90;
    background-color: black;
}

.custom-footer-logo {
    width: 109px;
    height: 72px;
}

@media (max-width: 992px) {
    .custom-footer-logo {
        width: 161px;
        height: 92px;
    }
}

.custom-grey {
    color: #989898 !important;
}

@media (max-width: 992px) {
    .custom-footer-creator {
        display: flex !important;
        justify-content: center !important;
        flex-direction: column !important;
    }
}

.custom-footer-creator {
    display: flex !important;
    justify-content: center !important;
    flex-direction: column !important;
}

.checkbox-custom-transparent {
    appearance: none; /* Remove default checkbox */
    background-color: transparent;
    border: 1px solid #ffffff;
    width: 20px;
    height: 18px;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
}

.checkbox-custom-transparent:checked {
    background-color: transparent;
}

.checkbox-custom-transparent:checked::before {
    content: '✓'; /* Unicode for check mark */
    color: #ffffff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-custom-transparent:focus {
    outline: none; /* Remove default focus outline */
}

/* Optional: style the label text */
.custom-checkbox-label {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.custom-checkbox-label input {
    margin-right: 10px; /* Spacing between checkbox and text */
}

/*ul.nav-pills > li > a.active {
    background-color: black;
    color: white;
}


ul.nav-pills > li > a.active:hover, ul.nav-pills > li > a.active:focus {
    background-color: black;
    color: white;
}*/

ul.nav-pills > li.active {
    background-color: black !important;
    color: white !important;
}

ul.nav-pills > li > a.active {
    background-color: transparent !important;
    color: white !important;
}

ul.nav-pills > li:hover {
    border: 2px solid #4b5563 !important;
}

.custom-border-transparent {
    border: 2px solid transparent !important;
}

.thumb-info {
    border-radius: 0;
}

.thumb-info .thumb-info-wrapper {
    border-radius: 0;
}

.thumb-info .thumb-info-wrapper:after, .thumb-info .thumb-info-wrapper .thumb-info-wrapper-overlay:before {
    border-radius: 0;
}

.btn {
    border-radius: 0;
}

.thumb-info .thumb-info-title {
    bottom: 2%;
}


.pagination {
    justify-content: center;
}

.page-link {
    border: none !important;
}

.pagination li a {
    color: black !important;
}

.custom-line-height p {
    line-height: 30px !important;
}

.fixed-dropup {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 999;
    margin-right: 8%;
    cursor: pointer;
}

.dropup .dropup-content {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    margin-right: 5%;
    z-index: 999;
    background-color: black;
    box-shadow: 0px 0px 20px 2px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease; /* Gyorsabb átmenet */
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.dropup .sub-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

/*.dropup:hover .sub-content {
    max-height: 1000px; !* Elég nagy értéket adj meg, hogy a tartalom elférjen *!
    opacity: 1;
}*/


.custom-cursor-pointer {
    cursor: pointer !important;
}

.my-2-5 {
    margin-bottom: 12px;
    margin-top: 12px;
}

@media (max-width: 576px) {
    .fixed-dropup {
        position: fixed;
        left: 0;
        bottom: 0;
        z-index: 999;
        width: 100%;
    }

    .dropup .dropup-content {
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 999;
        background-color: black;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .15);
        transition: all 0.3s ease; /* Gyorsabb átmenet */
        border-top: 1px solid white;
        border-left: none;
        border-right: none;
        width: 100%;
    }

    .showed-button {
        text-align: center;
    }
}

/*Menü elrejtése*/
@media (min-width: 1125px) {
    .d-show-hamburger-menu {
        display: none;
    }

    .d-hide-menu {
        display: flex !important;
    }

}

html .list-inline-item > .active-menu {
    color: var(--tertiary) !important;
}

.custom-line-height {
    line-height: 2.1;
}

.thumb-info.thumb-info-swap-content .thumb-info-swap-content-wrapper > :nth-child(1) {
    max-width: 100%;
    text-align: center;
    bottom: 0%;
    margin: 0;
    position: absolute;
    width: 100%;
    left: 25px;
}


/*Sticky navbar*/

#navbar {
    transition: top 0.3s;
    position: fixed !important;
}

#breadcrumb {
    margin-top: 110px;
}


.custom-envelope-animation {
    opacity: 0.3;
    transition: ease opacity 300ms;
}

.dropup-content:hover .custom-envelope-animation {
    opacity: 1;
}

.bg-hover-black:hover {
    background-color: black !important;
}


    .custom-navbar-padding {
        padding: 0 15px !important;
    }

@media (max-width: 1350px) {
    .custom-navbar-padding {
        padding: 0 8px !important;
    }
}

@media (max-width: 1280px) {
    .custom-navbar-padding {
        padding: 0 4px !important;
    }
}

@media (max-width: 1100px) {
    .custom-navbar-padding {
        padding: 0 2px !important;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 812px) {
    .parallax {
        /*background-attachment: scroll !important; !* Fix parallax for iOS *!*/
        background-attachment: scroll !important;


    }

    section.section.section-parallax {
        /*background-attachment: scroll !important;*/
        background-attachment: scroll !important;

    }
}


/*.custom-parallax-image {
    height: 100%;
    position: relative;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    background-size: cover !important;
  background-position: center !important;
    background-repeat: no-repeat !important;
    position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
}*/
