:root {
    --color-a: #182E4D;
    --color-b: #764911;
    --color-c: #B99355;
    --color-d: #D7B678;
    --color-e: #EFDEB2;
    --color-f: #F7EED8;
    --color-g: #B3B3B3;
    --color-h: #F2F2F2;
    --font-family-eb: "EB Garamond";
    --font-family-i: "Inter";
    --font-weigth-regular: 400;
    --font-weigth-semibold: 600;
    --font-weigth-black: 900;
}
/* inter, SemiBold, 14pt, tracking 50 */
.isb14ptt50 {
    font-family: var(--font-family-i);
    font-weight: var(--font-weigth-semibold);
    font-size: 14px;
    letter-spacing: 0.05em;
}

/* inter, SemiRegular, 12pt, tracking 50 */
.isr12ptt50 {
    font-family: var(--font-family-i);
    font-weight: var(--font-weigth-regular);
    font-size: 12pt;
    letter-spacing: 0.05em;
}

/* inter, Regular, 12pt, tracking 50 */
.ir12ptt50 {
    font-family: var(--font-family-i);
    font-weight: 300;
    font-size: 12pt;
    letter-spacing: 0.05em;
}

/* inter, Black, 12pt, tracking 50 */
.ib12ptt50 {
    font-family: var(--font-family-i);
    font-weight: var(--font-weigth-black);
    font-size: 12pt;
    letter-spacing: 0.05em;
}

/* inter, Black, 14pt, tracking 50 */
.ib14ptt50 {
    font-family: var(--font-family-i);
    font-weight: var(--font-weigth-black);
    font-size: 14pt;
    letter-spacing: 0.05em;
}

/* EB Garamond, Bold, 24pt */
.ebgb24pt {
    font-family: var(--font-family-eb);
    font-weight: bold;
    font-size: 24pt;   
}

/* EB Garamond, Bold, 18pt */
.ebgb18pt {
    font-family: var(--font-family-eb);
    font-weight: bold;
    font-size: 18pt !important;   
}

.text-color-a {
    color: var(--color-a) !important;
}
.text-color-c {
    color: var(--color-c) !important;
}
.text-color-e {
    color: var(--color-e) !important;
}
.bg-color-d {
    background-color: var(--color-d) !important;
}
.bg-color-e {
    background-color: var(--color-e) !important;
}
.bg-color-f {
    background-color: var(--color-f) !important;
}
.bg-color-h {
    background-color: var(--color-h) !important;
}

*{
    word-wrap: break-word;
}

body {
    font-family: var(--font-family-eb);
    font-size: 12pt;
    color: var(--color-a);
}

a{
    text-decoration: none;
    color: var(--color-a);
}

.top-div {
    height: 14px;
    background-color: var(--color-a);
}

.background-image {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    z-index: 0;
    height: 100vh;
}

.background-image video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.logo-a {
    width: 256px;
    height: 256px;
}

.background-image .text-left, .background-image-detail .text-left {
    color: #fff;
    width: 400px;
    margin-left: -60px;
    text-align: center;
    line-height: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    float: left;
}

.background-image .text-1, .background-image-detail .text-1 {
    font-family: var(--font-family-eb);
    font-weight: bold;
    font-size: 24pt;
}

.background-image .text-2, .background-image-detail .text-2 {
    font-family: var(--font-family-i);
    font-weight: var(--font-weigth-semibold);
    font-size: 14pt;
    letter-spacing: 0.05em;
}

.background-image .text-right, .background-image-detail .text-right {
    float: right;
    color: #fff;
    margin-top: 8px;
}


.buttons-bottom {
    position: absolute;
    bottom: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.custom-button {
    width: 160px;
    height: 40px;
    margin: 22.5px;
    background-color: transparent;
    color: white;
    border-radius: 5px;
    border-color: var(--color-d);
    font-size: 16px;
    text-align: center;
}

.buttons-bottom button {
    background: transparent !important;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);

}



.under-image-div {
    height: 6px;
    background: linear-gradient(to right, var(--color-b), var(--color-e));
}

.navbar {
    background-color: var(--color-a);
    padding-bottom: 16px;
}

.navbar-line {
    background-color: var(--color-a);
    height: 58px;
}
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-pills .nav-link {
    position: relative;
    background: none !important;
    border: none !important;
    padding-bottom: 0.5rem;
    color: #fff;
    width: 160px;
    text-align: center;
}
.nav-pills .nav-link:hover {
    color: var(--color-e) !important;
}

.nav-pills .nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 24px;
    height: 2px;
    background-color: var(--color-b);
    transform: translateX(-50%);
}

