﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');


:root {
    --ahlp-00d329: #00D329;
    --ahlp-ff0000: #FF0000;
    --ahlp-bf4040: #BF4040;
    --ahlp-ffffff: #FFFFFF;
    --ahlp-f5f4f4: #F5F4F4;
    --ahlp-e2dfdf: #E2DFDF;
    --ahlp-d9d4d4: #D9D4D4;
    --ahlp-bbb4b4: #BBB4B4;
    --ahlp-938a8a: #938A8A;
    --ahlp-5f5858: #5F5858;
    --ahlp-403b3b: #403B3B;
    --ahlp-2a2727: #2A2727;
    --ahlp-1a1818: #1A1818;
    --ahlp-f9f5f1: #F9F5F1;
    --ahlp-ece2d5: #ECE2D5;
    --ahlp-e6d8c7: #E6D8C7;
    --ahlp-d8c5ab: #D8C5AB;
    --ahlp-c5a881: #C5A881;
    --ahlp-b89465: #B89465;
    --ahlp-a7804d: #A7804D;
    --ahlp-7e603a: #7E603A;
    --ahlp-544027: #544027;
    --ahlp-aeb0b3: #AEB0B3;
    --ahlp-040b0f: #040b0f;
}

body {
    font-family: "Open Sans", sans-serif;
}

section{
    overflow:hidden;
}

a{
    text-decoration:none;
    color:var(--ahlp-1a1818);
    font-weight:normal;
}

p,li,label{
    text-align:justify;
}

.text-justify{
    text-align:justify;
}

a:hover{
    text-decoration:none;
    color:var(--ahlp-1a1818);
}

.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


.w-fit-content{
    width:fit-content !important;
}
.h-fit-content{
    height:fit-content !important;
}

.accordion-item {
    border: 1px solid rgba(0,0,0,.125) !important;
}

*:not(html):not(body)::-webkit-scrollbar {
  width: 4px;
}

*:not(html):not(body)::-webkit-scrollbar-track {
  background: #e6d8c7;
  border-radius: 10px;
  
}

*:not(html):not(body)::-webkit-scrollbar-thumb {
  background-color: #a7804d;
  border-radius: 10px;
  transition: background-color 0.2s ease;
}

*:not(html):not(body)::-webkit-scrollbar-thumb:hover {
  background-color: #a7804d;
}


input[type="checkbox"]:focus,
input:focus,
textarea:focus {
    box-shadow: none;
}

.fw-semibold{
    font-weight:600;
}

.text-success {
    color: #4da759 !important;
}
.text-danger {
    color: #a74d4d !important;
}

.dropdown-toggle::after{
    content:none;
}

@media (max-width: 768px) {
    .container{
        padding-right:20px;
        padding-left:20px;
    }
}

@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 950px;
    }
}

/*Default Btns Start*/

.default-btn {
    position: relative;
    background-color: var(--ahlp-a7804d);
    color: var(--ahlp-f9f5f1);
    border: none;
    outline: none;
    width: fit-content;
    height: fit-content;
    border-radius: 16px;
    padding: 18px 25px;
    font-size: 14px;
    line-height: 17px;
    cursor: pointer;
    transition: ease-out background-color .3s,ease-out color .3s;
    overflow: hidden;
    z-index: 1;
}

.default-btn.default-white{
    background-color:var(--ahlp-ffffff);
    color:var(--ahlp-a7804d);
}
.default-btn.default-white:hover{
    background-color:var(--ahlp-ffffff);
    color:var(--ahlp-a7804d);
}

.default-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/helpers/gold-bg.png) center center no-repeat;
    background-size: cover;
    transform: scaleY(-1);
    opacity: 0;
    filter: blur(4px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 0;
}

.default-btn:hover::after {
    opacity: 0.35;
    transform: scaleY(-1);
}

.default-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
    transform: skewX(-25deg);
    transition: none;
    z-index: 2;
}

