body {
    margin: 0;
    padding: 0;
    /* color: var(--bs-secondary); */
    color: #737f92;
    font-size: 1rem;
    line-height: 1.428571429;
    font-weight: 400;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/*
* common settings
*/
a {
    color: var(--bs-secondary);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    text-decoration: none;
}

a:focus,
a:hover {
    color: #335075;
    outline: none;
    text-decoration: none;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

p {
    font-size: 1rem;
    margin: 0 0 14px 0;
    line-height: 1.5;
}


/*
* Image Alignment
*/

img.alignleft {
    float: left;
    margin: 0 15px 15px 0;
    display: inline;
}

img.alignright {
    float: right;
    margin: 0 0px 15px 15px;
    display: inline;
}

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
}


ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
    font-size: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--bs-secondary);
    line-height: 1.3;
    margin-bottom: 1rem;
}


h1,
.h1 {
    font-size: 3.63rem;
    /* 58px */
}

h2,
.h2 {
    font-size: 2.63rem;
    /* 42px */
}

h3,
.h3 {
    font-size: 2rem;
    /* 38px */
}

h4,
.h4 {
    font-size: 1.5rem;
    /* 28px */
}

h5,
.h5 {
    font-size: 1.25rem;
    /* 20px */
    margin-bottom: .5rem;
}

h6,
.h6 {
    font-size: 1rem;
    /* 16px */
}

@media screen and (max-width:767px) {

    h1,
    .h1 {
        font-size: 3.313rem;
        /* 53px */
    }

    h2,
    .h2 {
        font-size: 2.313rem;
        /* 37px */
    }

    h3,
    .h3 {
        font-size: 2.125rem;
        /* 34px */
    }

    h4,
    .h4 {
        font-size: 1.563rem;
        /* 25px */
        font-weight: 500;
    }
}

/*
* common utility
*/
.badge {
    font-weight: 400;
}

.brand-color {
    color: #7ed958;
}

.text-black {
    color: #333;
}

.text-dark {
    color: #787878 !important;
}

.img-align-right {
    margin: 0 0 .5rem 0;
}

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

.overlay {
    position: relative;
}

.overlay::before {
    position: absolute;
    left: 0px;
    top: 0px;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.overlay.dark-1::before {
    background: rgba(0, 0, 0, 0.8);
}

.z-index-1 {
    z-index: 1;
}

/* Owl-nav---------*/
.owl-carousel .owl-nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    line-height: 53px;
    color: var(--bs-white);
    border-radius: 0;
    background-color: rgba(var(--bs-primary-rgb), .3);
    outline: none;
    text-align: center;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--bs-secondary);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.owl-carousel .owl-nav button.owl-next {
    float: right;
}

/* Owl Dots---------*/
.owl-carousel .owl-dots {
    text-align: center;
}

.owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bs-secondary);
    margin: 0 3px;
}

.owl-carousel button.owl-dot.active {
    background: var(--bs-primary);
}

@media screen and (max-width:767px) {

    .owl-carousel .owl-nav button.owl-prev,
    .owl-carousel .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 35px;
        line-height: 43px;
    }
}

/*
* container
*/
#container {
    min-width: 320px;
    overflow: hidden;
}

@media screen and (max-width:1199px) {
    .container {
        max-width: 100%;
    }
}

@media screen and (min-width:1200px) {
    .custom-container {
        max-width: 100%;
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media screen and (min-width:1367px) {
    .custom-container {
        padding-left: 100px;
        padding-right: 100px;
    }
}

/*
*  Banner
*/
#banner .img-fluid {
    height: 550px;
    object-fit: cover;
    object-position: center;
}

#banner.overlay::before {
    z-index: 1;
}

#banner .description {
    width: 100%;
    z-index: 10;
}

#banner .description h1 {
    margin-bottom: 1.5rem;
}

#banner .description p {
    font-size: 20px;
}

#banner .description h1,
#banner .description p {
    color: var(--bs-white);
}

#banner .description p {
    font-weight: 300;
}

#banner .carousel-control-next,
#banner .carousel-control-prev {
    z-index: 100;
}


@media screen and (min-width:1200px) {
    #banner .img-fluid {
        height: 650px;
    }

    #banner .description p {
        margin-bottom: 2rem;
        font-size: 1.2rem;
    }
}

@media screen and (min-width:1681px) {
    #banner .description h1 {
        font-size: 6.25rem;
    }

    #banner .description p {
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
}

@media screen and (max-width:991px) {
    #banner .description p {
        margin-bottom: 2rem;
    }

    #banner .description h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width:575px) {
    #banner .description {
        text-align: center;
    }

    #banner .description h1 {
        font-size: 2.5rem;
    }

    #banner .description .btn-icon {
        margin: .5rem !important;
    }

    /* #banner .description .btn-icon + .btn-icon{
        margin: 0 !important;
    }  */
}

/*
* Section
*/
.section {
    padding: 60px 0;
}

@media screen and (min-width:1367px) {
    .section {
        padding: 65px 0;
    }
}

.section figure {
    display: block;
}

.section-head {
    margin-bottom: 2.5rem;
    text-align: center;
}

@media screen and (max-width:991px) {
    .section {
        padding: 30px 0;
    }
}


@media screen and (min-width:992px) {
    .section-head {
        max-width: 750px;
        margin: 0 auto 4.5rem;
    }
}

@media screen and (min-width:1200px) {
    .section-head p {
        font-size: 1.25rem;
    }
}

@media screen and (min-width:1367px) {
    .section-head {
        margin-bottom: 3.5rem;
    }

    .section-head p {
        font-size: 1.375rem;
    }
}

/* Heading style ------------*/
.heading-style {
    position: relative;
    margin: 30px 0;
}

.heading-style::before,
.heading-style::after {
    position: absolute;
    left: 0;
    content: '';
    width: 150px;
    height: 5px;
    background-color: var(--bs-secondary);
}

