body {
    color: #333;
    font-size: 0.875rem;
}

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

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato", sans-serif;
    color: #1496d0;
    line-height: 1.33em;
    font-weight: 600;
}

img {
    border-radius: 0.625rem;
}

.spacing {
    padding: 3rem 0;
}

.spacing-top {
    padding-top: 3rem;
}

.spacing-bottom {
    padding-bottom: 3rem;
}

.light_bg {
    background-color: #f6f6f6;
}

.btn_style_1 {
    padding: 0.625rem 1.875rem;
    font-size: 0.875rem;
    font-weight: 900;
    background: #1496d0;
    color: #fff;
    text-transform: uppercase;
    border-radius: 0;
    border: 1px solid #fff;
    box-shadow: 0px 12px 25px 0px rgba(20, 70, 140, 0.43);
}
.btn_style_1:hover {
    background-color: #ff6021;
    color: #fff;
}

.top-social-link {
    padding-top: 0.9375rem;
    padding-bottom: 0.625rem;
    display: inline-block;
    position: relative;
}
.top-social-link ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.top-social-link ul li {
    display: inline-block;
    margin-right: 5px;
    color: #fff;
}
.top-social-link ul li a {
    width: 1.875rem;
    height: 1.875rem;
    line-height: 2rem;
    text-align: center;
    color: #fff;
    display: block;
    transition: all 0.5s ease;
}
.top-social-link ul li a:hover {
    background-color: #fff;
    color: #1496d0;
}
.top-social-link ul li a i {
    font-size: 1rem;
}

.owl-carousel .owl-nav {
    margin: 0;
}
.owl-carousel .owl-nav button {
    background-color: #ff6021 !important;
    width: 2.1875rem;
    height: 2.1875rem;
}
.owl-carousel .owl-nav button span {
    display: none;
}
.owl-carousel .owl-nav button::before {
    content: "\f104";
    font-family: "Line Awesome Free";
    font-weight: 900;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}
.owl-carousel .owl-nav button.owl-next::before {
    transform: rotate(180deg);
}
.owl-carousel .owl-dots button span {
    background-color: #999 !important;
}
.owl-carousel .owl-dots button.active span {
    width: 2.5rem !important;
    background-color: #ff6021 !important;
}

.section-title h6 {
    color: #666;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
}
.section-title h4,
.section-title h1,
.section-title h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #1496d0;
    font-weight: 600;
    text-transform: capitalize;
}
.section-title h4 {
    font-size: 1.375rem;
}

.breadcrumbs-wrap {
    padding: 60px 20px;
    background-size: cover;
}
.breadcrumbs-wrap.with-bg {
    background-color: #f6f6f6;
}
.breadcrumbs-wrap .page-title {
    color: #333;
    font-size: 48px;
    font-weight: 900;
    line-height: 44px;
}
.breadcrumbs-wrap .breadcrumbs {
    color: #333;
}
.breadcrumbs-wrap .breadcrumbs > li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.3px;
}
.breadcrumbs-wrap .breadcrumbs > li:not(:first-child):before {
    content: "/";
    display: inline-block;
    vertical-align: middle;
    color: #999;
    margin-right: 5px;
}
.breadcrumbs-wrap .breadcrumbs > li > a {
    color: #999999;
}

.page_section_title {
    font-size: 2.25rem;
    margin-bottom: 0.9375rem;
}