.default-btn:hover::before {
    animation: shine 1.2s forwards;
}



.default-btn:disabled::after,
.default-btn.disabled::after,
.default-btn:disabled::before,
.default-btn.disabled::before {
    opacity: 0 !important;
    animation: none !important;
    transition: none !important;
    filter: none !important;
    background: none !important;
    transform: none !important;
}

.default-btn:disabled:hover::before,
.default-btn.disabled:hover::before,
.default-btn:disabled:hover::after,
.default-btn.disabled:hover::after {
    opacity: 0 !important;
    animation: none !important;
}

/* Shine animation */
@keyframes shine {
    0% { left: -80%; }
    100% { left: 130%; }
}

@media (max-width:992px) {
    .default-btn {
        padding: 16px 20px;
    }
}

@media (max-width:768px) {
    .default-btn {
        padding: 14px 18px;
        font-size:13px;
        line-height:16px;
    }
}


.default-btn:hover{
    background-color:var(--ahlp-7e603a);
    color:var(--ahlp-ffffff);
}

.default-btn:disabled,
.default-btn.disabled{
    background-color:var(--ahlp-bbb4b4) ;
    color:var(--ahlp-f9f5f1) ;
    user-select:none;
    cursor:default;
}

.default-btn.soft-dark{
    background-color:var(--ahlp-7e603a);
    color:var(--ahlp-ffffff);
}

.default-btn.default-btn-sm{
    padding:15px;
}

.default-btn.icon-box{
    padding:0px;
    width:36px;
    min-width:36px;
    height:36px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}
.default-btn.icon-box svg{
    width:30px;
    height:30px;
}


.default-btn.light-box{
    background-color:var(--ahlp-f9f5f1);
    color:var(--ahlp-a7804d);
    transition:.5s all ease-out;
}
.default-btn.light-box svg{
    color:var(--ahlp-a7804d);
    transition:.5s all ease-out;
}
.default-btn.light-box:hover{
    background-color:var(--ahlp-7e603a);
    color:var(--ahlp-ffffff);
}
.default-btn.light-box:hover svg{
    color:var(--ahlp-ffffff) !important;
}

.default-btn .btn-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.default-btn.loading {
    pointer-events: none;
    opacity: .75;
}

.default-btn.loading svg {
    display: none;
}

.default-btn.loading .btn-spinner {
    display: inline-block;
}

@media (max-width:992px) {
    .default-btn.default-btn-sm {
        padding: 12px;
    }
    .default-btn.icon-box {
        padding: 6px;
    }
}

@media (max-width:768px) {
    .default-btn.default-btn-sm {
        padding: 10px 8px;
        border-radius:10px;
    }
    .default-btn.icon-box {
        padding: 4px;
    }
}

/*Default Btns End*/

/*Fund-Btn Start*/

.fund-filter-wrapper {
    width: 100%;
    overflow-x: auto;         
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch; 
    white-space: nowrap;      
}

.fund-filter-wrapper::-webkit-scrollbar {
    display: none;
}


.fund-filter-wrapper.grabbing {
    cursor: grabbing;
}

.fund-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;         
    -ms-overflow-style: none;       
}

.fund-filter::-webkit-scrollbar {
    display: none;                 
}

.fund-btn {
    white-space: nowrap;
}

.fund-btn {
    background-color: var(--ahlp-f9f5f1);
    color: var(--ahlp-a7804d);
    border: 1px solid var(--ahlp-a7804d);
    border-radius: 16px;
    padding: 18px 25px;
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.fund-btn:hover {
    background-color: var(--ahlp-a7804d);
    color: var(--ahlp-ffffff);
    border-color: var(--ahlp-a7804d);
}

.fund-btn.active {
    background-color: var(--ahlp-a7804d);
    color: var(--ahlp-ffffff);
    border-color: var(--ahlp-a7804d);
}

@media (max-width: 992px) {
    .fund-btn {
        padding: 15px 17px;
    }
}

@media (max-width: 768px) {
    .fund-btn {
        padding: 13px 15px;
    }
}

/*Fund-Btn End*/


/*Filter Navbar Start*/

#filter-navbar {
    margin-bottom: 60px;
    margin-top: 40px;
}

