@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Inter", sans-serif;
}
a {
    text-decoration: none;
}
button {
    font-family: inherit;
}


.skf-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.skf-topbar {
    height: 40px;
    background: #182d4d;
    color: #fff;
}

.skf-topbar-inner {
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.skf-top-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.skf-top-info span {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .2px;
}

.skf-top-info i {
    margin-right: 6px;
    color: #c49a4a;
    font-size: 12px;
}
.skf-top-right {
    display: flex;
    align-items: center;
}

.skf-top-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.skf-top-social a {
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.skf-top-social a:hover {
    color: #c49a4a;
    transform: translateY(-2px);
}
.skf-main-nav {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 3px 15px rgba(0,0,0,.04);
}

.skf-main-nav .navbar {
    height: 110px;
    padding: 0;
}
.skf-logo img {
    display: block;
    width: 210px;
    height: auto;
    max-height: 114px;
    object-fit: contain;
}

.skf-menu {
    height: 100%;
    align-items: center;
    gap: 2px;
}

.skf-menu .nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.skf-menu .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 14px !important;
    color: #272727;
    font-size: 15px;
    font-weight: 500;
    transition: color .25s ease;
}


.skf-menu .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0;
    height: 2px;
    background: #b8862c;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.skf-menu .nav-link:hover,
.skf-menu .nav-link.active {
    color: #b8862c;
}
.skf-menu .dropdown-menu {
    margin-top: 0;
    padding: 8px 0;
    border: none;
    border-radius: 0;
    background: #fff;
    min-width: 210px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.skf-menu .dropdown-item {
    padding: 10px 18px;
    color: #333;
    font-size: 12px;
    transition: all .2s ease;
}

.skf-menu .dropdown-item:hover {
    background: #b8862c;
    color: #fff;
}

.skf-dropdown {
    position: relative !important;
}

.skf-dropdown > .nav-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.skf-dropdown-icon {
    font-size: 12px;
    font-weight: 700;
    color: #272727;
    margin-top: 2px;
    transition: all .25s ease;
}

.skf-dropdown-menu {
    position: absolute;
    top: 50px;
    left: 0;
    width: 235px;
    min-width: 235px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border: 1px solid rgba(24,45,77,.08);
    border-top: 3px solid #b8862c;
    box-shadow: 0 15px 35px rgba(24,45,77,.13);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity .25s ease,
        visibility .25s ease,
        transform .25s ease;
    z-index: 99999;
}

.skf-dropdown-menu li {
    width: 100%;
}

.skf-dropdown-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    color: #263238;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .1px;
    transition:
        color .25s ease,
        background .25s ease,
        padding-left .25s ease;
}


.skf-dropdown-menu li a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 0;
    height: 2px;
    background: #b8862c;
    transform: translateY(-50%);
    transition: width .25s ease;
}

.skf-dropdown-menu li a:hover {
    padding-left: 28px;
    color: #b8862c;
    background: #faf8f3;
}

.skf-dropdown-menu li a:hover::before {
    width: 8px;
}

.skf-nav-apply {
    height: 43px;
    margin-left: 18px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #b8862c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}

.skf-nav-apply i {
    font-size: 14px;
}

.skf-nav-apply:hover {
    background: #202b25;
    color: #fff;
}

.skf-main-nav .navbar-toggler {
    border: none;
    padding: 8px;
    outline: none;
    box-shadow: none;
}

.skf-main-nav .navbar-toggler span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: #202b25;
}


.skf-slider {
    position: relative;
    width: 100%;
    height: 690px;
    margin-top: 116px;
    overflow: hidden;
}

.skf-slider-main {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.skf-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}
.skf-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.skf-slide-1 {
    background-image:
        linear-gradient(90deg,
            rgba(20,29,24,.82) 0%,
            rgba(20,29,24,.65) 35%,
            rgba(20,29,24,.28) 65%,
            rgba(20,29,24,.05) 100%
        ),
        url("../Images/assets/slide-1.jpg");
}


.skf-slide-2 {
    background-image:
        linear-gradient(
            90deg,
            rgba(20,29,24,.82) 0%,
            rgba(20,29,24,.65) 35%,
            rgba(20,29,24,.28) 65%,
            rgba(20,29,24,.05) 100%
        ),
        url("../Images/assets/slide-2.jpg");
}


.skf-slide-3 {
    background-image:
        linear-gradient(
            90deg,
            rgba(20,29,24,.82) 0%,
            rgba(20,29,24,.65) 35%,
            rgba(20,29,24,.28) 65%,
            rgba(20,29,24,.05) 100%
        ),
        url("../Images/assets/slide-3.jpg");
}


.skf-slide-content {
    max-width: 700px;
    padding-top: 25px;
}


.skf-slide-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #d0a858;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}


.skf-slide-label span {
    display: block;
    width: 35px;
    height: 1px;
    background: #d0a858;
}

.skf-slide-content h1 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -.8px;
}


.skf-slide-content h1 strong {
    display: block;
    color: #d0a858;
    font-weight: 700;
}


.skf-slide-content p {
    max-width: 530px;
    margin: 0 0 32px;
    color: rgba(255,255,255,.82);
    font-size: 14px;
    line-height: 1.8;
}

.skf-slide-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.skf-slide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 13px 21px;
    background: #b8862c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: all .3s ease;
}


.skf-slide-btn:hover {
    background: #fff;
    color: #202b25;
}

.skf-slide-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #c49a4a;
    padding-bottom: 5px;
    transition: all .25s ease;
}


.skf-slide-link i {
    margin-left: 8px;
    color: #d0a858;
}


.skf-slide-link:hover {
    color: #d0a858;
}

.skf-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c99a3a;
    background: rgba(0,0,0,.15);
    color: #fff;
    z-index: 30;
    cursor: pointer;
    transition: all .3s ease;
}


.skf-prev {
    left: 25px;
}

.skf-next {
    right: 25px;
}


.skf-arrow:hover {
    background: #b8862c;
    border-color: #b8862c;
}

.skf-slider-bottom {
    position: absolute;
    left: 0;
    bottom: 28px;
    width: 100%;
    z-index: 20;
}


.skf-slider-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skf-scroll-text {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.7);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 2px;
}


.skf-scroll-text span {
    display: block;
    width: 30px;
    height: 1px;
    background: #c49a4a;
}

.skf-slider-number {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}


.skf-slider-number strong {
    color: #d0a858;
    font-size: 18px;
    font-weight: 600;
}


.skf-slider-number span {
    display: block;
    width: 45px;
    height: 1px;
    background: rgba(255,255,255,.45);
}


.skf-slider-number small {
    font-size: 11px;
    color: rgba(255,255,255,.7);
}

@media (max-width: 991px) {
    .skf-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 5px 0;
        border: none;
        border-left: 2px solid #b8862c;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .skf-dropdown:hover .skf-dropdown-menu {
        display: none;
    }

    .skf-dropdown-menu li a {
        padding: 10px 18px;
        font-size: 13px;
    }

}
@media (min-width: 992px) {

    .skf-dropdown:hover .skf-dropdown-icon {
        color: #b8862c;
        transform: rotate(180deg);
    }

}

@media (min-width: 992px) {

    .skf-dropdown:hover .skf-dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

}


@media (max-width: 1200px) {

    .skf-menu .nav-link {
        padding: 0 9px !important;
    }

    .skf-menu .nav-link::after {
        left: 9px;
        right: 9px;
    }

    .skf-nav-apply {
        margin-left: 10px;
        padding: 0 13px;
    }

    .skf-slide-content h1 {
        font-size: 52px;
    }

}

@media (max-width: 991px) {

    .skf-topbar {
        display: none;
    }

    .skf-main-nav {
        height: 76px;
    }

    .skf-main-nav .navbar {
        height: 76px;
    }

    .skf-logo img {
        width: 145px;
    }


    .skf-main-nav .navbar-collapse {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px 20px 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,.1);
    }


    .skf-menu {
        height: auto;
        align-items: flex-start;
        gap: 0;
    }

    .skf-menu .nav-item {
        width: 100%;
        height: auto;
    }


    .skf-menu .nav-link {
        width: 100%;
        height: auto;
        padding: 13px 5px !important;
    }


    .skf-menu .nav-link::after {
        display: none;
    }


    .skf-menu .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border-left: 2px solid #b8862c;
        padding-left: 5px;
    }


    .skf-nav-apply {
        margin: 12px 0 0;
        width: 135px;
        height: 42px;
    }


    .skf-slider {
        margin-top: 76px;
        height: 600px;
    }


    .skf-slide {
        height: 600px;
    }


    .skf-slide-content {
        padding: 20px 50px;
    }


    .skf-slide-content h1 {
        font-size: 45px;
    }


    .skf-arrow {
        width: 38px;
        height: 38px;
    }

}

