@import url(https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    font-family: "Poppins", sans-serif;
    --max-w: 1200px;
    --dp: 10px;
    --main-clr: #00b7ff;
    --main-clr-txt: #fff;
    --rounded-circle: 50%;
    --rounded-full: 999px;
    overflow-x: hidden;
}

body,
html {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}


.bido-container {
    width: 100%;
    max-width: var(--max-w);
    padding: 0 var(--px);
    margin: 0 auto;
}

.px {
    padding-left: var(--px);
    padding-right: var(--px);
}

.h-100vh {
    min-height: 100vh;
}

a {
    color: var(--main-clr);
    transition: .2s linear;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
}

/* .dpy{padding-top: 0;padding-bottom: 100px;} */
.dpy {
    padding-top: 5rem;
    padding-bottom: 100px;
}

.img-hover-scale .img {
    overflow: hidden;
    display: flex;
}

.img-hover-scale .img img {
    transition: all .5s ease;
}

.img-hover-scale:hover .img img {
    transform: scale(1.1);
}

.home-sec-pr .card-box {
    position: relative;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 30px 20px;
    height: 300px;
    display: flex;
    align-items: flex-end;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.home-sec-pr .card-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    /* koyu filtre */
    z-index: 1;
}

.home-sec-pr .card-box .content {
    position: relative;
    z-index: 2;
}

.home-sec-pr .card-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.home-sec-pr .card-box p {
    font-size: 14px;
    line-height: 1.5;
}

.home-sec-pr .card-box {
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.home-sec-pr .card-box:hover {
    transform: scale(1);
    transition: transform 0.3s ease;
}

.home-sec-pr .card-box:hover::before {
    background: rgba(0, 0, 0, 0.6);
}

.home-sec-pr .card-box:hover h4 {
    color: #00b7ff;
}


html:has(header.open-menu) {
    overflow: hidden;
}

/* HEADER CSS */
header {
    padding: 25px 0;
    gap: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: all .3s ease;
    background-color: #fff;
}

html:has(.bd-entry) header {
    color: #fff;
    background-color: transparent;
}

header.move {
    top: -77px;
}

header.sticky {
    background-color: #fff !important;
    color: #000 !important;
    box-shadow: 0 15px 25px -20px rgba(0, 0, 0, .1);
}

/* header > .t{ padding: 15px var(--dp);}
header > .t > div{ max-width: var(--max-w); width: 100%; margin: 0 auto; display: flex;} */
header>.t>div {
    display: flex;
    margin-bottom: 20px;
}

header>.t>div>div {
    flex: 1;
}

header>.t>div>.c {
    display: flex;
    align-items: center;
    justify-content: center;
}

header>.t>div>.c .logo {
    color: inherit;
}

header>.t>div>.c .logo svg {
    height: 25px;
    fill: currentColor;
}

header>.t>div>.c .logo img {
    height: 100%;
    max-height: 51px;
}

header>.t>div>.r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* header > .b{ padding: 0 var(--dp) 15px;}
header > .b > div{ max-width: var(--max-w); width: 100%; margin: 0 auto; display: flex;} */
header>.b>div {
    display: flex;
}

header>.b>div>div {
    flex: 1;
}

header>.b>div>.c {
    display: flex;
    align-items: center;
    justify-content: center;
}

header>.b>div>.c nav ul {
    gap: 35px;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}

header>.b>div>.c nav ul li a {
    opacity: .75;
    font-size: 14px;
    color: inherit;
    white-space: nowrap;
    transition: all .2s ease;
    position: relative;
}

header>.b>div>.c nav ul li a::before {
    --size: 7px;
    opacity: 0;
    content: '';
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 5px);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    background-color: var(--main-clr);
    transition: all .2s ease;
}

header>.b>div>.c nav ul li a.active::before {
    opacity: 1;
}

header>.b>div>.c nav ul li a:hover,
header>.b>div>.c nav ul li a.active {
    color: var(--main-clr);
    opacity: 1;
}