#filter-navbar .sort-btn {
    border-radius: 16px;
}
#filter-navbar .sort-btn svg{
    margin-bottom:3px;
}

#filter-navbar .date-wrapper{
    padding:50px 0 5px 0;
}

#filter-navbar .search-wrapper {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--ahlp-bbb4b4);
    border-radius: 16px;
    background-color: transparent;
    overflow: hidden;
}
#filter-navbar .search-wrapper .search-btn{
    border-top-left-radius:0;
    border-bottom-left-radius:0;
    height:100%;
    min-height:40px;
}

#filter-navbar .search-wrapper .input-container {
    flex: 1;
}

#filter-navbar .search-wrapper input {
    width: 100%;
    padding: 18px 40px;
    font-size: 14px;
    line-height: 17px;
    border: 0;
    background: transparent;
    outline: none;
    height: 100%;
}

#filter-navbar .search-wrapper input::placeholder {
    color: var(--ahlp-bbb4b4);
    font-style: italic;
}

@media (max-width:992px) {
    #filter-navbar .search-btn span {
        display: none;
    }
}

@media (max-width:768px) {
    #filter-navbar .search-btn {
        width: 50px;
        padding: 0;
        border-radius: 12px;
    }

    #filter-navbar .sort-btn {
        height: 50px !important;
    }

    #filter-navbar .search-wrapper .search-btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    #filter-navbar .search-wrapper {
        border-radius: 12px;
    }
    #filter-navbar .search-wrapper input {
        padding: 0px 15px !important;
    }

    #filter-navbar .date-wrapper {
        padding: 30px 0 5px 0;
        font-size: 12px;
        line-height: 25px;
    }
}

/*Filter Navbar End*/

/*Default Badge Start*/

.default-badge-wrapper {
    width: 122px;
    height: 122px;
    padding: 6px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    background: var(--ahlp-ffffff);
}
.default-badge-wrapper .badge-icon {
    border:10px solid #f1f0f0;
    background-color:var(--ahlp-ffffff);
    width:100%;
    height:100%;
    border-radius:50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0px -2px 4px rgb(0 0 0 / 24%),
                inset 0px 0px 8px rgb(239 233 233 / 35%);
}

.default-badge-wrapper .badge-icon i {
    font-size:35px;
    color:var(--ahlp-1a1818);
}
.default-badge-wrapper .badge-icon svg {
    color:var(--ahlp-1a1818);
}

.default-badge-wrapper[data-count]:not([data-count=""])::after {
    content: attr(data-count);
    position: absolute;
    top: -10px;
    right: 15px;
    min-width: 30px;
    height: 30px;
    background: var(--ahlp-a7804d);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 19px;
    font-weight: 700;
}

.default-badge-wrapper[data-count="0"]::after,
.default-badge-wrapper[data-count="00"]::after {
    display: none !important;
}


@media (max-width: 968px) {
    .default-badge-wrapper {
        width: 100px;
        height: 100px;
        padding: 5px;
    }
    .default-badge-wrapper .badge-icon {
        border:8px solid #f1f0f0;
    }

    .default-badge-wrapper .badge-icon i {
        font-size:25px;
    }

    .default-badge-wrapper .badge-icon svg {
        width:45px;
        height:45px;
    }
    .default-badge-wrapper .badge-icon img {
        width:45px;
        height:45px;
    }

    .default-badge-wrapper[data-count]:not([data-count=""])::after {
        top: -5px;
        right: 10px;
        min-width: 30px;
        height: 30px;
        font-size: 14px;
        line-height: 16px;
    }
}
@media (max-width: 768px) {
    .default-badge-wrapper {
        width: 80px;
        height: 80px;
        padding: 5px;
    }
    .default-badge-wrapper .badge-icon {
        border:6px solid #f1f0f0;
    }

    .default-badge-wrapper .badge-icon i {
        font-size:35px;
    }

    .default-badge-wrapper .badge-icon svg {
        width:35px;
        height:35px;
    }
    .default-badge-wrapper .badge-icon img {
        width:35px;
        height:35px;
    }

    .default-badge-wrapper[data-count]:not([data-count=""])::after {
        top: -3px;
        right: 5px;
        min-width: 26px;
        height: 26px;
        font-size: 12px;
        line-height: 14px;
        font-weight:500;
    }
}