.button {
    --offset: 20px;
    --border-size: 2px;
    margin: auto;
    display: inline-block;
    position: relative;
    padding: 2em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    background: transparent;
    color: #ff6021;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    border-radius: 0;
    box-shadow: inset 0 0 0 var(--border-size) currentcolor;
    transition: background 0.8s ease;
    margin-top: 1.5625rem;
    text-align: center;
}
.button span {
    font-size: 1.375rem;
}
.button:hover {
    background: #ff6021;
    color: #1496d0;
}
.button:hover span {
    color: #fff;
}
.button__horizontal,
.button__vertical {
    position: absolute;
    top: var(--horizontal-offset, 0);
    right: var(--vertical-offset, 0);
    bottom: var(--horizontal-offset, 0);
    left: var(--vertical-offset, 0);
    transition: transform 0.8s ease;
    will-change: transform;
}
.button__horizontal::before,
.button__vertical::before {
    content: "";
    position: absolute;
    border: inherit;
}
.button__horizontal {
    --vertical-offset: calc(var(--offset) * -1);
    border-top: var(--border-size) solid currentcolor;
    border-bottom: var(--border-size) solid currentcolor;
}
.button__horizontal::before {
    top: calc(var(--vertical-offset) - var(--border-size));
    bottom: calc(var(--vertical-offset) - var(--border-size));
    left: calc(var(--vertical-offset) * -1);
    right: calc(var(--vertical-offset) * -1);
}
.button:hover .button__horizontal {
    transform: scaleX(0);
}
.button__vertical {
    --horizontal-offset: calc(var(--offset) * -1);
    border-left: var(--border-size) solid currentcolor;
    border-right: var(--border-size) solid currentcolor;
}
.button__vertical::before {
    top: calc(var(--horizontal-offset) * -1);
    bottom: calc(var(--horizontal-offset) * -1);
    left: calc(var(--horizontal-offset) - var(--border-size));
    right: calc(var(--horizontal-offset) - var(--border-size));
}
.button:hover .button__vertical {
    transform: scaleY(0);
}

.course_card {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
    border-radius: 0.625rem;
    overflow: hidden;
    background: #fff;
}
.course_card img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.course_card .course_card_content {
    padding: 1rem;
}
.course_card .course_card_content h5 {
    margin-bottom: 0.625rem;
    color: #1496d0;
    font-weight: 600;
    font-size: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.course_card .course_card_content p {
    text-align: justify;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.top-header {
    background: #1496d0;
}
.top-header .header-left {
    text-align: left;
}
.top-header .header-left .header-left-card ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}
.top-header .header-left .header-left-card ul li {
    display: inline-block;
    text-align: left;
    position: relative;
    padding-left: 0.4375rem;
    color: #fff;
    margin-right: 2.1875rem;
    padding-top: 0.9375rem;
    padding-bottom: 0.9375rem;
}
.top-header .header-left .header-left-card ul li::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 1.5rem;
    background-color: #1496d0;
    left: -1.25rem;
    top: 1.0625rem;
}
.top-header .header-left .header-left-card ul li:first-child::before {
    display: none;
}
.top-header .header-left .header-left-card ul li:last-child {
    margin-right: 0;
}
.top-header .header-left .header-left-card ul li a {
    display: inline-block;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 400;
    margin-left: 1rem;
}
.top-header .header-left .header-left-card ul li .head-icon {
    color: #1496d0;
    font-size: 1.5rem;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transition: 0.5s;
    transform: translateY(-50%);
}
.top-header .header-left .header-left-card ul li .head-icon i {
    color: #fff;
    font-size: 1rem;
}
.top-header .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sticky-nav {
    top: 0;
    position: fixed;
    -webkit-animation: 900ms ease-in-out 5s normal none 1 running fadeInDown;
    animation: 900ms ease-in-out 5s normal none 1 running fadeInDown;
    transition: all 0.5s ease;
    width: 100% !important;
    z-index: 999;
}

.bg-custom {
    background: #fff !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.bg-custom .bg-light {
    background: #fff !important;
}

.logo {
    height: 70px;
    width: auto;
    overflow: hidden;
    transition: all 0.5s ease;
}
.logo img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    transition: all 0.5s ease;
}

.home-menu .navbar-nav .nav-item .menu-link {
    text-transform: capitalize;
    font-size: 15px;
    margin-right: 1.5rem;
    position: relative;
    font-weight: 600;
    color: #000 !important;
    display: inline-block;
}
.home-menu .navbar-nav .nav-item:last-child .menu-link {
    margin-right: 0;
}
.home-menu .navbar-nav .dropdown-menu {
    border-top: 0.25rem solid #ff6021;
}
.home-menu .navbar-nav .dropdown-menu li a {
    text-transform: capitalize;
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: none;
    z-index: 9;
    box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.4);
}