header>.b>div>.r {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

header .header-menu {
    overflow-y: auto;
    padding-bottom: 30px;
    background-color: rgba(250, 252, 255, 0.975);
    color: #000;
    display: flex;
    flex-direction: column;
    gap: 70px;
    padding-top: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
}

header .header-menu {
    transform-origin: top center;
    transition: all .3s ease;
    opacity: 1;
    transform: scale(0) translateY(-50%);
    pointer-events: none;
}

header.open-menu .header-menu {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: all;
}

header .header-menu>.t>div {
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .header-menu>.b {
    height: 100%;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

header .header-menu>.b>div {
    display: flex;
    justify-content: space-between;
}

header .header-menu>.b>div .l {
    width: 100%;
}

header .header-menu>.b>div .r {
    width: 100%;
    max-width: 300px;
}

header .header-menu>.b .top-right {
    position: absolute;
    right: 20px;
    top: 20px;
}

.top-right {
    position: absolute;
    right: 20px;
    top: 20px;
}

.ghost-header {
    height: 106px;
}


footer {
    box-shadow: 0 -20px 30px -20px rgba(0, 0, 0, .05);
    padding: 70px 0 20px;
}

footer>div {
    gap: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer>div .logo {
    color: #000;
}

footer>div .logo svg {
    height: 40px;
}

footer>div h3 {
    margin: 0;
}

footer>div ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

footer>div ul li :is(a, span) {
    font-size: 1rem;
    color: inherit;
    opacity: .75;
    transition: all .2s ease;
}

footer>div ul li a:hover {
    color: var(--main-clr);
    overflow: 1;
}

footer>div .b {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    white-space: nowrap;
}

footer>div .b .r ul {
    margin: 0;
}

footer>div .b .r ul li a {
    text-decoration: underline;
}


.social-template {
    display: flex;
    gap: 35px;
    justify-content: center;
}

.social-template>a {
    --size: 45px;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    min-width: var(--size);
    padding: 0;
}

.social-template>a svg {
    height: 18px;
    fill: currentColor;
}


.languages {
    display: flex;
    position: relative;
}

.languages>button {
    border: 1px solid currentColor;
    padding: 0;
    padding-left: 10px;
    gap: 10px;
    font-size: 10px;
    height: 24px;
    border-radius: var(--rounded-full);
    color: currentColor;
    display: flex;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    align-items: center;
}

.languages>button>div {
    transform: translateX(1px);
    height: 24px;
    aspect-ratio: 1;
    border-radius: 50%;
    outline: none;
    border: 1px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
}

.languages>button>div svg {
    height: 15px;
    fill: currentColor;
}


.search-template-1 {
    display: flex;
    gap: 10px;
    align-items: center;
    width: fit-content;
    position: relative;
}

.search-template-1::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    transition: all .2s ease;
    border-bottom: 1.5px solid var(--main-clr);
    width: 0%;
}

.search-template-1.v2::before {
    border-width: 1px;
}

.search-template-1.v2::before,
.search-template-1:hover::before,
.search-template-1:focus-within::before {
    width: 100%;
}

.search-template-1>button {
    color: inherit;
    border: none;
    outline: none;
    display: flex;
    background-color: transparent;
}

.search-template-1>button svg {
    height: 20px;
    fill: currentColor;
    transition: all .2s ease;
}

.search-template-1.v2>button svg,
.search-template-1:hover>button svg,
.search-template-1:focus-within>button svg {
    fill: var(--main-clr);
}

.search-template-1>input {
    font-size: 14px;
    font-weight: 400;
    color: inherit;
    padding-left: 5px;
    padding-right: 10px;
    height: 35px;
    background-color: transparent;
    border: none;
    outline: none;
    width: 100%;
}

.search-template-1>input::placeholder {
    color: inherit;
    opacity: .75;
}

.search-template-1.v2>input {
    color: var(--main-clr);
}

.search-template-1.v2>input::placeholder {
    color: var(--main-clr);
}


.samples {
    color: inherit;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    outline: none;
}

.samples>span {
    white-space: nowrap;
    display: inline-block;
    position: relative;
    line-height: 1;
}

.samples>.icon {
    position: relative;
    display: flex;
}

.samples>.icon svg {
    height: 20px;
    fill: currentColor;
}

.samples>.icon>small {
    --size: 16px;
    font-size: 10px;
    transform: translate(50%, -50%);
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--main-clr);
    color: var(--main-clr-txt);
    border-radius: var(--rounded-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--size);
    height: var(--size);
}


.menu-template-1 {
    position: relative;
}

.menu-template-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-template-1>ul {
    gap: 25px;
    max-width: 220px;
    width: 100%;
    border-right: 1px solid var(--main-clr);
    display: flex;
    flex-direction: column;
}

.menu-template-1>ul>li>a {
    font-size: 16px;
    padding-right: 50px;
    font-weight: 500;
    display: flex;
    padding: 0;
    transition: all .2s ease;
    position: relative;
}

.menu-template-1>ul>li>a {
    color: #b2b2b2;
}

.menu-template-1>ul>li>a.active,
.menu-template-1>ul>li>a:hover {
    color: var(--main-clr);
    opacity: 1;
}

/* .menu-template-1 > ul > li > a > button{ --size: 25px; color: var(--main-clr); position: absolute; top: 50%; right: 0; transform: translate(50%, -50%); width: var(--size); height: var(--size); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--main-clr); background-color: #fff; opacity: 0; transition: transform .5s cubic-bezier(0.99,-0.01, 0.63, 0.99), opacity .1s ease;} */
.menu-template-1>ul>li>a>button {
    --size: 25px;
    color: var(--main-clr);
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--main-clr);
    background-color: #fff;
    opacity: 0;
    transition: transform .5s ease, opacity .1s ease;
}

.menu-template-1>ul>li>a>button svg {
    height: 15px;
}

.menu-template-1>ul>li>a.active>button {
    transform: translate(50%, -50%) rotate(180deg);
    opacity: 1;
}

.menu-template-1>ul>li>ul {
    width: 310px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    position: absolute;
    left: 220px;
    top: 0;
    padding-left: 50px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(50px);
    transition: all .3s ease;
}

.menu-template-1>ul>li>a.active+ul {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0px);
}