/*Default Badge End*/

/*Default Captions Start*/

.h2-main-caption {
    font-size: 60px;
    letter-spacing: 1.8px;
    line-height: 60px;
    color: var(--ahlp-1a1818);
    font-weight:bold;
}

@media (max-width: 992px) {
    .h2-main-caption {
        font-size: 45px;
        letter-spacing: 1.1px;
        line-height: 52px;
        margin-bottom:0;
    }
}
@media (max-width: 768px) {
    .h2-main-caption {
        font-size: 32px;
        letter-spacing: .96px;
        line-height: 36px;
    }
}

/*Default Captions End*/

/*Caption Stars Start*/

.star-title {
    position: relative;
    display: inline-block;
}

.star-title::before,
.star-title::after,
.star-title .mid-star::after {
/*    content: url('../img/helpers/star.png');
*/    position: absolute;
    width: 22px;
    height: 22px;
    opacity: 0.9;
}

/* Sol yıldız */
.star-title::before {
    left: -40px;
    top: -25%;
    transform: translateY(-50%);
}

/* Orta yıldız */
.star-title .mid-star::after {
    left: 46.2%;
    top: -30%;
    transform: translateX(-50%);
}

/* Sağ yıldız */
.star-title::after {
    right: 35px;
    top: 30%;
    transform: translateY(-50%);
}

/*Caption Stars End*/

.default-link-1, .default-link-1:hover {
    color: var(--ahlp-f9f5f1);
}

.default-link-2 {
    color: var(--ahlp-bbb4b4);
    font-weight: 500;
    text-decoration: underline;
}

    .default-link-2:hover {
        color: var(--ahlp-bbb4b4);
        text-decoration: underline;
    }

.default-text-1 {
    margin: 0px;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
}

.default-text-2 {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0px;
}

.default-text-3 {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
}

.default-text-4 {
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0px;
}

.default-text-5 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0px;
}

.default-text-6 {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;
}

.default-text-7 {
    font-size: 14px;
    line-height: 17px;
    letter-spacing: 0px;
}

.default-text-8 {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0px;
}

@media (max-width:992px) {
    .default-text-4 {
        font-size: 14px;
        line-height: 16px;
    }

    .default-text-5 {
        font-size: 20px;
        line-height: 24px;
    }

    .default-text-6 {
        font-size: 18px;
        line-height: 21px;
    }
    .default-text-8 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width:768px) {
    .default-text-3 {
        font-size: 14px;
        line-height: 18px;
        letter-spacing: 0px;
    }

    .default-text-4 {
        font-size: 12px;
        line-height: 14px;
    }

    .default-text-5 {
        font-size: 16px;
        line-height: 20px;
    }

    .default-text-6 {
        font-size: 14px;
        line-height: 18px;
    }
    .default-text-8 {
        font-size: 16px;
        line-height: 22px;
    }
}

.default-header-1 {
    margin-bottom: 20px;
    color: var(--ahlp-ffffff);
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0px;
}

.default-header-2 {
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 1.8px;
    font-weight: bold
}

.default-header-3 {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 1.1px;
    font-weight: bold;
}

.default-header-4 {
    font-size: 36px;
    line-height: 43px;
    letter-spacing: 0px;
}