@media (max-width: 575px) {

    .skf-main-nav {
        height: 100px;
    }

    .skf-main-nav .navbar {
        height: 100px;
    }

    .skf-logo img {
        width: 180px;
    }


    .skf-main-nav .navbar-collapse {
        top: 100px;
    }


    .skf-slider {
        margin-top: 68px;

        height: 570px;
    }


    .skf-slide {
        height: 570px;

        background-position: center center;
    }


    .skf-slide-content {
        padding: 20px 35px;
    }


    .skf-slide-label {
        font-size: 8px;

        letter-spacing: 2px;

        margin-bottom: 18px;
    }


    .skf-slide-label span {
        width: 25px;
    }


    .skf-slide-content h1 {
        font-size: 35px;

        line-height: 1.12;

        margin-bottom: 20px;
    }


    .skf-slide-content p {
        font-size: 12px;

        line-height: 1.7;

        margin-bottom: 25px;
    }


    .skf-slide-actions {
        gap: 18px;
        flex-wrap: wrap;
    }


    .skf-slide-btn {
        padding: 11px 15px;
    }


    .skf-arrow {
        width: 34px;
        height: 34px;

        top: auto;
        bottom: 55px;

        transform: none;
    }


    .skf-prev {
        left: 20px;
    }


    .skf-next {
        right: 20px;
    }


    .skf-slider-bottom {
        bottom: 20px;
    }


    .skf-scroll-text {
        display: none;
    }


    .skf-slider-bottom-inner {
        justify-content: center;
    }

}

/* CTA::Start */
.cta-wrap{
    margin-top: -60px;
    z-index: 3;
    position: relative;
    background-color: #b8862c;
}
.cta-wrap-bottom{
    z-index: 5;
    position: relative;
    background-color: #b8862c;
}
.cta-content{
    padding: 40px 40px;
}
.cta-left{
    margin-left: 30px;
}
.cta-left h3{
    color: #fff;
    margin-bottom: 0;
}
.cta-left p{
    color: #fff;
    font-size: 16px;
}
.cta-align{
    display: flex;
   align-items: center;
}

@media (max-width: 986px){
    .cta-content{
        padding: 40px 0px !important;
    }
}
.left-graphic{
    position: absolute;
    left: 0;
    top: -150px;
    z-index: 1;
}
.left-graphic img{
    width: 100%;
}
.ct-wrap{
    position: relative;
}
.cta-btn{
    border: 2px solid #ffff;
    background-color: #b8862c;
    padding: 8px 16px;
    color: #fff;
}
.cta-right{
    text-align: end;
}
/* CTA::End */

/* Vision Mission Aim::Start */
.skf-vma-section{
    padding: 100px 0;
    background: #10243d;
}
.skf-vma-heading{
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.skf-vma-label{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.skf-vma-label span{
    width: 32px;
    height: 1px;
    background: #b8862c;
}

.skf-vma-label p{
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-vma-heading h2{
    margin: 0 0 20px;
    color: #fff !important;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.skf-vma-heading h2 em{
    color: #b8862c !important;
    font-weight: 600;
    font-style: normal;
}

.skf-vma-heading > p{
    max-width: 680px;
    margin: 0 auto;
    color: rgba(255,255,255,0.75) !important;
    font-size: 15px;
    line-height: 1.8;
}
.skf-vma-card{
    position: relative;
    height: 100%;
    min-height: 390px;
    padding: 25px 27px 30px;
    background: #10243d;
    border: 1px solid rgba(184,134,44,0.55);
    overflow: hidden;
    transition: all .35s ease;
}
.skf-vma-card-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.skf-vma-icon{
    width: 70px;
    height: 70px;
    border: 2px solid #b8862c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b8862c;
    font-size: 25px;
    transition: all .35s ease;
}
.skf-vma-number{
    color: rgba(255,255,255,.45);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all .35s ease;
}
.skf-vma-card-content{
    margin-top: 42px;
}

.skf-vma-card h3{
    margin: 0 0 15px;
    color: #fff !important;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 500;
    transition: all .35s ease;
}
.skf-vma-card p{
    margin: 0;
    color: rgba(255,255,255,.78) !important;
    font-size: 14px;
    line-height: 1.8;
    transition: all .35s ease;
}
.skf-vma-arrow{
    position: absolute;
    right: 27px;
    bottom: 27px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(184,134,44,.7);
    color: #b8862c;

    transition: all .35s ease;
}
.skf-vma-card:hover{
    background: #b8862c;
    border-color: #b8862c;
    transform: translateY(-7px);
}

.skf-vma-card:hover .skf-vma-icon{
    background: #10243d;
    border-color: #10243d;
    color: #fff;
}

.skf-vma-card:hover .skf-vma-number{
    color: rgba(255,255,255,.8);
}

.skf-vma-card:hover h3{
    color: #fff !important;
}

.skf-vma-card:hover p{
    color: rgba(255,255,255,.95) !important;
}

.skf-vma-card:hover .skf-vma-arrow{
    background: #10243d;
    border-color: #10243d;
    color: #fff;
}
@media (max-width: 991px){

    .skf-vma-section{
        padding: 80px 0;
    }

    .skf-vma-heading h2{
        font-size: 38px;
    }

    .skf-vma-card{
        min-height: 360px;
    }

}
@media (max-width: 767px){

    .skf-vma-section{
        padding: 65px 0;
    }

    .skf-vma-heading{
        margin-bottom: 40px;
    }

    .skf-vma-heading h2{
        font-size: 32px;
    }

    .skf-vma-heading > p{
        font-size: 14px;
    }

    .skf-vma-card{
        min-height: 350px;
        padding: 24px;
    }

    .skf-vma-icon{
        width: 62px;
        height: 62px;
        font-size: 22px;
    }

    .skf-vma-card-content{
        margin-top: 35px;
    }

    .skf-vma-card h3{
        font-size: 23px;
    }

}

/* Vision Mission Aim::End */


/* Why Choose Us::Start */
.skf-why-section{
    padding: 100px 0;
    background: #fff;
}
.skf-why-image{
    position: relative;
    padding-right: 35px;
}
.skf-why-image img{
    width: 100%;
    object-fit: cover;
    display: block;
}
.skf-why-image::after{
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -12px;
    bottom: -12px;
    border-left: 3px solid #b8862c;
    border-bottom: 3px solid #b8862c;
    z-index: 1;
}
.skf-why-badge{
    position: absolute;
    right: 0;
    bottom: 35px;
    width: 120px;
    height: 120px;
    background: #10243d;
    border: 5px solid #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.skf-why-badge span{
    color: rgba(255,255,255,.65);
    font-size: 9px;
    letter-spacing: 2px;
}

.skf-why-badge strong{
    color: #b8862c;
    font-size: 18px;
    letter-spacing: 1px;
    margin: 5px 0;
}
.skf-why-content{
    padding-left: 45px;
}

.skf-section-label{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.skf-section-label span{
    width: 35px;
    height: 1px;
    background: #b8862c;
}

.skf-section-label p{
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
}
.skf-why-content h2{
    color: #10243d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
    margin: 0 0 20px;
}
.skf-why-content h2 em{
    color: #b8862c;
    font-weight: 400;
    font-style: normal;
}
.skf-why-intro{
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 35px;
}
.skf-why-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 35px;
    border-top: 1px solid #e5e1d8;
}
.skf-why-item{
    display: flex;
    gap: 17px;
    padding: 25px 0;
    border-bottom: 1px solid #e5e1d8;
}
.skf-why-icon{
    flex: 0 0 48px;
    width: 48px;
    height: 48px;

    border: 1px solid #b8862c;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #b8862c;
    font-size: 19px;

    transition: all .3s ease;
}
.skf-why-item:hover .skf-why-icon{
    background: #b8862c;
    color: #fff;
}
.skf-why-item h3{
    color: #10243d;
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 7px;
}


.skf-why-item p{
    color: #777;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}
@media (max-width: 991px){

    .skf-why-section{
        padding: 80px 0;
    }

    .skf-why-image{
        padding-right: 25px;
        margin-bottom: 60px;
    }

    .skf-why-image img{
        height: 500px;
    }

    .skf-why-content{
        padding-left: 0;
    }

}
@media (max-width: 767px){

    .skf-why-section{
        padding: 60px 0;
    }

    .skf-why-image{
        padding-right: 15px;
        margin-bottom: 55px;
    }

    .skf-why-image img{
        height: 420px;
    }

    .skf-why-badge{
        width: 120px;
        height: 120px;
        bottom: 25px;
    }

    .skf-why-badge strong{
        font-size: 15px;
    }

    .skf-why-content h2{
        font-size: 32px;
    }

    .skf-why-list{
        grid-template-columns: 1fr;
    }

    .skf-why-item{
        padding: 20px 0;
    }

}
/* Why Choose Us::End */


/* Product::Start */
.skf-home-products {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
    background-image:  linear-gradient(115deg, #1b478b87, #182d4dcc, #1419208c), url(../Images/assets/product-page/Product-main.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.skf-home-products::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: -280px;
    right: -180px;
    border: 1px solid rgba(184, 134, 44, 0.25);
    border-radius: 50%;
}

.skf-home-products::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -190px;
    left: -150px;
    border: 1px solid rgba(184, 134, 44, 0.18);
    border-radius: 50%;
}

.skf-products-head {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.skf-products-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.skf-products-label span {
    width: 32px;
    height: 2px;
    background: #c99a3a;
}

.skf-products-label p {
    margin: 0;
    color: #d1a84e;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-products-head h2 {
    margin: 0;
    color: #fff;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;
}

.skf-products-head h2 em {
    color: #d0a246;
    font-style: normal;
}

.skf-products-head > p {
    max-width: 650px;
    margin: 18px auto 0;
    color: rgba(255,255,255,0.68);
    font-size: 14px;
    line-height: 1.8;
}

.skf-product-preview {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid rgba(255,255,255,0.16);
    border-left: 1px solid rgba(255,255,255,0.16);
}


.skf-preview-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 155px;
    padding: 25px 30px;
    border-right: 1px solid rgba(255,255,255,0.16);
    border-bottom: 1px solid rgba(255,255,255,0.16);
    text-decoration: none;
    background: rgba(255,255,255,0.035);
    transition: all .35s ease;
}

.skf-preview-item:hover {
    background: rgba(184,134,44,0.14);
}

.skf-preview-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 22px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(201,154,58,0.35);
    border-radius: 50%;
    transition: all .35s ease;
}

.skf-preview-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: transform .35s ease;
}

.skf-preview-item:hover .skf-preview-icon {
    background: #c99a3a;
    border-color: #c99a3a;
    transform: translateY(-3px);
}

.skf-preview-item:hover .skf-preview-icon img {
    transform: scale(1.08);
}

.skf-preview-item div:nth-child(2) span {
    display: block;
    margin-bottom: 4px;
    color: #c99a3a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.skf-preview-item h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    transition: color .3s ease;
}

.skf-preview-item:hover h3 {
    color: #d5aa50;
}

.skf-preview-item p {
    margin: 0;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    line-height: 1.65;
}


.skf-preview-item > i {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c99a3a;
    border: 1px solid rgba(201,154,58,0.35);
    border-radius: 50%;
    font-size: 15px;
    font-style: normal;
    transition: all .3s ease;
}

.skf-preview-item:hover > i {
    background: #c99a3a;
    color: #fff;
    transform: translate(3px,-3px);
}

.skf-products-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 38px;
}

.skf-products-footer a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid #c99a3a;
    padding-bottom: 6px;
    transition: all .3s ease;
}

