/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Variables - faqat ranglar va asosiy qiymatlar */
:root {
    --primary-red: rgba(182, 55, 52, 1);
    --primary-red-hover: rgba(145, 23, 20, 1);
    --secondary-blue: rgba(24, 30, 75, 1);
    --text-main: rgba(33, 40, 50, 1);
    --text-light: rgba(94, 98, 130, 1);
    --border-light: rgba(254, 192, 206, 1);
    --bg-light-pink: rgba(255, 243, 244, 1);
    --bg-light-purple: rgba(223, 215, 249, 0.2);
    --bg-gradient-pink: #FFE6E6;
    --white: #FFFFFF;
    --error-red: #DC3545;
    --border-gray: #D9D9D9;
    --shadow-main: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    --shadow-card: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    --shadow-button: rgba(241, 41, 1, 0.15) 0px 10px 15px 0px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

#myHeader {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Sticky header - asl kodni saqlash */
.sticky {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100px;
    background: white;
    /*padding: 200px auto;*/
    z-index: 9999;
    box-shadow: var(--shadow-main);
}

.navbar .logo img {
    width: 229px;
    height: 80px;
}

.navbar {
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Navigation links - asl stilni saqlash */
.footer-menu .nav-item a,
.navbar-nav .nav-item a {
    font-size: 17px;
    font-family: 'Poppins', serif;
    color: var(--text-main);
    line-height: 100%;
}

.footer-menu .nav-item a:hover,
.navbar-nav .nav-item a:hover {
    color: var(--primary-red) !important;
}

/* Module trigger */
.module .trigger {
    position: relative;
    height: auto;
}

/* Location dropdown */
.location {
    position: absolute;
    transform: scaley(0);
    cursor: pointer;
    background: white;
    border-radius: 10px;
    transition: 0.2s all;
}

.location img {
    width: 17px;
    height: 17px;
    border-radius: 4px;
}

.show .location {
    transform: scaley(1);
}

#menu-icon {
    font-size: 35px;
    color: var(--primary-red);
    z-index: 1001;
    padding-bottom: 140px;
}

.carousel.dragging {
    cursor: grabbing !important;
    user-select: none;
}

.carousel {
    cursor: grab;
}

.selected {
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--text-main);
}

.language {
    cursor: pointer;
}

/* BUTTON STYLES - ASL DIZAYNNI SAQLASH */
.header-navbar-button {
    width: 255px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 10px;
    border: none;
    font-size: 18px;
    color: var(--white);
    box-shadow: rgba(255, 230, 230, 1) 0 25px 20px -20px;
    transition: background-color 0.3s ease-in-out;
}

.header-navbar-button:hover,
.header-text-in button:hover,
.kalkulator-input .kalkulator-akkardion:hover,
.all-description button:hover,
.content-row button:hover {
    background: var(--primary-red-hover);
}

.navbar-nav .header-navbar-button {
    display: none;
}

.header-exit-button {
    width: 102px;
    height: 40px;
    border-radius: 5px;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    font-size: 17px;
    font-family: 'Poppins', serif;
    line-height: 100%;
    background: transparent;
    transition: all 0.4s ease-in-out;
}

.header-exit-button:hover {
    border-color: transparent;
    color: var(--white);
    background: var(--primary-red) !important;
}

/* Navigation dropdown styling */
.nav-link-sm.d-flex.align-items-center.fw-bold.column-gap-2.dropdown-toggle.dropdown-arrow.dropdown-toggle-not.pe-3.text-dark {
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.5s ease-in-out;
}

.nav-link-sm.d-flex.align-items-center.fw-bold.column-gap-2.dropdown-toggle.dropdown-arrow.dropdown-toggle-not.pe-3.text-dark:hover {
    background: #e7e7e7;
}

/* Custom select wrapper */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
}

.custom-select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 30px;
}

.custom-select-wrapper::after {
    content: "\e998";
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 16px;
    pointer-events: none;
    position: absolute;
    right: 16px;
    top: 54px;
    transform-origin: 50% 50%;
    width: 16px;
}

/* Header section */
.header-bg {
    background: linear-gradient(0deg, var(--bg-gradient-pink), transparent);
    margin-top: 100px;
}