@media (max-width:992px) {
    .default-header-2 {
        font-size: 45px;
        line-height: 45px;
        letter-spacing: 1.4px;
    }

    .default-header-3 {
        font-size: 28px;
        line-height: 36px;
        letter-spacing: .72px;
    }

    .default-header-4 {
        font-size: 32px;
        line-height: 38px;
    }
}

@media (max-width:768px) {
    .default-header-2 {
        font-size: 32px;
        line-height: 36px;
        letter-spacing: .96px;
    }

    .default-header-3 {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: .72px;
    }

    .default-header-4 {
        font-size: 20px;
        line-height: 24px;
        letter-spacing:.6px;
    }
}

.subscribe-input, .subscribe-btn {
    height: 50px;
    border-radius: 16px !important;
}

.subscribe-btn {
    width: 50px;
    min-width:50px;
    padding:0;
    color: var(--ahlp-FFFFFF);
    background-color: var(--ahlp-a7804d);
}

.subscribe-input {
    background-color: transparent !important;
    color: var(--ahlp-aeb0b3);
    border: 1px solid var(--ahlp-aeb0b3);
    font-style: normal;
}

.subscribe-input.is-invalid {
    color: #fff !important;
}

.kvkk-check {
    margin: 23px 0px 32px 0px;
}

.form-check-input[type="checkbox"]:checked {
    background-color: var(--ahlp-a7804d);
    border-color: var(--ahlp-a7804d);
}


/*Page first default-section Start*/

#default-first-section {
    width: 100%;
    min-height: 50vh;
    margin-top: 152px;
    color:var(--ahlp-ffffff) !important;
    background: url('../img/helpers/main-bg.svg') center center no-repeat;
    background-size: cover !important;
}


#default-first-section .section-wrapper {
    padding: 61px 10px;
}

#default-first-section .section-wrapper .page-urls {
    margin-bottom: 15vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

    flex-wrap: nowrap;
    overflow: hidden;
    white-space: nowrap;
}

#default-first-section .section-wrapper .page-urls span {
    padding: 3px 10px 3px 0;
    color: var(--ahlp-bbb4b4);
    border-right: 1px solid var(--ahlp-bbb4b4);

    flex-shrink: 0;
}

#default-first-section .section-wrapper .page-urls span:last-child {
    color: var(--ahlp-ffffff);
    border: none;
    padding-right: 0;

    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}


@media (max-width: 1250px) {
    #default-first-section {
        margin-top: 142px;
    }

    #default-first-section .section-wrapper {
        padding: 50px 40px;
    }

    #default-first-section .section-wrapper .page-urls {
        margin-bottom: 10vh;
        gap: 8px;
    }
}

@media (max-width: 992px) {
    #default-first-section {
        margin-top: 97px;
        min-height: 40vh;
        background-position: 35% center !important;
    }
    #default-first-section .section-wrapper {
        padding: 40px 30px;
    }
}

@media (min-width: 576px) and (max-width: 992px) {
    #default-first-section {
        margin-top: 93px;
    }
}

@media (max-width: 576px) {
    #default-first-section {
        margin-top: 83px;
        min-height:40vh;
    }
}

/*Page first default-section End*/


/*Validation style start*/

/* INPUT: Genel stil */
.form-control {
    border-radius: 14px;
    padding-right: 40px;
    height: 48px;
    font-size: 15px;
    color:var(--ahlp-2a2727);
}

.form-control:focus {
    border-color: var(--ahlp-a7804d);
    box-shadow:none;
}
.was-validated .form-control:focus {
    box-shadow: none !important;
}

.form-control.is-valid,
.was-validated .form-control:valid {
    border-color: var(--ahlp-a7804d) !important;
    background-color: var(--ahlp-f9f5f1) !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%23a7804d'/><path d='M5.5 8.5l2 2 4-4' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: right calc(0.75rem) center;
    position: relative;
}

