.navBar {
    background-color: #29166f;
    border-bottom: 4px solid #fd241d;
    padding: 1rem 0;
    position: sticky;
    top: 0;
}
.navBar .navWraper {
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 2fr 8fr 2fr;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 1rem;
    align-items: center;
}
.navBar .navWraper .navContent{
    padding: 0 1rem;
}
.navBar .navWraper .navTitle {
    color: #fff;
    font-size: 24px;
}
.navText {
    color: #fff;
}
.navBar .navWraper .barndLogo {
    background-color: #fff;
    padding: 5px;
    border-radius: 3px;
}
.navBar .navWraper .logo {
    background-color: #fff;
    padding: 5px;
    border-radius: 3px;
}
.contact-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.contact-list .item .link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #fd241d;
    text-decoration: none;
}
.contact-list .item .link .icon {
    border: solid 1px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    margin-right: 0.8rem;
}
@media screen and (max-width:768px) {
    .navBar .navWraper {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .navBar .navWraper .barndLogo {
        background-color: #fff;
        padding: 5px;
        border-radius: 3px;
        margin: 0 1rem;
    }
    .navBar .navWraper .logo {
        max-width: 120px;
        background-color: #fff;
        padding: 5px;
        border-radius: 3px;
        margin: 0 1rem ;
    }
}

a.registerBtn {
    display: inline-block;
    border-radius: 25px;
    border: solid 2px #fd241d;
    color: #fd241d;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 0.2rem 1.5rem;
    transition: ease 0.3s;
    margin-bottom: 1rem;
}
a.registerBtn:hover {
    border: solid 2px #fd241d;
    background-color: #fd241d;
    color: #fff;
    transition: ease 0.3s;
}

.FDP-section {
    padding: 2.5rem 0;
}
.FDP-section .FDP-warper {
    display: grid;
    grid-template-columns: 2fr 8fr;
    gap: 1rem;
}
.FDP-section .navCard {
    display: grid;
    grid-row: 1/3;
    padding: 1rem 0;
    border-radius: 15px;
    box-shadow: 0px 0px 15px -5px #0004;
}
.FDP-section .tab-content {
    display: grid;
    grid-row: 1/4;
}
.FDP-section .tab-pane {
    background-color: #fff;
    box-shadow: 0px 0px 15px -3px #0004;
    padding: 2rem;
    border-radius: 15px;
}
.FDP-section .FDP-navList {
    display: block;
}
.FDP-section .builing-bg {
    border-radius: 15px;
}
.FDP-section .FDP-navList .nav-link {
    border-radius: 0;
    font-weight: 600;
    color: #29166f;
}
.FDP-section .FDP-navList .nav-link.active {
    border-radius: 0;
    background-color: #29166f;
    color: #fff;
}
.FDP-section .main-title {
    color: #29166f;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 1.4rem;
}
.FDP-section .sub-title {
    color: #29166f;
    font-weight: 700;
    font-size: 21px;
}
.FDP-section .text {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}
.FDP-section .text .badge {
    font-size: 16px;
}
.FDP-section .FDP-card {
    position: relative;
    display: inline-block;
    min-width: 250px;
    background-color: #fff;
    box-shadow: 0px 0px 15px -3px #0006;
    border-radius: 12px;
    z-index: 1;
    border: none;
}
.FDP-section .FDP-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
    background-color: #d8d4ff;
    border-radius: 12px;
    z-index: -1;
}
.FDP-section .FDP-card .card-body {
    padding: 1rem;
    border-radius: 15px;
    background-color: #fff;
    border-radius: 12px;
}
.FDP-section .card-title {
    font-size: 18px;
    color: #fd241d;
    font-weight: 700;
}
.FDP-section .card-text {
    color: #000;
    font-weight: 600;
}
.FDP-section ul > li {
    color: #000;
    font-size: 16px;
    font-weight: 600;
}
.wrapper  {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media screen and (max-width:768px) {
    .navBar {
        position: relative;
    }
    .navBar .navWraper .navTitle {
        font-size: 21px;
        margin-top: 1rem;
    }
    .FDP-section .FDP-warper {
        grid-template-columns: 1fr;
    }
    .FDP-section .tab-pane {
        padding: 1rem;
    }
    .FDP-section .navCard {
        grid-row: 1;
    }
    .FDP-section .tab-content {
        grid-row: initial;
    }
    .FDP-section .main-title {
        font-size: 21px;
    }
    .FDP-section .sub-title {
        font-size: 18px;
    }
    .wrapper  {
        grid-template-columns: 1fr;
    }
}

.footer-section {
    background-color: #393185;
    padding: 1rem 0;
}

.footer-section .text {
    margin-bottom: 0;
    color: #fff;
}