.nav-pills .nav-link.active::after {
    background-color: var(--color-e);
}

.main-1 {
    margin: 0 !important;
    width: 100%;
    padding: 0;
    background-image: url("..\\img\\bg-01.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-container {
    padding-top: 100px;
    padding-bottom: 50px;
}

.main-1 .color {
    background-color: rgba(255, 255, 255, 0.9);
}

.custom-row {
    display: flex;
    justify-content: space-between;
}

.custom-col {
    flex: 1;
    margin: 12.5px;
    padding: 0;
    text-align: center;
    min-width: 200px;
}
.lh1{
    line-height: 1;
}
.title {
    line-height: 1;
}

.about_investor p {
    font-weight: bold;
    font-size: 24pt;
    position: relative;
    display: inline-block;
    color: var(--color-a);
    line-height: 1;
    font-weight: bold;
    font-size: 36pt;
    position: relative;
    color: var(--color-a);
    margin-bottom: 50px !important;
}
.about_investor p::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--color-a);
}

.title-line {
    font-weight: bold;
    font-size: 24pt;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
    color: var(--color-a);
    width: 100%;
    line-height: 1;
}
.title-line::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--color-a);
}
.line-above:after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 2px;
    background-color: var(--color-a);
}
.description{
    font-family: var(--font-family-i);
    font-weight: var(--font-weigth-regular);
    font-size: 12pt;
    letter-spacing: 0.05em;
    color: var(--color-a);
}

.description-main{
    font-family: var(--font-family-i);
    font-weight: var(--font-weigth-regular);
    font-size: 12pt;
    letter-spacing: 0.05em;
    color: var(--color-a);
}

.custom-col .title-line::after {
    width: 100%;
    height: 8px;
}
.custom-col {
    color: var(--color-a);
    position: relative;
}
.equal-col .title-line::after {
    background-color: var(--color-c);
}
.equal-col .title-line {
    color: var(--color-c);
}
.equal-col .description {
    color: var(--color-c);
}

strong, b{
    font-weight: bold;
}