.skf-products-footer a span {
    color: #c99a3a;
    font-size: 18px;
    transition: transform .3s ease;
}

.skf-products-footer a:hover {
    color: #d1a84e;
}

.skf-products-footer a:hover span {
    transform: translateX(5px);
}

@media (max-width: 767px) {

    .skf-home-products {
        padding: 65px 0;
    }

    .skf-products-head h2 {
        font-size: 32px;
    }

    .skf-products-head > p {
        font-size: 13px;
    }

    .skf-product-preview {
        grid-template-columns: 1fr;
    }

    .skf-preview-item {
        min-height: 125px;
        padding: 20px;
    }

    .skf-preview-icon {
        width: 58px;
        height: 58px;

        margin-right: 16px;
    }

    .skf-preview-icon img {
        width: 32px;
        height: 32px;
    }

}

@media (max-width: 480px) {

    .skf-products-head h2 {
        font-size: 28px;
    }

    .skf-preview-item h3 {
        font-size: 17px;
    }

    .skf-preview-item p {
        font-size: 11px;
    }

}

/* Product::End */

/* Know Us::Start */
.know-wrap {
    padding: 100px 0;
    background: #faf9f6;
    overflow: hidden;
}
.know-row {
    align-items: center;
}
.know-image-wrap {
    position: relative;
    padding-right: 45px;
}
.know-image {
    position: relative;
    overflow: hidden;
    height: 560px;
}
.know-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.know-image:hover img {
    transform: scale(1.04);
}
.know-image::after {
    content: "";
    position: absolute;
    top: 25px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid #b8862c;
    z-index: 0;
}
.know-image img {
    position: relative;
    z-index: 1;
}
.know-year {
    position: absolute;
    left: -35px;
    bottom: 35px;
    z-index: 3;
    width: 125px;
    height: 125px;
    background: #b8862c;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}
.know-year span {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.know-year strong {
    font-size: 30px;
    line-height: 1.1;
    margin-top: 5px;
}
.know-content-wrap {
    padding-left: 35px;
}
.know-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.know-label span {
    width: 40px;
    height: 2px;
    background: #b8862c;
}
.know-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.know-content-wrap h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #182d4d;
    font-weight: 600;
    margin-bottom: 18px;
}
.know-content-wrap h2 em {
    color: #b8862c;
    font-style: normal;
}
.know-subtitle {
    font-size: 21px;
    color: #39362f;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
}

.know-stats {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 30px;
    padding: 22px 0;
    border-top: 1px solid #ddd8cc;
    border-bottom: 1px solid #ddd8cc;
}
.know-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}
.know-stat strong {
    font-size: 30px;
    color: #b8862c;
    line-height: 1;
}
.know-stat span {
    font-size: 13px;
    line-height: 1.4;
    color: #6f6a5f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.know-divider {
    width: 1px;
    height: 40px;
    background: #d8d2c6;
}
.know-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 13px 22px;
    border: 1px solid #b8862c;
    color: #b8862c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.know-btn i {
    transition: transform 0.3s ease;
}
.know-btn:hover {
    background: #b8862c;
    color: #fff;
}
.know-btn:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {

    .know-wrap {
        padding: 80px 0;
    }

    .know-image-wrap {
        padding-right: 25px;
        margin-bottom: 60px;
    }

    .know-content-wrap {
        padding-left: 0;
    }

    .know-content-wrap h2 {
        font-size: 42px;
    }

    .know-image {
        height: 500px;
    }

    .know-year {
        left: -15px;
    }
}

@media (max-width: 575px) {
    .know-wrap {
        padding: 60px 0;
    }

    .know-image-wrap {
        padding-right: 15px;
        padding-left: 15px;
        margin-bottom: 50px;
    }
    .know-image {
        height: 380px;
    }

    .know-image::after {
        top: 15px;
        right: -12px;
    }

    .know-year {
        left: 0;
        bottom: 20px;
        width: 105px;
        height: 105px;
    }

    .know-year strong {
        font-size: 25px;
    }

    .know-content-wrap {
        padding: 0 10px;
    }

    .know-content-wrap h2 {
        font-size: 36px;
    }

    .know-subtitle {
        font-size: 18px;
    }

    .know-stats {
        gap: 15px;
    }

    .know-stat strong {
        font-size: 25px;
    }

    .know-divider {
        height: 35px;
    }
}

/* Know Us::End */

/* Services::Start */
.home-services {
    padding: 100px 0;
}
.home-services-head {
    text-align: center;
    margin-bottom: 55px;
}

.home-services-label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.home-services-label span {
    width: 38px;
    height: 2px;
    background: #b8862c;
}

.home-services-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.home-services-head h2 {
    margin: 0;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.home-services-head h2 em {
    color: #b8862c;
    font-style: normal;
}

.home-services-intro {
    max-width: 650px;
    margin: 20px auto 0;
    color: #6f6a5f;
    font-size: 15px;
    line-height: 1.8;
}
.sk-service-card {
    position: relative;
    height: 100%;
    min-height: 310px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e4dfd5;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: all 0.3s ease;
}
.sk-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: #b8862c;
    transition: width 0.35s ease;
}
.sk-service-card:hover::before {
    width: 100%;
}

.sk-service-card:hover {
    border-color: #d2c5a9;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 35, 31, 0.07);
}
.sk-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sk-card-number {
    color: #b8862c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.sk-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: #f7f0e1;
    color: #b8862c;

    font-size: 19px;

    transition: all 0.3s ease;
}

.sk-service-card:hover .sk-card-icon {
    background: #b8862c;
    color: #ffffff;
}
.sk-card-content {
    margin-top: 38px;
}

.sk-card-content h3 {
    margin: 0 0 12px;
    color: #182d4d;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.sk-card-content p {
    max-width: 330px;
    margin: 0;
    color: #77736b;
    font-size: 14px;
    line-height: 1.75;
}
.sk-card-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-top: auto;
    padding-top: 25px;

    width: fit-content;

    color: #b8862c;
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
}

.sk-card-link i {
    transition: transform 0.3s ease;
}

.sk-card-link:hover {
    color: #25231f;
}

.sk-card-link:hover i {
    transform: translateX(5px);
}
.sk-services-bottom {
    margin-top: 35px;
    padding-top: 25px;

    border-top: 1px solid #ddd8cc;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sk-services-bottom span {
    color: #6f6a5f;
    font-size: 14px;
}

.sk-services-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 3px;
    color: #182d4d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid #b8862c;
}

.sk-services-bottom a i {
    color: #b8862c;
    transition: transform 0.3s ease;
}

.sk-services-bottom a:hover {
    color: #b8862c;
}

