/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
   * Remove text-shadow in selection highlight:
   * https://twitter.com/miketaylr/status/12228805301
   *
   * Customize the background color to match your design.
   */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
   * A better looking default horizontal rule
   */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
   * Remove the gap between audio, canvas, iframes,
   * images, videos and the bottom of their containers:
   * https://github.com/h5bp/html5-boilerplate/issues/440
   */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
   * Remove default fieldset styles.
   */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

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

a {
    text-decoration: none !important;
}

/*
   * Allow only vertical resizing of textareas.
   */

textarea {
    resize: vertical;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    background-color: #ffffff;
    font-style: normal;
    overflow-x: hidden;
}

.pt-8 {
    padding-top: 80px;
}

.pb-8 {
    padding-bottom: 80px;
}

.mt-8 {
    margin-top: 80px;
}

.mb-8 {
    margin-bottom: 80px;
}

/* color */
:root {
    --bg-primary: #0487E2;
    --bg-secondary: #001529;
    --bg-black: #222222;
    --bg-white: #ffffff;
}

/* =============================  header  ================================= */
.header {
    border-bottom: 1px solid #F0F0F0;
    height: 100px;
    display: flex;
    align-items: center;
    background: #fff;
}

.header .nav-item .nav-link {
    color: #222;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    padding: 0px 18px !important;
}

.header .nav-item .nav-link:hover {
    color: var(--bg-primary) !important;
}


.header .btn {
    border-radius: 8px !important;
    padding: 10px 10px;
    max-width: 116px;
    max-width: 116px;
    width: 116px;
    border: none;
    font-size: 15px;
    font-weight: 500;
}

.header .btn-primary {
    background-color: var(--bg-primary) !important;
    border: 2px solid var(--bg-primary);
    padding: 8px 0px !important;
}

.header .btn-primary:hover {
    background-color: transparent !important;
    color: var(--bg-primary);
}

.header .btn-secondary {
    color: var(--bg-white);
    background-color: var(--bg-secondary) !important;
    border: 2px solid var(--bg-secondary);
    padding: 8px 0px !important;
}

.header .btn-secondary:hover {
    color: var(--bg-secondary);
    background-color: transparent !important;
}

.header .navbar-brand img {
    height: 29px;
    width: 220px;
}

.toggle_bar {
    border: none;
    background: transparent;
    vertical-align: middle;
    margin-top: 9px;
}

.offcanvas_menu {
    width: 290px !important;
    border: none !important;
}

.offcanvas-title img {
    width: 174px;
}

.offcanvas-header .btn-close {
    outline: none !important;
    box-shadow: none !important;
}

/* =============================  banner  ================================= */
.banner-section {
    padding: 50px 0px;
    position: relative;
    overflow: hidden;
    background: rgba(4, 135, 226, 0.05);
    border-bottom: 1px solid #EEE;
}


.banner-content h2 {
    color: #272B2E;
    font-size: 38px;
    padding-bottom: 24px;
    font-weight: 700;
}

.banner-content h4 {
    color: var(--bg-primary);
    font-size: 26px;
    font-weight: 700;
    padding-bottom: 24px;
    line-height: 37px;
}

.banner-content ul {
    padding-bottom: 35px;
}

.banner-content ul li svg {
    margin-right: 7px;
}

.banner-content ul li {
    padding: 5px 0px;
    font-size: 14px;
    color: #444;
}