.heading-style::before {
    top: -30px
}

.heading-style::after {
    bottom: -30px;
}

.heading-style2 {
    position: relative;
    margin-bottom: 2.5rem;
}

.heading-style2::before {
    position: absolute;
    bottom: -40px;
    content: '';
    left: 0;
    width: 100px;
    height: 2px;
    background-color: var(--bs-primary);
    margin: 25px auto;
}

.heading-style2.alt::before {
    left: 50%;
    transform: translateX(-50%);
}

.heading-style3 {
    position: relative;
}

.heading-style3::before {
    content: "";
    width: 30px;
    position: absolute;
    top: 13px;
    left: -2px;
    height: 2px;
    margin-right: 10px;
    margin-left: -40px;
    margin-bottom: 10px;
    display: inline-block;
    vertical-align: middle;
    background-color: var(--bs-white);
}

/* First Lettter ------------*/
.letter-style::first-letter {
    font-size: 3rem;
    color: var(--bs-primary);
    text-decoration: uppercase;
    line-height: 1;
    display: inline-block;
    float: left;
    margin-right: .5rem;
}

/*
* header
*/

#header {
    padding-bottom: 15px;
    margin: 0px;
    /* background-color: rgba(0, 0, 0, .1); */
}

.topbar {
    background-color: var(--bs-secondary);
    padding-top: 5px;
    padding-bottom: 5px;
    margin-bottom: 1rem;
}

.topbar ul li {
    display: inline-block;
    color: var(--bs-white);
    font-size: .875rem;
}

.topbar ul li:not(:last-child) {
    margin-right: 10px;
}

.topbar ul li a {
    color: var(--bs-white);
}

.topbar ul li a:hover,
.topbar ul li a:focus,
.topbar ul li a:active {
    opacity: .6;
}

@media screen and (max-width:767px) {
    #header {
        padding-top: 15px;
    }

    .topbar {
        display: none;
    }

    .topbar ul li {
        margin-bottom: 5px;
    }
}

.contact-area li {
    position: relative;
    display: flex;
    align-items: center;
}

.contact-area li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--bs-white);
    margin-right: 1rem;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.contact-area li:hover .icon {
    background-color: var(--bs-white);
    color: var(--bs-primary);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

#footer .contact-area li .info a {
    font-size: 1.125rem;
    color: var(--bs-white);
}

.contact-area li:not(:last-child) {
    padding-right: 1rem;
}

.contact-area li:not(:last-child)::before {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 2px;
    height: 15px;
    background-color: var(--bs-white);
}

.topbar ul.social-group li {
    margin-right: 1rem;
}

#header.style2 {
    background-color: #fafafa;
}

#header.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 15px;
    /* background-color: rgba(236, 34, 39, .9); */
    background-color: var(--bs-white);
    -webkit-animation: slideDown .35s ease-in-out;
    animation: slideDown .35s ease-in-out;
}

#header:not(.fixed-header) .logo-sticky,
#header.fixed-header .logo-img {
    display: none;
}

#header.fixed-header .logo-sticky {
    display: block;
}


@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    to {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes slideUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    to {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}


.logo a,
.logo img {
    display: inline-block;
}

#header .logo img {
    display: block;
    width: 100%;
}

#header.fixed-header .logo img {
    max-width: 180px;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.logo img {
    max-width: 225px;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

/* 
@media screen and (max-width:991px) {
    #header {
        padding: 15px 0 10px;
    }
} */

@media screen and (max-width:575px) {
    .logo img {
        max-width: 180px;
    }
}

/*
* footer
*/
#footer {
    padding-top: 3rem;
    background-color: var(--bs-secondary);
}

#footer h4 {
    color: var(--bs-white);
}

#footer p {
    font-size: 1.125rem;
    color: var(--bs-white);
}

/* #footer .logo .img-fluid {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
} */

.footer-logo a {
    display: inline-block;
}

#footer h5,
#footer p {
    color: var(--bs-white);
}

#footer address p {
    margin-bottom: 0px;
}

#footer .footer-bottom p {
    font-size: 1rem;
}

#footer .footer-bottom p a:hover,
#footer .footer-bottom p a:focus,
#footer .footer-bottom p a:active {
    color: var(--bs-white);
}

/* Footer top*/
.footer-top {
    border-top: 1px solid #4B4B4B;
    border-bottom: 1px solid #4B4B4B;
    padding: 20px 0;
    margin-bottom: 2rem;
}

ul.secondary-nav {
    text-align: center;
}

ul.secondary-nav li {
    display: inline-block;
    margin: 0 .5rem;
    padding: 0 .5rem;
    position: relative;
}

ul.secondary-nav li:not(:last-child)::before {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    content: '';
    width: 2px;
    height: 15px;
    background-color: #6a6f80;
}

ul.secondary-nav li a {
    color: #bec1c9;
    font-size: .75rem;
}

ul.secondary-nav li a:hover,
ul.secondary-nav li a:focus,
ul.secondary-nav li a:active {
    text-decoration: underline;
}

/* Footer Nav ------------*/
.social-links li {
    display: inline-block;
    position: relative;
}

.social-links li:not(:last-child) {
    margin-right: 10px;
}

.social-links li a {
    background-color: transparent;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border: 1px solid #4B4B4B;
    color: var(--bs-primary);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 34px;
}

.social-links li a:hover,
.social-links li a:active,
.social-links li a:focus {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
    text-decoration: none;
}

/* Footer Bootom ---*/
.footer-bottom {
    border-top: 1px solid #4B4B4B;
    padding: 15px 0;
}

.footer-bottom p {
    margin-bottom: 0;
}

#footer p {
    /* color: var(--bs-gray-600); */
    color: #7e8394;
}

.footer-bottom p a {
    color: #7e8394;
}

.footer-bottom p a:hover,
.footer-bottom p a:focus,
.footer-bottom p a:active {
    color: var(--bs-primary);
}