.sk-services-bottom a:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {

    .home-services {
        padding: 80px 0;
    }

    .home-services-head h2 {
        font-size: 40px;
    }

    .sk-service-card {
        min-height: 290px;
    }

}
@media (max-width: 575px) {

    .home-services {
        padding: 60px 0;
    }

    .home-services-head {
        margin-bottom: 40px;
    }

    .home-services-head h2 {
        font-size: 34px;
    }

    .home-services-intro {
        padding: 0 10px;
        font-size: 14px;
    }

    .sk-service-card {
        min-height: 270px;
        padding: 25px;
    }

    .sk-card-content {
        margin-top: 30px;
    }

    .sk-card-content h3 {
        font-size: 19px;
    }

}
/* Main-services::End */

/* Flow Chart::Start */
.flow-wrap{
    padding: 80px 0;
}
@media (max-width: 998px){
    .flow-wrap{
        padding: 40px 0;
    }
}
.flo-wrap-chart{
    background-image: url(../Images/assets/flowchart-bg.jpg);
    background-size: cover;
    background-position: center;
}
.flo-wrap-chart h2{
    color: #ffff !important;
}
.fl-wrap-top{
    padding: 40px 0;
}
.lf{
    padding: 250px 0px 0px 0;
}
.lf-main{
    width: 100px;
    background-color: #ffffff;
    color: #000;
    border: 10px solid #c99a3a;
    text-align: center;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin: auto;
    position: relative;
    box-shadow: rgba(50, 40, 15, 0.25) 0px 2px 5px -1px, rgba(50, 40, 15, 0.3) 0px 1px 3px -1px;
    z-index: 1;
}
.lf-main::after{
    content: " ";
    height: 40px;
    width: 2px;
    top: 89px;
    position: absolute;
    background-color: #dfd6c3;
    overflow: hidden;
}
.bottom-l{
    margin-top: -308px;
}
.lf-main::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    top: 128px;
    background-color: #ffffff;
    border: 5px solid #c99a3a;
    overflow: hidden;
    z-index: 1;
}
.bottom-lf{
    width: 100px;
    background-color: #ffffff;
    color: #000;
    border: 10px solid #c99a3a;
    text-align: center;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    margin: auto;
    position: relative;
    box-shadow: rgba(50, 40, 15, 0.25) 0px 2px 5px -1px, rgba(50, 40, 15, 0.3) 0px 1px 3px -1px;
    z-index: 1;
}
.bottom-lf::after{
    content: " ";
    height: 40px;
    width: 2px;
    bottom: 89px;
    position: absolute;
    background-color: #dfd6c3;
    overflow: hidden;
}
.bottom-lf::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    bottom: 128px;
    background-color: #ffffff;
    border: 5px solid #c99a3a;
    overflow: hidden;
    z-index: 1;
}

@media(max-width: 1400px){
    .bottom-l{
      margin-top : -311px;
    }
}
@media(max-width:1198px){
    .bottom-l{
        margin: 0 !important;
    }
    .bottom-l{
        display: flex;
        flex-direction: column-reverse;
    }
    .lf-main::after{
        display: none;
    }
    .lf-main::before{
        display: none;
    }
    .bottom-lf::after{
        display: none;
    }
    .bottom-lf::before{
        display: none;
    }
    .lf-style{
        margin-top: 0;
        flex-direction: column;
        align-items: center;
    }
    .lf-line{
        display: none;
    }
    .lf{
        padding: 0px 0;
    }
}
.lf-line{
    width: 100%;
    height: 4px;
    background-color: #dfd6c3;
}
.lf-style{
    display: flex;
    justify-content: space-evenly;
    list-style: none;
    margin-top: 62px !important;
    padding-left: 0;
}
.lf-style p{
    font-size: 14px;
}
.lf-style li{
    max-width: 259px;
    width: 100%;
    text-align: center;
    color: #fff;
}
.flow-head h2{
    font-size: 40px;
    color: #b8862c;
    text-align: center;
    font-weight: 700;
}
.app-icon{
    background: #fffaf0;
    background: linear-gradient(to right, #fffaf0, #c99a3a);
    text-align: center;
    margin-top: 30px;
    padding: 10px 0;
}
.app-icon img{
    width: 70px;
    transition: all 0.4s ease-in-out;
}
.aplications-wrap{
    text-align: center;
    box-shadow: rgba(42, 31, 10, 0.1) 0px 1px 2px 0px;
    position: relative;
    margin-top: 80px;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
}
.aplications-wrap h2{
    font-size: 22px;
    font-weight: 700;
}
.aplications-wrap:hover {
    transform: translateY(-14px);
}

.app-align{
    margin-top: 80px;
}

.app-text{
    margin-top: 10px;
    padding: 30px 10px;
    font-size: 14px;
}
.app-no{
    background-color: #304866;
    color: #fff;
    margin: auto;
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: static;
    transform: translate(-5%, -50%);
}
.app-no h2{
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

/* Flow Chart::End */

/* Whychoose Us::Start */
.whychoose-wrap{
    padding: 80px 0;
    background-color: #faf7ef;
    background-size: cover;
    background-position: center,center;
}
.whychoose-head h2{
    font-size: 40px;
    color: #b8862c;
    font-weight: 700;
}
.why-choose-image img{
    width: 100%;
}
.whychoose-content h6{
    font-size: 15px;
    line-height: 25px;
    letter-spacing: 0.6px;
    font-weight: 500;
    text-transform: capitalize;
}
.whychoose-content p{
    font-size: 16px;
    color: #6f6a5f;
    line-height: 22px;
    letter-spacing: 1px;
}
.why-bottom p{
    letter-spacing: 1px;
    font-size: 16px;
    color: #6f6a5f;
}
.why-bottom{
    margin-bottom: 50px;
}
.why-li li h5{
    font-size: 18px;
}
.why-li{
    padding-left: 0;
}
.why-li li{
    list-style: none;
    display: flex;
}
.why-li li p{
    font-size: 14px;
    color: #6f6a5f;
}
.why-li li i{
    color: #b8862c;
}
/* Whychoose Us::End */

/*Home Loan::Start*/
.skf-loan-intro {
    padding: 95px 0;
    background: #fff;
}

.skf-loan-intro-image {
    position: relative;
    padding-right: 35px;
}

.skf-loan-intro-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

.skf-loan-image-tag {
    position: absolute;
    right: 0;
    bottom: 25px;
    padding: 18px 22px;
    background: #182d4d;
    color: #fff;
    border: 5px solid #fff;
}

.skf-loan-image-tag span {
    display: block;
    margin-bottom: 5px;
    color: #d0a858;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2px;
}

.skf-loan-image-tag strong {
    font-size: 15px;
    font-weight: 500;
}

.skf-loan-intro-content {
    padding-left: 45px;
}

.skf-section-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
}

.skf-section-label span {
    width: 28px;
    height: 2px;
    background: #b8862c;
}

.skf-section-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-loan-intro-content h2 {
    margin: 0 0 23px;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.skf-loan-intro-content h2 em {
    color: #b8862c;
    font-style: normal;
    font-weight: 700;
}
.skf-loan-intro-content > p {
    max-width: 570px;
    margin: 0 0 16px;
    color: #707070;
    font-size: 14px;
    line-height: 1.85;
}

.skf-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    padding: 13px 22px;
    border: 1px solid #b8862c;
    color: #b8862c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.skf-text-btn i {
    transition: transform 0.3s ease;
}
.skf-text-btn:hover {
    background: #b8862c;
    color: #fff;
}
.skf-text-btn:hover i {
    transform: translateX(5px);
}
@media (max-width: 991px) {
.skf-loan-intro-content{
    padding-top:60px;
    padding-left:0
}
.skf-loan-intro{
    padding:45px 0;
}
}

/*Home Loan::End*/


/* Calculator::Start */
.calculator-wrap {
    padding: 75px 0;
    background-color: #f8f6f1;
}
.calc-left {
    padding: 20px 45px 20px 0;
}
.calc-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 15px;
    border-bottom: 1px solid #ddd7cc;
}

.calc-top h2 {
    margin: 0;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 600;
}

.blue-line {
    width: 70px;
    height: 3px;
    background-color: #b8862c;
}

.calc-left p {
    margin-bottom: 15px;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
}

.calc-left .calc-intro {
    margin-top: 30px;
    margin-bottom: 12px;
    color: #444;
    font-size: 19px;
    line-height: 1.5;
    font-weight: 600;
}


.right-cal-wrap {
    position: relative;
    margin: 0;
    background-color: #fff;
    border: 1px solid #e1ddd5;
    box-shadow:
        0 8px 25px rgba(42, 31, 10, 0.08);
}

.calc-right {
    position: relative;
    padding: 32px 35px 35px;
}
.calc-heading {
    text-align: left;
}
.calc-heading h4 {
    margin: 0 0 5px;
    color: #182d4d;
    font-size: 23px;
    font-weight: 700;
}

.calc-heading p {
    margin: 0;
    color: #999;
    font-size: 12px;
}