.btn-secondary {
    border-radius: 6px;
    border: 2px solid var(--bg-secondary) !important;
    background: transparent;
    color: var(--bg-secondary);
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 10px 25px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

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

.btn-primary {
    border-radius: 6px;
    background-color: var(--bg-primary);
    color: var(--bg-white);
    border: 2px solid transparent;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 10px 25px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
    background: transparent;
    color: var(--bg-primary);
    border: 2px solid var(--bg-primary);
}

.banner-img {
    position: absolute;
    top: 0;
    z-index: -1;
    right: 0;
    transform: rotate(30deg);
    opacity: .5;
}

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

/* =============================  top features  ================================= */


.features_wrap {
    padding: 15px;
    border-radius: 12px;
    min-height: 222px;
}

.features_content h4 {
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.features_content p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* =============================  About  ================================= */
.about_wrapper {
    background: linear-gradient(127deg, #0487E2 -19.77%, rgba(99, 102, 241, 0.67) 71.68%);
    min-height: 450px;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
}


.about_img img {
    max-height: 450px;
    height: 450px;
    width: 100%;

}

.about_content h3 {
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.about_content p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 30px;
}

.about_content .btn-secondary {
    background-color: var(--bg-secondary);
    color: var(--bg-white);
}


.about_content .btn-secondary:hover {
    background-color: transparent !important;
    color: var(--bg-white);
}

.about_content .btn-primary:hover {
    color: var(--bg-white) !important;
}


.about_content ul li {
    color: var(--bg-white);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding: 5px 0px;
}

.about_content ul li svg {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50px;
    margin-right: 7px;
}

/* =============================  service  ================================= */

.section-headign h3 {
    color: var(--bg-secondary);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 10px;
    margin: 0;
}

.section-headign p {
    color: #696969;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
    max-width: 450px;
    margin: auto;
    text-align: center;
}


.service-card {
    background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 26px, transparent 26px) 0% 0%/30px 30px no-repeat,
        radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 26px, transparent 26px) 100% 0%/30px 30px no-repeat,
        radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 26px, transparent 26px) 0% 100%/30px 30px no-repeat,
        radial-gradient(circle at 0 0, #ffffff 0, #ffffff 26px, transparent 26px) 100% 100%/30px 30px no-repeat,
        linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 8px) calc(100% - 60px) no-repeat,
        linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 60px) calc(100% - 8px) no-repeat,
        linear-gradient(transparent 0%, #0487e2 100%);
    border-radius: 30px;
    padding: 20px;
    box-sizing: border-box;

}