.form-check-input.is-valid,
.was-validated .form-check-input:valid {
    border-color: var(--ahlp-a7804d) !important;
    background-color: var(--ahlp-a7804d) !important;
}

.form-check-input.is-valid + .form-check-label,
.was-validated .form-check-input:valid + .form-check-label {
    color: var(--ahlp-a7804d) !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: var(--ahlp-bf4040) !important;
    background-color: #BD3F3F1C !important;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'><circle cx='8' cy='8' r='8' fill='%23bf4040'/><text x='8' y='12' text-anchor='middle' font-size='11' font-family='Arial' fill='white'>!</text></svg>") !important;
    background-repeat: no-repeat;
    background-size: 16px 16px;
    background-position: right calc(0.75rem) center;
    position: relative;
}

.form-check-input.is-invalid,
.was-validated .form-check-input:invalid {
    border-color: var(--ahlp-bf4040) !important;
    background-color: transparent !important;
}

.form-check-input.is-invalid + .form-check-label,
.was-validated .form-check-input:invalid + .form-check-label {
    color: var(--ahlp-bf4040) !important;
}

/*Validation style end*/


/* Default Search wrapper start*/

.ahlp-search-wrapper {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--ahlp-bbb4b4);
    border-radius: 16px;
    background-color: transparent;
    overflow: hidden;
}

.ahlp-search-wrapper .input-container {
    flex: 1;
}

.ahlp-search-wrapper input {
    width: 100%;
    padding: 18px 40px;
    font-size: 14px;
    line-height: 17px;
    border: 0;
    background: transparent;
    outline: none;
    height: 100%;
}

.ahlp-search-wrapper input::placeholder {
    color: var(--ahlp-bbb4b4);
    font-style: italic;
}

.ahlp-search-btn {
    border-radius:0;
}

#field-section .field-content {
    position:relative;
    padding: 40px 60px;
    border-radius: 16px;
    background-color: var(--ahlp-e6d8c7);
}
#field-section .field-content img{
    position:absolute;
    right:-40px;
    top:-30px;
}

@media (max-width: 992px) {
    .ahlp-search-wrapper {
        border-radius: 12px;
    }
    .ahlp-search-wrapper input {
        padding: 15px 17px;
        max-height:50px;
    }
    .ahlp-search-btn {
        padding: 0;
        width:50px;
        height:50px;
    }
    .ahlp-search-btn span {
        display: none;
    }

}
@media (max-width: 768px) {
    .ahlp-search-wrapper {
        border-radius: 10px;
    }
    .ahlp-search-wrapper input {
        padding: 13px 15px;
        max-height:40px;
    }
    .ahlp-search-btn {
        width:40px;
        height:40px;
    }
}

/* Default Search wrapper End*/

/*Form (Field-Section) Start*/

#field-section {
    padding-top: 120px;
    padding-bottom: 240px;
    background: url('../img/helpers/YATIRIM_ALANLARI_BG.png') center center no-repeat;
    background-size: cover;
}

#field-section .field-content {
    padding: 40px 60px;
    border-radius: 16px;
    background-color: var(--ahlp-e6d8c7);
}

#field-section .field-content h4 {
    margin-bottom: 40px;
}

#field-section .field-content h4 span:last-child {
    margin-top: 13px;
    color: var(--ahlp-a7804d);
}

#field-section .field-content .right-content {
    padding: 0px 40px;
    border-radius: 16px;
    background-color: var(--ahlp-ffffff);
}

#field-section .left-content {
    padding: 40px 0;
}

#field-section .field-content .right-content-wrapper {
    height: 350px;
}

#field-section .field-content .right-content-wrapper .right-content {
    position: absolute;
    right: 0;
}

#field-section .field-content .right-content .right-content-title {
    margin-top: 40px;
    margin-bottom: 20px;
}

#field-section .form-check {
    color: var(--ahlp-bbb4b4);
}

#field-section .default-check:first-child {
    padding-top: 23px !important;
    padding-bottom: 23px !important;
}