.calc-line {
    width: 45px;
    height: 3px;
    margin: 17px 0 18px;
    background-color: #b8862c;
}

.calc-input {
    padding: 7px 0;
}

.calc-input p {
    margin: 0 0 7px;
    color: #555;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

.calc-input input {
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    color: #444;
    background-color: #faf9f6;
    border: 1px solid #ddd8cf;
    border-radius: 3px;
    outline: none;
    font-size: 13px;
    transition: all 0.2s ease;
}

.calc-input input:focus {
    border-color: #b8862c;
    background-color: #fff;
}

.l-type {
    width: 100%;
}

.select-loan {
    width: 100%;
    height: 42px;
    padding: 7px 12px;
    color: #555;
    background-color: #faf9f6;
    border: 1px solid #ddd8cf;
    border-radius: 3px;
    outline: none;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.select-loan:focus {
    border-color: #b8862c;
    background-color: #fff;
}

.irs--round .irs-line {
    top: 36px;
    height: 4px;
    background-color: #ddd7ca !important;
    border-radius: 4px;
}

.irs--round .irs-bar {
    top: 36px;
    height: 4px;
    background-color: #b8862c !important;
}

.irs--round .irs-handle {
    top: 30px;
    width: 15px;
    height: 15px;
    border: 2px solid #b8862c;
    background-color: #fff;
    box-shadow: none;
}

.calc-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
    padding: 15px;
    background-color: #f7f3ea;
    border-top: 2px solid #b8862c;
}

.calc-result-box {
    padding-right: 12px;
}

.calc-result-box:first-child {
    border-right: 1px solid #ddd3c2;
}

.calc-result-box p {
    margin: 0 0 6px;
    color: #777;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 500;
}

.calc-result-box input {
    width: 100%;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
    color: #9a7024;
    font-size: 17px;
    font-weight: 700;
}

.apply-btn {
    margin-top: 20px;
    text-align: right;
}

.app-btn {
    padding: 9px 20px;
    border: none;
    border-radius: 3px;
    background-color: #b8862c;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.app-btn:hover {
    background-color: #292929;
    color: #fff;
}

.apply-btn a {
    text-decoration: none;
}
@media (max-width: 991px) {

    .calculator-wrap {
        padding: 60px 0;
    }

    .calc-left {
        padding: 0 0 35px;
    }

    .right-cal-wrap {
        margin-top: 10px;
    }

}
@media (max-width: 767px) {

    .calculator-wrap {
        padding: 50px 0;
    }

    .calc-left {
        padding: 0 0 30px;
    }

    .calc-top h2 {
        font-size: 32px;
    }

    .calc-left .calc-intro {
        margin-top: 25px;
        font-size: 17px;
    }

    .calc-left p {
        font-size: 13px;
    }

    .calc-right {
        padding: 25px 20px 30px;
    }

    .calc-heading h4 {
        font-size: 21px;
    }

    .calc-results {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .calc-result-box {
        padding: 0;
    }

    .calc-result-box:first-child {
        padding-bottom: 12px;
        border-right: none;
        border-bottom: 1px solid #ddd3c2;
    }

    .apply-btn {
        text-align: center;
    }

}
@media (max-width: 480px) {

    .calculator-wrap {
        padding: 40px 0;
    }

    .calc-top h2 {
        font-size: 28px;
    }

    .blue-line {
        width: 50px;
    }

    .calc-right {
        padding: 22px 16px 25px;
    }

}
/* Calculator::End */


/*Blog Main Page::Start*/
.skf-blog-intro {
    padding: 90px 0;
    background: #f8f6f1;
}
.skf-blog-intro-image {
    position: relative;
    height: 420px;
    padding: 0 25px 25px 0;
}
/*.skf-blog-intro-image::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 85%;
    height: 85%;
    border: 1px solid #b8862c;
    z-index: 0;
}*/
.skf-blog-intro-image img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
}
.skf-blog-intro-tag {
    position: absolute;
    right:-20px;
    bottom:40px;
    z-index: 2;
    padding: 16px 20px;
    background: #182d4d;
    border: 5px solid #fff;
}
.skf-blog-intro-tag span {
    display: block;
    margin-bottom: 5px;
    color: #b8862c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.skf-blog-intro-tag strong {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}
.skf-blog-intro-content {
    padding-left: 55px;
    max-width: 620px;
}
.skf-blog-intro-content .skf-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.skf-blog-intro-content .skf-section-label span {
    width: 32px;
    height: 2px;
    background: #b8862c;
}

.skf-blog-intro-content .skf-section-label p {
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.skf-blog-intro-content h1 {
    margin: 0 0 22px;
    color: #182d4d;
    font-size: 43px;
    line-height: 1.18;
    font-weight: 700;
}

.skf-blog-intro-content h1 em {
    color: #b8862c;
    font-style: normal;
}

.skf-blog-intro-content > p {
    margin: 0 0 14px;
    color: #707070;
    font-size: 13px;
    line-height: 1.85;
}

.skf-blog-intro-content .skf-text-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: #182d4d;
    font-size: 11px;
    font-weight: 600;
    border-bottom: 1px solid #b8862c;
    padding-bottom: 7px;
    transition: all .25s ease;
}

.skf-blog-intro-content .skf-text-btn i {
    color: #b8862c;
    transition: transform .25s ease;
}

.skf-blog-intro-content .skf-text-btn:hover {
    color: #b8862c;
}

.skf-blog-intro-content .skf-text-btn:hover i {
    transform: translateY(3px);
}

@media (max-width: 991px) {

    .skf-blog-intro {
        padding: 70px 0;
    }

    .skf-blog-intro-content {
        padding-left: 30px;
    }

    .skf-blog-intro-content h1 {
        font-size: 36px;
    }

    .skf-blog-intro-image {
        height: 380px;
    }

}

@media (max-width: 767px) {

    .skf-blog-intro {
        padding: 60px 0;
    }

    .skf-blog-intro-image {
        height: 300px;
        padding: 0 15px 15px 0;
        margin-bottom: 45px;
    }

    .skf-blog-intro-tag {
        right: 2px;
        bottom: 31px;
    }

    .skf-blog-intro-content {
        padding-left: 0;
    }

    .skf-blog-intro-content h1 {
        font-size: 30px;
    }

    .skf-blog-intro-content > p {
        font-size: 12px;
        line-height: 1.75;
    }

}
@media (max-width: 480px) {

    .skf-blog-intro-image {
        height: 260px;
    }

    .skf-blog-intro-content h1 {
        font-size: 27px;
    }

    .skf-blog-intro-tag {
        padding: 13px 15px;
    }

    .skf-blog-intro-tag strong {
        font-size: 11px;
    }

}
/*Blog Main Page::End*/
.skf-blog-section{
    padding: 95px 0;
}

.skf-blog-heading{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 45px;
}

.skf-blog-label{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.skf-blog-label span{
    width: 32px;
    height: 1px;
    background: #b8862c;
}

.skf-blog-label p{
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-blog-heading h2{
    margin: 0;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}

.skf-blog-heading h2 em{
    color: #b8862c;
    font-style: normal;
    font-weight: 600;
}

.skf-blog-view{
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 3px;
    color: #182d4d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #b8862c;
    transition: all .3s ease;
}

.skf-blog-view i{
    color: #b8862c;
    transition: transform .3s ease;
}

.skf-blog-view:hover{
    color: #b8862c;
}

.skf-blog-view:hover i{
    transform: translate(3px,-3px);
}

.skf-blog-card{
    display: block;
    height: 100%;
    background: #fff;
    text-decoration: none;
    border: 1px solid #e7e1d6;
    transition: all .35s ease;
}

.skf-blog-card:hover{
    transform: translateY(-7px);
    border-color: #b8862c;
}

.skf-blog-image{
    height: 245px;
    position: relative;
    overflow: hidden;
}

.skf-blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.skf-blog-card:hover .skf-blog-image img{
    transform: scale(1.05);
}

.skf-blog-category{
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 11px 11px;
    background: #182d4d;
    color: #b8862c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.skf-blog-content{
    padding: 24px 25px 27px;
}

.skf-blog-meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    margin-bottom: 17px;
    border-bottom: 1px solid #e6e1d8;
}

.skf-blog-meta span{
    color: #b8862c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.skf-blog-meta i{
    color: #b8862c;
    font-size: 15px;
    transition: transform .3s ease;
}

.skf-blog-card:hover .skf-blog-meta i{
    transform: translate(3px,-3px);
}

.skf-blog-content h3{
    margin: 0 0 12px;
    color: #10243d;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    transition: color .3s ease;
}

.skf-blog-card:hover .skf-blog-content h3{
    color: #b8862c;
}

.skf-blog-content p{
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.75;
}

@media (max-width: 991px){

    .skf-blog-section{
        padding: 75px 0;
    }

    .skf-blog-heading h2{
        font-size: 36px;
    }

    .skf-blog-image{
        height: 230px;
    }

}

@media (max-width: 767px){

    .skf-blog-section{
        padding: 60px 0;
    }

    .skf-blog-heading{
        margin-bottom: 35px;
    }

    .skf-blog-heading h2{
        font-size: 18px;
    }

    .skf-blog-view{
        font-size: 13px;
    }

    .skf-blog-image{
        height: 220px;
    }

    .skf-blog-content{
        padding: 22px;
    }

    .skf-blog-content h3{
        font-size: 19px;
    }
}

/*Blog Main Section:End*/

/*Service Intro Start*/
.skf-service-intro{
    padding: 95px 0;
    background: #f8f6f1;
}
.skf-service-intro-image{
    position: relative;
    padding-right: 20px;
}
.skf-service-intro-image img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.skf-service-image-line{
    position: absolute;
    right: 0;
    top: 45px;
    width: 3px;
    height: 410px;
    background: #b8862c;
}
.skf-service-intro-content{
    padding-left: 55px;
}
.skf-service-intro-content .skf-section-label{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.skf-service-intro-content .skf-section-label span{
    width: 35px;
    height: 1px;
    background: #b8862c;
}

.skf-service-intro-content .skf-section-label p{
    margin: 0;
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.skf-service-intro-content h2{
    margin: 0 0 23px;
    color: #182d4d;
    font-size: 44px;
    line-height: 1.15;
    font-weight: 600;
}
.skf-service-intro-content h2 em{
    color: #b8862c;
    font-style: normal;
    font-weight: 700;
}
.skf-service-intro-content > p{
    max-width: 570px;
    margin: 0 0 16px;
    color: #707070;
    font-size: 14px;
    line-height: 1.85;
}
.skf-service-points{
    display: flex;
    flex-wrap: wrap;
    gap: 12px 25px;
    margin-top: 27px;
    padding-top: 20px;
    border-top: 1px solid #e2ddd4;
}
.skf-service-points div{
    display: flex;
    align-items: center;
    gap: 7px;
}
.skf-service-points i{
    color: #b8862c;
    font-size: 15px;
}
.skf-service-points span{
    color: #10243d;
    font-size: 13px;
    font-weight: 600;
}
@media (max-width: 991px){

    .skf-service-intro{
        padding: 75px 0;
    }

    .skf-service-intro-image{
        margin-bottom: 55px;
    }

    .skf-service-intro-content{
        padding-left: 0;
    }

    .skf-service-intro-content h2{
        font-size: 38px;
    }

}
@media (max-width: 767px){

    .skf-service-intro{
        padding: 60px 0;
    }

    .skf-service-intro-image{
        padding-right: 10px;
        margin-bottom: 45px;
    }

    .skf-service-intro-image img{
        height: 380px;
    }

    .skf-service-image-line{
        top: 30px;
        height: 320px;
    }

    .skf-service-intro-content h2{
        font-size: 31px;
    }

    .skf-service-intro-content > p{
        font-size: 13px;
    }

    .skf-service-points{
        flex-direction: column;
        gap: 12px;
    }

}
/*Service Intro End*/


.skf-home-cta {
    padding:80px 0;
    background:#f8f6f1;
}
.skf-cta-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    min-height: 390px;
    overflow: hidden;
    background: #182d4d;
    border-radius: 4px;
}

.skf-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px 60px;
}

.skf-cta-label {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
}

.skf-cta-label span {
    width: 28px;
    height: 2px;
    background: #b8862c;
}

.skf-cta-label p {
    margin: 0;
    color: #c49a4b;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.skf-cta-content h2 {
    margin: 0;
    max-width: 560px;
    color: #fff;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 600;
}

.skf-cta-content h2 em {
    color: #c49a4b;
    font-style: normal;
}

.skf-cta-text {
    max-width: 520px;
    margin: 20px 0 0;
    color: #c7c4bd;
    font-size: 12px;
    line-height: 1.8;
}

.skf-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: 27px;
    padding: 11px 19px;
    background: #b8862c;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
}

.skf-cta-btn i {
    font-size: 13px;
    transition: transform .25s ease;
}

.skf-cta-btn:hover {
    background: #fff;
    color: #292722;
}

.skf-cta-btn:hover i {
    transform: translateX(4px);
}

.skf-cta-image {
    position: relative;
    height: 100%;
    min-height: 390px;
    overflow: hidden;
    border-radius: 120px 0 0 120px;
}

.skf-cta-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.skf-cta-wrap:hover .skf-cta-image img {
    transform: scale(1.03);
}

.skf-cta-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(41,39,34,.25),rgba(41,39,34,.02));
}