.navbar-all {
    width: 1186px;
}

.header-dectop {
    width: 1186px;
}

.header-text-in {
    width: 752px;
    height: 484px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.header-text-in p.header-title {
    font-size: 20px;
    font-family: 'Poppins', serif;
    color: var(--primary-red);
}

.header-text-in h6 {
    font-size: 55px;
    font-family: 'Poppins', serif;
    line-height: 70px;
    letter-spacing: 2%;
    color: var(--secondary-blue);
}

.header-text-in p {
    font-size: 16px;
    font-family: 'Poppins', serif;
    color: var(--text-light);
    width: 588px;
}

/* Header va kalkulator buttonlari - asl stilni saqlash */
.header-text-in button,
.kalkulator-input .kalkulator-akkardion {
    width: 170px;
    height: 60px;
    border-radius: 10px;
    background: var(--primary-red);
    font-size: 18px;
    font-family: 'Poppins', serif;
    color: white;
    box-shadow: var(--shadow-button);
    transition: background-color 0.3s ease-in-out;
    border: none;
}

/* Kalkulator styles */
.group-image {
    top: 24px;
    right: 24px;
}

.bottom-image img {
    bottom: 75px;
    left: 35px;
}

.calculate-bg{
    background: linear-gradient(0deg, var(--bg-gradient-pink), transparent);
}

.kalkulator-polis {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 36px;
    transform: translateY(-110px);
    box-shadow: var(--shadow-main);
    width: 1350px;
    margin-top: 150px;
}

.kalkulator-title {
    font-size: 30px;
    font-family: 'Poppins', serif;
    color: rgba(20, 24, 62, 1);
}

.kalkulator-button button {
    width: 125px;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--border-gray);
    color: #14183E;
    font-size: 22px;
    font-family: 'Poppins', serif;
}

.error-message {
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    position: relative;
    display: block;
    justify-content: center;
}

.input-error {
    border-color: var(--error-red) !important;
}

.kalkulator-input label {
    color: #5E6282;
}

.kalkulator-input label span {
    color: var(--primary-red);
}

.kalkulator-input .checkbox-type-group .radio-group {
    background-color: white;
    position: relative;
    z-index: 1;
}

.kalkulator-input .checkbox-type-group input {
    height: auto;
    font-weight: 600;
    font-family: 'Poppins', serif;
    accent-color: var(--primary-red);
    margin-right: 6px;
}

.kalkulator-input input:not([type="radio"]),
.kalkulator-dropown button {
    height: 60px;
    border-radius: 16px;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Poppins', serif;
    color: rgba(20, 24, 62, 1);
    box-shadow: var(--shadow-card);
}

.kalkulator-number {
    width: 232px;
}

.kalkulator-input .kalkulator-input .form-aag {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}

.kalkulator-input .form-aag {
    width: 80px !important;
}

.kalkulator-input .kalkulator-input input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.kalkulator-dropown button {
    font-size: 16px;
    font-weight: 500;
    color: #14183E;
    border: 1px solid var(--border-gray);
    padding-left: 24px;
    padding-right: 24px;
}

.custom-dropdown-select {
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(20, 24, 62, 1);
    box-shadow: var(--shadow-card);
    padding-left: 24px;
    padding-right: 24px;
    height: 60px;
    width: 100%;
}

.btn-option.active {
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
}

.header-row,
.content-row {
    padding: 10px;
}

.column {
    flex: 1;
}

.company-line {
    width: 90%;
}

.column-insurance,
.kalkulator-image-insurace {
    width: 250px;
    padding-left: 24px;
}

.column-term {
    flex: 1;
}

.column-price {
    width: 290px;
}

.header-row div {
    font-size: 16px;
    font-family: 'POppins', serif;
    color: var(--text-light);
}

.content-row h4 {
    font-size: 18px;
    font-family: 'Poppins', serif;
    color: rgba(20, 24, 62, 1);
}

.insurance-company .header-row {
    width: 925px;
}

.insurance-company .content-row {
    height: 90px;
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow-card);
    padding: 0 24px;
    width: 100%;
}

.content-row button {
    width: 119px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary-red);
    font-size: 13px;
    font-family: 'Poppins', serif;
    color: var(--white);
    border: none;
}