.menu-template-1>ul>li>ul>li>a {
    font-size: 15px;
    color: #000;
    font-weight: 300;
    transition: all .2s ease;
}

.menu-template-1>ul>li>ul>li>a:hover {
    color: var(--main-clr);
}


.lg-outer .lg-thumb-item.active,
.lg-outer .lg-thumb-item:hover {
    border-color: var(--main-clr);
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    border-radius: 0;
    padding: 3px;
}

.lg-backdrop,
.lg-outer .lg-thumb-outer {
    background-color: rgba(250, 252, 255, 0.95);
}

.lg-next,
.lg-prev {
    background-color: transparent;
    color: var(--main-clr);
    border: 1px solid var(--main-clr);
    transition: all .2s ease;
}

.lg-next:hover,
.lg-prev:hover {
    background-color: var(--main-clr);
}

.lg-toolbar .lg-icon:hover {
    color: #000;
}


.bd-entry {
    position: relative;
    min-height: 300px;
}

.bd-entry::before {
    background-color: rgba(0, 0, 0, .5);
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.bd-entry img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.bd-entry>div:not(.breadcrumb):not(.slider) {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
    justify-content: center;
}

.bd-entry>div>h1 {
    font-size: 52px;
    color: #fff;
    font-weight: 300;
}

.bd-entry>div>p {
    font-size: 13px;
    color: #fff;
    opacity: .75;
}

.bd-entry>div.wrp {
    flex-direction: column;
}

.bd-entry .breadcrumb {
    margin: 0;
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translate(-50%, 0);
    z-index: 5;
}

.bd-entry .breadcrumb ol {
    color: #fff;
    padding: 0 10px;
    margin: 0;
}

.bd-entry-v2 {
    padding: 70px 0;
}

.bd-entry.video {
    height: 100dvh;
}

.bd-entry.video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-entry.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.bd-entry.video video::-webkit-media-controls-panel {
    display: none !important;
    opacity: 1 !important;
}

.bd-entry>button {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-100%) rotate(90deg);
    transform-origin: bottom right;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    outline: none;
    line-height: 1;
    gap: 10px;
    transition: all .2s ease;
}

.bd-entry>button:hover {
    gap: 15px;
}

.bd-entry>button span {
    font-size: 14px;
    color: #fff;
}

.bd-entry>button::after {
    content: '';
    border-top: 3px solid var(--main-clr);
    transform: translateY(1px);
    width: 35px;
    min-width: 35px;
    display: inline-block;
}