.footer-links li {
    margin-bottom: 1rem;
    position: relative;
}

.footer-links li:not(:last-child) {
    margin-right: 5px;
    padding-right: 10px;
}

.footer-links li a {
    color: var(--bs-gray-600);
    font-size: 16px;
    font-weight: 300;
    position: relative;
}

.footer-links li a::after {
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-size: 1rem;
    line-height: 1;
    color: var(--bs-white);
    content: "\f105";
    position: absolute;
    top: 4px;
    left: 0;
    opacity: 0;
}

.footer-links li a:hover,
.footer-links li a:focus,
.footer-links li a:active,
#footer .contact-area li a:hover,
#footer .contact-area li a:focus,
#footer .contact-area li a:active {
    color: var(--bs-white)
}

.footer-links li a:hover::after {
    opacity: 1;
}

.footer-links li a:hover,
.footer-links li a:focus,
.footer-links li a:active {
    padding-left: 1rem;
}

@media screen and (min-width:768px) {
    ul.footer-links li {
        width: calc(100% / 2 - 15px);
        float: left;
    }

    ul.footer-links li:nth-child(odd) {
        margin-right: 15px;
    }
}

@media screen and (max-width:991px) {
    #footer {
        padding: 2rem 0;
    }
}

@media screen and (max-width:767px) {
    #footer .logo {
        margin-bottom: 1rem;
    }

    #footer .social-links {
        margin-bottom: 30px;
    }
}

@media screen and (max-width:575px) {
    /* #footer [class*="col-"] {
        margin-bottom: 3rem;
    } */

    #footer [class*="col-"]:last-child,
    #footer .logo {
        margin-bottom: 0rem;
    }

    #footer .social-links {
        margin-bottom: 15px;
    }
}

#footer .contact-area li,
#footer .contact-area li a {
    color: var(--bs-gray-600);
}

#footer .contact-area li:not(:last-child) {
    margin-bottom: .875rem;
}

#footer .contact-area li:not(:last-child)::before {
    display: none;
}


/*
*  Main-nav
*/
#main-menu ul {
    text-align: right;
}

#main-menu ul li {
    display: inline-block;
    position: relative;
    margin: 0 -2px;
    text-align: center;
}

#main-menu ul li a {
    padding: 10px 15px;
    display: block;
    font-size: 1rem;
    line-height: 1.4;
    color: #000;
    border: 0px;
    border-radius: 10px;
}

#main-menu ul li a.btn {
    min-width: 100px;
}

#main-menu ul li a.selected,
#main-menu ul li a:hover,
#main-menu ul li a:focus,
#main-menu ul li a:active {
    color: var(--bs-primary-dark);
}

.fixed-header #main-menu ul li a {
    color: var(--bs-secondary);
}

.fixed-header #main-menu ul li a.selected,
.fixed-header #main-menu ul li a:hover,
.fixed-header #main-menu ul li a:focus,
.fixed-header #main-menu ul li a:active {
    color: var(--bs-primary-dark);
}


.fixed-header #main-menu ul li li a.selected,
.fixed-header #main-menu ul li li a:hover,
.fixed-header #main-menu ul li li a:focus,
.fixed-header #main-menu ul li li a:active {
    color: var(--bs-white);
}

#main-menu ul li a.btn-primary,
#main-menu ul li a.btn-dark {
    color: var(--bs-primary-dark);
}

#main-menu ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    min-width: 12rem;
    width: 100%;
    max-width: 200px;
    font-size: 1rem;
    color: var(--bs-primary-dark);
    text-align: left;
    list-style: none;
    background-clip: padding-box;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    border: 0;
    border-radius: 4px;
    margin: 0;
    /* padding: 15px; */
    background: var(--bs-white);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

#main-menu ul ul li {
    display: block;
    margin: 0;
    padding: 0;
    text-align: left;
}

#main-menu ul ul li a {
    border-radius: 0px;
}

#main-menu ul ul li:first-child a {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

#main-menu ul ul li:last-child a {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

#main-menu ul ul li a,
#main-menu ul ul li a>.fa {
    color: var(--bs-primary-dark);
}

#main-menu ul ul li a>.fa {
    float: right;
}

#main-menu ul ul li a:hover,
#main-menu ul ul li a:focus,
#main-menu ul ul li a:active {
    color: var(--bs-white);
    background: var(--bs-primary-dark);
}

#main-menu ul li:hover>ul {
    display: block;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}


#main-menu ul ul ul {
    top: 0;
    left: 100%;
}

/* Header style2 -------------*/
#main-menu.style2 ul li a {
    color: var(--bs-secondary);
}

#main-menu.style2 ul li a:hover,
#main-menu.style2 ul li a:focus,
#main-menu.style2 ul li a:active {
    color: var(--bs-primary-dark);
}

#main-menu.style2 ul ul li a:hover,
#main-menu.style2 ul ul li a:focus,
#main-menu.style2 ul ul li a:active {
    background-color: var(--bs-primary-dark);
    color: var(--bs-white);
}

/*
* Mobile-menu
*/

@media screen and (min-width:992px) {
    .mobile-menu {
        display: none;
    }
}

@media screen and (min-width:1200px) {
    #main-menu ul li a {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media screen and (max-width:1199px) {
    #main-menu ul li a {
        min-width: auto;
    }
}