/* Polisi card */
.polisi-card {
    width: 267px;
    height: 270px;
    border-radius: 30px;
    border: 1px solid var(--border-light);
    background: var(--bg-light-pink);
}

.plisi-body h4 {
    font-size: 20px;
    font-family: 'Poppins', serif;
    color: rgba(30, 29, 76, 1);
}

.plisi-body p {
    font-family: 'Poppins', serif;
    color: var(--text-light);
    line-height: 26px;
}

/* Online polisi */
.online-polisi {
    margin-top: 80px;
}

.online-polisi .header-text-in {
    height: auto;
    margin-bottom: 0;
}

.online-polisi-in {
    width: 1186px;
}

.flex-columns {
    display: flex;
}

.online-title h4 {
    font-size: 20px;
    font-family: 'Poppins', serif;
    color: rgba(20, 24, 62, 1);
}

.online-title p {
    font-family: 'Poppins', serif;
    color: var(--text-light);
    width: 402px;
}

.online-polisi-right img {
    width: 100%;
    height: 100%;
}

/* About section */
.about {
    margin-top: 100px;
}

.about .we {
    width: 1186px;
    height: 407px;
    background: var(--bg-light-purple);
    border-radius: 20px;
    border-top-left-radius: 129px;
}

.we-image {
    width: 100%;
    height: 100%;
}

.we h2 {
    font-size: 40px;
    font-family: 'Poppins', serif;
    letter-spacing: -2%;
    line-height: 50px;
    color: var(--secondary-blue);
}

.we p {
    line-height: 30px;
    color: var(--text-light);
    font-family: 'Poppins', serif;
}

.we .circle-top {
    top: 0px;
    right: 0px;
}

.we .circle-bottom {
    bottom: 0px;
    left: -85px;
}

.about-plus {
    right: 30px;
    bottom: -70px;
}

/* Partner */
.partner {
    margin-top: 80px;
}

.partner-in {
    width: 1145px;
}

.partner-in h1 {
    color: rgba(20, 24, 62, 1);
}

/* Marquee */
.marquee {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}

.all-insuranse-cards {
    margin-top: 76px;
    width: 1186px;
}

.all-description {
    width: 270px;
}

.all-description h3 {
    font-size: 26px;
    font-family: 'Poppins', serif;
    font-weight: 700 !important;
    color: var(--secondary-blue);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.all-description p {
    font-size: 14px;
    font-family: 'Poppins', serif;
    color: var(--text-light);
}

.all-insurance-card {
    width: 100%;
    height: 319px;
    border-radius: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f6fa 100%);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03), 0 1px 8px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.all-insurance-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.04);
}

.card-all-image img {
    width: 375px;
    height: 271px;
    right: -80px;
    top: 15px;
}

.card-all-image .fit {
    right: 0;
    top: 0;
    height: 303px;
    width: auto;
}

/* All description button - asl stil */
.btns .bg-danger {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
}

.btns .bg-danger:hover {
    transform: scale(1.05);
    background-color: #bb2d3b !important; /* Slightly darker red */
    box-shadow: 0 6px 16px rgba(220, 53, 69, 0.3);
}

/* Complete section */
.full-complete {
    width: 1186px;
    margin-top: 100px;
}

.experience {
    gap: 30px;
    display: flex;
}

.experience div {
    width: 260px;
    border: 1px solid var(--border-light);
    background: var(--bg-light-pink);
    border-radius: 20px;
}

.experience div h3 {
    font-size: 32px;
    font-family: 'Poppins', serif;
    color: var(--primary-red);
}

.experience div p {
    font-size: 14px;
    font-family: 'Poppins', serif;
    color: var(--primary-red);
}

.users-description {
    width: 550px;
    border-radius: 20px;
    background: var(--primary-red);
}

.full-complete .image {
    margin-bottom: 50px;
}

.complete-description h3 {
    font-size: 40px;
    font-family: 'Poppins', serif;
    color: rgba(20, 24, 62, 1);
}

.complete-description p {
    font-family: 'Poppins', serif;
    line-height: 30px;
    color: var(--text-light);
}