footer {
    background-color: #272727;
    position: relative;
}
footer .footer_widget {
    color: #fff;
}
footer .footer_widget h4 {
    color: #d1d2cd;
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0.9375rem;
    font-weight: 600;
    position: relative;
}
footer .footer_widget h4::before {
    content: "";
    height: 2px;
    width: 15%;
    background-color: #ff6021;
    position: absolute;
    left: 0;
    bottom: -0.3125rem;
}
footer .footer_widget ul li {
    margin-bottom: 0.625rem;
    position: relative;
    padding-left: 20px;
}
footer .footer_widget ul li::before {
    font-family: "line Awesome Free";
    content: "\f101";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #ddd;
}
footer .footer_widget ul li a {
    color: #ddd;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
    text-transform: none;
}
footer .footer_widget ul li a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    transition-property: width;
    transition-timing-function: ease-out;
    transition-delay: 0s;
    transition: all 0.4s ease;
}
footer .footer_widget ul li a:hover::before {
    width: 100%;
}
footer .footer_widget iframe {
    width: 100%;
    height: 200px;
}
footer .footer_widget.contact_widget ul li:nth-child(1)::before {
    content: "\f3c5";
    color: #ff6021;
}
footer .footer_widget.contact_widget ul li:nth-child(2)::before {
    content: "\f095";
    color: #ff6021;
}
footer .footer_widget.contact_widget ul li:nth-child(3)::before {
    content: "\f0e0";
    color: #ff6021;
}
footer .footer_widget.footer_logo img {
    height: 6.25rem;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.video-wrapper {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
}
.video-wrapper::before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(20, 150, 208, 0.2);
    position: absolute;
    z-index: 1;
}
.video-wrapper video {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: relative;
}
.video-wrapper .main_carousel_content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    z-index: 1;
    color: #fff;
}
.video-wrapper .main_carousel_content h5 {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: capitalize;
}

.main_carousel .main_carousel_img {
    height: auto;
    width: 100%;
    position: relative;
}
.main_carousel .main_carousel_img::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.main_carousel .main_carousel_img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.main_carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
}
.main_carousel .main_carousel_content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    z-index: 1;
    color: #fff;
}
.main_carousel .main_carousel_content h5 {
    color: #fff;
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: capitalize;
}

.home_welcome {
    background-color: #f6f6f6;
}
.home_welcome .content p {
    text-align: justify;
    margin-bottom: 0;
}
.home_welcome .member-card {
    height: 9.375rem;
    width: 9.375rem;
    border: 1px solid #1496d0;
    margin: auto;
    margin-top: 1.25rem;
    padding: 0.625rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.home_welcome .home_about_img {
    height: auto;
    width: 100%;
    border-radius: 0.625rem;
    overflow: hidden;
    position: relative;
}
.home_welcome .home_about_img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.home_welcome .home_about_img a {
    position: relative;
    display: block;
}
.home_welcome .home_about_img a::before {
    font-family: "Line Awesome Free";
    content: "\f144";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 8.125rem;
    color: #fff;
}
.home_welcome .home_about_img a::after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(20, 150, 208, 0.5);
    position: absolute;
    left: 0;
    top: 0;
}

.exam_course {
    position: relative;
}
.exam_course::before {
    content: "";
    background: url(/images/6.jpg?37d4759be837da93a0fae1cd92493d88);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 58%;
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}
.exam_course::after {
    content: "";
    background: rgba(20, 150, 208, 0.9);
    height: 58%;
    width: 100%;
    position: absolute;
    top: 0;
}
.exam_course .section-title {
    position: relative;
    z-index: 1;
}
.exam_course .section-title h2 {
    color: #fff;
}
.exam_course .row {
    z-index: 1;
    position: relative;
}