.bd-btn-1 {
    color: var(--main-clr);
    gap: 8px;
    font-size: 10px;
    margin: 0 auto;
    background-color: transparent;
    border: none;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bd-btn-1 svg {
    fill: currentColor;
    height: 15px;
}

.bd-btn-1>* {
    transition: all .3s ease;
}

.bd-btn-1:hover>* {
    transform: scale(1.3);
}

.bd-btn-1.v2 {
    flex-direction: row;
}

.bd-btn-1.v2:hover>* {
    transform: scale(1.1);
}

.bd-btn-2 {
    font-weight: 500;
    display: flex !important;
    width: fit-content;
    align-items: center;
}

.bd-btn-2 svg {
    height: 22px;
    margin-right: 5px;
    margin-top: -2px;
    transition: all .2s ease;
}

.bd-btn-2.active {
    color: var(--main-clr);
}

.bd-btn-2.active svg {
    transform: rotate(90deg);
}

.bd-btn-2.sm {
    font-size: 13px;
}

.bd-btn-2.sm svg {
    height: 16px;
}

.bd-btn-2.lg {
    font-size: 18px;
    gap: 5px;
}

.bd-btn-2.lg svg {
    height: 32px;
}


.bd-btn-hover {
    transition: all .3s ease;
}

.bd-btn-hover:hover {
    color: var(--main-clr) !important;
}

.bd-btn-hover svg {
    transition: all .3s ease;
}

.bd-btn-hover:hover svg {
    margin-right: 12px;
    transform: translateX(4px);
}


.bd-breadcrumb {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.bd-breadcrumb ol {
    padding: 0;
    font-size: 0.8rem;
    list-style: none;
    display: flex;
    gap: 1.5rem;
    width: fit-content;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    margin: 0;
}

.bd-breadcrumb ol li a {
    color: #aaa;
    font-weight: 300;
    position: relative;
    display: inline-block;
    transition: all .2s ease;
}

.bd-breadcrumb ol li a:hover {
    color: var(--main-clr);
}

.bd-breadcrumb ol li:not(:last-child) a::after {
    color: #aaa !important;
    content: '/';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translate(100%, -50%);
}

.bd-breadcrumb ol li:last-child a {
    color: inherit;
}

.bd-breadcrumb ol li a {
    color: inherit;
}

.bd-breadcrumb ol li:not(:last-child) a::after {
    color: #aaa !important;
}

.bd-breadcrumb ol.v2 li:last-child a {
    color: #aaa !important;
}

@media screen and (max-width: 768px) {
    /* .bd-breadcrumb ol{ justify-content: flex-start;} */
}

/* --------------------------------------------- */
/* ----------------- HEADLINES ----------------- */
/* --------------------------------------------- */
.headline-template-1 {
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 40px;
}

.handwrite {
    font-size: 38px;
    text-align: center;
    color: var(--main-clr);
    font-style: italic;
    font-family: "Bodoni Moda", serif;
}

.bd-link {
    text-decoration: underline;
    opacity: 0.7;
    color: #878787;
}

.bd-link:hover {
    opacity: 1;
}

.headline {
    font-size: 42px;
    font-weight: 300;
    color: #8f9397;
}

@media screen and (max-width: 992px) {
    .headline {
        font-size: 32px;
    }
}

.headline span {
    color: #000;
}

.headline-md {
    font-size: 32px;
    font-weight: 300;
}

.headline-v1 {
    font-size: 56px;
    color: #fff;
    font-weight: 300;
    max-width: 600px;
}

.sub-headline {
    font-size: 22px;
    font-weight: 300;
    color: #999;
}

.sub-headline.md {
    font-size: 20px;
}

.sub-headline.sm {
    font-size: 18px;
}

.sub-headline strong {
    color: #555;
}

.top-header {
    font-size: 18px;
    font-weight: 300;
    color: var(--main-clr);
    letter-spacing: 2px;
}

.text-xs {
    font-size: 14px;
}

.text-sm {
    font-size: 16px;
}

.text-md {
    font-size: 1.5rem;
}

.text-lg {
    font-size: 20px;
}

.text-xl {
    font-size: 24px;
}

.text-2xl {
    font-size: 28px;
}

.text-1 {
    font-weight: 300;
    color: inherit;
    letter-spacing: 1px;
}


.spacing-half {
    padding-top: 60px;
}

.spacing {
    padding-top: 100px;
}

.spacing-1 {
    padding-top: 160px;
}

.bg-main {
    background-color: rgb(243 243 243);
}

.dpy-col {
    padding: 60px 0;
}

.bg-img {
    position: relative;
}

.bg-img::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .35);
}

.bg-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.bg-img>div {
    position: relative;
    z-index: 2;
}


.text-main {
    color: var(--main-clr);
}

/* .text-dark{ color: #000;}
.text-light{ color: #fff;} */

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}


/* --------------------------------------------- */
/* --------------- BD TMEPLATES ---------------- */
/* --------------------------------------------- */
.bd-template-1 {
    background-color: #fff;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 30px -25px rgba(0, 0, 0, .1);
}

.bd-template-1.v2 {
    margin-top: 0;
}

.swiper-slide:has(.bd-template-2) {
    height: auto;
}

.bd-template-2 {
    height: 100%;
    gap: 30px;
    padding: 40px 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.bd-template-2 .l {
    height: 100%;
}

.bd-template-2 .l h3 {
    margin-bottom: 15px;
}

.bd-template-2 .l p {
    margin: 0;
    max-width: 700px;
}


.bd-template-3 {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bd-template-3 .img {
    width: 100%;
    aspect-ratio: 1.5;
    height: fit-content;
    position: relative;
    overflow: hidden;
}

.bd-template-3 .img::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 5;
    opacity: 0;
    transition: all .5s ease;
}

.bd-template-3:hover .img::before {
    opacity: 1;
}

.bd-template-3 .img img {
    position: relative;
    z-index: 2;
}

.bd-template-3 .img iframe {
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
}

.bd-template-3 .img img,
.bd-template-3 .img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s ease;
}

.bd-template-3:hover .img img,
.bd-template-3:hover .img iframe {
    transform: scale(1.15);
}

.bd-template-3 .img>button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.bd-template-3 .detail strong {
    font-size: 18px;
    font-weight: 400;
}


.bd-template-4 {
    display: flex;
    gap: 15px;
    align-items: center;
    color: inherit;
    transition: all .2s ease;
}

.bd-template-4 .img {
    --size: 50px;
    width: var(--size);
    min-width: var(--size);
    height: var(--size);
    display: flex;
}

.bd-template-4 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-template-4 .detail {
    display: flex;
}

.bd-template-4 .detail strong {
    font-size: 12px;
    font-weight: 400;
    opacity: .75;
    transition: all .2s ease;
}