/* Reference section */
.reference-in {
    width: 1186px;
    height: auto;
    padding: 30px;
    border-radius: 20px;
    border-top-left-radius: 130px;
    background: var(--bg-light-purple);
    margin-top: 80px;
}

.reference-in .header-text-in {
    width: auto;
    height: auto;
    margin-bottom: 30px;
}

.reference-in .header-text-in h6 {
    font-size: 40px;
}

.accordion-item {
    width: 1072px;
}

.value__accordion-title {
    font-size: 30px;
    font-family: 'Poppins';
    color: rgba(20, 24, 62, 1);
}

.value__accordion-header {
    cursor: pointer;
}

.accordion-open {
    box-shadow: 0 12px 32px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-icon {
    box-shadow: 0 4px 4px hsla(228, 66%, 45%, .1);
}

.accordion-open .value__accordion-arrow img {
    transform: rotate(-180deg);
}

.value__accordion-item {
    background: var(--white);
    margin: auto 40px;
    border-radius: 30px;
}

.value__accordion-content {
    height: 0;
    overflow: hidden;
    transition: all .25s ease;
}

.value__accordion-description {
    font-size: 20px;
    font-family: 'Poppins', serif;
    color: var(--text-light);
}

.accordion-image {
    right: 0;
    top: 0;
}

.accordion-bottom {
    bottom: 0;
    left: -80px;
}

/* Footer */
.footer-menu {
    margin-top: 100px;
    width: 1186px;
}

.footer-logo p {
    font-size: 13px;
    font-family: 'Poppins', serif;
    color: var(--text-light);
}

.footer-menu .header-navbar-button {
    box-shadow: rgba(241, 41, 1, 0.15) 0px 35px 50px -15px;
}

.icons i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}

.footer-menu-link,
.application h4 {
    font-size: 20px;
    font-family: 'Poppins', serif;
    color: var(--text-light);
    letter-spacing: 0.5%;
}

.application-text img {
    cursor: pointer;
}

/* Marquee animation */
.marquee {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-animation 10s linear infinite;
}

.card__article {
    flex: 0 0 auto;
    margin: 0 40px;
}

