body {
    font-family: 'Poppins', sans-serif;
}

.custom-navbar {
    background-color: #ffffff;
}
.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 5px;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #507CA7;
    transition: width 0.2s ease;
    -webkit-transition: width 0.2s ease;
}
.nav-link {
    color: #507CA7 !important;
    margin-left: 15px;
}
.navbar-nav .nav-link:hover::after {
    width: 100%;
    left: 0;
    color: #507CA7;
    background: #507CA7;
}

.background-image {
    background: url(../images/bg1.png) no-repeat center center;
    background-size: cover;
    height: 700px;
    display: flex;
    align-items: center;
    padding: 20px;
}
.container {
    padding-top: 20px;
    padding-bottom: 20px;
}
.background-image h1,
.background-image p,
.background-image .btn {
    color: white;
}

.full-background-image {
    background: url(../images/bg2.png) no-repeat center center;
    background-size: cover;
    height: 800px;
}

.card img {
    height: auto;
    object-fit: cover;
    border: none;
}

.small-card img {
    height: auto;
    object-fit: cover;
}

.heading-center {
    text-align: center;
    margin: 20px 0;
    font-size: 36px;
}

.small-line {
    width: 70px;
    height: 7px;
    background-color: #fc4f02;
    margin: 0 auto;
}

.card {
    border: none;
    box-shadow: 0px 0px 12px 0px rgb(0 0 0 / 5%);
    border-radius: 50px 50px 0px 0px;
    text-align: center;
    justify-content: space-around;
}

.specer {
    float: left;
    height: 20px;
    width: 100%;
}
.half-width-block {
    width: 50%;
}
.half-width-block img {
    width: 100%;
    height: auto;
}
.d-flex {
    align-items: center;
    gap: 40px;
}
.rd-flex {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 40px;
}

h5 {
    font-weight: 600;
    font-size: 22px;
}
.navbar-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0px 15px;
    width: 100%;
}
.btn-primary {
    border: 2px solid transparent !important;
}
.btn-primary:hover {
    background-color: transparent !important;
    border: 2px solid #407BFF !important;
    color: #407BFF !important;
}
footer {
    text-align: left;
    padding: 10px 0;
    background-color: #407BFF;
    color: white;
}
@media (min-width:0px) and (max-width:768px) {
    .rd-flex {
        flex-direction: column;
        gap: 20px;
    }
    .d-flex {
        flex-direction: column;
        gap: 20px;
    }
.half-width-block {
    width: 100%;
}
.half-width-block img {
    width: 100%;
    height: auto;
}
}