@media only screen and (min-width: 1024px) {

    .header .hdr-cta-tel {
        column-gap: 10px;
        width: auto;
        height: auto;
        padding: 10px 20px;
        border-radius: 100px;
    }

    .header .hdr-cta-tel-txt {
        display: inline-block;
    }

    .header .hdr-cta-tel-icon {
        transition: .2s ease-in-out;
    }

    .header .hdr-cta-tel:hover .hdr-cta-tel-icon {
        transform: rotate(360deg);
    }

    .footer .ftr-info {
        display: flex;
        flex-wrap: wrap;
        column-gap: 20px;
    }

    .footer .ftr-logo-link {
        width: 100%;
    }

    .footer .ftr-brch {
        width: calc(50% - 10px);
    }

    .footer .ftr-nav {
        display: flex;
        flex-wrap: wrap;
        column-gap: 30px;
    }

    .footer .ftr-nav-list {
        width: calc((100% / 3) - 20px);
        border-bottom: none;
    }

    .footer .ftr-nav-h {
        margin-bottom: 10px;
    }

    .footer .ftr-nav-h-icon {
        display: none;
    }

    .footer .ftr-nav-dd {
        max-height: unset;
    }

    .footer-cta {
        display: none;
    }

    .footer .ftr-sm {
        margin-top: 40px;
    }
    
    .footer .ftr-btt {
        position: absolute;
        bottom: 0;
        right: 0;
        margin-top: 0;
    }
}