.skf-cta-image::before {
    content: "";
    position: absolute;
    z-index: 3;
    left: -1px;
    top: 35px;
    bottom: 35px;
    width: 3px;
    background: #b8862c;
    border-radius: 50%;
}

@media (max-width: 991px) {

    .skf-home-cta {
        padding: 65px 0;
    }

    .skf-cta-wrap {
        grid-template-columns: 1fr;
    }

    .skf-cta-content {
        padding: 45px;
    }

    .skf-cta-image {
        min-height: 280px;
        height: 280px;

        border-radius: 0 0 80px 80px;
    }

    .skf-cta-image::before {
        display: none;
    }

}

@media (max-width: 767px) {

    .skf-home-cta {
        padding: 50px 0;
    }

    .skf-cta-content {
        padding: 35px 25px;
    }

    .skf-cta-content h2 {
        font-size: 28px;
    }

    .skf-cta-text {
        font-size: 11px;
    }

    .skf-cta-image {
        min-height: 220px;
        height: 220px;

        border-radius: 0 0 60px 60px;
    }

}

@media (max-width: 480px) {

    .skf-cta-content {
        padding: 30px 20px;
    }

    .skf-cta-content h2 {
        font-size: 25px;
    }

    .skf-cta-image {
        min-height: 200px;
        height: 200px;

        border-radius: 0 0 45px 45px;
    }

}
/*Contact CTA:End*/

/* Testimonial::Start */
.testimonial-wrap{
    background-color: #111d2e;
    padding: 50px 0;
}
.testimonial-wrap p{
    font-size: 14px;
    color: #aaa79f;
}
.testimonial-wrap h4{
    color: #fff;
}
.testimonial-image{
    width: 80px;
    height: 80px;
    margin: auto;
    background-color: #ffffff;
    border-radius: 100%;
    margin-bottom: 12px;
}
.testimonial-image img {
    margin-top: 20px;
}
.testimonial-image img{
    width: 100%;
    border-radius: 100%;
}
.testimonial-wrap .slick-next:before{
    font-size: 32px;
}
.testimonial-wrap .slick-prev:before{
    font-size: 32px;
}
.testimonial-wrap .slick-next{
    top: 50% !important;
}
.testimonial-wrap .slick-prev{
    top: 50% !important;
}
@media (max-width:722px){
    .testimonial-wrap .slick-next{
        display: none !important;
    }
    .testimonial-wrap .slick-prev{
        display: none !important;
    }
}
.testimonial-left{
    background-color: white;
    padding: 12px;
    position: absolute;
    top: 100px;
    cursor: pointer;
    z-index: 5;
}
.testimonial-right{
    background-color: white;
    padding: 12px;
    position: absolute;
    top: 100px;
    right: 0;
    cursor: pointer;
}
.flow-top{
    padding-bottom: 80px;
}
.flow-top p{
    font-size: 16px;
    color: #6f6a5f;
    line-height: 24px;
    letter-spacing: 1px;
}
.testimonial-wrap h5{
    font-size: 30px;
}
.testimonial-content{
    padding: 0 45px;
    border: 2px solid #b8862c;
    margin: 0 25px;
    min-height: 250px !important;
}
@media (max-width: 968px){
    .testimonial-content{
        padding: 0 15px;
    }
}
/* Testimonial::End */
hr{
    margin: 0;
}
/* Footer::Start */
.footer-wrap {
    background: #182d4d;
    color: #fff;
    padding-top: 60px;
}

.footer-content {
    padding-bottom: 45px;
}

.footer-logo {
    width: 210px;
    margin-bottom: 20px;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-description {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.9;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 24px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b8862c;
    color: #fff;
    border-radius: 3px;
    font-size: 15px;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: #fff;
    color: #182d4d;
    transform: translateY(-3px);
}

.footer-column h5 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 12px;
    color: #e0bc68;
    font-size: 16px;
    font-weight: 600;
}

.footer-column h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: #b8862c;
}

.footer-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    display: inline-block;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    text-decoration: none;
    transition: all .25s ease;
}

.footer-column ul li a::before {
    content: "›";
    margin-right: 8px;
    color: #b8862c;
}

.footer-column ul li a:hover {
    color: #e0bc68;
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 18px;
}

.footer-contact-item > i {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 44, .15);
    border: 1px solid rgba(184, 134, 44, .35);
    border-radius: 50%;
    color: #d0a858;
    font-size: 13px;
}

.footer-contact-item a {
    display: block;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-contact-item a:hover {
    color: #e0bc68;
}

.footer-contact-item p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 15px;
}