@media (max-width:992px) {
    #field-section {
        padding-bottom: 300px;
    }

    .right-content-title br {
        display: none;
    }

    #field-section .field-content {
        padding: 40px;
    }
}

@media (max-width:768px) {
    #field-section {
        padding-bottom: 370px;
    }

    #field-section .left-content {
        padding-top: 0
    }

    #field-section .field-content h4 {
        margin-bottom: 20px;
    }

    #field-section .field-content h4 span:last-child {
        margin-top: 0;
    }

    #field-section .field-content .right-content-wrapper .right-content {
        width: calc(100% + 20px);
        right: -10px !important;
    }

    .mkf-list li::before {
        top: -10px;
    }
}

/*Form (Field-Section) End*/

/*Radio buttons Style Start*/
.option-item input[type="radio"] {
    display: none;
}

.option-item label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 0;
    color: #8f8682;
}

.custom-radio {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    border: 2px solid #d5cec9;
    background: #fff;
    box-shadow: 0 0 0 4px #f4ece6;
    position: relative;
    transition: 0.2s;
}

.custom-radio::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #c79a63;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.3);
    transition: 0.2s;
}

.option-item input[type="radio"]:checked + label .custom-radio {
    border-color: #c79a63;
    box-shadow: 0 0 0 4px rgba(199, 154, 99, 0.25);
}

.option-item input[type="radio"]:checked + label .custom-radio::after {
    opacity: 1;
    transform: scale(1);
}

.option-item input[type="radio"]:checked + label .option-label {
    color: var(--ahlp-2a2727);
    font-weight: 500;
}

/*Radio Buttons Style End*/

/*No-Content Styles Start*/

.no-content-wrapper {
    background: var(--ahlp-f9f5f1);
    border: 0;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

.no-content-wrapper-title {
    font-weight: 500;
    font-size: 36px;
    line-height: 40px;
    display: flex;
    flex-direction: column;
    margin: 0;
    flex-grow: 1;
}
.no-content-wrapper-title strong{
    font-weight: bold;
}

.no-content-wrapper-copy {
    color: var(--ahlp-1a1818);
    font-size: 20px;
    line-height: 25px;
    margin: 0 auto;
    max-width:700px;
}

.no-content-wrapper-btn-wrap button {
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 992px) {

    .no-content-wrapper {
        padding: 40px 30px;
        gap: 10px;
    }

    .no-content-wrapper-title {
        font-size: 32px;
        line-height: 36px;
    }

    .no-content-wrapper-copy {
        font-size: 16px;
        line-height: 20px;
    }

    .no-content-wrapper-btn-wrap button {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .no-content-wrapper-card {
        padding: 40px 20px;
        gap: 10px;
    }

    .no-content-wrapper-title {
        font-size: 24px;
        line-height: 26px;
    }

    .no-content-wrapper-copy {
        font-size: 12px;
        line-height: 15px;
    }

    .no-content-wrapper-btn-wrap button {
        display: none;
    }

}

/*No-Content Styles End*/

.dropdown-menu {
    background-color: var(--ahlp-a7804d);
    border-radius: 10px;
    font-size: 14px;
    padding: 0;
    margin-top: 2px !important;
}

.dropdown-menu .dropdown-item{
    color:#fff;
    cursor:pointer;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: var(--ahlp-a7804d);
    background-color: #f9f5f1;
}

/*Risk Profili Start*/

#risk-profil {
  background: url('../img/helpers/RISK_PROFILI_BG.png') center center no-repeat;
  background-size:cover;
  background-position:100% center;
  color: #1a1818;
  position: relative;
  overflow: hidden;
  min-height: 400px;
  padding:130px 0 120px 0;
}

#risk-profil .lead {
  font-size: 36px;
  line-height:43px;
  color: var(--ahlp-ffffff);
  margin-bottom:20px;
}

#risk-profil .lead br{
    display:none;
}