.gallery .nav-pills .nav-item {
    margin-right: 1rem;
}
.gallery .nav-pills .nav-item:last-child {
    margin-right: 0;
}
.gallery .nav-pills .nav-item .nav-link {
    background-color: #ff6021;
    color: #fff;
    border-radius: 0;
    position: relative;
}
.gallery .nav-pills .nav-item .nav-link.active {
    background-color: #1496d0;
}
.gallery .nav-pills .nav-item .nav-link.active::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.gallery .tab-content img {
    height: auto;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.count-area {
    position: relative;
    background: url(/images/5.jpg?b4267b98406acd57a0dc292636a23ef7);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 3.125rem 0;
    text-align: center;
    color: #fff;
    position: relative;
}
.count-area::before {
    content: "";
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    left: 0;
    top: 0;
}
.count-area .count-area-content {
    position: relative;
    z-index: 1;
}
.count-area .count-icon i {
    font-size: 48px;
    color: #ff6021;
}
.count-area .count-digit {
    margin: 0.3125rem 0px;
    color: #ff6021;
    font-weight: 700;
    font-size: 50px;
}
.count-area .count-title {
    font-size: 20px;
    text-transform: capitalize;
}

.faq .accordion .accordion-button {
    background-color: #e9f0ff !important;
    padding-top: 0;
    padding-bottom: 0;
    color: #1496d0;
    font-size: 0.875rem;
}
.faq .accordion .accordion-body {
    font-size: 0.875rem;
}

.event .event_img {
    height: 100px;
    width: 100%;
    border-radius: 0.625rem;
    overflow: hidden;
}
.event .event_img img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.event .event_content .title {
    font-weight: 600;
    font-size: 1rem;
    color: #1496d0;
}
.event .event_content .location {
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 0.625rem;
    margin-bottom: 0.625rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event .event_content .location span {
    font-size: 0.875rem;
}
.event .event_content .location span i {
    color: #1496d0;
}
.event .event_content p {
    margin-bottom: 0;
    font-size: 0.875rem;
}
.event .row {
    margin-bottom: 1rem;
}
.event .row:last-child {
    margin-bottom: 0;
}

.team_member .member_photo {
    margin-bottom: 1.25rem;
}
.team_member .member_photo img {
    height: 20rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.team_member .member_info {
    margin-top: 1rem;
    text-align: center;
}
.team_member .member_info .member_name {
    margin-bottom: 0.3125rem;
    font-weight: 600;
}
.team_member .member_info .member_name a {
    position: relative;
    display: inline-block;
    color: #333;
    transition: all 0.4s ease;
}
.team_member .member_info .member_name a::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    border-bottom-width: 2px;
    border-bottom-style: solid;
    transition-property: width;
    transition-timing-function: ease-out;
    transition-delay: 0s;
    transition: all 0.4s ease;
}
.team_member .member_info .member_name:hover a::before {
    width: 100%;
}
.team_member .member_info .member_position {
    color: #999;
    font-size: 16px;
}

.home-blog {
    background-image: url(/images/3.jpg?11ac7597c908bc93955e5f903f227edd);
}
.home-blog .section-title h6,
.home-blog .section-title h2 {
    color: #fff;
}

.blog-card {
    position: relative;
    transition: all 0.5s ease;
    background-color: #fff;
    border-radius: 0.625rem;
}
.blog-card .blog-img {
    position: relative;
    height: auto;
    width: 100%;
    overflow: hidden;
}
/*.blog-card .blog-img::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  height: 100%;*/
/*  width: 100%;*/
/*  background-color: rgba(0, 0, 0, 0.5);*/
/*  z-index: 1;*/
/*}*/
.blog-card .blog-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: all 0.5s ease;
}
.blog-card .blog-img span {
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    font-size: 0.875rem;
    color: #fff;
    padding: 1rem;
    z-index: 2;
}
.blog-card .post-date span {
    font-size: 0.6875rem;
    color: #000;
}
.blog-card h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1496d0;
    margin-top: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card h4:hover {
    color: #ff6021;
}
.blog-card p {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.3125rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card .more-link {
    color: #0e1e40;
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 1rem;
    display: block;
}
.blog-card .more-link i {
    color: #ff6021;
}
.blog-card .more-link:hover {
    color: #ff6021;
}
.blog-card .more-link:hover i {
    color: #0e1e40;
}
.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.partner_carousel img {
    height: 100px;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.category-sidebar h5 {
    color: #1496d0;
    font-size: 1.25rem;
}
.category-sidebar ul {
    margin-top: 1.875rem;
}
.category-sidebar ul li {
    margin-bottom: 1.125rem;
}
.category-sidebar ul li a {
    display: flex;
    justify-content: space-between;
}
.category-sidebar ul li a span {
    font-size: 0.875rem;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.category-sidebar ul li a:hover span {
    color: #ff6021;
}

.blog-dtl .blog-dtl-img {
    /*height: 31.25rem;*/
    /*width: 100%;*/
    /*overflow: hidden;*/
}
.blog-dtl .blog-dtl-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.blog-dtl .post-meta {
    margin-top: 1.25rem;
}
.blog-dtl .post-meta li {
    display: inline-block;
    margin-right: 1.5625rem;
}
.blog-dtl .post-meta li:last-child {
    margin-right: 0;
}
.blog-dtl .post-meta li span {
    font-weight: 500;
    font-size: 0.6875rem;
}
.blog-dtl .post-meta li span.author {
    color: #323232;
}
.blog-dtl .post-meta li span.date {
    color: #686868;
}
.blog-dtl .post-meta li span.category {
    background: #ff6021;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.6875rem;
    color: #fff;
    padding: 0.3125rem 1rem;
}
.blog-dtl .blog-content p {
    margin-bottom: 0.9375rem;
    font-size: 0.875rem;
    line-height: 1.75rem;
}

.join .join-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.join .join-wrap h4 {
    text-transform: capitalize;
    font-size: 1.375rem;
}
.join .join-wrap p {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.join .join-wrap .email-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
.join .join-wrap .email-wrap input {
    border-radius: 0.25rem 0 0 0.25rem;
    border-right: 0;
    width: auto;
    display: block;
    width: 100%;
    height: calc(1.5em + 1.125rem + 0.375rem);
    padding: 0.5625rem 1.125rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: #4e4e4e;
    background-color: #f3f3f3;
    background-clip: padding-box;
    border: 0;
    border-radius: 0.25rem;
}
.join .join-wrap .email-wrap .subscribe-btn {
    background: #d01010;
    color: #fff;
    width: auto;
    border-radius: 0px 0.25rem 0.25rem 0;
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
    text-transform: capitalize;
    border: 0.0625rem solid #d01010;
    outline: none;
    font-weight: 600;
    border-radius: 0.25rem;
    display: inline-block;
    box-shadow: none;
}

/*gallery start*/
.gallery {
    position: relative;
}
.gallery .gallery-thumb {
    position: relative;
    overflow: hidden;
    height: auto;
    width: 100%;
}
.gallery .gallery-thumb::before {
    content: "";
    position: absolute;
    background: var(--blue-color);
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0;
    transform: scale(0);
    transition: all 0.4s ease-out 0s;
}
.gallery .gallery-thumb img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease-out 0s;
}
.gallery .gallery-content {
    position: absolute;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
    background: white;
    padding: 1.25rem 1.5625rem 1.25rem 1.5625rem;
    display: inline-block;
    bottom: 0;
    transition: all 0.4s ease-out 0s;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    width: 85%;
}
.gallery .gallery-content .gallery-title {
    font-size: 1.25rem;
    margin-bottom: 0;
}
.gallery .gallery-content .gallery-title a {
    display: inline-block;
}
.gallery .gallery-content .gallery-title a span {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid #e4e4e4;
    display: inline-block;
    background: white;
    margin-left: 1.875rem;
    line-height: 2.1875rem;
}
.gallery:hover .gallery-thumb::before {
    background: #061738;
    opacity: 0.5;
    transform: scale(1);
}
.gallery:hover .gallery-thumb img {
    transform: scale(1.1);
}
.gallery:hover .gallery-content {
    opacity: 1;
    visibility: visible;
    bottom: 3.125rem;
}

.gallery-item a {
    height: 15.625rem;
    width: 100%;
    overflow: hidden;
}

/*gallery ends*/
/*contact start*/
.contacts-icon {
    color: #ff6021;
    font-size: 3.375rem;
    margin-right: 1.25rem;
}

.semi-02-title {
    font-size: 1.25rem;
    color: #333;
}

.contacts-text h5 {
    color: #777777;
    font-weight: 400;
    font-size: 1rem;
}

.donation-form {
    padding: 3.75rem 4.375rem 4.375rem 4.375rem;
    background: #f8f8f8;
}

.input-area .form-control {
    border-radius: 0;
    font-weight: 500;
    width: 100%;
    height: 3.8125rem;
    padding-left: 1.875rem;
    border: 0;
    color: #001234;
    background: #fff;
    margin-bottom: 0.625rem;
}

.input-area textarea {
    width: 100%;
    display: block;
    resize: none;
    border: none;
    color: #777777;
    font-weight: 500;
    padding-left: 1.5625rem;
    padding-top: 0.9375rem;
    height: 7.8125rem;
    margin-bottom: 0.625rem;
}

/*contact end*/
.appt-form {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
    padding: 1.25rem;
    border-radius: 0.3125rem;
}
.appt-form form label {
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: capitalize;
}
.appt-form form label span {
    color: #d01010;
}

.std_service {
    border: 1px solid #ddd;
    padding: 0.9375rem;
    margin-top: 2.5rem;
}
.std_service h5 {
    color: #1496d0;
    font-weight: 600;
    font-size: 1.25rem;
}
.std_service ul li {
    border-bottom: 1px solid #ddd;
    padding: 0.625rem 0.625rem 0.625rem 1.875rem;
    position: relative;
    text-transform: capitalize;
}
.std_service ul li a {
    color: #333;
    font-size: 1rem;
}
.std_service ul li::before {
    font-family: "line Awesome Free";
    content: "\f101";
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #333;
}
.std_service ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.location .map iframe {
    height: 25rem;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.std_service_dtl .std_service_content img {
    height: auto;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.std_service_dtl form .form-group {
    position: relative;
}
.std_service_dtl form .form-group .form-control {
    padding-right: 3.125rem;
    font-size: 0.875rem;
    border-radius: 0;
}
.std_service_dtl form .form-group .btn_style_1 {
    position: absolute;
    right: 0;
    top: 0;
    border: none;
    padding: 0.5rem 0.75rem;
    box-shadow: none;
}
.std_service_dtl .std_service_side {
    margin-top: 2.5rem;
}
.std_service_dtl .std_service_side h5 {
    font-weight: 600;
    font-size: 1.25rem;
    position: relative;
    margin-bottom: 2.625rem;
}
.std_service_dtl .std_service_side h5::before {
    content: "";
    height: 2px;
    width: 15%;
    background-color: #ff6021;
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
}
.std_service_dtl .std_service_side img {
    height: auto;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    border-radius: 0.625rem;
}
.std_service_dtl .std_service_side h6 {
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: capitalize;
}
.std_service_dtl .std_service_side .row {
    margin-bottom: 0.9375rem;
}
.std_service_dtl .std_service_side .row:last-child {
    margin-bottom: 0;
}

.destination .destination_card {
    text-align: center;
    margin-bottom: 1.25rem;
}
.destination .destination_card .destination_card_img {
    height: 15.625rem;
    width: 100%;
    overflow: hidden;
    border-radius: 0.625rem;
    transition: all 0.5s ease;
}
.destination .destination_card img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 0.625rem;
    transition: all 0.5s ease;
}
.destination .destination_card h5 {
    font-size: 1.125rem;
    margin-top: 0.625rem;
    text-transform: capitalize;
    margin-bottom: 0;
}
.destination .destination_card:hover img {
    transform: scale(1.1);
}

.about-area {
    position: relative;
}
.about-area .section-title span {
    color: #ff6021;
}
.about-area .about-content p {
    margin-bottom: 20px;
}
.about-area .about-content .about-counter {
    position: relative;
    margin-top: 20px;
    margin-bottom: 40px;
}
.about-area .about-content .about-counter i {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 35px;
    line-height: 45px;
    color: #ff6021;
    background-color: #fff8e5;
    border-radius: 3px;
    text-align: center;
    font-size: 20px;
    display: inline-block;
}
.about-area .about-content .about-counter .content {
    margin-left: 45px;
    display: inline-block;
}
.about-area .about-content .about-counter .content h3 {
    font-size: 18px;
    color: #1496d0;
    line-height: 1;
    margin-bottom: 0;
}
.about-area .about-content .about-counter .content span {
    font-size: 12px;
    color: #1496d0;
}
.about-area .about-img-2 {
    margin-left: 70px;
    margin-bottom: 90px;
    margin-right: 30px;
    position: relative;
}
.about-area .about-img-2 > img {
    height: 100%;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    overflow: hidden;
}
.about-area .about-img-2 .about-img-small-2 {
    position: absolute;
    bottom: -60px;
    left: -40px;
    height: 300px;
    width: 300px;
    overflow: hidden;
}
.about-area .about-img-2 .about-dots {
    position: absolute;
    z-index: -1;
    bottom: -80px;
    right: -100px;
    -webkit-animation: flash 7s infinite linear;
    animation: flash 7s infinite linear;
}

.dir_message {
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.15);
    padding: 1.25rem;
}
.dir_message p {
    font-size: 0.875rem;
}
.dir_message .dir_sign {
    display: block;
}
.dir_message .dir_sign img {
    height: 100px;
    width: 100px;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 823px) {
    .top-header .header-left .header-left-card ul li {
        margin-right: 2rem;
    }
    .top-social-link {
        margin-right: 1rem;
    }
    .donation-form {
        padding: 20px;
        background: #f8f8f8;
    }
    .event .event_content .title {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .std_service_dtl .std_service_side h6,
    .event .event_content .location span {
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .blog-card p {
        -webkit-line-clamp: 2;
    }
}
@media (max-width: 767px) {
    .top-header .header-right,
    .top-header .header-left {
        text-align: center;
        justify-content: center;
    }
    .navbar-light .navbar-toggler {
        background-color: #fff !important;
    }
    .section-title h1,
    .section-title h2 {
        font-size: 1.5625rem;
    }
    .blog-card {
        margin-bottom: 1.25rem;
    }
    .join .join-wrap {
        justify-content: center;
        flex-direction: column;
    }
    .join .join-wrap .join-block {
        text-align: center;
    }
    .join .join-wrap .join-block:last-child {
        margin-top: 1.25rem;
    }
    .footer_widget {
        margin-bottom: 1.25rem;
    }
    .donation-form {
        padding: 20px;
        background: #f8f8f8;
    }
    .main_carousel .main_carousel_content {
        width: 100%;
    }
    .main_carousel .main_carousel_content ul {
        display: block !important;
    }
    .main_carousel .main_carousel_content ul li {
        margin-bottom: 0.625rem;
    }
    .gallery .tab-pane .row .col-md-3 {
        margin-bottom: 0.9375rem;
    }
    .count-area .count-area-content {
        margin: 1.25rem 0;
    }
    .faq {
        margin-bottom: 1.25rem;
    }
    .about-area .about-img-2 {
        margin: 0;
    }
    .about-area .about-img-small-2 {
        display: none;
    }
    .message {
        margin-top: 1.875rem;
    }
    .message .dir_message {
        margin-bottom: 0.9375rem;
    }
    .breadcrumbs-wrap .page-title {
        font-size: 2rem;
    }
    .logos {
        margin-top: 1.25rem;
    }
    .home_about_img {
        margin-top: 25px;
    }
    .gallery .nav-pills .nav-item {
        margin-bottom: 20px;
        margin-right:10px;
    }
    .blog-card p {
        -webkit-line-clamp: 2;
    }
    .event .event_content .location {
        padding-bottom:0;
    }
    
}