.footer-bottom a {
    color: #d0a858;
    text-decoration: none;
    transition: color .25s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

@media (max-width: 991px) {

    .footer-wrap {
        padding-top: 50px;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-column {
        margin-bottom: 15px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 8px;
    }

}

@media (max-width: 575px) {

    .footer-wrap {
        padding-top: 45px;
    }

    .footer-logo {
        width: 160px;
    }

    .footer-description {
        font-size: 12px;
        line-height: 1.8;
    }

    .footer-column h5 {
        margin-bottom: 20px;
        font-size: 15px;
    }

    .footer-column ul li a {
        font-size: 12px;
    }

    .footer-contact-item {
        gap: 10px;
        margin-bottom: 15px;
    }

    .footer-contact-item a,
    .footer-contact-item p {
        font-size: 12px;
    }

    .footer-social {
        margin-top: 20px;
    }

    .footer-social a {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .footer-bottom {
        padding: 17px 0;
    }

    .footer-bottom p {
        font-size: 11px;
        line-height: 1.6;
    }

}
/* Footer::End */

/* Smallhero::Start */
.skf-inner-banner{
    position: relative;
    height: 330px;
    margin-top: 90px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.skf-inner-banner-bg{
    position: absolute;
    inset: 0;
    background-image: linear-gradient(88deg, 
                    rgb(16 36 61 / 26%) 0%, 
                    rgb(16 36 61 / 30%) 45%, 
                    rgb(16 36 61 / 25%) 100%), 
                    url(../Images/assets/servicepage-bg.jpg);
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.skf-inner-banner-content{
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    min-height: 330px;
}
.skf-inner-banner-line{
    width: 3px;
    height: 115px;
    background: #b8862c;
    margin-right: 28px;
}
.skf-inner-banner-text{
    padding-top: 5px;
}
.skf-inner-banner-label{
    color: #b8862c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}
.skf-inner-banner h1{
    margin: 0 0 22px;
    color: #fff;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 500;
}
.skf-inner-breadcrumb{
    display: flex;
    align-items: center;
    gap: 11px;
}
.skf-inner-breadcrumb a{
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 13px;

    transition: 0.3s ease;
}
.skf-inner-breadcrumb a:hover{
    color: #b8862c;
}
.skf-inner-breadcrumb i{
    color: #b8862c;
    font-size: 10px;
}
.skf-inner-breadcrumb span{
    color: #fff;
    font-size: 13px;
}
@media (max-width: 991px){

    .skf-inner-banner{
        margin-top: 62px;
        height: 290px;
    }

    .skf-inner-banner-content{
        min-height: 290px;
    }

    .skf-inner-banner h1{
        font-size: 45px;
    }

}
@media (max-width: 767px){

    .skf-inner-banner{
        height: 250px;
    }

    .skf-inner-banner-content{
        min-height: 250px;
    }

    .skf-inner-banner-line{
        height: 90px;
        margin-right: 18px;
    }

    .skf-inner-banner-label{
        font-size: 9px;
        letter-spacing: 1.8px;
    }

    .skf-inner-banner h1{
        font-size: 36px;
        margin-bottom: 17px;
    }

    .skf-inner-breadcrumb a,
    .skf-inner-breadcrumb span{
        font-size: 12px;
    }

}
/* Smallhero::End */

.subpages-graphic{
    position: absolute;
    z-index: -1;
    left: -90px;
    top: 250px;
}


/* Offerings::Start */
.offerings-wrap{
    padding: 80px 0;
}
.offerings-head .under-blue{
    margin: auto;
}
.offerings-wrap h3{
    line-height: 25px;
    font-size: 18px;
    text-transform: capitalize;
}
.offer-right p{
    line-height: 25px;
    font-size: 16px;
    color: #6f6a5f;
}
.offer-right{
    padding-left: 30px;
}
/* Offerings::End */

/* Breakdown::Start */
.breakdown-wrap{
    padding: 80px 0;
    background-color: #182d4d;
}
.breakdown-head p{
    color: #fff;
}
.break-content{
    padding: 20px;
    background-color: #182d4d;
}
.break-content:hover{
    background-color: #ffffff;
}
.break-content:hover.break-content p{
    color: #000000 !important;
}
.break-content:hover.break-content h4{
    color: #000000 !important;
}
.break-content:hover .break-icon{
    background-color: #b8862c !important;
}
.break-content:hover .btn-break{
    background-color: transparent;
    border: 1px solid black;
    color: #000;
    padding: 5px 10px;
}
.break-content{
    border: 1px solid #fff;
    margin-top: 15px;
    min-height: 600px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    transition: all 0.3s ease;
}
.center-btns{
    background-color: transparent;
    border: 1px solid black;
    color: #000;
    padding: 5px 10px;
}
.break-center{
    background-color: #fff;
}
.break-center .break-icon{
    background-color:#b8862c;
}
.break-center h4{
    color: #000 !important;
}
.break-center p{
    color: #000 !important;
}
@media (max-width:990px){
    .break-content{
        min-height: auto;
        height: unset;
    }
}
.break-icon{
    width: 75px;
    height: 75px;
    border-radius: 100%;
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.break-icon i {
    font-size: 28px;
    color: #fff;
}
.btn-break{
    background-color: transparent;
    border: 1px solid white;
    color: #fff;
    padding: 5px 10px;
}
.break-content h4{
    color: #fff;
}
.break-content p{
    color: #fff;
    font-size: 16px;
}
/* Breakdown::End */

/* Product Page Start */
.pp-main{
    padding: 80px 0 160px 0;
    background-color: #fffdf8;
}
.main-mortgage{
    padding: 80px 0 40px 0;
    background-color: #fffdf8;
}
@media (mx-width:988px){
    .pp-main{
        padding: 80px 0 90px 0;
        background-color: #fffdf8;
    }
}
.mortgage-down{
    padding: 40px 0 90px 0 ;
}
.pp-right p{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #6f6a5f;
}
.mortgage-right{
    margin-top: 0 !important;
}
.products-top-wrap{
    background-image: url(../Images/assets/products-top.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* Product Page End */

/* Management Start */
.management-wrap{
    padding: 80px 0;
    background-color: #f7f2e8;
}
@media(max-width: 992px){
    .management-wrap{
        padding: 40px 0 !important;
    } 
}
.management-content p{
    font-size: 16px;
    color: #6f6a5f;
}
.management-content{
    background-color: #fff;
    padding: 25px;
    border-radius: 4px;
}
.management-image img{
    width: 200px;
    border-radius: 4px;
    margin-bottom: 20px;
}
.manage-content h4{
    font-size: 18px;
    margin-bottom: 10px;
}
.manage-left-content h4{
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 600;
}
.manage-content p{
    font-size: 16px;
    color: #6f6a5f;
}
.manage-wrap{
    padding: 25px 0px;
}
.mana-wrap{
    padding: 20px;
    background-color: #182d4d;
    border-radius: 20px;
}
.manage-icon{
    width: 50px;
    margin-bottom: 10px;
}
.mana-icon{
    width: 100px;
    margin-bottom: 10px;
}
.mana-wrap img{
    border-radius: 90px;
    padding: 40px;
}
@media (max-width: 375px){
    .mana-wrap img{
        border-radius: 30px;
        padding: 10px;
        margin-bottom: 10px;
    }
}
.mana-right h3{
    font-size: 24px;
    color: #fff;
}
.mana-right p{
    font-size: 16px;
    color: #fff;
}
.mana-right-wrap{
    display: flex;
    align-items: center;
}
/* Management End */


/* contact-us Page Start*/ 
.skf-contact-section {
    padding: 95px 0;
    background: #f8f7f4;
}
.skf-contact-top {
    display: grid;
    grid-template-columns: 43% 57%;
    min-height: 650px;
}
.skf-contact-info {
    position: relative;
    padding: 60px 55px;
    background: #182d4d;
    overflow: hidden;
}
.skf-contact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}
.skf-contact-label span {
    width: 30px;
    height: 1px;
    background: #b8862c;
}
.skf-contact-label p {
    margin: 0;
    color: #c49a4a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
}
.skf-contact-info h2 {
    position: relative;
    z-index: 2;
    max-width: 390px;
    margin: 0 0 20px;
    color: #fff;
    font-size: 39px;
    line-height: 1.2;
    font-weight: 600;
}
.skf-contact-info h2 em {
    color: #c49a4a;
    font-style: normal;
    font-weight: 500;
}
.skf-contact-intro {
    position: relative;
    z-index: 2;
    max-width: 400px;
    margin: 0 0 42px;
    color: rgba(255,255,255,.68);
    font-size: 13px;
    line-height: 1.8;
}
.skf-contact-details {
    position: relative;
    z-index: 2;
}

.skf-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 19px 0;
    border-top: 1px solid rgba(255,255,255,.13);
    transition: all .3s ease;
}

.skf-contact-detail:last-child {
    border-bottom: 1px solid rgba(255,255,255,.13);
}
.skf-contact-icon {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196,154,74,.5);
    color: #c49a4a;
    font-size: 15px;
    transition: all .3s ease;
}

.skf-contact-detail:hover .skf-contact-icon {
    background: #b8862c;
    border-color: #b8862c;
    color: #fff;
    transform: translateY(-2px);
}

.skf-contact-detail span {
    display: block;
    margin-bottom: 5px;
    color: #c49a4a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.7px;
}

.skf-contact-detail a {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: 12px;
    line-height: 1.7;
}

.skf-contact-form {
    padding: 58px 65px;
    background: #fff;
    border: 1px solid #e6e1d7;
    border-left: none;
}

.skf-form-heading {
    margin-bottom: 35px;
}

.skf-form-heading > span {
    display: block;
    margin-bottom: 8px;
    color: #b8862c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.skf-form-heading h3 {
    margin: 0 0 8px;
    color: #182d4d;
    font-size: 30px;
    font-weight: 600;
}

.skf-form-heading p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}

.skf-form-group {
    margin-bottom: 23px;
}

.skf-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #182d4d;
    font-size: 11px;
    font-weight: 600;
}

.skf-form-group .form-control {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #ddd9d0;
    border-radius: 0;
    background: #fff;
    color: #333;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    box-shadow: none;
    outline: none;
    transition: all .3s ease;
}

.skf-form-group textarea.form-control {
    height: auto;
    min-height: 130px;
    padding: 14px 15px;
    resize: vertical;
}

.skf-form-group .form-control::placeholder {
    color: #aaa;
}

.skf-form-group .form-control:focus {
    border-color: #b8862c;
    box-shadow: 0 0 0 3px rgba(184,134,44,.08);
}

.skf-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-width: 165px;
    height: 48px;
    padding: 0 20px;
    border: 1px solid #b8862c;
    background: #b8862c;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.skf-contact-submit i {
    font-size: 14px;
    transition: transform .3s ease;
}

.skf-contact-submit:hover {
    background: #182d4d;
    border-color: #182d4d;
    color: #fff;
}

.skf-contact-submit:hover i {
    transform: translate(3px,-3px);
}

.skf-contact-map-section {
    margin-top: 85px;
}

.skf-map-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.skf-map-heading .skf-contact-label {
    margin-bottom: 10px;
}

.skf-map-heading h3 {
    margin: 0;
    color: #182d4d;
    font-size: 34px;
    font-weight: 600;
}

.skf-map-heading h3 em {
    color: #b8862c;
    font-style: normal;
}

.skf-map-heading > p {
    max-width: 330px;
    margin: 0;
    color: #777;
    font-size: 12px;
    line-height: 1.7;
    text-align: right;
}

.skf-map-wrap {
    position: relative;
    overflow: hidden;
    height: 430px;
    border: 1px solid #ded9ce;
    background: #eee;
}

.skf-map-wrap iframe {
    display: block;
    width: 100%;
    height: 100%;
    transition: filter .5s ease;
}

.skf-map-wrap:hover iframe {
    filter: grayscale(0%);
}
@media (max-width: 991px) {

    .skf-contact-section {
        padding: 75px 0;
    }

    .skf-contact-top {
        grid-template-columns: 1fr;
    }

    .skf-contact-info {
        padding: 50px 45px;
    }

    .skf-contact-info h2 {
        max-width: 600px;
        font-size: 36px;
    }

    .skf-contact-intro {
        max-width: 600px;
    }

    .skf-contact-form {
        padding: 50px 45px;
        border-left: 1px solid #e6e1d7;
        border-top: none;
    }

    .skf-contact-map-section {
        margin-top: 65px;
    }

}
@media (max-width: 767px) {

    .skf-contact-section {
        padding: 55px 0;
    }

    .skf-contact-info {
        padding: 40px 25px;
    }

    .skf-contact-info h2 {
        font-size: 29px;
        line-height: 1.25;
    }

    .skf-contact-intro {
        font-size: 12px;
        margin-bottom: 30px;
    }

    .skf-contact-detail {
        gap: 14px;
        padding: 16px 0;
    }

    .skf-contact-icon {
        width: 36px;
        height: 36px;
    }

    .skf-contact-detail p {
        font-size: 11px;
    }

    .skf-contact-form {
        padding: 38px 25px;
    }

    .skf-form-heading h3 {
        font-size: 25px;
    }

    .skf-form-group {
        margin-bottom: 18px;
    }

    .skf-map-heading {
        display: block;
    }

    .skf-map-heading h3 {
        font-size: 28px;
    }

    .skf-map-heading > p {
        margin-top: 14px;
        text-align: left;
    }

    .skf-map-wrap {
        height: 330px;
    }

}
@media (max-width: 480px) {

    .skf-contact-info {
        padding: 35px 20px;
    }

    .skf-contact-info h2 {
        font-size: 27px;
    }

    .skf-contact-form {
        padding: 35px 20px;
    }

    .skf-form-heading h3 {
        font-size: 23px;
    }

    .skf-contact-submit {
        width: 100%;
    }

    .skf-map-wrap {
        height: 280px;
    }
}
/* contact-us Page End */

/* Team Start */
.team-wrap{
    padding: 80px 0;
}
@media(max-width:992px){
    .team-wrap{
        padding: 40px 0 !important;
    }
}
.c-report{
    padding-left: 0;
    list-style: none;
}
.c-report li{
    display: flex;
    margin-top: 10px;
}
.c-report li:hover i {
    margin-right: 5px !important;
}

.c-report i{
    color: #b8862c;
    margin-right: 15px;
    font-size: 18px;
    transition: all 0.2s ease-in;
}
.c-report p{
    color: #000 !important;
    font-size: 14px !important;
    margin-bottom: 0;
}
.insure-report{
    padding-left: 0;
    list-style: none;
}
.insure-report li{
    display: flex;
    margin-top: 10px;
}

.insure-report i{
    color: #b8862c;
    margin-right: 15px;
    font-size: 16px;
    transition: all 0.2s ease-in;
}
.insure-report p{
    color: #000 !important;
    font-size: 14px !important;
    margin-bottom: 0;
}
.team-content p{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #6f6a5f;
}
/* Team End */

@media(max-width:990px){
    .know-wrap{
        padding: 80px 0 40px 0;
    }
    .services-wrap{
        padding: 40px 0;
    }
    .mains-wrap {
        padding: 40px 0;
    }
    .whychoose-wrap{
        padding: 40px 0;
    }
    .know-head {
        padding: 40px 0 10px 0;
    }
    .value {
        margin-top: 45px;
    }
    .calculator-wrap {
        padding: 40px 0;
    }
    .pp-main {
        padding: 40px 0 40px 0;
        background-color: #fffdf8;
    }
    .pp-right-head{
        margin-top: 20px;
    }
    .pp-right{
        margin-top: 20px;
    }
}

.addition-top-wrap{
    background-image: url(../Images/assets/additions-top-bg.jpg) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.qp-link ul li{
    margin: 2px 0;
}
.loan-amt input{
    padding: 4px 7px;
    background-color: #fff;
    border-radius: 4px;
    outline: none;
    border: 1px solid #b8862c;
    font-size: 16px;
}
.additions-text p{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #6f6a5f;
}
.terms p{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #6f6a5f;
}
#successMessage{
    display: block;
    margin-bottom: 10px;
    background-color: #278a43;
    color: #fff;
    padding: 5px;
    border-radius: 2px;
}
#error_message {
    font-size: 14px;
    margin-bottom: 0;
    margin-top: 5px;
}
#failMessage{
    display: block;
    margin-bottom: 10px;
    background-color: #b83a32;
    color: #fff;
    padding: 5px;
    border-radius: 2px;
}
.bankinfos-wrap{
    padding: 40px;
    background-color: #182d4d;
    border-radius: 4px;
    color: #fff;
}
.bankinfos-wrap ul{
    list-style: none;
    padding-left: 0;
}
.bankinfos-wrap ul li{
    margin-bottom: 15px;
    font-size: 14px;
    display: flex;
    align-items: baseline;
}
.loan-co{
    max-width: 30px;
    width: 100%;
}
.flow-t p{
    color: #182d4d;
    font-weight: 600;
}

.flow-info{
    padding: 80px 0;
}
.flow-info h2{
    font-size: 40px;
    color: #b8862c;
    font-weight: 700;
}
.flow-info ul{
    list-style: none;
    padding-left: 0;
}
.flow-container{
    padding: 10px 15px;
    background-color: #eee4cf;
    border-radius: 4px;
    margin-bottom: 10px;
    min-height: 120px;
}
.flow-btn{
    font-size: 24px;
    color: #b8862c;
}
.flow-container li{
    font-size: 18px;
    font-weight: 700;
}
.flow-container p{
    font-size: 14px;
    font-weight: 500;
}
.flow-more{
    text-decoration: none;
    color: #fff;
}
.flow-more:hover{
    color: #fff;
}
.no-input{
    background-color: #182d4d !important;
    color: #fff !important;
}
.no-input::placeholder{
    color: #fff !important;
}
.footer-social a{
    text-decoration: none;
}