@media screen and (max-width:991px) {
    #header .btn-dark {
        position: absolute;
        right: 5rem;
        top: -47px;
    }

    .mean-container a.meanmenu-reveal {
        margin-top: -48px;
        margin-right: 15px;
    }

    .mean-container .mean-nav ul ul {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .mean-container .mean-nav ul li {
        text-align: center;
        float: none;
    }

    .mean-container .mean-nav ul li a {
        font-size: 14px;
        text-align: center;
        float: none;
    }

    .mean-container .mean-nav ul li a .fa {
        display: none;
    }

    .mean-container .mean-nav ul li a,
    .mean-container .mean-nav ul li li li a {
        padding-top: 12px;
        padding-bottom: 11px;
    }

    .mean-container .mean-nav ul li.mean-last a {
        padding-top: 10px;
        padding-bottom: 9px;
    }

    /* .mean-container .mean-nav ul li:last-child a{
        border-bottom: 1px solid rgba(255,255,255,0.5);
    } */

    .mobile-menu .meanclose+.mean-nav .btn {
        display: inline-block;
        width: 200px;
        margin: 0 auto 1rem;
    }

    .mean-nav .btn {
        margin: 15px;
    }

    .mean-container .mean-nav ul li a.btn {
        border: 0;
    }

    .mean-nav ul li a .fa-angle-down {
        display: none;
    }
}

@media screen and (max-width:575px) {

    .mean-container .mean-nav ul li a,
    .mean-container .mean-nav ul li li a,
    .mean-container .mean-nav ul li li li a {
        padding-top: 9px;
        padding-bottom: 10px;
    }

    .mean-container a.meanmenu-reveal {
        margin-top: -40px;
    }
}

/*
* buttons
*/
/* .btn:not(.btn-sm){
    min-width: 130px;
} */

.btn {
    border-radius: 0;
    font-weight: 400;
    cursor: pointer;
    line-height: 1.4;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

/* .btn:not(.btn-sm) {
    min-width: 125px;
} */

.btn:hover,
.btn:focus,
.btn:active {
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.btn-primary {
    border-width: 2px;
    color: var(--bs-white);
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    text-transform: capitalize;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled):active,
.btn-primary:not([disabled]):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
    background-color: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
    outline: none;
    box-shadow: none;
    color: var(--bs-white);
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-width: 2px;
    border-color: var(--bs-secondary);
    color: var(--bs-white);
    display: inline-block;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    text-transform: capitalize;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary:not([disabled]):not(.disabled):active,
.btn-secondary:not([disabled]):not(.disabled).active,
.show>.btn-secondary.dropdown-toggle {
    background-color: var(--bs-black);
    border-color: var(--bs-black);
    outline: none;
    box-shadow: none;
    color: var(--bs-white);
    opacity: .8;
}


.btn-blue {
    background: #106ad9;
    border-color: #106ad9;
    color: var(--bs-white);
}

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

.btn-primary-light:hover,
.btn-primary-light:focus,
.btn-primary-light:active {
    background: var(--bs-primary-dark);
    border-color: var(--bs-primary-dark);
    color: var(--bs-white);
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:active {
    background: #0b4a97;
    border-color: #0b4a97;
    color: var(--bs-white);
}


.btn-info,
.btn-danger {
    padding: .4rem 1rem;
    border-radius: 0px;
    display: inline-block;
    cursor: pointer;
    text-transform: capitalize;
}

.btn-link,
.btn-link:hover,
.btn-link:focus,
.btn-link:active,
.btn-link:not([disabled]):not(.disabled):active,
.btn-link:not([disabled]):not(.disabled).active,
.show>.btn-link.dropdown-toggle {
    color: orange;
    line-height: 1.2;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    color: var(--bs-white);
}

.btn-icon {
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    text-align: left;
    padding: 0.75rem 1.5rem;
    color: var(--bs-white);
}

.btn-icon span {
    display: inline-block;
    vertical-align: middle;
}

.btn-icon .icon {
    margin-right: 15px;
}

.btn-icon .fab {
    font-size: 25px;
}

.btn-android {
    color: #ccdb38;
}

.btn-android:hover,
.btn-android:focus,
.btn-android:active {
    border-color: #ccdb38;
    background-color: #ccdb38;
    color: var(--bs-white);
}

@media screen and (min-width:1367px) {
    .btn-icon {
        font-size: 18px;
    }

    .btn-icon .fab {
        font-size: 55px;
    }

    .btn-icon .icon {
        margin-right: 15px;
    }
}


/*Btn Style One*/

.btn-style-one {
    position: relative;
    display: inline-block;
    overflow: hidden;
    text-transform: capitalize;
}

.btn-style-one:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: #171a1d;
    border-color: #171a1d;
}

.btn-style-one .txt {
    position: relative;
    z-index: 1;
}

.btn-style-one:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

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

/* Btn Style Two */

.btn-style-two {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: var(--bs-white);
    padding: 11px 32px 11px;
    font-weight: 600;
    overflow: hidden;
    background: none;
    letter-spacing: 1px;
    border-radius: 2px;
    text-transform: uppercase;
    border: 1px solid var(--bs-white);
}

.btn-style-two:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #c1a974;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
}

.btn-style-two .txt {
    position: relative;
    z-index: 1;
}

.btn-style-two:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-two:hover {
    color: var(--bs-white);
    border-color: #c1a974;
}

/* Btn Style Three */

.btn-style-three {
    position: relative;
    display: inline-block;
    line-height: 30px;
    color: var(--bs-white);
    font-weight: 700;
    overflow: hidden;
    border-radius: 0px;
    letter-spacing: 1px;
    padding: 18px 44px;
    background: #c1a974;
    text-transform: capitalize;
}

.btn-style-three:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: #222222;
}

.btn-style-three .txt {
    position: relative;
    z-index: 1;
}

.btn-style-three:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-three:hover {
    color: var(--bs-white);
}

/* Btn Style Four */

.btn-style-four {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: var(--bs-white);
    font-weight: 700;
    overflow: hidden;
    background: none;
    border-radius: 0px;
    letter-spacing: 1px;
    padding: 18px 44px;
    text-transform: capitalize;
    background-color: #222222;
}

.btn-style-four:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: #c1a974;
}

.btn-style-four .txt {
    position: relative;
    z-index: 1;
}

.btn-style-four:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-four:hover {
    color: var(--bs-white);
}

/* Btn Style Five */