#risk-profil h2 {
  color:var(--ahlp-ffffff);
  font-weight:400;
  margin-bottom:40px;
}

#risk-profil p {
  font-size: 20px;
  line-height:24px;
  color: var(--ahlp-ece2d5);
  flex:1 auto;
}

.default-btn.survey-risk-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:var(--ahlp-a7804d);
    border-radius: 16px;
    padding: 15px 60px;
    text-wrap: nowrap;
    position: relative;
    overflow: hidden;
    gap:8px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.default-btn.survey-risk-wrapper .text{
    font-size:16px;
    line-height:19px;
    color:var(--ahlp-f9f5f1);
}

.survey-risk-wrapper img {
    position: absolute;
    left: 50%;
    bottom: -80%;
    transform: translate(-50%,-50%);
}

#risk-profil .risk-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #b4803c 0%, #e6b35d 100%);
    color: #fff;
    border-radius: 10rem;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

#risk-profil .risk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

#risk-profil .risk-btn .icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.25);
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.risk-content-wrapper{
    padding-left:110px;
}

.risk-imgs {
    position: absolute;
}
.risk-imgs img{
    width:100%;
    height:100%;
}
.risk-imgs.left-exclamation-img{
   left:2%;
   top:8%;
}
.risk-imgs.left-check-img{
   left:5%;
   bottom:15%;
}
.risk-imgs.right-x-img{
   right:13.5%;
   top:8%;
}
.risk-imgs.right-exclamation-img {
   right:2.9%;
   top:19%;
}

@media (max-width: 992px) {
    #risk-profil {
        background-position:100%,center;
        padding: 100px 0 150px 0;
    }

    .risk-content-wrapper{
        padding:30px;
    }

    #risk-profil .lead {
        font-size: 24px;
        line-height: 31px;
        margin-bottom: 15px;
    }

    #risk-profil h2 {
        margin-bottom: 30px;
        max-width: 375px;
    }

    #risk-profil p {
        font-size: 16px;
        line-height: 21px;
    }

    .default-btn.survey-risk-wrapper {
        width: 220px;
        border-radius: 10px;
    }

    .default-btn.survey-risk-wrapper .text {
        font-size: 16px;
        line-height: 21px;
    }

    .risk-imgs.left-exclamation-img {
        left: 58%;
        top: initial;
        width: 85px;
        height: 85px;
        bottom: 10%;
    }

    .risk-imgs.left-check-img {
        left: 10%;
        bottom: 5%;
        width: 95px;
        height: 95px;
    }

    .risk-imgs.right-x-img {
        right: 5.5%;
        top: initial;
        width: 103px;
        height: 103px;
        bottom: 10%;
    }

    .risk-imgs.right-exclamation-img {
        right: 15%;
        bottom: -1%;
        top: initial;
        width: 125px;
        height: 125px;
    }
}

@media (max-width: 766px) {
    #risk-profil {
        background: url(../img/helpers/RISK_PROFILI_BG.png) center center no-repeat;
        background-position:85% 50%;
        background-size: cover;
        padding: 100px 0 140px 0;
    }

    .risk-content-wrapper{
        padding:20px;
    }

    #risk-profil .lead {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 10px;
    }

    #risk-profil .lead br{
        display:block;
    }

    #risk-profil h2 {
        margin-bottom: 30px;
        max-width: 270px;
    }

    #risk-profil p {
        font-size: 14px;
        line-height: 17px;
    }

    .default-btn.survey-risk-wrapper .text {
        font-size: 14px;
        line-height: 17px;
    }

    .risk-imgs.left-exclamation-img {
        width: 55px;
        height: 55px;
    }

    .risk-imgs.left-check-img {
        width: 55px;
        height: 55px;
    }

    .risk-imgs.right-x-img {
        width: 63px;
        height: 63px;
    }

    .risk-imgs.right-exclamation-img {
        width: 85px;
        height: 85px;
    }
}


/*Risk Profili End*/
