@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");

*,
:after,
:before {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

:root {
    --bs-primary: #076CB4;
    --bs-secondary: #015a99;
    --bs-light: #efefef;
    --bs-dark: #2d3941;
    --bs-text: #787878;
    --bs-border: #E9E9E9;
}

body {
    margin: 0px;
    color: var(--bs-text);
    background-color: var(--bs-white);
    overflow-x: hidden;
    font-family: "Exo", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-weight: 700;
    color: var(--bs-dark);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
}

a:hover,
a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: #b3bdc0;
    box-shadow: none;
}

.py-5px {
    padding-top: 5px;
    padding-bottom: 5px;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-dark {
    background-color: var(--bs-dark) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.btn-check:active+.btn-primary:focus,
.btn-check:checked+.btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn {
    padding: 11px 25px 12px;
    font-size: 15px;
    border-radius: 4px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.consultant-btn {
    padding: 9px 20px 10px;
}

.btn-sm {
    padding: 7px 12px 5px;
    font-size: 13px;
    border-radius: 2px;
}

.btn-primary span {
    position: absolute;
    display: inline-block;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: var(--bs-secondary);
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 5px;
    opacity: 1;
}

.btn-primary.bg-secondary span {
    background-color: var(--bs-white);
}

.btn-primary.bg-secondary:hover {
    color: var(--bs-primary);
}

.btn-primary:hover span {
    width: 225%;
    height: 562.5px;
}

.btn-primary {
    background-color: var(--bs-primary);
    border: none;
    border-bottom: 3px solid var(--bs-secondary);
}

.btn-primary:hover {
    background-color: var(--bs-primary);
}

.form-select:focus,
.form-control:focus,
.btn-check:focus+.btn,
.btn:focus {
    box-shadow: none;
}

.scrollTop {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 350;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    border-color: transparent !important;
    font-size: 25px;
    opacity: 0;
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 10px 10px 20px -10px rgb(155 32 144 / 60%);
    padding: 0;
    padding-top: 8px;
}

.scrollTop:hover {
    color: var(--bs-white) !important;
    background-color: var(--bs-secondary) !important;
}

.scrollTop.show {
    opacity: 1;
    transform: none;
    pointer-events: visible;
}

.text-xs {
    font-size: 13px;
}

.text-sm {
    font-size: 14px;
}

.text-base {
    font-size: 16px;
}

.text-lg {
    font-size: 18px;
}

.text-xl {
    font-size: 26px;
}

.form-control {
    border: 1px solid #b3bdc0;
    padding: .3rem .75rem;
    min-height: 36px;
    font-size: 14px;
    border-radius: 0;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.fw-700 {
    font-weight: 700 !important;
}

.text-truncate-5,
.text-truncate-4,
.text-truncate-3,
.text-truncate-2,
.text-truncate-1 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    -webkit-line-clamp: 1;
    line-height: 1.5;
    min-height: 24px;
}

.text-truncate-2 {
    -webkit-line-clamp: 2;
    min-height: 48px;
}

.text-truncate-3 {
    -webkit-line-clamp: 3;
}

.text-truncate-4 {
    -webkit-line-clamp: 4;
}

.text-truncate-5 {
    -webkit-line-clamp: 5;
}

.fit-cover {
    object-fit: cover;
}

/*** ========== Header css ========== ***/
.header-top-bar {
    background: #223a66;
    font-size: 14px;
    padding: 10px 0px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #fff;
}

.hotline span {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    vertical-align: middle;
}

#navbarToggleExternalContent .nav-link {
    color: #222;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 15px;
    text-transform: capitalize;
    transition: all 0.25s ease;
}

.page-title {
    padding: 120px 0px 70px 0px;
    position: relative;
}

.lh-15 {
    line-height: 1.5;
}

/*** ========== Header css ========== ***/

/*** ========== Package css ========== ***/
.package__card-header {
    padding: 35px 10px;
    background: green;
    color: #fff;
    text-align: center;
    border-radius: 10px;
}

.circlebox {
    border: 3px solid green;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100px;
    text-align: center;
    margin: -25px auto;
    background: #fff;
    color: #000;
    font-weight: 900;
    font-size: 14px;
}

.package__card-body i {
    color: green;
}

.btn-block {
    display: block;
    width: 100%;
}

.pricing-card-title {
    margin: 10px 0;
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.package__card-body ul {
    margin: 0 0 15px 0 !important;
    padding: 0 !important;
}

/*** ========== Package css ========== ***/
.footer {
    padding: 100px 0 0;
    color: #FFFFFF;
}

.footer-btm {
    border-top: 1px solid rgb(255 255 255 / 20%);
}

.footer a {
    color: inherit;
}

.lh-35 {
    line-height: 35px;
}

.divider {
    width: 40px;
    height: 3px;
    background: #e12454;
}

.footer-contact-block span {
    font-weight: 400;
    color: #6F8BA4;
}

.footer-socials li a {
    width: 45px;
    height: 45px;
    background: #6F8BA4;
    color: #fff;
    display: inline-block;
    text-align: center;
    border-radius: 100%;
    padding-top: 12px;
}

.footer-contact-block a {
    color: #DEDEDE;
}