.service-card .service-icon {
    max-width: 200px;
    width: 200px;
    height: 200px;
    line-height: 200px;
    margin: auto;
    margin-bottom: 27px;
    background: radial-gradient(circle at 100% 100%, #ffffff 0, #ffffff 97px, transparent 97px) 0% 0%/100px 100px no-repeat,
        radial-gradient(circle at 0 100%, #ffffff 0, #ffffff 97px, transparent 97px) 100% 0%/100px 100px no-repeat,
        radial-gradient(circle at 100% 0, #ffffff 0, #ffffff 97px, transparent 97px) 0% 100%/100px 100px no-repeat,
        radial-gradient(circle at 0 0, #ffffff 0, #ffffff 97px, transparent 97px) 100% 100%/100px 100px no-repeat,
        linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 6px) calc(100% - 200px) no-repeat,
        linear-gradient(#ffffff, #ffffff) 50% 50%/calc(100% - 200px) calc(100% - 6px) no-repeat,
        linear-gradient(0deg, transparent 0%, #0487e2 100%);
    border-radius: 100px;
    box-sizing: border-box;
}


.service-card .service-name h3 {
    color: var(--Black, #272B2E);
    font-family: Roboto;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.service-card .service-list ul li svg {
    width: 20px;
    height: 20px;
    background: #8FC400;
    border-radius: 50px;
    margin-right: 7px;
}

.service-card .service-list ul li {
    color: var(--bg-secondary);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding: 5px 0px 5px 50px;
}

.service-card .btn-secondary {
    font-size: 18px;
    padding: 10px 36px;
    color: var(--bg-white);
    background-color: var(--bg-secondary);
}

.service-card .btn-secondary:hover {
    color: var(--bg-secondary) !important;
    background-color: transparent !important;
}

/* =============================  payment  ================================= */

.payment-section {
    background: rgba(237, 10, 128, 0.03);
}

.payment_method img {
    margin: 5px;
}

/* =============================  client review  ================================= */

.review-wrapper {
    border-radius: 15.934px;
    background: var(--bg-secondary);
    padding: 39.836px;
    margin-left: 30px;
    margin-right: 30px;
}

.client-img img {
    width: 100px !important;
    height: 100px !important;
    margin-bottom: 18px;
    border-radius: 100px;
}

.client-name h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 19.918px;
}

.review-content p {
    font-size: 14px;
    font-weight: 400;
}


.client_reviews .swiper-button-next,
.client_reviews .swiper-button-prev {
    background: #F6F6F6;
    width: 50px;
    height: 50px;
    border-radius: 12px;
}

.client_reviews .swiper-button-next:after,
.client_reviews .swiper-button-prev:after {
    font-size: 21px;
    color: #222222;
}

/* =============================  blog  ================================= */

.blog-section {
    border-top: 1px solid #E4E4E4;
    border-bottom: 1px solid #E4E4E4;
    background: #F9F9F9;
}

.blog-post {
    border-radius: 12px;
    border: 1px solid var(--secondary-100, #E8E8EA);
    background: var(--White, #FFF);
}

.blog-content span {
    border-radius: 6px;
    background: rgba(75, 107, 251, 0.05);
    padding: 4px 10px;
    color: var(--bg-primary);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 18px;
    display: inline-block;
}

.blog-content h3 {
    line-height: 30px;
    margin-bottom: 22px;
}

.blog-content h3 a {
    color: var(--bg-secondary);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 25px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    margin: 0 !important;
    letter-spacing: 0;
}
.blog-content h3 a:hover {
    color: var(--bg-primary);
}

.blog-photo img {
    width: auto !important;
    max-height: 250px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

.author img {
    border-radius: 100px;
    border: 2px solid #f0f0f0;
}

.blog-content .author h4 {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    vertical-align: middle;
    align-items: center;
    display: flex;
    margin: 0px 12px;
}

.blog-content .author h6 {
    font-size: 14px;
    color: #888;
    font-weight: 400;
    vertical-align: middle;
    align-items: center;
    display: flex;
    margin: 0;
}

.blog-post:hover .blog-photo img {
    transform: scale(1.1);
}

.blog-photo {
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 250px;
    overflow: hidden;
}

.blog-photo img {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}


/* =============================  contact  ================================= */

.contact-form .form-control {
    border: none;
    border-bottom: 2px solid #d6d6d6;
    border-radius: 0px;
    outline: none !important;
    box-shadow: none !important;
    padding-left: 2px;
    padding-right: 0;
}

.contact-form .form-control:focus {
    border-color: var(--bg-primary);
}

.contact-form .form-floating>label {
    padding-left: 0;
    color: var(--bg-secondary);
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
}

.contact-form {
    border-radius: 12px;
    background: var(--bg-white);
    box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
    padding: 50px;
}

/* For standard property */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #222;
    -moz-text-fill-color: #222;
    -ms-text-fill-color: #222;
    -o-text-fill-color: #222;
    background: #1f1f1f !important;
    caret-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #222;
    -moz-text-fill-color: #222;
    -ms-text-fill-color: #222;
    -o-text-fill-color: #222;
    background-color: #1f1f1f !important;
    caret-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* For Mozilla Firefox */
input:-moz-autofill,
textarea:-moz-autofill {
    -moz-text-fill-color: #222;
    background: #ffffff !important;
    caret-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

select:-moz-autofill {
    -moz-text-fill-color: #222;
    background-color: #ffffff !important;
    caret-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* For Microsoft Edge and Internet Explorer */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    -ms-text-fill-color: #222;
    background: #ffffff !important;
    caret-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* For Opera */
input:-o-autofill,
textarea:-o-autofill {
    -o-text-fill-color: #222;
    background: #ffffff !important;
    caret-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}


select:-o-autofill {
    -o-text-fill-color: #222;
    background-color: #ffffff !important;
    caret-color: #fff !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* =============================  footer  ================================= */

.footer-seciton {
    background: #F8F9FA;
}

.footer-logo img {
    width: 170px;
    height: 20px;
}

.footer-heading,
.footer-logo {
    margin-bottom: 26px;
}

.footer-text {
    color: #77808B;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}


.footer-heading h3 {
    color: var(--bg-secondary);
    font-variant-numeric: lining-nums proportional-nums;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.footer-links ul li a {
    color: #767676;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    padding: 5px 0px;
    display: inline-block;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}


.footer-links ul li a:hover {
    color: var(--bg-primary)
}

.footer-widget .form-control {
    outline: none !important;
    box-shadow: none !important;
    border: 2px solid #dcdcdc;
}

.social_media ul li a {
    width: 42px;
    height: 42px;
    display: inline-block;
    background: var(--bg-secondary);
    text-align: center;
    border-radius: 100px;
    margin-right: 11px;
    color: #fff;
    font-size: 18px;
    line-height: 42px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.social_media ul li a:hover {
    background-color: var(--bg-primary);
}

.copyright {
    background: var(--white-white-20, #F8F9FA);
}

.copyright {
    border-top: 1px solid #EBEBEB;
    padding: 15px 0px;
    margin-top: 20px;
}

.copyright p {
    margin: 0;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

/* =============================  register form  ================================= */

.register-form {
    max-width: 26rem;
    margin: auto;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #D0D5DD;
    outline: none !important;
    box-shadow: none !important;
    font-size: 15px;
    padding: 12px 8px;

}

.register-form .form-control:focus {
    border-color: #D0D5DD !important;
}

.form-label {
    color: var(#272B2E);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


.form-control::placeholder {
    color: #b0b0b0;
    font-size: 16px;
    font-weight: 400;
}

.register-form .input-group-text {
    color: #667085;
    background: transparent;
}

.register-form .btn-primary {
    padding: 12px 20px;
}

.register-form .btn-primary:hover {
    background-color: var(--bg-secondary);
    border-color: var(--bg-secondary);
    color: var(--bg-white);
}

.google-map iframe {
    border-radius: 35px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* =============================  faq  ================================= */
.faq-section .accordion-item {
    margin-bottom: 10px;
    border: none;
    border-bottom: 2px solid #f0f0f0;
    border-radius: 0px;
    padding: 0 !important;
}

.faq-section .accordion-button {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    font-size: 16px;
    font-weight: 600;
    color: var(--bg-secondary);
    padding: 15px 0px;
}


.faq-section .accordion-button.collapsed {
    font-weight: 400;
}


.faq-section .accordion-body {
    padding: 20px 0px;
    font-size: 14px;
    color: #444;
}

.faq-section .accordion-body p {
    margin-bottom: 0;
}


.about-content h3 {
    color: var(--bg-secondary);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 48px;
}

.about-content p {
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.about-content h4 {
    color: var(--bg-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.about-service-content h3 {
    color: var(--bg-secondary);
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
}


.about-service-content ul li i {
    background: #8FC400;
    color: #fff;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 100px;
    line-height: 21px;
    display: inline-block;
    margin-right: 5px;
}

.about-service-content ul li {
    padding: 5px 0px;
    font-size: 15px;
    color: #666;
}


.managemnt_system {
    background: #F3F3F3;
    border-radius: 16px;
    border: 2px solid transparent;
    padding: 12px;
    min-height: 80px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.managemnt_system:hover {
    border: 2px solid var(--bg-primary);
    background: rgba(4, 135, 226, 0.24);
}

.managemnt_system h3 {
    color: var(--bg-secondary);
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}



/* =============================  package  ================================= */

.package-section .toggle {
    position: relative;
    width: 74px;
    height: 33px;
    border-radius: 100px;
    background-color: var(--bg-secondary);
    overflow: hidden;
    margin: 0px 12px;
}

.package-section .check {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
}

.package-section .check:checked~.switch {
    right: 2px;
    left: 57.5%;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: .08s, 0s;
}

.package-section .switch {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 57.5%;
    background-color: #fff;
    border-radius: 36px;
    z-index: 1;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: 0s, .08s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.package-section .section-headign label {
    color: var(--bg-secondary);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    display: inline-block;
}

.package-section .toggler {
    border: 2px solid transparent;
    padding: 4px 20px;
    border-radius: 50px;
}

.package-section .toggler.active {
    border: 2px solid var(--bg-primary);
}

.package-section .toggle.active {
    background: #00be34;
}


.package-wrap {
    border-radius: 24px;
    border: 1px solid #EFF0F6;
    background: var(--bg-white);
    box-shadow: 0px 2px 12px 0px rgba(20, 20, 43, 0.08);
    padding: 35px;
    display: flex;
    flex-direction: column;
    min-height: 570px;
}

.package-name h3 {
    color: var(--bg-secondary);
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 10px;
}

.package-price h4 {
    color: var(--bg-secondary);
    font-size: 34px;
    font-style: normal;
    font-weight: 800;
    line-height: 60px;
}

.package-price h4 sub {
    color: #474747;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.package-features ul li {
    font-size: 15px;
    line-height: 32px;
    padding: 2px 0px;
}

.package-features ul li i {
    background: #ddd;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    border-radius: 50px;
    margin-right: 5px;
}


.package-features ul li .fa-check {
    background: #1ABA00;
    color: #fff;
}

.package-features ul li .fa-times {
    background: #dc3545;
    color: #fff;
}

.package-section .btn-secondary {
    padding: 12px 30px;
    background: var(--bg-secondary);
    color: #fff !important;
}

.package-section .btn-secondary:hover {
    background: var(--bg-primary) !important;
    border-color: var(--bg-primary) !important;
}

.middle_package .btn-secondary {
    color: var(--bg-primary) !important;
    border-color: #fff !important;
}

.middle_package .btn-secondary:hover {
    background: var(--bg-secondary) !important;
    color: #fff !important;
    border-color: var(--bg-secondary) !important;
}



.package-section .qty-container {
    align-items: center;
    border: 1px solid var(--bg-primary);
    border-radius: 50px;
    text-align: center;
    width: 110px;
    display: inline-block;
}

.package-section .qty-container .input-qty {
    text-align: center;
    padding: 0px 0px;
    border: none;
    outline: none;
    box-shadow: none;
    width: 40px;
    height: 26px;
}

.package-section .qty-container .qty-btn-minus,
.package-section .qty-container .qty-btn-plus {
    font-size: 10px;
    transition: 0.3s;
    padding: 0;
    border-radius: 50px;
    margin: auto;
    text-align: center;
    border: none !important;
    background: transparent;
}


.package-section .qty-container .qty-btn-minus i {
    background: var(--bs-danger);
    color: #fff;
    margin: 0;
}

.package-section .qty-container .qty-btn-plus i {
    background: var(--bg-primary) !important;
    color: #fff;
    margin: 0;
}

.package-section .qty-container .qty-btn-plus {
    margin-left: -1px;
}

.package-section .qty-container .qty-btn-minus {
    margin-right: -1px;
}


.package-section .btn-outline-primary {
    border-color: var(--bg-primary) !important;
    color: var(--bg-primary) !important;
    font-size: 15px;
    padding: 1px 14px;
    font-weight: 500;
}

.package-section .btn-check:checked+.btn,
.package-section .btn.active,
.package-section .btn.show,
.package-section .btn:first-child:active,
:not(.btn-check)+.btn:active {
    background: var(--bg-primary) !important;
    color: #fff !important;
}

/* =============================  Blog Post  ================================= */

.blog_sec .card-type {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 1px 14px;
    color: #fff;
    background: var(--bg-primary);
    z-index: 1;
    font-size: 13px;
    border-radius: 3px;
}

.blog_sec .card-meta strong {
    color: #333 !important;
}

.blog_sec .card-meta {
    font-size: 13px;
    color: #999 !important;
}

.blog_sec .card-title {
    margin-bottom: 0.75rem;
}

.blog_sec .card-title a {
    font-weight: 600;
    line-height: 1.2;
    transition: 0.2s ease;
    font-size: 18px;
    color: #323232;
}

.blog_sec .card-title a:hover {
    color: var(--bg-primary) !important;
}

.blog_sec .section-title-border {
    position: relative;
    height: 5px;
    width: 30px;
    background: var(--bg-primary);
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
}

.blog_sec .section-title-border::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 50%;
    background: var(--bg-primary);
    border-radius: 10px;
    right: -60%;
    top: 0;
}

.blog_sec .section-title-border::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 25%;
    background: var(--bg-primary);
    border-radius: 10px;
    right: -100%;
    top: 0;
}

.blog_sec .card-text:last-child {
    margin-bottom: 0;
}

.card-text {
    color: #818385;
    line-height: 26px;
}

.blog_sec .pagination .page-link {
    width: 38px;
    height: 38px;
    line-height: 25px;
    color: #222;
    font-size: 15px;
    margin: 0px 4px !important;
    border-radius: 50px !important;
    border-color: #EEE;
    box-shadow: none !important;
}

.blog_sec .pagination .active>.page-link,
.page-link.active {
    background-color: var(--bg-primary) !important;
    border-color: var(--bg-primary) !important;
    color: #fff !important;
}

.blog_sidebar h4 {
    color: #323232;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}

.blog_sec .card-img {
    -webkit-clip-path: circle(157% at 50% -100%);
    clip-path: circle(157% at 50% -100%);
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
}

.blog_sidebar .media-body h5 a {
    font-size: 15px;
    color: #323232;
    text-transform: uppercase;
}

.blog_sidebar .media-body span {
    color: #999;
}

.blog_sidebar .media-body h5 a:hover {
    color: var(--bg-primary) !important;
}

.blog_sidebar .list-styled li {
    position: relative;
    padding-left: 20px;
}

.blog_sidebar .list-styled.style-circle li::before {
    content: "\f10c";
}

.blog_sidebar .list-styled li::before {
    position: absolute;
    content: "\f105";
    font-family: "FontAwesome";
    font-size: 14px;
    left: 0;
    top: 1px;
    color: var(--bg-primary);
    transition: 0.3s ease;
}

.blog_sidebar .list-styled li a {
    color: #818385;
}

.blog_sidebar .list-styled li a:hover {
    color: var(--bg-primary);
}

.blog_sidebar .border-bottom {
    border-bottom: 1px solid #EEE !important;
}


.single_post .title {
    font-size: 25px;
    color: #222222;
    margin-bottom: 16px;
}

.single_post p {
    font-weight: 400;
    color: #818385;
    font-size: 14px;
    line-height: 1.8;
}

.single_post blockquote {
    padding: 40px 40px;
    font-style: italic;
    color: #172231;
    border-left: 4px solid var(--bg-primary);
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1);
    position: relative;
    margin-bottom: 40px;
}

.single_post blockquote::before {
    position: absolute;
    content: "\f10d";
    font-family: "FontAwesome";
    font-size: 100px;
    color: #0487e21f;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-style: normal;
}

.single_post .heading {
    font-size: 22px;
    color: #323232;
}

.comment_box {
    border: 1px solid #f5f5f5;
    padding: 25px;
    border-radius: 12px;
}



.comment_list h5 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
}

.comment_list p {
    font-size: 14px;
    margin: 0;
    color: #777;
}

.comment_list .btn-gray {
    background: #f5f6fa;
    color: #172231;
    border-color: #f5f6fa;
}

.contact_info li {
    padding: 10px 0px;
    vertical-align: middle;
    display: block;
}

.contact_info li a {
    color: #222;
    font-weight: 400;
    font-size: 15px;
    display: inline !important;
}

.modal-footer {
    background: #fafafa;
}


























/* ==========================================================================
     Helper classes
     ========================================================================== */

/*
   * Hide visually and from screen readers
   */

.hidden,
[hidden] {
    display: none !important;
}

.visually-hidden {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
    /* 1 */
}

.visually-hidden.focusable:active,
.visually-hidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    white-space: inherit;
    width: auto;
}

/*
   * Hide visually and from screen readers, but maintain layout
   */

.invisible {
    visibility: hidden;
}

/*
   * Clearfix: contain floats
   *
   * The use of `table` rather than `block` is only necessary if using
   * `::before` to contain the top-margins of child elements.
   */

.clearfix::before,
.clearfix::after {
    content: "";
    display: table;
}

.clearfix::after {
    clear: both;
}

/* ==========================================================================
     EXAMPLE Media Queries for Responsive Design.
     These examples override the primary ('mobile first') styles.
     Modify as content requires.
     ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
     Print styles.
     Inlined to avoid the additional HTTP request:
     https://www.phpied.com/delay-loading-your-print-css/
     ========================================================================== */

@media print {

    *,
    *::before,
    *::after {
        background: #fff !important;
        color: #000 !important;
        /* Black prints faster */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]::after {
        content: " (" attr(href) ")";
    }

    abbr[title]::after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
    a[href^="#"]::after,
    a[href^="javascript:"]::after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}