.btn-style-five {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #222222;
    font-weight: 700;
    overflow: hidden;
    background: none;
    border-radius: 0px;
    letter-spacing: 1px;
    padding: 18px 44px;
    text-transform: capitalize;
    background-color: var(--bs-white);
}

.btn-style-five:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: #222222;
}

.btn-style-five .txt {
    position: relative;
    z-index: 1;
}

.btn-style-five:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-five:hover {
    color: var(--bs-white);
}

/* Btn Style Six */

.btn-style-six {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: var(--bs-white);
    font-weight: 800;
    overflow: hidden;
    background: none;
    border-radius: 0px;
    padding: 15px 40px;
    text-transform: capitalize;
    background-color: #ff000c;
}

.btn-style-six:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
    background-color: #111111;
}

.btn-style-six .txt {
    position: relative;
    z-index: 1;
}

.btn-style-six:hover::before {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-six:hover {
    color: var(--bs-white);
}

/*
* absolute-center
*/
.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

/*
  * vertical-center
  */
.vertical-center {
    position: absolute;
    top: 50%;
    left: 0px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*
  * horizontal-center
  */
.horizontal-center {
    position: absolute;
    left: 50%;
    top: 0px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*
*  Bg color
*/

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

.bg-gray {
    background-color: #f3f3f3;
}

.bg-gray-light {
    background-color: #f5f5f5;
}

.bg-blue-light {
    background-color: #ecf4fb !important;
}


/*
* Hover Style
*/
.hover-styled {
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.hover-styled:hover {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}



/*
*  Box shadow
*/
.box-shadow {
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

.box-shadow2 {
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.box-shadow3 {
    -webkit-box-shadow: 0px 0px 8px 0px rgba(209, 209, 209, 1);
    -moz-box-shadow: 0px 0px 8px 0px rgba(209, 209, 209, 1);
    box-shadow: 0px 0px 8px 0px rgba(209, 209, 209, 1);
}

.form .form-group {
    position: relative;
}

.form .form-group .icon {
    background-color: var(--bs-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    color: var(--bs-white);
    margin-bottom: 0;
}

.form label {
    color: var(--bs-secondary);
    font-weight: 500;
    font-size: 1rem;
}

.form label span {
    color: #ff2c4d;
    margin-left: 3px;
}

.form select.form-control,
.form textarea.form-control,
.form input[type="text"].form-control,
.form input[type="password"].form-control,
.form input[type="datetime"].form-control,
.form input[type="datetime-local"].form-control,
.form input[type="date"].form-control,
.form input[type="month"].form-control,
.form input[type="time"].form-control,
.form input[type="week"].form-control,
.form input[type="number"].form-control,
.form input[type="email"].form-control,
.form input[type="url"].form-control,
.form input[type="search"].form-control,
.form input[type="tel"].form-control,
.form input[type="color"].form-control,
.form select.form-control:not([size]):not([multiple]) {
    border-radius: 0px;
    height: 45px;
    color: #999999;
    font-weight: 400;
    font-size: 1rem;
    outline: none;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.form textarea.form-control {
    height: 80px;
    color: #999999;
}

.form textarea.form-control:focus,
.form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--bs-primary);
    color: var(--bs-secondary);
    box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -moz-box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.form .counter {
    position: absolute;
    right: 1rem;
    top: 5px;
}


.form input::-webkit-input-placeholder,
.form textarea.form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #999999;
}

.form input::-moz-placeholder,
.form textarea.form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #999999;
}

.form input:-ms-input-placeholder,
.form textarea.form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #999999;
}

.form input:-moz-placeholder,
.form textarea.form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #999999;
}

/* .form .btn-primary{
    background: var(--bs-secondary);
    color:var(--bs-white);
}

.form  .btn-primary:hover, 
.form .btn-primary:focus, 
.form .btn-primary:active{
    background: #335075;
    border-color:#335075;
} */

.form-check label {
    position: relative;
    padding-left: 1.8rem;
    font-size: 15px;
    display: block;
    text-transform: capitalize;
}

.form-check label a {
    font-size: 14px;
    text-decoration: underline;
}

.form-check input[type="radio"],
.form-check input[type="checkbox"] {
    margin-left: 0px;
    margin-top: 7px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1px;
    height: 1px;
    background: 0 0;
    position: absolute;
    visibility: hidden;
    margin: 0;
    padding: 0;
    border: 0;
}

.form-check label::before {
    font-family: FontAwesome;
    border-radius: 20px;
    color: #a3a3a3;
    font-size: 20px;
    border: 0;
    position: absolute;
    left: 1px;
    top: 50%;
    transform: translateY(-50%);
}

.form-check input[type="radio"]+label::before {
    content: '\f1db';
}

.form-check input[type="radio"]:checked+label::before {
    content: '\f192';
    color: var(--bs-secondary);
}

.form-check input[type="checkbox"]+label::before {
    content: '\f096';
}

.form-check input[type="checkbox"]:checked+label::before {
    content: '\f14a';
    color: var(--bs-secondary);
}

.selectbox {
    position: relative;
    display: block;
}

.form fieldset .selectbox {
    display: block;
}

.form fieldset .selectbox::after {
    top: 13px;
}

.selectbox select {
    font-size: 1rem;
    line-height: 20px;
    color: var(--bs-secondary);
    width: 100%;
    min-width: auto;
    padding: 0.375rem 0.75rem;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-overflow: '';
    border-radius: 0.25rem;
    text-indent: 0.01px;
    border: 1px solid #ced4da;
}

.selectbox select::-ms-expand {
    display: none;
}

.selectbox::after {
    top: 20px;
    right: 15px;
    margin: 0 0 0 0;
    padding: 0px;
    border-color: #ced4da;
    border-style: solid;
    border-width: 0px 1px 1px 0px;
    transform: rotate(45deg);
    width: 10px;
    height: 10px;
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 10;
}

.input-group-addon {
    border-radius: 0px;
}

.input-group .selectbox,
.input-group .form-control {
    width: 100%;
}

.input-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.input-group .selectbox::after {
    top: 11px;
}

@media screen and (min-width:1200px) {

    .form select.form-control,
    .form input[type="text"].form-control,
    .form input[type="password"].form-control,
    .form input[type="datetime"].form-control,
    .form input[type="datetime-local"].form-control,
    .form input[type="date"].form-control,
    .form input[type="month"].form-control,
    .form input[type="time"].form-control,
    .form input[type="week"].form-control,
    .form input[type="number"].form-control,
    .form input[type="email"].form-control,
    .form input[type="url"].form-control,
    .form input[type="search"].form-control,
    .form input[type="tel"].form-control,
    .form input[type="color"].form-control,
    .form select.form-control:not([size]):not([multiple]) {
        height: 50px;
    }

    .form .form-group .icon {
        width: 40px;
        height: 40px;
    }
}

/* Modal--------*/
.modal-body {
    position: relative;
    padding: 0px;
}

.modal-content {
    border-color: transparent;
    border-radius: 0px;
}

.modal .close {
    position: absolute;
    right: -30px;
    top: 0;
    z-index: 999;
    opacity: 1;
    color: var(--bs-white);
}

.close {
    font-size: 2rem;
    font-weight: normal;
    opacity: 1;
    margin-top: -5px;
}

.close:focus,
.close:hover {
    color: #335075;
    text-shadow: 0 1px 0 #335075;
}

/*  ==========================================================================
	Home Page
    ========================================================================== */

/*
* Services Area
*/
.service-box {
    overflow: hidden;
    /* padding: 45px 35px; */
    min-height: 290px;
    position: relative;
    /* margin: 3px 2px 6px; */
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.service-box .service-content {
    position: relative;
    z-index: 10;
    background: var(--bs-white);
    padding: 1rem 1.5rem;
    margin: -5rem 1rem 0 1rem;
    -webkit-box-shadow: 0px 0px 17px -1px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 17px -1px rgba(0, 0, 0, 0.05);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.service-box:hover .service-content {
    background-color: var(--bs-secondary);
}

.service-box:hover .service-content p {
    color: var(--bs-white);
}

.service-box .figure-img.overlay::before {
    z-index: 1;
}

.service-box .figure-img img {
    width: 100%;
    height: 277px;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.service-box:hover .figure-img img {
    transform: scale(1.1);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}


.service-box:hover h4,
.service-box:not(.btn):hover .fa {
    color: var(--bs-white);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.service-box:hover .btn .fa {
    color: var(--bs-white);
}

.service-box .btn:hover .fa,
.service-box .btn:focus .fa,
.service-box .btn:active .fa {
    color: var(--bs-white);
}

.service-box p {
    color: #737f92;
}

/* 
.service-box:hover * {
    color: var(--bs-white);
    border-color: var(--bs-white);
}

.service-box:hover .btn-outline-dark:hover,
.service-box:hover .btn-outline-dark:focus,
.service-box:hover .btn-outline-dark:active {
    background-color: var(--bs-white);
    color: var(--bs-primary);
} */

.service-box>.fa {
    font-size: 1.8rem;
    /* color: var(--bs-primary); */
    color: var(--bs-secondary);
}

/* 
.service-box .service-content {
    margin-left: 1rem;
} */

/*
* Newsletter
*/
.newsletter .container {
    position: relative;
}

.newsletter .container::before {
    position: absolute;
    left: 5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    content: "\f4c4";
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    line-height: 1;
    opacity: .3;
}

.form .newsletter-form input[type="email"],
.form .newsletter-form input[type="submit"] {
    height: 50px;
}

.form .newsletter-form input[type="email"] {
    border-color: rgba(255, 255, 255, 0.15);
    padding-left: 1.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--bs-white);
    font-weight: 400;
}

.form .newsletter-form input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: var(--bs-gray-600);
}

.form .newsletter-form input::-moz-placeholder {
    /* Firefox 19+ */
    color: var(--bs-gray-600);
}

.form .newsletter-form input:-ms-input-placeholder {
    /* IE 10+ */
    color: var(--bs-gray-600);
}

.form .newsletter-form input:-moz-placeholder {
    /* Firefox 18- */
    color: var(--bs-gray-600);
}

.form .newsletter-form input[type="submit"]:hover,
.form .newsletter-form input[type="submit"]:focus,
.form .newsletter-form input[type="submit"]:active {
    background-color: var(--bs-white);
    color: var(--bs-primary);
    border-color: var(--bs-white);
}


@media screen and (min-width:768px) {
    .form .newsletter-form h4 {
        margin-bottom: 0;
    }
}

.newsletter h4 {
    color: var(--bs-white);
}

/*
* Join Us
*/

.join-us-btn .nav-tabs {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(225, 229, 233);
    -o-border-image: initial;
    border-image: initial;
    border-radius: 0;
}

.join-us-btn .nav-tabs .nav-item {
    position: relative;
    border-color: transparent;
    margin-bottom: 0;
}

.join-us-btn .nav-tabs .nav-link.active,
.join-us-btn .nav-tabs .nav-item.show .nav-link {
    border-color: transparent;
    color: var(--bs-white);
    background-color: var(--bs-primary);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.join-us-btn .nav-tabs .nav-item::before {
    color: var(--bs-white);
}

.join-us-btn .nav-tabs .nav-link.active::before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f0d8";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    bottom: -13px;
    font-size: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
}

.join-us-btn {
    display: inline-block;
}

.accordion .card {
    border-radius: 0;
    box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 20%);
}

.accordion .card:not(:last-child) {
    margin-bottom: 10px;
}

.accordion .card-header {
    border-bottom: 0;
}

.accordion .card h5,
.accordion .card p {
    margin-bottom: 0;
}

.accordion .card p {
    font-size: .875rem;
}

.card-header a {
    position: relative;
    display: block;
    font-weight: 500;
}

.card-header a:hover,
.card-header a:focus,
.card-header a:active {
    color: var(--bs-primary);
}

.card-header a::before,
.card-header a::after {
    position: absolute;
    right: 0;
    top: 3px;
    font-size: 1.5rem;
    font-family: "Font Awesome 5 Pro";
    font-style: normal;
    font-weight: 300;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}


.card-header a.collapsed::before {
    content: "\f107";
}

.card-header a:not(.collapsed):after {
    content: "\f106";
}

.join-us .form textarea.form-control {
    height: 150px;
}

/*
* Our Mision
*/
.our-vision {
    background-image: url('../images/bg-join-us.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.our-vision.overlay::before {
    --bs-text-opacity: .7;
    background: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.our-vision * {
    color: var(--bs-white);
}

/*
* Event
*/
.event .event-img {
    width: 100%;
    overflow: hidden;
}

.event .event-img.overlay::before {
    z-index: 1;
}

.event .event-img img {
    width: 100%;
    min-height: 255px;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.event:hover .event-img img {
    transform: scale(1.1);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.event .event-content {
    width: 100%;
    padding: 1rem;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}


@media screen and (min-width:768px) {
    .event .event-img {
        width: 300px;
    }

    .event .event-content {
        min-height: 250px;
        width: calc(100% - 300px);
    }
}


.event:hover .event-content {
    background-color: var(--bs-secondary);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.event .event-content .svg-inline--fa,
.event:hover .event-content h4 {
    color: var(--bs-primary);
}

.event:hover .event-content h4,
.event:hover .event-content ul li,
.event:hover .event-content .svg-inline--fa {
    color: var(--bs-white);
}

.event-date {
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 15px;
    position: absolute;
    left: 0;
    z-index: 2;
    top: 0;
    font-weight: 700;
}


/*
* Brand Logo
*/
/* .brand-grid-wrap {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
} */

.brand-grid-wrap .brand-grid {
    height: 140px;
    text-align: center;
    --bs-text-opacity: .05;
    background-color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity));
    border-radius: 5px;
    padding: 20px;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.brand-grid-wrap .brand-grid img {
    width: auto;
    max-height: 100px;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.brand-grid-wrap .brand-grid:hover {
    --bs-text-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity));
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.brand-grid-wrap .brand-grid:hover img {
    transform: scale(1.1);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.our-partner .owl-carousel .owl-dots {
    bottom: -1.5rem;
    position: relative;
}

/*
* About Us
*/
.btn-play-video {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-play-video .svg-inline--fa {
    color: var(--bs-primary);
    position: relative;
    z-index: 9;
    font-size: 2rem;
}

.btn-play-video:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ffffff repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play-video:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #ffffff repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 200ms;
    -webkit-transition: all 200ms;
    -moz-transition: all 200ms;
    -ms-transition: all 200ms;
    -o-transition: all 200ms;
}

@-webkit-keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}



/* 
* Gallery 
*/
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
}

.gallery-grid .gallery-item {
    border-radius: 5px;
    overflow: hidden;
    height: 300px;
    position: relative;
    will-change: transform, opacity;
}

.gallery-grid .gallery-item .item-inner {
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.gallery-grid .gallery-item .item-inner::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    height: 100%;
    width: 100%;
    background: #000000;
    opacity: 0;
    transition: all 0.35s ease-in-out;
}

.gallery-grid .gallery-item .item-inner:hover::after {
    opacity: 0.5;
}

.gallery-grid .gallery-item .item-inner img {
    max-width: 100%;
    position: relative;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

.gallery-grid .gallery-item .item-inner:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.gallery-grid .gallery-item .item-inner .overlay {
    padding: 1rem;
    position: absolute;
    left: 0;
    top: 100px;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    opacity: 0;
}

.gallery-grid .gallery-item .item-inner:hover .overlay {
    opacity: 1;
    left: 40px;
}

.gallery-grid .gallery-item .item-inner .overlay h4 a {
    color: #ffffff;
}

.gallery-grid .gallery-item .item-inner .overlay .cats {
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    color: #ffffff;
}

.gallery-grid .gallery-item .item-inner .overlay h4 {
    margin-bottom: 5px;
}

.gallery-grid .gallery-item .item-inner .view {
    position: absolute;
    right: 30px;
    top: 0;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    opacity: 0;
}

.gallery-grid .gallery-item .item-inner:hover .view {
    opacity: 1;
    top: 30px;
}

.gallery-grid .gallery-item .item-inner .view a {
    display: inline-block;
    height: 45px;
    width: 45px;
    line-height: 45px;
    background: #ffffff;
    text-align: center;
    border-radius: 5px;
    color: var(--primary);
}

.hibiscus .gallery-grid .gallery-item .item-inner .view a {
    color: #bf3654;
}

.gallery-grid .gallery-item .item-inner::before {
    position: absolute;
    left: -100%;
    bottom: -50px;
    content: "";
    height: 180px;
    width: 180px;
    background: url(assets/img/shape/3.png);
    z-index: 1;
    border-radius: 50%;
    transition: all 0.35s ease-in-out;
    background-size: cover;
    background-position: center;
}

.gallery-grid .gallery-item .item-inner:hover::before {
    left: -50px;
}

.gallery-area.shape-less .gallery-items .pf-item .item-inner::before {
    display: none;
}

@media screen and (min-width:992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-grid .gallery-item:nth-child(3),
    .gallery-grid .gallery-item:nth-child(4) {
        grid-column: span 2 / span 2;
    }
}

/*
  * Blog Area
  */
.blog-area .blog-items {
    border-radius: .25rem;
}

.blog-area .blog-items .date {
    position: absolute;
    left: .5rem;
    bottom: .5rem;
    content: "";
    background: var(--bs-white);
    color: var(--bs-primary);
    padding: .25rem .5rem;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    display: inline-block;
    z-index: 1;
}

.blog-area h4>a:hover,
.blog-area h4>a:focus,
.blog-area h4>a:active {
    color: var(--bs-warning);
}

.blog-area .blog-items .figure-img.overlay::before {
    z-index: 1;
}

.blog-area .blog-items .figure-img {
    overflow: hidden;
}

.blog-area .blog-items .figure-img img {
    height: 300px;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.blog-area .blog-items:hover .figure-img img {
    transform: scale(1.2);
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

/*  ==========================================================================
	About Page
    ========================================================================== */
.breadcrumb .breadcrumb-item a {
    color: var(--bs-primary);
}

#banner.style2 {
    height: 350px;
}

#banner.style2 .description h1 {
    margin-bottom: 1rem;
}

/*
* About Us
*/

.figure-style {
    position: relative;
    -webkit-box-shadow: 20px 20px 12px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 20px 20px 12px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 20px 20px 12px 0px rgba(0, 0, 0, 0.15);
}

.figure-style::before,
.figure-style::after {
    position: absolute;
    background-color: var(--bs-primary);
    content: '';
}

.figure-style::before {
    bottom: 0;
    right: -20px;
    height: 20px;
    width: 20px;
    height: calc(100% - 20px);
}

.figure-style::after {
    right: -20px;
    bottom: -19px;
    height: 20px;
    width: calc(100%);
}

.figure-style .img-fluid {
    position: relative;
}

@media screen and (min-width:576px) {
    .figure-style::before {
        bottom: 0;
        right: -25px;
        height: 25px;
        width: 25px;
        height: calc(100% - 25px);
    }

    .figure-style::after {
        right: -25px;
        bottom: -24px;
        height: 25px;
        width: calc(100%);
    }
}

@media screen and (min-width:768px) {
    .figure-style::before {
        bottom: 0;
        right: -25px;
        height: 25px;
        width: 25px;
        height: calc(100% - 35px);
    }

    .figure-style::after {
        right: -25px;
        bottom: -24px;
        height: 25px;
    }
}

@media screen and (min-width:1200px) {
    .figure-style {
        -webkit-box-shadow: 25px 25px 20px 0px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 25px 25px 20px 0px rgba(0, 0, 0, 0.1);
        box-shadow: 25px 25px 20px 0px rgba(0, 0, 0, 0.1);
    }
}

/* PC need -------------*/
.pc-need {
    background-image: url(../images/pc-need.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.check-list li {
    position: relative;
    margin-bottom: 1rem;
    font-weight: 400;
    counter-increment: item;
    padding-left: 2.5rem;
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.check-list li::before,
.check-list li::after {
    position: absolute;
}

.check-list li::before {
    width: 30px;
    height: 30px;
    background-color: var(--bs-primary);
    border-radius: 50%;
    content: '';
    left: 0;
    top: -2px;
}

.check-list li::after {
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    font-size: 1rem;
    line-height: 1;
    color: var(--bs-white);
    top: 5px;
    content: "\f00c";
    left: 9px;
}

.check-list li:hover::before,
.check-list li:hover::after {
    -webkit-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -moz-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -ms-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    -o-transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
    transition: all 1s cubic-bezier(0.19, 1, 0.22, 1) 0s;
}

.check-list li:hover::before {
    background-color: var(--bs-secondary);
}

/*  ==========================================================================
	Career Page
    ========================================================================== */
.list2 ul {
    padding-left: 1rem;
}

.list2>li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.25rem;
}

.list2>li::before {
    position: absolute;
    content: '';
    top: 5px;
    left: 0px;
    background-color: var(--bs-primary);
    width: 10px;
    height: 10px;
}

.list2 li a {
    color: rgba(40, 40, 40, 0.9);
}

.list2 li a:hover,
.list2 li a:focus,
.list2 li a:active {
    text-decoration: underline;
}

/* ==========================================================================
    Our Activitiess Page - Free Health Camp
========================================================================== */
.page-title-bg {
    background-image: url('../images/page-header/bg-free-health-camp.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page-title-bg * {
    color: var(--bs-white);
}

.section-block .post-img {
    max-height: 550px;
}

/* ==========================================================================
    Blog Page
========================================================================== */
.blog-widget {
    position: relative;
}

.blog-widget:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 1.5rem;
    margin-bottom: 1rem;
}

.blog-sidebar .search-form .btn-outline-secondary {
    --bs-btn-color: #ced4da;
    --bs-btn-border-color: #ced4da;
    --bs-btn-hover-bg: #094a2a;
    --bs-btn-hover-border-color: #094a2a;
    --bs-btn-focus-shadow-rgb: 206, 212, 218;
    --bs-btn-active-bg: #094a2a;
    --bs-btn-active-border-color: #094a2a;
}

.blog-sidebar .post:not(:last-child) {
    margin-bottom: 1.5rem;
}

.blog-sidebar .post h6 {
    font-weight: 600;
}

.blog-sidebar .post h6 a:hover,
.blog-sidebar .post h6 a:focus,
.blog-sidebar .post h6 a:active {
    color: var(--bs-warning);
}

.blog-sidebar .post ul li a {
    color: var(--bs-card-color);
}

.blog-sidebar .post ul li a:hover,
.blog-sidebar .post ul li a:focus,
.blog-sidebar .post ul li a:active {
    color: var(--bs-warning);
}

.tag-list a {
    border: 1px solid var(--bs-gray-400);
    border-radius: 5px;
    font-weight: 500;
    font-size: .75rem;
    margin: 5px;
    padding: .25rem .5rem;
    color: var(--bs-gray-600);
}

.tag-list a:hover,
.tag-list a:focus,
.tag-list a:active {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
    color: var(--bs-white);
}

.blog-area .post-content img {
    max-width: 100%;
    margin-bottom: 1rem;
    display: block;
}

.blog-area .pagination {
    justify-content: center;
}