.title {
    font-weight: bold;
    font-size: 36pt;
    position: relative;
    display: inline-block;
    color: var(--color-a);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-repeat: no-repeat;
    background-size: 100%;
    width: 40px;
    height: 40px;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var(--color-a)'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var(--color-a)'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-item .custom-button {
    border-color: var(--color-d);
    color: var(--color-c);
    margin: 22.5px;
}
.carousel-item .custom-button:hover {
    color: white !important;
}

.custom-button:hover {
    background-color: var(--color-a) !important;
    border-color: var(--color-a) !important;
}

.custom-col input {
    width: 100%;
    height: 40px;
    padding: 10px;
    border: 1px solid var(--color-a);
    background-color: var(--color-e);
    border-radius: 4px;
    color: var(--color-a);
}
.equal-col input {
    width: 100%;
    background-color: var(--color-f);
}
.search-button {
    background-color: var(--color-d);
    margin: 0;
    width: 100%;
    border-radius: 4px;
    border: none;
    color: var(--color-a);
    font-family: var(--font-family-i);
    font-weight: var(--font-weigth-black);
    letter-spacing: 0.05em;
    font-size: 14pt;
    height: 44px;
}
.search-button:hover {
    color: white !important;
}
.labels .custom-col {
    margin: 0;
    text-align: left;
    padding-left: 20px;
}
.inputs .custom-col {
    margin-top: 0;
}
.labels label, .custom-col input{
    
    color: var(--color-c);
    letter-spacing: 0.05em;
    font-size: 14pt;
    font-weight: var(--font-weigth-semibold);
}
.custom-col select{
    background-color: var(--color-e);
    letter-spacing: 0.05em;
    font-size: 14pt;
    font-weight: var(--font-weigth-semibold);
}

.more {
    color: var(--color-a);
    letter-spacing: 0.05em;
    font-size: 14pt;
    font-weight: var(--font-weigth-semibold);
    font-family: var(--font-family-i);
}

.input-wrapper {
    position: relative;
}

input[type="text"], select {
    width: 100%;
    padding: 10px;
    padding-right: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.input-suffix {
    position: absolute;
    right: 10px;
    top: 21px;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--color-d);
}

.about_investor p{
    margin-bottom: 0;
}

.estate-card {
    float: left;
    height: 430px;
    width: 340px;
    border: 1px solid var(--color-a);
    padding: 20px;
}

.estate-card:hover {
    cursor: pointer;
    background-color: var(--color-a) !important;
    color: white !important;
}

.estate-card:hover .card-title-2, .estate-card:hover .right-text {
    color: white !important;
}
.estate-card:hover .left-text {
    color: var(--color-e) !important;
}
.estate-card:hover .card-title {
    color: white !important; 
    background-color: var(--color-d) !important;
}
.estate-card:hover .card-title a {
    color: white !important; 
    background-color: var(--color-d) !important;
}
.estate-card:hover .card-title-2 a {
    color: white !important;
}
.estate-card:hover .card-title-2::after {
    background-color: white !important;
}


.card-img {
    height: 153px;
    border-radius: 0;
}

.card-title {
    background-color: var(--color-e);
    height: 44px;
    text-align: center;
    width: 300px;
    margin: 0;
    max-width: 100%;
}

.card-title-2 {
    text-align: center;
    height: 70px;
    width: 300px;
    margin: 0;
}

.card-title-2::after {
    width: 300px;
    bottom: 0px;
    height: 1px;
}

.left-text {
    float: left;
    width: 50%;
    text-align: left;
    color: var(--color-d);
    margin-bottom: 10px;
}

.right-text {
    float: left;
    width: 50%;
    text-align: right;
    color: var(--color-a);
    margin-bottom: 10px;
}

.carousel-indicators{
    bottom: -100px;
    margin-left: 40%;
    margin-right: 40%;
    vertical-align: middle;
}
.carousel-control-next{
    height: 0 !important;
}
.carousel-control-prev{
    height: 0 !important;
}
.carousel-dark span{
    filter: none !important;
}

.carousel-indicators button {
    background-color: var(--color-a) !important;
}

.carousel-indicators .active {
    background-color: var(--color-c) !important;
    height: 6px;
}

.carousel-dark {
    margin-bottom: 130px !important;
}

.main-2 {
    margin: 0 !important;
    margin-top: 100px !important;
    width: 100%;
    padding: 0;
    background-image: url("..\\img\\bg-02.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}
.main-2 .main-container {
    padding-top: 50px;
}
.main-2 img {
    margin-bottom: 20px;
}
.main-2 .color {
    background-color: rgba(24, 46, 77, 0.9);
}
.main-2 .title {
    color: white;
    width: 100%;
}
.main-2 .title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--color-e);
}
.main-2 .txt {
    margin-top:  30px;
}

.main-inv img {
    width: 120px;
    height: 120px;
}
.main-inv .logo {
    width: 200px;
    height: 200px;
}


.anim-fade {
    opacity: 0;
    transition: opacity 1s;
}
.anim-fade.animated {
    opacity: 1 !important;
}

.anim-slide {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity 1s, transform 1s;
}
.anim-slide.animated {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.anim-rotate {
    opacity: 0;
    transform: translateY(100px) rotate(0deg);
    transition: opacity 1s, transform 1s;
}
.anim-rotate.animated {
  opacity: 1 !important;
  transform: translateY(0) rotate(360deg) !important;
}


.map {
    width: 100%;
    background-color: var(--color-e);
    color: white;
    height: 800px;
    vertical-align: middle;
}

.map .title {
    color: white;
}

.footer {
    margin: 0 !important;
    width: 100%;
    padding: 0;
    background-image: url("..\\img\\bg-03.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer .color {
    background-color: rgba(24, 46, 77, 0.9);
    color: white;
}


.footer button {
    background-color: var(--color-e);
    border-radius: 12px;
    border: none;
    width: 160px;
    height: 40px;
}
.footer button:hover {
    background-color: var(--color-d) !important;
}
.footer .btn-call {
    background-color: var(--color-d);
}
.footer .btn-call:hover {
    background-color: var(--color-e) !important;
}

.footer-2 {
    color: var(--color-g);
}
.footer-2 .item {
    float: left;
    margin-left: 30px;
    margin-right: 30px;
}

.sticky-top-btn {
    position: sticky;
    float: right;
    padding-top: 58px;
    padding-right: 10%;
}
.sticky-top-btn img {
    width: 60px;
}

.equal-width-table td {
    width: 20%;
    border: none;
    padding-top: 0;
    padding-bottom: 0;
}

.investitions table button {
    width: 100%;
    height: 34px !important;
    border: none;
    border-radius: 4px;
}

.background-image-detail {
    margin: 0 !important;
    width: 100%;
    height: 80vh;
    padding: 0;
    background-image: url("..\\img\\peak_1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-inv-detail img {
    border-radius: 16px;
}

.div-border-bottom {
    border-bottom: 2px solid var(--color-a);
    margin-bottom: 60px;
}


.inv-carousel .carousel-control-prev-icon,
.inv-carousel .carousel-control-next-icon {
        margin-top: 0px;
}
.carousel-control-next, .carousel-control-prev{
    top: 50%;
}

.country-button{
    color: var(--color-c);
    background-color: white;
    border: 1px solid var(--color-d);
    font-family: var(--font-family-eb);
    font-weight: bold;
    font-size: 24pt;
    height: 40px;
    line-height: 25px;
    min-width: 190px;
    border-radius: 0;
    margin: 25px;
}
.country-button:hover{
    background-color: var(--color-a) !important;
    color: white !important;
    border-color: var(--color-a) !important;
}
.td-w50{
    width: 50% !important;
}


.padding-0 {
    padding: 0 !important;
}



.custom-pagination {
    display: flex;
    justify-content: center; /* Wyśrodkuj paginację */
    align-items: center;
    padding: 0; /* Usuń dodatkowe odstępy */
    list-style: none; /* Usuń domyślny styl listy */
}

.custom-pagination .page-item a.page-link {
    color: #000; /* Kolor domyślny */
    font-size: 18px;
    border: none; /* Usuń obramowanie */
    background: none; /* Usuń tło */
    text-decoration: none; /* Usuń podkreślenie */
    padding: 0 5px;
}

.custom-pagination .page-item.active a.page-link .current-page {
    font-weight: bold; /* Pogrubienie dla aktywnej strony */
    color: orange; /* Kolor dla aktywnej strony */
}

.custom-pagination .page-item.disabled a.page-link {
    color: #ccc; /* Kolor dla wyłączonego linku */
}

.custom-pagination .page-item a.page-link {
    text-decoration: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    background-size: 100% 100%;
}


.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


.estate{
    width: 340px;
    height: 430px;
    margin: 12.5px;
}



  .slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 70px 55px;
  }
  .card-list .card-item {
    height: auto;
    user-select: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .slider-wrapper .swiper-pagination-bullet {
    background: var(--color-a);
    height: 13px;
    width: 13px;
    opacity: 0.5;
  }
  .slider-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--color-d);
  }
  .slider-wrapper .swiper-slide-button {
    margin-top: -50px;
    transition: 0.2s ease;
  }
  .slider-wrapper .swiper-slide-button {
    color: var(--color-a);
  }
  .slider-wrapper .swiper-slide-button:hover {
    color: black !important;
  }
  @media (max-width: 768px) {
    .slider-wrapper {
      margin: 0 10px 40px;
    }
    .slider-wrapper .swiper-slide-button {
      display: none;
    }
  }
.form-control {
    border: none !important;
    color: var(--color-a);
    font-family: var(--font-family-eb);
 }
 .form-control::placeholder {
    color: var(--color-a) !important;
    font-family: var(--font-family-eb);
    font-size: 18px;
 }
 .form-control.is-valid {
    background-image: none !important;
 }
 .form-control.is-invalid {
    background-image: none !important;

 }


 .description {
    max-height: 196px;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
.expanded {
    max-height: 1000px;
}
.toggle-btn {
    cursor: pointer;
    color: var(--color-a);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}
.toggle-btn.hidden {
    display: none;
}

@media (max-width: 1200px) {
    .carousel-indicators{
        margin-left: 30%;
        margin-right: 30%;
    }
    .country-carousel .carousel-control-prev-icon,
    .country-carousel .carousel-control-next-icon {
        margin-top: 120px;
    }
    
    
}

@media (max-width: 991px) {
    .text-right {
        position: absolute;
        right: 2px;
    }
}

@media (max-width: 768px) {
    .carousel-indicators{
        margin-left: 10%;
        margin-right: 10%;
    }
    .footer-2 {
        font-size: 12px;
    }
    .footer-2 .item {
        margin: 5px;
    }
    .text-left img {
        width: 160px;
        height: 160px;
    }
    .text-left div {
        font-size: 18px !important;
        margin-bottom: 20px;
    }
    .text-left .text-2 {
        font-size: 12px !important;
    }
    .custom-button {
        margin: 10px !important;
    }
    .sticky-top-btn {
        padding-top: 138px;
        padding-right: 0;
    }
    .title {
        font-size: 30px;
    }
    .search-button {
        margin: 0px !important;
    }

    .country-button{
        margin: 5px;
        margin-top: 14px;
        margin-bottom: 12px;
    }
    
}


@media only screen and (max-width: 768px) {
    .text-right, .buttons-bottom {
        display: none;
    }
}