@media only screen and (min-width: 1200px) {

    .container {
        width: 1140px;
    }

    .button {
        cursor: pointer;
        transition: .2s ease-in-out;
    }

    .button:hover {
        background-color: var(--blue-2);
        border-color: var(--blue-2);
    }

    .button-cta:hover {
        background-color: var(--orange-1);
        border-color: var(--orange-1);
    }

    .button-lgt:hover {
        background-color: white;
        border-color: var(--blue-2);
        color: var(--blue-2);
    }

    .header .container {
        position: relative;
        padding-block: 0;
    }

    .header .hdr-nav {
        position: static;
        top: unset;
        left: unset;
        height: unset;
        max-height: unset;
        background-color: white;
    }

    .header .hdr-nav-list {
        display: flex;
        max-width: unset;
        width: unset;
    }

    .header .hdr-nav-itm {
        flex: 1;
    }

    .header .hdr-nav-lbl {
        padding: 27px 12px;
        border-top: none; 
    }

    .header .hdr-nav-lbl-txt {
        display: inline-block;
        text-align: center;
        width: 100%;
    }

    .header .hdr-nav-icon {
        display: none;
    }

    .header .hdr-nav-dd {
        position: absolute;
        top: 77px;
        left: 0;
        width: 1140px;
        display: flex;
        background-color: white;
        border-radius: 20px;
        opacity: 0;
        transition: all .3s ease-in-out;
    }

    .header .hdr-nav-itm {
        cursor: default;
    }

    .header .hdr-nav-itm:hover .hdr-nav-dd {
        max-height: 1000px;
        padding: 40px;
        box-shadow: 0 0 5px -2px rgba(0,0,0,.5);
        opacity: 1;
    }

    .header .hdr-nav-itm.active .hdr-nav-dd {
        padding: 40px;
        box-shadow: 0 0 5px -2px rgba(0,0,0,.5);
        opacity: 1;
    }

    .header .hdr-nav-dd-con {
        padding-inline: 40px;
    }

    .header .hdr-nav-dd-list,
    .header .hdr-nav-dd-con {
        flex: 1;
    }

    .header .hdr-nav-dd-link {
        display: flex;
        align-items: center;
        column-gap: 20px;
        background-color: white;
        border-top: none;
    }

    .header .hdr-nav-dd-link:hover .hdr-nav-dd-link-icon-fill {
        fill: var(--blue-2);
    }

    .header .hdr-nav-dd-link:hover .hdr-nav-dd-link-icon-stroke {
        stroke: var(--blue-2);
    }

    .header .hdr-nav-dd-list-norm .hdr-nav-dd-link {
        padding: 15px 20px 15px 0;
    }

    .header .hdr-nav-dd-list-tools .hdr-nav-dd-link {
        padding: 15px 0 15px 40px;
    }

    .header .hdr-nav-dd-list-tools  .hdr-nav-dd-h {
        display: block;
        color: var(--grey-1);
        font-size: 15px;
        margin: 10px 0 10px 40px;
    }

    .header .hdr-nav-dd .button-cta {
        min-width: 200px;
        margin-top: 20px;
    }

    .header .hdr-nav-dd-list-tools .button-cta {
        margin-left: 40px;
    }

    .header .hdr-nav-dd-link-icon {
        display: block;
        width: 25px;
        height: 25px;
    }

    .header .hdr-nav-dd-link-icon-fill {
        fill: #8697bb;
    }

    .header .hdr-nav-dd-link-icon-stroke {
        stroke: #8697bb;
    }

    .header .hdr-nav-dd-con {
        display: block;
        border-left: 1px solid var(--grey-2);
        border-right: 1px solid var(--grey-2);
    }

    .header .hdr-nav-dd-con-long {
        flex: unset;
        width: 70%;
        border-right: none;
    }

    .header .hdr-nav-dd-h {
        font-size: 20px;
        margin-block: 10px 20px;
    }

    .header .hdr-nav-dd-extcon {
        border: none;
    }

    .header .hdr-nav-dd-hide {
        display: none;
    }

    .header .hdr-nav-dd-anni-icon {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 150px;
        height: 150px;
    }

    .header .hdr-nav-dd-list-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 15px;
    }

    .header .hdr-nav-dd-list-flex .hdr-nav-dd-h {
        display: none;
    }

    .header .hdr-nav-dd-list-flex .hdr-nav-dd-itm {
        width: calc((100% / 3) - 10px);
    }

    .header .hdr-nav-dd-list-flex .hdr-nav-dd-link {
        padding: 5px 0 5px 20px;
        border-left: 4px solid var(--blue-4);
    }

    .header .hdr-cta {
        justify-content: flex-start;
        flex-direction: row-reverse;
        min-width: 320px;
    }

    .header .hdr-cta-opn {
        display: none;
    }

    .hero .her-con-w-bg {
        height: 600px;
        padding: 60px;
    }

    .hero .her-ggl {
        bottom: 60px;
        left: 60px;
        margin-block: 0;
    }

    .hero .her-cta {
        position: absolute;
        bottom: 20px;
        right: 20px;
        display: flex;
        flex-direction: column;
        gap: 7px;
    }
    
    .hero .her-cta .her-cta-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 60px;
        height: 60px;
        padding: 0;
    }
    
    .hero .her-cta .her-cta-icon {
        width: 30px;
        height: 30px;
    }

    .hero-basic .her-con-w-bg {
        height: 500px;
    }

    .hero-basic .her-h2 {
        width: 600px;
    }

    .hero-basic .her-cta {
        display: none;
    }

    .why .why-con {
        gap: 30px;
    }

    .why .why-itm {
        width: calc((100% / 3) - 20px);
    }

    .hardwork .container {
        column-gap: 60px;
        padding: 40px 60px;
    }

    .hardwork .hdwk-con {
        flex: 1;
    }

    .hardwork .hdwk-p {
        max-width: unset;
    }

    .hardwork .hdwk-tel-icon {
        transition: .2s ease-in-out;
    }

    .hardwork .hdwk-tel:hover .hdwk-tel-icon {
        transform: rotate(360deg);
    }

    .hardwork .hdwk-btns {
        width: 300px;
        flex: unset;
    }

    .hardwork .button-cta:hover {
        background-color: #e0f9ff;
        border-color: #e0f9ff;
        color: var(--theme-color-1);
    }

    .hardwork .button-lgt:hover {
        background-color: transparent;
        border-color: white;
        color: white;
    }

    .calculator .container {
        display: flex;
        column-gap: 40px;
        padding-inline: 0;
    }

    .calculator .calc-con {
        min-width: 300px;
    }

    .calculator .calc-calc {
        flex: 1;
        margin-top: 0;  
    }

    .calculator .calc-con-h,
    .calculator .calc-con-p {
        text-align: left;
    }

    .calculator .calc-quote {
        margin: 60px 0 0;
    }

    .calculator .calc-swt-opt {
        cursor: pointer;
    }

    .calculator .calc-lt-lbl {
        cursor: pointer;
        transition: .2s ease-in-out;
    }

    .calculator .calc-lt-txt {
        transition: .2s ease-in-out;
    }

    .calculator .calc-lt-lbl:hover .calc-lt-txt {
        color: var(--blue-2);
    }

    .calculator .calc-tabs {
        max-width: calc(1140px - 340px);
    }

    .calculator .calc-tabs-slider {
        max-width: 1640px;
        column-gap: 40px;
    }

    .calculator .calc-tab {
        width: 800px;
    }

    .calculator .calc-tabs-slider.active {
        margin-left: -840px;
    }

    .calculator .calc-no-con .calc-tabs {
        max-width: 1140px;
    }

    .calculator .calc-no-con .calc-tabs-slider {
        max-width: 2320px;
        column-gap: 40px;
    }

    .calculator .calc-no-con .calc-tab {
        width: 1140px;
    }

    .calculator .calc-no-con .calc-tabs-slider.active {
        margin-left: -1180px;
    }

    .calculator .calc-rpopt-lbl {
        cursor: pointer;
        transition: .2s ease-in-out;
    }

    .calculator .calc-rpopt-lbl:hover {
        color: var(--blue-1);
    }

    .lenders .lend-txt {
        max-width: 800px;
    }

    .lenders .lend-con {
        gap: 30px;
    }

    .lenders .lend-itm {
        width: calc((100% / 6) - (150px / 6));
    }

    .news .news-con {
        width: calc(1140px + ((100vw - 1140px) / 2));
        margin-left: calc((100vw - 1140px) / 2);
    }

    .news .news-img {
        height: 200px;
    }

    .options .arrow,
    .news .arrow {
        cursor: pointer;
        transition: .2s ease-in-out;
    }

    .options .arrow svg *,
    .news .arrow svg * {
        transition: .2s ease-in-out;
    }

    .options .arrow:hover,
    .news .arrow:hover {
        background-color: var(--blue-2);
    }

    .options .arrow:hover svg *,
    .news .arrow:hover svg * {
        fill: white;
    }

    .options .opt-itm-link,
    .options .opt-itm-link-txt,
    .options .opt-itm-link-icon,
    .options .opt-itm-link-icon * {
        transition: .2s ease-in-out;
    }

    .options .opt-itm.is-active .opt-itm-link:hover  {
        border-color: var(--orange-1);
    }

    .options .opt-itm-link:hover .opt-itm-link-txt {
        color: var(--orange-1);
    }

    .options .opt-itm-link:hover .opt-itm-link-icon {
        transform: rotate(45deg);
    }

    .options .opt-itm-link:hover .opt-itm-link-icon * {
        stroke: var(--orange-1);
    }

    .faqs .faqs-con {
        margin-top: 60px;
    }

    .faqs .faqs-ques {
        cursor: pointer;
    }

    .faqs .faqs-icon {
        transition: .2s ease-in-out;
    }

    .faqs .faqs-icon .icon * {
        transition: .2s ease-in-out;
    }

    .faqs .faqs-ques:hover .faqs-icon {
        background-color: var(--blue-2);
    }

    .faqs .faqs-ques:hover .faqs-icon .icon * {
        stroke: white;
    }

    .form .form-cbox {
        cursor: pointer;
    }

    .footer .ftr-info {
        margin-top: 40px;
    }

    .footer .ftr-nav {
        column-gap: 20px;
    }

    .footer .ftr-nav-list {
        width: calc((100% / 5) - (80px / 5));
    }

    .footer .ftr-nav-link {
        transition: .2s ease-in-out;
    }

    .footer .ftr-nav-itm:hover {
        border-bottom-color: var(--blue-3);
    }

    .footer .ftr-nav-itm:hover .ftr-nav-link {
        color: white;
    }

    .footer .ftr-btt-link {
        cursor: pointer;
        transition: .2s ease-in-out;
    }

    .footer .ftr-btt-link-icon * {
        transition: .2s ease-in-out;
    }

    .footer .ftr-btt-link:hover {
        background-color: var(--blue-4);
    }

    .footer .ftr-btt-link:hover .ftr-btt-link-icon * {
        stroke: var(--theme-color-1);
    }
}

@media only screen and (min-width: 1320px) {

    .news .arrow {
        position: absolute;
        top: calc(50% - 20px);
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: var(--blue-4);
        border: none;
        border-radius: 100%;
    }

    .news .arrow svg {
        width: 15px;
        height: 15px;
    }

    .news .arrow svg * {
        fill: var(--blue-2);
    }

    .news .arrow.prev {
        left: -60px;
        transform: rotate(180deg);
    }

    .news .arrow.next {
        right: 15px;
    }
}