.card__image {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.daterangepicker .drp-buttons .btn:hover {
    color: #fff !important;
}

@keyframes marquee-animation {
    0% {
        transform: translateX(0);
    }

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

.web-polis-footer {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.web-polis-footer ul li {
    font-size: 14px;
    font-family: 'Poppins', serif;
    color: var(--text-light);
    line-height: 125%;
}

.web-polis-footer a {
    font-size: 14px;
    font-family: 'Poppins', serif;
    color: var(--text-light);
    line-height: 125%;
}

.checkbox-bg-primary:checked {
    background-color: var(--primary-red) !important;
    border-color: var(--primary-red) !important;
}

.form-check-input:focus {
    box-shadow: none;
}

.breadcrumb-item a {
    color: var(--primary-red);
}

.sidebar-footer {
    position: relative;
    bottom: 0;
    left: 0;
    /*width: 244px;*/
    width: 100%;
    /*width: 316px;*/
}

.sidebar-self {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: sticky;
    /*top: 100px;*/
    top: 124px;
    left: 0;
    /*width: 252px;*/
    width: 16%;
    /*min-height: calc(100vh - 100px);*/
    /*z-index: 9999;*/
    z-index: 1050;
    /*height: calc(100vh - 140px);*/
    height: calc(100vh - 124px);
    padding-left: 0 !important;
}

.main-self {
    width: 84%;
}

/*height: calc(100vh -  100px);*/
/* Media Queries - asl responsive kodlar */
@media screen and (max-width: 1400px) {
    .bottom-image img {
        left: -35px;
    }

    .about-plus {
        right: -70px;
        bottom: -70px;
    }
}

@media screen and (max-width: 1320px) {
    .sidebar-self {
        width: 22%;
    }

    .main-self {
        width: 78%;
    }

    .dropdown-header.px-md-3.px-1.py-2 {
        font-size: 14px;
    }

    .header-text-in {
        width: 500px;
    }

    .header-text-in h6 {
        font-size: 35px;
    }

    .header-text-in p {
        width: 450px;
    }

    .image img {
        width: 100%;
        height: auto;
    }

    .bottom-image {
        display: none;
    }

    .about-plus {
        display: none;
    }

    .all-insuranse-cards {
        width: auto;
    }
}

@media screen and (max-width: 1200px) {
    .sidebar-self {
        width: 25%;
    }

    .main-self {
        width: 75%;
    }

    .dropdown-header.px-md-3.px-1.py-2 {
        font-size: 14px;
    }

   header .navbar-nav {
        position: absolute;
        top: 100%;
        left: -100%;
        width: auto;
        height: auto;
        background: white;
        border-radius: 10px;
        border-top-right-radius: 0;
        padding: 24px;
        transition: all .50s ease;
        z-index: 9999;
    }

    .navbar-nav.open {
        left: 0;
    }

    header .header-navbar-button {
        display: none;
    }

    .navbar-nav .header-navbar-button {
        display: block;
    }

    .header-dectop {
        width: auto;
    }

    .header-text-in {
        width: 500px;
    }

    .header-text-in h6 {
        font-size: 35px;
    }

    .header-text-in p {
        width: 450px;
    }

    .navbar-all,
    .kalkulator-polis {
        width: 100%;
    }

    .polisi-card {
        width: auto;
        padding: 0 24px;
    }

    .online-polisi-right img {
        max-width: 100%;
        height: auto;
    }

    .online-title p {
        width: 370px;
    }

    .footer-menu {
        width: 100%;
    }

    .about .we,
    .partner-in {
        width: auto;
    }

    .all-description {
        width: 350px;
    }

    .column-price {
        width: 365px;
    }
}

@media screen and (max-width: 992px) {
    .sidebar-self {
        width: 25%;
    }

    .main-self {
        width: 75%;
    }

    .dropdown-header.px-md-3.px-1.py-2 {
        font-size: 14px;
    }

    .insurance-company .header-row,
    .insurance-company .content-row {
        width: 768px;
    }

    .column-insurance,
    .kalkulator-image-insurace {
        width: 280px;
    }

    .column-price {
        width: 260px;
    }

    .kalkulator-input input {
        height: 50px;
        font-size: 18px;
        text-transform: uppercase;
    }

    .kalkulator-dropown button {
        height: 50px;
        width: 200px;
        padding-left: 18px;
        padding-right: 18px;
    }

    .kalkulator-dropown ul {
        width: 200px;
    }



    .online-polisi-right img {
        display: none;
    }

    .online-title p {
        width: auto;
    }

    .flex-columns {
        flex-direction: column;
    }

    .we h2 {
        font-size: 35px;
        line-height: 40px;
    }

    .value__accordion-title {
        font-size: 25px;
    }

    #menu-icon {
    padding-bottom: 60px;
}

}

@media screen and (min-width:992) {}

@media screen and (max-width: 930px) {

    .sidebar-self {
        width: 28%;
    }

    .main-self {
        width: 72%;
    }

    .dropdown-header.px-md-3.px-1.py-2 {
        font-size: 14px;
    }

    .header-text-in {
        width: 420px;
        height: 400px;
    }

    .header-text-in h6 {
        font-size: 30px;
        line-height: 50px;
    }

    .header-text-in p {
        width: 420px;
    }

    .insurance-company .header-row,
    .insurance-company .content-row {
        width: 660px;
    }

    .column-insurance,
    .kalkulator-image-insurace {
        width: 220px;
    }

    .column-price {
        width: 240px;
    }

    .group-image img,
    .bottom-image {
        display: none;
    }

    /* .kalkulator-polis {
        transform: translateY(-50px);
    } */

    .kalkulator-input input {
        width: 160px !important;
    }
}

@media screen and (min-width: 768px) {
    .card-all-image img {
        position: absolute;
    }

    .all-insurance-card {
        position: relative;
    }

}

@media screen and (max-width: 768px) {
    .sidebar-self {
        width: 30%;
    }

    .main-self {
        width: 70%;
    }

    .dropdown-header.px-md-3.px-1.py-2 {
        font-size: 14px;
    }

    .header-text-in {
        width: 100%;
        height: auto;
    }

    .header-text-in h6 {
        font-size: 30px;
        line-height: 50px;
    }

    .header-text-in p {
        width: 100%;
    }

    .image img {
        display: flex;
        justify-content: center;
    }

    .navbar {
        margin-bottom: 50px;
    }

    .insurance-company .content-row {
        height: auto;
        width: 100%;
        padding: 15px;
    }

    .about .we {
        height: auto;
        padding: 24px;
    }

    .all-insurance-card {
        height: auto;
    }

    .all-description {
        width: auto;
    }

    .experience {
        flex-direction: column;
    }

    .users-description,
    .experience div {
        width: 100%;
    }

    .value__accordion-title {
        font-size: 20px;
    }

    .value__accordion-item {
        margin: auto 0;
    }

    .kalkulator-inputs-blog,
    .custom-select-wrapper,
    .kalkulator-input .kalkulator-akkardion {
        width: 300px !important;
    }

    .kalkulator-number {
        width: 200px;
    }

    .kalkulator-input input {
        width: 100% !important;
    }
}

@media screen and (max-width: 767px) {
    .header-exit-button {
        width: 48px;
    }

    .sidebar-footer {
        font-size: 12px;
    }

    .dropdown-menu.dropdown-menu-end.w-100.shadow-lg.border-0.show {
        font-size: 12px;
    }

    .nav-item,
    .nav-group-toggle {
        padding: 8px 10px !important;
    }
}

@media screen and (max-width: 577px) {

    .nav-item,
    .nav-group-toggle {
        padding: 8px 10px !important;
    }

    .sticky {
        padding: 20px auto;
    }

    .accordion-bottom {
        width: 100%;
    }

    .all-insuranse-cards {
        width: 100%;
    }

    .navbar .logo img {
        width: 150px;
    }

    .navbar-nav {
        width: 100%;
    }

    /* .kalkulator-polis {
        transform: translateY(-50px);
    } */

    .flex-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .we-image img {
        width: 100%;
        height: 100%;
    }

    .circle-bottom {
        width: 100%;
        height: auto;
    }

    .we h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .kalkulator-button {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .kalkulator-button button {
        width: 140px;
    }

}

@media screen and (max-width: 575px) {
    .sidebar-self {
        width: 35%;
    }

    .main-self {
        width: 65%;
    }

    .logout-button {
        padding: 0.2rem !important;
    }

    .sidebar-footer {
        font-size: 12px;
    }

    .dropdown-menu.dropdown-menu-end.w-100.shadow-lg.border-0.show {
        font-size: 12px;
    }

    .dropdown-header.px-md-3.px-1.py-2 {
        font-size: 13px;
    }

    .nav-item,
    .nav-group-toggle {
        padding: 6px 8px !important;
    }

    .header-exit-button {
        width: 48px;
    }
}

@media screen and (max-width: 425px) {
    .sidebar-self {
        width: 40%;
    }

    .main-self {
        width: 60%;
    }

    .sidebar-footer {
        font-size: 10px;
    }

    .dropdown-menu.dropdown-menu-end.w-100.shadow-lg.border-0.show {
        font-size: 10px;
    }

    .dropdown-header.px-md-3.px-1.py-2 {
        font-size: 12px;
    }

    .nav-item,
    .nav-group-toggle {
        padding: 6px 8px;
    }

    .reference-in .header-text-in h6,
    .header-text-in h6 {
        font-size: 25px;
        line-height: 40px;
    }

    .header-text-in p.header-title {
        font-size: 18px;
    }

    .card-all-image img {
        width: 300px;
        height: 236px;
    }

    .value__accordion-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 425px) {
    .sidebar-self {
        width: 40%;
    }

    .main-self {
        width: 60%;
    }

    .sidebar-footer {
        font-size: 8px;
    }

    .dropdown-menu.dropdown-menu-end.w-100.shadow-lg.border-0.show {
        font-size: 8px;
    }

    .nav-item,
    .nav-group-toggle {
        font-size: 14px;
        padding: 6px 8px;
    }

    .dropdown-header.px-md-3.px-1.py-2 {
        font-size: 10px;
    }

    .kalkulator-inputs-blog,
    .custom-select-wrapper,
    .kalkulator-input .kalkulator-akkardion {
        max-width: 100% !important;
        margin-left: 20px;
        margin-right: 20px;
    }
}