.bd-template-4:hover {
    color: var(--main-clr);
}

.bd-template-4:hover .detail strong {
    opacity: 1;
}

.bd-template-5 {
    position: relative;
    display: flex;
    flex-direction: column;
}

.bd-template-5 .img {
    aspect-ratio: 1;
    display: flex;
    position: relative;
}

.bd-template-5 .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-template-5 .detail {
    color: #fff;
    justify-content: flex-end;
    padding: 15px;
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .05);
    transition: all .3s ease;
}

.bd-template-5:hover .detail {
    background-color: rgba(0, 0, 0, .5);
}

.bd-template-5 .detail>strong {
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 300;
    text-transform: uppercase;
}

.bd-template-5 .detail>div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all .3s ease;
}

.bd-template-5:hover .detail>div {
    padding-bottom: 35px;
}

.bd-template-5 .detail>div span {
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
}

.bd-template-5 .detail>small {
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0;
    position: absolute;
    transform: translateY(100%);
    transition: all .3s ease;
}

.bd-template-5 .detail>small:hover {
    gap: 7px;
    padding-left: 5px;
}

.bd-template-5 .detail>small svg {
    height: 16px;
}

.bd-template-5:hover .detail>small {
    opacity: 1;
    transform: translateY(0);
}

.bd-template-6 {
    width: 70px;
    background-color: #eee;
    padding: 12px;
    display: flex;
    aspect-ratio: 1;
    height: fit-content;
}

.bd-template-6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bd-template-7 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bd-template-7 .detail p {
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.bd-wrapper-1 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bd-wrapper-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
}

.bd-wrapper-3 {
    display: flex;
    gap: 10px;
}


.bd-select {
    --size: 30px;
    color: var(--main-clr);
    display: flex;
    position: relative;
    width: 100%;
}

.bd-select>button {
    color: #888;
    height: var(--size);
    font-size: 13px;
    border: 1px solid var(--main-clr);
    padding: 0;
    padding-left: 15px;
    gap: 10px;
    border-radius: calc(var(--size) / 2);
    display: flex;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.bd-select.active>button {
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bd-select>button>span {
    white-space: nowrap;
}

.bd-select>button>div {
    color: #000;
    border: 1px solid currentColor;
    transform: translateX(1px);
    height: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-select>button>div svg {
    height: 18px;
    fill: currentColor;
}

.bd-select.active>button>div svg {
    transform: rotate(180deg);
}

.bd-select>div {
    padding: 0 15px 15px;
    position: absolute;
    opacity: 0;
    background-color: #fff;
    border: 1px solid var(--main-clr);
    z-index: 2;
    top: calc(100%);
    border-top: none;
    border-radius: 0 0 15px 15px;
    pointer-events: none;
    width: 100%;
    transition: all 0s ease;
}

.bd-select.active>div {
    opacity: 1;
    pointer-events: all;
}

.bd-select>div>div {
    border-top: 1px solid #ddd;
    padding-top: 5px;
}

.bd-select>div>div .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.bd-select>div>div .list::-webkit-scrollbar {
    width: 6px;
}

.bd-select>div>div .list::-webkit-scrollbar-thumb {
    background-color: var(--main-clr);
    border-radius: 10px;
}


.bd-select {
    --size: 30px;
    color: var(--main-clr);
    display: flex;
    position: relative;
    width: 100%;
}

.bd-select>a {
    color: #888;
    height: var(--size);
    font-size: 13px;
    border: 1px solid var(--main-clr);
    padding: 0;
    padding-left: 15px;
    gap: 10px;
    border-radius: calc(var(--size) / 2);
    display: flex;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.bd-select.active>a {
    border-bottom-color: transparent;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.bd-select>a>span {
    white-space: nowrap;
}

.bd-select>a>div {
    color: #000;
    border: 1px solid currentColor;
    transform: translateX(1px);
    height: var(--size);
    aspect-ratio: 1;
    border-radius: 50%;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-select>a>div svg {
    height: 18px;
    fill: currentColor;
}

.bd-select.active>a>div svg {
    transform: rotate(180deg);
}

.bd-select>div {
    padding: 0 15px 15px;
    position: absolute;
    opacity: 0;
    background-color: #fff;
    border: 1px solid var(--main-clr);
    z-index: 2;
    top: calc(100%);
    border-top: none;
    border-radius: 0 0 15px 15px;
    pointer-events: none;
    width: 100%;
    transition: all 0s ease;
}

.bd-select.active>div {
    opacity: 1;
    pointer-events: all;
}

.bd-select>div>div {
    border-top: 1px solid #ddd;
    padding-top: 5px;
}

.bd-select>div>div .list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
    max-height: 300px;
    overflow-y: auto;
}

.bd-select>div>div .list::-webkit-scrollbar {
    width: 6px;
}

.bd-select>div>div .list::-webkit-scrollbar-thumb {
    background-color: var(--main-clr);
    border-radius: 10px;
}


.bd-check {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1;
}

.bd-check input {
    --size: 16px;
    border-radius: 50%;
    width: var(--size);
    height: var(--size);
    position: relative;
}

.bd-check input::before {
    font-size: 12px;
    content: 'âœ”';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    width: var(--size);
    height: var(--size);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    color: transparent;
    transition: all .2s ease;
}

.bd-check input:checked::before {
    background-color: var(--main-clr);
    color: #fff;
}

.bd-check span {
    font-size: 13px;
}


.bd-select ul {
    list-style: none;
    padding: 0;
    font-size: 13px;
}

.bd-select ul li a {
    padding: 3px 0;
    display: inline-block;
}

.bd-select>ul ul li {
    border-bottom: none;
}

.bd-list {
    --line-clr: #ddd;
}

.bd-list li {
    position: relative;
}

.bd-list li a {
    position: relative;
}

.bd-list li>a>button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    height: fit-content;
    display: flex;
    transition: all .3s ease;
}

.bd-list li.open>a>button {
    transform: translateY(-50%) rotate(180deg);
}

.bd-list li ul {
    padding-left: 12px;
}

.bd-list li ul ul {
    padding-left: 25px;
}

.bd-list li ul li:has(+ li)>ul {
    border-left: 1px solid var(--line-clr);
}

.bd-list li ul li {
    position: relative;
}

.bd-list li ul li a {
    padding-left: 20px;
    transition: all .2s ease;
}

.bd-list li ul li a:hover {
    padding-left: 25px;
}

.bd-list li ul li>a::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    border-left: 1px solid var(--line-clr);
    height: 100%;
}

.bd-list li ul li>a::after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border-top: 1px solid var(--line-clr);
    height: 0;
    width: 10px;
    transition: all .2s ease;
}

.bd-list li ul li:hover>a::after {
    width: 15px;
}

.bd-list li ul li:nth-last-child(1)>a::before {
    height: 50%;
}


.slider-template-1 {
    position: relative;
}

.slider-template-1 .swiper-controller {
    position: absolute;
    right: 50px;
    top: 40px;
    gap: 10px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.slider-template-1 .swiper-controller .swiper-counter {
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

/* .slider-template-1 .swiper-controller .swiper-btn{ --size: 20px; width: var(--size); height: var(--size); border-radius: 50%; display: flex; align-items: center; justify-content: center; background-color: transparent; border: 1px solid var(--main-clr); color: var(--main-clr);} */
.slider-template-1 .swiper-controller .swiper-btn {
    --size: 20px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.slider-template-2 {
    position: relative;
}

.slider-template-2 .swiper-slide {
    display: flex;
    aspect-ratio: 1;
    height: fit-content;
}

.slider-template-2 .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-template-2 .swiper-btn {
    --size: 30px;
    position: absolute;
    top: 50%;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.slider-template-2 .swiper-btn svg {
    height: 18px;
}

.slider-template-2 .swiper-btn.prev {
    transform: translate(-50%, -50%);
    left: 0;
}

.slider-template-2 .swiper-btn.next {
    transform: translate(50%, -50%);
    right: 0;
}


.thumb-slider .swiper-slide {
    border: 2px solid #eee;
    transition: all .2s ease;
    padding: 2px;
}

.thumb-slider .swiper-slide.swiper-slide-thumb-active {
    border-color: var(--main-clr);
}

.thumb-slider .swiper-slide {
    display: flex;
    aspect-ratio: 1;
    height: fit-content;
}

.thumb-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* .slider-template-3{ height: fit-content; position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100%; z-index: 5;} */
.slider-template-3 {
    height: fit-content;
    position: absolute;
    bottom: 150px;
    left: 0;
    width: 100%;
    z-index: 5;
}

.slider-template-3 .swiper-wrapper {
    height: fit-content;
}

.slider-template-3 .swiper-wrapper .swiper-slide {
    height: fit-content;
    padding: 0 15px;
}

.slider-template-3 .swiper-wrapper .swiper-slide p {
    height: fit-content;
    text-align: center;
    font-size: 32px;
    font-style: italic;
    letter-spacing: 1px;
    font-weight: 100;
    color: #fff;
    text-transform: uppercase;
}


@media screen and (max-width: 768px) {
    .slider-template-3 .swiper-wrapper .swiper-slide p {
        font-size: 24px;
    }
}


/* BUTTONS */
.single-btn {
    background-color: transparent;
    border: none;
    outline: none;
    display: inline-block;
}

.bd-btn:not(.just-clr) {
    gap: 15px;
    padding: 5px 30px;
    height: fit-content;
    min-height: 45px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    white-space: nowrap;
    align-items: center;
    width: fit-content;
}

.bd-btn {
    background-color: var(--bg);
    border: 1px solid var(--border, var(--bg));
    color: var(--clr);
    transition: all .3s ease;
}

.bd-btn:not(.just-clr) svg {
    height: 30px;
    margin-left: -15px;
}

.bd-btn.v2 {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 13px;
    min-height: 30px;
    padding: 0;
    padding-bottom: 2px;
    border-radius: 999px;
}

.bd-btn:hover {
    background-color: var(--hover-bg, var(--clr));
    color: var(--hover-clr, var(--bg));
    border-color: var(--hover-border, var(--bg));
}

.btn-full {
    width: 100% !important;
    padding: 0;
    justify-content: center;
}

.btn-main {
    --bg: var(--main-clr);
    color: var(--main-clr-txt);
}

.btn-main-outlined {
    --bg: transparent;
    color: var(--main-clr);
    --border: var(--main-clr);
    --hover-bg: var(--main-clr);
    --hover-clr: var(--main-clr-txt);
}

.btn-white {
    --bg: #fff;
    color: var(--main-clr);
}

/* .btn-white-outlined{ --bg: transparent; color: #fff; --border: #fff; --hover-bg: #fff; --hover-clr: var(--main-clr);} */
.btn-white-outlined {
    --bg: transparent;
    color: #fff;
    --border: #fff;
    --hover-bg: var(--main-clr);
    --hover-border: var(--main-clr);
    --hover-clr: #fff;
}

.btn-black {
    --bg: #000;
    color: #fff;
}

.btn-black-outlined {
    --bg: #fff;
    color: #000;
    --border: #000;
    --hover-bg: #000;
    --hover-clr: #fff;
}


.bottom-close {
    z-index: 20;
}


.modal {
    --bs-modal-border-radius: 0;
}

/* Bootstrap 5 CSS and icons included */
:root {
    /* --colorPrimaryNormal: #00b3bb;
    --colorPrimaryDark: #00979f;
    --colorPrimaryGlare: #00cdd7;
    --colorPrimaryHalf: #80d9dd;
    --colorPrimaryQuarter: #bfecee;
    --colorPrimaryEighth: #dff5f7;
    --colorPrimaryPale: #f3f5f7;
    --colorPrimarySeparator: #f3f5f7;
    --colorPrimaryOutline: #dff5f7;
    --colorButtonNormal: #00b3bb;
    --colorButtonHover: #00cdd7;
    --colorLinkNormal: #00979f;
    --colorLinkHover: #00cdd7; */

    /* --colorPrimaryNormal: #bb7300;
    --colorPrimaryDark: #9f6f00;
    --colorPrimaryGlare: #d78800;
    --colorPrimaryHalf: #ddb880;
    --colorPrimaryQuarter: #eee1bf;
    --colorPrimaryEighth: #f7f0df;
    --colorPrimaryPale: #f7f6f3;
    --colorPrimarySeparator: #f7f6f3;
    --colorPrimaryOutline: #f7f0df;
    --colorButtonNormal: #bb7900;
    --colorButtonHover: #d78f00;
    --colorLinkNormal: #9f6f00;
    --colorLinkHover: #d7a100; */

    --colorPrimaryNormal: #b4985a;
    /* Ana renk - altÄ±n bronz */
    --colorPrimaryDark: #967a45;
    /* Daha koyu tonu */
    --colorPrimaryGlare: #d6b875;
    /* Parlak, Ä±ÅŸÄ±klÄ± tonu */
    --colorPrimaryHalf: #d9c29d;
    /* %50 doygunlukta tonu */
    --colorPrimaryQuarter: #ecdfc2;
    /* Daha yumuÅŸak, aÃ§Ä±k tonu */
    --colorPrimaryEighth: #f7f1e2;
    /* Ã‡ok hafif tonu */
    --colorPrimaryPale: #f9f7f4;
    /* Soluk, arka plan rengi */
    --colorPrimarySeparator: #f9f7f4;
    /* AyÄ±rÄ±cÄ± Ã§izgiler iÃ§in */
    --colorPrimaryOutline: #f7f1e2;
    /* Border veya outline iÃ§in */

    --colorButtonNormal: #b4985a;
    /* Buton rengi */
    --colorButtonHover: #d6b875;
    /* Hover'da daha parlak tonu */
    --colorLinkNormal: #967a45;
    /* Link rengi */
    --colorLinkHover: #d6b875;
}

.upload_dropZone {
    color: #0f3c4b;
    background-color: var(--colorPrimaryPale, #c8dadf);
    outline: 2px dashed var(--colorPrimaryHalf, #c1ddef);
    outline-offset: -12px;
    transition:
        outline-offset 0.2s ease-out,
        outline-color 0.3s ease-in-out,
        background-color 0.2s ease-out;
}

.upload_dropZone.highlight {
    outline-offset: -4px;
    outline-color: var(--colorPrimaryNormal, #0576bd);
    background-color: var(--colorPrimaryEighth, #c8dadf);
}

.upload_svg {
    fill: var(--colorPrimaryNormal, #0576bd);
}

.btn-upload {
    cursor: pointer;
    margin: 0 auto;
}

/* .btn-upload {
    color: #fff;
    background-color: var(--colorPrimaryNormal);
} */
/* .btn-upload:hover,
.btn-upload:focus {
    color: #fff;
    background-color: var(--colorPrimaryGlare);
} */
.upload_img {
    width: calc(33.333% - (2rem / 3));
    object-fit: contain;
}


@media (min-width: 1200px) {
    .container.md {
        max-width: 950px;
    }
}

@media (min-width: 1400px) {
    .container.md {
        max-width: 1200px;
    }
}


@media screen and (max-width: 1280px) {
    .text-xl {
        font-size: 20px;
    }

    .text-xs {
        font-size: 13px;
    }

    .handwrite {
        font-size: 32px;
    }

    .headline-v1 {
        font-size: 44px;
    }
}

@media screen and (max-width: 992px) {
    header>.b>div>.c {
        display: none;
    }

    header .header-menu>.b>div {
        flex-direction: column;
        gap: 60px;
        max-width: 900px;
    }

    header .header-menu>.b>div .r {
        max-width: unset;
    }

    .menu-template-1>ul>li>ul {
        display: none;
        width: 100%;
        position: static;
        left: unset;
        top: unset;
        padding-left: 20px;
        padding-top: 15px;
        opacity: 1;
        pointer-events: all;
        transform: unset;
    }

    .menu-template-1>ul {
        max-width: unset;
        border: none;
    }

    .menu-template-1>ul>li>a>button {
        opacity: 1;
        transform: translate(0, -50%) rotate(90deg);
        transition: all .2s ease;
    }

    .menu-template-1>ul>li>a.active+ul {
        display: flex;
    }

    .menu-template-1>ul>li>a.active>button {
        transform: translate(0, -50%) rotate(180deg);
    }


    .samples {
        font-size: 15px;
    }

    .samples>.icon svg {
        height: 30px;
    }

    .bd-wrapper-2 {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media screen and (max-width: 768px) {
    .headline-md {
        font-size: 26px;
    }

    .sub-headline {
        font-size: 20px;
    }

    .bd-template-2 {
        flex-direction: column;
        padding: 40px 25px 30px;
    }

    .bd-template-2 .r button {
        white-space: unset !important;
    }

    .slider-template-1 .swiper-controller {
        right: 20px;
        top: 20px;
    }

    .bd-btn-2.lg {
        font-size: 16px;
    }

    .bd-btn-2.lg svg {
        height: 28px;
    }


    footer>div .b {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .bd-entry {
        min-height: 250px;
    }

    .bd-entry>div h1 {
        font-size: 36px;
    }

    /* OTHERS */
    .text-xl {
        font-size: 22px;
    }

    .text-xs {
        font-size: 15px;
    }

    .bd-btn-1 {
        font-size: 13px;
    }


    .bd-wrapper-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bd-template-5 .detail>strong {
        font-size: 12px;
    }
}


@media screen and (max-width: 576px) {
    .bd-wrapper-2 {
        display: flex;
        flex-direction: column;
    }

}


@media screen and (min-width: 768px) {
    .show-md {
        display: none;
    }
}


.form-control {
    border-radius: 0;
}

.form-control:focus {
    border-color: var(--main-clr);
    box-shadow: 0 0 0 3px rgba(180, 152, 90, 0.3);
}


/* .ticker-wrapper { width: 100%; height: 60px; overflow: hidden; position: relative; background: #f4f4f4; border-top: 2px solid #ddd; border-bottom: 2px solid #ddd; display: flex; align-items: center; font-family: sans-serif;} */
/* .ticker-wrapper { width: 100%; height: 50px; overflow: hidden; position: relative; color: var(--main-clr); font-weight: 500; background: rgba(180, 152, 90, 0.2); border-top: 2px solid rgba(180, 152, 90, 0.4); border-bottom: 2px solid rgba(180, 152, 90, 0.4); display: flex; align-items: center; font-family: sans-serif;} */
.ticker-wrapper {
    width: 100%;
    height: 50px;
    overflow: hidden;
    position: relative;
    font-weight: 500;
    border-top: 2px solid #0dcaf030;
    border-bottom: 2px solid #0dcaf030;
    display: flex;
    align-items: center;
    font-family: sans-serif;
}

.ticker {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: ticker-scroll linear infinite;
}

.ticker-item {
    margin-right: 5rem;
    font-size: 1.1rem;
    color: var(--main-clr);
    flex: 0 0 auto;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}


.page-detail {
    margin-bottom: 0;
    margin-top: 156px;
    justify-content: center;
    background: #7a7a7a1f;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 3rem;
}

h2 { font-size:1.8rem }

@media screen and (max-width: 768px) {
.bd-entry.video {
    height: 100dvh
}
.slider-template-3 .swiper-wrapper { display:none }
}

